@constructive-io/sdk 0.7.7 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/orm/input-types.d.ts +31 -49
- package/auth/orm/input-types.d.ts +8 -21
- package/esm/admin/orm/input-types.d.ts +31 -49
- package/esm/auth/orm/input-types.d.ts +8 -21
- package/esm/objects/orm/input-types.d.ts +17 -24
- package/esm/public/orm/input-types.d.ts +230 -524
- package/objects/orm/input-types.d.ts +17 -24
- package/package.json +7 -4
- package/public/orm/input-types.d.ts +230 -524
|
@@ -245,15 +245,15 @@ export interface OrgGetSubordinatesRecord {
|
|
|
245
245
|
depth?: number | null;
|
|
246
246
|
}
|
|
247
247
|
export interface GetAllRecord {
|
|
248
|
-
path?: string | null;
|
|
248
|
+
path?: string[] | null;
|
|
249
249
|
data?: Record<string, unknown> | null;
|
|
250
250
|
}
|
|
251
251
|
export interface Object {
|
|
252
252
|
hashUuid?: string | null;
|
|
253
253
|
id: string;
|
|
254
254
|
databaseId?: string | null;
|
|
255
|
-
kids?: string | null;
|
|
256
|
-
ktree?: string | null;
|
|
255
|
+
kids?: string[] | null;
|
|
256
|
+
ktree?: string[] | null;
|
|
257
257
|
data?: Record<string, unknown> | null;
|
|
258
258
|
frzn?: boolean | null;
|
|
259
259
|
createdAt?: string | null;
|
|
@@ -339,7 +339,7 @@ export interface Schema {
|
|
|
339
339
|
category?: ObjectCategory | null;
|
|
340
340
|
module?: string | null;
|
|
341
341
|
scope?: number | null;
|
|
342
|
-
tags?: string | null;
|
|
342
|
+
tags?: string[] | null;
|
|
343
343
|
isPublic?: boolean | null;
|
|
344
344
|
createdAt?: string | null;
|
|
345
345
|
updatedAt?: string | null;
|
|
@@ -372,7 +372,7 @@ export interface Table {
|
|
|
372
372
|
peoplestamps?: boolean | null;
|
|
373
373
|
pluralName?: string | null;
|
|
374
374
|
singularName?: string | null;
|
|
375
|
-
tags?: string | null;
|
|
375
|
+
tags?: string[] | null;
|
|
376
376
|
inheritsId?: string | null;
|
|
377
377
|
createdAt?: string | null;
|
|
378
378
|
updatedAt?: string | null;
|
|
@@ -397,13 +397,13 @@ export interface CheckConstraint {
|
|
|
397
397
|
tableId?: string | null;
|
|
398
398
|
name?: string | null;
|
|
399
399
|
type?: string | null;
|
|
400
|
-
fieldIds?: string | null;
|
|
400
|
+
fieldIds?: string[] | null;
|
|
401
401
|
expr?: Record<string, unknown> | null;
|
|
402
402
|
smartTags?: Record<string, unknown> | null;
|
|
403
403
|
category?: ObjectCategory | null;
|
|
404
404
|
module?: string | null;
|
|
405
405
|
scope?: number | null;
|
|
406
|
-
tags?: string | null;
|
|
406
|
+
tags?: string[] | null;
|
|
407
407
|
createdAt?: string | null;
|
|
408
408
|
updatedAt?: string | null;
|
|
409
409
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -434,7 +434,7 @@ export interface Field {
|
|
|
434
434
|
chkExpr?: Record<string, unknown> | null;
|
|
435
435
|
min?: number | null;
|
|
436
436
|
max?: number | null;
|
|
437
|
-
tags?: string | null;
|
|
437
|
+
tags?: string[] | null;
|
|
438
438
|
category?: ObjectCategory | null;
|
|
439
439
|
module?: string | null;
|
|
440
440
|
scope?: number | null;
|
|
@@ -463,15 +463,15 @@ export interface ForeignKeyConstraint {
|
|
|
463
463
|
description?: string | null;
|
|
464
464
|
smartTags?: Record<string, unknown> | null;
|
|
465
465
|
type?: string | null;
|
|
466
|
-
fieldIds?: string | null;
|
|
466
|
+
fieldIds?: string[] | null;
|
|
467
467
|
refTableId?: string | null;
|
|
468
|
-
refFieldIds?: string | null;
|
|
468
|
+
refFieldIds?: string[] | null;
|
|
469
469
|
deleteAction?: string | null;
|
|
470
470
|
updateAction?: string | null;
|
|
471
471
|
category?: ObjectCategory | null;
|
|
472
472
|
module?: string | null;
|
|
473
473
|
scope?: number | null;
|
|
474
|
-
tags?: string | null;
|
|
474
|
+
tags?: string[] | null;
|
|
475
475
|
createdAt?: string | null;
|
|
476
476
|
updatedAt?: string | null;
|
|
477
477
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -494,9 +494,9 @@ export interface FullTextSearch {
|
|
|
494
494
|
databaseId?: string | null;
|
|
495
495
|
tableId?: string | null;
|
|
496
496
|
fieldId?: string | null;
|
|
497
|
-
fieldIds?: string | null;
|
|
498
|
-
weights?: string | null;
|
|
499
|
-
langs?: string | null;
|
|
497
|
+
fieldIds?: string[] | null;
|
|
498
|
+
weights?: string[] | null;
|
|
499
|
+
langs?: string[] | null;
|
|
500
500
|
createdAt?: string | null;
|
|
501
501
|
updatedAt?: string | null;
|
|
502
502
|
}
|
|
@@ -505,19 +505,19 @@ export interface Index {
|
|
|
505
505
|
databaseId?: string | null;
|
|
506
506
|
tableId?: string | null;
|
|
507
507
|
name?: string | null;
|
|
508
|
-
fieldIds?: string | null;
|
|
509
|
-
includeFieldIds?: string | null;
|
|
508
|
+
fieldIds?: string[] | null;
|
|
509
|
+
includeFieldIds?: string[] | null;
|
|
510
510
|
accessMethod?: string | null;
|
|
511
511
|
indexParams?: Record<string, unknown> | null;
|
|
512
512
|
whereClause?: Record<string, unknown> | null;
|
|
513
513
|
isUnique?: boolean | null;
|
|
514
514
|
options?: Record<string, unknown> | null;
|
|
515
|
-
opClasses?: string | null;
|
|
515
|
+
opClasses?: string[] | null;
|
|
516
516
|
smartTags?: Record<string, unknown> | null;
|
|
517
517
|
category?: ObjectCategory | null;
|
|
518
518
|
module?: string | null;
|
|
519
519
|
scope?: number | null;
|
|
520
|
-
tags?: string | null;
|
|
520
|
+
tags?: string[] | null;
|
|
521
521
|
createdAt?: string | null;
|
|
522
522
|
updatedAt?: string | null;
|
|
523
523
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -544,7 +544,7 @@ export interface Policy {
|
|
|
544
544
|
category?: ObjectCategory | null;
|
|
545
545
|
module?: string | null;
|
|
546
546
|
scope?: number | null;
|
|
547
|
-
tags?: string | null;
|
|
547
|
+
tags?: string[] | null;
|
|
548
548
|
createdAt?: string | null;
|
|
549
549
|
updatedAt?: string | null;
|
|
550
550
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -566,12 +566,12 @@ export interface PrimaryKeyConstraint {
|
|
|
566
566
|
tableId?: string | null;
|
|
567
567
|
name?: string | null;
|
|
568
568
|
type?: string | null;
|
|
569
|
-
fieldIds?: string | null;
|
|
569
|
+
fieldIds?: string[] | null;
|
|
570
570
|
smartTags?: Record<string, unknown> | null;
|
|
571
571
|
category?: ObjectCategory | null;
|
|
572
572
|
module?: string | null;
|
|
573
573
|
scope?: number | null;
|
|
574
|
-
tags?: string | null;
|
|
574
|
+
tags?: string[] | null;
|
|
575
575
|
createdAt?: string | null;
|
|
576
576
|
updatedAt?: string | null;
|
|
577
577
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -589,7 +589,7 @@ export interface TableGrant {
|
|
|
589
589
|
tableId?: string | null;
|
|
590
590
|
privilege?: string | null;
|
|
591
591
|
granteeName?: string | null;
|
|
592
|
-
fieldIds?: string | null;
|
|
592
|
+
fieldIds?: string[] | null;
|
|
593
593
|
isGrant?: boolean | null;
|
|
594
594
|
createdAt?: string | null;
|
|
595
595
|
updatedAt?: string | null;
|
|
@@ -611,7 +611,7 @@ export interface Trigger {
|
|
|
611
611
|
category?: ObjectCategory | null;
|
|
612
612
|
module?: string | null;
|
|
613
613
|
scope?: number | null;
|
|
614
|
-
tags?: string | null;
|
|
614
|
+
tags?: string[] | null;
|
|
615
615
|
createdAt?: string | null;
|
|
616
616
|
updatedAt?: string | null;
|
|
617
617
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -633,11 +633,11 @@ export interface UniqueConstraint {
|
|
|
633
633
|
description?: string | null;
|
|
634
634
|
smartTags?: Record<string, unknown> | null;
|
|
635
635
|
type?: string | null;
|
|
636
|
-
fieldIds?: string | null;
|
|
636
|
+
fieldIds?: string[] | null;
|
|
637
637
|
category?: ObjectCategory | null;
|
|
638
638
|
module?: string | null;
|
|
639
639
|
scope?: number | null;
|
|
640
|
-
tags?: string | null;
|
|
640
|
+
tags?: string[] | null;
|
|
641
641
|
createdAt?: string | null;
|
|
642
642
|
updatedAt?: string | null;
|
|
643
643
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -667,7 +667,7 @@ export interface View {
|
|
|
667
667
|
category?: ObjectCategory | null;
|
|
668
668
|
module?: string | null;
|
|
669
669
|
scope?: number | null;
|
|
670
|
-
tags?: string | null;
|
|
670
|
+
tags?: string[] | null;
|
|
671
671
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
672
672
|
nameTrgmSimilarity?: number | null;
|
|
673
673
|
/** TRGM similarity when searching `viewType`. Returns null when no trgm search filter is active. */
|
|
@@ -758,13 +758,13 @@ export interface SecureTableProvision {
|
|
|
758
758
|
/** JSON array of field definition objects to create on the target table. Each object has keys: "name" (text, required), "type" (text, required), "default" (text, optional), "is_required" (boolean, optional, defaults to false), "min" (float, optional), "max" (float, optional), "regexp" (text, optional). min/max generate CHECK constraints: for text/citext they constrain character_length, for integer/float types they constrain the value. regexp generates a CHECK (col ~ pattern) constraint for text/citext. Fields are created via metaschema.create_field() after any node_type generator runs, and their IDs are appended to out_fields. Example: [{"name":"username","type":"citext","max":256,"regexp":"^[a-z0-9_]+$"},{"name":"score","type":"integer","min":0,"max":100}]. Defaults to '[]' (no additional fields). */
|
|
759
759
|
fields?: Record<string, unknown> | null;
|
|
760
760
|
/** Database roles to grant privileges to. Supports multiple roles, e.g. ARRAY['authenticated', 'admin']. Each role receives all privileges defined in grant_privileges. Defaults to ARRAY['authenticated']. */
|
|
761
|
-
grantRoles?: string | null;
|
|
761
|
+
grantRoles?: string[] | null;
|
|
762
762
|
/** Array of [privilege, columns] tuples defining table grants. Examples: [["select","*"],["insert","*"]] for full access, or [["update",["name","bio"]]] for column-level grants. "*" means all columns; an array means column-level grant. Defaults to '[]' (no grants). The trigger validates this is a proper jsonb array. */
|
|
763
763
|
grantPrivileges?: Record<string, unknown> | null;
|
|
764
764
|
/** Policy generator type, e.g. 'AuthzEntityMembership', 'AuthzMembership', 'AuthzAllowAll'. NULL means no policy is created. When set, the trigger automatically enables RLS on the target table. */
|
|
765
765
|
policyType?: string | null;
|
|
766
766
|
/** Privileges the policy applies to, e.g. ARRAY['select','update']. NULL means privileges are derived from the grant_privileges verbs. */
|
|
767
|
-
policyPrivileges?: string | null;
|
|
767
|
+
policyPrivileges?: string[] | null;
|
|
768
768
|
/** Role the policy targets. NULL means it falls back to the first role in grant_roles. */
|
|
769
769
|
policyRole?: string | null;
|
|
770
770
|
/** Whether the policy is PERMISSIVE (true) or RESTRICTIVE (false). Defaults to true. */
|
|
@@ -774,7 +774,7 @@ export interface SecureTableProvision {
|
|
|
774
774
|
/** Opaque configuration passed through to metaschema.create_policy(). Structure varies by policy_type and is not interpreted by this trigger. Defaults to '{}'. */
|
|
775
775
|
policyData?: Record<string, unknown> | null;
|
|
776
776
|
/** Output column populated by the trigger after field creation. Contains the UUIDs of the metaschema fields created on the target table by this provision row's generator. NULL when node_type is NULL or before the trigger runs. Callers should not set this directly. */
|
|
777
|
-
outFields?: string | null;
|
|
777
|
+
outFields?: string[] | null;
|
|
778
778
|
/** TRGM similarity when searching `tableName`. Returns null when no trgm search filter is active. */
|
|
779
779
|
tableNameTrgmSimilarity?: number | null;
|
|
780
780
|
/** TRGM similarity when searching `nodeType`. Returns null when no trgm search filter is active. */
|
|
@@ -887,7 +887,7 @@ export interface RelationProvision {
|
|
|
887
887
|
*/
|
|
888
888
|
nodeData?: Record<string, unknown> | null;
|
|
889
889
|
/** For RelationManyToMany: database roles to grant privileges to on the junction table. Forwarded to secure_table_provision as-is. Supports multiple roles, e.g. ARRAY['authenticated', 'admin']. Each role receives all privileges defined in grant_privileges. Defaults to ARRAY['authenticated']. Ignored for RelationBelongsTo/RelationHasOne. */
|
|
890
|
-
grantRoles?: string | null;
|
|
890
|
+
grantRoles?: string[] | null;
|
|
891
891
|
/** For RelationManyToMany: privilege grants for the junction table. Forwarded to secure_table_provision as-is. Format: array of [privilege, columns] tuples. Examples: [["select","*"],["insert","*"]] for full access, or [["update",["name","bio"]]] for column-level grants. "*" means all columns. Defaults to select/insert/delete for all columns. Ignored for RelationBelongsTo/RelationHasOne. */
|
|
892
892
|
grantPrivileges?: Record<string, unknown> | null;
|
|
893
893
|
/**
|
|
@@ -898,7 +898,7 @@ export interface RelationProvision {
|
|
|
898
898
|
*/
|
|
899
899
|
policyType?: string | null;
|
|
900
900
|
/** For RelationManyToMany: privileges the policy applies to, e.g. ARRAY['select','insert','delete']. Forwarded to secure_table_provision as-is. NULL means privileges are derived from the grant_privileges verbs by secure_table_provision. Ignored for RelationBelongsTo/RelationHasOne. */
|
|
901
|
-
policyPrivileges?: string | null;
|
|
901
|
+
policyPrivileges?: string[] | null;
|
|
902
902
|
/** For RelationManyToMany: database role the policy targets, e.g. 'authenticated'. Forwarded to secure_table_provision as-is. NULL means secure_table_provision falls back to the first role in grant_roles. Ignored for RelationBelongsTo/RelationHasOne. */
|
|
903
903
|
policyRole?: string | null;
|
|
904
904
|
/** For RelationManyToMany: whether the policy is PERMISSIVE (true) or RESTRICTIVE (false). Forwarded to secure_table_provision as-is. Defaults to true. Ignored for RelationBelongsTo/RelationHasOne. */
|
|
@@ -1233,10 +1233,10 @@ export interface DenormalizedTableField {
|
|
|
1233
1233
|
databaseId?: string | null;
|
|
1234
1234
|
tableId?: string | null;
|
|
1235
1235
|
fieldId?: string | null;
|
|
1236
|
-
setIds?: string | null;
|
|
1236
|
+
setIds?: string[] | null;
|
|
1237
1237
|
refTableId?: string | null;
|
|
1238
1238
|
refFieldId?: string | null;
|
|
1239
|
-
refIds?: string | null;
|
|
1239
|
+
refIds?: string[] | null;
|
|
1240
1240
|
useUpdates?: boolean | null;
|
|
1241
1241
|
updateDefaults?: boolean | null;
|
|
1242
1242
|
funcName?: string | null;
|
|
@@ -1278,8 +1278,8 @@ export interface FieldModule {
|
|
|
1278
1278
|
fieldId?: string | null;
|
|
1279
1279
|
nodeType?: string | null;
|
|
1280
1280
|
data?: Record<string, unknown> | null;
|
|
1281
|
-
triggers?: string | null;
|
|
1282
|
-
functions?: string | null;
|
|
1281
|
+
triggers?: string[] | null;
|
|
1282
|
+
functions?: string[] | null;
|
|
1283
1283
|
/** TRGM similarity when searching `nodeType`. Returns null when no trgm search filter is active. */
|
|
1284
1284
|
nodeTypeTrgmSimilarity?: number | null;
|
|
1285
1285
|
/** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
|
|
@@ -1695,7 +1695,7 @@ export interface DatabaseProvisionModule {
|
|
|
1695
1695
|
/** Base domain for the database (e.g., example.com) */
|
|
1696
1696
|
domain?: string | null;
|
|
1697
1697
|
/** Array of module IDs to install, or ["all"] for all modules */
|
|
1698
|
-
modules?: string | null;
|
|
1698
|
+
modules?: string[] | null;
|
|
1699
1699
|
/** Additional configuration options for provisioning */
|
|
1700
1700
|
options?: Record<string, unknown> | null;
|
|
1701
1701
|
/** When true, copies the owner user and password hash from source database to the newly provisioned database */
|
|
@@ -2149,7 +2149,7 @@ export interface NodeTypeRegistry {
|
|
|
2149
2149
|
/** JSON Schema defining valid parameters for this node type */
|
|
2150
2150
|
parameterSchema?: Record<string, unknown> | null;
|
|
2151
2151
|
/** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
|
|
2152
|
-
tags?: string | null;
|
|
2152
|
+
tags?: string[] | null;
|
|
2153
2153
|
createdAt?: string | null;
|
|
2154
2154
|
updatedAt?: string | null;
|
|
2155
2155
|
/** TRGM similarity when searching `name`. Returns null when no trgm search filter is active. */
|
|
@@ -2192,7 +2192,7 @@ export interface Commit {
|
|
|
2192
2192
|
databaseId?: string | null;
|
|
2193
2193
|
storeId?: string | null;
|
|
2194
2194
|
/** Parent commits */
|
|
2195
|
-
parentIds?: string | null;
|
|
2195
|
+
parentIds?: string[] | null;
|
|
2196
2196
|
/** The author of the commit */
|
|
2197
2197
|
authorId?: string | null;
|
|
2198
2198
|
/** The committer of the commit */
|
|
@@ -2301,7 +2301,7 @@ export interface SqlMigration {
|
|
|
2301
2301
|
name?: string | null;
|
|
2302
2302
|
databaseId?: string | null;
|
|
2303
2303
|
deploy?: string | null;
|
|
2304
|
-
deps?: string | null;
|
|
2304
|
+
deps?: string[] | null;
|
|
2305
2305
|
payload?: Record<string, unknown> | null;
|
|
2306
2306
|
content?: string | null;
|
|
2307
2307
|
revert?: string | null;
|
|
@@ -2358,7 +2358,7 @@ export interface AstMigration {
|
|
|
2358
2358
|
id: number;
|
|
2359
2359
|
databaseId?: string | null;
|
|
2360
2360
|
name?: string | null;
|
|
2361
|
-
requires?: string | null;
|
|
2361
|
+
requires?: string[] | null;
|
|
2362
2362
|
payload?: Record<string, unknown> | null;
|
|
2363
2363
|
deploys?: string | null;
|
|
2364
2364
|
deploy?: Record<string, unknown> | null;
|
|
@@ -6153,7 +6153,7 @@ export interface OrgGetSubordinatesRecordFilter {
|
|
|
6153
6153
|
not?: OrgGetSubordinatesRecordFilter;
|
|
6154
6154
|
}
|
|
6155
6155
|
export interface GetAllRecordFilter {
|
|
6156
|
-
path?:
|
|
6156
|
+
path?: StringListFilter;
|
|
6157
6157
|
data?: JSONFilter;
|
|
6158
6158
|
and?: GetAllRecordFilter[];
|
|
6159
6159
|
or?: GetAllRecordFilter[];
|
|
@@ -6163,8 +6163,8 @@ export interface ObjectFilter {
|
|
|
6163
6163
|
hashUuid?: UUIDFilter;
|
|
6164
6164
|
id?: UUIDFilter;
|
|
6165
6165
|
databaseId?: UUIDFilter;
|
|
6166
|
-
kids?:
|
|
6167
|
-
ktree?:
|
|
6166
|
+
kids?: UUIDListFilter;
|
|
6167
|
+
ktree?: StringListFilter;
|
|
6168
6168
|
data?: JSONFilter;
|
|
6169
6169
|
frzn?: BooleanFilter;
|
|
6170
6170
|
createdAt?: DatetimeFilter;
|
|
@@ -6239,7 +6239,7 @@ export interface SchemaFilter {
|
|
|
6239
6239
|
category?: StringFilter;
|
|
6240
6240
|
module?: StringFilter;
|
|
6241
6241
|
scope?: IntFilter;
|
|
6242
|
-
tags?:
|
|
6242
|
+
tags?: StringListFilter;
|
|
6243
6243
|
isPublic?: BooleanFilter;
|
|
6244
6244
|
createdAt?: DatetimeFilter;
|
|
6245
6245
|
updatedAt?: DatetimeFilter;
|
|
@@ -6269,7 +6269,7 @@ export interface TableFilter {
|
|
|
6269
6269
|
peoplestamps?: BooleanFilter;
|
|
6270
6270
|
pluralName?: StringFilter;
|
|
6271
6271
|
singularName?: StringFilter;
|
|
6272
|
-
tags?:
|
|
6272
|
+
tags?: StringListFilter;
|
|
6273
6273
|
inheritsId?: UUIDFilter;
|
|
6274
6274
|
createdAt?: DatetimeFilter;
|
|
6275
6275
|
updatedAt?: DatetimeFilter;
|
|
@@ -6290,13 +6290,13 @@ export interface CheckConstraintFilter {
|
|
|
6290
6290
|
tableId?: UUIDFilter;
|
|
6291
6291
|
name?: StringFilter;
|
|
6292
6292
|
type?: StringFilter;
|
|
6293
|
-
fieldIds?:
|
|
6293
|
+
fieldIds?: UUIDListFilter;
|
|
6294
6294
|
expr?: JSONFilter;
|
|
6295
6295
|
smartTags?: JSONFilter;
|
|
6296
6296
|
category?: StringFilter;
|
|
6297
6297
|
module?: StringFilter;
|
|
6298
6298
|
scope?: IntFilter;
|
|
6299
|
-
tags?:
|
|
6299
|
+
tags?: StringListFilter;
|
|
6300
6300
|
createdAt?: DatetimeFilter;
|
|
6301
6301
|
updatedAt?: DatetimeFilter;
|
|
6302
6302
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -6326,7 +6326,7 @@ export interface FieldFilter {
|
|
|
6326
6326
|
chkExpr?: JSONFilter;
|
|
6327
6327
|
min?: FloatFilter;
|
|
6328
6328
|
max?: FloatFilter;
|
|
6329
|
-
tags?:
|
|
6329
|
+
tags?: StringListFilter;
|
|
6330
6330
|
category?: StringFilter;
|
|
6331
6331
|
module?: StringFilter;
|
|
6332
6332
|
scope?: IntFilter;
|
|
@@ -6351,15 +6351,15 @@ export interface ForeignKeyConstraintFilter {
|
|
|
6351
6351
|
description?: StringFilter;
|
|
6352
6352
|
smartTags?: JSONFilter;
|
|
6353
6353
|
type?: StringFilter;
|
|
6354
|
-
fieldIds?:
|
|
6354
|
+
fieldIds?: UUIDListFilter;
|
|
6355
6355
|
refTableId?: UUIDFilter;
|
|
6356
|
-
refFieldIds?:
|
|
6356
|
+
refFieldIds?: UUIDListFilter;
|
|
6357
6357
|
deleteAction?: StringFilter;
|
|
6358
6358
|
updateAction?: StringFilter;
|
|
6359
6359
|
category?: StringFilter;
|
|
6360
6360
|
module?: StringFilter;
|
|
6361
6361
|
scope?: IntFilter;
|
|
6362
|
-
tags?:
|
|
6362
|
+
tags?: StringListFilter;
|
|
6363
6363
|
createdAt?: DatetimeFilter;
|
|
6364
6364
|
updatedAt?: DatetimeFilter;
|
|
6365
6365
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -6378,9 +6378,9 @@ export interface FullTextSearchFilter {
|
|
|
6378
6378
|
databaseId?: UUIDFilter;
|
|
6379
6379
|
tableId?: UUIDFilter;
|
|
6380
6380
|
fieldId?: UUIDFilter;
|
|
6381
|
-
fieldIds?:
|
|
6382
|
-
weights?:
|
|
6383
|
-
langs?:
|
|
6381
|
+
fieldIds?: UUIDListFilter;
|
|
6382
|
+
weights?: StringListFilter;
|
|
6383
|
+
langs?: StringListFilter;
|
|
6384
6384
|
createdAt?: DatetimeFilter;
|
|
6385
6385
|
updatedAt?: DatetimeFilter;
|
|
6386
6386
|
and?: FullTextSearchFilter[];
|
|
@@ -6392,19 +6392,19 @@ export interface IndexFilter {
|
|
|
6392
6392
|
databaseId?: UUIDFilter;
|
|
6393
6393
|
tableId?: UUIDFilter;
|
|
6394
6394
|
name?: StringFilter;
|
|
6395
|
-
fieldIds?:
|
|
6396
|
-
includeFieldIds?:
|
|
6395
|
+
fieldIds?: UUIDListFilter;
|
|
6396
|
+
includeFieldIds?: UUIDListFilter;
|
|
6397
6397
|
accessMethod?: StringFilter;
|
|
6398
6398
|
indexParams?: JSONFilter;
|
|
6399
6399
|
whereClause?: JSONFilter;
|
|
6400
6400
|
isUnique?: BooleanFilter;
|
|
6401
6401
|
options?: JSONFilter;
|
|
6402
|
-
opClasses?:
|
|
6402
|
+
opClasses?: StringListFilter;
|
|
6403
6403
|
smartTags?: JSONFilter;
|
|
6404
6404
|
category?: StringFilter;
|
|
6405
6405
|
module?: StringFilter;
|
|
6406
6406
|
scope?: IntFilter;
|
|
6407
|
-
tags?:
|
|
6407
|
+
tags?: StringListFilter;
|
|
6408
6408
|
createdAt?: DatetimeFilter;
|
|
6409
6409
|
updatedAt?: DatetimeFilter;
|
|
6410
6410
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -6430,7 +6430,7 @@ export interface PolicyFilter {
|
|
|
6430
6430
|
category?: StringFilter;
|
|
6431
6431
|
module?: StringFilter;
|
|
6432
6432
|
scope?: IntFilter;
|
|
6433
|
-
tags?:
|
|
6433
|
+
tags?: StringListFilter;
|
|
6434
6434
|
createdAt?: DatetimeFilter;
|
|
6435
6435
|
updatedAt?: DatetimeFilter;
|
|
6436
6436
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -6449,12 +6449,12 @@ export interface PrimaryKeyConstraintFilter {
|
|
|
6449
6449
|
tableId?: UUIDFilter;
|
|
6450
6450
|
name?: StringFilter;
|
|
6451
6451
|
type?: StringFilter;
|
|
6452
|
-
fieldIds?:
|
|
6452
|
+
fieldIds?: UUIDListFilter;
|
|
6453
6453
|
smartTags?: JSONFilter;
|
|
6454
6454
|
category?: StringFilter;
|
|
6455
6455
|
module?: StringFilter;
|
|
6456
6456
|
scope?: IntFilter;
|
|
6457
|
-
tags?:
|
|
6457
|
+
tags?: StringListFilter;
|
|
6458
6458
|
createdAt?: DatetimeFilter;
|
|
6459
6459
|
updatedAt?: DatetimeFilter;
|
|
6460
6460
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -6471,7 +6471,7 @@ export interface TableGrantFilter {
|
|
|
6471
6471
|
tableId?: UUIDFilter;
|
|
6472
6472
|
privilege?: StringFilter;
|
|
6473
6473
|
granteeName?: StringFilter;
|
|
6474
|
-
fieldIds?:
|
|
6474
|
+
fieldIds?: UUIDListFilter;
|
|
6475
6475
|
isGrant?: BooleanFilter;
|
|
6476
6476
|
createdAt?: DatetimeFilter;
|
|
6477
6477
|
updatedAt?: DatetimeFilter;
|
|
@@ -6493,7 +6493,7 @@ export interface TriggerFilter {
|
|
|
6493
6493
|
category?: StringFilter;
|
|
6494
6494
|
module?: StringFilter;
|
|
6495
6495
|
scope?: IntFilter;
|
|
6496
|
-
tags?:
|
|
6496
|
+
tags?: StringListFilter;
|
|
6497
6497
|
createdAt?: DatetimeFilter;
|
|
6498
6498
|
updatedAt?: DatetimeFilter;
|
|
6499
6499
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -6513,11 +6513,11 @@ export interface UniqueConstraintFilter {
|
|
|
6513
6513
|
description?: StringFilter;
|
|
6514
6514
|
smartTags?: JSONFilter;
|
|
6515
6515
|
type?: StringFilter;
|
|
6516
|
-
fieldIds?:
|
|
6516
|
+
fieldIds?: UUIDListFilter;
|
|
6517
6517
|
category?: StringFilter;
|
|
6518
6518
|
module?: StringFilter;
|
|
6519
6519
|
scope?: IntFilter;
|
|
6520
|
-
tags?:
|
|
6520
|
+
tags?: StringListFilter;
|
|
6521
6521
|
createdAt?: DatetimeFilter;
|
|
6522
6522
|
updatedAt?: DatetimeFilter;
|
|
6523
6523
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -6545,7 +6545,7 @@ export interface ViewFilter {
|
|
|
6545
6545
|
category?: StringFilter;
|
|
6546
6546
|
module?: StringFilter;
|
|
6547
6547
|
scope?: IntFilter;
|
|
6548
|
-
tags?:
|
|
6548
|
+
tags?: StringListFilter;
|
|
6549
6549
|
nameTrgmSimilarity?: FloatFilter;
|
|
6550
6550
|
viewTypeTrgmSimilarity?: FloatFilter;
|
|
6551
6551
|
filterTypeTrgmSimilarity?: FloatFilter;
|
|
@@ -6621,15 +6621,15 @@ export interface SecureTableProvisionFilter {
|
|
|
6621
6621
|
useRls?: BooleanFilter;
|
|
6622
6622
|
nodeData?: JSONFilter;
|
|
6623
6623
|
fields?: JSONFilter;
|
|
6624
|
-
grantRoles?:
|
|
6624
|
+
grantRoles?: StringListFilter;
|
|
6625
6625
|
grantPrivileges?: JSONFilter;
|
|
6626
6626
|
policyType?: StringFilter;
|
|
6627
|
-
policyPrivileges?:
|
|
6627
|
+
policyPrivileges?: StringListFilter;
|
|
6628
6628
|
policyRole?: StringFilter;
|
|
6629
6629
|
policyPermissive?: BooleanFilter;
|
|
6630
6630
|
policyName?: StringFilter;
|
|
6631
6631
|
policyData?: JSONFilter;
|
|
6632
|
-
outFields?:
|
|
6632
|
+
outFields?: UUIDListFilter;
|
|
6633
6633
|
tableNameTrgmSimilarity?: FloatFilter;
|
|
6634
6634
|
nodeTypeTrgmSimilarity?: FloatFilter;
|
|
6635
6635
|
policyTypeTrgmSimilarity?: FloatFilter;
|
|
@@ -6657,10 +6657,10 @@ export interface RelationProvisionFilter {
|
|
|
6657
6657
|
useCompositeKey?: BooleanFilter;
|
|
6658
6658
|
nodeType?: StringFilter;
|
|
6659
6659
|
nodeData?: JSONFilter;
|
|
6660
|
-
grantRoles?:
|
|
6660
|
+
grantRoles?: StringListFilter;
|
|
6661
6661
|
grantPrivileges?: JSONFilter;
|
|
6662
6662
|
policyType?: StringFilter;
|
|
6663
|
-
policyPrivileges?:
|
|
6663
|
+
policyPrivileges?: StringListFilter;
|
|
6664
6664
|
policyRole?: StringFilter;
|
|
6665
6665
|
policyPermissive?: BooleanFilter;
|
|
6666
6666
|
policyName?: StringFilter;
|
|
@@ -6915,10 +6915,10 @@ export interface DenormalizedTableFieldFilter {
|
|
|
6915
6915
|
databaseId?: UUIDFilter;
|
|
6916
6916
|
tableId?: UUIDFilter;
|
|
6917
6917
|
fieldId?: UUIDFilter;
|
|
6918
|
-
setIds?:
|
|
6918
|
+
setIds?: UUIDListFilter;
|
|
6919
6919
|
refTableId?: UUIDFilter;
|
|
6920
6920
|
refFieldId?: UUIDFilter;
|
|
6921
|
-
refIds?:
|
|
6921
|
+
refIds?: UUIDListFilter;
|
|
6922
6922
|
useUpdates?: BooleanFilter;
|
|
6923
6923
|
updateDefaults?: BooleanFilter;
|
|
6924
6924
|
funcName?: StringFilter;
|
|
@@ -6963,8 +6963,8 @@ export interface FieldModuleFilter {
|
|
|
6963
6963
|
fieldId?: UUIDFilter;
|
|
6964
6964
|
nodeType?: StringFilter;
|
|
6965
6965
|
data?: JSONFilter;
|
|
6966
|
-
triggers?:
|
|
6967
|
-
functions?:
|
|
6966
|
+
triggers?: StringListFilter;
|
|
6967
|
+
functions?: StringListFilter;
|
|
6968
6968
|
nodeTypeTrgmSimilarity?: FloatFilter;
|
|
6969
6969
|
searchScore?: FloatFilter;
|
|
6970
6970
|
and?: FieldModuleFilter[];
|
|
@@ -7323,7 +7323,7 @@ export interface DatabaseProvisionModuleFilter {
|
|
|
7323
7323
|
ownerId?: UUIDFilter;
|
|
7324
7324
|
subdomain?: StringFilter;
|
|
7325
7325
|
domain?: StringFilter;
|
|
7326
|
-
modules?:
|
|
7326
|
+
modules?: StringListFilter;
|
|
7327
7327
|
options?: JSONFilter;
|
|
7328
7328
|
bootstrapUser?: BooleanFilter;
|
|
7329
7329
|
status?: StringFilter;
|
|
@@ -7695,7 +7695,7 @@ export interface NodeTypeRegistryFilter {
|
|
|
7695
7695
|
displayName?: StringFilter;
|
|
7696
7696
|
description?: StringFilter;
|
|
7697
7697
|
parameterSchema?: JSONFilter;
|
|
7698
|
-
tags?:
|
|
7698
|
+
tags?: StringListFilter;
|
|
7699
7699
|
createdAt?: DatetimeFilter;
|
|
7700
7700
|
updatedAt?: DatetimeFilter;
|
|
7701
7701
|
nameTrgmSimilarity?: FloatFilter;
|
|
@@ -7725,7 +7725,7 @@ export interface CommitFilter {
|
|
|
7725
7725
|
message?: StringFilter;
|
|
7726
7726
|
databaseId?: UUIDFilter;
|
|
7727
7727
|
storeId?: UUIDFilter;
|
|
7728
|
-
parentIds?:
|
|
7728
|
+
parentIds?: UUIDListFilter;
|
|
7729
7729
|
authorId?: UUIDFilter;
|
|
7730
7730
|
committerId?: UUIDFilter;
|
|
7731
7731
|
treeId?: UUIDFilter;
|
|
@@ -7817,7 +7817,7 @@ export interface SqlMigrationFilter {
|
|
|
7817
7817
|
name?: StringFilter;
|
|
7818
7818
|
databaseId?: UUIDFilter;
|
|
7819
7819
|
deploy?: StringFilter;
|
|
7820
|
-
deps?:
|
|
7820
|
+
deps?: StringListFilter;
|
|
7821
7821
|
payload?: JSONFilter;
|
|
7822
7822
|
content?: StringFilter;
|
|
7823
7823
|
revert?: StringFilter;
|
|
@@ -7869,7 +7869,7 @@ export interface AstMigrationFilter {
|
|
|
7869
7869
|
id?: IntFilter;
|
|
7870
7870
|
databaseId?: UUIDFilter;
|
|
7871
7871
|
name?: StringFilter;
|
|
7872
|
-
requires?:
|
|
7872
|
+
requires?: StringListFilter;
|
|
7873
7873
|
payload?: JSONFilter;
|
|
7874
7874
|
deploys?: StringFilter;
|
|
7875
7875
|
deploy?: JSONFilter;
|
|
@@ -7945,106 +7945,106 @@ export interface HierarchyModuleFilter {
|
|
|
7945
7945
|
export type OrgGetManagersRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
|
|
7946
7946
|
export type OrgGetSubordinatesRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
|
|
7947
7947
|
export type GetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'DATA_ASC' | 'DATA_DESC';
|
|
7948
|
-
export type ObjectOrderBy = '
|
|
7949
|
-
export type AppPermissionOrderBy = '
|
|
7950
|
-
export type OrgPermissionOrderBy = '
|
|
7951
|
-
export type AppLevelRequirementOrderBy = '
|
|
7952
|
-
export type DatabaseOrderBy = '
|
|
7953
|
-
export type SchemaOrderBy = '
|
|
7954
|
-
export type TableOrderBy = '
|
|
7955
|
-
export type CheckConstraintOrderBy = '
|
|
7956
|
-
export type FieldOrderBy = '
|
|
7957
|
-
export type ForeignKeyConstraintOrderBy = '
|
|
7958
|
-
export type FullTextSearchOrderBy = '
|
|
7959
|
-
export type IndexOrderBy = '
|
|
7960
|
-
export type PolicyOrderBy = '
|
|
7961
|
-
export type PrimaryKeyConstraintOrderBy = '
|
|
7962
|
-
export type TableGrantOrderBy = '
|
|
7963
|
-
export type TriggerOrderBy = '
|
|
7964
|
-
export type UniqueConstraintOrderBy = '
|
|
7965
|
-
export type ViewOrderBy = '
|
|
7966
|
-
export type ViewTableOrderBy = '
|
|
7967
|
-
export type ViewGrantOrderBy = '
|
|
7968
|
-
export type ViewRuleOrderBy = '
|
|
7969
|
-
export type TableTemplateModuleOrderBy = '
|
|
7970
|
-
export type SecureTableProvisionOrderBy = '
|
|
7971
|
-
export type RelationProvisionOrderBy = '
|
|
7972
|
-
export type SchemaGrantOrderBy = '
|
|
7973
|
-
export type DefaultPrivilegeOrderBy = '
|
|
7974
|
-
export type ApiSchemaOrderBy = '
|
|
7975
|
-
export type ApiModuleOrderBy = '
|
|
7976
|
-
export type DomainOrderBy = '
|
|
7977
|
-
export type SiteMetadatumOrderBy = '
|
|
7978
|
-
export type SiteModuleOrderBy = '
|
|
7979
|
-
export type SiteThemeOrderBy = '
|
|
7980
|
-
export type TriggerFunctionOrderBy = '
|
|
7981
|
-
export type ApiOrderBy = '
|
|
7982
|
-
export type SiteOrderBy = '
|
|
7983
|
-
export type AppOrderBy = '
|
|
7984
|
-
export type ConnectedAccountsModuleOrderBy = '
|
|
7985
|
-
export type CryptoAddressesModuleOrderBy = '
|
|
7986
|
-
export type CryptoAuthModuleOrderBy = '
|
|
7987
|
-
export type DefaultIdsModuleOrderBy = '
|
|
7988
|
-
export type DenormalizedTableFieldOrderBy = '
|
|
7989
|
-
export type EmailsModuleOrderBy = '
|
|
7990
|
-
export type EncryptedSecretsModuleOrderBy = '
|
|
7991
|
-
export type FieldModuleOrderBy = '
|
|
7992
|
-
export type InvitesModuleOrderBy = '
|
|
7993
|
-
export type LevelsModuleOrderBy = '
|
|
7994
|
-
export type LimitsModuleOrderBy = '
|
|
7995
|
-
export type MembershipTypesModuleOrderBy = '
|
|
7996
|
-
export type MembershipsModuleOrderBy = '
|
|
7997
|
-
export type PermissionsModuleOrderBy = '
|
|
7998
|
-
export type PhoneNumbersModuleOrderBy = '
|
|
7999
|
-
export type ProfilesModuleOrderBy = '
|
|
8000
|
-
export type SecretsModuleOrderBy = '
|
|
8001
|
-
export type SessionsModuleOrderBy = '
|
|
8002
|
-
export type UserAuthModuleOrderBy = '
|
|
8003
|
-
export type UsersModuleOrderBy = '
|
|
8004
|
-
export type UuidModuleOrderBy = '
|
|
8005
|
-
export type DatabaseProvisionModuleOrderBy = '
|
|
8006
|
-
export type AppAdminGrantOrderBy = '
|
|
8007
|
-
export type AppOwnerGrantOrderBy = '
|
|
8008
|
-
export type AppGrantOrderBy = '
|
|
8009
|
-
export type OrgMembershipOrderBy = '
|
|
8010
|
-
export type OrgMemberOrderBy = '
|
|
8011
|
-
export type OrgAdminGrantOrderBy = '
|
|
8012
|
-
export type OrgOwnerGrantOrderBy = '
|
|
8013
|
-
export type OrgGrantOrderBy = '
|
|
8014
|
-
export type OrgChartEdgeOrderBy = '
|
|
8015
|
-
export type OrgChartEdgeGrantOrderBy = '
|
|
8016
|
-
export type AppLimitOrderBy = '
|
|
8017
|
-
export type OrgLimitOrderBy = '
|
|
8018
|
-
export type AppStepOrderBy = '
|
|
8019
|
-
export type AppAchievementOrderBy = '
|
|
8020
|
-
export type InviteOrderBy = '
|
|
8021
|
-
export type ClaimedInviteOrderBy = '
|
|
8022
|
-
export type OrgInviteOrderBy = '
|
|
8023
|
-
export type OrgClaimedInviteOrderBy = '
|
|
8024
|
-
export type RefOrderBy = '
|
|
8025
|
-
export type StoreOrderBy = '
|
|
8026
|
-
export type AppPermissionDefaultOrderBy = '
|
|
8027
|
-
export type CryptoAddressOrderBy = '
|
|
8028
|
-
export type RoleTypeOrderBy = '
|
|
8029
|
-
export type OrgPermissionDefaultOrderBy = '
|
|
8030
|
-
export type PhoneNumberOrderBy = '
|
|
8031
|
-
export type AppLimitDefaultOrderBy = '
|
|
8032
|
-
export type OrgLimitDefaultOrderBy = '
|
|
8033
|
-
export type ConnectedAccountOrderBy = '
|
|
8034
|
-
export type NodeTypeRegistryOrderBy = '
|
|
8035
|
-
export type MembershipTypeOrderBy = '
|
|
8036
|
-
export type CommitOrderBy = '
|
|
8037
|
-
export type AppMembershipDefaultOrderBy = '
|
|
8038
|
-
export type RlsModuleOrderBy = '
|
|
8039
|
-
export type OrgMembershipDefaultOrderBy = '
|
|
8040
|
-
export type AuditLogOrderBy = '
|
|
8041
|
-
export type AppLevelOrderBy = '
|
|
8042
|
-
export type SqlMigrationOrderBy = '
|
|
8043
|
-
export type EmailOrderBy = '
|
|
8044
|
-
export type UserOrderBy = '
|
|
8045
|
-
export type AstMigrationOrderBy = '
|
|
8046
|
-
export type AppMembershipOrderBy = '
|
|
8047
|
-
export type HierarchyModuleOrderBy = '
|
|
7948
|
+
export type ObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FRZN_ASC' | 'FRZN_DESC';
|
|
7949
|
+
export type AppPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7950
|
+
export type OrgPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7951
|
+
export type AppLevelRequirementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LEVEL_ASC' | 'LEVEL_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7952
|
+
export type DatabaseOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SCHEMA_HASH_ASC' | 'SCHEMA_HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SCHEMA_HASH_TRGM_SIMILARITY_ASC' | 'SCHEMA_HASH_TRGM_SIMILARITY_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'LABEL_TRGM_SIMILARITY_ASC' | 'LABEL_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7953
|
+
export type SchemaOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SCHEMA_NAME_ASC' | 'SCHEMA_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SCHEMA_NAME_TRGM_SIMILARITY_ASC' | 'SCHEMA_NAME_TRGM_SIMILARITY_DESC' | 'LABEL_TRGM_SIMILARITY_ASC' | 'LABEL_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7954
|
+
export type TableOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'LABEL_TRGM_SIMILARITY_ASC' | 'LABEL_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'PLURAL_NAME_TRGM_SIMILARITY_ASC' | 'PLURAL_NAME_TRGM_SIMILARITY_DESC' | 'SINGULAR_NAME_TRGM_SIMILARITY_ASC' | 'SINGULAR_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7955
|
+
export type CheckConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'TYPE_TRGM_SIMILARITY_ASC' | 'TYPE_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7956
|
+
export type FieldOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'LABEL_TRGM_SIMILARITY_ASC' | 'LABEL_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'DEFAULT_VALUE_TRGM_SIMILARITY_ASC' | 'DEFAULT_VALUE_TRGM_SIMILARITY_DESC' | 'REGEXP_TRGM_SIMILARITY_ASC' | 'REGEXP_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7957
|
+
export type ForeignKeyConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'TYPE_TRGM_SIMILARITY_ASC' | 'TYPE_TRGM_SIMILARITY_DESC' | 'DELETE_ACTION_TRGM_SIMILARITY_ASC' | 'DELETE_ACTION_TRGM_SIMILARITY_DESC' | 'UPDATE_ACTION_TRGM_SIMILARITY_ASC' | 'UPDATE_ACTION_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7958
|
+
export type FullTextSearchOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
7959
|
+
export type IndexOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'ACCESS_METHOD_TRGM_SIMILARITY_ASC' | 'ACCESS_METHOD_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7960
|
+
export type PolicyOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'GRANTEE_NAME_TRGM_SIMILARITY_ASC' | 'GRANTEE_NAME_TRGM_SIMILARITY_DESC' | 'PRIVILEGE_TRGM_SIMILARITY_ASC' | 'PRIVILEGE_TRGM_SIMILARITY_DESC' | 'POLICY_TYPE_TRGM_SIMILARITY_ASC' | 'POLICY_TYPE_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7961
|
+
export type PrimaryKeyConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'TYPE_TRGM_SIMILARITY_ASC' | 'TYPE_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7962
|
+
export type TableGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'PRIVILEGE_TRGM_SIMILARITY_ASC' | 'PRIVILEGE_TRGM_SIMILARITY_DESC' | 'GRANTEE_NAME_TRGM_SIMILARITY_ASC' | 'GRANTEE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7963
|
+
export type TriggerOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'EVENT_TRGM_SIMILARITY_ASC' | 'EVENT_TRGM_SIMILARITY_DESC' | 'FUNCTION_NAME_TRGM_SIMILARITY_ASC' | 'FUNCTION_NAME_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7964
|
+
export type UniqueConstraintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'TYPE_TRGM_SIMILARITY_ASC' | 'TYPE_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7965
|
+
export type ViewOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'VIEW_TYPE_TRGM_SIMILARITY_ASC' | 'VIEW_TYPE_TRGM_SIMILARITY_DESC' | 'FILTER_TYPE_TRGM_SIMILARITY_ASC' | 'FILTER_TYPE_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7966
|
+
export type ViewTableOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'VIEW_ID_ASC' | 'VIEW_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC';
|
|
7967
|
+
export type ViewGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'VIEW_ID_ASC' | 'VIEW_ID_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'GRANTEE_NAME_TRGM_SIMILARITY_ASC' | 'GRANTEE_NAME_TRGM_SIMILARITY_DESC' | 'PRIVILEGE_TRGM_SIMILARITY_ASC' | 'PRIVILEGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7968
|
+
export type ViewRuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'VIEW_ID_ASC' | 'VIEW_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'EVENT_TRGM_SIMILARITY_ASC' | 'EVENT_TRGM_SIMILARITY_DESC' | 'ACTION_TRGM_SIMILARITY_ASC' | 'ACTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7969
|
+
export type TableTemplateModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'NODE_TYPE_ASC' | 'NODE_TYPE_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'NODE_TYPE_TRGM_SIMILARITY_ASC' | 'NODE_TYPE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7970
|
+
export type SecureTableProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'NODE_TYPE_ASC' | 'NODE_TYPE_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'NODE_TYPE_TRGM_SIMILARITY_ASC' | 'NODE_TYPE_TRGM_SIMILARITY_DESC' | 'POLICY_TYPE_TRGM_SIMILARITY_ASC' | 'POLICY_TYPE_TRGM_SIMILARITY_DESC' | 'POLICY_ROLE_TRGM_SIMILARITY_ASC' | 'POLICY_ROLE_TRGM_SIMILARITY_DESC' | 'POLICY_NAME_TRGM_SIMILARITY_ASC' | 'POLICY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7971
|
+
export type RelationProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'RELATION_TYPE_ASC' | 'RELATION_TYPE_DESC' | 'SOURCE_TABLE_ID_ASC' | 'SOURCE_TABLE_ID_DESC' | 'TARGET_TABLE_ID_ASC' | 'TARGET_TABLE_ID_DESC' | 'RELATION_TYPE_TRGM_SIMILARITY_ASC' | 'RELATION_TYPE_TRGM_SIMILARITY_DESC' | 'FIELD_NAME_TRGM_SIMILARITY_ASC' | 'FIELD_NAME_TRGM_SIMILARITY_DESC' | 'DELETE_ACTION_TRGM_SIMILARITY_ASC' | 'DELETE_ACTION_TRGM_SIMILARITY_DESC' | 'JUNCTION_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'JUNCTION_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SOURCE_FIELD_NAME_TRGM_SIMILARITY_ASC' | 'SOURCE_FIELD_NAME_TRGM_SIMILARITY_DESC' | 'TARGET_FIELD_NAME_TRGM_SIMILARITY_ASC' | 'TARGET_FIELD_NAME_TRGM_SIMILARITY_DESC' | 'NODE_TYPE_TRGM_SIMILARITY_ASC' | 'NODE_TYPE_TRGM_SIMILARITY_DESC' | 'POLICY_TYPE_TRGM_SIMILARITY_ASC' | 'POLICY_TYPE_TRGM_SIMILARITY_DESC' | 'POLICY_ROLE_TRGM_SIMILARITY_ASC' | 'POLICY_ROLE_TRGM_SIMILARITY_DESC' | 'POLICY_NAME_TRGM_SIMILARITY_ASC' | 'POLICY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7972
|
+
export type SchemaGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'GRANTEE_NAME_TRGM_SIMILARITY_ASC' | 'GRANTEE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7973
|
+
export type DefaultPrivilegeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'OBJECT_TYPE_ASC' | 'OBJECT_TYPE_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'OBJECT_TYPE_TRGM_SIMILARITY_ASC' | 'OBJECT_TYPE_TRGM_SIMILARITY_DESC' | 'PRIVILEGE_TRGM_SIMILARITY_ASC' | 'PRIVILEGE_TRGM_SIMILARITY_DESC' | 'GRANTEE_NAME_TRGM_SIMILARITY_ASC' | 'GRANTEE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7974
|
+
export type ApiSchemaOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC';
|
|
7975
|
+
export type ApiModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7976
|
+
export type DomainOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'SUBDOMAIN_ASC' | 'SUBDOMAIN_DESC' | 'DOMAIN_ASC' | 'DOMAIN_DESC';
|
|
7977
|
+
export type SiteMetadatumOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'TITLE_TRGM_SIMILARITY_ASC' | 'TITLE_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7978
|
+
export type SiteModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7979
|
+
export type SiteThemeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC';
|
|
7980
|
+
export type TriggerFunctionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'CODE_TRGM_SIMILARITY_ASC' | 'CODE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7981
|
+
export type ApiOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'DBNAME_TRGM_SIMILARITY_ASC' | 'DBNAME_TRGM_SIMILARITY_DESC' | 'ROLE_NAME_TRGM_SIMILARITY_ASC' | 'ROLE_NAME_TRGM_SIMILARITY_DESC' | 'ANON_ROLE_TRGM_SIMILARITY_ASC' | 'ANON_ROLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7982
|
+
export type SiteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TITLE_TRGM_SIMILARITY_ASC' | 'TITLE_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'DBNAME_TRGM_SIMILARITY_ASC' | 'DBNAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7983
|
+
export type AppOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'APP_STORE_ID_TRGM_SIMILARITY_ASC' | 'APP_STORE_ID_TRGM_SIMILARITY_DESC' | 'APP_ID_PREFIX_TRGM_SIMILARITY_ASC' | 'APP_ID_PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7984
|
+
export type ConnectedAccountsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7985
|
+
export type CryptoAddressesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'CRYPTO_NETWORK_TRGM_SIMILARITY_ASC' | 'CRYPTO_NETWORK_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7986
|
+
export type CryptoAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'USER_FIELD_TRGM_SIMILARITY_ASC' | 'USER_FIELD_TRGM_SIMILARITY_DESC' | 'CRYPTO_NETWORK_TRGM_SIMILARITY_ASC' | 'CRYPTO_NETWORK_TRGM_SIMILARITY_DESC' | 'SIGN_IN_REQUEST_CHALLENGE_TRGM_SIMILARITY_ASC' | 'SIGN_IN_REQUEST_CHALLENGE_TRGM_SIMILARITY_DESC' | 'SIGN_IN_RECORD_FAILURE_TRGM_SIMILARITY_ASC' | 'SIGN_IN_RECORD_FAILURE_TRGM_SIMILARITY_DESC' | 'SIGN_UP_WITH_KEY_TRGM_SIMILARITY_ASC' | 'SIGN_UP_WITH_KEY_TRGM_SIMILARITY_DESC' | 'SIGN_IN_WITH_CHALLENGE_TRGM_SIMILARITY_ASC' | 'SIGN_IN_WITH_CHALLENGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7987
|
+
export type DefaultIdsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
|
|
7988
|
+
export type DenormalizedTableFieldOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNC_NAME_TRGM_SIMILARITY_ASC' | 'FUNC_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7989
|
+
export type EmailsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7990
|
+
export type EncryptedSecretsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7991
|
+
export type FieldModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NODE_TYPE_ASC' | 'NODE_TYPE_DESC' | 'NODE_TYPE_TRGM_SIMILARITY_ASC' | 'NODE_TYPE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7992
|
+
export type InvitesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'INVITES_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'INVITES_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'CLAIMED_INVITES_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'CLAIMED_INVITES_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SUBMIT_INVITE_CODE_FUNCTION_TRGM_SIMILARITY_ASC' | 'SUBMIT_INVITE_CODE_FUNCTION_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7993
|
+
export type LevelsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STEPS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'STEPS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'ACHIEVEMENTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'ACHIEVEMENTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'LEVELS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'LEVELS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'LEVEL_REQUIREMENTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'LEVEL_REQUIREMENTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'COMPLETED_STEP_TRGM_SIMILARITY_ASC' | 'COMPLETED_STEP_TRGM_SIMILARITY_DESC' | 'INCOMPLETED_STEP_TRGM_SIMILARITY_ASC' | 'INCOMPLETED_STEP_TRGM_SIMILARITY_DESC' | 'TG_ACHIEVEMENT_TRGM_SIMILARITY_ASC' | 'TG_ACHIEVEMENT_TRGM_SIMILARITY_DESC' | 'TG_ACHIEVEMENT_TOGGLE_TRGM_SIMILARITY_ASC' | 'TG_ACHIEVEMENT_TOGGLE_TRGM_SIMILARITY_DESC' | 'TG_ACHIEVEMENT_TOGGLE_BOOLEAN_TRGM_SIMILARITY_ASC' | 'TG_ACHIEVEMENT_TOGGLE_BOOLEAN_TRGM_SIMILARITY_DESC' | 'TG_ACHIEVEMENT_BOOLEAN_TRGM_SIMILARITY_ASC' | 'TG_ACHIEVEMENT_BOOLEAN_TRGM_SIMILARITY_DESC' | 'UPSERT_ACHIEVEMENT_TRGM_SIMILARITY_ASC' | 'UPSERT_ACHIEVEMENT_TRGM_SIMILARITY_DESC' | 'TG_UPDATE_ACHIEVEMENTS_TRGM_SIMILARITY_ASC' | 'TG_UPDATE_ACHIEVEMENTS_TRGM_SIMILARITY_DESC' | 'STEPS_REQUIRED_TRGM_SIMILARITY_ASC' | 'STEPS_REQUIRED_TRGM_SIMILARITY_DESC' | 'LEVEL_ACHIEVED_TRGM_SIMILARITY_ASC' | 'LEVEL_ACHIEVED_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7994
|
+
export type LimitsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'DEFAULT_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'DEFAULT_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'LIMIT_INCREMENT_FUNCTION_TRGM_SIMILARITY_ASC' | 'LIMIT_INCREMENT_FUNCTION_TRGM_SIMILARITY_DESC' | 'LIMIT_DECREMENT_FUNCTION_TRGM_SIMILARITY_ASC' | 'LIMIT_DECREMENT_FUNCTION_TRGM_SIMILARITY_DESC' | 'LIMIT_INCREMENT_TRIGGER_TRGM_SIMILARITY_ASC' | 'LIMIT_INCREMENT_TRIGGER_TRGM_SIMILARITY_DESC' | 'LIMIT_DECREMENT_TRIGGER_TRGM_SIMILARITY_ASC' | 'LIMIT_DECREMENT_TRIGGER_TRGM_SIMILARITY_DESC' | 'LIMIT_UPDATE_TRIGGER_TRGM_SIMILARITY_ASC' | 'LIMIT_UPDATE_TRIGGER_TRGM_SIMILARITY_DESC' | 'LIMIT_CHECK_FUNCTION_TRGM_SIMILARITY_ASC' | 'LIMIT_CHECK_FUNCTION_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7995
|
+
export type MembershipTypesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7996
|
+
export type MembershipsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'MEMBERSHIPS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'MEMBERSHIPS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'MEMBERS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'MEMBERS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'MEMBERSHIP_DEFAULTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'MEMBERSHIP_DEFAULTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'GRANTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'GRANTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'ADMIN_GRANTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'ADMIN_GRANTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'OWNER_GRANTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'OWNER_GRANTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'ACTOR_MASK_CHECK_TRGM_SIMILARITY_ASC' | 'ACTOR_MASK_CHECK_TRGM_SIMILARITY_DESC' | 'ACTOR_PERM_CHECK_TRGM_SIMILARITY_ASC' | 'ACTOR_PERM_CHECK_TRGM_SIMILARITY_DESC' | 'ENTITY_IDS_BY_MASK_TRGM_SIMILARITY_ASC' | 'ENTITY_IDS_BY_MASK_TRGM_SIMILARITY_DESC' | 'ENTITY_IDS_BY_PERM_TRGM_SIMILARITY_ASC' | 'ENTITY_IDS_BY_PERM_TRGM_SIMILARITY_DESC' | 'ENTITY_IDS_FUNCTION_TRGM_SIMILARITY_ASC' | 'ENTITY_IDS_FUNCTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7997
|
+
export type PermissionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'DEFAULT_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'DEFAULT_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'GET_PADDED_MASK_TRGM_SIMILARITY_ASC' | 'GET_PADDED_MASK_TRGM_SIMILARITY_DESC' | 'GET_MASK_TRGM_SIMILARITY_ASC' | 'GET_MASK_TRGM_SIMILARITY_DESC' | 'GET_BY_MASK_TRGM_SIMILARITY_ASC' | 'GET_BY_MASK_TRGM_SIMILARITY_DESC' | 'GET_MASK_BY_NAME_TRGM_SIMILARITY_ASC' | 'GET_MASK_BY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7998
|
+
export type PhoneNumbersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
7999
|
+
export type ProfilesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PROFILE_PERMISSIONS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'PROFILE_PERMISSIONS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PROFILE_GRANTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'PROFILE_GRANTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PROFILE_DEFINITION_GRANTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'PROFILE_DEFINITION_GRANTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8000
|
+
export type SecretsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8001
|
+
export type SessionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SESSIONS_TABLE_TRGM_SIMILARITY_ASC' | 'SESSIONS_TABLE_TRGM_SIMILARITY_DESC' | 'SESSION_CREDENTIALS_TABLE_TRGM_SIMILARITY_ASC' | 'SESSION_CREDENTIALS_TABLE_TRGM_SIMILARITY_DESC' | 'AUTH_SETTINGS_TABLE_TRGM_SIMILARITY_ASC' | 'AUTH_SETTINGS_TABLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8002
|
+
export type UserAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'AUDITS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'AUDITS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SIGN_IN_FUNCTION_TRGM_SIMILARITY_ASC' | 'SIGN_IN_FUNCTION_TRGM_SIMILARITY_DESC' | 'SIGN_UP_FUNCTION_TRGM_SIMILARITY_ASC' | 'SIGN_UP_FUNCTION_TRGM_SIMILARITY_DESC' | 'SIGN_OUT_FUNCTION_TRGM_SIMILARITY_ASC' | 'SIGN_OUT_FUNCTION_TRGM_SIMILARITY_DESC' | 'SET_PASSWORD_FUNCTION_TRGM_SIMILARITY_ASC' | 'SET_PASSWORD_FUNCTION_TRGM_SIMILARITY_DESC' | 'RESET_PASSWORD_FUNCTION_TRGM_SIMILARITY_ASC' | 'RESET_PASSWORD_FUNCTION_TRGM_SIMILARITY_DESC' | 'FORGOT_PASSWORD_FUNCTION_TRGM_SIMILARITY_ASC' | 'FORGOT_PASSWORD_FUNCTION_TRGM_SIMILARITY_DESC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_TRGM_SIMILARITY_ASC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_TRGM_SIMILARITY_DESC' | 'VERIFY_EMAIL_FUNCTION_TRGM_SIMILARITY_ASC' | 'VERIFY_EMAIL_FUNCTION_TRGM_SIMILARITY_DESC' | 'VERIFY_PASSWORD_FUNCTION_TRGM_SIMILARITY_ASC' | 'VERIFY_PASSWORD_FUNCTION_TRGM_SIMILARITY_DESC' | 'CHECK_PASSWORD_FUNCTION_TRGM_SIMILARITY_ASC' | 'CHECK_PASSWORD_FUNCTION_TRGM_SIMILARITY_DESC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_TRGM_SIMILARITY_ASC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_TRGM_SIMILARITY_DESC' | 'DELETE_ACCOUNT_FUNCTION_TRGM_SIMILARITY_ASC' | 'DELETE_ACCOUNT_FUNCTION_TRGM_SIMILARITY_DESC' | 'SIGN_IN_ONE_TIME_TOKEN_FUNCTION_TRGM_SIMILARITY_ASC' | 'SIGN_IN_ONE_TIME_TOKEN_FUNCTION_TRGM_SIMILARITY_DESC' | 'ONE_TIME_TOKEN_FUNCTION_TRGM_SIMILARITY_ASC' | 'ONE_TIME_TOKEN_FUNCTION_TRGM_SIMILARITY_DESC' | 'EXTEND_TOKEN_EXPIRES_TRGM_SIMILARITY_ASC' | 'EXTEND_TOKEN_EXPIRES_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8003
|
+
export type UsersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TABLE_NAME_TRGM_SIMILARITY_DESC' | 'TYPE_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'TYPE_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8004
|
+
export type UuidModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'UUID_FUNCTION_TRGM_SIMILARITY_ASC' | 'UUID_FUNCTION_TRGM_SIMILARITY_DESC' | 'UUID_SEED_TRGM_SIMILARITY_ASC' | 'UUID_SEED_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8005
|
+
export type DatabaseProvisionModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATABASE_NAME_TRGM_SIMILARITY_ASC' | 'DATABASE_NAME_TRGM_SIMILARITY_DESC' | 'SUBDOMAIN_TRGM_SIMILARITY_ASC' | 'SUBDOMAIN_TRGM_SIMILARITY_DESC' | 'DOMAIN_TRGM_SIMILARITY_ASC' | 'DOMAIN_TRGM_SIMILARITY_DESC' | 'STATUS_TRGM_SIMILARITY_ASC' | 'STATUS_TRGM_SIMILARITY_DESC' | 'ERROR_MESSAGE_TRGM_SIMILARITY_ASC' | 'ERROR_MESSAGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8006
|
+
export type AppAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8007
|
+
export type AppOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8008
|
+
export type AppGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8009
|
+
export type OrgMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
8010
|
+
export type OrgMemberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
8011
|
+
export type OrgAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8012
|
+
export type OrgOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8013
|
+
export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8014
|
+
export type OrgChartEdgeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'POSITION_TITLE_TRGM_SIMILARITY_ASC' | 'POSITION_TITLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8015
|
+
export type OrgChartEdgeGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'POSITION_TITLE_TRGM_SIMILARITY_ASC' | 'POSITION_TITLE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8016
|
+
export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
|
|
8017
|
+
export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
8018
|
+
export type AppStepOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8019
|
+
export type AppAchievementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8020
|
+
export type InviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'INVITE_TOKEN_TRGM_SIMILARITY_ASC' | 'INVITE_TOKEN_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8021
|
+
export type ClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8022
|
+
export type OrgInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'INVITE_TOKEN_TRGM_SIMILARITY_ASC' | 'INVITE_TOKEN_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8023
|
+
export type OrgClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8024
|
+
export type RefOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8025
|
+
export type StoreOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8026
|
+
export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
8027
|
+
export type CryptoAddressOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ADDRESS_ASC' | 'ADDRESS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ADDRESS_TRGM_SIMILARITY_ASC' | 'ADDRESS_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8028
|
+
export type RoleTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
8029
|
+
export type OrgPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC';
|
|
8030
|
+
export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CC_TRGM_SIMILARITY_ASC' | 'CC_TRGM_SIMILARITY_DESC' | 'NUMBER_TRGM_SIMILARITY_ASC' | 'NUMBER_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8031
|
+
export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
8032
|
+
export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
|
|
8033
|
+
export type ConnectedAccountOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SERVICE_TRGM_SIMILARITY_ASC' | 'SERVICE_TRGM_SIMILARITY_DESC' | 'IDENTIFIER_TRGM_SIMILARITY_ASC' | 'IDENTIFIER_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8034
|
+
export type NodeTypeRegistryOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SLUG_TRGM_SIMILARITY_ASC' | 'SLUG_TRGM_SIMILARITY_DESC' | 'CATEGORY_TRGM_SIMILARITY_ASC' | 'CATEGORY_TRGM_SIMILARITY_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8035
|
+
export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8036
|
+
export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'MESSAGE_TRGM_SIMILARITY_ASC' | 'MESSAGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8037
|
+
export type AppMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
8038
|
+
export type RlsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'AUTHENTICATE_TRGM_SIMILARITY_ASC' | 'AUTHENTICATE_TRGM_SIMILARITY_DESC' | 'AUTHENTICATE_STRICT_TRGM_SIMILARITY_ASC' | 'AUTHENTICATE_STRICT_TRGM_SIMILARITY_DESC' | 'CURRENT_ROLE_TRGM_SIMILARITY_ASC' | 'CURRENT_ROLE_TRGM_SIMILARITY_DESC' | 'CURRENT_ROLE_ID_TRGM_SIMILARITY_ASC' | 'CURRENT_ROLE_ID_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8039
|
+
export type OrgMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
|
|
8040
|
+
export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'USER_AGENT_TRGM_SIMILARITY_ASC' | 'USER_AGENT_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8041
|
+
export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8042
|
+
export type SqlMigrationOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'DEPLOY_TRGM_SIMILARITY_ASC' | 'DEPLOY_TRGM_SIMILARITY_DESC' | 'CONTENT_TRGM_SIMILARITY_ASC' | 'CONTENT_TRGM_SIMILARITY_DESC' | 'REVERT_TRGM_SIMILARITY_ASC' | 'REVERT_TRGM_SIMILARITY_DESC' | 'VERIFY_TRGM_SIMILARITY_ASC' | 'VERIFY_TRGM_SIMILARITY_DESC' | 'ACTION_TRGM_SIMILARITY_ASC' | 'ACTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8043
|
+
export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
8044
|
+
export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8045
|
+
export type AstMigrationOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DEPLOYS_ASC' | 'DEPLOYS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ACTION_TRGM_SIMILARITY_ASC' | 'ACTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8046
|
+
export type AppMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
|
|
8047
|
+
export type HierarchyModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'CHART_EDGES_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'CHART_EDGES_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'HIERARCHY_SPRT_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'HIERARCHY_SPRT_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'CHART_EDGE_GRANTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'CHART_EDGE_GRANTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'PRIVATE_SCHEMA_NAME_TRGM_SIMILARITY_ASC' | 'PRIVATE_SCHEMA_NAME_TRGM_SIMILARITY_DESC' | 'SPRT_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'SPRT_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'REBUILD_HIERARCHY_FUNCTION_TRGM_SIMILARITY_ASC' | 'REBUILD_HIERARCHY_FUNCTION_TRGM_SIMILARITY_DESC' | 'GET_SUBORDINATES_FUNCTION_TRGM_SIMILARITY_ASC' | 'GET_SUBORDINATES_FUNCTION_TRGM_SIMILARITY_DESC' | 'GET_MANAGERS_FUNCTION_TRGM_SIMILARITY_ASC' | 'GET_MANAGERS_FUNCTION_TRGM_SIMILARITY_DESC' | 'IS_MANAGER_OF_FUNCTION_TRGM_SIMILARITY_ASC' | 'IS_MANAGER_OF_FUNCTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
|
|
8048
8048
|
export interface CreateOrgGetManagersRecordInput {
|
|
8049
8049
|
clientMutationId?: string;
|
|
8050
8050
|
orgGetManagersRecord: {
|
|
@@ -8088,12 +8088,12 @@ export interface DeleteOrgGetSubordinatesRecordInput {
|
|
|
8088
8088
|
export interface CreateGetAllRecordInput {
|
|
8089
8089
|
clientMutationId?: string;
|
|
8090
8090
|
getAllRecord: {
|
|
8091
|
-
path?: string;
|
|
8091
|
+
path?: string[];
|
|
8092
8092
|
data?: Record<string, unknown>;
|
|
8093
8093
|
};
|
|
8094
8094
|
}
|
|
8095
8095
|
export interface GetAllRecordPatch {
|
|
8096
|
-
path?: string | null;
|
|
8096
|
+
path?: string[] | null;
|
|
8097
8097
|
data?: Record<string, unknown> | null;
|
|
8098
8098
|
}
|
|
8099
8099
|
export interface UpdateGetAllRecordInput {
|
|
@@ -8116,10 +8116,9 @@ export interface CreateObjectInput {
|
|
|
8116
8116
|
};
|
|
8117
8117
|
}
|
|
8118
8118
|
export interface ObjectPatch {
|
|
8119
|
-
hashUuid?: string | null;
|
|
8120
8119
|
databaseId?: string | null;
|
|
8121
|
-
kids?: string | null;
|
|
8122
|
-
ktree?: string | null;
|
|
8120
|
+
kids?: string[] | null;
|
|
8121
|
+
ktree?: string[] | null;
|
|
8123
8122
|
data?: Record<string, unknown> | null;
|
|
8124
8123
|
frzn?: boolean | null;
|
|
8125
8124
|
}
|
|
@@ -8146,8 +8145,6 @@ export interface AppPermissionPatch {
|
|
|
8146
8145
|
bitnum?: number | null;
|
|
8147
8146
|
bitstr?: string | null;
|
|
8148
8147
|
description?: string | null;
|
|
8149
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8150
|
-
searchScore?: number | null;
|
|
8151
8148
|
}
|
|
8152
8149
|
export interface UpdateAppPermissionInput {
|
|
8153
8150
|
clientMutationId?: string;
|
|
@@ -8172,8 +8169,6 @@ export interface OrgPermissionPatch {
|
|
|
8172
8169
|
bitnum?: number | null;
|
|
8173
8170
|
bitstr?: string | null;
|
|
8174
8171
|
description?: string | null;
|
|
8175
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8176
|
-
searchScore?: number | null;
|
|
8177
8172
|
}
|
|
8178
8173
|
export interface UpdateOrgPermissionInput {
|
|
8179
8174
|
clientMutationId?: string;
|
|
@@ -8200,8 +8195,6 @@ export interface AppLevelRequirementPatch {
|
|
|
8200
8195
|
description?: string | null;
|
|
8201
8196
|
requiredCount?: number | null;
|
|
8202
8197
|
priority?: number | null;
|
|
8203
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8204
|
-
searchScore?: number | null;
|
|
8205
8198
|
}
|
|
8206
8199
|
export interface UpdateAppLevelRequirementInput {
|
|
8207
8200
|
clientMutationId?: string;
|
|
@@ -8228,10 +8221,6 @@ export interface DatabasePatch {
|
|
|
8228
8221
|
name?: string | null;
|
|
8229
8222
|
label?: string | null;
|
|
8230
8223
|
hash?: string | null;
|
|
8231
|
-
schemaHashTrgmSimilarity?: number | null;
|
|
8232
|
-
nameTrgmSimilarity?: number | null;
|
|
8233
|
-
labelTrgmSimilarity?: number | null;
|
|
8234
|
-
searchScore?: number | null;
|
|
8235
8224
|
}
|
|
8236
8225
|
export interface UpdateDatabaseInput {
|
|
8237
8226
|
clientMutationId?: string;
|
|
@@ -8268,14 +8257,8 @@ export interface SchemaPatch {
|
|
|
8268
8257
|
category?: ObjectCategory | null;
|
|
8269
8258
|
module?: string | null;
|
|
8270
8259
|
scope?: number | null;
|
|
8271
|
-
tags?: string | null;
|
|
8260
|
+
tags?: string[] | null;
|
|
8272
8261
|
isPublic?: boolean | null;
|
|
8273
|
-
nameTrgmSimilarity?: number | null;
|
|
8274
|
-
schemaNameTrgmSimilarity?: number | null;
|
|
8275
|
-
labelTrgmSimilarity?: number | null;
|
|
8276
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8277
|
-
moduleTrgmSimilarity?: number | null;
|
|
8278
|
-
searchScore?: number | null;
|
|
8279
8262
|
}
|
|
8280
8263
|
export interface UpdateSchemaInput {
|
|
8281
8264
|
clientMutationId?: string;
|
|
@@ -8322,15 +8305,8 @@ export interface TablePatch {
|
|
|
8322
8305
|
peoplestamps?: boolean | null;
|
|
8323
8306
|
pluralName?: string | null;
|
|
8324
8307
|
singularName?: string | null;
|
|
8325
|
-
tags?: string | null;
|
|
8308
|
+
tags?: string[] | null;
|
|
8326
8309
|
inheritsId?: string | null;
|
|
8327
|
-
nameTrgmSimilarity?: number | null;
|
|
8328
|
-
labelTrgmSimilarity?: number | null;
|
|
8329
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8330
|
-
moduleTrgmSimilarity?: number | null;
|
|
8331
|
-
pluralNameTrgmSimilarity?: number | null;
|
|
8332
|
-
singularNameTrgmSimilarity?: number | null;
|
|
8333
|
-
searchScore?: number | null;
|
|
8334
8310
|
}
|
|
8335
8311
|
export interface UpdateTableInput {
|
|
8336
8312
|
clientMutationId?: string;
|
|
@@ -8362,17 +8338,13 @@ export interface CheckConstraintPatch {
|
|
|
8362
8338
|
tableId?: string | null;
|
|
8363
8339
|
name?: string | null;
|
|
8364
8340
|
type?: string | null;
|
|
8365
|
-
fieldIds?: string | null;
|
|
8341
|
+
fieldIds?: string[] | null;
|
|
8366
8342
|
expr?: Record<string, unknown> | null;
|
|
8367
8343
|
smartTags?: Record<string, unknown> | null;
|
|
8368
8344
|
category?: ObjectCategory | null;
|
|
8369
8345
|
module?: string | null;
|
|
8370
8346
|
scope?: number | null;
|
|
8371
|
-
tags?: string | null;
|
|
8372
|
-
nameTrgmSimilarity?: number | null;
|
|
8373
|
-
typeTrgmSimilarity?: number | null;
|
|
8374
|
-
moduleTrgmSimilarity?: number | null;
|
|
8375
|
-
searchScore?: number | null;
|
|
8347
|
+
tags?: string[] | null;
|
|
8376
8348
|
}
|
|
8377
8349
|
export interface UpdateCheckConstraintInput {
|
|
8378
8350
|
clientMutationId?: string;
|
|
@@ -8427,17 +8399,10 @@ export interface FieldPatch {
|
|
|
8427
8399
|
chkExpr?: Record<string, unknown> | null;
|
|
8428
8400
|
min?: number | null;
|
|
8429
8401
|
max?: number | null;
|
|
8430
|
-
tags?: string | null;
|
|
8402
|
+
tags?: string[] | null;
|
|
8431
8403
|
category?: ObjectCategory | null;
|
|
8432
8404
|
module?: string | null;
|
|
8433
8405
|
scope?: number | null;
|
|
8434
|
-
nameTrgmSimilarity?: number | null;
|
|
8435
|
-
labelTrgmSimilarity?: number | null;
|
|
8436
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8437
|
-
defaultValueTrgmSimilarity?: number | null;
|
|
8438
|
-
regexpTrgmSimilarity?: number | null;
|
|
8439
|
-
moduleTrgmSimilarity?: number | null;
|
|
8440
|
-
searchScore?: number | null;
|
|
8441
8406
|
}
|
|
8442
8407
|
export interface UpdateFieldInput {
|
|
8443
8408
|
clientMutationId?: string;
|
|
@@ -8475,22 +8440,15 @@ export interface ForeignKeyConstraintPatch {
|
|
|
8475
8440
|
description?: string | null;
|
|
8476
8441
|
smartTags?: Record<string, unknown> | null;
|
|
8477
8442
|
type?: string | null;
|
|
8478
|
-
fieldIds?: string | null;
|
|
8443
|
+
fieldIds?: string[] | null;
|
|
8479
8444
|
refTableId?: string | null;
|
|
8480
|
-
refFieldIds?: string | null;
|
|
8445
|
+
refFieldIds?: string[] | null;
|
|
8481
8446
|
deleteAction?: string | null;
|
|
8482
8447
|
updateAction?: string | null;
|
|
8483
8448
|
category?: ObjectCategory | null;
|
|
8484
8449
|
module?: string | null;
|
|
8485
8450
|
scope?: number | null;
|
|
8486
|
-
tags?: string | null;
|
|
8487
|
-
nameTrgmSimilarity?: number | null;
|
|
8488
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8489
|
-
typeTrgmSimilarity?: number | null;
|
|
8490
|
-
deleteActionTrgmSimilarity?: number | null;
|
|
8491
|
-
updateActionTrgmSimilarity?: number | null;
|
|
8492
|
-
moduleTrgmSimilarity?: number | null;
|
|
8493
|
-
searchScore?: number | null;
|
|
8451
|
+
tags?: string[] | null;
|
|
8494
8452
|
}
|
|
8495
8453
|
export interface UpdateForeignKeyConstraintInput {
|
|
8496
8454
|
clientMutationId?: string;
|
|
@@ -8516,9 +8474,9 @@ export interface FullTextSearchPatch {
|
|
|
8516
8474
|
databaseId?: string | null;
|
|
8517
8475
|
tableId?: string | null;
|
|
8518
8476
|
fieldId?: string | null;
|
|
8519
|
-
fieldIds?: string | null;
|
|
8520
|
-
weights?: string | null;
|
|
8521
|
-
langs?: string | null;
|
|
8477
|
+
fieldIds?: string[] | null;
|
|
8478
|
+
weights?: string[] | null;
|
|
8479
|
+
langs?: string[] | null;
|
|
8522
8480
|
}
|
|
8523
8481
|
export interface UpdateFullTextSearchInput {
|
|
8524
8482
|
clientMutationId?: string;
|
|
@@ -8554,23 +8512,19 @@ export interface IndexPatch {
|
|
|
8554
8512
|
databaseId?: string | null;
|
|
8555
8513
|
tableId?: string | null;
|
|
8556
8514
|
name?: string | null;
|
|
8557
|
-
fieldIds?: string | null;
|
|
8558
|
-
includeFieldIds?: string | null;
|
|
8515
|
+
fieldIds?: string[] | null;
|
|
8516
|
+
includeFieldIds?: string[] | null;
|
|
8559
8517
|
accessMethod?: string | null;
|
|
8560
8518
|
indexParams?: Record<string, unknown> | null;
|
|
8561
8519
|
whereClause?: Record<string, unknown> | null;
|
|
8562
8520
|
isUnique?: boolean | null;
|
|
8563
8521
|
options?: Record<string, unknown> | null;
|
|
8564
|
-
opClasses?: string | null;
|
|
8522
|
+
opClasses?: string[] | null;
|
|
8565
8523
|
smartTags?: Record<string, unknown> | null;
|
|
8566
8524
|
category?: ObjectCategory | null;
|
|
8567
8525
|
module?: string | null;
|
|
8568
8526
|
scope?: number | null;
|
|
8569
|
-
tags?: string | null;
|
|
8570
|
-
nameTrgmSimilarity?: number | null;
|
|
8571
|
-
accessMethodTrgmSimilarity?: number | null;
|
|
8572
|
-
moduleTrgmSimilarity?: number | null;
|
|
8573
|
-
searchScore?: number | null;
|
|
8527
|
+
tags?: string[] | null;
|
|
8574
8528
|
}
|
|
8575
8529
|
export interface UpdateIndexInput {
|
|
8576
8530
|
clientMutationId?: string;
|
|
@@ -8614,13 +8568,7 @@ export interface PolicyPatch {
|
|
|
8614
8568
|
category?: ObjectCategory | null;
|
|
8615
8569
|
module?: string | null;
|
|
8616
8570
|
scope?: number | null;
|
|
8617
|
-
tags?: string | null;
|
|
8618
|
-
nameTrgmSimilarity?: number | null;
|
|
8619
|
-
granteeNameTrgmSimilarity?: number | null;
|
|
8620
|
-
privilegeTrgmSimilarity?: number | null;
|
|
8621
|
-
policyTypeTrgmSimilarity?: number | null;
|
|
8622
|
-
moduleTrgmSimilarity?: number | null;
|
|
8623
|
-
searchScore?: number | null;
|
|
8571
|
+
tags?: string[] | null;
|
|
8624
8572
|
}
|
|
8625
8573
|
export interface UpdatePolicyInput {
|
|
8626
8574
|
clientMutationId?: string;
|
|
@@ -8651,16 +8599,12 @@ export interface PrimaryKeyConstraintPatch {
|
|
|
8651
8599
|
tableId?: string | null;
|
|
8652
8600
|
name?: string | null;
|
|
8653
8601
|
type?: string | null;
|
|
8654
|
-
fieldIds?: string | null;
|
|
8602
|
+
fieldIds?: string[] | null;
|
|
8655
8603
|
smartTags?: Record<string, unknown> | null;
|
|
8656
8604
|
category?: ObjectCategory | null;
|
|
8657
8605
|
module?: string | null;
|
|
8658
8606
|
scope?: number | null;
|
|
8659
|
-
tags?: string | null;
|
|
8660
|
-
nameTrgmSimilarity?: number | null;
|
|
8661
|
-
typeTrgmSimilarity?: number | null;
|
|
8662
|
-
moduleTrgmSimilarity?: number | null;
|
|
8663
|
-
searchScore?: number | null;
|
|
8607
|
+
tags?: string[] | null;
|
|
8664
8608
|
}
|
|
8665
8609
|
export interface UpdatePrimaryKeyConstraintInput {
|
|
8666
8610
|
clientMutationId?: string;
|
|
@@ -8687,11 +8631,8 @@ export interface TableGrantPatch {
|
|
|
8687
8631
|
tableId?: string | null;
|
|
8688
8632
|
privilege?: string | null;
|
|
8689
8633
|
granteeName?: string | null;
|
|
8690
|
-
fieldIds?: string | null;
|
|
8634
|
+
fieldIds?: string[] | null;
|
|
8691
8635
|
isGrant?: boolean | null;
|
|
8692
|
-
privilegeTrgmSimilarity?: number | null;
|
|
8693
|
-
granteeNameTrgmSimilarity?: number | null;
|
|
8694
|
-
searchScore?: number | null;
|
|
8695
8636
|
}
|
|
8696
8637
|
export interface UpdateTableGrantInput {
|
|
8697
8638
|
clientMutationId?: string;
|
|
@@ -8727,12 +8668,7 @@ export interface TriggerPatch {
|
|
|
8727
8668
|
category?: ObjectCategory | null;
|
|
8728
8669
|
module?: string | null;
|
|
8729
8670
|
scope?: number | null;
|
|
8730
|
-
tags?: string | null;
|
|
8731
|
-
nameTrgmSimilarity?: number | null;
|
|
8732
|
-
eventTrgmSimilarity?: number | null;
|
|
8733
|
-
functionNameTrgmSimilarity?: number | null;
|
|
8734
|
-
moduleTrgmSimilarity?: number | null;
|
|
8735
|
-
searchScore?: number | null;
|
|
8671
|
+
tags?: string[] | null;
|
|
8736
8672
|
}
|
|
8737
8673
|
export interface UpdateTriggerInput {
|
|
8738
8674
|
clientMutationId?: string;
|
|
@@ -8766,16 +8702,11 @@ export interface UniqueConstraintPatch {
|
|
|
8766
8702
|
description?: string | null;
|
|
8767
8703
|
smartTags?: Record<string, unknown> | null;
|
|
8768
8704
|
type?: string | null;
|
|
8769
|
-
fieldIds?: string | null;
|
|
8705
|
+
fieldIds?: string[] | null;
|
|
8770
8706
|
category?: ObjectCategory | null;
|
|
8771
8707
|
module?: string | null;
|
|
8772
8708
|
scope?: number | null;
|
|
8773
|
-
tags?: string | null;
|
|
8774
|
-
nameTrgmSimilarity?: number | null;
|
|
8775
|
-
descriptionTrgmSimilarity?: number | null;
|
|
8776
|
-
typeTrgmSimilarity?: number | null;
|
|
8777
|
-
moduleTrgmSimilarity?: number | null;
|
|
8778
|
-
searchScore?: number | null;
|
|
8709
|
+
tags?: string[] | null;
|
|
8779
8710
|
}
|
|
8780
8711
|
export interface UpdateUniqueConstraintInput {
|
|
8781
8712
|
clientMutationId?: string;
|
|
@@ -8821,12 +8752,7 @@ export interface ViewPatch {
|
|
|
8821
8752
|
category?: ObjectCategory | null;
|
|
8822
8753
|
module?: string | null;
|
|
8823
8754
|
scope?: number | null;
|
|
8824
|
-
tags?: string | null;
|
|
8825
|
-
nameTrgmSimilarity?: number | null;
|
|
8826
|
-
viewTypeTrgmSimilarity?: number | null;
|
|
8827
|
-
filterTypeTrgmSimilarity?: number | null;
|
|
8828
|
-
moduleTrgmSimilarity?: number | null;
|
|
8829
|
-
searchScore?: number | null;
|
|
8755
|
+
tags?: string[] | null;
|
|
8830
8756
|
}
|
|
8831
8757
|
export interface UpdateViewInput {
|
|
8832
8758
|
clientMutationId?: string;
|
|
@@ -8877,9 +8803,6 @@ export interface ViewGrantPatch {
|
|
|
8877
8803
|
privilege?: string | null;
|
|
8878
8804
|
withGrantOption?: boolean | null;
|
|
8879
8805
|
isGrant?: boolean | null;
|
|
8880
|
-
granteeNameTrgmSimilarity?: number | null;
|
|
8881
|
-
privilegeTrgmSimilarity?: number | null;
|
|
8882
|
-
searchScore?: number | null;
|
|
8883
8806
|
}
|
|
8884
8807
|
export interface UpdateViewGrantInput {
|
|
8885
8808
|
clientMutationId?: string;
|
|
@@ -8906,10 +8829,6 @@ export interface ViewRulePatch {
|
|
|
8906
8829
|
name?: string | null;
|
|
8907
8830
|
event?: string | null;
|
|
8908
8831
|
action?: string | null;
|
|
8909
|
-
nameTrgmSimilarity?: number | null;
|
|
8910
|
-
eventTrgmSimilarity?: number | null;
|
|
8911
|
-
actionTrgmSimilarity?: number | null;
|
|
8912
|
-
searchScore?: number | null;
|
|
8913
8832
|
}
|
|
8914
8833
|
export interface UpdateViewRuleInput {
|
|
8915
8834
|
clientMutationId?: string;
|
|
@@ -8942,9 +8861,6 @@ export interface TableTemplateModulePatch {
|
|
|
8942
8861
|
tableName?: string | null;
|
|
8943
8862
|
nodeType?: string | null;
|
|
8944
8863
|
data?: Record<string, unknown> | null;
|
|
8945
|
-
tableNameTrgmSimilarity?: number | null;
|
|
8946
|
-
nodeTypeTrgmSimilarity?: number | null;
|
|
8947
|
-
searchScore?: number | null;
|
|
8948
8864
|
}
|
|
8949
8865
|
export interface UpdateTableTemplateModuleInput {
|
|
8950
8866
|
clientMutationId?: string;
|
|
@@ -8986,21 +8902,15 @@ export interface SecureTableProvisionPatch {
|
|
|
8986
8902
|
useRls?: boolean | null;
|
|
8987
8903
|
nodeData?: Record<string, unknown> | null;
|
|
8988
8904
|
fields?: Record<string, unknown> | null;
|
|
8989
|
-
grantRoles?: string | null;
|
|
8905
|
+
grantRoles?: string[] | null;
|
|
8990
8906
|
grantPrivileges?: Record<string, unknown> | null;
|
|
8991
8907
|
policyType?: string | null;
|
|
8992
|
-
policyPrivileges?: string | null;
|
|
8908
|
+
policyPrivileges?: string[] | null;
|
|
8993
8909
|
policyRole?: string | null;
|
|
8994
8910
|
policyPermissive?: boolean | null;
|
|
8995
8911
|
policyName?: string | null;
|
|
8996
8912
|
policyData?: Record<string, unknown> | null;
|
|
8997
|
-
outFields?: string | null;
|
|
8998
|
-
tableNameTrgmSimilarity?: number | null;
|
|
8999
|
-
nodeTypeTrgmSimilarity?: number | null;
|
|
9000
|
-
policyTypeTrgmSimilarity?: number | null;
|
|
9001
|
-
policyRoleTrgmSimilarity?: number | null;
|
|
9002
|
-
policyNameTrgmSimilarity?: number | null;
|
|
9003
|
-
searchScore?: number | null;
|
|
8913
|
+
outFields?: string[] | null;
|
|
9004
8914
|
}
|
|
9005
8915
|
export interface UpdateSecureTableProvisionInput {
|
|
9006
8916
|
clientMutationId?: string;
|
|
@@ -9059,10 +8969,10 @@ export interface RelationProvisionPatch {
|
|
|
9059
8969
|
useCompositeKey?: boolean | null;
|
|
9060
8970
|
nodeType?: string | null;
|
|
9061
8971
|
nodeData?: Record<string, unknown> | null;
|
|
9062
|
-
grantRoles?: string | null;
|
|
8972
|
+
grantRoles?: string[] | null;
|
|
9063
8973
|
grantPrivileges?: Record<string, unknown> | null;
|
|
9064
8974
|
policyType?: string | null;
|
|
9065
|
-
policyPrivileges?: string | null;
|
|
8975
|
+
policyPrivileges?: string[] | null;
|
|
9066
8976
|
policyRole?: string | null;
|
|
9067
8977
|
policyPermissive?: boolean | null;
|
|
9068
8978
|
policyName?: string | null;
|
|
@@ -9071,17 +8981,6 @@ export interface RelationProvisionPatch {
|
|
|
9071
8981
|
outJunctionTableId?: string | null;
|
|
9072
8982
|
outSourceFieldId?: string | null;
|
|
9073
8983
|
outTargetFieldId?: string | null;
|
|
9074
|
-
relationTypeTrgmSimilarity?: number | null;
|
|
9075
|
-
fieldNameTrgmSimilarity?: number | null;
|
|
9076
|
-
deleteActionTrgmSimilarity?: number | null;
|
|
9077
|
-
junctionTableNameTrgmSimilarity?: number | null;
|
|
9078
|
-
sourceFieldNameTrgmSimilarity?: number | null;
|
|
9079
|
-
targetFieldNameTrgmSimilarity?: number | null;
|
|
9080
|
-
nodeTypeTrgmSimilarity?: number | null;
|
|
9081
|
-
policyTypeTrgmSimilarity?: number | null;
|
|
9082
|
-
policyRoleTrgmSimilarity?: number | null;
|
|
9083
|
-
policyNameTrgmSimilarity?: number | null;
|
|
9084
|
-
searchScore?: number | null;
|
|
9085
8984
|
}
|
|
9086
8985
|
export interface UpdateRelationProvisionInput {
|
|
9087
8986
|
clientMutationId?: string;
|
|
@@ -9104,8 +9003,6 @@ export interface SchemaGrantPatch {
|
|
|
9104
9003
|
databaseId?: string | null;
|
|
9105
9004
|
schemaId?: string | null;
|
|
9106
9005
|
granteeName?: string | null;
|
|
9107
|
-
granteeNameTrgmSimilarity?: number | null;
|
|
9108
|
-
searchScore?: number | null;
|
|
9109
9006
|
}
|
|
9110
9007
|
export interface UpdateSchemaGrantInput {
|
|
9111
9008
|
clientMutationId?: string;
|
|
@@ -9134,10 +9031,6 @@ export interface DefaultPrivilegePatch {
|
|
|
9134
9031
|
privilege?: string | null;
|
|
9135
9032
|
granteeName?: string | null;
|
|
9136
9033
|
isGrant?: boolean | null;
|
|
9137
|
-
objectTypeTrgmSimilarity?: number | null;
|
|
9138
|
-
privilegeTrgmSimilarity?: number | null;
|
|
9139
|
-
granteeNameTrgmSimilarity?: number | null;
|
|
9140
|
-
searchScore?: number | null;
|
|
9141
9034
|
}
|
|
9142
9035
|
export interface UpdateDefaultPrivilegeInput {
|
|
9143
9036
|
clientMutationId?: string;
|
|
@@ -9184,8 +9077,6 @@ export interface ApiModulePatch {
|
|
|
9184
9077
|
apiId?: string | null;
|
|
9185
9078
|
name?: string | null;
|
|
9186
9079
|
data?: Record<string, unknown> | null;
|
|
9187
|
-
nameTrgmSimilarity?: number | null;
|
|
9188
|
-
searchScore?: number | null;
|
|
9189
9080
|
}
|
|
9190
9081
|
export interface UpdateApiModuleInput {
|
|
9191
9082
|
clientMutationId?: string;
|
|
@@ -9238,9 +9129,7 @@ export interface SiteMetadatumPatch {
|
|
|
9238
9129
|
title?: string | null;
|
|
9239
9130
|
description?: string | null;
|
|
9240
9131
|
ogImage?: ConstructiveInternalTypeImage | null;
|
|
9241
|
-
|
|
9242
|
-
descriptionTrgmSimilarity?: number | null;
|
|
9243
|
-
searchScore?: number | null;
|
|
9132
|
+
ogImageUpload?: File | null;
|
|
9244
9133
|
}
|
|
9245
9134
|
export interface UpdateSiteMetadatumInput {
|
|
9246
9135
|
clientMutationId?: string;
|
|
@@ -9265,8 +9154,6 @@ export interface SiteModulePatch {
|
|
|
9265
9154
|
siteId?: string | null;
|
|
9266
9155
|
name?: string | null;
|
|
9267
9156
|
data?: Record<string, unknown> | null;
|
|
9268
|
-
nameTrgmSimilarity?: number | null;
|
|
9269
|
-
searchScore?: number | null;
|
|
9270
9157
|
}
|
|
9271
9158
|
export interface UpdateSiteModuleInput {
|
|
9272
9159
|
clientMutationId?: string;
|
|
@@ -9311,9 +9198,6 @@ export interface TriggerFunctionPatch {
|
|
|
9311
9198
|
databaseId?: string | null;
|
|
9312
9199
|
name?: string | null;
|
|
9313
9200
|
code?: string | null;
|
|
9314
|
-
nameTrgmSimilarity?: number | null;
|
|
9315
|
-
codeTrgmSimilarity?: number | null;
|
|
9316
|
-
searchScore?: number | null;
|
|
9317
9201
|
}
|
|
9318
9202
|
export interface UpdateTriggerFunctionInput {
|
|
9319
9203
|
clientMutationId?: string;
|
|
@@ -9342,11 +9226,6 @@ export interface ApiPatch {
|
|
|
9342
9226
|
roleName?: string | null;
|
|
9343
9227
|
anonRole?: string | null;
|
|
9344
9228
|
isPublic?: boolean | null;
|
|
9345
|
-
nameTrgmSimilarity?: number | null;
|
|
9346
|
-
dbnameTrgmSimilarity?: number | null;
|
|
9347
|
-
roleNameTrgmSimilarity?: number | null;
|
|
9348
|
-
anonRoleTrgmSimilarity?: number | null;
|
|
9349
|
-
searchScore?: number | null;
|
|
9350
9229
|
}
|
|
9351
9230
|
export interface UpdateApiInput {
|
|
9352
9231
|
clientMutationId?: string;
|
|
@@ -9379,10 +9258,10 @@ export interface SitePatch {
|
|
|
9379
9258
|
appleTouchIcon?: ConstructiveInternalTypeImage | null;
|
|
9380
9259
|
logo?: ConstructiveInternalTypeImage | null;
|
|
9381
9260
|
dbname?: string | null;
|
|
9382
|
-
|
|
9383
|
-
|
|
9384
|
-
|
|
9385
|
-
|
|
9261
|
+
ogImageUpload?: File | null;
|
|
9262
|
+
faviconUpload?: File | null;
|
|
9263
|
+
appleTouchIconUpload?: File | null;
|
|
9264
|
+
logoUpload?: File | null;
|
|
9386
9265
|
}
|
|
9387
9266
|
export interface UpdateSiteInput {
|
|
9388
9267
|
clientMutationId?: string;
|
|
@@ -9415,10 +9294,7 @@ export interface AppPatch {
|
|
|
9415
9294
|
appStoreId?: string | null;
|
|
9416
9295
|
appIdPrefix?: string | null;
|
|
9417
9296
|
playStoreLink?: ConstructiveInternalTypeUrl | null;
|
|
9418
|
-
|
|
9419
|
-
appStoreIdTrgmSimilarity?: number | null;
|
|
9420
|
-
appIdPrefixTrgmSimilarity?: number | null;
|
|
9421
|
-
searchScore?: number | null;
|
|
9297
|
+
appImageUpload?: File | null;
|
|
9422
9298
|
}
|
|
9423
9299
|
export interface UpdateAppInput {
|
|
9424
9300
|
clientMutationId?: string;
|
|
@@ -9447,8 +9323,6 @@ export interface ConnectedAccountsModulePatch {
|
|
|
9447
9323
|
tableId?: string | null;
|
|
9448
9324
|
ownerTableId?: string | null;
|
|
9449
9325
|
tableName?: string | null;
|
|
9450
|
-
tableNameTrgmSimilarity?: number | null;
|
|
9451
|
-
searchScore?: number | null;
|
|
9452
9326
|
}
|
|
9453
9327
|
export interface UpdateConnectedAccountsModuleInput {
|
|
9454
9328
|
clientMutationId?: string;
|
|
@@ -9479,9 +9353,6 @@ export interface CryptoAddressesModulePatch {
|
|
|
9479
9353
|
ownerTableId?: string | null;
|
|
9480
9354
|
tableName?: string | null;
|
|
9481
9355
|
cryptoNetwork?: string | null;
|
|
9482
|
-
tableNameTrgmSimilarity?: number | null;
|
|
9483
|
-
cryptoNetworkTrgmSimilarity?: number | null;
|
|
9484
|
-
searchScore?: number | null;
|
|
9485
9356
|
}
|
|
9486
9357
|
export interface UpdateCryptoAddressesModuleInput {
|
|
9487
9358
|
clientMutationId?: string;
|
|
@@ -9524,13 +9395,6 @@ export interface CryptoAuthModulePatch {
|
|
|
9524
9395
|
signInRecordFailure?: string | null;
|
|
9525
9396
|
signUpWithKey?: string | null;
|
|
9526
9397
|
signInWithChallenge?: string | null;
|
|
9527
|
-
userFieldTrgmSimilarity?: number | null;
|
|
9528
|
-
cryptoNetworkTrgmSimilarity?: number | null;
|
|
9529
|
-
signInRequestChallengeTrgmSimilarity?: number | null;
|
|
9530
|
-
signInRecordFailureTrgmSimilarity?: number | null;
|
|
9531
|
-
signUpWithKeyTrgmSimilarity?: number | null;
|
|
9532
|
-
signInWithChallengeTrgmSimilarity?: number | null;
|
|
9533
|
-
searchScore?: number | null;
|
|
9534
9398
|
}
|
|
9535
9399
|
export interface UpdateCryptoAuthModuleInput {
|
|
9536
9400
|
clientMutationId?: string;
|
|
@@ -9579,16 +9443,14 @@ export interface DenormalizedTableFieldPatch {
|
|
|
9579
9443
|
databaseId?: string | null;
|
|
9580
9444
|
tableId?: string | null;
|
|
9581
9445
|
fieldId?: string | null;
|
|
9582
|
-
setIds?: string | null;
|
|
9446
|
+
setIds?: string[] | null;
|
|
9583
9447
|
refTableId?: string | null;
|
|
9584
9448
|
refFieldId?: string | null;
|
|
9585
|
-
refIds?: string | null;
|
|
9449
|
+
refIds?: string[] | null;
|
|
9586
9450
|
useUpdates?: boolean | null;
|
|
9587
9451
|
updateDefaults?: boolean | null;
|
|
9588
9452
|
funcName?: string | null;
|
|
9589
9453
|
funcOrder?: number | null;
|
|
9590
|
-
funcNameTrgmSimilarity?: number | null;
|
|
9591
|
-
searchScore?: number | null;
|
|
9592
9454
|
}
|
|
9593
9455
|
export interface UpdateDenormalizedTableFieldInput {
|
|
9594
9456
|
clientMutationId?: string;
|
|
@@ -9617,8 +9479,6 @@ export interface EmailsModulePatch {
|
|
|
9617
9479
|
tableId?: string | null;
|
|
9618
9480
|
ownerTableId?: string | null;
|
|
9619
9481
|
tableName?: string | null;
|
|
9620
|
-
tableNameTrgmSimilarity?: number | null;
|
|
9621
|
-
searchScore?: number | null;
|
|
9622
9482
|
}
|
|
9623
9483
|
export interface UpdateEmailsModuleInput {
|
|
9624
9484
|
clientMutationId?: string;
|
|
@@ -9643,8 +9503,6 @@ export interface EncryptedSecretsModulePatch {
|
|
|
9643
9503
|
schemaId?: string | null;
|
|
9644
9504
|
tableId?: string | null;
|
|
9645
9505
|
tableName?: string | null;
|
|
9646
|
-
tableNameTrgmSimilarity?: number | null;
|
|
9647
|
-
searchScore?: number | null;
|
|
9648
9506
|
}
|
|
9649
9507
|
export interface UpdateEncryptedSecretsModuleInput {
|
|
9650
9508
|
clientMutationId?: string;
|
|
@@ -9675,10 +9533,8 @@ export interface FieldModulePatch {
|
|
|
9675
9533
|
fieldId?: string | null;
|
|
9676
9534
|
nodeType?: string | null;
|
|
9677
9535
|
data?: Record<string, unknown> | null;
|
|
9678
|
-
triggers?: string | null;
|
|
9679
|
-
functions?: string | null;
|
|
9680
|
-
nodeTypeTrgmSimilarity?: number | null;
|
|
9681
|
-
searchScore?: number | null;
|
|
9536
|
+
triggers?: string[] | null;
|
|
9537
|
+
functions?: string[] | null;
|
|
9682
9538
|
}
|
|
9683
9539
|
export interface UpdateFieldModuleInput {
|
|
9684
9540
|
clientMutationId?: string;
|
|
@@ -9721,11 +9577,6 @@ export interface InvitesModulePatch {
|
|
|
9721
9577
|
prefix?: string | null;
|
|
9722
9578
|
membershipType?: number | null;
|
|
9723
9579
|
entityTableId?: string | null;
|
|
9724
|
-
invitesTableNameTrgmSimilarity?: number | null;
|
|
9725
|
-
claimedInvitesTableNameTrgmSimilarity?: number | null;
|
|
9726
|
-
submitInviteCodeFunctionTrgmSimilarity?: number | null;
|
|
9727
|
-
prefixTrgmSimilarity?: number | null;
|
|
9728
|
-
searchScore?: number | null;
|
|
9729
9580
|
}
|
|
9730
9581
|
export interface UpdateInvitesModuleInput {
|
|
9731
9582
|
clientMutationId?: string;
|
|
@@ -9792,22 +9643,6 @@ export interface LevelsModulePatch {
|
|
|
9792
9643
|
membershipType?: number | null;
|
|
9793
9644
|
entityTableId?: string | null;
|
|
9794
9645
|
actorTableId?: string | null;
|
|
9795
|
-
stepsTableNameTrgmSimilarity?: number | null;
|
|
9796
|
-
achievementsTableNameTrgmSimilarity?: number | null;
|
|
9797
|
-
levelsTableNameTrgmSimilarity?: number | null;
|
|
9798
|
-
levelRequirementsTableNameTrgmSimilarity?: number | null;
|
|
9799
|
-
completedStepTrgmSimilarity?: number | null;
|
|
9800
|
-
incompletedStepTrgmSimilarity?: number | null;
|
|
9801
|
-
tgAchievementTrgmSimilarity?: number | null;
|
|
9802
|
-
tgAchievementToggleTrgmSimilarity?: number | null;
|
|
9803
|
-
tgAchievementToggleBooleanTrgmSimilarity?: number | null;
|
|
9804
|
-
tgAchievementBooleanTrgmSimilarity?: number | null;
|
|
9805
|
-
upsertAchievementTrgmSimilarity?: number | null;
|
|
9806
|
-
tgUpdateAchievementsTrgmSimilarity?: number | null;
|
|
9807
|
-
stepsRequiredTrgmSimilarity?: number | null;
|
|
9808
|
-
levelAchievedTrgmSimilarity?: number | null;
|
|
9809
|
-
prefixTrgmSimilarity?: number | null;
|
|
9810
|
-
searchScore?: number | null;
|
|
9811
9646
|
}
|
|
9812
9647
|
export interface UpdateLevelsModuleInput {
|
|
9813
9648
|
clientMutationId?: string;
|
|
@@ -9858,16 +9693,6 @@ export interface LimitsModulePatch {
|
|
|
9858
9693
|
membershipType?: number | null;
|
|
9859
9694
|
entityTableId?: string | null;
|
|
9860
9695
|
actorTableId?: string | null;
|
|
9861
|
-
tableNameTrgmSimilarity?: number | null;
|
|
9862
|
-
defaultTableNameTrgmSimilarity?: number | null;
|
|
9863
|
-
limitIncrementFunctionTrgmSimilarity?: number | null;
|
|
9864
|
-
limitDecrementFunctionTrgmSimilarity?: number | null;
|
|
9865
|
-
limitIncrementTriggerTrgmSimilarity?: number | null;
|
|
9866
|
-
limitDecrementTriggerTrgmSimilarity?: number | null;
|
|
9867
|
-
limitUpdateTriggerTrgmSimilarity?: number | null;
|
|
9868
|
-
limitCheckFunctionTrgmSimilarity?: number | null;
|
|
9869
|
-
prefixTrgmSimilarity?: number | null;
|
|
9870
|
-
searchScore?: number | null;
|
|
9871
9696
|
}
|
|
9872
9697
|
export interface UpdateLimitsModuleInput {
|
|
9873
9698
|
clientMutationId?: string;
|
|
@@ -9892,8 +9717,6 @@ export interface MembershipTypesModulePatch {
|
|
|
9892
9717
|
schemaId?: string | null;
|
|
9893
9718
|
tableId?: string | null;
|
|
9894
9719
|
tableName?: string | null;
|
|
9895
|
-
tableNameTrgmSimilarity?: number | null;
|
|
9896
|
-
searchScore?: number | null;
|
|
9897
9720
|
}
|
|
9898
9721
|
export interface UpdateMembershipTypesModuleInput {
|
|
9899
9722
|
clientMutationId?: string;
|
|
@@ -9970,19 +9793,6 @@ export interface MembershipsModulePatch {
|
|
|
9970
9793
|
entityIdsByMask?: string | null;
|
|
9971
9794
|
entityIdsByPerm?: string | null;
|
|
9972
9795
|
entityIdsFunction?: string | null;
|
|
9973
|
-
membershipsTableNameTrgmSimilarity?: number | null;
|
|
9974
|
-
membersTableNameTrgmSimilarity?: number | null;
|
|
9975
|
-
membershipDefaultsTableNameTrgmSimilarity?: number | null;
|
|
9976
|
-
grantsTableNameTrgmSimilarity?: number | null;
|
|
9977
|
-
adminGrantsTableNameTrgmSimilarity?: number | null;
|
|
9978
|
-
ownerGrantsTableNameTrgmSimilarity?: number | null;
|
|
9979
|
-
prefixTrgmSimilarity?: number | null;
|
|
9980
|
-
actorMaskCheckTrgmSimilarity?: number | null;
|
|
9981
|
-
actorPermCheckTrgmSimilarity?: number | null;
|
|
9982
|
-
entityIdsByMaskTrgmSimilarity?: number | null;
|
|
9983
|
-
entityIdsByPermTrgmSimilarity?: number | null;
|
|
9984
|
-
entityIdsFunctionTrgmSimilarity?: number | null;
|
|
9985
|
-
searchScore?: number | null;
|
|
9986
9796
|
}
|
|
9987
9797
|
export interface UpdateMembershipsModuleInput {
|
|
9988
9798
|
clientMutationId?: string;
|
|
@@ -10031,14 +9841,6 @@ export interface PermissionsModulePatch {
|
|
|
10031
9841
|
getMask?: string | null;
|
|
10032
9842
|
getByMask?: string | null;
|
|
10033
9843
|
getMaskByName?: string | null;
|
|
10034
|
-
tableNameTrgmSimilarity?: number | null;
|
|
10035
|
-
defaultTableNameTrgmSimilarity?: number | null;
|
|
10036
|
-
prefixTrgmSimilarity?: number | null;
|
|
10037
|
-
getPaddedMaskTrgmSimilarity?: number | null;
|
|
10038
|
-
getMaskTrgmSimilarity?: number | null;
|
|
10039
|
-
getByMaskTrgmSimilarity?: number | null;
|
|
10040
|
-
getMaskByNameTrgmSimilarity?: number | null;
|
|
10041
|
-
searchScore?: number | null;
|
|
10042
9844
|
}
|
|
10043
9845
|
export interface UpdatePermissionsModuleInput {
|
|
10044
9846
|
clientMutationId?: string;
|
|
@@ -10067,8 +9869,6 @@ export interface PhoneNumbersModulePatch {
|
|
|
10067
9869
|
tableId?: string | null;
|
|
10068
9870
|
ownerTableId?: string | null;
|
|
10069
9871
|
tableName?: string | null;
|
|
10070
|
-
tableNameTrgmSimilarity?: number | null;
|
|
10071
|
-
searchScore?: number | null;
|
|
10072
9872
|
}
|
|
10073
9873
|
export interface UpdatePhoneNumbersModuleInput {
|
|
10074
9874
|
clientMutationId?: string;
|
|
@@ -10119,12 +9919,6 @@ export interface ProfilesModulePatch {
|
|
|
10119
9919
|
permissionsTableId?: string | null;
|
|
10120
9920
|
membershipsTableId?: string | null;
|
|
10121
9921
|
prefix?: string | null;
|
|
10122
|
-
tableNameTrgmSimilarity?: number | null;
|
|
10123
|
-
profilePermissionsTableNameTrgmSimilarity?: number | null;
|
|
10124
|
-
profileGrantsTableNameTrgmSimilarity?: number | null;
|
|
10125
|
-
profileDefinitionGrantsTableNameTrgmSimilarity?: number | null;
|
|
10126
|
-
prefixTrgmSimilarity?: number | null;
|
|
10127
|
-
searchScore?: number | null;
|
|
10128
9922
|
}
|
|
10129
9923
|
export interface UpdateProfilesModuleInput {
|
|
10130
9924
|
clientMutationId?: string;
|
|
@@ -10149,8 +9943,6 @@ export interface SecretsModulePatch {
|
|
|
10149
9943
|
schemaId?: string | null;
|
|
10150
9944
|
tableId?: string | null;
|
|
10151
9945
|
tableName?: string | null;
|
|
10152
|
-
tableNameTrgmSimilarity?: number | null;
|
|
10153
|
-
searchScore?: number | null;
|
|
10154
9946
|
}
|
|
10155
9947
|
export interface UpdateSecretsModuleInput {
|
|
10156
9948
|
clientMutationId?: string;
|
|
@@ -10183,14 +9975,10 @@ export interface SessionsModulePatch {
|
|
|
10183
9975
|
sessionCredentialsTableId?: string | null;
|
|
10184
9976
|
authSettingsTableId?: string | null;
|
|
10185
9977
|
usersTableId?: string | null;
|
|
10186
|
-
sessionsDefaultExpiration?:
|
|
9978
|
+
sessionsDefaultExpiration?: IntervalInput | null;
|
|
10187
9979
|
sessionsTable?: string | null;
|
|
10188
9980
|
sessionCredentialsTable?: string | null;
|
|
10189
9981
|
authSettingsTable?: string | null;
|
|
10190
|
-
sessionsTableTrgmSimilarity?: number | null;
|
|
10191
|
-
sessionCredentialsTableTrgmSimilarity?: number | null;
|
|
10192
|
-
authSettingsTableTrgmSimilarity?: number | null;
|
|
10193
|
-
searchScore?: number | null;
|
|
10194
9982
|
}
|
|
10195
9983
|
export interface UpdateSessionsModuleInput {
|
|
10196
9984
|
clientMutationId?: string;
|
|
@@ -10257,23 +10045,6 @@ export interface UserAuthModulePatch {
|
|
|
10257
10045
|
signInOneTimeTokenFunction?: string | null;
|
|
10258
10046
|
oneTimeTokenFunction?: string | null;
|
|
10259
10047
|
extendTokenExpires?: string | null;
|
|
10260
|
-
auditsTableNameTrgmSimilarity?: number | null;
|
|
10261
|
-
signInFunctionTrgmSimilarity?: number | null;
|
|
10262
|
-
signUpFunctionTrgmSimilarity?: number | null;
|
|
10263
|
-
signOutFunctionTrgmSimilarity?: number | null;
|
|
10264
|
-
setPasswordFunctionTrgmSimilarity?: number | null;
|
|
10265
|
-
resetPasswordFunctionTrgmSimilarity?: number | null;
|
|
10266
|
-
forgotPasswordFunctionTrgmSimilarity?: number | null;
|
|
10267
|
-
sendVerificationEmailFunctionTrgmSimilarity?: number | null;
|
|
10268
|
-
verifyEmailFunctionTrgmSimilarity?: number | null;
|
|
10269
|
-
verifyPasswordFunctionTrgmSimilarity?: number | null;
|
|
10270
|
-
checkPasswordFunctionTrgmSimilarity?: number | null;
|
|
10271
|
-
sendAccountDeletionEmailFunctionTrgmSimilarity?: number | null;
|
|
10272
|
-
deleteAccountFunctionTrgmSimilarity?: number | null;
|
|
10273
|
-
signInOneTimeTokenFunctionTrgmSimilarity?: number | null;
|
|
10274
|
-
oneTimeTokenFunctionTrgmSimilarity?: number | null;
|
|
10275
|
-
extendTokenExpiresTrgmSimilarity?: number | null;
|
|
10276
|
-
searchScore?: number | null;
|
|
10277
10048
|
}
|
|
10278
10049
|
export interface UpdateUserAuthModuleInput {
|
|
10279
10050
|
clientMutationId?: string;
|
|
@@ -10302,9 +10073,6 @@ export interface UsersModulePatch {
|
|
|
10302
10073
|
tableName?: string | null;
|
|
10303
10074
|
typeTableId?: string | null;
|
|
10304
10075
|
typeTableName?: string | null;
|
|
10305
|
-
tableNameTrgmSimilarity?: number | null;
|
|
10306
|
-
typeTableNameTrgmSimilarity?: number | null;
|
|
10307
|
-
searchScore?: number | null;
|
|
10308
10076
|
}
|
|
10309
10077
|
export interface UpdateUsersModuleInput {
|
|
10310
10078
|
clientMutationId?: string;
|
|
@@ -10329,9 +10097,6 @@ export interface UuidModulePatch {
|
|
|
10329
10097
|
schemaId?: string | null;
|
|
10330
10098
|
uuidFunction?: string | null;
|
|
10331
10099
|
uuidSeed?: string | null;
|
|
10332
|
-
uuidFunctionTrgmSimilarity?: number | null;
|
|
10333
|
-
uuidSeedTrgmSimilarity?: number | null;
|
|
10334
|
-
searchScore?: number | null;
|
|
10335
10100
|
}
|
|
10336
10101
|
export interface UpdateUuidModuleInput {
|
|
10337
10102
|
clientMutationId?: string;
|
|
@@ -10363,19 +10128,13 @@ export interface DatabaseProvisionModulePatch {
|
|
|
10363
10128
|
ownerId?: string | null;
|
|
10364
10129
|
subdomain?: string | null;
|
|
10365
10130
|
domain?: string | null;
|
|
10366
|
-
modules?: string | null;
|
|
10131
|
+
modules?: string[] | null;
|
|
10367
10132
|
options?: Record<string, unknown> | null;
|
|
10368
10133
|
bootstrapUser?: boolean | null;
|
|
10369
10134
|
status?: string | null;
|
|
10370
10135
|
errorMessage?: string | null;
|
|
10371
10136
|
databaseId?: string | null;
|
|
10372
10137
|
completedAt?: string | null;
|
|
10373
|
-
databaseNameTrgmSimilarity?: number | null;
|
|
10374
|
-
subdomainTrgmSimilarity?: number | null;
|
|
10375
|
-
domainTrgmSimilarity?: number | null;
|
|
10376
|
-
statusTrgmSimilarity?: number | null;
|
|
10377
|
-
errorMessageTrgmSimilarity?: number | null;
|
|
10378
|
-
searchScore?: number | null;
|
|
10379
10138
|
}
|
|
10380
10139
|
export interface UpdateDatabaseProvisionModuleInput {
|
|
10381
10140
|
clientMutationId?: string;
|
|
@@ -10608,8 +10367,6 @@ export interface OrgChartEdgePatch {
|
|
|
10608
10367
|
parentId?: string | null;
|
|
10609
10368
|
positionTitle?: string | null;
|
|
10610
10369
|
positionLevel?: number | null;
|
|
10611
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
10612
|
-
searchScore?: number | null;
|
|
10613
10370
|
}
|
|
10614
10371
|
export interface UpdateOrgChartEdgeInput {
|
|
10615
10372
|
clientMutationId?: string;
|
|
@@ -10640,8 +10397,6 @@ export interface OrgChartEdgeGrantPatch {
|
|
|
10640
10397
|
isGrant?: boolean | null;
|
|
10641
10398
|
positionTitle?: string | null;
|
|
10642
10399
|
positionLevel?: number | null;
|
|
10643
|
-
positionTitleTrgmSimilarity?: number | null;
|
|
10644
|
-
searchScore?: number | null;
|
|
10645
10400
|
}
|
|
10646
10401
|
export interface UpdateOrgChartEdgeGrantInput {
|
|
10647
10402
|
clientMutationId?: string;
|
|
@@ -10770,8 +10525,6 @@ export interface InvitePatch {
|
|
|
10770
10525
|
multiple?: boolean | null;
|
|
10771
10526
|
data?: Record<string, unknown> | null;
|
|
10772
10527
|
expiresAt?: string | null;
|
|
10773
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
10774
|
-
searchScore?: number | null;
|
|
10775
10528
|
}
|
|
10776
10529
|
export interface UpdateInviteInput {
|
|
10777
10530
|
clientMutationId?: string;
|
|
@@ -10832,8 +10585,6 @@ export interface OrgInvitePatch {
|
|
|
10832
10585
|
data?: Record<string, unknown> | null;
|
|
10833
10586
|
expiresAt?: string | null;
|
|
10834
10587
|
entityId?: string | null;
|
|
10835
|
-
inviteTokenTrgmSimilarity?: number | null;
|
|
10836
|
-
searchScore?: number | null;
|
|
10837
10588
|
}
|
|
10838
10589
|
export interface UpdateOrgInviteInput {
|
|
10839
10590
|
clientMutationId?: string;
|
|
@@ -10882,8 +10633,6 @@ export interface RefPatch {
|
|
|
10882
10633
|
databaseId?: string | null;
|
|
10883
10634
|
storeId?: string | null;
|
|
10884
10635
|
commitId?: string | null;
|
|
10885
|
-
nameTrgmSimilarity?: number | null;
|
|
10886
|
-
searchScore?: number | null;
|
|
10887
10636
|
}
|
|
10888
10637
|
export interface UpdateRefInput {
|
|
10889
10638
|
clientMutationId?: string;
|
|
@@ -10906,8 +10655,6 @@ export interface StorePatch {
|
|
|
10906
10655
|
name?: string | null;
|
|
10907
10656
|
databaseId?: string | null;
|
|
10908
10657
|
hash?: string | null;
|
|
10909
|
-
nameTrgmSimilarity?: number | null;
|
|
10910
|
-
searchScore?: number | null;
|
|
10911
10658
|
}
|
|
10912
10659
|
export interface UpdateStoreInput {
|
|
10913
10660
|
clientMutationId?: string;
|
|
@@ -10950,8 +10697,6 @@ export interface CryptoAddressPatch {
|
|
|
10950
10697
|
address?: string | null;
|
|
10951
10698
|
isVerified?: boolean | null;
|
|
10952
10699
|
isPrimary?: boolean | null;
|
|
10953
|
-
addressTrgmSimilarity?: number | null;
|
|
10954
|
-
searchScore?: number | null;
|
|
10955
10700
|
}
|
|
10956
10701
|
export interface UpdateCryptoAddressInput {
|
|
10957
10702
|
clientMutationId?: string;
|
|
@@ -11016,9 +10761,6 @@ export interface PhoneNumberPatch {
|
|
|
11016
10761
|
number?: string | null;
|
|
11017
10762
|
isVerified?: boolean | null;
|
|
11018
10763
|
isPrimary?: boolean | null;
|
|
11019
|
-
ccTrgmSimilarity?: number | null;
|
|
11020
|
-
numberTrgmSimilarity?: number | null;
|
|
11021
|
-
searchScore?: number | null;
|
|
11022
10764
|
}
|
|
11023
10765
|
export interface UpdatePhoneNumberInput {
|
|
11024
10766
|
clientMutationId?: string;
|
|
@@ -11085,9 +10827,6 @@ export interface ConnectedAccountPatch {
|
|
|
11085
10827
|
identifier?: string | null;
|
|
11086
10828
|
details?: Record<string, unknown> | null;
|
|
11087
10829
|
isVerified?: boolean | null;
|
|
11088
|
-
serviceTrgmSimilarity?: number | null;
|
|
11089
|
-
identifierTrgmSimilarity?: number | null;
|
|
11090
|
-
searchScore?: number | null;
|
|
11091
10830
|
}
|
|
11092
10831
|
export interface UpdateConnectedAccountInput {
|
|
11093
10832
|
clientMutationId?: string;
|
|
@@ -11117,13 +10856,7 @@ export interface NodeTypeRegistryPatch {
|
|
|
11117
10856
|
displayName?: string | null;
|
|
11118
10857
|
description?: string | null;
|
|
11119
10858
|
parameterSchema?: Record<string, unknown> | null;
|
|
11120
|
-
tags?: string | null;
|
|
11121
|
-
nameTrgmSimilarity?: number | null;
|
|
11122
|
-
slugTrgmSimilarity?: number | null;
|
|
11123
|
-
categoryTrgmSimilarity?: number | null;
|
|
11124
|
-
displayNameTrgmSimilarity?: number | null;
|
|
11125
|
-
descriptionTrgmSimilarity?: number | null;
|
|
11126
|
-
searchScore?: number | null;
|
|
10859
|
+
tags?: string[] | null;
|
|
11127
10860
|
}
|
|
11128
10861
|
export interface UpdateNodeTypeRegistryInput {
|
|
11129
10862
|
clientMutationId?: string;
|
|
@@ -11146,9 +10879,6 @@ export interface MembershipTypePatch {
|
|
|
11146
10879
|
name?: string | null;
|
|
11147
10880
|
description?: string | null;
|
|
11148
10881
|
prefix?: string | null;
|
|
11149
|
-
descriptionTrgmSimilarity?: number | null;
|
|
11150
|
-
prefixTrgmSimilarity?: number | null;
|
|
11151
|
-
searchScore?: number | null;
|
|
11152
10882
|
}
|
|
11153
10883
|
export interface UpdateMembershipTypeInput {
|
|
11154
10884
|
clientMutationId?: string;
|
|
@@ -11176,13 +10906,11 @@ export interface CommitPatch {
|
|
|
11176
10906
|
message?: string | null;
|
|
11177
10907
|
databaseId?: string | null;
|
|
11178
10908
|
storeId?: string | null;
|
|
11179
|
-
parentIds?: string | null;
|
|
10909
|
+
parentIds?: string[] | null;
|
|
11180
10910
|
authorId?: string | null;
|
|
11181
10911
|
committerId?: string | null;
|
|
11182
10912
|
treeId?: string | null;
|
|
11183
10913
|
date?: string | null;
|
|
11184
|
-
messageTrgmSimilarity?: number | null;
|
|
11185
|
-
searchScore?: number | null;
|
|
11186
10914
|
}
|
|
11187
10915
|
export interface UpdateCommitInput {
|
|
11188
10916
|
clientMutationId?: string;
|
|
@@ -11243,11 +10971,6 @@ export interface RlsModulePatch {
|
|
|
11243
10971
|
authenticateStrict?: string | null;
|
|
11244
10972
|
currentRole?: string | null;
|
|
11245
10973
|
currentRoleId?: string | null;
|
|
11246
|
-
authenticateTrgmSimilarity?: number | null;
|
|
11247
|
-
authenticateStrictTrgmSimilarity?: number | null;
|
|
11248
|
-
currentRoleTrgmSimilarity?: number | null;
|
|
11249
|
-
currentRoleIdTrgmSimilarity?: number | null;
|
|
11250
|
-
searchScore?: number | null;
|
|
11251
10974
|
}
|
|
11252
10975
|
export interface UpdateRlsModuleInput {
|
|
11253
10976
|
clientMutationId?: string;
|
|
@@ -11304,8 +11027,6 @@ export interface AuditLogPatch {
|
|
|
11304
11027
|
userAgent?: string | null;
|
|
11305
11028
|
ipAddress?: string | null;
|
|
11306
11029
|
success?: boolean | null;
|
|
11307
|
-
userAgentTrgmSimilarity?: number | null;
|
|
11308
|
-
searchScore?: number | null;
|
|
11309
11030
|
}
|
|
11310
11031
|
export interface UpdateAuditLogInput {
|
|
11311
11032
|
clientMutationId?: string;
|
|
@@ -11330,8 +11051,7 @@ export interface AppLevelPatch {
|
|
|
11330
11051
|
description?: string | null;
|
|
11331
11052
|
image?: ConstructiveInternalTypeImage | null;
|
|
11332
11053
|
ownerId?: string | null;
|
|
11333
|
-
|
|
11334
|
-
searchScore?: number | null;
|
|
11054
|
+
imageUpload?: File | null;
|
|
11335
11055
|
}
|
|
11336
11056
|
export interface UpdateAppLevelInput {
|
|
11337
11057
|
clientMutationId?: string;
|
|
@@ -11362,7 +11082,7 @@ export interface SqlMigrationPatch {
|
|
|
11362
11082
|
name?: string | null;
|
|
11363
11083
|
databaseId?: string | null;
|
|
11364
11084
|
deploy?: string | null;
|
|
11365
|
-
deps?: string | null;
|
|
11085
|
+
deps?: string[] | null;
|
|
11366
11086
|
payload?: Record<string, unknown> | null;
|
|
11367
11087
|
content?: string | null;
|
|
11368
11088
|
revert?: string | null;
|
|
@@ -11424,11 +11144,8 @@ export interface UserPatch {
|
|
|
11424
11144
|
username?: string | null;
|
|
11425
11145
|
displayName?: string | null;
|
|
11426
11146
|
profilePicture?: ConstructiveInternalTypeImage | null;
|
|
11427
|
-
searchTsv?: string | null;
|
|
11428
11147
|
type?: number | null;
|
|
11429
|
-
|
|
11430
|
-
displayNameTrgmSimilarity?: number | null;
|
|
11431
|
-
searchScore?: number | null;
|
|
11148
|
+
profilePictureUpload?: File | null;
|
|
11432
11149
|
}
|
|
11433
11150
|
export interface UpdateUserInput {
|
|
11434
11151
|
clientMutationId?: string;
|
|
@@ -11458,7 +11175,7 @@ export interface CreateAstMigrationInput {
|
|
|
11458
11175
|
export interface AstMigrationPatch {
|
|
11459
11176
|
databaseId?: string | null;
|
|
11460
11177
|
name?: string | null;
|
|
11461
|
-
requires?: string | null;
|
|
11178
|
+
requires?: string[] | null;
|
|
11462
11179
|
payload?: Record<string, unknown> | null;
|
|
11463
11180
|
deploys?: string | null;
|
|
11464
11181
|
deploy?: Record<string, unknown> | null;
|
|
@@ -11563,17 +11280,6 @@ export interface HierarchyModulePatch {
|
|
|
11563
11280
|
getSubordinatesFunction?: string | null;
|
|
11564
11281
|
getManagersFunction?: string | null;
|
|
11565
11282
|
isManagerOfFunction?: string | null;
|
|
11566
|
-
chartEdgesTableNameTrgmSimilarity?: number | null;
|
|
11567
|
-
hierarchySprtTableNameTrgmSimilarity?: number | null;
|
|
11568
|
-
chartEdgeGrantsTableNameTrgmSimilarity?: number | null;
|
|
11569
|
-
prefixTrgmSimilarity?: number | null;
|
|
11570
|
-
privateSchemaNameTrgmSimilarity?: number | null;
|
|
11571
|
-
sprtTableNameTrgmSimilarity?: number | null;
|
|
11572
|
-
rebuildHierarchyFunctionTrgmSimilarity?: number | null;
|
|
11573
|
-
getSubordinatesFunctionTrgmSimilarity?: number | null;
|
|
11574
|
-
getManagersFunctionTrgmSimilarity?: number | null;
|
|
11575
|
-
isManagerOfFunctionTrgmSimilarity?: number | null;
|
|
11576
|
-
searchScore?: number | null;
|
|
11577
11283
|
}
|
|
11578
11284
|
export interface UpdateHierarchyModuleInput {
|
|
11579
11285
|
clientMutationId?: string;
|