@aphro/codegen-api
Advanced tools
Comparing version 0.0.7 to 0.0.8
# @aphro/codegen-api | ||
## 0.0.8 | ||
### Patch Changes | ||
- full todomvc example, no partiall generated mutators, removal of knexjs | ||
- Updated dependencies | ||
- @aphro/schema-api@0.0.8 | ||
## 0.0.7 | ||
@@ -4,0 +12,0 @@ |
@@ -5,2 +5,3 @@ export interface CodegenFile { | ||
readonly templates: Templates; | ||
readonly isUnsigned: boolean; | ||
} | ||
@@ -7,0 +8,0 @@ export declare type Templates = { |
import { CodegenFile } from './CodegenFile.js'; | ||
export default abstract class CodegenStep { | ||
constructor(); | ||
abstract gen(): CodegenFile; | ||
abstract gen(): Promise<CodegenFile>; | ||
} | ||
//# sourceMappingURL=CodegenStep.d.ts.map |
@@ -6,5 +6,5 @@ export * from './CodegenFile.js'; | ||
export declare type Step = { | ||
new (x: Node | Edge): CodegenStep; | ||
new (x: Node | Edge, dest: string): CodegenStep; | ||
accepts: (x: Node | Edge) => boolean; | ||
}; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@aphro/codegen-api", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"main": "lib/index.js", | ||
@@ -12,3 +12,3 @@ "type": "module", | ||
"dependencies": { | ||
"@aphro/schema-api": "0.0.7" | ||
"@aphro/schema-api": "0.0.8" | ||
}, | ||
@@ -15,0 +15,0 @@ "devDependencies": { |
@@ -5,2 +5,3 @@ export interface CodegenFile { | ||
readonly templates: Templates; | ||
readonly isUnsigned: boolean; | ||
} | ||
@@ -7,0 +8,0 @@ |
@@ -6,3 +6,3 @@ import { CodegenFile } from './CodegenFile.js'; | ||
abstract gen(): CodegenFile; | ||
abstract gen(): Promise<CodegenFile>; | ||
} |
@@ -7,4 +7,4 @@ export * from './CodegenFile.js'; | ||
export type Step = { | ||
new (x: Node | Edge): CodegenStep; | ||
new (x: Node | Edge, dest: string): CodegenStep; | ||
accepts: (x: Node | Edge) => boolean; | ||
}; |
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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22451
107
+ Added@aphro/schema-api@0.0.8(transitive)
- Removed@aphro/schema-api@0.0.7(transitive)
Updated@aphro/schema-api@0.0.8