@contember/schema
Advanced tools
Comparing version 1.1.0-alpha.7 to 1.1.0-alpha.8
@@ -99,2 +99,3 @@ import Input from './input'; | ||
type Schema = { | ||
readonly customPrimary?: boolean; | ||
readonly roles: Acl.Roles; | ||
@@ -101,0 +102,0 @@ }; |
@@ -110,3 +110,5 @@ import Value from './value'; | ||
asc = "asc", | ||
desc = "desc" | ||
ascNullFirst = "asc nulls first", | ||
desc = "desc", | ||
descNullsLast = "desc nulls last" | ||
} | ||
@@ -113,0 +115,0 @@ type FieldOrderBy<T = OrderDirection> = T | OrderBy<T>; |
@@ -22,3 +22,5 @@ "use strict"; | ||
OrderDirection["asc"] = "asc"; | ||
OrderDirection["ascNullFirst"] = "asc nulls first"; | ||
OrderDirection["desc"] = "desc"; | ||
OrderDirection["descNullsLast"] = "desc nulls last"; | ||
})(OrderDirection = Input.OrderDirection || (Input.OrderDirection = {})); | ||
@@ -25,0 +27,0 @@ let FieldMeta; |
{ | ||
"name": "@contember/schema", | ||
"version": "1.1.0-alpha.7", | ||
"version": "1.1.0-alpha.8", | ||
"license": "Apache-2.0", | ||
@@ -5,0 +5,0 @@ "main": "dist/src/index.js", |
@@ -134,2 +134,3 @@ import Input from './input' | ||
export type Schema = { | ||
readonly customPrimary?: boolean | ||
readonly roles: Acl.Roles | ||
@@ -136,0 +137,0 @@ } |
@@ -141,3 +141,5 @@ import Value from './value' | ||
asc = 'asc', | ||
ascNullFirst = 'asc nulls first', | ||
desc = 'desc', | ||
descNullsLast = 'desc nulls last' | ||
} | ||
@@ -144,0 +146,0 @@ |
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
Sorry, the diff of this file is not supported yet
105078
1442