Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aphro/codegen-api

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aphro/codegen-api - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

.turbo/turbo-clean.log

25

lib/CodegenFile.d.ts
export interface CodegenFile {
readonly name: string;
readonly contents: string;
readonly signatureTemplate: string;
readonly templates: Templates;
}
export declare const ALGOL_TEMPLATE = "// SIGNED-SOURCE: <>";
export declare const SQL_TEMPLATE = "-- SIGNED-SOURCE: <>";
export declare const HASH_TEMPLATE = "# SIGNED-SOURCE: <>";
export declare type Templates = {
signature: string;
startManual: string;
endManual: string;
};
export declare const algolTemplates: {
signature: string;
startManual: string;
endManual: string;
};
export declare const sqlTemplates: {
signature: string;
startManual: string;
endManual: string;
};
export declare const hashTemplates: {
signature: string;
startManual: string;
endManual: string;
};
//# sourceMappingURL=CodegenFile.d.ts.map

@@ -1,4 +0,16 @@

export const ALGOL_TEMPLATE = '// SIGNED-SOURCE: <>';
export const SQL_TEMPLATE = '-- SIGNED-SOURCE: <>';
export const HASH_TEMPLATE = '# SIGNED-SOURCE: <>';
export const algolTemplates = {
signature: '// SIGNED-SOURCE: <>',
startManual: '// BEGIN-MANUAL-SECTION: []',
endManual: '// END-MANUAL-SECTION',
};
export const sqlTemplates = {
signature: '-- SIGNED-SOURCE: <>',
startManual: '-- BEGIN-MANUAL-SECTION: []',
endManual: '-- END-MANUAL-SECTION',
};
export const hashTemplates = {
signature: '# SIGNED-SOURCE: <>',
startManual: '# BEGIN-MANUAL-SECTION: []',
endManual: '# END-MANUAL-SECTION',
};
//# sourceMappingURL=CodegenFile.js.map

4

package.json
{
"name": "@aphro/codegen-api",
"version": "0.0.5",
"version": "0.0.6",
"main": "lib/index.js",
"type": "module",
"dependencies": {
"@aphro/schema-api": "0.0.5"
"@aphro/schema-api": "0.0.6"
},

@@ -9,0 +9,0 @@ "devDependencies": {

export interface CodegenFile {
readonly name: string;
readonly contents: string;
readonly signatureTemplate: string;
readonly templates: Templates;
}
export const ALGOL_TEMPLATE = '// SIGNED-SOURCE: <>';
export const SQL_TEMPLATE = '-- SIGNED-SOURCE: <>';
export const HASH_TEMPLATE = '# SIGNED-SOURCE: <>';
export type Templates = {
signature: string;
startManual: string;
endManual: string;
};
export const algolTemplates = {
signature: '// SIGNED-SOURCE: <>',
startManual: '// BEGIN-MANUAL-SECTION: []',
endManual: '// END-MANUAL-SECTION',
};
export const sqlTemplates = {
signature: '-- SIGNED-SOURCE: <>',
startManual: '-- BEGIN-MANUAL-SECTION: []',
endManual: '-- END-MANUAL-SECTION',
};
export const hashTemplates = {
signature: '# SIGNED-SOURCE: <>',
startManual: '# BEGIN-MANUAL-SECTION: []',
endManual: '# END-MANUAL-SECTION',
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc