@constructive-io/sdk 0.21.10 → 0.22.1
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/auth/orm/input-types.d.ts +1 -0
- package/esm/auth/orm/input-types.d.ts +1 -0
- package/esm/public/orm/index.d.ts +2 -2
- package/esm/public/orm/index.js +2 -2
- package/esm/public/orm/input-types.d.ts +214 -197
- package/esm/public/orm/input-types.js +0 -1
- package/esm/public/orm/models/index.d.ts +1 -1
- package/esm/public/orm/models/index.js +1 -1
- package/package.json +6 -6
- package/public/orm/index.d.ts +2 -2
- package/public/orm/index.js +2 -2
- package/public/orm/input-types.d.ts +214 -197
- package/public/orm/input-types.js +0 -1
- package/public/orm/models/index.d.ts +1 -1
- package/public/orm/models/index.js +3 -3
|
@@ -343,6 +343,10 @@ export interface Table {
|
|
|
343
343
|
pluralName?: string | null;
|
|
344
344
|
singularName?: string | null;
|
|
345
345
|
tags?: string[] | null;
|
|
346
|
+
partitioned?: boolean | null;
|
|
347
|
+
partitionStrategy?: string | null;
|
|
348
|
+
partitionKeyNames?: string[] | null;
|
|
349
|
+
partitionKeyTypes?: string[] | null;
|
|
346
350
|
inheritsId?: string | null;
|
|
347
351
|
createdAt?: string | null;
|
|
348
352
|
updatedAt?: string | null;
|
|
@@ -406,19 +410,6 @@ export interface SpatialRelation {
|
|
|
406
410
|
createdAt?: string | null;
|
|
407
411
|
updatedAt?: string | null;
|
|
408
412
|
}
|
|
409
|
-
export interface Partition {
|
|
410
|
-
id: string;
|
|
411
|
-
databaseId?: string | null;
|
|
412
|
-
tableId?: string | null;
|
|
413
|
-
strategy?: string | null;
|
|
414
|
-
partitionKeyId?: string | null;
|
|
415
|
-
interval?: string | null;
|
|
416
|
-
retention?: string | null;
|
|
417
|
-
lookahead?: number | null;
|
|
418
|
-
namingPattern?: string | null;
|
|
419
|
-
createdAt?: string | null;
|
|
420
|
-
updatedAt?: string | null;
|
|
421
|
-
}
|
|
422
413
|
export interface ForeignKeyConstraint {
|
|
423
414
|
id: string;
|
|
424
415
|
databaseId?: string | null;
|
|
@@ -954,6 +945,19 @@ export interface DatabaseTransfer {
|
|
|
954
945
|
updatedAt?: string | null;
|
|
955
946
|
completedAt?: string | null;
|
|
956
947
|
}
|
|
948
|
+
export interface Partition {
|
|
949
|
+
id: string;
|
|
950
|
+
databaseId?: string | null;
|
|
951
|
+
tableId?: string | null;
|
|
952
|
+
strategy?: string | null;
|
|
953
|
+
partitionKeyIds?: string[] | null;
|
|
954
|
+
interval?: string | null;
|
|
955
|
+
retention?: string | null;
|
|
956
|
+
lookahead?: number | null;
|
|
957
|
+
namingPattern?: string | null;
|
|
958
|
+
createdAt?: string | null;
|
|
959
|
+
updatedAt?: string | null;
|
|
960
|
+
}
|
|
957
961
|
/** API endpoint configurations: each record defines a PostGraphile/PostgREST API with its database role and public access settings */
|
|
958
962
|
export interface Api {
|
|
959
963
|
/** Unique identifier for this API */
|
|
@@ -1465,6 +1469,8 @@ export interface StorageModule {
|
|
|
1465
1469
|
hasContentHash?: boolean | null;
|
|
1466
1470
|
hasCustomKeys?: boolean | null;
|
|
1467
1471
|
hasAuditLog?: boolean | null;
|
|
1472
|
+
hasConfirmUpload?: boolean | null;
|
|
1473
|
+
confirmUploadDelay?: string | null;
|
|
1468
1474
|
fileEventsTableId?: string | null;
|
|
1469
1475
|
}
|
|
1470
1476
|
/**
|
|
@@ -3051,7 +3057,6 @@ export interface FieldRelations {
|
|
|
3051
3057
|
table?: Table | null;
|
|
3052
3058
|
spatialRelations?: ConnectionResult<SpatialRelation>;
|
|
3053
3059
|
spatialRelationsByRefFieldId?: ConnectionResult<SpatialRelation>;
|
|
3054
|
-
partitionsByPartitionKeyId?: ConnectionResult<Partition>;
|
|
3055
3060
|
}
|
|
3056
3061
|
export interface SpatialRelationRelations {
|
|
3057
3062
|
database?: Database | null;
|
|
@@ -3060,11 +3065,6 @@ export interface SpatialRelationRelations {
|
|
|
3060
3065
|
refTable?: Table | null;
|
|
3061
3066
|
table?: Table | null;
|
|
3062
3067
|
}
|
|
3063
|
-
export interface PartitionRelations {
|
|
3064
|
-
database?: Database | null;
|
|
3065
|
-
partitionKey?: Field | null;
|
|
3066
|
-
table?: Table | null;
|
|
3067
|
-
}
|
|
3068
3068
|
export interface ForeignKeyConstraintRelations {
|
|
3069
3069
|
database?: Database | null;
|
|
3070
3070
|
refTable?: Table | null;
|
|
@@ -3208,6 +3208,10 @@ export interface TriggerFunctionRelations {
|
|
|
3208
3208
|
export interface DatabaseTransferRelations {
|
|
3209
3209
|
database?: Database | null;
|
|
3210
3210
|
}
|
|
3211
|
+
export interface PartitionRelations {
|
|
3212
|
+
database?: Database | null;
|
|
3213
|
+
table?: Table | null;
|
|
3214
|
+
}
|
|
3211
3215
|
export interface ApiRelations {
|
|
3212
3216
|
database?: Database | null;
|
|
3213
3217
|
apiSetting?: ApiSetting | null;
|
|
@@ -3825,7 +3829,6 @@ export type TableWithRelations = Table & TableRelations;
|
|
|
3825
3829
|
export type CheckConstraintWithRelations = CheckConstraint & CheckConstraintRelations;
|
|
3826
3830
|
export type FieldWithRelations = Field & FieldRelations;
|
|
3827
3831
|
export type SpatialRelationWithRelations = SpatialRelation & SpatialRelationRelations;
|
|
3828
|
-
export type PartitionWithRelations = Partition & PartitionRelations;
|
|
3829
3832
|
export type ForeignKeyConstraintWithRelations = ForeignKeyConstraint & ForeignKeyConstraintRelations;
|
|
3830
3833
|
export type FullTextSearchWithRelations = FullTextSearch & FullTextSearchRelations;
|
|
3831
3834
|
export type IndexWithRelations = Index & IndexRelations;
|
|
@@ -3857,6 +3860,7 @@ export type SiteThemeWithRelations = SiteTheme & SiteThemeRelations;
|
|
|
3857
3860
|
export type CorsSettingWithRelations = CorsSetting & CorsSettingRelations;
|
|
3858
3861
|
export type TriggerFunctionWithRelations = TriggerFunction & TriggerFunctionRelations;
|
|
3859
3862
|
export type DatabaseTransferWithRelations = DatabaseTransfer & DatabaseTransferRelations;
|
|
3863
|
+
export type PartitionWithRelations = Partition & PartitionRelations;
|
|
3860
3864
|
export type ApiWithRelations = Api & ApiRelations;
|
|
3861
3865
|
export type SiteWithRelations = Site & SiteRelations;
|
|
3862
3866
|
export type AppWithRelations = App & AppRelations;
|
|
@@ -4569,6 +4573,10 @@ export type TableSelect = {
|
|
|
4569
4573
|
pluralName?: boolean;
|
|
4570
4574
|
singularName?: boolean;
|
|
4571
4575
|
tags?: boolean;
|
|
4576
|
+
partitioned?: boolean;
|
|
4577
|
+
partitionStrategy?: boolean;
|
|
4578
|
+
partitionKeyNames?: boolean;
|
|
4579
|
+
partitionKeyTypes?: boolean;
|
|
4572
4580
|
inheritsId?: boolean;
|
|
4573
4581
|
createdAt?: boolean;
|
|
4574
4582
|
updatedAt?: boolean;
|
|
@@ -4800,12 +4808,6 @@ export type FieldSelect = {
|
|
|
4800
4808
|
filter?: SpatialRelationFilter;
|
|
4801
4809
|
orderBy?: SpatialRelationOrderBy[];
|
|
4802
4810
|
};
|
|
4803
|
-
partitionsByPartitionKeyId?: {
|
|
4804
|
-
select: PartitionSelect;
|
|
4805
|
-
first?: number;
|
|
4806
|
-
filter?: PartitionFilter;
|
|
4807
|
-
orderBy?: PartitionOrderBy[];
|
|
4808
|
-
};
|
|
4809
4811
|
};
|
|
4810
4812
|
export type SpatialRelationSelect = {
|
|
4811
4813
|
id?: boolean;
|
|
@@ -4839,28 +4841,6 @@ export type SpatialRelationSelect = {
|
|
|
4839
4841
|
select: TableSelect;
|
|
4840
4842
|
};
|
|
4841
4843
|
};
|
|
4842
|
-
export type PartitionSelect = {
|
|
4843
|
-
id?: boolean;
|
|
4844
|
-
databaseId?: boolean;
|
|
4845
|
-
tableId?: boolean;
|
|
4846
|
-
strategy?: boolean;
|
|
4847
|
-
partitionKeyId?: boolean;
|
|
4848
|
-
interval?: boolean;
|
|
4849
|
-
retention?: boolean;
|
|
4850
|
-
lookahead?: boolean;
|
|
4851
|
-
namingPattern?: boolean;
|
|
4852
|
-
createdAt?: boolean;
|
|
4853
|
-
updatedAt?: boolean;
|
|
4854
|
-
database?: {
|
|
4855
|
-
select: DatabaseSelect;
|
|
4856
|
-
};
|
|
4857
|
-
partitionKey?: {
|
|
4858
|
-
select: FieldSelect;
|
|
4859
|
-
};
|
|
4860
|
-
table?: {
|
|
4861
|
-
select: TableSelect;
|
|
4862
|
-
};
|
|
4863
|
-
};
|
|
4864
4844
|
export type ForeignKeyConstraintSelect = {
|
|
4865
4845
|
id?: boolean;
|
|
4866
4846
|
databaseId?: boolean;
|
|
@@ -5480,6 +5460,25 @@ export type DatabaseTransferSelect = {
|
|
|
5480
5460
|
select: DatabaseSelect;
|
|
5481
5461
|
};
|
|
5482
5462
|
};
|
|
5463
|
+
export type PartitionSelect = {
|
|
5464
|
+
id?: boolean;
|
|
5465
|
+
databaseId?: boolean;
|
|
5466
|
+
tableId?: boolean;
|
|
5467
|
+
strategy?: boolean;
|
|
5468
|
+
partitionKeyIds?: boolean;
|
|
5469
|
+
interval?: boolean;
|
|
5470
|
+
retention?: boolean;
|
|
5471
|
+
lookahead?: boolean;
|
|
5472
|
+
namingPattern?: boolean;
|
|
5473
|
+
createdAt?: boolean;
|
|
5474
|
+
updatedAt?: boolean;
|
|
5475
|
+
database?: {
|
|
5476
|
+
select: DatabaseSelect;
|
|
5477
|
+
};
|
|
5478
|
+
table?: {
|
|
5479
|
+
select: TableSelect;
|
|
5480
|
+
};
|
|
5481
|
+
};
|
|
5483
5482
|
export type ApiSelect = {
|
|
5484
5483
|
id?: boolean;
|
|
5485
5484
|
databaseId?: boolean;
|
|
@@ -6384,6 +6383,8 @@ export type StorageModuleSelect = {
|
|
|
6384
6383
|
hasContentHash?: boolean;
|
|
6385
6384
|
hasCustomKeys?: boolean;
|
|
6386
6385
|
hasAuditLog?: boolean;
|
|
6386
|
+
hasConfirmUpload?: boolean;
|
|
6387
|
+
confirmUploadDelay?: boolean;
|
|
6387
6388
|
fileEventsTableId?: boolean;
|
|
6388
6389
|
bucketsTable?: {
|
|
6389
6390
|
select: TableSelect;
|
|
@@ -8733,6 +8734,14 @@ export interface TableFilter {
|
|
|
8733
8734
|
singularName?: StringFilter;
|
|
8734
8735
|
/** Filter by the object’s `tags` field. */
|
|
8735
8736
|
tags?: StringListFilter;
|
|
8737
|
+
/** Filter by the object’s `partitioned` field. */
|
|
8738
|
+
partitioned?: BooleanFilter;
|
|
8739
|
+
/** Filter by the object’s `partitionStrategy` field. */
|
|
8740
|
+
partitionStrategy?: StringFilter;
|
|
8741
|
+
/** Filter by the object’s `partitionKeyNames` field. */
|
|
8742
|
+
partitionKeyNames?: StringListFilter;
|
|
8743
|
+
/** Filter by the object’s `partitionKeyTypes` field. */
|
|
8744
|
+
partitionKeyTypes?: StringListFilter;
|
|
8736
8745
|
/** Filter by the object’s `inheritsId` field. */
|
|
8737
8746
|
inheritsId?: UUIDFilter;
|
|
8738
8747
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8965,10 +8974,6 @@ export interface FieldFilter {
|
|
|
8965
8974
|
spatialRelationsByRefFieldId?: FieldToManySpatialRelationFilter;
|
|
8966
8975
|
/** `spatialRelationsByRefFieldId` exist. */
|
|
8967
8976
|
spatialRelationsByRefFieldIdExist?: boolean;
|
|
8968
|
-
/** Filter by the object’s `partitionsByPartitionKeyId` relation. */
|
|
8969
|
-
partitionsByPartitionKeyId?: FieldToManyPartitionFilter;
|
|
8970
|
-
/** `partitionsByPartitionKeyId` exist. */
|
|
8971
|
-
partitionsByPartitionKeyIdExist?: boolean;
|
|
8972
8977
|
}
|
|
8973
8978
|
export interface SpatialRelationFilter {
|
|
8974
8979
|
/** Filter by the object’s `id` field. */
|
|
@@ -9018,42 +9023,6 @@ export interface SpatialRelationFilter {
|
|
|
9018
9023
|
/** Filter by the object’s `table` relation. */
|
|
9019
9024
|
table?: TableFilter;
|
|
9020
9025
|
}
|
|
9021
|
-
export interface PartitionFilter {
|
|
9022
|
-
/** Filter by the object’s `id` field. */
|
|
9023
|
-
id?: UUIDFilter;
|
|
9024
|
-
/** Filter by the object’s `databaseId` field. */
|
|
9025
|
-
databaseId?: UUIDFilter;
|
|
9026
|
-
/** Filter by the object’s `tableId` field. */
|
|
9027
|
-
tableId?: UUIDFilter;
|
|
9028
|
-
/** Filter by the object’s `strategy` field. */
|
|
9029
|
-
strategy?: StringFilter;
|
|
9030
|
-
/** Filter by the object’s `partitionKeyId` field. */
|
|
9031
|
-
partitionKeyId?: UUIDFilter;
|
|
9032
|
-
/** Filter by the object’s `interval` field. */
|
|
9033
|
-
interval?: StringFilter;
|
|
9034
|
-
/** Filter by the object’s `retention` field. */
|
|
9035
|
-
retention?: StringFilter;
|
|
9036
|
-
/** Filter by the object’s `lookahead` field. */
|
|
9037
|
-
lookahead?: IntFilter;
|
|
9038
|
-
/** Filter by the object’s `namingPattern` field. */
|
|
9039
|
-
namingPattern?: StringFilter;
|
|
9040
|
-
/** Filter by the object’s `createdAt` field. */
|
|
9041
|
-
createdAt?: DatetimeFilter;
|
|
9042
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
9043
|
-
updatedAt?: DatetimeFilter;
|
|
9044
|
-
/** Checks for all expressions in this list. */
|
|
9045
|
-
and?: PartitionFilter[];
|
|
9046
|
-
/** Checks for any expressions in this list. */
|
|
9047
|
-
or?: PartitionFilter[];
|
|
9048
|
-
/** Negates the expression. */
|
|
9049
|
-
not?: PartitionFilter;
|
|
9050
|
-
/** Filter by the object’s `database` relation. */
|
|
9051
|
-
database?: DatabaseFilter;
|
|
9052
|
-
/** Filter by the object’s `partitionKey` relation. */
|
|
9053
|
-
partitionKey?: FieldFilter;
|
|
9054
|
-
/** Filter by the object’s `table` relation. */
|
|
9055
|
-
table?: TableFilter;
|
|
9056
|
-
}
|
|
9057
9026
|
export interface ForeignKeyConstraintFilter {
|
|
9058
9027
|
/** Filter by the object’s `id` field. */
|
|
9059
9028
|
id?: UUIDFilter;
|
|
@@ -10090,6 +10059,40 @@ export interface DatabaseTransferFilter {
|
|
|
10090
10059
|
/** Filter by the object’s `database` relation. */
|
|
10091
10060
|
database?: DatabaseFilter;
|
|
10092
10061
|
}
|
|
10062
|
+
export interface PartitionFilter {
|
|
10063
|
+
/** Filter by the object’s `id` field. */
|
|
10064
|
+
id?: UUIDFilter;
|
|
10065
|
+
/** Filter by the object’s `databaseId` field. */
|
|
10066
|
+
databaseId?: UUIDFilter;
|
|
10067
|
+
/** Filter by the object’s `tableId` field. */
|
|
10068
|
+
tableId?: UUIDFilter;
|
|
10069
|
+
/** Filter by the object’s `strategy` field. */
|
|
10070
|
+
strategy?: StringFilter;
|
|
10071
|
+
/** Filter by the object’s `partitionKeyIds` field. */
|
|
10072
|
+
partitionKeyIds?: UUIDListFilter;
|
|
10073
|
+
/** Filter by the object’s `interval` field. */
|
|
10074
|
+
interval?: StringFilter;
|
|
10075
|
+
/** Filter by the object’s `retention` field. */
|
|
10076
|
+
retention?: StringFilter;
|
|
10077
|
+
/** Filter by the object’s `lookahead` field. */
|
|
10078
|
+
lookahead?: IntFilter;
|
|
10079
|
+
/** Filter by the object’s `namingPattern` field. */
|
|
10080
|
+
namingPattern?: StringFilter;
|
|
10081
|
+
/** Filter by the object’s `createdAt` field. */
|
|
10082
|
+
createdAt?: DatetimeFilter;
|
|
10083
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
10084
|
+
updatedAt?: DatetimeFilter;
|
|
10085
|
+
/** Checks for all expressions in this list. */
|
|
10086
|
+
and?: PartitionFilter[];
|
|
10087
|
+
/** Checks for any expressions in this list. */
|
|
10088
|
+
or?: PartitionFilter[];
|
|
10089
|
+
/** Negates the expression. */
|
|
10090
|
+
not?: PartitionFilter;
|
|
10091
|
+
/** Filter by the object’s `database` relation. */
|
|
10092
|
+
database?: DatabaseFilter;
|
|
10093
|
+
/** Filter by the object’s `table` relation. */
|
|
10094
|
+
table?: TableFilter;
|
|
10095
|
+
}
|
|
10093
10096
|
export interface ApiFilter {
|
|
10094
10097
|
/** Filter by the object’s `id` field. */
|
|
10095
10098
|
id?: UUIDFilter;
|
|
@@ -11397,6 +11400,10 @@ export interface StorageModuleFilter {
|
|
|
11397
11400
|
hasCustomKeys?: BooleanFilter;
|
|
11398
11401
|
/** Filter by the object’s `hasAuditLog` field. */
|
|
11399
11402
|
hasAuditLog?: BooleanFilter;
|
|
11403
|
+
/** Filter by the object’s `hasConfirmUpload` field. */
|
|
11404
|
+
hasConfirmUpload?: BooleanFilter;
|
|
11405
|
+
/** Filter by the object’s `confirmUploadDelay` field. */
|
|
11406
|
+
confirmUploadDelay?: IntervalFilter;
|
|
11400
11407
|
/** Filter by the object’s `fileEventsTableId` field. */
|
|
11401
11408
|
fileEventsTableId?: UUIDFilter;
|
|
11402
11409
|
/** Checks for all expressions in this list. */
|
|
@@ -14154,11 +14161,10 @@ export type ObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' |
|
|
|
14154
14161
|
export type AppLevelRequirementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LEVEL_ASC' | 'LEVEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'REQUIRED_COUNT_ASC' | 'REQUIRED_COUNT_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14155
14162
|
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' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14156
14163
|
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' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14157
|
-
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' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC' | 'TIMESTAMPS_ASC' | 'TIMESTAMPS_DESC' | 'PEOPLESTAMPS_ASC' | 'PEOPLESTAMPS_DESC' | 'PLURAL_NAME_ASC' | 'PLURAL_NAME_DESC' | 'SINGULAR_NAME_ASC' | 'SINGULAR_NAME_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'INHERITS_ID_ASC' | 'INHERITS_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14164
|
+
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' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC' | 'TIMESTAMPS_ASC' | 'TIMESTAMPS_DESC' | 'PEOPLESTAMPS_ASC' | 'PEOPLESTAMPS_DESC' | 'PLURAL_NAME_ASC' | 'PLURAL_NAME_DESC' | 'SINGULAR_NAME_ASC' | 'SINGULAR_NAME_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'PARTITIONED_ASC' | 'PARTITIONED_DESC' | 'PARTITION_STRATEGY_ASC' | 'PARTITION_STRATEGY_DESC' | 'PARTITION_KEY_NAMES_ASC' | 'PARTITION_KEY_NAMES_DESC' | 'PARTITION_KEY_TYPES_ASC' | 'PARTITION_KEY_TYPES_DESC' | 'INHERITS_ID_ASC' | 'INHERITS_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14158
14165
|
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' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'EXPR_ASC' | 'EXPR_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14159
14166
|
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' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'IS_REQUIRED_ASC' | 'IS_REQUIRED_DESC' | 'API_REQUIRED_ASC' | 'API_REQUIRED_DESC' | 'DEFAULT_VALUE_ASC' | 'DEFAULT_VALUE_DESC' | 'DEFAULT_VALUE_AST_ASC' | 'DEFAULT_VALUE_AST_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_ORDER_ASC' | 'FIELD_ORDER_DESC' | 'REGEXP_ASC' | 'REGEXP_DESC' | 'CHK_ASC' | 'CHK_DESC' | 'CHK_EXPR_ASC' | 'CHK_EXPR_DESC' | 'MIN_ASC' | 'MIN_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14160
14167
|
export type SpatialRelationOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'REF_FIELD_ID_ASC' | 'REF_FIELD_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'OPERATOR_ASC' | 'OPERATOR_DESC' | 'PARAM_NAME_ASC' | 'PARAM_NAME_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14161
|
-
export type PartitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'STRATEGY_ASC' | 'STRATEGY_DESC' | 'PARTITION_KEY_ID_ASC' | 'PARTITION_KEY_ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'LOOKAHEAD_ASC' | 'LOOKAHEAD_DESC' | 'NAMING_PATTERN_ASC' | 'NAMING_PATTERN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14162
14168
|
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' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'REF_FIELD_IDS_ASC' | 'REF_FIELD_IDS_DESC' | 'DELETE_ACTION_ASC' | 'DELETE_ACTION_DESC' | 'UPDATE_ACTION_ASC' | 'UPDATE_ACTION_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14163
14169
|
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' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'WEIGHTS_ASC' | 'WEIGHTS_DESC' | 'LANGS_ASC' | 'LANGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14164
14170
|
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' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'INCLUDE_FIELD_IDS_ASC' | 'INCLUDE_FIELD_IDS_DESC' | 'ACCESS_METHOD_ASC' | 'ACCESS_METHOD_DESC' | 'INDEX_PARAMS_ASC' | 'INDEX_PARAMS_DESC' | 'WHERE_CLAUSE_ASC' | 'WHERE_CLAUSE_DESC' | 'IS_UNIQUE_ASC' | 'IS_UNIQUE_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'OP_CLASSES_ASC' | 'OP_CLASSES_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
@@ -14190,6 +14196,7 @@ export type SiteThemeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC
|
|
|
14190
14196
|
export type CorsSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC';
|
|
14191
14197
|
export type TriggerFunctionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'CODE_ASC' | 'CODE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14192
14198
|
export type DatabaseTransferOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TARGET_OWNER_ID_ASC' | 'TARGET_OWNER_ID_DESC' | 'SOURCE_APPROVED_ASC' | 'SOURCE_APPROVED_DESC' | 'TARGET_APPROVED_ASC' | 'TARGET_APPROVED_DESC' | 'SOURCE_APPROVED_AT_ASC' | 'SOURCE_APPROVED_AT_DESC' | 'TARGET_APPROVED_AT_ASC' | 'TARGET_APPROVED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'INITIATED_BY_ASC' | 'INITIATED_BY_DESC' | 'NOTES_ASC' | 'NOTES_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC';
|
|
14199
|
+
export type PartitionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'STRATEGY_ASC' | 'STRATEGY_DESC' | 'PARTITION_KEY_IDS_ASC' | 'PARTITION_KEY_IDS_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'LOOKAHEAD_ASC' | 'LOOKAHEAD_DESC' | 'NAMING_PATTERN_ASC' | 'NAMING_PATTERN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14193
14200
|
export type ApiOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC' | 'ROLE_NAME_ASC' | 'ROLE_NAME_DESC' | 'ANON_ROLE_ASC' | 'ANON_ROLE_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC';
|
|
14194
14201
|
export type SiteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'OG_IMAGE_ASC' | 'OG_IMAGE_DESC' | 'FAVICON_ASC' | 'FAVICON_DESC' | 'APPLE_TOUCH_ICON_ASC' | 'APPLE_TOUCH_ICON_DESC' | 'LOGO_ASC' | 'LOGO_DESC' | 'DBNAME_ASC' | 'DBNAME_DESC';
|
|
14195
14202
|
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_ASC' | 'NAME_DESC' | 'APP_IMAGE_ASC' | 'APP_IMAGE_DESC' | 'APP_STORE_LINK_ASC' | 'APP_STORE_LINK_DESC' | 'APP_STORE_ID_ASC' | 'APP_STORE_ID_DESC' | 'APP_ID_PREFIX_ASC' | 'APP_ID_PREFIX_DESC' | 'PLAY_STORE_LINK_ASC' | 'PLAY_STORE_LINK_DESC';
|
|
@@ -14216,7 +14223,7 @@ export type UsersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DE
|
|
|
14216
14223
|
export type BlueprintOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'TEMPLATE_ID_ASC' | 'TEMPLATE_ID_DESC' | 'DEFINITION_HASH_ASC' | 'DEFINITION_HASH_DESC' | 'TABLE_HASHES_ASC' | 'TABLE_HASHES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14217
14224
|
export type BlueprintTemplateOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'VERSION_ASC' | 'VERSION_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'VISIBILITY_ASC' | 'VISIBILITY_DESC' | 'CATEGORIES_ASC' | 'CATEGORIES_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DEFINITION_SCHEMA_VERSION_ASC' | 'DEFINITION_SCHEMA_VERSION_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'COMPLEXITY_ASC' | 'COMPLEXITY_DESC' | 'COPY_COUNT_ASC' | 'COPY_COUNT_DESC' | 'FORK_COUNT_ASC' | 'FORK_COUNT_DESC' | 'FORKED_FROM_ID_ASC' | 'FORKED_FROM_ID_DESC' | 'DEFINITION_HASH_ASC' | 'DEFINITION_HASH_DESC' | 'TABLE_HASHES_ASC' | 'TABLE_HASHES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14218
14225
|
export type BlueprintConstructionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'BLUEPRINT_ID_ASC' | 'BLUEPRINT_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'ERROR_DETAILS_ASC' | 'ERROR_DETAILS_DESC' | 'TABLE_MAP_ASC' | 'TABLE_MAP_DESC' | 'CONSTRUCTED_DEFINITION_ASC' | 'CONSTRUCTED_DEFINITION_DESC' | 'CONSTRUCTED_AT_ASC' | 'CONSTRUCTED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
14219
|
-
export type StorageModuleOrderBy = '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' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'FILES_TABLE_ID_ASC' | 'FILES_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'FILES_TABLE_NAME_ASC' | 'FILES_TABLE_NAME_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'SKIP_DEFAULT_POLICY_TABLES_ASC' | 'SKIP_DEFAULT_POLICY_TABLES_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ENDPOINT_ASC' | 'ENDPOINT_DESC' | 'PUBLIC_URL_PREFIX_ASC' | 'PUBLIC_URL_PREFIX_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'RESTRICT_READS_ASC' | 'RESTRICT_READS_DESC' | 'HAS_PATH_SHARES_ASC' | 'HAS_PATH_SHARES_DESC' | 'PATH_SHARES_TABLE_ID_ASC' | 'PATH_SHARES_TABLE_ID_DESC' | 'UPLOAD_URL_EXPIRY_SECONDS_ASC' | 'UPLOAD_URL_EXPIRY_SECONDS_DESC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_ASC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_DESC' | 'DEFAULT_MAX_FILE_SIZE_ASC' | 'DEFAULT_MAX_FILE_SIZE_DESC' | 'MAX_FILENAME_LENGTH_ASC' | 'MAX_FILENAME_LENGTH_DESC' | 'CACHE_TTL_SECONDS_ASC' | 'CACHE_TTL_SECONDS_DESC' | 'MAX_BULK_FILES_ASC' | 'MAX_BULK_FILES_DESC' | 'MAX_BULK_TOTAL_SIZE_ASC' | 'MAX_BULK_TOTAL_SIZE_DESC' | 'HAS_VERSIONING_ASC' | 'HAS_VERSIONING_DESC' | 'HAS_CONTENT_HASH_ASC' | 'HAS_CONTENT_HASH_DESC' | 'HAS_CUSTOM_KEYS_ASC' | 'HAS_CUSTOM_KEYS_DESC' | 'HAS_AUDIT_LOG_ASC' | 'HAS_AUDIT_LOG_DESC' | 'FILE_EVENTS_TABLE_ID_ASC' | 'FILE_EVENTS_TABLE_ID_DESC';
|
|
14226
|
+
export type StorageModuleOrderBy = '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' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'FILES_TABLE_ID_ASC' | 'FILES_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'FILES_TABLE_NAME_ASC' | 'FILES_TABLE_NAME_DESC' | 'MEMBERSHIP_TYPE_ASC' | 'MEMBERSHIP_TYPE_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'SKIP_DEFAULT_POLICY_TABLES_ASC' | 'SKIP_DEFAULT_POLICY_TABLES_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ENDPOINT_ASC' | 'ENDPOINT_DESC' | 'PUBLIC_URL_PREFIX_ASC' | 'PUBLIC_URL_PREFIX_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'RESTRICT_READS_ASC' | 'RESTRICT_READS_DESC' | 'HAS_PATH_SHARES_ASC' | 'HAS_PATH_SHARES_DESC' | 'PATH_SHARES_TABLE_ID_ASC' | 'PATH_SHARES_TABLE_ID_DESC' | 'UPLOAD_URL_EXPIRY_SECONDS_ASC' | 'UPLOAD_URL_EXPIRY_SECONDS_DESC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_ASC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_DESC' | 'DEFAULT_MAX_FILE_SIZE_ASC' | 'DEFAULT_MAX_FILE_SIZE_DESC' | 'MAX_FILENAME_LENGTH_ASC' | 'MAX_FILENAME_LENGTH_DESC' | 'CACHE_TTL_SECONDS_ASC' | 'CACHE_TTL_SECONDS_DESC' | 'MAX_BULK_FILES_ASC' | 'MAX_BULK_FILES_DESC' | 'MAX_BULK_TOTAL_SIZE_ASC' | 'MAX_BULK_TOTAL_SIZE_DESC' | 'HAS_VERSIONING_ASC' | 'HAS_VERSIONING_DESC' | 'HAS_CONTENT_HASH_ASC' | 'HAS_CONTENT_HASH_DESC' | 'HAS_CUSTOM_KEYS_ASC' | 'HAS_CUSTOM_KEYS_DESC' | 'HAS_AUDIT_LOG_ASC' | 'HAS_AUDIT_LOG_DESC' | 'HAS_CONFIRM_UPLOAD_ASC' | 'HAS_CONFIRM_UPLOAD_DESC' | 'CONFIRM_UPLOAD_DELAY_ASC' | 'CONFIRM_UPLOAD_DELAY_DESC' | 'FILE_EVENTS_TABLE_ID_ASC' | 'FILE_EVENTS_TABLE_ID_DESC';
|
|
14220
14227
|
export type EntityTypeProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PARENT_ENTITY_ASC' | 'PARENT_ENTITY_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'IS_VISIBLE_ASC' | 'IS_VISIBLE_DESC' | 'HAS_LIMITS_ASC' | 'HAS_LIMITS_DESC' | 'HAS_PROFILES_ASC' | 'HAS_PROFILES_DESC' | 'HAS_LEVELS_ASC' | 'HAS_LEVELS_DESC' | 'HAS_STORAGE_ASC' | 'HAS_STORAGE_DESC' | 'HAS_INVITES_ASC' | 'HAS_INVITES_DESC' | 'STORAGE_CONFIG_ASC' | 'STORAGE_CONFIG_DESC' | 'SKIP_ENTITY_POLICIES_ASC' | 'SKIP_ENTITY_POLICIES_DESC' | 'TABLE_PROVISION_ASC' | 'TABLE_PROVISION_DESC' | 'OUT_MEMBERSHIP_TYPE_ASC' | 'OUT_MEMBERSHIP_TYPE_DESC' | 'OUT_ENTITY_TABLE_ID_ASC' | 'OUT_ENTITY_TABLE_ID_DESC' | 'OUT_ENTITY_TABLE_NAME_ASC' | 'OUT_ENTITY_TABLE_NAME_DESC' | 'OUT_INSTALLED_MODULES_ASC' | 'OUT_INSTALLED_MODULES_DESC' | 'OUT_STORAGE_MODULE_ID_ASC' | 'OUT_STORAGE_MODULE_ID_DESC' | 'OUT_BUCKETS_TABLE_ID_ASC' | 'OUT_BUCKETS_TABLE_ID_DESC' | 'OUT_FILES_TABLE_ID_ASC' | 'OUT_FILES_TABLE_ID_DESC' | 'OUT_PATH_SHARES_TABLE_ID_ASC' | 'OUT_PATH_SHARES_TABLE_ID_DESC' | 'OUT_INVITES_MODULE_ID_ASC' | 'OUT_INVITES_MODULE_ID_DESC';
|
|
14221
14228
|
export type WebauthnCredentialsModuleOrderBy = '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' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
14222
14229
|
export type WebauthnAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'CREDENTIALS_TABLE_ID_ASC' | 'CREDENTIALS_TABLE_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSION_SECRETS_TABLE_ID_ASC' | 'SESSION_SECRETS_TABLE_ID_DESC' | 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'RP_ID_ASC' | 'RP_ID_DESC' | 'RP_NAME_ASC' | 'RP_NAME_DESC' | 'ORIGIN_ALLOWLIST_ASC' | 'ORIGIN_ALLOWLIST_DESC' | 'ATTESTATION_TYPE_ASC' | 'ATTESTATION_TYPE_DESC' | 'REQUIRE_USER_VERIFICATION_ASC' | 'REQUIRE_USER_VERIFICATION_DESC' | 'RESIDENT_KEY_ASC' | 'RESIDENT_KEY_DESC' | 'CHALLENGE_EXPIRY_ASC' | 'CHALLENGE_EXPIRY_DESC';
|
|
@@ -14536,6 +14543,10 @@ export interface CreateTableInput {
|
|
|
14536
14543
|
pluralName?: string;
|
|
14537
14544
|
singularName?: string;
|
|
14538
14545
|
tags?: string[];
|
|
14546
|
+
partitioned?: boolean;
|
|
14547
|
+
partitionStrategy?: string;
|
|
14548
|
+
partitionKeyNames?: string[];
|
|
14549
|
+
partitionKeyTypes?: string[];
|
|
14539
14550
|
inheritsId?: string;
|
|
14540
14551
|
};
|
|
14541
14552
|
}
|
|
@@ -14555,6 +14566,10 @@ export interface TablePatch {
|
|
|
14555
14566
|
pluralName?: string | null;
|
|
14556
14567
|
singularName?: string | null;
|
|
14557
14568
|
tags?: string[] | null;
|
|
14569
|
+
partitioned?: boolean | null;
|
|
14570
|
+
partitionStrategy?: string | null;
|
|
14571
|
+
partitionKeyNames?: string[] | null;
|
|
14572
|
+
partitionKeyTypes?: string[] | null;
|
|
14558
14573
|
inheritsId?: string | null;
|
|
14559
14574
|
}
|
|
14560
14575
|
export interface UpdateTableInput {
|
|
@@ -14702,38 +14717,6 @@ export interface DeleteSpatialRelationInput {
|
|
|
14702
14717
|
clientMutationId?: string;
|
|
14703
14718
|
id: string;
|
|
14704
14719
|
}
|
|
14705
|
-
export interface CreatePartitionInput {
|
|
14706
|
-
clientMutationId?: string;
|
|
14707
|
-
partition: {
|
|
14708
|
-
databaseId: string;
|
|
14709
|
-
tableId: string;
|
|
14710
|
-
strategy: string;
|
|
14711
|
-
partitionKeyId: string;
|
|
14712
|
-
interval?: string;
|
|
14713
|
-
retention?: string;
|
|
14714
|
-
lookahead?: number;
|
|
14715
|
-
namingPattern?: string;
|
|
14716
|
-
};
|
|
14717
|
-
}
|
|
14718
|
-
export interface PartitionPatch {
|
|
14719
|
-
databaseId?: string | null;
|
|
14720
|
-
tableId?: string | null;
|
|
14721
|
-
strategy?: string | null;
|
|
14722
|
-
partitionKeyId?: string | null;
|
|
14723
|
-
interval?: string | null;
|
|
14724
|
-
retention?: string | null;
|
|
14725
|
-
lookahead?: number | null;
|
|
14726
|
-
namingPattern?: string | null;
|
|
14727
|
-
}
|
|
14728
|
-
export interface UpdatePartitionInput {
|
|
14729
|
-
clientMutationId?: string;
|
|
14730
|
-
id: string;
|
|
14731
|
-
partitionPatch: PartitionPatch;
|
|
14732
|
-
}
|
|
14733
|
-
export interface DeletePartitionInput {
|
|
14734
|
-
clientMutationId?: string;
|
|
14735
|
-
id: string;
|
|
14736
|
-
}
|
|
14737
14720
|
export interface CreateForeignKeyConstraintInput {
|
|
14738
14721
|
clientMutationId?: string;
|
|
14739
14722
|
foreignKeyConstraint: {
|
|
@@ -15731,6 +15714,38 @@ export interface DeleteDatabaseTransferInput {
|
|
|
15731
15714
|
clientMutationId?: string;
|
|
15732
15715
|
id: string;
|
|
15733
15716
|
}
|
|
15717
|
+
export interface CreatePartitionInput {
|
|
15718
|
+
clientMutationId?: string;
|
|
15719
|
+
partition: {
|
|
15720
|
+
databaseId: string;
|
|
15721
|
+
tableId: string;
|
|
15722
|
+
strategy: string;
|
|
15723
|
+
partitionKeyIds: string[];
|
|
15724
|
+
interval?: string;
|
|
15725
|
+
retention?: string;
|
|
15726
|
+
lookahead?: number;
|
|
15727
|
+
namingPattern?: string;
|
|
15728
|
+
};
|
|
15729
|
+
}
|
|
15730
|
+
export interface PartitionPatch {
|
|
15731
|
+
databaseId?: string | null;
|
|
15732
|
+
tableId?: string | null;
|
|
15733
|
+
strategy?: string | null;
|
|
15734
|
+
partitionKeyIds?: string[] | null;
|
|
15735
|
+
interval?: string | null;
|
|
15736
|
+
retention?: string | null;
|
|
15737
|
+
lookahead?: number | null;
|
|
15738
|
+
namingPattern?: string | null;
|
|
15739
|
+
}
|
|
15740
|
+
export interface UpdatePartitionInput {
|
|
15741
|
+
clientMutationId?: string;
|
|
15742
|
+
id: string;
|
|
15743
|
+
partitionPatch: PartitionPatch;
|
|
15744
|
+
}
|
|
15745
|
+
export interface DeletePartitionInput {
|
|
15746
|
+
clientMutationId?: string;
|
|
15747
|
+
id: string;
|
|
15748
|
+
}
|
|
15734
15749
|
export interface CreateApiInput {
|
|
15735
15750
|
clientMutationId?: string;
|
|
15736
15751
|
api: {
|
|
@@ -16796,6 +16811,8 @@ export interface CreateStorageModuleInput {
|
|
|
16796
16811
|
hasContentHash?: boolean;
|
|
16797
16812
|
hasCustomKeys?: boolean;
|
|
16798
16813
|
hasAuditLog?: boolean;
|
|
16814
|
+
hasConfirmUpload?: boolean;
|
|
16815
|
+
confirmUploadDelay?: IntervalInput;
|
|
16799
16816
|
fileEventsTableId?: string;
|
|
16800
16817
|
};
|
|
16801
16818
|
}
|
|
@@ -16829,6 +16846,8 @@ export interface StorageModulePatch {
|
|
|
16829
16846
|
hasContentHash?: boolean | null;
|
|
16830
16847
|
hasCustomKeys?: boolean | null;
|
|
16831
16848
|
hasAuditLog?: boolean | null;
|
|
16849
|
+
hasConfirmUpload?: boolean | null;
|
|
16850
|
+
confirmUploadDelay?: IntervalInput | null;
|
|
16832
16851
|
fileEventsTableId?: string | null;
|
|
16833
16852
|
}
|
|
16834
16853
|
export interface UpdateStorageModuleInput {
|
|
@@ -19456,6 +19475,7 @@ export interface SignUpInput {
|
|
|
19456
19475
|
rememberMe?: boolean;
|
|
19457
19476
|
credentialKind?: string;
|
|
19458
19477
|
csrfToken?: string;
|
|
19478
|
+
deviceToken?: string;
|
|
19459
19479
|
}
|
|
19460
19480
|
export interface RequestCrossOriginTokenInput {
|
|
19461
19481
|
clientMutationId?: string;
|
|
@@ -20396,15 +20416,6 @@ export interface FieldToManySpatialRelationFilter {
|
|
|
20396
20416
|
/** Filters to entities where no related entity matches. */
|
|
20397
20417
|
none?: SpatialRelationFilter;
|
|
20398
20418
|
}
|
|
20399
|
-
/** A filter to be used against many `Partition` object types. All fields are combined with a logical ‘and.’ */
|
|
20400
|
-
export interface FieldToManyPartitionFilter {
|
|
20401
|
-
/** Filters to entities where at least one related entity matches. */
|
|
20402
|
-
some?: PartitionFilter;
|
|
20403
|
-
/** Filters to entities where every related entity matches. */
|
|
20404
|
-
every?: PartitionFilter;
|
|
20405
|
-
/** Filters to entities where no related entity matches. */
|
|
20406
|
-
none?: PartitionFilter;
|
|
20407
|
-
}
|
|
20408
20419
|
/** A filter to be used against many `ViewTable` object types. All fields are combined with a logical ‘and.’ */
|
|
20409
20420
|
export interface ViewToManyViewTableFilter {
|
|
20410
20421
|
/** Filters to entities where at least one related entity matches. */
|
|
@@ -21659,6 +21670,14 @@ export interface TableFilter {
|
|
|
21659
21670
|
singularName?: StringFilter;
|
|
21660
21671
|
/** Filter by the object’s `tags` field. */
|
|
21661
21672
|
tags?: StringListFilter;
|
|
21673
|
+
/** Filter by the object’s `partitioned` field. */
|
|
21674
|
+
partitioned?: BooleanFilter;
|
|
21675
|
+
/** Filter by the object’s `partitionStrategy` field. */
|
|
21676
|
+
partitionStrategy?: StringFilter;
|
|
21677
|
+
/** Filter by the object’s `partitionKeyNames` field. */
|
|
21678
|
+
partitionKeyNames?: StringListFilter;
|
|
21679
|
+
/** Filter by the object’s `partitionKeyTypes` field. */
|
|
21680
|
+
partitionKeyTypes?: StringListFilter;
|
|
21662
21681
|
/** Filter by the object’s `inheritsId` field. */
|
|
21663
21682
|
inheritsId?: UUIDFilter;
|
|
21664
21683
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -21893,10 +21912,6 @@ export interface FieldFilter {
|
|
|
21893
21912
|
spatialRelationsByRefFieldId?: FieldToManySpatialRelationFilter;
|
|
21894
21913
|
/** `spatialRelationsByRefFieldId` exist. */
|
|
21895
21914
|
spatialRelationsByRefFieldIdExist?: boolean;
|
|
21896
|
-
/** Filter by the object’s `partitionsByPartitionKeyId` relation. */
|
|
21897
|
-
partitionsByPartitionKeyId?: FieldToManyPartitionFilter;
|
|
21898
|
-
/** `partitionsByPartitionKeyId` exist. */
|
|
21899
|
-
partitionsByPartitionKeyIdExist?: boolean;
|
|
21900
21915
|
}
|
|
21901
21916
|
/** A filter to be used against `ForeignKeyConstraint` object types. All fields are combined with a logical ‘and.’ */
|
|
21902
21917
|
export interface ForeignKeyConstraintFilter {
|
|
@@ -22633,8 +22648,8 @@ export interface PartitionFilter {
|
|
|
22633
22648
|
tableId?: UUIDFilter;
|
|
22634
22649
|
/** Filter by the object’s `strategy` field. */
|
|
22635
22650
|
strategy?: StringFilter;
|
|
22636
|
-
/** Filter by the object’s `
|
|
22637
|
-
|
|
22651
|
+
/** Filter by the object’s `partitionKeyIds` field. */
|
|
22652
|
+
partitionKeyIds?: UUIDListFilter;
|
|
22638
22653
|
/** Filter by the object’s `interval` field. */
|
|
22639
22654
|
interval?: StringFilter;
|
|
22640
22655
|
/** Filter by the object’s `retention` field. */
|
|
@@ -22655,8 +22670,6 @@ export interface PartitionFilter {
|
|
|
22655
22670
|
not?: PartitionFilter;
|
|
22656
22671
|
/** Filter by the object’s `database` relation. */
|
|
22657
22672
|
database?: DatabaseFilter;
|
|
22658
|
-
/** Filter by the object’s `partitionKey` relation. */
|
|
22659
|
-
partitionKey?: FieldFilter;
|
|
22660
22673
|
/** Filter by the object’s `table` relation. */
|
|
22661
22674
|
table?: TableFilter;
|
|
22662
22675
|
}
|
|
@@ -24198,6 +24211,10 @@ export interface StorageModuleFilter {
|
|
|
24198
24211
|
hasCustomKeys?: BooleanFilter;
|
|
24199
24212
|
/** Filter by the object’s `hasAuditLog` field. */
|
|
24200
24213
|
hasAuditLog?: BooleanFilter;
|
|
24214
|
+
/** Filter by the object’s `hasConfirmUpload` field. */
|
|
24215
|
+
hasConfirmUpload?: BooleanFilter;
|
|
24216
|
+
/** Filter by the object’s `confirmUploadDelay` field. */
|
|
24217
|
+
confirmUploadDelay?: IntervalFilter;
|
|
24201
24218
|
/** Filter by the object’s `fileEventsTableId` field. */
|
|
24202
24219
|
fileEventsTableId?: UUIDFilter;
|
|
24203
24220
|
/** Checks for all expressions in this list. */
|
|
@@ -28491,51 +28508,6 @@ export type DeleteSpatialRelationPayloadSelect = {
|
|
|
28491
28508
|
select: SpatialRelationEdgeSelect;
|
|
28492
28509
|
};
|
|
28493
28510
|
};
|
|
28494
|
-
export interface CreatePartitionPayload {
|
|
28495
|
-
clientMutationId?: string | null;
|
|
28496
|
-
/** The `Partition` that was created by this mutation. */
|
|
28497
|
-
partition?: Partition | null;
|
|
28498
|
-
partitionEdge?: PartitionEdge | null;
|
|
28499
|
-
}
|
|
28500
|
-
export type CreatePartitionPayloadSelect = {
|
|
28501
|
-
clientMutationId?: boolean;
|
|
28502
|
-
partition?: {
|
|
28503
|
-
select: PartitionSelect;
|
|
28504
|
-
};
|
|
28505
|
-
partitionEdge?: {
|
|
28506
|
-
select: PartitionEdgeSelect;
|
|
28507
|
-
};
|
|
28508
|
-
};
|
|
28509
|
-
export interface UpdatePartitionPayload {
|
|
28510
|
-
clientMutationId?: string | null;
|
|
28511
|
-
/** The `Partition` that was updated by this mutation. */
|
|
28512
|
-
partition?: Partition | null;
|
|
28513
|
-
partitionEdge?: PartitionEdge | null;
|
|
28514
|
-
}
|
|
28515
|
-
export type UpdatePartitionPayloadSelect = {
|
|
28516
|
-
clientMutationId?: boolean;
|
|
28517
|
-
partition?: {
|
|
28518
|
-
select: PartitionSelect;
|
|
28519
|
-
};
|
|
28520
|
-
partitionEdge?: {
|
|
28521
|
-
select: PartitionEdgeSelect;
|
|
28522
|
-
};
|
|
28523
|
-
};
|
|
28524
|
-
export interface DeletePartitionPayload {
|
|
28525
|
-
clientMutationId?: string | null;
|
|
28526
|
-
/** The `Partition` that was deleted by this mutation. */
|
|
28527
|
-
partition?: Partition | null;
|
|
28528
|
-
partitionEdge?: PartitionEdge | null;
|
|
28529
|
-
}
|
|
28530
|
-
export type DeletePartitionPayloadSelect = {
|
|
28531
|
-
clientMutationId?: boolean;
|
|
28532
|
-
partition?: {
|
|
28533
|
-
select: PartitionSelect;
|
|
28534
|
-
};
|
|
28535
|
-
partitionEdge?: {
|
|
28536
|
-
select: PartitionEdgeSelect;
|
|
28537
|
-
};
|
|
28538
|
-
};
|
|
28539
28511
|
export interface CreateForeignKeyConstraintPayload {
|
|
28540
28512
|
clientMutationId?: string | null;
|
|
28541
28513
|
/** The `ForeignKeyConstraint` that was created by this mutation. */
|
|
@@ -29931,6 +29903,51 @@ export type DeleteDatabaseTransferPayloadSelect = {
|
|
|
29931
29903
|
select: DatabaseTransferEdgeSelect;
|
|
29932
29904
|
};
|
|
29933
29905
|
};
|
|
29906
|
+
export interface CreatePartitionPayload {
|
|
29907
|
+
clientMutationId?: string | null;
|
|
29908
|
+
/** The `Partition` that was created by this mutation. */
|
|
29909
|
+
partition?: Partition | null;
|
|
29910
|
+
partitionEdge?: PartitionEdge | null;
|
|
29911
|
+
}
|
|
29912
|
+
export type CreatePartitionPayloadSelect = {
|
|
29913
|
+
clientMutationId?: boolean;
|
|
29914
|
+
partition?: {
|
|
29915
|
+
select: PartitionSelect;
|
|
29916
|
+
};
|
|
29917
|
+
partitionEdge?: {
|
|
29918
|
+
select: PartitionEdgeSelect;
|
|
29919
|
+
};
|
|
29920
|
+
};
|
|
29921
|
+
export interface UpdatePartitionPayload {
|
|
29922
|
+
clientMutationId?: string | null;
|
|
29923
|
+
/** The `Partition` that was updated by this mutation. */
|
|
29924
|
+
partition?: Partition | null;
|
|
29925
|
+
partitionEdge?: PartitionEdge | null;
|
|
29926
|
+
}
|
|
29927
|
+
export type UpdatePartitionPayloadSelect = {
|
|
29928
|
+
clientMutationId?: boolean;
|
|
29929
|
+
partition?: {
|
|
29930
|
+
select: PartitionSelect;
|
|
29931
|
+
};
|
|
29932
|
+
partitionEdge?: {
|
|
29933
|
+
select: PartitionEdgeSelect;
|
|
29934
|
+
};
|
|
29935
|
+
};
|
|
29936
|
+
export interface DeletePartitionPayload {
|
|
29937
|
+
clientMutationId?: string | null;
|
|
29938
|
+
/** The `Partition` that was deleted by this mutation. */
|
|
29939
|
+
partition?: Partition | null;
|
|
29940
|
+
partitionEdge?: PartitionEdge | null;
|
|
29941
|
+
}
|
|
29942
|
+
export type DeletePartitionPayloadSelect = {
|
|
29943
|
+
clientMutationId?: boolean;
|
|
29944
|
+
partition?: {
|
|
29945
|
+
select: PartitionSelect;
|
|
29946
|
+
};
|
|
29947
|
+
partitionEdge?: {
|
|
29948
|
+
select: PartitionEdgeSelect;
|
|
29949
|
+
};
|
|
29950
|
+
};
|
|
29934
29951
|
export interface CreateApiPayload {
|
|
29935
29952
|
clientMutationId?: string | null;
|
|
29936
29953
|
/** The `Api` that was created by this mutation. */
|
|
@@ -34630,18 +34647,6 @@ export type SpatialRelationEdgeSelect = {
|
|
|
34630
34647
|
select: SpatialRelationSelect;
|
|
34631
34648
|
};
|
|
34632
34649
|
};
|
|
34633
|
-
/** A `Partition` edge in the connection. */
|
|
34634
|
-
export interface PartitionEdge {
|
|
34635
|
-
cursor?: string | null;
|
|
34636
|
-
/** The `Partition` at the end of the edge. */
|
|
34637
|
-
node?: Partition | null;
|
|
34638
|
-
}
|
|
34639
|
-
export type PartitionEdgeSelect = {
|
|
34640
|
-
cursor?: boolean;
|
|
34641
|
-
node?: {
|
|
34642
|
-
select: PartitionSelect;
|
|
34643
|
-
};
|
|
34644
|
-
};
|
|
34645
34650
|
/** A `ForeignKeyConstraint` edge in the connection. */
|
|
34646
34651
|
export interface ForeignKeyConstraintEdge {
|
|
34647
34652
|
cursor?: string | null;
|
|
@@ -35014,6 +35019,18 @@ export type DatabaseTransferEdgeSelect = {
|
|
|
35014
35019
|
select: DatabaseTransferSelect;
|
|
35015
35020
|
};
|
|
35016
35021
|
};
|
|
35022
|
+
/** A `Partition` edge in the connection. */
|
|
35023
|
+
export interface PartitionEdge {
|
|
35024
|
+
cursor?: string | null;
|
|
35025
|
+
/** The `Partition` at the end of the edge. */
|
|
35026
|
+
node?: Partition | null;
|
|
35027
|
+
}
|
|
35028
|
+
export type PartitionEdgeSelect = {
|
|
35029
|
+
cursor?: boolean;
|
|
35030
|
+
node?: {
|
|
35031
|
+
select: PartitionSelect;
|
|
35032
|
+
};
|
|
35033
|
+
};
|
|
35017
35034
|
/** A `Api` edge in the connection. */
|
|
35018
35035
|
export interface ApiEdge {
|
|
35019
35036
|
cursor?: string | null;
|