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

@contember/schema

Package Overview
Dependencies
Maintainers
5
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contember/schema - npm Package Compare versions

Comparing version 1.3.5 to 1.4.0-alpha.1

2

dist/src/schema/model.d.ts

@@ -138,4 +138,6 @@ import { Input } from './input';

type UniqueConstraints = readonly UniqueConstraint[];
type ConstraintTiming = 'deferrable' | 'deferred';
type UniqueConstraint = {
readonly fields: readonly string[];
readonly timing?: ConstraintTiming;
readonly name?: string;

@@ -142,0 +144,0 @@ };

@@ -5,7 +5,15 @@ export declare namespace Settings {

};
type ContentSettings = {
readonly shortDateResponse?: boolean;
readonly useExistsInHasManyFilter?: boolean;
};
type Schema = {
readonly tenant?: TenantSettings;
readonly content?: ContentSettings;
/**
* @deprecated
*/
readonly useExistsInHasManyFilter?: boolean;
readonly tenant?: TenantSettings;
};
}
//# sourceMappingURL=settings.d.ts.map

2

package.json
{
"name": "@contember/schema",
"version": "1.3.5",
"version": "1.4.0-alpha.1",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "main": "dist/src/index.js",

@@ -205,4 +205,6 @@ import { Input } from './input'

export type ConstraintTiming = 'deferrable' | 'deferred'
export type UniqueConstraint = {
readonly fields: readonly string[]
readonly timing?: ConstraintTiming // empty means not deferrable
readonly name?: string

@@ -209,0 +211,0 @@ }

@@ -6,6 +6,16 @@ export namespace Settings {

export type ContentSettings = {
readonly shortDateResponse?: boolean
readonly useExistsInHasManyFilter?: boolean
}
export type Schema = {
readonly tenant?: TenantSettings
readonly content?: ContentSettings
/**
* @deprecated
*/
readonly useExistsInHasManyFilter?: boolean
readonly tenant?: TenantSettings
}
}

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