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.14 to 0.1.15

2

package.json
{
"name": "lambdaorm-base",
"version": "0.1.14",
"version": "0.1.15",
"description": "ORM",

@@ -5,0 +5,0 @@ "author": "Flavio Lionel Rita <flaviolrita@proton.me>",

@@ -117,3 +117,3 @@ "use strict";

extendDataSources(schema) {
if (!schema.infrastructure) {
if (!schema.infrastructure || !schema.infrastructure.mappings) {
return;

@@ -133,3 +133,3 @@ }

extendDataStages(schema) {
if (!schema.infrastructure) {
if (!schema.infrastructure || !schema.infrastructure.mappings || !schema.infrastructure.sources) {
return;

@@ -153,3 +153,3 @@ }

if (schema.domain.entities) {
if (schema.infrastructure) {
if (schema.infrastructure && schema.infrastructure.views) {
this.completeEntities(schema.domain.entities, schema.infrastructure.views);

@@ -442,3 +442,3 @@ }

existsInMapping(schema, mapping, entity) {
if (!schema.infrastructure) {
if (!schema.infrastructure || !schema.infrastructure.sources || !schema.infrastructure.stages) {
return false;

@@ -445,0 +445,0 @@ }

@@ -161,7 +161,7 @@ import { SentenceAction } from './actions';

export interface InfrastructureSchema {
paths: AppPathsConfig;
mappings: Mapping[];
views: View[];
sources: Source[];
stages: Stage[];
paths?: AppPathsConfig;
mappings?: Mapping[];
views?: View[];
sources?: Source[];
stages?: Stage[];
}

@@ -168,0 +168,0 @@ export interface ApplicationSchema {

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