@aphro/schema-api
Advanced tools
Comparing version 0.1.0 to 0.1.1
# @aphro/schema-api | ||
## 0.1.1 | ||
### Patch Changes | ||
- in-memory model support | ||
## 0.1.0 | ||
@@ -4,0 +10,0 @@ |
@@ -6,4 +6,4 @@ export declare type ValidationError = { | ||
}; | ||
export declare type StorageEngine = 'sqlite' | 'postgres'; | ||
export declare type StorageType = 'sql'; | ||
export declare type StorageEngine = 'sqlite' | 'postgres' | 'memory'; | ||
export declare type StorageType = 'sql' | 'memory'; | ||
export declare type SchemaFileAst = { | ||
@@ -92,3 +92,3 @@ preamble: { | ||
export declare type StorageConfig = { | ||
type: 'sql'; | ||
type: StorageType; | ||
db: string; | ||
@@ -95,0 +95,0 @@ tablish: string; |
{ | ||
"name": "@aphro/schema-api", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -14,4 +14,4 @@ export type ValidationError = { | ||
export type StorageEngine = 'sqlite' | 'postgres'; //| 'mysql' | 'sqlite'; // | maria | neo4j | redis ... | ||
export type StorageType = 'sql'; // opencypher | ||
export type StorageEngine = 'sqlite' | 'postgres' | 'memory'; | ||
export type StorageType = 'sql' | 'memory'; | ||
@@ -115,3 +115,3 @@ export type SchemaFileAst = { | ||
export type StorageConfig = { | ||
type: 'sql'; // | cypher | gremlin | ... | ||
type: StorageType; | ||
db: string; | ||
@@ -118,0 +118,0 @@ tablish: string; |
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
27646