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

lambdaorm-base

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lambdaorm-base - npm Package Compare versions

Comparing version 0.1.13 to 0.1.14

schema/application/services/createService.d.ts

2

package.json
{
"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

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