lambdaorm-base
Advanced tools
Comparing version 0.1.13 to 0.1.14
{ | ||
"name": "lambdaorm-base", | ||
"version": "0.1.13", | ||
"version": "0.1.14", | ||
"description": "ORM", | ||
@@ -5,0 +5,0 @@ "author": "Flavio Lionel Rita <flaviolrita@proton.me>", |
@@ -9,3 +9,3 @@ import { ClauseInfo, SourceRule, Schema } from '../domain'; | ||
import { SchemaExtender } from './services/schemaExtender'; | ||
import { SchemaService } from './services/schemaService'; | ||
import { SchemaCreateService } from './services/createService'; | ||
import { CompleteSchema } from './useCases/complete'; | ||
@@ -29,3 +29,3 @@ import { GetSchema } from './useCases/get'; | ||
schema: Schema; | ||
constructor(source: DataSourceConfigService, domain: DomainConfigService, mapping: MappingsConfigService, stage: StageConfigService, view: ViewsConfigService, schemaService: SchemaService, routeService: RouteService, extender: SchemaExtender, createSchema: CreateSchema, loadSchema: LoadSchema, getSchema: GetSchema, completeSchema: CompleteSchema); | ||
constructor(source: DataSourceConfigService, domain: DomainConfigService, mapping: MappingsConfigService, stage: StageConfigService, view: ViewsConfigService, schemaService: SchemaCreateService, routeService: RouteService, extender: SchemaExtender, createSchema: CreateSchema, loadSchema: LoadSchema, getSchema: GetSchema, completeSchema: CompleteSchema); | ||
evalSourceRule(rule: SourceRule, clauseInfo: ClauseInfo): boolean; | ||
@@ -32,0 +32,0 @@ getSource(clauseInfo: ClauseInfo, stage?: string): string; |
@@ -10,3 +10,3 @@ export * from './ports/fileSchemaReader'; | ||
export * from './facade'; | ||
export * from './services/schemaService'; | ||
export * from './services/createService'; | ||
export * from './services/routeService'; | ||
@@ -13,0 +13,0 @@ export * from './services/schemaExtender'; |
@@ -26,3 +26,3 @@ "use strict"; | ||
__exportStar(require("./facade"), exports); | ||
__exportStar(require("./services/schemaService"), exports); | ||
__exportStar(require("./services/createService"), exports); | ||
__exportStar(require("./services/routeService"), exports); | ||
@@ -29,0 +29,0 @@ __exportStar(require("./services/schemaExtender"), exports); |
import { Schema } from '../../domain'; | ||
import { SchemaService } from '../services/schemaService'; | ||
import { SchemaCreateService } from '../services/createService'; | ||
export declare class CompleteSchema { | ||
private readonly schemaService; | ||
constructor(schemaService: SchemaService); | ||
constructor(schemaService: SchemaCreateService); | ||
complete(schema: Schema): void; | ||
} |
import { Schema } from '../../domain'; | ||
import { SchemaService } from '../services/schemaService'; | ||
import { SchemaCreateService } from '../services/createService'; | ||
export declare class CreateSchema { | ||
private readonly schemaService; | ||
constructor(schemaService: SchemaService); | ||
constructor(schemaService: SchemaCreateService); | ||
create(): Promise<Schema>; | ||
} |
@@ -19,3 +19,3 @@ "use strict"; | ||
const view = new application_1.ViewsConfigService(); | ||
const schemaService = new application_1.SchemaService(); | ||
const schemaService = new application_1.SchemaCreateService(); | ||
const routeService = new application_1.RouteService(stage, this.expressions); | ||
@@ -22,0 +22,0 @@ const extender = new application_1.SchemaExtender(this.expressions, this.helper); |
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
197725