lambdaorm-base
Advanced tools
Comparing version 1.7.1 to 1.7.2
{ | ||
"name": "lambdaorm-base", | ||
"version": "1.7.1", | ||
"version": "1.7.2", | ||
"description": "ORM", | ||
@@ -5,0 +5,0 @@ "author": "Flavio Lionel Rita <flaviolrita@proton.me>", |
@@ -18,3 +18,3 @@ "use strict"; | ||
newPathsApp() { | ||
return { src: 'src', data: 'data', domain: 'domain' }; | ||
return { src: 'src', state: 'orm_state', domain: 'domain' }; | ||
} | ||
@@ -52,4 +52,4 @@ complete(schema) { | ||
} | ||
if (!schema.infrastructure.paths.data) { | ||
schema.infrastructure.paths.data = 'data'; | ||
if (!schema.infrastructure.paths.state) { | ||
schema.infrastructure.paths.state = 'orm_state'; | ||
} | ||
@@ -56,0 +56,0 @@ if (!schema.infrastructure.paths.domain) { |
@@ -19,4 +19,4 @@ "use strict"; | ||
schema.infrastructure.paths.src = undefined; | ||
if (schema.infrastructure.paths.data === '') | ||
schema.infrastructure.paths.data = undefined; | ||
if (schema.infrastructure.paths.state === '') | ||
schema.infrastructure.paths.state = undefined; | ||
if (schema.infrastructure.paths.domain === '') | ||
@@ -23,0 +23,0 @@ schema.infrastructure.paths.domain = undefined; |
@@ -154,3 +154,3 @@ import { SentenceCategory } from './sentence'; | ||
src?: string; | ||
data?: string; | ||
state?: string; | ||
domain?: string; | ||
@@ -157,0 +157,0 @@ } |
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
361044