@contember/schema
Advanced tools
Comparing version 1.3.0-rc.1 to 1.3.0-rc.2
@@ -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
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
129683
1728