@constructive-sdk/cli 0.21.9 → 0.22.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/auth/orm/input-types.d.ts +1 -0
- package/esm/auth/orm/input-types.d.ts +1 -0
- package/esm/public/cli/commands/partition.js +12 -12
- package/esm/public/cli/commands/table.js +88 -0
- package/esm/public/cli/commands.js +3 -3
- package/esm/public/cli/executor.d.ts +1 -1
- 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 +197 -196
- 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/cli/commands/partition.js +12 -12
- package/public/cli/commands/table.js +88 -0
- package/public/cli/commands.js +3 -3
- package/public/cli/executor.d.ts +1 -1
- package/public/orm/index.d.ts +2 -2
- package/public/orm/index.js +2 -2
- package/public/orm/input-types.d.ts +197 -196
- 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 */
|
|
@@ -3051,7 +3055,6 @@ export interface FieldRelations {
|
|
|
3051
3055
|
table?: Table | null;
|
|
3052
3056
|
spatialRelations?: ConnectionResult<SpatialRelation>;
|
|
3053
3057
|
spatialRelationsByRefFieldId?: ConnectionResult<SpatialRelation>;
|
|
3054
|
-
partitionsByPartitionKeyId?: ConnectionResult<Partition>;
|
|
3055
3058
|
}
|
|
3056
3059
|
export interface SpatialRelationRelations {
|
|
3057
3060
|
database?: Database | null;
|
|
@@ -3060,11 +3063,6 @@ export interface SpatialRelationRelations {
|
|
|
3060
3063
|
refTable?: Table | null;
|
|
3061
3064
|
table?: Table | null;
|
|
3062
3065
|
}
|
|
3063
|
-
export interface PartitionRelations {
|
|
3064
|
-
database?: Database | null;
|
|
3065
|
-
partitionKey?: Field | null;
|
|
3066
|
-
table?: Table | null;
|
|
3067
|
-
}
|
|
3068
3066
|
export interface ForeignKeyConstraintRelations {
|
|
3069
3067
|
database?: Database | null;
|
|
3070
3068
|
refTable?: Table | null;
|
|
@@ -3208,6 +3206,10 @@ export interface TriggerFunctionRelations {
|
|
|
3208
3206
|
export interface DatabaseTransferRelations {
|
|
3209
3207
|
database?: Database | null;
|
|
3210
3208
|
}
|
|
3209
|
+
export interface PartitionRelations {
|
|
3210
|
+
database?: Database | null;
|
|
3211
|
+
table?: Table | null;
|
|
3212
|
+
}
|
|
3211
3213
|
export interface ApiRelations {
|
|
3212
3214
|
database?: Database | null;
|
|
3213
3215
|
apiSetting?: ApiSetting | null;
|
|
@@ -3825,7 +3827,6 @@ export type TableWithRelations = Table & TableRelations;
|
|
|
3825
3827
|
export type CheckConstraintWithRelations = CheckConstraint & CheckConstraintRelations;
|
|
3826
3828
|
export type FieldWithRelations = Field & FieldRelations;
|
|
3827
3829
|
export type SpatialRelationWithRelations = SpatialRelation & SpatialRelationRelations;
|
|
3828
|
-
export type PartitionWithRelations = Partition & PartitionRelations;
|
|
3829
3830
|
export type ForeignKeyConstraintWithRelations = ForeignKeyConstraint & ForeignKeyConstraintRelations;
|
|
3830
3831
|
export type FullTextSearchWithRelations = FullTextSearch & FullTextSearchRelations;
|
|
3831
3832
|
export type IndexWithRelations = Index & IndexRelations;
|
|
@@ -3857,6 +3858,7 @@ export type SiteThemeWithRelations = SiteTheme & SiteThemeRelations;
|
|
|
3857
3858
|
export type CorsSettingWithRelations = CorsSetting & CorsSettingRelations;
|
|
3858
3859
|
export type TriggerFunctionWithRelations = TriggerFunction & TriggerFunctionRelations;
|
|
3859
3860
|
export type DatabaseTransferWithRelations = DatabaseTransfer & DatabaseTransferRelations;
|
|
3861
|
+
export type PartitionWithRelations = Partition & PartitionRelations;
|
|
3860
3862
|
export type ApiWithRelations = Api & ApiRelations;
|
|
3861
3863
|
export type SiteWithRelations = Site & SiteRelations;
|
|
3862
3864
|
export type AppWithRelations = App & AppRelations;
|
|
@@ -4569,6 +4571,10 @@ export type TableSelect = {
|
|
|
4569
4571
|
pluralName?: boolean;
|
|
4570
4572
|
singularName?: boolean;
|
|
4571
4573
|
tags?: boolean;
|
|
4574
|
+
partitioned?: boolean;
|
|
4575
|
+
partitionStrategy?: boolean;
|
|
4576
|
+
partitionKeyNames?: boolean;
|
|
4577
|
+
partitionKeyTypes?: boolean;
|
|
4572
4578
|
inheritsId?: boolean;
|
|
4573
4579
|
createdAt?: boolean;
|
|
4574
4580
|
updatedAt?: boolean;
|
|
@@ -4800,12 +4806,6 @@ export type FieldSelect = {
|
|
|
4800
4806
|
filter?: SpatialRelationFilter;
|
|
4801
4807
|
orderBy?: SpatialRelationOrderBy[];
|
|
4802
4808
|
};
|
|
4803
|
-
partitionsByPartitionKeyId?: {
|
|
4804
|
-
select: PartitionSelect;
|
|
4805
|
-
first?: number;
|
|
4806
|
-
filter?: PartitionFilter;
|
|
4807
|
-
orderBy?: PartitionOrderBy[];
|
|
4808
|
-
};
|
|
4809
4809
|
};
|
|
4810
4810
|
export type SpatialRelationSelect = {
|
|
4811
4811
|
id?: boolean;
|
|
@@ -4839,28 +4839,6 @@ export type SpatialRelationSelect = {
|
|
|
4839
4839
|
select: TableSelect;
|
|
4840
4840
|
};
|
|
4841
4841
|
};
|
|
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
4842
|
export type ForeignKeyConstraintSelect = {
|
|
4865
4843
|
id?: boolean;
|
|
4866
4844
|
databaseId?: boolean;
|
|
@@ -5480,6 +5458,25 @@ export type DatabaseTransferSelect = {
|
|
|
5480
5458
|
select: DatabaseSelect;
|
|
5481
5459
|
};
|
|
5482
5460
|
};
|
|
5461
|
+
export type PartitionSelect = {
|
|
5462
|
+
id?: boolean;
|
|
5463
|
+
databaseId?: boolean;
|
|
5464
|
+
tableId?: boolean;
|
|
5465
|
+
strategy?: boolean;
|
|
5466
|
+
partitionKeyIds?: boolean;
|
|
5467
|
+
interval?: boolean;
|
|
5468
|
+
retention?: boolean;
|
|
5469
|
+
lookahead?: boolean;
|
|
5470
|
+
namingPattern?: boolean;
|
|
5471
|
+
createdAt?: boolean;
|
|
5472
|
+
updatedAt?: boolean;
|
|
5473
|
+
database?: {
|
|
5474
|
+
select: DatabaseSelect;
|
|
5475
|
+
};
|
|
5476
|
+
table?: {
|
|
5477
|
+
select: TableSelect;
|
|
5478
|
+
};
|
|
5479
|
+
};
|
|
5483
5480
|
export type ApiSelect = {
|
|
5484
5481
|
id?: boolean;
|
|
5485
5482
|
databaseId?: boolean;
|
|
@@ -8733,6 +8730,14 @@ export interface TableFilter {
|
|
|
8733
8730
|
singularName?: StringFilter;
|
|
8734
8731
|
/** Filter by the object’s `tags` field. */
|
|
8735
8732
|
tags?: StringListFilter;
|
|
8733
|
+
/** Filter by the object’s `partitioned` field. */
|
|
8734
|
+
partitioned?: BooleanFilter;
|
|
8735
|
+
/** Filter by the object’s `partitionStrategy` field. */
|
|
8736
|
+
partitionStrategy?: StringFilter;
|
|
8737
|
+
/** Filter by the object’s `partitionKeyNames` field. */
|
|
8738
|
+
partitionKeyNames?: StringListFilter;
|
|
8739
|
+
/** Filter by the object’s `partitionKeyTypes` field. */
|
|
8740
|
+
partitionKeyTypes?: StringListFilter;
|
|
8736
8741
|
/** Filter by the object’s `inheritsId` field. */
|
|
8737
8742
|
inheritsId?: UUIDFilter;
|
|
8738
8743
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -8965,10 +8970,6 @@ export interface FieldFilter {
|
|
|
8965
8970
|
spatialRelationsByRefFieldId?: FieldToManySpatialRelationFilter;
|
|
8966
8971
|
/** `spatialRelationsByRefFieldId` exist. */
|
|
8967
8972
|
spatialRelationsByRefFieldIdExist?: boolean;
|
|
8968
|
-
/** Filter by the object’s `partitionsByPartitionKeyId` relation. */
|
|
8969
|
-
partitionsByPartitionKeyId?: FieldToManyPartitionFilter;
|
|
8970
|
-
/** `partitionsByPartitionKeyId` exist. */
|
|
8971
|
-
partitionsByPartitionKeyIdExist?: boolean;
|
|
8972
8973
|
}
|
|
8973
8974
|
export interface SpatialRelationFilter {
|
|
8974
8975
|
/** Filter by the object’s `id` field. */
|
|
@@ -9018,42 +9019,6 @@ export interface SpatialRelationFilter {
|
|
|
9018
9019
|
/** Filter by the object’s `table` relation. */
|
|
9019
9020
|
table?: TableFilter;
|
|
9020
9021
|
}
|
|
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
9022
|
export interface ForeignKeyConstraintFilter {
|
|
9058
9023
|
/** Filter by the object’s `id` field. */
|
|
9059
9024
|
id?: UUIDFilter;
|
|
@@ -10090,6 +10055,40 @@ export interface DatabaseTransferFilter {
|
|
|
10090
10055
|
/** Filter by the object’s `database` relation. */
|
|
10091
10056
|
database?: DatabaseFilter;
|
|
10092
10057
|
}
|
|
10058
|
+
export interface PartitionFilter {
|
|
10059
|
+
/** Filter by the object’s `id` field. */
|
|
10060
|
+
id?: UUIDFilter;
|
|
10061
|
+
/** Filter by the object’s `databaseId` field. */
|
|
10062
|
+
databaseId?: UUIDFilter;
|
|
10063
|
+
/** Filter by the object’s `tableId` field. */
|
|
10064
|
+
tableId?: UUIDFilter;
|
|
10065
|
+
/** Filter by the object’s `strategy` field. */
|
|
10066
|
+
strategy?: StringFilter;
|
|
10067
|
+
/** Filter by the object’s `partitionKeyIds` field. */
|
|
10068
|
+
partitionKeyIds?: UUIDListFilter;
|
|
10069
|
+
/** Filter by the object’s `interval` field. */
|
|
10070
|
+
interval?: StringFilter;
|
|
10071
|
+
/** Filter by the object’s `retention` field. */
|
|
10072
|
+
retention?: StringFilter;
|
|
10073
|
+
/** Filter by the object’s `lookahead` field. */
|
|
10074
|
+
lookahead?: IntFilter;
|
|
10075
|
+
/** Filter by the object’s `namingPattern` field. */
|
|
10076
|
+
namingPattern?: StringFilter;
|
|
10077
|
+
/** Filter by the object’s `createdAt` field. */
|
|
10078
|
+
createdAt?: DatetimeFilter;
|
|
10079
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
10080
|
+
updatedAt?: DatetimeFilter;
|
|
10081
|
+
/** Checks for all expressions in this list. */
|
|
10082
|
+
and?: PartitionFilter[];
|
|
10083
|
+
/** Checks for any expressions in this list. */
|
|
10084
|
+
or?: PartitionFilter[];
|
|
10085
|
+
/** Negates the expression. */
|
|
10086
|
+
not?: PartitionFilter;
|
|
10087
|
+
/** Filter by the object’s `database` relation. */
|
|
10088
|
+
database?: DatabaseFilter;
|
|
10089
|
+
/** Filter by the object’s `table` relation. */
|
|
10090
|
+
table?: TableFilter;
|
|
10091
|
+
}
|
|
10093
10092
|
export interface ApiFilter {
|
|
10094
10093
|
/** Filter by the object’s `id` field. */
|
|
10095
10094
|
id?: UUIDFilter;
|
|
@@ -14154,11 +14153,10 @@ export type ObjectOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' |
|
|
|
14154
14153
|
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
14154
|
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
14155
|
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';
|
|
14156
|
+
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
14157
|
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
14158
|
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
14159
|
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
14160
|
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
14161
|
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
14162
|
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 +14188,7 @@ export type SiteThemeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC
|
|
|
14190
14188
|
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
14189
|
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
14190
|
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';
|
|
14191
|
+
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
14192
|
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
14193
|
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
14194
|
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';
|
|
@@ -14536,6 +14535,10 @@ export interface CreateTableInput {
|
|
|
14536
14535
|
pluralName?: string;
|
|
14537
14536
|
singularName?: string;
|
|
14538
14537
|
tags?: string[];
|
|
14538
|
+
partitioned?: boolean;
|
|
14539
|
+
partitionStrategy?: string;
|
|
14540
|
+
partitionKeyNames?: string[];
|
|
14541
|
+
partitionKeyTypes?: string[];
|
|
14539
14542
|
inheritsId?: string;
|
|
14540
14543
|
};
|
|
14541
14544
|
}
|
|
@@ -14555,6 +14558,10 @@ export interface TablePatch {
|
|
|
14555
14558
|
pluralName?: string | null;
|
|
14556
14559
|
singularName?: string | null;
|
|
14557
14560
|
tags?: string[] | null;
|
|
14561
|
+
partitioned?: boolean | null;
|
|
14562
|
+
partitionStrategy?: string | null;
|
|
14563
|
+
partitionKeyNames?: string[] | null;
|
|
14564
|
+
partitionKeyTypes?: string[] | null;
|
|
14558
14565
|
inheritsId?: string | null;
|
|
14559
14566
|
}
|
|
14560
14567
|
export interface UpdateTableInput {
|
|
@@ -14702,38 +14709,6 @@ export interface DeleteSpatialRelationInput {
|
|
|
14702
14709
|
clientMutationId?: string;
|
|
14703
14710
|
id: string;
|
|
14704
14711
|
}
|
|
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
14712
|
export interface CreateForeignKeyConstraintInput {
|
|
14738
14713
|
clientMutationId?: string;
|
|
14739
14714
|
foreignKeyConstraint: {
|
|
@@ -15731,6 +15706,38 @@ export interface DeleteDatabaseTransferInput {
|
|
|
15731
15706
|
clientMutationId?: string;
|
|
15732
15707
|
id: string;
|
|
15733
15708
|
}
|
|
15709
|
+
export interface CreatePartitionInput {
|
|
15710
|
+
clientMutationId?: string;
|
|
15711
|
+
partition: {
|
|
15712
|
+
databaseId: string;
|
|
15713
|
+
tableId: string;
|
|
15714
|
+
strategy: string;
|
|
15715
|
+
partitionKeyIds: string[];
|
|
15716
|
+
interval?: string;
|
|
15717
|
+
retention?: string;
|
|
15718
|
+
lookahead?: number;
|
|
15719
|
+
namingPattern?: string;
|
|
15720
|
+
};
|
|
15721
|
+
}
|
|
15722
|
+
export interface PartitionPatch {
|
|
15723
|
+
databaseId?: string | null;
|
|
15724
|
+
tableId?: string | null;
|
|
15725
|
+
strategy?: string | null;
|
|
15726
|
+
partitionKeyIds?: string[] | null;
|
|
15727
|
+
interval?: string | null;
|
|
15728
|
+
retention?: string | null;
|
|
15729
|
+
lookahead?: number | null;
|
|
15730
|
+
namingPattern?: string | null;
|
|
15731
|
+
}
|
|
15732
|
+
export interface UpdatePartitionInput {
|
|
15733
|
+
clientMutationId?: string;
|
|
15734
|
+
id: string;
|
|
15735
|
+
partitionPatch: PartitionPatch;
|
|
15736
|
+
}
|
|
15737
|
+
export interface DeletePartitionInput {
|
|
15738
|
+
clientMutationId?: string;
|
|
15739
|
+
id: string;
|
|
15740
|
+
}
|
|
15734
15741
|
export interface CreateApiInput {
|
|
15735
15742
|
clientMutationId?: string;
|
|
15736
15743
|
api: {
|
|
@@ -19456,6 +19463,7 @@ export interface SignUpInput {
|
|
|
19456
19463
|
rememberMe?: boolean;
|
|
19457
19464
|
credentialKind?: string;
|
|
19458
19465
|
csrfToken?: string;
|
|
19466
|
+
deviceToken?: string;
|
|
19459
19467
|
}
|
|
19460
19468
|
export interface RequestCrossOriginTokenInput {
|
|
19461
19469
|
clientMutationId?: string;
|
|
@@ -20396,15 +20404,6 @@ export interface FieldToManySpatialRelationFilter {
|
|
|
20396
20404
|
/** Filters to entities where no related entity matches. */
|
|
20397
20405
|
none?: SpatialRelationFilter;
|
|
20398
20406
|
}
|
|
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
20407
|
/** A filter to be used against many `ViewTable` object types. All fields are combined with a logical ‘and.’ */
|
|
20409
20408
|
export interface ViewToManyViewTableFilter {
|
|
20410
20409
|
/** Filters to entities where at least one related entity matches. */
|
|
@@ -21659,6 +21658,14 @@ export interface TableFilter {
|
|
|
21659
21658
|
singularName?: StringFilter;
|
|
21660
21659
|
/** Filter by the object’s `tags` field. */
|
|
21661
21660
|
tags?: StringListFilter;
|
|
21661
|
+
/** Filter by the object’s `partitioned` field. */
|
|
21662
|
+
partitioned?: BooleanFilter;
|
|
21663
|
+
/** Filter by the object’s `partitionStrategy` field. */
|
|
21664
|
+
partitionStrategy?: StringFilter;
|
|
21665
|
+
/** Filter by the object’s `partitionKeyNames` field. */
|
|
21666
|
+
partitionKeyNames?: StringListFilter;
|
|
21667
|
+
/** Filter by the object’s `partitionKeyTypes` field. */
|
|
21668
|
+
partitionKeyTypes?: StringListFilter;
|
|
21662
21669
|
/** Filter by the object’s `inheritsId` field. */
|
|
21663
21670
|
inheritsId?: UUIDFilter;
|
|
21664
21671
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -21893,10 +21900,6 @@ export interface FieldFilter {
|
|
|
21893
21900
|
spatialRelationsByRefFieldId?: FieldToManySpatialRelationFilter;
|
|
21894
21901
|
/** `spatialRelationsByRefFieldId` exist. */
|
|
21895
21902
|
spatialRelationsByRefFieldIdExist?: boolean;
|
|
21896
|
-
/** Filter by the object’s `partitionsByPartitionKeyId` relation. */
|
|
21897
|
-
partitionsByPartitionKeyId?: FieldToManyPartitionFilter;
|
|
21898
|
-
/** `partitionsByPartitionKeyId` exist. */
|
|
21899
|
-
partitionsByPartitionKeyIdExist?: boolean;
|
|
21900
21903
|
}
|
|
21901
21904
|
/** A filter to be used against `ForeignKeyConstraint` object types. All fields are combined with a logical ‘and.’ */
|
|
21902
21905
|
export interface ForeignKeyConstraintFilter {
|
|
@@ -22633,8 +22636,8 @@ export interface PartitionFilter {
|
|
|
22633
22636
|
tableId?: UUIDFilter;
|
|
22634
22637
|
/** Filter by the object’s `strategy` field. */
|
|
22635
22638
|
strategy?: StringFilter;
|
|
22636
|
-
/** Filter by the object’s `
|
|
22637
|
-
|
|
22639
|
+
/** Filter by the object’s `partitionKeyIds` field. */
|
|
22640
|
+
partitionKeyIds?: UUIDListFilter;
|
|
22638
22641
|
/** Filter by the object’s `interval` field. */
|
|
22639
22642
|
interval?: StringFilter;
|
|
22640
22643
|
/** Filter by the object’s `retention` field. */
|
|
@@ -22655,8 +22658,6 @@ export interface PartitionFilter {
|
|
|
22655
22658
|
not?: PartitionFilter;
|
|
22656
22659
|
/** Filter by the object’s `database` relation. */
|
|
22657
22660
|
database?: DatabaseFilter;
|
|
22658
|
-
/** Filter by the object’s `partitionKey` relation. */
|
|
22659
|
-
partitionKey?: FieldFilter;
|
|
22660
22661
|
/** Filter by the object’s `table` relation. */
|
|
22661
22662
|
table?: TableFilter;
|
|
22662
22663
|
}
|
|
@@ -28491,51 +28492,6 @@ export type DeleteSpatialRelationPayloadSelect = {
|
|
|
28491
28492
|
select: SpatialRelationEdgeSelect;
|
|
28492
28493
|
};
|
|
28493
28494
|
};
|
|
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
28495
|
export interface CreateForeignKeyConstraintPayload {
|
|
28540
28496
|
clientMutationId?: string | null;
|
|
28541
28497
|
/** The `ForeignKeyConstraint` that was created by this mutation. */
|
|
@@ -29931,6 +29887,51 @@ export type DeleteDatabaseTransferPayloadSelect = {
|
|
|
29931
29887
|
select: DatabaseTransferEdgeSelect;
|
|
29932
29888
|
};
|
|
29933
29889
|
};
|
|
29890
|
+
export interface CreatePartitionPayload {
|
|
29891
|
+
clientMutationId?: string | null;
|
|
29892
|
+
/** The `Partition` that was created by this mutation. */
|
|
29893
|
+
partition?: Partition | null;
|
|
29894
|
+
partitionEdge?: PartitionEdge | null;
|
|
29895
|
+
}
|
|
29896
|
+
export type CreatePartitionPayloadSelect = {
|
|
29897
|
+
clientMutationId?: boolean;
|
|
29898
|
+
partition?: {
|
|
29899
|
+
select: PartitionSelect;
|
|
29900
|
+
};
|
|
29901
|
+
partitionEdge?: {
|
|
29902
|
+
select: PartitionEdgeSelect;
|
|
29903
|
+
};
|
|
29904
|
+
};
|
|
29905
|
+
export interface UpdatePartitionPayload {
|
|
29906
|
+
clientMutationId?: string | null;
|
|
29907
|
+
/** The `Partition` that was updated by this mutation. */
|
|
29908
|
+
partition?: Partition | null;
|
|
29909
|
+
partitionEdge?: PartitionEdge | null;
|
|
29910
|
+
}
|
|
29911
|
+
export type UpdatePartitionPayloadSelect = {
|
|
29912
|
+
clientMutationId?: boolean;
|
|
29913
|
+
partition?: {
|
|
29914
|
+
select: PartitionSelect;
|
|
29915
|
+
};
|
|
29916
|
+
partitionEdge?: {
|
|
29917
|
+
select: PartitionEdgeSelect;
|
|
29918
|
+
};
|
|
29919
|
+
};
|
|
29920
|
+
export interface DeletePartitionPayload {
|
|
29921
|
+
clientMutationId?: string | null;
|
|
29922
|
+
/** The `Partition` that was deleted by this mutation. */
|
|
29923
|
+
partition?: Partition | null;
|
|
29924
|
+
partitionEdge?: PartitionEdge | null;
|
|
29925
|
+
}
|
|
29926
|
+
export type DeletePartitionPayloadSelect = {
|
|
29927
|
+
clientMutationId?: boolean;
|
|
29928
|
+
partition?: {
|
|
29929
|
+
select: PartitionSelect;
|
|
29930
|
+
};
|
|
29931
|
+
partitionEdge?: {
|
|
29932
|
+
select: PartitionEdgeSelect;
|
|
29933
|
+
};
|
|
29934
|
+
};
|
|
29934
29935
|
export interface CreateApiPayload {
|
|
29935
29936
|
clientMutationId?: string | null;
|
|
29936
29937
|
/** The `Api` that was created by this mutation. */
|
|
@@ -34630,18 +34631,6 @@ export type SpatialRelationEdgeSelect = {
|
|
|
34630
34631
|
select: SpatialRelationSelect;
|
|
34631
34632
|
};
|
|
34632
34633
|
};
|
|
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
34634
|
/** A `ForeignKeyConstraint` edge in the connection. */
|
|
34646
34635
|
export interface ForeignKeyConstraintEdge {
|
|
34647
34636
|
cursor?: string | null;
|
|
@@ -35014,6 +35003,18 @@ export type DatabaseTransferEdgeSelect = {
|
|
|
35014
35003
|
select: DatabaseTransferSelect;
|
|
35015
35004
|
};
|
|
35016
35005
|
};
|
|
35006
|
+
/** A `Partition` edge in the connection. */
|
|
35007
|
+
export interface PartitionEdge {
|
|
35008
|
+
cursor?: string | null;
|
|
35009
|
+
/** The `Partition` at the end of the edge. */
|
|
35010
|
+
node?: Partition | null;
|
|
35011
|
+
}
|
|
35012
|
+
export type PartitionEdgeSelect = {
|
|
35013
|
+
cursor?: boolean;
|
|
35014
|
+
node?: {
|
|
35015
|
+
select: PartitionSelect;
|
|
35016
|
+
};
|
|
35017
|
+
};
|
|
35017
35018
|
/** A `Api` edge in the connection. */
|
|
35018
35019
|
export interface ApiEdge {
|
|
35019
35020
|
cursor?: string | null;
|
|
@@ -16,7 +16,6 @@ export { TableModel } from './table';
|
|
|
16
16
|
export { CheckConstraintModel } from './checkConstraint';
|
|
17
17
|
export { FieldModel } from './field';
|
|
18
18
|
export { SpatialRelationModel } from './spatialRelation';
|
|
19
|
-
export { PartitionModel } from './partition';
|
|
20
19
|
export { ForeignKeyConstraintModel } from './foreignKeyConstraint';
|
|
21
20
|
export { FullTextSearchModel } from './fullTextSearch';
|
|
22
21
|
export { IndexModel } from './indexModel';
|
|
@@ -48,6 +47,7 @@ export { SiteThemeModel } from './siteTheme';
|
|
|
48
47
|
export { CorsSettingModel } from './corsSetting';
|
|
49
48
|
export { TriggerFunctionModel } from './triggerFunction';
|
|
50
49
|
export { DatabaseTransferModel } from './databaseTransfer';
|
|
50
|
+
export { PartitionModel } from './partition';
|
|
51
51
|
export { ApiModel } from './api';
|
|
52
52
|
export { SiteModel } from './site';
|
|
53
53
|
export { AppModel } from './app';
|