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.0-rc.1 to 1.3.0-rc.2

6

dist/src/schema/input.d.ts

@@ -119,5 +119,7 @@ import { Value } from './value';

asc = "asc",
ascNullFirst = "asc nulls first",
ascNullsFirst = "ascNullsFirst",
desc = "desc",
descNullsLast = "desc nulls last"
descNullsLast = "descNullsLast",
/** @deprecated use ascNullsFirst */
ascNullFirst = "ascNullsFirst"
}

@@ -124,0 +126,0 @@ type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>;

@@ -25,5 +25,7 @@ "use strict";

OrderDirection["asc"] = "asc";
OrderDirection["ascNullFirst"] = "asc nulls first";
OrderDirection["ascNullsFirst"] = "ascNullsFirst";
OrderDirection["desc"] = "desc";
OrderDirection["descNullsLast"] = "desc nulls last";
OrderDirection["descNullsLast"] = "descNullsLast";
/** @deprecated use ascNullsFirst */
OrderDirection["ascNullFirst"] = "ascNullsFirst";
})(OrderDirection = Input.OrderDirection || (Input.OrderDirection = {}));

@@ -30,0 +32,0 @@ let FieldMeta;

export declare namespace Settings {
type TenantSettings = {
readonly inviteExpirationMinutes?: number;
};
type Schema = {
readonly useExistsInHasManyFilter?: boolean;
readonly tenant?: TenantSettings;
};
}
//# sourceMappingURL=settings.d.ts.map
{
"name": "@contember/schema",
"version": "1.3.0-rc.1",
"version": "1.3.0-rc.2",
"license": "Apache-2.0",

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

@@ -155,5 +155,8 @@ import { Value } from './value'

asc = 'asc',
ascNullFirst = 'asc nulls first',
ascNullsFirst = 'ascNullsFirst',
desc = 'desc',
descNullsLast = 'desc nulls last'
descNullsLast = 'descNullsLast',
/** @deprecated use ascNullsFirst */
ascNullFirst = 'ascNullsFirst',
}

@@ -160,0 +163,0 @@

export namespace Settings {
export type TenantSettings = {
readonly inviteExpirationMinutes?: number
}
export type Schema = {
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