@constructive-io/sdk 0.0.4 → 0.1.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/admin/orm/input-types.d.ts +152 -0
- package/admin/orm/query/index.d.ts +18 -0
- package/auth/orm/input-types.d.ts +50 -0
- package/esm/admin/orm/input-types.d.ts +152 -0
- package/esm/admin/orm/query/index.d.ts +18 -0
- package/esm/auth/orm/input-types.d.ts +50 -0
- package/esm/objects/orm/input-types.d.ts +42 -0
- package/esm/objects/orm/query/index.d.ts +12 -0
- package/esm/public/orm/input-types.d.ts +548 -0
- package/esm/public/orm/mutation/index.d.ts +19 -0
- package/esm/public/orm/query/index.d.ts +30 -0
- package/objects/orm/input-types.d.ts +42 -0
- package/objects/orm/query/index.d.ts +12 -0
- package/package.json +3 -3
- package/public/orm/input-types.d.ts +548 -0
- package/public/orm/mutation/index.d.ts +19 -0
- package/public/orm/query/index.d.ts +30 -0
|
@@ -257,6 +257,7 @@ export interface Object {
|
|
|
257
257
|
frzn?: boolean | null;
|
|
258
258
|
createdAt?: string | null;
|
|
259
259
|
}
|
|
260
|
+
/** Requirements to achieve a level */
|
|
260
261
|
export interface AppLevelRequirement {
|
|
261
262
|
id: string;
|
|
262
263
|
name?: string | null;
|
|
@@ -509,6 +510,7 @@ export interface View {
|
|
|
509
510
|
scope?: number | null;
|
|
510
511
|
tags?: string | null;
|
|
511
512
|
}
|
|
513
|
+
/** Junction table linking views to their joined tables for referential integrity */
|
|
512
514
|
export interface ViewTable {
|
|
513
515
|
id: string;
|
|
514
516
|
viewId?: string | null;
|
|
@@ -523,12 +525,15 @@ export interface ViewGrant {
|
|
|
523
525
|
privilege?: string | null;
|
|
524
526
|
withGrantOption?: boolean | null;
|
|
525
527
|
}
|
|
528
|
+
/** DO INSTEAD rules for views (e.g., read-only enforcement) */
|
|
526
529
|
export interface ViewRule {
|
|
527
530
|
id: string;
|
|
528
531
|
databaseId?: string | null;
|
|
529
532
|
viewId?: string | null;
|
|
530
533
|
name?: string | null;
|
|
534
|
+
/** INSERT, UPDATE, or DELETE */
|
|
531
535
|
event?: string | null;
|
|
536
|
+
/** NOTHING (for read-only) or custom action */
|
|
532
537
|
action?: string | null;
|
|
533
538
|
}
|
|
534
539
|
export interface TableModule {
|
|
@@ -968,17 +973,27 @@ export interface UuidModule {
|
|
|
968
973
|
uuidFunction?: string | null;
|
|
969
974
|
uuidSeed?: string | null;
|
|
970
975
|
}
|
|
976
|
+
/** Tracks database provisioning requests and their status. The BEFORE INSERT trigger creates the database and sets database_id before RLS policies are evaluated. */
|
|
971
977
|
export interface DatabaseProvisionModule {
|
|
972
978
|
id: string;
|
|
979
|
+
/** The name for the new database */
|
|
973
980
|
databaseName?: string | null;
|
|
981
|
+
/** UUID of the user who owns this database */
|
|
974
982
|
ownerId?: string | null;
|
|
983
|
+
/** Subdomain prefix for the database. If null, auto-generated using unique_names + random chars */
|
|
975
984
|
subdomain?: string | null;
|
|
985
|
+
/** Base domain for the database (e.g., example.com) */
|
|
976
986
|
domain?: string | null;
|
|
987
|
+
/** Array of module IDs to install, or ["all"] for all modules */
|
|
977
988
|
modules?: string | null;
|
|
989
|
+
/** Additional configuration options for provisioning */
|
|
978
990
|
options?: Record<string, unknown> | null;
|
|
991
|
+
/** When true, copies the owner user and password hash from source database to the newly provisioned database */
|
|
979
992
|
bootstrapUser?: boolean | null;
|
|
993
|
+
/** Current status: pending, in_progress, completed, or failed */
|
|
980
994
|
status?: string | null;
|
|
981
995
|
errorMessage?: string | null;
|
|
996
|
+
/** The ID of the provisioned database (set by trigger before RLS check) */
|
|
982
997
|
databaseId?: string | null;
|
|
983
998
|
createdAt?: string | null;
|
|
984
999
|
updatedAt?: string | null;
|
|
@@ -1075,6 +1090,7 @@ export interface OrgLimit {
|
|
|
1075
1090
|
max?: number | null;
|
|
1076
1091
|
entityId?: string | null;
|
|
1077
1092
|
}
|
|
1093
|
+
/** The user achieving a requirement for a level. Log table that has every single step ever taken. */
|
|
1078
1094
|
export interface AppStep {
|
|
1079
1095
|
id: string;
|
|
1080
1096
|
actorId?: string | null;
|
|
@@ -1083,6 +1099,7 @@ export interface AppStep {
|
|
|
1083
1099
|
createdAt?: string | null;
|
|
1084
1100
|
updatedAt?: string | null;
|
|
1085
1101
|
}
|
|
1102
|
+
/** This table represents the users progress for particular level requirements, tallying the total count. This table is updated via triggers and should not be updated maually. */
|
|
1086
1103
|
export interface AppAchievement {
|
|
1087
1104
|
id: string;
|
|
1088
1105
|
actorId?: string | null;
|
|
@@ -1142,17 +1159,25 @@ export interface AppPermissionDefault {
|
|
|
1142
1159
|
id: string;
|
|
1143
1160
|
permissions?: string | null;
|
|
1144
1161
|
}
|
|
1162
|
+
/** A ref is a data structure for pointing to a commit. */
|
|
1145
1163
|
export interface Ref {
|
|
1164
|
+
/** The primary unique identifier for the ref. */
|
|
1146
1165
|
id: string;
|
|
1166
|
+
/** The name of the ref or branch */
|
|
1147
1167
|
name?: string | null;
|
|
1148
1168
|
databaseId?: string | null;
|
|
1149
1169
|
storeId?: string | null;
|
|
1150
1170
|
commitId?: string | null;
|
|
1151
1171
|
}
|
|
1172
|
+
/** A store represents an isolated object repository within a database. */
|
|
1152
1173
|
export interface Store {
|
|
1174
|
+
/** The primary unique identifier for the store. */
|
|
1153
1175
|
id: string;
|
|
1176
|
+
/** The name of the store (e.g., metaschema, migrations). */
|
|
1154
1177
|
name?: string | null;
|
|
1178
|
+
/** The database this store belongs to. */
|
|
1155
1179
|
databaseId?: string | null;
|
|
1180
|
+
/** The current head tree_id for this store. */
|
|
1156
1181
|
hash?: string | null;
|
|
1157
1182
|
createdAt?: string | null;
|
|
1158
1183
|
}
|
|
@@ -1193,8 +1218,11 @@ export interface MembershipType {
|
|
|
1193
1218
|
export interface ConnectedAccount {
|
|
1194
1219
|
id: string;
|
|
1195
1220
|
ownerId?: string | null;
|
|
1221
|
+
/** The service used, e.g. `twitter` or `github`. */
|
|
1196
1222
|
service?: string | null;
|
|
1223
|
+
/** A unique identifier for the user within the service */
|
|
1197
1224
|
identifier?: string | null;
|
|
1225
|
+
/** Additional profile details extracted from this login method */
|
|
1198
1226
|
details?: Record<string, unknown> | null;
|
|
1199
1227
|
isVerified?: boolean | null;
|
|
1200
1228
|
createdAt?: string | null;
|
|
@@ -1219,25 +1247,41 @@ export interface AppMembershipDefault {
|
|
|
1219
1247
|
isApproved?: boolean | null;
|
|
1220
1248
|
isVerified?: boolean | null;
|
|
1221
1249
|
}
|
|
1250
|
+
/** Registry of high-level semantic AST node types using domain-prefixed naming. These IR nodes compile to multiple targets (Postgres RLS, egress, ingress, etc.). */
|
|
1222
1251
|
export interface NodeTypeRegistry {
|
|
1252
|
+
/** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, FieldImmutable) */
|
|
1223
1253
|
name?: string | null;
|
|
1254
|
+
/** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
|
|
1224
1255
|
slug?: string | null;
|
|
1256
|
+
/** Node type category: authz (authorization semantics), data (table-level behaviors), field (column-level behaviors), view (view query types) */
|
|
1225
1257
|
category?: string | null;
|
|
1258
|
+
/** Human-readable display name for UI */
|
|
1226
1259
|
displayName?: string | null;
|
|
1260
|
+
/** Description of what this node type does */
|
|
1227
1261
|
description?: string | null;
|
|
1262
|
+
/** JSON Schema defining valid parameters for this node type */
|
|
1228
1263
|
parameterSchema?: Record<string, unknown> | null;
|
|
1264
|
+
/** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
|
|
1229
1265
|
tags?: string | null;
|
|
1230
1266
|
createdAt?: string | null;
|
|
1231
1267
|
updatedAt?: string | null;
|
|
1232
1268
|
}
|
|
1269
|
+
/** A commit records changes to the repository. */
|
|
1233
1270
|
export interface Commit {
|
|
1271
|
+
/** The primary unique identifier for the commit. */
|
|
1234
1272
|
id: string;
|
|
1273
|
+
/** The commit message */
|
|
1235
1274
|
message?: string | null;
|
|
1275
|
+
/** The repository identifier */
|
|
1236
1276
|
databaseId?: string | null;
|
|
1237
1277
|
storeId?: string | null;
|
|
1278
|
+
/** Parent commits */
|
|
1238
1279
|
parentIds?: string | null;
|
|
1280
|
+
/** The author of the commit */
|
|
1239
1281
|
authorId?: string | null;
|
|
1282
|
+
/** The committer of the commit */
|
|
1240
1283
|
committerId?: string | null;
|
|
1284
|
+
/** The root of the tree */
|
|
1241
1285
|
treeId?: string | null;
|
|
1242
1286
|
date?: string | null;
|
|
1243
1287
|
}
|
|
@@ -1271,6 +1315,7 @@ export interface AuditLog {
|
|
|
1271
1315
|
success?: boolean | null;
|
|
1272
1316
|
createdAt?: string | null;
|
|
1273
1317
|
}
|
|
1318
|
+
/** Levels for achievement */
|
|
1274
1319
|
export interface AppLevel {
|
|
1275
1320
|
id: string;
|
|
1276
1321
|
name?: string | null;
|
|
@@ -1336,6 +1381,7 @@ export interface User {
|
|
|
1336
1381
|
type?: number | null;
|
|
1337
1382
|
createdAt?: string | null;
|
|
1338
1383
|
updatedAt?: string | null;
|
|
1384
|
+
/** Full-text search ranking when filtered by `searchTsv`. Returns null when no search condition is active. */
|
|
1339
1385
|
searchTsvRank?: number | null;
|
|
1340
1386
|
}
|
|
1341
1387
|
export interface HierarchyModule {
|
|
@@ -10513,14 +10559,26 @@ export interface VerifyTotpInput {
|
|
|
10513
10559
|
clientMutationId?: string;
|
|
10514
10560
|
totpValue: string;
|
|
10515
10561
|
}
|
|
10562
|
+
/** An interval of time that has passed where the smallest distinct unit is a second. */
|
|
10516
10563
|
export interface IntervalInput {
|
|
10564
|
+
/**
|
|
10565
|
+
* A quantity of seconds. This is the only non-integer field, as all the other
|
|
10566
|
+
* fields will dump their overflow into a smaller unit of time. Intervals don’t
|
|
10567
|
+
* have a smaller unit than seconds.
|
|
10568
|
+
*/
|
|
10517
10569
|
seconds?: number;
|
|
10570
|
+
/** A quantity of minutes. */
|
|
10518
10571
|
minutes?: number;
|
|
10572
|
+
/** A quantity of hours. */
|
|
10519
10573
|
hours?: number;
|
|
10574
|
+
/** A quantity of days. */
|
|
10520
10575
|
days?: number;
|
|
10576
|
+
/** A quantity of months. */
|
|
10521
10577
|
months?: number;
|
|
10578
|
+
/** A quantity of years. */
|
|
10522
10579
|
years?: number;
|
|
10523
10580
|
}
|
|
10581
|
+
/** A connection to a list of `AppPermission` values. */
|
|
10524
10582
|
export interface AppPermissionConnection {
|
|
10525
10583
|
nodes: AppPermission[];
|
|
10526
10584
|
edges: AppPermissionEdge[];
|
|
@@ -10539,6 +10597,7 @@ export type AppPermissionConnectionSelect = {
|
|
|
10539
10597
|
};
|
|
10540
10598
|
totalCount?: boolean;
|
|
10541
10599
|
};
|
|
10600
|
+
/** A connection to a list of `OrgPermission` values. */
|
|
10542
10601
|
export interface OrgPermissionConnection {
|
|
10543
10602
|
nodes: OrgPermission[];
|
|
10544
10603
|
edges: OrgPermissionEdge[];
|
|
@@ -10557,6 +10616,7 @@ export type OrgPermissionConnectionSelect = {
|
|
|
10557
10616
|
};
|
|
10558
10617
|
totalCount?: boolean;
|
|
10559
10618
|
};
|
|
10619
|
+
/** A connection to a list of `Object` values. */
|
|
10560
10620
|
export interface ObjectConnection {
|
|
10561
10621
|
nodes: Object[];
|
|
10562
10622
|
edges: ObjectEdge[];
|
|
@@ -10575,6 +10635,7 @@ export type ObjectConnectionSelect = {
|
|
|
10575
10635
|
};
|
|
10576
10636
|
totalCount?: boolean;
|
|
10577
10637
|
};
|
|
10638
|
+
/** A connection to a list of `AppLevelRequirement` values. */
|
|
10578
10639
|
export interface AppLevelRequirementConnection {
|
|
10579
10640
|
nodes: AppLevelRequirement[];
|
|
10580
10641
|
edges: AppLevelRequirementEdge[];
|
|
@@ -10845,6 +10906,7 @@ export type VerifyTotpPayloadSelect = {
|
|
|
10845
10906
|
};
|
|
10846
10907
|
export interface CreateAppPermissionPayload {
|
|
10847
10908
|
clientMutationId?: string | null;
|
|
10909
|
+
/** The `AppPermission` that was created by this mutation. */
|
|
10848
10910
|
appPermission?: AppPermission | null;
|
|
10849
10911
|
appPermissionEdge?: AppPermissionEdge | null;
|
|
10850
10912
|
}
|
|
@@ -10859,6 +10921,7 @@ export type CreateAppPermissionPayloadSelect = {
|
|
|
10859
10921
|
};
|
|
10860
10922
|
export interface UpdateAppPermissionPayload {
|
|
10861
10923
|
clientMutationId?: string | null;
|
|
10924
|
+
/** The `AppPermission` that was updated by this mutation. */
|
|
10862
10925
|
appPermission?: AppPermission | null;
|
|
10863
10926
|
appPermissionEdge?: AppPermissionEdge | null;
|
|
10864
10927
|
}
|
|
@@ -10873,6 +10936,7 @@ export type UpdateAppPermissionPayloadSelect = {
|
|
|
10873
10936
|
};
|
|
10874
10937
|
export interface DeleteAppPermissionPayload {
|
|
10875
10938
|
clientMutationId?: string | null;
|
|
10939
|
+
/** The `AppPermission` that was deleted by this mutation. */
|
|
10876
10940
|
appPermission?: AppPermission | null;
|
|
10877
10941
|
appPermissionEdge?: AppPermissionEdge | null;
|
|
10878
10942
|
}
|
|
@@ -10887,6 +10951,7 @@ export type DeleteAppPermissionPayloadSelect = {
|
|
|
10887
10951
|
};
|
|
10888
10952
|
export interface CreateOrgPermissionPayload {
|
|
10889
10953
|
clientMutationId?: string | null;
|
|
10954
|
+
/** The `OrgPermission` that was created by this mutation. */
|
|
10890
10955
|
orgPermission?: OrgPermission | null;
|
|
10891
10956
|
orgPermissionEdge?: OrgPermissionEdge | null;
|
|
10892
10957
|
}
|
|
@@ -10901,6 +10966,7 @@ export type CreateOrgPermissionPayloadSelect = {
|
|
|
10901
10966
|
};
|
|
10902
10967
|
export interface UpdateOrgPermissionPayload {
|
|
10903
10968
|
clientMutationId?: string | null;
|
|
10969
|
+
/** The `OrgPermission` that was updated by this mutation. */
|
|
10904
10970
|
orgPermission?: OrgPermission | null;
|
|
10905
10971
|
orgPermissionEdge?: OrgPermissionEdge | null;
|
|
10906
10972
|
}
|
|
@@ -10915,6 +10981,7 @@ export type UpdateOrgPermissionPayloadSelect = {
|
|
|
10915
10981
|
};
|
|
10916
10982
|
export interface DeleteOrgPermissionPayload {
|
|
10917
10983
|
clientMutationId?: string | null;
|
|
10984
|
+
/** The `OrgPermission` that was deleted by this mutation. */
|
|
10918
10985
|
orgPermission?: OrgPermission | null;
|
|
10919
10986
|
orgPermissionEdge?: OrgPermissionEdge | null;
|
|
10920
10987
|
}
|
|
@@ -10929,6 +10996,7 @@ export type DeleteOrgPermissionPayloadSelect = {
|
|
|
10929
10996
|
};
|
|
10930
10997
|
export interface CreateObjectPayload {
|
|
10931
10998
|
clientMutationId?: string | null;
|
|
10999
|
+
/** The `Object` that was created by this mutation. */
|
|
10932
11000
|
object?: Object | null;
|
|
10933
11001
|
objectEdge?: ObjectEdge | null;
|
|
10934
11002
|
}
|
|
@@ -10943,6 +11011,7 @@ export type CreateObjectPayloadSelect = {
|
|
|
10943
11011
|
};
|
|
10944
11012
|
export interface UpdateObjectPayload {
|
|
10945
11013
|
clientMutationId?: string | null;
|
|
11014
|
+
/** The `Object` that was updated by this mutation. */
|
|
10946
11015
|
object?: Object | null;
|
|
10947
11016
|
objectEdge?: ObjectEdge | null;
|
|
10948
11017
|
}
|
|
@@ -10957,6 +11026,7 @@ export type UpdateObjectPayloadSelect = {
|
|
|
10957
11026
|
};
|
|
10958
11027
|
export interface DeleteObjectPayload {
|
|
10959
11028
|
clientMutationId?: string | null;
|
|
11029
|
+
/** The `Object` that was deleted by this mutation. */
|
|
10960
11030
|
object?: Object | null;
|
|
10961
11031
|
objectEdge?: ObjectEdge | null;
|
|
10962
11032
|
}
|
|
@@ -10971,6 +11041,7 @@ export type DeleteObjectPayloadSelect = {
|
|
|
10971
11041
|
};
|
|
10972
11042
|
export interface CreateAppLevelRequirementPayload {
|
|
10973
11043
|
clientMutationId?: string | null;
|
|
11044
|
+
/** The `AppLevelRequirement` that was created by this mutation. */
|
|
10974
11045
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
10975
11046
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
10976
11047
|
}
|
|
@@ -10985,6 +11056,7 @@ export type CreateAppLevelRequirementPayloadSelect = {
|
|
|
10985
11056
|
};
|
|
10986
11057
|
export interface UpdateAppLevelRequirementPayload {
|
|
10987
11058
|
clientMutationId?: string | null;
|
|
11059
|
+
/** The `AppLevelRequirement` that was updated by this mutation. */
|
|
10988
11060
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
10989
11061
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
10990
11062
|
}
|
|
@@ -10999,6 +11071,7 @@ export type UpdateAppLevelRequirementPayloadSelect = {
|
|
|
10999
11071
|
};
|
|
11000
11072
|
export interface DeleteAppLevelRequirementPayload {
|
|
11001
11073
|
clientMutationId?: string | null;
|
|
11074
|
+
/** The `AppLevelRequirement` that was deleted by this mutation. */
|
|
11002
11075
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
11003
11076
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
11004
11077
|
}
|
|
@@ -11013,6 +11086,7 @@ export type DeleteAppLevelRequirementPayloadSelect = {
|
|
|
11013
11086
|
};
|
|
11014
11087
|
export interface CreateDatabasePayload {
|
|
11015
11088
|
clientMutationId?: string | null;
|
|
11089
|
+
/** The `Database` that was created by this mutation. */
|
|
11016
11090
|
database?: Database | null;
|
|
11017
11091
|
databaseEdge?: DatabaseEdge | null;
|
|
11018
11092
|
}
|
|
@@ -11027,6 +11101,7 @@ export type CreateDatabasePayloadSelect = {
|
|
|
11027
11101
|
};
|
|
11028
11102
|
export interface UpdateDatabasePayload {
|
|
11029
11103
|
clientMutationId?: string | null;
|
|
11104
|
+
/** The `Database` that was updated by this mutation. */
|
|
11030
11105
|
database?: Database | null;
|
|
11031
11106
|
databaseEdge?: DatabaseEdge | null;
|
|
11032
11107
|
}
|
|
@@ -11041,6 +11116,7 @@ export type UpdateDatabasePayloadSelect = {
|
|
|
11041
11116
|
};
|
|
11042
11117
|
export interface DeleteDatabasePayload {
|
|
11043
11118
|
clientMutationId?: string | null;
|
|
11119
|
+
/** The `Database` that was deleted by this mutation. */
|
|
11044
11120
|
database?: Database | null;
|
|
11045
11121
|
databaseEdge?: DatabaseEdge | null;
|
|
11046
11122
|
}
|
|
@@ -11055,6 +11131,7 @@ export type DeleteDatabasePayloadSelect = {
|
|
|
11055
11131
|
};
|
|
11056
11132
|
export interface CreateSchemaPayload {
|
|
11057
11133
|
clientMutationId?: string | null;
|
|
11134
|
+
/** The `Schema` that was created by this mutation. */
|
|
11058
11135
|
schema?: Schema | null;
|
|
11059
11136
|
schemaEdge?: SchemaEdge | null;
|
|
11060
11137
|
}
|
|
@@ -11069,6 +11146,7 @@ export type CreateSchemaPayloadSelect = {
|
|
|
11069
11146
|
};
|
|
11070
11147
|
export interface UpdateSchemaPayload {
|
|
11071
11148
|
clientMutationId?: string | null;
|
|
11149
|
+
/** The `Schema` that was updated by this mutation. */
|
|
11072
11150
|
schema?: Schema | null;
|
|
11073
11151
|
schemaEdge?: SchemaEdge | null;
|
|
11074
11152
|
}
|
|
@@ -11083,6 +11161,7 @@ export type UpdateSchemaPayloadSelect = {
|
|
|
11083
11161
|
};
|
|
11084
11162
|
export interface DeleteSchemaPayload {
|
|
11085
11163
|
clientMutationId?: string | null;
|
|
11164
|
+
/** The `Schema` that was deleted by this mutation. */
|
|
11086
11165
|
schema?: Schema | null;
|
|
11087
11166
|
schemaEdge?: SchemaEdge | null;
|
|
11088
11167
|
}
|
|
@@ -11097,6 +11176,7 @@ export type DeleteSchemaPayloadSelect = {
|
|
|
11097
11176
|
};
|
|
11098
11177
|
export interface CreateTablePayload {
|
|
11099
11178
|
clientMutationId?: string | null;
|
|
11179
|
+
/** The `Table` that was created by this mutation. */
|
|
11100
11180
|
table?: Table | null;
|
|
11101
11181
|
tableEdge?: TableEdge | null;
|
|
11102
11182
|
}
|
|
@@ -11111,6 +11191,7 @@ export type CreateTablePayloadSelect = {
|
|
|
11111
11191
|
};
|
|
11112
11192
|
export interface UpdateTablePayload {
|
|
11113
11193
|
clientMutationId?: string | null;
|
|
11194
|
+
/** The `Table` that was updated by this mutation. */
|
|
11114
11195
|
table?: Table | null;
|
|
11115
11196
|
tableEdge?: TableEdge | null;
|
|
11116
11197
|
}
|
|
@@ -11125,6 +11206,7 @@ export type UpdateTablePayloadSelect = {
|
|
|
11125
11206
|
};
|
|
11126
11207
|
export interface DeleteTablePayload {
|
|
11127
11208
|
clientMutationId?: string | null;
|
|
11209
|
+
/** The `Table` that was deleted by this mutation. */
|
|
11128
11210
|
table?: Table | null;
|
|
11129
11211
|
tableEdge?: TableEdge | null;
|
|
11130
11212
|
}
|
|
@@ -11139,6 +11221,7 @@ export type DeleteTablePayloadSelect = {
|
|
|
11139
11221
|
};
|
|
11140
11222
|
export interface CreateCheckConstraintPayload {
|
|
11141
11223
|
clientMutationId?: string | null;
|
|
11224
|
+
/** The `CheckConstraint` that was created by this mutation. */
|
|
11142
11225
|
checkConstraint?: CheckConstraint | null;
|
|
11143
11226
|
checkConstraintEdge?: CheckConstraintEdge | null;
|
|
11144
11227
|
}
|
|
@@ -11153,6 +11236,7 @@ export type CreateCheckConstraintPayloadSelect = {
|
|
|
11153
11236
|
};
|
|
11154
11237
|
export interface UpdateCheckConstraintPayload {
|
|
11155
11238
|
clientMutationId?: string | null;
|
|
11239
|
+
/** The `CheckConstraint` that was updated by this mutation. */
|
|
11156
11240
|
checkConstraint?: CheckConstraint | null;
|
|
11157
11241
|
checkConstraintEdge?: CheckConstraintEdge | null;
|
|
11158
11242
|
}
|
|
@@ -11167,6 +11251,7 @@ export type UpdateCheckConstraintPayloadSelect = {
|
|
|
11167
11251
|
};
|
|
11168
11252
|
export interface DeleteCheckConstraintPayload {
|
|
11169
11253
|
clientMutationId?: string | null;
|
|
11254
|
+
/** The `CheckConstraint` that was deleted by this mutation. */
|
|
11170
11255
|
checkConstraint?: CheckConstraint | null;
|
|
11171
11256
|
checkConstraintEdge?: CheckConstraintEdge | null;
|
|
11172
11257
|
}
|
|
@@ -11181,6 +11266,7 @@ export type DeleteCheckConstraintPayloadSelect = {
|
|
|
11181
11266
|
};
|
|
11182
11267
|
export interface CreateFieldPayload {
|
|
11183
11268
|
clientMutationId?: string | null;
|
|
11269
|
+
/** The `Field` that was created by this mutation. */
|
|
11184
11270
|
field?: Field | null;
|
|
11185
11271
|
fieldEdge?: FieldEdge | null;
|
|
11186
11272
|
}
|
|
@@ -11195,6 +11281,7 @@ export type CreateFieldPayloadSelect = {
|
|
|
11195
11281
|
};
|
|
11196
11282
|
export interface UpdateFieldPayload {
|
|
11197
11283
|
clientMutationId?: string | null;
|
|
11284
|
+
/** The `Field` that was updated by this mutation. */
|
|
11198
11285
|
field?: Field | null;
|
|
11199
11286
|
fieldEdge?: FieldEdge | null;
|
|
11200
11287
|
}
|
|
@@ -11209,6 +11296,7 @@ export type UpdateFieldPayloadSelect = {
|
|
|
11209
11296
|
};
|
|
11210
11297
|
export interface DeleteFieldPayload {
|
|
11211
11298
|
clientMutationId?: string | null;
|
|
11299
|
+
/** The `Field` that was deleted by this mutation. */
|
|
11212
11300
|
field?: Field | null;
|
|
11213
11301
|
fieldEdge?: FieldEdge | null;
|
|
11214
11302
|
}
|
|
@@ -11223,6 +11311,7 @@ export type DeleteFieldPayloadSelect = {
|
|
|
11223
11311
|
};
|
|
11224
11312
|
export interface CreateForeignKeyConstraintPayload {
|
|
11225
11313
|
clientMutationId?: string | null;
|
|
11314
|
+
/** The `ForeignKeyConstraint` that was created by this mutation. */
|
|
11226
11315
|
foreignKeyConstraint?: ForeignKeyConstraint | null;
|
|
11227
11316
|
foreignKeyConstraintEdge?: ForeignKeyConstraintEdge | null;
|
|
11228
11317
|
}
|
|
@@ -11237,6 +11326,7 @@ export type CreateForeignKeyConstraintPayloadSelect = {
|
|
|
11237
11326
|
};
|
|
11238
11327
|
export interface UpdateForeignKeyConstraintPayload {
|
|
11239
11328
|
clientMutationId?: string | null;
|
|
11329
|
+
/** The `ForeignKeyConstraint` that was updated by this mutation. */
|
|
11240
11330
|
foreignKeyConstraint?: ForeignKeyConstraint | null;
|
|
11241
11331
|
foreignKeyConstraintEdge?: ForeignKeyConstraintEdge | null;
|
|
11242
11332
|
}
|
|
@@ -11251,6 +11341,7 @@ export type UpdateForeignKeyConstraintPayloadSelect = {
|
|
|
11251
11341
|
};
|
|
11252
11342
|
export interface DeleteForeignKeyConstraintPayload {
|
|
11253
11343
|
clientMutationId?: string | null;
|
|
11344
|
+
/** The `ForeignKeyConstraint` that was deleted by this mutation. */
|
|
11254
11345
|
foreignKeyConstraint?: ForeignKeyConstraint | null;
|
|
11255
11346
|
foreignKeyConstraintEdge?: ForeignKeyConstraintEdge | null;
|
|
11256
11347
|
}
|
|
@@ -11265,6 +11356,7 @@ export type DeleteForeignKeyConstraintPayloadSelect = {
|
|
|
11265
11356
|
};
|
|
11266
11357
|
export interface CreateFullTextSearchPayload {
|
|
11267
11358
|
clientMutationId?: string | null;
|
|
11359
|
+
/** The `FullTextSearch` that was created by this mutation. */
|
|
11268
11360
|
fullTextSearch?: FullTextSearch | null;
|
|
11269
11361
|
fullTextSearchEdge?: FullTextSearchEdge | null;
|
|
11270
11362
|
}
|
|
@@ -11279,6 +11371,7 @@ export type CreateFullTextSearchPayloadSelect = {
|
|
|
11279
11371
|
};
|
|
11280
11372
|
export interface UpdateFullTextSearchPayload {
|
|
11281
11373
|
clientMutationId?: string | null;
|
|
11374
|
+
/** The `FullTextSearch` that was updated by this mutation. */
|
|
11282
11375
|
fullTextSearch?: FullTextSearch | null;
|
|
11283
11376
|
fullTextSearchEdge?: FullTextSearchEdge | null;
|
|
11284
11377
|
}
|
|
@@ -11293,6 +11386,7 @@ export type UpdateFullTextSearchPayloadSelect = {
|
|
|
11293
11386
|
};
|
|
11294
11387
|
export interface DeleteFullTextSearchPayload {
|
|
11295
11388
|
clientMutationId?: string | null;
|
|
11389
|
+
/** The `FullTextSearch` that was deleted by this mutation. */
|
|
11296
11390
|
fullTextSearch?: FullTextSearch | null;
|
|
11297
11391
|
fullTextSearchEdge?: FullTextSearchEdge | null;
|
|
11298
11392
|
}
|
|
@@ -11307,6 +11401,7 @@ export type DeleteFullTextSearchPayloadSelect = {
|
|
|
11307
11401
|
};
|
|
11308
11402
|
export interface CreateIndexPayload {
|
|
11309
11403
|
clientMutationId?: string | null;
|
|
11404
|
+
/** The `Index` that was created by this mutation. */
|
|
11310
11405
|
index?: Index | null;
|
|
11311
11406
|
indexEdge?: IndexEdge | null;
|
|
11312
11407
|
}
|
|
@@ -11321,6 +11416,7 @@ export type CreateIndexPayloadSelect = {
|
|
|
11321
11416
|
};
|
|
11322
11417
|
export interface UpdateIndexPayload {
|
|
11323
11418
|
clientMutationId?: string | null;
|
|
11419
|
+
/** The `Index` that was updated by this mutation. */
|
|
11324
11420
|
index?: Index | null;
|
|
11325
11421
|
indexEdge?: IndexEdge | null;
|
|
11326
11422
|
}
|
|
@@ -11335,6 +11431,7 @@ export type UpdateIndexPayloadSelect = {
|
|
|
11335
11431
|
};
|
|
11336
11432
|
export interface DeleteIndexPayload {
|
|
11337
11433
|
clientMutationId?: string | null;
|
|
11434
|
+
/** The `Index` that was deleted by this mutation. */
|
|
11338
11435
|
index?: Index | null;
|
|
11339
11436
|
indexEdge?: IndexEdge | null;
|
|
11340
11437
|
}
|
|
@@ -11349,6 +11446,7 @@ export type DeleteIndexPayloadSelect = {
|
|
|
11349
11446
|
};
|
|
11350
11447
|
export interface CreateLimitFunctionPayload {
|
|
11351
11448
|
clientMutationId?: string | null;
|
|
11449
|
+
/** The `LimitFunction` that was created by this mutation. */
|
|
11352
11450
|
limitFunction?: LimitFunction | null;
|
|
11353
11451
|
limitFunctionEdge?: LimitFunctionEdge | null;
|
|
11354
11452
|
}
|
|
@@ -11363,6 +11461,7 @@ export type CreateLimitFunctionPayloadSelect = {
|
|
|
11363
11461
|
};
|
|
11364
11462
|
export interface UpdateLimitFunctionPayload {
|
|
11365
11463
|
clientMutationId?: string | null;
|
|
11464
|
+
/** The `LimitFunction` that was updated by this mutation. */
|
|
11366
11465
|
limitFunction?: LimitFunction | null;
|
|
11367
11466
|
limitFunctionEdge?: LimitFunctionEdge | null;
|
|
11368
11467
|
}
|
|
@@ -11377,6 +11476,7 @@ export type UpdateLimitFunctionPayloadSelect = {
|
|
|
11377
11476
|
};
|
|
11378
11477
|
export interface DeleteLimitFunctionPayload {
|
|
11379
11478
|
clientMutationId?: string | null;
|
|
11479
|
+
/** The `LimitFunction` that was deleted by this mutation. */
|
|
11380
11480
|
limitFunction?: LimitFunction | null;
|
|
11381
11481
|
limitFunctionEdge?: LimitFunctionEdge | null;
|
|
11382
11482
|
}
|
|
@@ -11391,6 +11491,7 @@ export type DeleteLimitFunctionPayloadSelect = {
|
|
|
11391
11491
|
};
|
|
11392
11492
|
export interface CreatePolicyPayload {
|
|
11393
11493
|
clientMutationId?: string | null;
|
|
11494
|
+
/** The `Policy` that was created by this mutation. */
|
|
11394
11495
|
policy?: Policy | null;
|
|
11395
11496
|
policyEdge?: PolicyEdge | null;
|
|
11396
11497
|
}
|
|
@@ -11405,6 +11506,7 @@ export type CreatePolicyPayloadSelect = {
|
|
|
11405
11506
|
};
|
|
11406
11507
|
export interface UpdatePolicyPayload {
|
|
11407
11508
|
clientMutationId?: string | null;
|
|
11509
|
+
/** The `Policy` that was updated by this mutation. */
|
|
11408
11510
|
policy?: Policy | null;
|
|
11409
11511
|
policyEdge?: PolicyEdge | null;
|
|
11410
11512
|
}
|
|
@@ -11419,6 +11521,7 @@ export type UpdatePolicyPayloadSelect = {
|
|
|
11419
11521
|
};
|
|
11420
11522
|
export interface DeletePolicyPayload {
|
|
11421
11523
|
clientMutationId?: string | null;
|
|
11524
|
+
/** The `Policy` that was deleted by this mutation. */
|
|
11422
11525
|
policy?: Policy | null;
|
|
11423
11526
|
policyEdge?: PolicyEdge | null;
|
|
11424
11527
|
}
|
|
@@ -11433,6 +11536,7 @@ export type DeletePolicyPayloadSelect = {
|
|
|
11433
11536
|
};
|
|
11434
11537
|
export interface CreatePrimaryKeyConstraintPayload {
|
|
11435
11538
|
clientMutationId?: string | null;
|
|
11539
|
+
/** The `PrimaryKeyConstraint` that was created by this mutation. */
|
|
11436
11540
|
primaryKeyConstraint?: PrimaryKeyConstraint | null;
|
|
11437
11541
|
primaryKeyConstraintEdge?: PrimaryKeyConstraintEdge | null;
|
|
11438
11542
|
}
|
|
@@ -11447,6 +11551,7 @@ export type CreatePrimaryKeyConstraintPayloadSelect = {
|
|
|
11447
11551
|
};
|
|
11448
11552
|
export interface UpdatePrimaryKeyConstraintPayload {
|
|
11449
11553
|
clientMutationId?: string | null;
|
|
11554
|
+
/** The `PrimaryKeyConstraint` that was updated by this mutation. */
|
|
11450
11555
|
primaryKeyConstraint?: PrimaryKeyConstraint | null;
|
|
11451
11556
|
primaryKeyConstraintEdge?: PrimaryKeyConstraintEdge | null;
|
|
11452
11557
|
}
|
|
@@ -11461,6 +11566,7 @@ export type UpdatePrimaryKeyConstraintPayloadSelect = {
|
|
|
11461
11566
|
};
|
|
11462
11567
|
export interface DeletePrimaryKeyConstraintPayload {
|
|
11463
11568
|
clientMutationId?: string | null;
|
|
11569
|
+
/** The `PrimaryKeyConstraint` that was deleted by this mutation. */
|
|
11464
11570
|
primaryKeyConstraint?: PrimaryKeyConstraint | null;
|
|
11465
11571
|
primaryKeyConstraintEdge?: PrimaryKeyConstraintEdge | null;
|
|
11466
11572
|
}
|
|
@@ -11475,6 +11581,7 @@ export type DeletePrimaryKeyConstraintPayloadSelect = {
|
|
|
11475
11581
|
};
|
|
11476
11582
|
export interface CreateTableGrantPayload {
|
|
11477
11583
|
clientMutationId?: string | null;
|
|
11584
|
+
/** The `TableGrant` that was created by this mutation. */
|
|
11478
11585
|
tableGrant?: TableGrant | null;
|
|
11479
11586
|
tableGrantEdge?: TableGrantEdge | null;
|
|
11480
11587
|
}
|
|
@@ -11489,6 +11596,7 @@ export type CreateTableGrantPayloadSelect = {
|
|
|
11489
11596
|
};
|
|
11490
11597
|
export interface UpdateTableGrantPayload {
|
|
11491
11598
|
clientMutationId?: string | null;
|
|
11599
|
+
/** The `TableGrant` that was updated by this mutation. */
|
|
11492
11600
|
tableGrant?: TableGrant | null;
|
|
11493
11601
|
tableGrantEdge?: TableGrantEdge | null;
|
|
11494
11602
|
}
|
|
@@ -11503,6 +11611,7 @@ export type UpdateTableGrantPayloadSelect = {
|
|
|
11503
11611
|
};
|
|
11504
11612
|
export interface DeleteTableGrantPayload {
|
|
11505
11613
|
clientMutationId?: string | null;
|
|
11614
|
+
/** The `TableGrant` that was deleted by this mutation. */
|
|
11506
11615
|
tableGrant?: TableGrant | null;
|
|
11507
11616
|
tableGrantEdge?: TableGrantEdge | null;
|
|
11508
11617
|
}
|
|
@@ -11517,6 +11626,7 @@ export type DeleteTableGrantPayloadSelect = {
|
|
|
11517
11626
|
};
|
|
11518
11627
|
export interface CreateTriggerPayload {
|
|
11519
11628
|
clientMutationId?: string | null;
|
|
11629
|
+
/** The `Trigger` that was created by this mutation. */
|
|
11520
11630
|
trigger?: Trigger | null;
|
|
11521
11631
|
triggerEdge?: TriggerEdge | null;
|
|
11522
11632
|
}
|
|
@@ -11531,6 +11641,7 @@ export type CreateTriggerPayloadSelect = {
|
|
|
11531
11641
|
};
|
|
11532
11642
|
export interface UpdateTriggerPayload {
|
|
11533
11643
|
clientMutationId?: string | null;
|
|
11644
|
+
/** The `Trigger` that was updated by this mutation. */
|
|
11534
11645
|
trigger?: Trigger | null;
|
|
11535
11646
|
triggerEdge?: TriggerEdge | null;
|
|
11536
11647
|
}
|
|
@@ -11545,6 +11656,7 @@ export type UpdateTriggerPayloadSelect = {
|
|
|
11545
11656
|
};
|
|
11546
11657
|
export interface DeleteTriggerPayload {
|
|
11547
11658
|
clientMutationId?: string | null;
|
|
11659
|
+
/** The `Trigger` that was deleted by this mutation. */
|
|
11548
11660
|
trigger?: Trigger | null;
|
|
11549
11661
|
triggerEdge?: TriggerEdge | null;
|
|
11550
11662
|
}
|
|
@@ -11559,6 +11671,7 @@ export type DeleteTriggerPayloadSelect = {
|
|
|
11559
11671
|
};
|
|
11560
11672
|
export interface CreateUniqueConstraintPayload {
|
|
11561
11673
|
clientMutationId?: string | null;
|
|
11674
|
+
/** The `UniqueConstraint` that was created by this mutation. */
|
|
11562
11675
|
uniqueConstraint?: UniqueConstraint | null;
|
|
11563
11676
|
uniqueConstraintEdge?: UniqueConstraintEdge | null;
|
|
11564
11677
|
}
|
|
@@ -11573,6 +11686,7 @@ export type CreateUniqueConstraintPayloadSelect = {
|
|
|
11573
11686
|
};
|
|
11574
11687
|
export interface UpdateUniqueConstraintPayload {
|
|
11575
11688
|
clientMutationId?: string | null;
|
|
11689
|
+
/** The `UniqueConstraint` that was updated by this mutation. */
|
|
11576
11690
|
uniqueConstraint?: UniqueConstraint | null;
|
|
11577
11691
|
uniqueConstraintEdge?: UniqueConstraintEdge | null;
|
|
11578
11692
|
}
|
|
@@ -11587,6 +11701,7 @@ export type UpdateUniqueConstraintPayloadSelect = {
|
|
|
11587
11701
|
};
|
|
11588
11702
|
export interface DeleteUniqueConstraintPayload {
|
|
11589
11703
|
clientMutationId?: string | null;
|
|
11704
|
+
/** The `UniqueConstraint` that was deleted by this mutation. */
|
|
11590
11705
|
uniqueConstraint?: UniqueConstraint | null;
|
|
11591
11706
|
uniqueConstraintEdge?: UniqueConstraintEdge | null;
|
|
11592
11707
|
}
|
|
@@ -11601,6 +11716,7 @@ export type DeleteUniqueConstraintPayloadSelect = {
|
|
|
11601
11716
|
};
|
|
11602
11717
|
export interface CreateViewPayload {
|
|
11603
11718
|
clientMutationId?: string | null;
|
|
11719
|
+
/** The `View` that was created by this mutation. */
|
|
11604
11720
|
view?: View | null;
|
|
11605
11721
|
viewEdge?: ViewEdge | null;
|
|
11606
11722
|
}
|
|
@@ -11615,6 +11731,7 @@ export type CreateViewPayloadSelect = {
|
|
|
11615
11731
|
};
|
|
11616
11732
|
export interface UpdateViewPayload {
|
|
11617
11733
|
clientMutationId?: string | null;
|
|
11734
|
+
/** The `View` that was updated by this mutation. */
|
|
11618
11735
|
view?: View | null;
|
|
11619
11736
|
viewEdge?: ViewEdge | null;
|
|
11620
11737
|
}
|
|
@@ -11629,6 +11746,7 @@ export type UpdateViewPayloadSelect = {
|
|
|
11629
11746
|
};
|
|
11630
11747
|
export interface DeleteViewPayload {
|
|
11631
11748
|
clientMutationId?: string | null;
|
|
11749
|
+
/** The `View` that was deleted by this mutation. */
|
|
11632
11750
|
view?: View | null;
|
|
11633
11751
|
viewEdge?: ViewEdge | null;
|
|
11634
11752
|
}
|
|
@@ -11643,6 +11761,7 @@ export type DeleteViewPayloadSelect = {
|
|
|
11643
11761
|
};
|
|
11644
11762
|
export interface CreateViewTablePayload {
|
|
11645
11763
|
clientMutationId?: string | null;
|
|
11764
|
+
/** The `ViewTable` that was created by this mutation. */
|
|
11646
11765
|
viewTable?: ViewTable | null;
|
|
11647
11766
|
viewTableEdge?: ViewTableEdge | null;
|
|
11648
11767
|
}
|
|
@@ -11657,6 +11776,7 @@ export type CreateViewTablePayloadSelect = {
|
|
|
11657
11776
|
};
|
|
11658
11777
|
export interface UpdateViewTablePayload {
|
|
11659
11778
|
clientMutationId?: string | null;
|
|
11779
|
+
/** The `ViewTable` that was updated by this mutation. */
|
|
11660
11780
|
viewTable?: ViewTable | null;
|
|
11661
11781
|
viewTableEdge?: ViewTableEdge | null;
|
|
11662
11782
|
}
|
|
@@ -11671,6 +11791,7 @@ export type UpdateViewTablePayloadSelect = {
|
|
|
11671
11791
|
};
|
|
11672
11792
|
export interface DeleteViewTablePayload {
|
|
11673
11793
|
clientMutationId?: string | null;
|
|
11794
|
+
/** The `ViewTable` that was deleted by this mutation. */
|
|
11674
11795
|
viewTable?: ViewTable | null;
|
|
11675
11796
|
viewTableEdge?: ViewTableEdge | null;
|
|
11676
11797
|
}
|
|
@@ -11685,6 +11806,7 @@ export type DeleteViewTablePayloadSelect = {
|
|
|
11685
11806
|
};
|
|
11686
11807
|
export interface CreateViewGrantPayload {
|
|
11687
11808
|
clientMutationId?: string | null;
|
|
11809
|
+
/** The `ViewGrant` that was created by this mutation. */
|
|
11688
11810
|
viewGrant?: ViewGrant | null;
|
|
11689
11811
|
viewGrantEdge?: ViewGrantEdge | null;
|
|
11690
11812
|
}
|
|
@@ -11699,6 +11821,7 @@ export type CreateViewGrantPayloadSelect = {
|
|
|
11699
11821
|
};
|
|
11700
11822
|
export interface UpdateViewGrantPayload {
|
|
11701
11823
|
clientMutationId?: string | null;
|
|
11824
|
+
/** The `ViewGrant` that was updated by this mutation. */
|
|
11702
11825
|
viewGrant?: ViewGrant | null;
|
|
11703
11826
|
viewGrantEdge?: ViewGrantEdge | null;
|
|
11704
11827
|
}
|
|
@@ -11713,6 +11836,7 @@ export type UpdateViewGrantPayloadSelect = {
|
|
|
11713
11836
|
};
|
|
11714
11837
|
export interface DeleteViewGrantPayload {
|
|
11715
11838
|
clientMutationId?: string | null;
|
|
11839
|
+
/** The `ViewGrant` that was deleted by this mutation. */
|
|
11716
11840
|
viewGrant?: ViewGrant | null;
|
|
11717
11841
|
viewGrantEdge?: ViewGrantEdge | null;
|
|
11718
11842
|
}
|
|
@@ -11727,6 +11851,7 @@ export type DeleteViewGrantPayloadSelect = {
|
|
|
11727
11851
|
};
|
|
11728
11852
|
export interface CreateViewRulePayload {
|
|
11729
11853
|
clientMutationId?: string | null;
|
|
11854
|
+
/** The `ViewRule` that was created by this mutation. */
|
|
11730
11855
|
viewRule?: ViewRule | null;
|
|
11731
11856
|
viewRuleEdge?: ViewRuleEdge | null;
|
|
11732
11857
|
}
|
|
@@ -11741,6 +11866,7 @@ export type CreateViewRulePayloadSelect = {
|
|
|
11741
11866
|
};
|
|
11742
11867
|
export interface UpdateViewRulePayload {
|
|
11743
11868
|
clientMutationId?: string | null;
|
|
11869
|
+
/** The `ViewRule` that was updated by this mutation. */
|
|
11744
11870
|
viewRule?: ViewRule | null;
|
|
11745
11871
|
viewRuleEdge?: ViewRuleEdge | null;
|
|
11746
11872
|
}
|
|
@@ -11755,6 +11881,7 @@ export type UpdateViewRulePayloadSelect = {
|
|
|
11755
11881
|
};
|
|
11756
11882
|
export interface DeleteViewRulePayload {
|
|
11757
11883
|
clientMutationId?: string | null;
|
|
11884
|
+
/** The `ViewRule` that was deleted by this mutation. */
|
|
11758
11885
|
viewRule?: ViewRule | null;
|
|
11759
11886
|
viewRuleEdge?: ViewRuleEdge | null;
|
|
11760
11887
|
}
|
|
@@ -11769,6 +11896,7 @@ export type DeleteViewRulePayloadSelect = {
|
|
|
11769
11896
|
};
|
|
11770
11897
|
export interface CreateTableModulePayload {
|
|
11771
11898
|
clientMutationId?: string | null;
|
|
11899
|
+
/** The `TableModule` that was created by this mutation. */
|
|
11772
11900
|
tableModule?: TableModule | null;
|
|
11773
11901
|
tableModuleEdge?: TableModuleEdge | null;
|
|
11774
11902
|
}
|
|
@@ -11783,6 +11911,7 @@ export type CreateTableModulePayloadSelect = {
|
|
|
11783
11911
|
};
|
|
11784
11912
|
export interface UpdateTableModulePayload {
|
|
11785
11913
|
clientMutationId?: string | null;
|
|
11914
|
+
/** The `TableModule` that was updated by this mutation. */
|
|
11786
11915
|
tableModule?: TableModule | null;
|
|
11787
11916
|
tableModuleEdge?: TableModuleEdge | null;
|
|
11788
11917
|
}
|
|
@@ -11797,6 +11926,7 @@ export type UpdateTableModulePayloadSelect = {
|
|
|
11797
11926
|
};
|
|
11798
11927
|
export interface DeleteTableModulePayload {
|
|
11799
11928
|
clientMutationId?: string | null;
|
|
11929
|
+
/** The `TableModule` that was deleted by this mutation. */
|
|
11800
11930
|
tableModule?: TableModule | null;
|
|
11801
11931
|
tableModuleEdge?: TableModuleEdge | null;
|
|
11802
11932
|
}
|
|
@@ -11811,6 +11941,7 @@ export type DeleteTableModulePayloadSelect = {
|
|
|
11811
11941
|
};
|
|
11812
11942
|
export interface CreateTableTemplateModulePayload {
|
|
11813
11943
|
clientMutationId?: string | null;
|
|
11944
|
+
/** The `TableTemplateModule` that was created by this mutation. */
|
|
11814
11945
|
tableTemplateModule?: TableTemplateModule | null;
|
|
11815
11946
|
tableTemplateModuleEdge?: TableTemplateModuleEdge | null;
|
|
11816
11947
|
}
|
|
@@ -11825,6 +11956,7 @@ export type CreateTableTemplateModulePayloadSelect = {
|
|
|
11825
11956
|
};
|
|
11826
11957
|
export interface UpdateTableTemplateModulePayload {
|
|
11827
11958
|
clientMutationId?: string | null;
|
|
11959
|
+
/** The `TableTemplateModule` that was updated by this mutation. */
|
|
11828
11960
|
tableTemplateModule?: TableTemplateModule | null;
|
|
11829
11961
|
tableTemplateModuleEdge?: TableTemplateModuleEdge | null;
|
|
11830
11962
|
}
|
|
@@ -11839,6 +11971,7 @@ export type UpdateTableTemplateModulePayloadSelect = {
|
|
|
11839
11971
|
};
|
|
11840
11972
|
export interface DeleteTableTemplateModulePayload {
|
|
11841
11973
|
clientMutationId?: string | null;
|
|
11974
|
+
/** The `TableTemplateModule` that was deleted by this mutation. */
|
|
11842
11975
|
tableTemplateModule?: TableTemplateModule | null;
|
|
11843
11976
|
tableTemplateModuleEdge?: TableTemplateModuleEdge | null;
|
|
11844
11977
|
}
|
|
@@ -11853,6 +11986,7 @@ export type DeleteTableTemplateModulePayloadSelect = {
|
|
|
11853
11986
|
};
|
|
11854
11987
|
export interface CreateSchemaGrantPayload {
|
|
11855
11988
|
clientMutationId?: string | null;
|
|
11989
|
+
/** The `SchemaGrant` that was created by this mutation. */
|
|
11856
11990
|
schemaGrant?: SchemaGrant | null;
|
|
11857
11991
|
schemaGrantEdge?: SchemaGrantEdge | null;
|
|
11858
11992
|
}
|
|
@@ -11867,6 +12001,7 @@ export type CreateSchemaGrantPayloadSelect = {
|
|
|
11867
12001
|
};
|
|
11868
12002
|
export interface UpdateSchemaGrantPayload {
|
|
11869
12003
|
clientMutationId?: string | null;
|
|
12004
|
+
/** The `SchemaGrant` that was updated by this mutation. */
|
|
11870
12005
|
schemaGrant?: SchemaGrant | null;
|
|
11871
12006
|
schemaGrantEdge?: SchemaGrantEdge | null;
|
|
11872
12007
|
}
|
|
@@ -11881,6 +12016,7 @@ export type UpdateSchemaGrantPayloadSelect = {
|
|
|
11881
12016
|
};
|
|
11882
12017
|
export interface DeleteSchemaGrantPayload {
|
|
11883
12018
|
clientMutationId?: string | null;
|
|
12019
|
+
/** The `SchemaGrant` that was deleted by this mutation. */
|
|
11884
12020
|
schemaGrant?: SchemaGrant | null;
|
|
11885
12021
|
schemaGrantEdge?: SchemaGrantEdge | null;
|
|
11886
12022
|
}
|
|
@@ -11895,6 +12031,7 @@ export type DeleteSchemaGrantPayloadSelect = {
|
|
|
11895
12031
|
};
|
|
11896
12032
|
export interface CreateApiSchemaPayload {
|
|
11897
12033
|
clientMutationId?: string | null;
|
|
12034
|
+
/** The `ApiSchema` that was created by this mutation. */
|
|
11898
12035
|
apiSchema?: ApiSchema | null;
|
|
11899
12036
|
apiSchemaEdge?: ApiSchemaEdge | null;
|
|
11900
12037
|
}
|
|
@@ -11909,6 +12046,7 @@ export type CreateApiSchemaPayloadSelect = {
|
|
|
11909
12046
|
};
|
|
11910
12047
|
export interface UpdateApiSchemaPayload {
|
|
11911
12048
|
clientMutationId?: string | null;
|
|
12049
|
+
/** The `ApiSchema` that was updated by this mutation. */
|
|
11912
12050
|
apiSchema?: ApiSchema | null;
|
|
11913
12051
|
apiSchemaEdge?: ApiSchemaEdge | null;
|
|
11914
12052
|
}
|
|
@@ -11923,6 +12061,7 @@ export type UpdateApiSchemaPayloadSelect = {
|
|
|
11923
12061
|
};
|
|
11924
12062
|
export interface DeleteApiSchemaPayload {
|
|
11925
12063
|
clientMutationId?: string | null;
|
|
12064
|
+
/** The `ApiSchema` that was deleted by this mutation. */
|
|
11926
12065
|
apiSchema?: ApiSchema | null;
|
|
11927
12066
|
apiSchemaEdge?: ApiSchemaEdge | null;
|
|
11928
12067
|
}
|
|
@@ -11937,6 +12076,7 @@ export type DeleteApiSchemaPayloadSelect = {
|
|
|
11937
12076
|
};
|
|
11938
12077
|
export interface CreateApiModulePayload {
|
|
11939
12078
|
clientMutationId?: string | null;
|
|
12079
|
+
/** The `ApiModule` that was created by this mutation. */
|
|
11940
12080
|
apiModule?: ApiModule | null;
|
|
11941
12081
|
apiModuleEdge?: ApiModuleEdge | null;
|
|
11942
12082
|
}
|
|
@@ -11951,6 +12091,7 @@ export type CreateApiModulePayloadSelect = {
|
|
|
11951
12091
|
};
|
|
11952
12092
|
export interface UpdateApiModulePayload {
|
|
11953
12093
|
clientMutationId?: string | null;
|
|
12094
|
+
/** The `ApiModule` that was updated by this mutation. */
|
|
11954
12095
|
apiModule?: ApiModule | null;
|
|
11955
12096
|
apiModuleEdge?: ApiModuleEdge | null;
|
|
11956
12097
|
}
|
|
@@ -11965,6 +12106,7 @@ export type UpdateApiModulePayloadSelect = {
|
|
|
11965
12106
|
};
|
|
11966
12107
|
export interface DeleteApiModulePayload {
|
|
11967
12108
|
clientMutationId?: string | null;
|
|
12109
|
+
/** The `ApiModule` that was deleted by this mutation. */
|
|
11968
12110
|
apiModule?: ApiModule | null;
|
|
11969
12111
|
apiModuleEdge?: ApiModuleEdge | null;
|
|
11970
12112
|
}
|
|
@@ -11979,6 +12121,7 @@ export type DeleteApiModulePayloadSelect = {
|
|
|
11979
12121
|
};
|
|
11980
12122
|
export interface CreateDomainPayload {
|
|
11981
12123
|
clientMutationId?: string | null;
|
|
12124
|
+
/** The `Domain` that was created by this mutation. */
|
|
11982
12125
|
domain?: Domain | null;
|
|
11983
12126
|
domainEdge?: DomainEdge | null;
|
|
11984
12127
|
}
|
|
@@ -11993,6 +12136,7 @@ export type CreateDomainPayloadSelect = {
|
|
|
11993
12136
|
};
|
|
11994
12137
|
export interface UpdateDomainPayload {
|
|
11995
12138
|
clientMutationId?: string | null;
|
|
12139
|
+
/** The `Domain` that was updated by this mutation. */
|
|
11996
12140
|
domain?: Domain | null;
|
|
11997
12141
|
domainEdge?: DomainEdge | null;
|
|
11998
12142
|
}
|
|
@@ -12007,6 +12151,7 @@ export type UpdateDomainPayloadSelect = {
|
|
|
12007
12151
|
};
|
|
12008
12152
|
export interface DeleteDomainPayload {
|
|
12009
12153
|
clientMutationId?: string | null;
|
|
12154
|
+
/** The `Domain` that was deleted by this mutation. */
|
|
12010
12155
|
domain?: Domain | null;
|
|
12011
12156
|
domainEdge?: DomainEdge | null;
|
|
12012
12157
|
}
|
|
@@ -12021,6 +12166,7 @@ export type DeleteDomainPayloadSelect = {
|
|
|
12021
12166
|
};
|
|
12022
12167
|
export interface CreateSiteMetadatumPayload {
|
|
12023
12168
|
clientMutationId?: string | null;
|
|
12169
|
+
/** The `SiteMetadatum` that was created by this mutation. */
|
|
12024
12170
|
siteMetadatum?: SiteMetadatum | null;
|
|
12025
12171
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
12026
12172
|
}
|
|
@@ -12035,6 +12181,7 @@ export type CreateSiteMetadatumPayloadSelect = {
|
|
|
12035
12181
|
};
|
|
12036
12182
|
export interface UpdateSiteMetadatumPayload {
|
|
12037
12183
|
clientMutationId?: string | null;
|
|
12184
|
+
/** The `SiteMetadatum` that was updated by this mutation. */
|
|
12038
12185
|
siteMetadatum?: SiteMetadatum | null;
|
|
12039
12186
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
12040
12187
|
}
|
|
@@ -12049,6 +12196,7 @@ export type UpdateSiteMetadatumPayloadSelect = {
|
|
|
12049
12196
|
};
|
|
12050
12197
|
export interface DeleteSiteMetadatumPayload {
|
|
12051
12198
|
clientMutationId?: string | null;
|
|
12199
|
+
/** The `SiteMetadatum` that was deleted by this mutation. */
|
|
12052
12200
|
siteMetadatum?: SiteMetadatum | null;
|
|
12053
12201
|
siteMetadatumEdge?: SiteMetadatumEdge | null;
|
|
12054
12202
|
}
|
|
@@ -12063,6 +12211,7 @@ export type DeleteSiteMetadatumPayloadSelect = {
|
|
|
12063
12211
|
};
|
|
12064
12212
|
export interface CreateSiteModulePayload {
|
|
12065
12213
|
clientMutationId?: string | null;
|
|
12214
|
+
/** The `SiteModule` that was created by this mutation. */
|
|
12066
12215
|
siteModule?: SiteModule | null;
|
|
12067
12216
|
siteModuleEdge?: SiteModuleEdge | null;
|
|
12068
12217
|
}
|
|
@@ -12077,6 +12226,7 @@ export type CreateSiteModulePayloadSelect = {
|
|
|
12077
12226
|
};
|
|
12078
12227
|
export interface UpdateSiteModulePayload {
|
|
12079
12228
|
clientMutationId?: string | null;
|
|
12229
|
+
/** The `SiteModule` that was updated by this mutation. */
|
|
12080
12230
|
siteModule?: SiteModule | null;
|
|
12081
12231
|
siteModuleEdge?: SiteModuleEdge | null;
|
|
12082
12232
|
}
|
|
@@ -12091,6 +12241,7 @@ export type UpdateSiteModulePayloadSelect = {
|
|
|
12091
12241
|
};
|
|
12092
12242
|
export interface DeleteSiteModulePayload {
|
|
12093
12243
|
clientMutationId?: string | null;
|
|
12244
|
+
/** The `SiteModule` that was deleted by this mutation. */
|
|
12094
12245
|
siteModule?: SiteModule | null;
|
|
12095
12246
|
siteModuleEdge?: SiteModuleEdge | null;
|
|
12096
12247
|
}
|
|
@@ -12105,6 +12256,7 @@ export type DeleteSiteModulePayloadSelect = {
|
|
|
12105
12256
|
};
|
|
12106
12257
|
export interface CreateSiteThemePayload {
|
|
12107
12258
|
clientMutationId?: string | null;
|
|
12259
|
+
/** The `SiteTheme` that was created by this mutation. */
|
|
12108
12260
|
siteTheme?: SiteTheme | null;
|
|
12109
12261
|
siteThemeEdge?: SiteThemeEdge | null;
|
|
12110
12262
|
}
|
|
@@ -12119,6 +12271,7 @@ export type CreateSiteThemePayloadSelect = {
|
|
|
12119
12271
|
};
|
|
12120
12272
|
export interface UpdateSiteThemePayload {
|
|
12121
12273
|
clientMutationId?: string | null;
|
|
12274
|
+
/** The `SiteTheme` that was updated by this mutation. */
|
|
12122
12275
|
siteTheme?: SiteTheme | null;
|
|
12123
12276
|
siteThemeEdge?: SiteThemeEdge | null;
|
|
12124
12277
|
}
|
|
@@ -12133,6 +12286,7 @@ export type UpdateSiteThemePayloadSelect = {
|
|
|
12133
12286
|
};
|
|
12134
12287
|
export interface DeleteSiteThemePayload {
|
|
12135
12288
|
clientMutationId?: string | null;
|
|
12289
|
+
/** The `SiteTheme` that was deleted by this mutation. */
|
|
12136
12290
|
siteTheme?: SiteTheme | null;
|
|
12137
12291
|
siteThemeEdge?: SiteThemeEdge | null;
|
|
12138
12292
|
}
|
|
@@ -12147,6 +12301,7 @@ export type DeleteSiteThemePayloadSelect = {
|
|
|
12147
12301
|
};
|
|
12148
12302
|
export interface CreateProcedurePayload {
|
|
12149
12303
|
clientMutationId?: string | null;
|
|
12304
|
+
/** The `Procedure` that was created by this mutation. */
|
|
12150
12305
|
procedure?: Procedure | null;
|
|
12151
12306
|
procedureEdge?: ProcedureEdge | null;
|
|
12152
12307
|
}
|
|
@@ -12161,6 +12316,7 @@ export type CreateProcedurePayloadSelect = {
|
|
|
12161
12316
|
};
|
|
12162
12317
|
export interface UpdateProcedurePayload {
|
|
12163
12318
|
clientMutationId?: string | null;
|
|
12319
|
+
/** The `Procedure` that was updated by this mutation. */
|
|
12164
12320
|
procedure?: Procedure | null;
|
|
12165
12321
|
procedureEdge?: ProcedureEdge | null;
|
|
12166
12322
|
}
|
|
@@ -12175,6 +12331,7 @@ export type UpdateProcedurePayloadSelect = {
|
|
|
12175
12331
|
};
|
|
12176
12332
|
export interface DeleteProcedurePayload {
|
|
12177
12333
|
clientMutationId?: string | null;
|
|
12334
|
+
/** The `Procedure` that was deleted by this mutation. */
|
|
12178
12335
|
procedure?: Procedure | null;
|
|
12179
12336
|
procedureEdge?: ProcedureEdge | null;
|
|
12180
12337
|
}
|
|
@@ -12189,6 +12346,7 @@ export type DeleteProcedurePayloadSelect = {
|
|
|
12189
12346
|
};
|
|
12190
12347
|
export interface CreateTriggerFunctionPayload {
|
|
12191
12348
|
clientMutationId?: string | null;
|
|
12349
|
+
/** The `TriggerFunction` that was created by this mutation. */
|
|
12192
12350
|
triggerFunction?: TriggerFunction | null;
|
|
12193
12351
|
triggerFunctionEdge?: TriggerFunctionEdge | null;
|
|
12194
12352
|
}
|
|
@@ -12203,6 +12361,7 @@ export type CreateTriggerFunctionPayloadSelect = {
|
|
|
12203
12361
|
};
|
|
12204
12362
|
export interface UpdateTriggerFunctionPayload {
|
|
12205
12363
|
clientMutationId?: string | null;
|
|
12364
|
+
/** The `TriggerFunction` that was updated by this mutation. */
|
|
12206
12365
|
triggerFunction?: TriggerFunction | null;
|
|
12207
12366
|
triggerFunctionEdge?: TriggerFunctionEdge | null;
|
|
12208
12367
|
}
|
|
@@ -12217,6 +12376,7 @@ export type UpdateTriggerFunctionPayloadSelect = {
|
|
|
12217
12376
|
};
|
|
12218
12377
|
export interface DeleteTriggerFunctionPayload {
|
|
12219
12378
|
clientMutationId?: string | null;
|
|
12379
|
+
/** The `TriggerFunction` that was deleted by this mutation. */
|
|
12220
12380
|
triggerFunction?: TriggerFunction | null;
|
|
12221
12381
|
triggerFunctionEdge?: TriggerFunctionEdge | null;
|
|
12222
12382
|
}
|
|
@@ -12231,6 +12391,7 @@ export type DeleteTriggerFunctionPayloadSelect = {
|
|
|
12231
12391
|
};
|
|
12232
12392
|
export interface CreateApiPayload {
|
|
12233
12393
|
clientMutationId?: string | null;
|
|
12394
|
+
/** The `Api` that was created by this mutation. */
|
|
12234
12395
|
api?: Api | null;
|
|
12235
12396
|
apiEdge?: ApiEdge | null;
|
|
12236
12397
|
}
|
|
@@ -12245,6 +12406,7 @@ export type CreateApiPayloadSelect = {
|
|
|
12245
12406
|
};
|
|
12246
12407
|
export interface UpdateApiPayload {
|
|
12247
12408
|
clientMutationId?: string | null;
|
|
12409
|
+
/** The `Api` that was updated by this mutation. */
|
|
12248
12410
|
api?: Api | null;
|
|
12249
12411
|
apiEdge?: ApiEdge | null;
|
|
12250
12412
|
}
|
|
@@ -12259,6 +12421,7 @@ export type UpdateApiPayloadSelect = {
|
|
|
12259
12421
|
};
|
|
12260
12422
|
export interface DeleteApiPayload {
|
|
12261
12423
|
clientMutationId?: string | null;
|
|
12424
|
+
/** The `Api` that was deleted by this mutation. */
|
|
12262
12425
|
api?: Api | null;
|
|
12263
12426
|
apiEdge?: ApiEdge | null;
|
|
12264
12427
|
}
|
|
@@ -12273,6 +12436,7 @@ export type DeleteApiPayloadSelect = {
|
|
|
12273
12436
|
};
|
|
12274
12437
|
export interface CreateSitePayload {
|
|
12275
12438
|
clientMutationId?: string | null;
|
|
12439
|
+
/** The `Site` that was created by this mutation. */
|
|
12276
12440
|
site?: Site | null;
|
|
12277
12441
|
siteEdge?: SiteEdge | null;
|
|
12278
12442
|
}
|
|
@@ -12287,6 +12451,7 @@ export type CreateSitePayloadSelect = {
|
|
|
12287
12451
|
};
|
|
12288
12452
|
export interface UpdateSitePayload {
|
|
12289
12453
|
clientMutationId?: string | null;
|
|
12454
|
+
/** The `Site` that was updated by this mutation. */
|
|
12290
12455
|
site?: Site | null;
|
|
12291
12456
|
siteEdge?: SiteEdge | null;
|
|
12292
12457
|
}
|
|
@@ -12301,6 +12466,7 @@ export type UpdateSitePayloadSelect = {
|
|
|
12301
12466
|
};
|
|
12302
12467
|
export interface DeleteSitePayload {
|
|
12303
12468
|
clientMutationId?: string | null;
|
|
12469
|
+
/** The `Site` that was deleted by this mutation. */
|
|
12304
12470
|
site?: Site | null;
|
|
12305
12471
|
siteEdge?: SiteEdge | null;
|
|
12306
12472
|
}
|
|
@@ -12315,6 +12481,7 @@ export type DeleteSitePayloadSelect = {
|
|
|
12315
12481
|
};
|
|
12316
12482
|
export interface CreateAppPayload {
|
|
12317
12483
|
clientMutationId?: string | null;
|
|
12484
|
+
/** The `App` that was created by this mutation. */
|
|
12318
12485
|
app?: App | null;
|
|
12319
12486
|
appEdge?: AppEdge | null;
|
|
12320
12487
|
}
|
|
@@ -12329,6 +12496,7 @@ export type CreateAppPayloadSelect = {
|
|
|
12329
12496
|
};
|
|
12330
12497
|
export interface UpdateAppPayload {
|
|
12331
12498
|
clientMutationId?: string | null;
|
|
12499
|
+
/** The `App` that was updated by this mutation. */
|
|
12332
12500
|
app?: App | null;
|
|
12333
12501
|
appEdge?: AppEdge | null;
|
|
12334
12502
|
}
|
|
@@ -12343,6 +12511,7 @@ export type UpdateAppPayloadSelect = {
|
|
|
12343
12511
|
};
|
|
12344
12512
|
export interface DeleteAppPayload {
|
|
12345
12513
|
clientMutationId?: string | null;
|
|
12514
|
+
/** The `App` that was deleted by this mutation. */
|
|
12346
12515
|
app?: App | null;
|
|
12347
12516
|
appEdge?: AppEdge | null;
|
|
12348
12517
|
}
|
|
@@ -12357,6 +12526,7 @@ export type DeleteAppPayloadSelect = {
|
|
|
12357
12526
|
};
|
|
12358
12527
|
export interface CreateConnectedAccountsModulePayload {
|
|
12359
12528
|
clientMutationId?: string | null;
|
|
12529
|
+
/** The `ConnectedAccountsModule` that was created by this mutation. */
|
|
12360
12530
|
connectedAccountsModule?: ConnectedAccountsModule | null;
|
|
12361
12531
|
connectedAccountsModuleEdge?: ConnectedAccountsModuleEdge | null;
|
|
12362
12532
|
}
|
|
@@ -12371,6 +12541,7 @@ export type CreateConnectedAccountsModulePayloadSelect = {
|
|
|
12371
12541
|
};
|
|
12372
12542
|
export interface UpdateConnectedAccountsModulePayload {
|
|
12373
12543
|
clientMutationId?: string | null;
|
|
12544
|
+
/** The `ConnectedAccountsModule` that was updated by this mutation. */
|
|
12374
12545
|
connectedAccountsModule?: ConnectedAccountsModule | null;
|
|
12375
12546
|
connectedAccountsModuleEdge?: ConnectedAccountsModuleEdge | null;
|
|
12376
12547
|
}
|
|
@@ -12385,6 +12556,7 @@ export type UpdateConnectedAccountsModulePayloadSelect = {
|
|
|
12385
12556
|
};
|
|
12386
12557
|
export interface DeleteConnectedAccountsModulePayload {
|
|
12387
12558
|
clientMutationId?: string | null;
|
|
12559
|
+
/** The `ConnectedAccountsModule` that was deleted by this mutation. */
|
|
12388
12560
|
connectedAccountsModule?: ConnectedAccountsModule | null;
|
|
12389
12561
|
connectedAccountsModuleEdge?: ConnectedAccountsModuleEdge | null;
|
|
12390
12562
|
}
|
|
@@ -12399,6 +12571,7 @@ export type DeleteConnectedAccountsModulePayloadSelect = {
|
|
|
12399
12571
|
};
|
|
12400
12572
|
export interface CreateCryptoAddressesModulePayload {
|
|
12401
12573
|
clientMutationId?: string | null;
|
|
12574
|
+
/** The `CryptoAddressesModule` that was created by this mutation. */
|
|
12402
12575
|
cryptoAddressesModule?: CryptoAddressesModule | null;
|
|
12403
12576
|
cryptoAddressesModuleEdge?: CryptoAddressesModuleEdge | null;
|
|
12404
12577
|
}
|
|
@@ -12413,6 +12586,7 @@ export type CreateCryptoAddressesModulePayloadSelect = {
|
|
|
12413
12586
|
};
|
|
12414
12587
|
export interface UpdateCryptoAddressesModulePayload {
|
|
12415
12588
|
clientMutationId?: string | null;
|
|
12589
|
+
/** The `CryptoAddressesModule` that was updated by this mutation. */
|
|
12416
12590
|
cryptoAddressesModule?: CryptoAddressesModule | null;
|
|
12417
12591
|
cryptoAddressesModuleEdge?: CryptoAddressesModuleEdge | null;
|
|
12418
12592
|
}
|
|
@@ -12427,6 +12601,7 @@ export type UpdateCryptoAddressesModulePayloadSelect = {
|
|
|
12427
12601
|
};
|
|
12428
12602
|
export interface DeleteCryptoAddressesModulePayload {
|
|
12429
12603
|
clientMutationId?: string | null;
|
|
12604
|
+
/** The `CryptoAddressesModule` that was deleted by this mutation. */
|
|
12430
12605
|
cryptoAddressesModule?: CryptoAddressesModule | null;
|
|
12431
12606
|
cryptoAddressesModuleEdge?: CryptoAddressesModuleEdge | null;
|
|
12432
12607
|
}
|
|
@@ -12441,6 +12616,7 @@ export type DeleteCryptoAddressesModulePayloadSelect = {
|
|
|
12441
12616
|
};
|
|
12442
12617
|
export interface CreateCryptoAuthModulePayload {
|
|
12443
12618
|
clientMutationId?: string | null;
|
|
12619
|
+
/** The `CryptoAuthModule` that was created by this mutation. */
|
|
12444
12620
|
cryptoAuthModule?: CryptoAuthModule | null;
|
|
12445
12621
|
cryptoAuthModuleEdge?: CryptoAuthModuleEdge | null;
|
|
12446
12622
|
}
|
|
@@ -12455,6 +12631,7 @@ export type CreateCryptoAuthModulePayloadSelect = {
|
|
|
12455
12631
|
};
|
|
12456
12632
|
export interface UpdateCryptoAuthModulePayload {
|
|
12457
12633
|
clientMutationId?: string | null;
|
|
12634
|
+
/** The `CryptoAuthModule` that was updated by this mutation. */
|
|
12458
12635
|
cryptoAuthModule?: CryptoAuthModule | null;
|
|
12459
12636
|
cryptoAuthModuleEdge?: CryptoAuthModuleEdge | null;
|
|
12460
12637
|
}
|
|
@@ -12469,6 +12646,7 @@ export type UpdateCryptoAuthModulePayloadSelect = {
|
|
|
12469
12646
|
};
|
|
12470
12647
|
export interface DeleteCryptoAuthModulePayload {
|
|
12471
12648
|
clientMutationId?: string | null;
|
|
12649
|
+
/** The `CryptoAuthModule` that was deleted by this mutation. */
|
|
12472
12650
|
cryptoAuthModule?: CryptoAuthModule | null;
|
|
12473
12651
|
cryptoAuthModuleEdge?: CryptoAuthModuleEdge | null;
|
|
12474
12652
|
}
|
|
@@ -12483,6 +12661,7 @@ export type DeleteCryptoAuthModulePayloadSelect = {
|
|
|
12483
12661
|
};
|
|
12484
12662
|
export interface CreateDefaultIdsModulePayload {
|
|
12485
12663
|
clientMutationId?: string | null;
|
|
12664
|
+
/** The `DefaultIdsModule` that was created by this mutation. */
|
|
12486
12665
|
defaultIdsModule?: DefaultIdsModule | null;
|
|
12487
12666
|
defaultIdsModuleEdge?: DefaultIdsModuleEdge | null;
|
|
12488
12667
|
}
|
|
@@ -12497,6 +12676,7 @@ export type CreateDefaultIdsModulePayloadSelect = {
|
|
|
12497
12676
|
};
|
|
12498
12677
|
export interface UpdateDefaultIdsModulePayload {
|
|
12499
12678
|
clientMutationId?: string | null;
|
|
12679
|
+
/** The `DefaultIdsModule` that was updated by this mutation. */
|
|
12500
12680
|
defaultIdsModule?: DefaultIdsModule | null;
|
|
12501
12681
|
defaultIdsModuleEdge?: DefaultIdsModuleEdge | null;
|
|
12502
12682
|
}
|
|
@@ -12511,6 +12691,7 @@ export type UpdateDefaultIdsModulePayloadSelect = {
|
|
|
12511
12691
|
};
|
|
12512
12692
|
export interface DeleteDefaultIdsModulePayload {
|
|
12513
12693
|
clientMutationId?: string | null;
|
|
12694
|
+
/** The `DefaultIdsModule` that was deleted by this mutation. */
|
|
12514
12695
|
defaultIdsModule?: DefaultIdsModule | null;
|
|
12515
12696
|
defaultIdsModuleEdge?: DefaultIdsModuleEdge | null;
|
|
12516
12697
|
}
|
|
@@ -12525,6 +12706,7 @@ export type DeleteDefaultIdsModulePayloadSelect = {
|
|
|
12525
12706
|
};
|
|
12526
12707
|
export interface CreateDenormalizedTableFieldPayload {
|
|
12527
12708
|
clientMutationId?: string | null;
|
|
12709
|
+
/** The `DenormalizedTableField` that was created by this mutation. */
|
|
12528
12710
|
denormalizedTableField?: DenormalizedTableField | null;
|
|
12529
12711
|
denormalizedTableFieldEdge?: DenormalizedTableFieldEdge | null;
|
|
12530
12712
|
}
|
|
@@ -12539,6 +12721,7 @@ export type CreateDenormalizedTableFieldPayloadSelect = {
|
|
|
12539
12721
|
};
|
|
12540
12722
|
export interface UpdateDenormalizedTableFieldPayload {
|
|
12541
12723
|
clientMutationId?: string | null;
|
|
12724
|
+
/** The `DenormalizedTableField` that was updated by this mutation. */
|
|
12542
12725
|
denormalizedTableField?: DenormalizedTableField | null;
|
|
12543
12726
|
denormalizedTableFieldEdge?: DenormalizedTableFieldEdge | null;
|
|
12544
12727
|
}
|
|
@@ -12553,6 +12736,7 @@ export type UpdateDenormalizedTableFieldPayloadSelect = {
|
|
|
12553
12736
|
};
|
|
12554
12737
|
export interface DeleteDenormalizedTableFieldPayload {
|
|
12555
12738
|
clientMutationId?: string | null;
|
|
12739
|
+
/** The `DenormalizedTableField` that was deleted by this mutation. */
|
|
12556
12740
|
denormalizedTableField?: DenormalizedTableField | null;
|
|
12557
12741
|
denormalizedTableFieldEdge?: DenormalizedTableFieldEdge | null;
|
|
12558
12742
|
}
|
|
@@ -12567,6 +12751,7 @@ export type DeleteDenormalizedTableFieldPayloadSelect = {
|
|
|
12567
12751
|
};
|
|
12568
12752
|
export interface CreateEmailsModulePayload {
|
|
12569
12753
|
clientMutationId?: string | null;
|
|
12754
|
+
/** The `EmailsModule` that was created by this mutation. */
|
|
12570
12755
|
emailsModule?: EmailsModule | null;
|
|
12571
12756
|
emailsModuleEdge?: EmailsModuleEdge | null;
|
|
12572
12757
|
}
|
|
@@ -12581,6 +12766,7 @@ export type CreateEmailsModulePayloadSelect = {
|
|
|
12581
12766
|
};
|
|
12582
12767
|
export interface UpdateEmailsModulePayload {
|
|
12583
12768
|
clientMutationId?: string | null;
|
|
12769
|
+
/** The `EmailsModule` that was updated by this mutation. */
|
|
12584
12770
|
emailsModule?: EmailsModule | null;
|
|
12585
12771
|
emailsModuleEdge?: EmailsModuleEdge | null;
|
|
12586
12772
|
}
|
|
@@ -12595,6 +12781,7 @@ export type UpdateEmailsModulePayloadSelect = {
|
|
|
12595
12781
|
};
|
|
12596
12782
|
export interface DeleteEmailsModulePayload {
|
|
12597
12783
|
clientMutationId?: string | null;
|
|
12784
|
+
/** The `EmailsModule` that was deleted by this mutation. */
|
|
12598
12785
|
emailsModule?: EmailsModule | null;
|
|
12599
12786
|
emailsModuleEdge?: EmailsModuleEdge | null;
|
|
12600
12787
|
}
|
|
@@ -12609,6 +12796,7 @@ export type DeleteEmailsModulePayloadSelect = {
|
|
|
12609
12796
|
};
|
|
12610
12797
|
export interface CreateEncryptedSecretsModulePayload {
|
|
12611
12798
|
clientMutationId?: string | null;
|
|
12799
|
+
/** The `EncryptedSecretsModule` that was created by this mutation. */
|
|
12612
12800
|
encryptedSecretsModule?: EncryptedSecretsModule | null;
|
|
12613
12801
|
encryptedSecretsModuleEdge?: EncryptedSecretsModuleEdge | null;
|
|
12614
12802
|
}
|
|
@@ -12623,6 +12811,7 @@ export type CreateEncryptedSecretsModulePayloadSelect = {
|
|
|
12623
12811
|
};
|
|
12624
12812
|
export interface UpdateEncryptedSecretsModulePayload {
|
|
12625
12813
|
clientMutationId?: string | null;
|
|
12814
|
+
/** The `EncryptedSecretsModule` that was updated by this mutation. */
|
|
12626
12815
|
encryptedSecretsModule?: EncryptedSecretsModule | null;
|
|
12627
12816
|
encryptedSecretsModuleEdge?: EncryptedSecretsModuleEdge | null;
|
|
12628
12817
|
}
|
|
@@ -12637,6 +12826,7 @@ export type UpdateEncryptedSecretsModulePayloadSelect = {
|
|
|
12637
12826
|
};
|
|
12638
12827
|
export interface DeleteEncryptedSecretsModulePayload {
|
|
12639
12828
|
clientMutationId?: string | null;
|
|
12829
|
+
/** The `EncryptedSecretsModule` that was deleted by this mutation. */
|
|
12640
12830
|
encryptedSecretsModule?: EncryptedSecretsModule | null;
|
|
12641
12831
|
encryptedSecretsModuleEdge?: EncryptedSecretsModuleEdge | null;
|
|
12642
12832
|
}
|
|
@@ -12651,6 +12841,7 @@ export type DeleteEncryptedSecretsModulePayloadSelect = {
|
|
|
12651
12841
|
};
|
|
12652
12842
|
export interface CreateFieldModulePayload {
|
|
12653
12843
|
clientMutationId?: string | null;
|
|
12844
|
+
/** The `FieldModule` that was created by this mutation. */
|
|
12654
12845
|
fieldModule?: FieldModule | null;
|
|
12655
12846
|
fieldModuleEdge?: FieldModuleEdge | null;
|
|
12656
12847
|
}
|
|
@@ -12665,6 +12856,7 @@ export type CreateFieldModulePayloadSelect = {
|
|
|
12665
12856
|
};
|
|
12666
12857
|
export interface UpdateFieldModulePayload {
|
|
12667
12858
|
clientMutationId?: string | null;
|
|
12859
|
+
/** The `FieldModule` that was updated by this mutation. */
|
|
12668
12860
|
fieldModule?: FieldModule | null;
|
|
12669
12861
|
fieldModuleEdge?: FieldModuleEdge | null;
|
|
12670
12862
|
}
|
|
@@ -12679,6 +12871,7 @@ export type UpdateFieldModulePayloadSelect = {
|
|
|
12679
12871
|
};
|
|
12680
12872
|
export interface DeleteFieldModulePayload {
|
|
12681
12873
|
clientMutationId?: string | null;
|
|
12874
|
+
/** The `FieldModule` that was deleted by this mutation. */
|
|
12682
12875
|
fieldModule?: FieldModule | null;
|
|
12683
12876
|
fieldModuleEdge?: FieldModuleEdge | null;
|
|
12684
12877
|
}
|
|
@@ -12693,6 +12886,7 @@ export type DeleteFieldModulePayloadSelect = {
|
|
|
12693
12886
|
};
|
|
12694
12887
|
export interface CreateInvitesModulePayload {
|
|
12695
12888
|
clientMutationId?: string | null;
|
|
12889
|
+
/** The `InvitesModule` that was created by this mutation. */
|
|
12696
12890
|
invitesModule?: InvitesModule | null;
|
|
12697
12891
|
invitesModuleEdge?: InvitesModuleEdge | null;
|
|
12698
12892
|
}
|
|
@@ -12707,6 +12901,7 @@ export type CreateInvitesModulePayloadSelect = {
|
|
|
12707
12901
|
};
|
|
12708
12902
|
export interface UpdateInvitesModulePayload {
|
|
12709
12903
|
clientMutationId?: string | null;
|
|
12904
|
+
/** The `InvitesModule` that was updated by this mutation. */
|
|
12710
12905
|
invitesModule?: InvitesModule | null;
|
|
12711
12906
|
invitesModuleEdge?: InvitesModuleEdge | null;
|
|
12712
12907
|
}
|
|
@@ -12721,6 +12916,7 @@ export type UpdateInvitesModulePayloadSelect = {
|
|
|
12721
12916
|
};
|
|
12722
12917
|
export interface DeleteInvitesModulePayload {
|
|
12723
12918
|
clientMutationId?: string | null;
|
|
12919
|
+
/** The `InvitesModule` that was deleted by this mutation. */
|
|
12724
12920
|
invitesModule?: InvitesModule | null;
|
|
12725
12921
|
invitesModuleEdge?: InvitesModuleEdge | null;
|
|
12726
12922
|
}
|
|
@@ -12735,6 +12931,7 @@ export type DeleteInvitesModulePayloadSelect = {
|
|
|
12735
12931
|
};
|
|
12736
12932
|
export interface CreateLevelsModulePayload {
|
|
12737
12933
|
clientMutationId?: string | null;
|
|
12934
|
+
/** The `LevelsModule` that was created by this mutation. */
|
|
12738
12935
|
levelsModule?: LevelsModule | null;
|
|
12739
12936
|
levelsModuleEdge?: LevelsModuleEdge | null;
|
|
12740
12937
|
}
|
|
@@ -12749,6 +12946,7 @@ export type CreateLevelsModulePayloadSelect = {
|
|
|
12749
12946
|
};
|
|
12750
12947
|
export interface UpdateLevelsModulePayload {
|
|
12751
12948
|
clientMutationId?: string | null;
|
|
12949
|
+
/** The `LevelsModule` that was updated by this mutation. */
|
|
12752
12950
|
levelsModule?: LevelsModule | null;
|
|
12753
12951
|
levelsModuleEdge?: LevelsModuleEdge | null;
|
|
12754
12952
|
}
|
|
@@ -12763,6 +12961,7 @@ export type UpdateLevelsModulePayloadSelect = {
|
|
|
12763
12961
|
};
|
|
12764
12962
|
export interface DeleteLevelsModulePayload {
|
|
12765
12963
|
clientMutationId?: string | null;
|
|
12964
|
+
/** The `LevelsModule` that was deleted by this mutation. */
|
|
12766
12965
|
levelsModule?: LevelsModule | null;
|
|
12767
12966
|
levelsModuleEdge?: LevelsModuleEdge | null;
|
|
12768
12967
|
}
|
|
@@ -12777,6 +12976,7 @@ export type DeleteLevelsModulePayloadSelect = {
|
|
|
12777
12976
|
};
|
|
12778
12977
|
export interface CreateLimitsModulePayload {
|
|
12779
12978
|
clientMutationId?: string | null;
|
|
12979
|
+
/** The `LimitsModule` that was created by this mutation. */
|
|
12780
12980
|
limitsModule?: LimitsModule | null;
|
|
12781
12981
|
limitsModuleEdge?: LimitsModuleEdge | null;
|
|
12782
12982
|
}
|
|
@@ -12791,6 +12991,7 @@ export type CreateLimitsModulePayloadSelect = {
|
|
|
12791
12991
|
};
|
|
12792
12992
|
export interface UpdateLimitsModulePayload {
|
|
12793
12993
|
clientMutationId?: string | null;
|
|
12994
|
+
/** The `LimitsModule` that was updated by this mutation. */
|
|
12794
12995
|
limitsModule?: LimitsModule | null;
|
|
12795
12996
|
limitsModuleEdge?: LimitsModuleEdge | null;
|
|
12796
12997
|
}
|
|
@@ -12805,6 +13006,7 @@ export type UpdateLimitsModulePayloadSelect = {
|
|
|
12805
13006
|
};
|
|
12806
13007
|
export interface DeleteLimitsModulePayload {
|
|
12807
13008
|
clientMutationId?: string | null;
|
|
13009
|
+
/** The `LimitsModule` that was deleted by this mutation. */
|
|
12808
13010
|
limitsModule?: LimitsModule | null;
|
|
12809
13011
|
limitsModuleEdge?: LimitsModuleEdge | null;
|
|
12810
13012
|
}
|
|
@@ -12819,6 +13021,7 @@ export type DeleteLimitsModulePayloadSelect = {
|
|
|
12819
13021
|
};
|
|
12820
13022
|
export interface CreateMembershipTypesModulePayload {
|
|
12821
13023
|
clientMutationId?: string | null;
|
|
13024
|
+
/** The `MembershipTypesModule` that was created by this mutation. */
|
|
12822
13025
|
membershipTypesModule?: MembershipTypesModule | null;
|
|
12823
13026
|
membershipTypesModuleEdge?: MembershipTypesModuleEdge | null;
|
|
12824
13027
|
}
|
|
@@ -12833,6 +13036,7 @@ export type CreateMembershipTypesModulePayloadSelect = {
|
|
|
12833
13036
|
};
|
|
12834
13037
|
export interface UpdateMembershipTypesModulePayload {
|
|
12835
13038
|
clientMutationId?: string | null;
|
|
13039
|
+
/** The `MembershipTypesModule` that was updated by this mutation. */
|
|
12836
13040
|
membershipTypesModule?: MembershipTypesModule | null;
|
|
12837
13041
|
membershipTypesModuleEdge?: MembershipTypesModuleEdge | null;
|
|
12838
13042
|
}
|
|
@@ -12847,6 +13051,7 @@ export type UpdateMembershipTypesModulePayloadSelect = {
|
|
|
12847
13051
|
};
|
|
12848
13052
|
export interface DeleteMembershipTypesModulePayload {
|
|
12849
13053
|
clientMutationId?: string | null;
|
|
13054
|
+
/** The `MembershipTypesModule` that was deleted by this mutation. */
|
|
12850
13055
|
membershipTypesModule?: MembershipTypesModule | null;
|
|
12851
13056
|
membershipTypesModuleEdge?: MembershipTypesModuleEdge | null;
|
|
12852
13057
|
}
|
|
@@ -12861,6 +13066,7 @@ export type DeleteMembershipTypesModulePayloadSelect = {
|
|
|
12861
13066
|
};
|
|
12862
13067
|
export interface CreateMembershipsModulePayload {
|
|
12863
13068
|
clientMutationId?: string | null;
|
|
13069
|
+
/** The `MembershipsModule` that was created by this mutation. */
|
|
12864
13070
|
membershipsModule?: MembershipsModule | null;
|
|
12865
13071
|
membershipsModuleEdge?: MembershipsModuleEdge | null;
|
|
12866
13072
|
}
|
|
@@ -12875,6 +13081,7 @@ export type CreateMembershipsModulePayloadSelect = {
|
|
|
12875
13081
|
};
|
|
12876
13082
|
export interface UpdateMembershipsModulePayload {
|
|
12877
13083
|
clientMutationId?: string | null;
|
|
13084
|
+
/** The `MembershipsModule` that was updated by this mutation. */
|
|
12878
13085
|
membershipsModule?: MembershipsModule | null;
|
|
12879
13086
|
membershipsModuleEdge?: MembershipsModuleEdge | null;
|
|
12880
13087
|
}
|
|
@@ -12889,6 +13096,7 @@ export type UpdateMembershipsModulePayloadSelect = {
|
|
|
12889
13096
|
};
|
|
12890
13097
|
export interface DeleteMembershipsModulePayload {
|
|
12891
13098
|
clientMutationId?: string | null;
|
|
13099
|
+
/** The `MembershipsModule` that was deleted by this mutation. */
|
|
12892
13100
|
membershipsModule?: MembershipsModule | null;
|
|
12893
13101
|
membershipsModuleEdge?: MembershipsModuleEdge | null;
|
|
12894
13102
|
}
|
|
@@ -12903,6 +13111,7 @@ export type DeleteMembershipsModulePayloadSelect = {
|
|
|
12903
13111
|
};
|
|
12904
13112
|
export interface CreatePermissionsModulePayload {
|
|
12905
13113
|
clientMutationId?: string | null;
|
|
13114
|
+
/** The `PermissionsModule` that was created by this mutation. */
|
|
12906
13115
|
permissionsModule?: PermissionsModule | null;
|
|
12907
13116
|
permissionsModuleEdge?: PermissionsModuleEdge | null;
|
|
12908
13117
|
}
|
|
@@ -12917,6 +13126,7 @@ export type CreatePermissionsModulePayloadSelect = {
|
|
|
12917
13126
|
};
|
|
12918
13127
|
export interface UpdatePermissionsModulePayload {
|
|
12919
13128
|
clientMutationId?: string | null;
|
|
13129
|
+
/** The `PermissionsModule` that was updated by this mutation. */
|
|
12920
13130
|
permissionsModule?: PermissionsModule | null;
|
|
12921
13131
|
permissionsModuleEdge?: PermissionsModuleEdge | null;
|
|
12922
13132
|
}
|
|
@@ -12931,6 +13141,7 @@ export type UpdatePermissionsModulePayloadSelect = {
|
|
|
12931
13141
|
};
|
|
12932
13142
|
export interface DeletePermissionsModulePayload {
|
|
12933
13143
|
clientMutationId?: string | null;
|
|
13144
|
+
/** The `PermissionsModule` that was deleted by this mutation. */
|
|
12934
13145
|
permissionsModule?: PermissionsModule | null;
|
|
12935
13146
|
permissionsModuleEdge?: PermissionsModuleEdge | null;
|
|
12936
13147
|
}
|
|
@@ -12945,6 +13156,7 @@ export type DeletePermissionsModulePayloadSelect = {
|
|
|
12945
13156
|
};
|
|
12946
13157
|
export interface CreatePhoneNumbersModulePayload {
|
|
12947
13158
|
clientMutationId?: string | null;
|
|
13159
|
+
/** The `PhoneNumbersModule` that was created by this mutation. */
|
|
12948
13160
|
phoneNumbersModule?: PhoneNumbersModule | null;
|
|
12949
13161
|
phoneNumbersModuleEdge?: PhoneNumbersModuleEdge | null;
|
|
12950
13162
|
}
|
|
@@ -12959,6 +13171,7 @@ export type CreatePhoneNumbersModulePayloadSelect = {
|
|
|
12959
13171
|
};
|
|
12960
13172
|
export interface UpdatePhoneNumbersModulePayload {
|
|
12961
13173
|
clientMutationId?: string | null;
|
|
13174
|
+
/** The `PhoneNumbersModule` that was updated by this mutation. */
|
|
12962
13175
|
phoneNumbersModule?: PhoneNumbersModule | null;
|
|
12963
13176
|
phoneNumbersModuleEdge?: PhoneNumbersModuleEdge | null;
|
|
12964
13177
|
}
|
|
@@ -12973,6 +13186,7 @@ export type UpdatePhoneNumbersModulePayloadSelect = {
|
|
|
12973
13186
|
};
|
|
12974
13187
|
export interface DeletePhoneNumbersModulePayload {
|
|
12975
13188
|
clientMutationId?: string | null;
|
|
13189
|
+
/** The `PhoneNumbersModule` that was deleted by this mutation. */
|
|
12976
13190
|
phoneNumbersModule?: PhoneNumbersModule | null;
|
|
12977
13191
|
phoneNumbersModuleEdge?: PhoneNumbersModuleEdge | null;
|
|
12978
13192
|
}
|
|
@@ -12987,6 +13201,7 @@ export type DeletePhoneNumbersModulePayloadSelect = {
|
|
|
12987
13201
|
};
|
|
12988
13202
|
export interface CreateProfilesModulePayload {
|
|
12989
13203
|
clientMutationId?: string | null;
|
|
13204
|
+
/** The `ProfilesModule` that was created by this mutation. */
|
|
12990
13205
|
profilesModule?: ProfilesModule | null;
|
|
12991
13206
|
profilesModuleEdge?: ProfilesModuleEdge | null;
|
|
12992
13207
|
}
|
|
@@ -13001,6 +13216,7 @@ export type CreateProfilesModulePayloadSelect = {
|
|
|
13001
13216
|
};
|
|
13002
13217
|
export interface UpdateProfilesModulePayload {
|
|
13003
13218
|
clientMutationId?: string | null;
|
|
13219
|
+
/** The `ProfilesModule` that was updated by this mutation. */
|
|
13004
13220
|
profilesModule?: ProfilesModule | null;
|
|
13005
13221
|
profilesModuleEdge?: ProfilesModuleEdge | null;
|
|
13006
13222
|
}
|
|
@@ -13015,6 +13231,7 @@ export type UpdateProfilesModulePayloadSelect = {
|
|
|
13015
13231
|
};
|
|
13016
13232
|
export interface DeleteProfilesModulePayload {
|
|
13017
13233
|
clientMutationId?: string | null;
|
|
13234
|
+
/** The `ProfilesModule` that was deleted by this mutation. */
|
|
13018
13235
|
profilesModule?: ProfilesModule | null;
|
|
13019
13236
|
profilesModuleEdge?: ProfilesModuleEdge | null;
|
|
13020
13237
|
}
|
|
@@ -13029,6 +13246,7 @@ export type DeleteProfilesModulePayloadSelect = {
|
|
|
13029
13246
|
};
|
|
13030
13247
|
export interface CreateRlsModulePayload {
|
|
13031
13248
|
clientMutationId?: string | null;
|
|
13249
|
+
/** The `RlsModule` that was created by this mutation. */
|
|
13032
13250
|
rlsModule?: RlsModule | null;
|
|
13033
13251
|
rlsModuleEdge?: RlsModuleEdge | null;
|
|
13034
13252
|
}
|
|
@@ -13043,6 +13261,7 @@ export type CreateRlsModulePayloadSelect = {
|
|
|
13043
13261
|
};
|
|
13044
13262
|
export interface UpdateRlsModulePayload {
|
|
13045
13263
|
clientMutationId?: string | null;
|
|
13264
|
+
/** The `RlsModule` that was updated by this mutation. */
|
|
13046
13265
|
rlsModule?: RlsModule | null;
|
|
13047
13266
|
rlsModuleEdge?: RlsModuleEdge | null;
|
|
13048
13267
|
}
|
|
@@ -13057,6 +13276,7 @@ export type UpdateRlsModulePayloadSelect = {
|
|
|
13057
13276
|
};
|
|
13058
13277
|
export interface DeleteRlsModulePayload {
|
|
13059
13278
|
clientMutationId?: string | null;
|
|
13279
|
+
/** The `RlsModule` that was deleted by this mutation. */
|
|
13060
13280
|
rlsModule?: RlsModule | null;
|
|
13061
13281
|
rlsModuleEdge?: RlsModuleEdge | null;
|
|
13062
13282
|
}
|
|
@@ -13071,6 +13291,7 @@ export type DeleteRlsModulePayloadSelect = {
|
|
|
13071
13291
|
};
|
|
13072
13292
|
export interface CreateSecretsModulePayload {
|
|
13073
13293
|
clientMutationId?: string | null;
|
|
13294
|
+
/** The `SecretsModule` that was created by this mutation. */
|
|
13074
13295
|
secretsModule?: SecretsModule | null;
|
|
13075
13296
|
secretsModuleEdge?: SecretsModuleEdge | null;
|
|
13076
13297
|
}
|
|
@@ -13085,6 +13306,7 @@ export type CreateSecretsModulePayloadSelect = {
|
|
|
13085
13306
|
};
|
|
13086
13307
|
export interface UpdateSecretsModulePayload {
|
|
13087
13308
|
clientMutationId?: string | null;
|
|
13309
|
+
/** The `SecretsModule` that was updated by this mutation. */
|
|
13088
13310
|
secretsModule?: SecretsModule | null;
|
|
13089
13311
|
secretsModuleEdge?: SecretsModuleEdge | null;
|
|
13090
13312
|
}
|
|
@@ -13099,6 +13321,7 @@ export type UpdateSecretsModulePayloadSelect = {
|
|
|
13099
13321
|
};
|
|
13100
13322
|
export interface DeleteSecretsModulePayload {
|
|
13101
13323
|
clientMutationId?: string | null;
|
|
13324
|
+
/** The `SecretsModule` that was deleted by this mutation. */
|
|
13102
13325
|
secretsModule?: SecretsModule | null;
|
|
13103
13326
|
secretsModuleEdge?: SecretsModuleEdge | null;
|
|
13104
13327
|
}
|
|
@@ -13113,6 +13336,7 @@ export type DeleteSecretsModulePayloadSelect = {
|
|
|
13113
13336
|
};
|
|
13114
13337
|
export interface CreateSessionsModulePayload {
|
|
13115
13338
|
clientMutationId?: string | null;
|
|
13339
|
+
/** The `SessionsModule` that was created by this mutation. */
|
|
13116
13340
|
sessionsModule?: SessionsModule | null;
|
|
13117
13341
|
sessionsModuleEdge?: SessionsModuleEdge | null;
|
|
13118
13342
|
}
|
|
@@ -13127,6 +13351,7 @@ export type CreateSessionsModulePayloadSelect = {
|
|
|
13127
13351
|
};
|
|
13128
13352
|
export interface UpdateSessionsModulePayload {
|
|
13129
13353
|
clientMutationId?: string | null;
|
|
13354
|
+
/** The `SessionsModule` that was updated by this mutation. */
|
|
13130
13355
|
sessionsModule?: SessionsModule | null;
|
|
13131
13356
|
sessionsModuleEdge?: SessionsModuleEdge | null;
|
|
13132
13357
|
}
|
|
@@ -13141,6 +13366,7 @@ export type UpdateSessionsModulePayloadSelect = {
|
|
|
13141
13366
|
};
|
|
13142
13367
|
export interface DeleteSessionsModulePayload {
|
|
13143
13368
|
clientMutationId?: string | null;
|
|
13369
|
+
/** The `SessionsModule` that was deleted by this mutation. */
|
|
13144
13370
|
sessionsModule?: SessionsModule | null;
|
|
13145
13371
|
sessionsModuleEdge?: SessionsModuleEdge | null;
|
|
13146
13372
|
}
|
|
@@ -13155,6 +13381,7 @@ export type DeleteSessionsModulePayloadSelect = {
|
|
|
13155
13381
|
};
|
|
13156
13382
|
export interface CreateUserAuthModulePayload {
|
|
13157
13383
|
clientMutationId?: string | null;
|
|
13384
|
+
/** The `UserAuthModule` that was created by this mutation. */
|
|
13158
13385
|
userAuthModule?: UserAuthModule | null;
|
|
13159
13386
|
userAuthModuleEdge?: UserAuthModuleEdge | null;
|
|
13160
13387
|
}
|
|
@@ -13169,6 +13396,7 @@ export type CreateUserAuthModulePayloadSelect = {
|
|
|
13169
13396
|
};
|
|
13170
13397
|
export interface UpdateUserAuthModulePayload {
|
|
13171
13398
|
clientMutationId?: string | null;
|
|
13399
|
+
/** The `UserAuthModule` that was updated by this mutation. */
|
|
13172
13400
|
userAuthModule?: UserAuthModule | null;
|
|
13173
13401
|
userAuthModuleEdge?: UserAuthModuleEdge | null;
|
|
13174
13402
|
}
|
|
@@ -13183,6 +13411,7 @@ export type UpdateUserAuthModulePayloadSelect = {
|
|
|
13183
13411
|
};
|
|
13184
13412
|
export interface DeleteUserAuthModulePayload {
|
|
13185
13413
|
clientMutationId?: string | null;
|
|
13414
|
+
/** The `UserAuthModule` that was deleted by this mutation. */
|
|
13186
13415
|
userAuthModule?: UserAuthModule | null;
|
|
13187
13416
|
userAuthModuleEdge?: UserAuthModuleEdge | null;
|
|
13188
13417
|
}
|
|
@@ -13197,6 +13426,7 @@ export type DeleteUserAuthModulePayloadSelect = {
|
|
|
13197
13426
|
};
|
|
13198
13427
|
export interface CreateUsersModulePayload {
|
|
13199
13428
|
clientMutationId?: string | null;
|
|
13429
|
+
/** The `UsersModule` that was created by this mutation. */
|
|
13200
13430
|
usersModule?: UsersModule | null;
|
|
13201
13431
|
usersModuleEdge?: UsersModuleEdge | null;
|
|
13202
13432
|
}
|
|
@@ -13211,6 +13441,7 @@ export type CreateUsersModulePayloadSelect = {
|
|
|
13211
13441
|
};
|
|
13212
13442
|
export interface UpdateUsersModulePayload {
|
|
13213
13443
|
clientMutationId?: string | null;
|
|
13444
|
+
/** The `UsersModule` that was updated by this mutation. */
|
|
13214
13445
|
usersModule?: UsersModule | null;
|
|
13215
13446
|
usersModuleEdge?: UsersModuleEdge | null;
|
|
13216
13447
|
}
|
|
@@ -13225,6 +13456,7 @@ export type UpdateUsersModulePayloadSelect = {
|
|
|
13225
13456
|
};
|
|
13226
13457
|
export interface DeleteUsersModulePayload {
|
|
13227
13458
|
clientMutationId?: string | null;
|
|
13459
|
+
/** The `UsersModule` that was deleted by this mutation. */
|
|
13228
13460
|
usersModule?: UsersModule | null;
|
|
13229
13461
|
usersModuleEdge?: UsersModuleEdge | null;
|
|
13230
13462
|
}
|
|
@@ -13239,6 +13471,7 @@ export type DeleteUsersModulePayloadSelect = {
|
|
|
13239
13471
|
};
|
|
13240
13472
|
export interface CreateUuidModulePayload {
|
|
13241
13473
|
clientMutationId?: string | null;
|
|
13474
|
+
/** The `UuidModule` that was created by this mutation. */
|
|
13242
13475
|
uuidModule?: UuidModule | null;
|
|
13243
13476
|
uuidModuleEdge?: UuidModuleEdge | null;
|
|
13244
13477
|
}
|
|
@@ -13253,6 +13486,7 @@ export type CreateUuidModulePayloadSelect = {
|
|
|
13253
13486
|
};
|
|
13254
13487
|
export interface UpdateUuidModulePayload {
|
|
13255
13488
|
clientMutationId?: string | null;
|
|
13489
|
+
/** The `UuidModule` that was updated by this mutation. */
|
|
13256
13490
|
uuidModule?: UuidModule | null;
|
|
13257
13491
|
uuidModuleEdge?: UuidModuleEdge | null;
|
|
13258
13492
|
}
|
|
@@ -13267,6 +13501,7 @@ export type UpdateUuidModulePayloadSelect = {
|
|
|
13267
13501
|
};
|
|
13268
13502
|
export interface DeleteUuidModulePayload {
|
|
13269
13503
|
clientMutationId?: string | null;
|
|
13504
|
+
/** The `UuidModule` that was deleted by this mutation. */
|
|
13270
13505
|
uuidModule?: UuidModule | null;
|
|
13271
13506
|
uuidModuleEdge?: UuidModuleEdge | null;
|
|
13272
13507
|
}
|
|
@@ -13281,6 +13516,7 @@ export type DeleteUuidModulePayloadSelect = {
|
|
|
13281
13516
|
};
|
|
13282
13517
|
export interface CreateDatabaseProvisionModulePayload {
|
|
13283
13518
|
clientMutationId?: string | null;
|
|
13519
|
+
/** The `DatabaseProvisionModule` that was created by this mutation. */
|
|
13284
13520
|
databaseProvisionModule?: DatabaseProvisionModule | null;
|
|
13285
13521
|
databaseProvisionModuleEdge?: DatabaseProvisionModuleEdge | null;
|
|
13286
13522
|
}
|
|
@@ -13295,6 +13531,7 @@ export type CreateDatabaseProvisionModulePayloadSelect = {
|
|
|
13295
13531
|
};
|
|
13296
13532
|
export interface UpdateDatabaseProvisionModulePayload {
|
|
13297
13533
|
clientMutationId?: string | null;
|
|
13534
|
+
/** The `DatabaseProvisionModule` that was updated by this mutation. */
|
|
13298
13535
|
databaseProvisionModule?: DatabaseProvisionModule | null;
|
|
13299
13536
|
databaseProvisionModuleEdge?: DatabaseProvisionModuleEdge | null;
|
|
13300
13537
|
}
|
|
@@ -13309,6 +13546,7 @@ export type UpdateDatabaseProvisionModulePayloadSelect = {
|
|
|
13309
13546
|
};
|
|
13310
13547
|
export interface DeleteDatabaseProvisionModulePayload {
|
|
13311
13548
|
clientMutationId?: string | null;
|
|
13549
|
+
/** The `DatabaseProvisionModule` that was deleted by this mutation. */
|
|
13312
13550
|
databaseProvisionModule?: DatabaseProvisionModule | null;
|
|
13313
13551
|
databaseProvisionModuleEdge?: DatabaseProvisionModuleEdge | null;
|
|
13314
13552
|
}
|
|
@@ -13323,6 +13561,7 @@ export type DeleteDatabaseProvisionModulePayloadSelect = {
|
|
|
13323
13561
|
};
|
|
13324
13562
|
export interface CreateAppAdminGrantPayload {
|
|
13325
13563
|
clientMutationId?: string | null;
|
|
13564
|
+
/** The `AppAdminGrant` that was created by this mutation. */
|
|
13326
13565
|
appAdminGrant?: AppAdminGrant | null;
|
|
13327
13566
|
appAdminGrantEdge?: AppAdminGrantEdge | null;
|
|
13328
13567
|
}
|
|
@@ -13337,6 +13576,7 @@ export type CreateAppAdminGrantPayloadSelect = {
|
|
|
13337
13576
|
};
|
|
13338
13577
|
export interface UpdateAppAdminGrantPayload {
|
|
13339
13578
|
clientMutationId?: string | null;
|
|
13579
|
+
/** The `AppAdminGrant` that was updated by this mutation. */
|
|
13340
13580
|
appAdminGrant?: AppAdminGrant | null;
|
|
13341
13581
|
appAdminGrantEdge?: AppAdminGrantEdge | null;
|
|
13342
13582
|
}
|
|
@@ -13351,6 +13591,7 @@ export type UpdateAppAdminGrantPayloadSelect = {
|
|
|
13351
13591
|
};
|
|
13352
13592
|
export interface DeleteAppAdminGrantPayload {
|
|
13353
13593
|
clientMutationId?: string | null;
|
|
13594
|
+
/** The `AppAdminGrant` that was deleted by this mutation. */
|
|
13354
13595
|
appAdminGrant?: AppAdminGrant | null;
|
|
13355
13596
|
appAdminGrantEdge?: AppAdminGrantEdge | null;
|
|
13356
13597
|
}
|
|
@@ -13365,6 +13606,7 @@ export type DeleteAppAdminGrantPayloadSelect = {
|
|
|
13365
13606
|
};
|
|
13366
13607
|
export interface CreateAppOwnerGrantPayload {
|
|
13367
13608
|
clientMutationId?: string | null;
|
|
13609
|
+
/** The `AppOwnerGrant` that was created by this mutation. */
|
|
13368
13610
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
13369
13611
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
13370
13612
|
}
|
|
@@ -13379,6 +13621,7 @@ export type CreateAppOwnerGrantPayloadSelect = {
|
|
|
13379
13621
|
};
|
|
13380
13622
|
export interface UpdateAppOwnerGrantPayload {
|
|
13381
13623
|
clientMutationId?: string | null;
|
|
13624
|
+
/** The `AppOwnerGrant` that was updated by this mutation. */
|
|
13382
13625
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
13383
13626
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
13384
13627
|
}
|
|
@@ -13393,6 +13636,7 @@ export type UpdateAppOwnerGrantPayloadSelect = {
|
|
|
13393
13636
|
};
|
|
13394
13637
|
export interface DeleteAppOwnerGrantPayload {
|
|
13395
13638
|
clientMutationId?: string | null;
|
|
13639
|
+
/** The `AppOwnerGrant` that was deleted by this mutation. */
|
|
13396
13640
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
13397
13641
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
13398
13642
|
}
|
|
@@ -13407,6 +13651,7 @@ export type DeleteAppOwnerGrantPayloadSelect = {
|
|
|
13407
13651
|
};
|
|
13408
13652
|
export interface CreateAppGrantPayload {
|
|
13409
13653
|
clientMutationId?: string | null;
|
|
13654
|
+
/** The `AppGrant` that was created by this mutation. */
|
|
13410
13655
|
appGrant?: AppGrant | null;
|
|
13411
13656
|
appGrantEdge?: AppGrantEdge | null;
|
|
13412
13657
|
}
|
|
@@ -13421,6 +13666,7 @@ export type CreateAppGrantPayloadSelect = {
|
|
|
13421
13666
|
};
|
|
13422
13667
|
export interface UpdateAppGrantPayload {
|
|
13423
13668
|
clientMutationId?: string | null;
|
|
13669
|
+
/** The `AppGrant` that was updated by this mutation. */
|
|
13424
13670
|
appGrant?: AppGrant | null;
|
|
13425
13671
|
appGrantEdge?: AppGrantEdge | null;
|
|
13426
13672
|
}
|
|
@@ -13435,6 +13681,7 @@ export type UpdateAppGrantPayloadSelect = {
|
|
|
13435
13681
|
};
|
|
13436
13682
|
export interface DeleteAppGrantPayload {
|
|
13437
13683
|
clientMutationId?: string | null;
|
|
13684
|
+
/** The `AppGrant` that was deleted by this mutation. */
|
|
13438
13685
|
appGrant?: AppGrant | null;
|
|
13439
13686
|
appGrantEdge?: AppGrantEdge | null;
|
|
13440
13687
|
}
|
|
@@ -13449,6 +13696,7 @@ export type DeleteAppGrantPayloadSelect = {
|
|
|
13449
13696
|
};
|
|
13450
13697
|
export interface CreateOrgMembershipPayload {
|
|
13451
13698
|
clientMutationId?: string | null;
|
|
13699
|
+
/** The `OrgMembership` that was created by this mutation. */
|
|
13452
13700
|
orgMembership?: OrgMembership | null;
|
|
13453
13701
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
13454
13702
|
}
|
|
@@ -13463,6 +13711,7 @@ export type CreateOrgMembershipPayloadSelect = {
|
|
|
13463
13711
|
};
|
|
13464
13712
|
export interface UpdateOrgMembershipPayload {
|
|
13465
13713
|
clientMutationId?: string | null;
|
|
13714
|
+
/** The `OrgMembership` that was updated by this mutation. */
|
|
13466
13715
|
orgMembership?: OrgMembership | null;
|
|
13467
13716
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
13468
13717
|
}
|
|
@@ -13477,6 +13726,7 @@ export type UpdateOrgMembershipPayloadSelect = {
|
|
|
13477
13726
|
};
|
|
13478
13727
|
export interface DeleteOrgMembershipPayload {
|
|
13479
13728
|
clientMutationId?: string | null;
|
|
13729
|
+
/** The `OrgMembership` that was deleted by this mutation. */
|
|
13480
13730
|
orgMembership?: OrgMembership | null;
|
|
13481
13731
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
13482
13732
|
}
|
|
@@ -13491,6 +13741,7 @@ export type DeleteOrgMembershipPayloadSelect = {
|
|
|
13491
13741
|
};
|
|
13492
13742
|
export interface CreateOrgMemberPayload {
|
|
13493
13743
|
clientMutationId?: string | null;
|
|
13744
|
+
/** The `OrgMember` that was created by this mutation. */
|
|
13494
13745
|
orgMember?: OrgMember | null;
|
|
13495
13746
|
orgMemberEdge?: OrgMemberEdge | null;
|
|
13496
13747
|
}
|
|
@@ -13505,6 +13756,7 @@ export type CreateOrgMemberPayloadSelect = {
|
|
|
13505
13756
|
};
|
|
13506
13757
|
export interface UpdateOrgMemberPayload {
|
|
13507
13758
|
clientMutationId?: string | null;
|
|
13759
|
+
/** The `OrgMember` that was updated by this mutation. */
|
|
13508
13760
|
orgMember?: OrgMember | null;
|
|
13509
13761
|
orgMemberEdge?: OrgMemberEdge | null;
|
|
13510
13762
|
}
|
|
@@ -13519,6 +13771,7 @@ export type UpdateOrgMemberPayloadSelect = {
|
|
|
13519
13771
|
};
|
|
13520
13772
|
export interface DeleteOrgMemberPayload {
|
|
13521
13773
|
clientMutationId?: string | null;
|
|
13774
|
+
/** The `OrgMember` that was deleted by this mutation. */
|
|
13522
13775
|
orgMember?: OrgMember | null;
|
|
13523
13776
|
orgMemberEdge?: OrgMemberEdge | null;
|
|
13524
13777
|
}
|
|
@@ -13533,6 +13786,7 @@ export type DeleteOrgMemberPayloadSelect = {
|
|
|
13533
13786
|
};
|
|
13534
13787
|
export interface CreateOrgAdminGrantPayload {
|
|
13535
13788
|
clientMutationId?: string | null;
|
|
13789
|
+
/** The `OrgAdminGrant` that was created by this mutation. */
|
|
13536
13790
|
orgAdminGrant?: OrgAdminGrant | null;
|
|
13537
13791
|
orgAdminGrantEdge?: OrgAdminGrantEdge | null;
|
|
13538
13792
|
}
|
|
@@ -13547,6 +13801,7 @@ export type CreateOrgAdminGrantPayloadSelect = {
|
|
|
13547
13801
|
};
|
|
13548
13802
|
export interface UpdateOrgAdminGrantPayload {
|
|
13549
13803
|
clientMutationId?: string | null;
|
|
13804
|
+
/** The `OrgAdminGrant` that was updated by this mutation. */
|
|
13550
13805
|
orgAdminGrant?: OrgAdminGrant | null;
|
|
13551
13806
|
orgAdminGrantEdge?: OrgAdminGrantEdge | null;
|
|
13552
13807
|
}
|
|
@@ -13561,6 +13816,7 @@ export type UpdateOrgAdminGrantPayloadSelect = {
|
|
|
13561
13816
|
};
|
|
13562
13817
|
export interface DeleteOrgAdminGrantPayload {
|
|
13563
13818
|
clientMutationId?: string | null;
|
|
13819
|
+
/** The `OrgAdminGrant` that was deleted by this mutation. */
|
|
13564
13820
|
orgAdminGrant?: OrgAdminGrant | null;
|
|
13565
13821
|
orgAdminGrantEdge?: OrgAdminGrantEdge | null;
|
|
13566
13822
|
}
|
|
@@ -13575,6 +13831,7 @@ export type DeleteOrgAdminGrantPayloadSelect = {
|
|
|
13575
13831
|
};
|
|
13576
13832
|
export interface CreateOrgOwnerGrantPayload {
|
|
13577
13833
|
clientMutationId?: string | null;
|
|
13834
|
+
/** The `OrgOwnerGrant` that was created by this mutation. */
|
|
13578
13835
|
orgOwnerGrant?: OrgOwnerGrant | null;
|
|
13579
13836
|
orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
|
|
13580
13837
|
}
|
|
@@ -13589,6 +13846,7 @@ export type CreateOrgOwnerGrantPayloadSelect = {
|
|
|
13589
13846
|
};
|
|
13590
13847
|
export interface UpdateOrgOwnerGrantPayload {
|
|
13591
13848
|
clientMutationId?: string | null;
|
|
13849
|
+
/** The `OrgOwnerGrant` that was updated by this mutation. */
|
|
13592
13850
|
orgOwnerGrant?: OrgOwnerGrant | null;
|
|
13593
13851
|
orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
|
|
13594
13852
|
}
|
|
@@ -13603,6 +13861,7 @@ export type UpdateOrgOwnerGrantPayloadSelect = {
|
|
|
13603
13861
|
};
|
|
13604
13862
|
export interface DeleteOrgOwnerGrantPayload {
|
|
13605
13863
|
clientMutationId?: string | null;
|
|
13864
|
+
/** The `OrgOwnerGrant` that was deleted by this mutation. */
|
|
13606
13865
|
orgOwnerGrant?: OrgOwnerGrant | null;
|
|
13607
13866
|
orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
|
|
13608
13867
|
}
|
|
@@ -13617,6 +13876,7 @@ export type DeleteOrgOwnerGrantPayloadSelect = {
|
|
|
13617
13876
|
};
|
|
13618
13877
|
export interface CreateOrgGrantPayload {
|
|
13619
13878
|
clientMutationId?: string | null;
|
|
13879
|
+
/** The `OrgGrant` that was created by this mutation. */
|
|
13620
13880
|
orgGrant?: OrgGrant | null;
|
|
13621
13881
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
13622
13882
|
}
|
|
@@ -13631,6 +13891,7 @@ export type CreateOrgGrantPayloadSelect = {
|
|
|
13631
13891
|
};
|
|
13632
13892
|
export interface UpdateOrgGrantPayload {
|
|
13633
13893
|
clientMutationId?: string | null;
|
|
13894
|
+
/** The `OrgGrant` that was updated by this mutation. */
|
|
13634
13895
|
orgGrant?: OrgGrant | null;
|
|
13635
13896
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
13636
13897
|
}
|
|
@@ -13645,6 +13906,7 @@ export type UpdateOrgGrantPayloadSelect = {
|
|
|
13645
13906
|
};
|
|
13646
13907
|
export interface DeleteOrgGrantPayload {
|
|
13647
13908
|
clientMutationId?: string | null;
|
|
13909
|
+
/** The `OrgGrant` that was deleted by this mutation. */
|
|
13648
13910
|
orgGrant?: OrgGrant | null;
|
|
13649
13911
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
13650
13912
|
}
|
|
@@ -13659,6 +13921,7 @@ export type DeleteOrgGrantPayloadSelect = {
|
|
|
13659
13921
|
};
|
|
13660
13922
|
export interface CreateAppLimitPayload {
|
|
13661
13923
|
clientMutationId?: string | null;
|
|
13924
|
+
/** The `AppLimit` that was created by this mutation. */
|
|
13662
13925
|
appLimit?: AppLimit | null;
|
|
13663
13926
|
appLimitEdge?: AppLimitEdge | null;
|
|
13664
13927
|
}
|
|
@@ -13673,6 +13936,7 @@ export type CreateAppLimitPayloadSelect = {
|
|
|
13673
13936
|
};
|
|
13674
13937
|
export interface UpdateAppLimitPayload {
|
|
13675
13938
|
clientMutationId?: string | null;
|
|
13939
|
+
/** The `AppLimit` that was updated by this mutation. */
|
|
13676
13940
|
appLimit?: AppLimit | null;
|
|
13677
13941
|
appLimitEdge?: AppLimitEdge | null;
|
|
13678
13942
|
}
|
|
@@ -13687,6 +13951,7 @@ export type UpdateAppLimitPayloadSelect = {
|
|
|
13687
13951
|
};
|
|
13688
13952
|
export interface DeleteAppLimitPayload {
|
|
13689
13953
|
clientMutationId?: string | null;
|
|
13954
|
+
/** The `AppLimit` that was deleted by this mutation. */
|
|
13690
13955
|
appLimit?: AppLimit | null;
|
|
13691
13956
|
appLimitEdge?: AppLimitEdge | null;
|
|
13692
13957
|
}
|
|
@@ -13701,6 +13966,7 @@ export type DeleteAppLimitPayloadSelect = {
|
|
|
13701
13966
|
};
|
|
13702
13967
|
export interface CreateOrgLimitPayload {
|
|
13703
13968
|
clientMutationId?: string | null;
|
|
13969
|
+
/** The `OrgLimit` that was created by this mutation. */
|
|
13704
13970
|
orgLimit?: OrgLimit | null;
|
|
13705
13971
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
13706
13972
|
}
|
|
@@ -13715,6 +13981,7 @@ export type CreateOrgLimitPayloadSelect = {
|
|
|
13715
13981
|
};
|
|
13716
13982
|
export interface UpdateOrgLimitPayload {
|
|
13717
13983
|
clientMutationId?: string | null;
|
|
13984
|
+
/** The `OrgLimit` that was updated by this mutation. */
|
|
13718
13985
|
orgLimit?: OrgLimit | null;
|
|
13719
13986
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
13720
13987
|
}
|
|
@@ -13729,6 +13996,7 @@ export type UpdateOrgLimitPayloadSelect = {
|
|
|
13729
13996
|
};
|
|
13730
13997
|
export interface DeleteOrgLimitPayload {
|
|
13731
13998
|
clientMutationId?: string | null;
|
|
13999
|
+
/** The `OrgLimit` that was deleted by this mutation. */
|
|
13732
14000
|
orgLimit?: OrgLimit | null;
|
|
13733
14001
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
13734
14002
|
}
|
|
@@ -13743,6 +14011,7 @@ export type DeleteOrgLimitPayloadSelect = {
|
|
|
13743
14011
|
};
|
|
13744
14012
|
export interface CreateAppStepPayload {
|
|
13745
14013
|
clientMutationId?: string | null;
|
|
14014
|
+
/** The `AppStep` that was created by this mutation. */
|
|
13746
14015
|
appStep?: AppStep | null;
|
|
13747
14016
|
appStepEdge?: AppStepEdge | null;
|
|
13748
14017
|
}
|
|
@@ -13757,6 +14026,7 @@ export type CreateAppStepPayloadSelect = {
|
|
|
13757
14026
|
};
|
|
13758
14027
|
export interface UpdateAppStepPayload {
|
|
13759
14028
|
clientMutationId?: string | null;
|
|
14029
|
+
/** The `AppStep` that was updated by this mutation. */
|
|
13760
14030
|
appStep?: AppStep | null;
|
|
13761
14031
|
appStepEdge?: AppStepEdge | null;
|
|
13762
14032
|
}
|
|
@@ -13771,6 +14041,7 @@ export type UpdateAppStepPayloadSelect = {
|
|
|
13771
14041
|
};
|
|
13772
14042
|
export interface DeleteAppStepPayload {
|
|
13773
14043
|
clientMutationId?: string | null;
|
|
14044
|
+
/** The `AppStep` that was deleted by this mutation. */
|
|
13774
14045
|
appStep?: AppStep | null;
|
|
13775
14046
|
appStepEdge?: AppStepEdge | null;
|
|
13776
14047
|
}
|
|
@@ -13785,6 +14056,7 @@ export type DeleteAppStepPayloadSelect = {
|
|
|
13785
14056
|
};
|
|
13786
14057
|
export interface CreateAppAchievementPayload {
|
|
13787
14058
|
clientMutationId?: string | null;
|
|
14059
|
+
/** The `AppAchievement` that was created by this mutation. */
|
|
13788
14060
|
appAchievement?: AppAchievement | null;
|
|
13789
14061
|
appAchievementEdge?: AppAchievementEdge | null;
|
|
13790
14062
|
}
|
|
@@ -13799,6 +14071,7 @@ export type CreateAppAchievementPayloadSelect = {
|
|
|
13799
14071
|
};
|
|
13800
14072
|
export interface UpdateAppAchievementPayload {
|
|
13801
14073
|
clientMutationId?: string | null;
|
|
14074
|
+
/** The `AppAchievement` that was updated by this mutation. */
|
|
13802
14075
|
appAchievement?: AppAchievement | null;
|
|
13803
14076
|
appAchievementEdge?: AppAchievementEdge | null;
|
|
13804
14077
|
}
|
|
@@ -13813,6 +14086,7 @@ export type UpdateAppAchievementPayloadSelect = {
|
|
|
13813
14086
|
};
|
|
13814
14087
|
export interface DeleteAppAchievementPayload {
|
|
13815
14088
|
clientMutationId?: string | null;
|
|
14089
|
+
/** The `AppAchievement` that was deleted by this mutation. */
|
|
13816
14090
|
appAchievement?: AppAchievement | null;
|
|
13817
14091
|
appAchievementEdge?: AppAchievementEdge | null;
|
|
13818
14092
|
}
|
|
@@ -13827,6 +14101,7 @@ export type DeleteAppAchievementPayloadSelect = {
|
|
|
13827
14101
|
};
|
|
13828
14102
|
export interface CreateInvitePayload {
|
|
13829
14103
|
clientMutationId?: string | null;
|
|
14104
|
+
/** The `Invite` that was created by this mutation. */
|
|
13830
14105
|
invite?: Invite | null;
|
|
13831
14106
|
inviteEdge?: InviteEdge | null;
|
|
13832
14107
|
}
|
|
@@ -13841,6 +14116,7 @@ export type CreateInvitePayloadSelect = {
|
|
|
13841
14116
|
};
|
|
13842
14117
|
export interface UpdateInvitePayload {
|
|
13843
14118
|
clientMutationId?: string | null;
|
|
14119
|
+
/** The `Invite` that was updated by this mutation. */
|
|
13844
14120
|
invite?: Invite | null;
|
|
13845
14121
|
inviteEdge?: InviteEdge | null;
|
|
13846
14122
|
}
|
|
@@ -13855,6 +14131,7 @@ export type UpdateInvitePayloadSelect = {
|
|
|
13855
14131
|
};
|
|
13856
14132
|
export interface DeleteInvitePayload {
|
|
13857
14133
|
clientMutationId?: string | null;
|
|
14134
|
+
/** The `Invite` that was deleted by this mutation. */
|
|
13858
14135
|
invite?: Invite | null;
|
|
13859
14136
|
inviteEdge?: InviteEdge | null;
|
|
13860
14137
|
}
|
|
@@ -13869,6 +14146,7 @@ export type DeleteInvitePayloadSelect = {
|
|
|
13869
14146
|
};
|
|
13870
14147
|
export interface CreateClaimedInvitePayload {
|
|
13871
14148
|
clientMutationId?: string | null;
|
|
14149
|
+
/** The `ClaimedInvite` that was created by this mutation. */
|
|
13872
14150
|
claimedInvite?: ClaimedInvite | null;
|
|
13873
14151
|
claimedInviteEdge?: ClaimedInviteEdge | null;
|
|
13874
14152
|
}
|
|
@@ -13883,6 +14161,7 @@ export type CreateClaimedInvitePayloadSelect = {
|
|
|
13883
14161
|
};
|
|
13884
14162
|
export interface UpdateClaimedInvitePayload {
|
|
13885
14163
|
clientMutationId?: string | null;
|
|
14164
|
+
/** The `ClaimedInvite` that was updated by this mutation. */
|
|
13886
14165
|
claimedInvite?: ClaimedInvite | null;
|
|
13887
14166
|
claimedInviteEdge?: ClaimedInviteEdge | null;
|
|
13888
14167
|
}
|
|
@@ -13897,6 +14176,7 @@ export type UpdateClaimedInvitePayloadSelect = {
|
|
|
13897
14176
|
};
|
|
13898
14177
|
export interface DeleteClaimedInvitePayload {
|
|
13899
14178
|
clientMutationId?: string | null;
|
|
14179
|
+
/** The `ClaimedInvite` that was deleted by this mutation. */
|
|
13900
14180
|
claimedInvite?: ClaimedInvite | null;
|
|
13901
14181
|
claimedInviteEdge?: ClaimedInviteEdge | null;
|
|
13902
14182
|
}
|
|
@@ -13911,6 +14191,7 @@ export type DeleteClaimedInvitePayloadSelect = {
|
|
|
13911
14191
|
};
|
|
13912
14192
|
export interface CreateOrgInvitePayload {
|
|
13913
14193
|
clientMutationId?: string | null;
|
|
14194
|
+
/** The `OrgInvite` that was created by this mutation. */
|
|
13914
14195
|
orgInvite?: OrgInvite | null;
|
|
13915
14196
|
orgInviteEdge?: OrgInviteEdge | null;
|
|
13916
14197
|
}
|
|
@@ -13925,6 +14206,7 @@ export type CreateOrgInvitePayloadSelect = {
|
|
|
13925
14206
|
};
|
|
13926
14207
|
export interface UpdateOrgInvitePayload {
|
|
13927
14208
|
clientMutationId?: string | null;
|
|
14209
|
+
/** The `OrgInvite` that was updated by this mutation. */
|
|
13928
14210
|
orgInvite?: OrgInvite | null;
|
|
13929
14211
|
orgInviteEdge?: OrgInviteEdge | null;
|
|
13930
14212
|
}
|
|
@@ -13939,6 +14221,7 @@ export type UpdateOrgInvitePayloadSelect = {
|
|
|
13939
14221
|
};
|
|
13940
14222
|
export interface DeleteOrgInvitePayload {
|
|
13941
14223
|
clientMutationId?: string | null;
|
|
14224
|
+
/** The `OrgInvite` that was deleted by this mutation. */
|
|
13942
14225
|
orgInvite?: OrgInvite | null;
|
|
13943
14226
|
orgInviteEdge?: OrgInviteEdge | null;
|
|
13944
14227
|
}
|
|
@@ -13953,6 +14236,7 @@ export type DeleteOrgInvitePayloadSelect = {
|
|
|
13953
14236
|
};
|
|
13954
14237
|
export interface CreateOrgClaimedInvitePayload {
|
|
13955
14238
|
clientMutationId?: string | null;
|
|
14239
|
+
/** The `OrgClaimedInvite` that was created by this mutation. */
|
|
13956
14240
|
orgClaimedInvite?: OrgClaimedInvite | null;
|
|
13957
14241
|
orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
|
|
13958
14242
|
}
|
|
@@ -13967,6 +14251,7 @@ export type CreateOrgClaimedInvitePayloadSelect = {
|
|
|
13967
14251
|
};
|
|
13968
14252
|
export interface UpdateOrgClaimedInvitePayload {
|
|
13969
14253
|
clientMutationId?: string | null;
|
|
14254
|
+
/** The `OrgClaimedInvite` that was updated by this mutation. */
|
|
13970
14255
|
orgClaimedInvite?: OrgClaimedInvite | null;
|
|
13971
14256
|
orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
|
|
13972
14257
|
}
|
|
@@ -13981,6 +14266,7 @@ export type UpdateOrgClaimedInvitePayloadSelect = {
|
|
|
13981
14266
|
};
|
|
13982
14267
|
export interface DeleteOrgClaimedInvitePayload {
|
|
13983
14268
|
clientMutationId?: string | null;
|
|
14269
|
+
/** The `OrgClaimedInvite` that was deleted by this mutation. */
|
|
13984
14270
|
orgClaimedInvite?: OrgClaimedInvite | null;
|
|
13985
14271
|
orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
|
|
13986
14272
|
}
|
|
@@ -13995,6 +14281,7 @@ export type DeleteOrgClaimedInvitePayloadSelect = {
|
|
|
13995
14281
|
};
|
|
13996
14282
|
export interface CreateAppPermissionDefaultPayload {
|
|
13997
14283
|
clientMutationId?: string | null;
|
|
14284
|
+
/** The `AppPermissionDefault` that was created by this mutation. */
|
|
13998
14285
|
appPermissionDefault?: AppPermissionDefault | null;
|
|
13999
14286
|
appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
|
|
14000
14287
|
}
|
|
@@ -14009,6 +14296,7 @@ export type CreateAppPermissionDefaultPayloadSelect = {
|
|
|
14009
14296
|
};
|
|
14010
14297
|
export interface UpdateAppPermissionDefaultPayload {
|
|
14011
14298
|
clientMutationId?: string | null;
|
|
14299
|
+
/** The `AppPermissionDefault` that was updated by this mutation. */
|
|
14012
14300
|
appPermissionDefault?: AppPermissionDefault | null;
|
|
14013
14301
|
appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
|
|
14014
14302
|
}
|
|
@@ -14023,6 +14311,7 @@ export type UpdateAppPermissionDefaultPayloadSelect = {
|
|
|
14023
14311
|
};
|
|
14024
14312
|
export interface DeleteAppPermissionDefaultPayload {
|
|
14025
14313
|
clientMutationId?: string | null;
|
|
14314
|
+
/** The `AppPermissionDefault` that was deleted by this mutation. */
|
|
14026
14315
|
appPermissionDefault?: AppPermissionDefault | null;
|
|
14027
14316
|
appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
|
|
14028
14317
|
}
|
|
@@ -14037,6 +14326,7 @@ export type DeleteAppPermissionDefaultPayloadSelect = {
|
|
|
14037
14326
|
};
|
|
14038
14327
|
export interface CreateRefPayload {
|
|
14039
14328
|
clientMutationId?: string | null;
|
|
14329
|
+
/** The `Ref` that was created by this mutation. */
|
|
14040
14330
|
ref?: Ref | null;
|
|
14041
14331
|
refEdge?: RefEdge | null;
|
|
14042
14332
|
}
|
|
@@ -14051,6 +14341,7 @@ export type CreateRefPayloadSelect = {
|
|
|
14051
14341
|
};
|
|
14052
14342
|
export interface UpdateRefPayload {
|
|
14053
14343
|
clientMutationId?: string | null;
|
|
14344
|
+
/** The `Ref` that was updated by this mutation. */
|
|
14054
14345
|
ref?: Ref | null;
|
|
14055
14346
|
refEdge?: RefEdge | null;
|
|
14056
14347
|
}
|
|
@@ -14065,6 +14356,7 @@ export type UpdateRefPayloadSelect = {
|
|
|
14065
14356
|
};
|
|
14066
14357
|
export interface DeleteRefPayload {
|
|
14067
14358
|
clientMutationId?: string | null;
|
|
14359
|
+
/** The `Ref` that was deleted by this mutation. */
|
|
14068
14360
|
ref?: Ref | null;
|
|
14069
14361
|
refEdge?: RefEdge | null;
|
|
14070
14362
|
}
|
|
@@ -14079,6 +14371,7 @@ export type DeleteRefPayloadSelect = {
|
|
|
14079
14371
|
};
|
|
14080
14372
|
export interface CreateStorePayload {
|
|
14081
14373
|
clientMutationId?: string | null;
|
|
14374
|
+
/** The `Store` that was created by this mutation. */
|
|
14082
14375
|
store?: Store | null;
|
|
14083
14376
|
storeEdge?: StoreEdge | null;
|
|
14084
14377
|
}
|
|
@@ -14093,6 +14386,7 @@ export type CreateStorePayloadSelect = {
|
|
|
14093
14386
|
};
|
|
14094
14387
|
export interface UpdateStorePayload {
|
|
14095
14388
|
clientMutationId?: string | null;
|
|
14389
|
+
/** The `Store` that was updated by this mutation. */
|
|
14096
14390
|
store?: Store | null;
|
|
14097
14391
|
storeEdge?: StoreEdge | null;
|
|
14098
14392
|
}
|
|
@@ -14107,6 +14401,7 @@ export type UpdateStorePayloadSelect = {
|
|
|
14107
14401
|
};
|
|
14108
14402
|
export interface DeleteStorePayload {
|
|
14109
14403
|
clientMutationId?: string | null;
|
|
14404
|
+
/** The `Store` that was deleted by this mutation. */
|
|
14110
14405
|
store?: Store | null;
|
|
14111
14406
|
storeEdge?: StoreEdge | null;
|
|
14112
14407
|
}
|
|
@@ -14121,6 +14416,7 @@ export type DeleteStorePayloadSelect = {
|
|
|
14121
14416
|
};
|
|
14122
14417
|
export interface CreateRoleTypePayload {
|
|
14123
14418
|
clientMutationId?: string | null;
|
|
14419
|
+
/** The `RoleType` that was created by this mutation. */
|
|
14124
14420
|
roleType?: RoleType | null;
|
|
14125
14421
|
roleTypeEdge?: RoleTypeEdge | null;
|
|
14126
14422
|
}
|
|
@@ -14135,6 +14431,7 @@ export type CreateRoleTypePayloadSelect = {
|
|
|
14135
14431
|
};
|
|
14136
14432
|
export interface UpdateRoleTypePayload {
|
|
14137
14433
|
clientMutationId?: string | null;
|
|
14434
|
+
/** The `RoleType` that was updated by this mutation. */
|
|
14138
14435
|
roleType?: RoleType | null;
|
|
14139
14436
|
roleTypeEdge?: RoleTypeEdge | null;
|
|
14140
14437
|
}
|
|
@@ -14149,6 +14446,7 @@ export type UpdateRoleTypePayloadSelect = {
|
|
|
14149
14446
|
};
|
|
14150
14447
|
export interface DeleteRoleTypePayload {
|
|
14151
14448
|
clientMutationId?: string | null;
|
|
14449
|
+
/** The `RoleType` that was deleted by this mutation. */
|
|
14152
14450
|
roleType?: RoleType | null;
|
|
14153
14451
|
roleTypeEdge?: RoleTypeEdge | null;
|
|
14154
14452
|
}
|
|
@@ -14163,6 +14461,7 @@ export type DeleteRoleTypePayloadSelect = {
|
|
|
14163
14461
|
};
|
|
14164
14462
|
export interface CreateOrgPermissionDefaultPayload {
|
|
14165
14463
|
clientMutationId?: string | null;
|
|
14464
|
+
/** The `OrgPermissionDefault` that was created by this mutation. */
|
|
14166
14465
|
orgPermissionDefault?: OrgPermissionDefault | null;
|
|
14167
14466
|
orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
|
|
14168
14467
|
}
|
|
@@ -14177,6 +14476,7 @@ export type CreateOrgPermissionDefaultPayloadSelect = {
|
|
|
14177
14476
|
};
|
|
14178
14477
|
export interface UpdateOrgPermissionDefaultPayload {
|
|
14179
14478
|
clientMutationId?: string | null;
|
|
14479
|
+
/** The `OrgPermissionDefault` that was updated by this mutation. */
|
|
14180
14480
|
orgPermissionDefault?: OrgPermissionDefault | null;
|
|
14181
14481
|
orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
|
|
14182
14482
|
}
|
|
@@ -14191,6 +14491,7 @@ export type UpdateOrgPermissionDefaultPayloadSelect = {
|
|
|
14191
14491
|
};
|
|
14192
14492
|
export interface DeleteOrgPermissionDefaultPayload {
|
|
14193
14493
|
clientMutationId?: string | null;
|
|
14494
|
+
/** The `OrgPermissionDefault` that was deleted by this mutation. */
|
|
14194
14495
|
orgPermissionDefault?: OrgPermissionDefault | null;
|
|
14195
14496
|
orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
|
|
14196
14497
|
}
|
|
@@ -14205,6 +14506,7 @@ export type DeleteOrgPermissionDefaultPayloadSelect = {
|
|
|
14205
14506
|
};
|
|
14206
14507
|
export interface CreateAppLimitDefaultPayload {
|
|
14207
14508
|
clientMutationId?: string | null;
|
|
14509
|
+
/** The `AppLimitDefault` that was created by this mutation. */
|
|
14208
14510
|
appLimitDefault?: AppLimitDefault | null;
|
|
14209
14511
|
appLimitDefaultEdge?: AppLimitDefaultEdge | null;
|
|
14210
14512
|
}
|
|
@@ -14219,6 +14521,7 @@ export type CreateAppLimitDefaultPayloadSelect = {
|
|
|
14219
14521
|
};
|
|
14220
14522
|
export interface UpdateAppLimitDefaultPayload {
|
|
14221
14523
|
clientMutationId?: string | null;
|
|
14524
|
+
/** The `AppLimitDefault` that was updated by this mutation. */
|
|
14222
14525
|
appLimitDefault?: AppLimitDefault | null;
|
|
14223
14526
|
appLimitDefaultEdge?: AppLimitDefaultEdge | null;
|
|
14224
14527
|
}
|
|
@@ -14233,6 +14536,7 @@ export type UpdateAppLimitDefaultPayloadSelect = {
|
|
|
14233
14536
|
};
|
|
14234
14537
|
export interface DeleteAppLimitDefaultPayload {
|
|
14235
14538
|
clientMutationId?: string | null;
|
|
14539
|
+
/** The `AppLimitDefault` that was deleted by this mutation. */
|
|
14236
14540
|
appLimitDefault?: AppLimitDefault | null;
|
|
14237
14541
|
appLimitDefaultEdge?: AppLimitDefaultEdge | null;
|
|
14238
14542
|
}
|
|
@@ -14247,6 +14551,7 @@ export type DeleteAppLimitDefaultPayloadSelect = {
|
|
|
14247
14551
|
};
|
|
14248
14552
|
export interface CreateOrgLimitDefaultPayload {
|
|
14249
14553
|
clientMutationId?: string | null;
|
|
14554
|
+
/** The `OrgLimitDefault` that was created by this mutation. */
|
|
14250
14555
|
orgLimitDefault?: OrgLimitDefault | null;
|
|
14251
14556
|
orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
|
|
14252
14557
|
}
|
|
@@ -14261,6 +14566,7 @@ export type CreateOrgLimitDefaultPayloadSelect = {
|
|
|
14261
14566
|
};
|
|
14262
14567
|
export interface UpdateOrgLimitDefaultPayload {
|
|
14263
14568
|
clientMutationId?: string | null;
|
|
14569
|
+
/** The `OrgLimitDefault` that was updated by this mutation. */
|
|
14264
14570
|
orgLimitDefault?: OrgLimitDefault | null;
|
|
14265
14571
|
orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
|
|
14266
14572
|
}
|
|
@@ -14275,6 +14581,7 @@ export type UpdateOrgLimitDefaultPayloadSelect = {
|
|
|
14275
14581
|
};
|
|
14276
14582
|
export interface DeleteOrgLimitDefaultPayload {
|
|
14277
14583
|
clientMutationId?: string | null;
|
|
14584
|
+
/** The `OrgLimitDefault` that was deleted by this mutation. */
|
|
14278
14585
|
orgLimitDefault?: OrgLimitDefault | null;
|
|
14279
14586
|
orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
|
|
14280
14587
|
}
|
|
@@ -14289,6 +14596,7 @@ export type DeleteOrgLimitDefaultPayloadSelect = {
|
|
|
14289
14596
|
};
|
|
14290
14597
|
export interface CreateCryptoAddressPayload {
|
|
14291
14598
|
clientMutationId?: string | null;
|
|
14599
|
+
/** The `CryptoAddress` that was created by this mutation. */
|
|
14292
14600
|
cryptoAddress?: CryptoAddress | null;
|
|
14293
14601
|
cryptoAddressEdge?: CryptoAddressEdge | null;
|
|
14294
14602
|
}
|
|
@@ -14303,6 +14611,7 @@ export type CreateCryptoAddressPayloadSelect = {
|
|
|
14303
14611
|
};
|
|
14304
14612
|
export interface UpdateCryptoAddressPayload {
|
|
14305
14613
|
clientMutationId?: string | null;
|
|
14614
|
+
/** The `CryptoAddress` that was updated by this mutation. */
|
|
14306
14615
|
cryptoAddress?: CryptoAddress | null;
|
|
14307
14616
|
cryptoAddressEdge?: CryptoAddressEdge | null;
|
|
14308
14617
|
}
|
|
@@ -14317,6 +14626,7 @@ export type UpdateCryptoAddressPayloadSelect = {
|
|
|
14317
14626
|
};
|
|
14318
14627
|
export interface DeleteCryptoAddressPayload {
|
|
14319
14628
|
clientMutationId?: string | null;
|
|
14629
|
+
/** The `CryptoAddress` that was deleted by this mutation. */
|
|
14320
14630
|
cryptoAddress?: CryptoAddress | null;
|
|
14321
14631
|
cryptoAddressEdge?: CryptoAddressEdge | null;
|
|
14322
14632
|
}
|
|
@@ -14331,6 +14641,7 @@ export type DeleteCryptoAddressPayloadSelect = {
|
|
|
14331
14641
|
};
|
|
14332
14642
|
export interface CreateMembershipTypePayload {
|
|
14333
14643
|
clientMutationId?: string | null;
|
|
14644
|
+
/** The `MembershipType` that was created by this mutation. */
|
|
14334
14645
|
membershipType?: MembershipType | null;
|
|
14335
14646
|
membershipTypeEdge?: MembershipTypeEdge | null;
|
|
14336
14647
|
}
|
|
@@ -14345,6 +14656,7 @@ export type CreateMembershipTypePayloadSelect = {
|
|
|
14345
14656
|
};
|
|
14346
14657
|
export interface UpdateMembershipTypePayload {
|
|
14347
14658
|
clientMutationId?: string | null;
|
|
14659
|
+
/** The `MembershipType` that was updated by this mutation. */
|
|
14348
14660
|
membershipType?: MembershipType | null;
|
|
14349
14661
|
membershipTypeEdge?: MembershipTypeEdge | null;
|
|
14350
14662
|
}
|
|
@@ -14359,6 +14671,7 @@ export type UpdateMembershipTypePayloadSelect = {
|
|
|
14359
14671
|
};
|
|
14360
14672
|
export interface DeleteMembershipTypePayload {
|
|
14361
14673
|
clientMutationId?: string | null;
|
|
14674
|
+
/** The `MembershipType` that was deleted by this mutation. */
|
|
14362
14675
|
membershipType?: MembershipType | null;
|
|
14363
14676
|
membershipTypeEdge?: MembershipTypeEdge | null;
|
|
14364
14677
|
}
|
|
@@ -14373,6 +14686,7 @@ export type DeleteMembershipTypePayloadSelect = {
|
|
|
14373
14686
|
};
|
|
14374
14687
|
export interface CreateConnectedAccountPayload {
|
|
14375
14688
|
clientMutationId?: string | null;
|
|
14689
|
+
/** The `ConnectedAccount` that was created by this mutation. */
|
|
14376
14690
|
connectedAccount?: ConnectedAccount | null;
|
|
14377
14691
|
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
14378
14692
|
}
|
|
@@ -14387,6 +14701,7 @@ export type CreateConnectedAccountPayloadSelect = {
|
|
|
14387
14701
|
};
|
|
14388
14702
|
export interface UpdateConnectedAccountPayload {
|
|
14389
14703
|
clientMutationId?: string | null;
|
|
14704
|
+
/** The `ConnectedAccount` that was updated by this mutation. */
|
|
14390
14705
|
connectedAccount?: ConnectedAccount | null;
|
|
14391
14706
|
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
14392
14707
|
}
|
|
@@ -14401,6 +14716,7 @@ export type UpdateConnectedAccountPayloadSelect = {
|
|
|
14401
14716
|
};
|
|
14402
14717
|
export interface DeleteConnectedAccountPayload {
|
|
14403
14718
|
clientMutationId?: string | null;
|
|
14719
|
+
/** The `ConnectedAccount` that was deleted by this mutation. */
|
|
14404
14720
|
connectedAccount?: ConnectedAccount | null;
|
|
14405
14721
|
connectedAccountEdge?: ConnectedAccountEdge | null;
|
|
14406
14722
|
}
|
|
@@ -14415,6 +14731,7 @@ export type DeleteConnectedAccountPayloadSelect = {
|
|
|
14415
14731
|
};
|
|
14416
14732
|
export interface CreatePhoneNumberPayload {
|
|
14417
14733
|
clientMutationId?: string | null;
|
|
14734
|
+
/** The `PhoneNumber` that was created by this mutation. */
|
|
14418
14735
|
phoneNumber?: PhoneNumber | null;
|
|
14419
14736
|
phoneNumberEdge?: PhoneNumberEdge | null;
|
|
14420
14737
|
}
|
|
@@ -14429,6 +14746,7 @@ export type CreatePhoneNumberPayloadSelect = {
|
|
|
14429
14746
|
};
|
|
14430
14747
|
export interface UpdatePhoneNumberPayload {
|
|
14431
14748
|
clientMutationId?: string | null;
|
|
14749
|
+
/** The `PhoneNumber` that was updated by this mutation. */
|
|
14432
14750
|
phoneNumber?: PhoneNumber | null;
|
|
14433
14751
|
phoneNumberEdge?: PhoneNumberEdge | null;
|
|
14434
14752
|
}
|
|
@@ -14443,6 +14761,7 @@ export type UpdatePhoneNumberPayloadSelect = {
|
|
|
14443
14761
|
};
|
|
14444
14762
|
export interface DeletePhoneNumberPayload {
|
|
14445
14763
|
clientMutationId?: string | null;
|
|
14764
|
+
/** The `PhoneNumber` that was deleted by this mutation. */
|
|
14446
14765
|
phoneNumber?: PhoneNumber | null;
|
|
14447
14766
|
phoneNumberEdge?: PhoneNumberEdge | null;
|
|
14448
14767
|
}
|
|
@@ -14457,6 +14776,7 @@ export type DeletePhoneNumberPayloadSelect = {
|
|
|
14457
14776
|
};
|
|
14458
14777
|
export interface CreateAppMembershipDefaultPayload {
|
|
14459
14778
|
clientMutationId?: string | null;
|
|
14779
|
+
/** The `AppMembershipDefault` that was created by this mutation. */
|
|
14460
14780
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
14461
14781
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
14462
14782
|
}
|
|
@@ -14471,6 +14791,7 @@ export type CreateAppMembershipDefaultPayloadSelect = {
|
|
|
14471
14791
|
};
|
|
14472
14792
|
export interface UpdateAppMembershipDefaultPayload {
|
|
14473
14793
|
clientMutationId?: string | null;
|
|
14794
|
+
/** The `AppMembershipDefault` that was updated by this mutation. */
|
|
14474
14795
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
14475
14796
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
14476
14797
|
}
|
|
@@ -14485,6 +14806,7 @@ export type UpdateAppMembershipDefaultPayloadSelect = {
|
|
|
14485
14806
|
};
|
|
14486
14807
|
export interface DeleteAppMembershipDefaultPayload {
|
|
14487
14808
|
clientMutationId?: string | null;
|
|
14809
|
+
/** The `AppMembershipDefault` that was deleted by this mutation. */
|
|
14488
14810
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
14489
14811
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
14490
14812
|
}
|
|
@@ -14499,6 +14821,7 @@ export type DeleteAppMembershipDefaultPayloadSelect = {
|
|
|
14499
14821
|
};
|
|
14500
14822
|
export interface CreateNodeTypeRegistryPayload {
|
|
14501
14823
|
clientMutationId?: string | null;
|
|
14824
|
+
/** The `NodeTypeRegistry` that was created by this mutation. */
|
|
14502
14825
|
nodeTypeRegistry?: NodeTypeRegistry | null;
|
|
14503
14826
|
nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
|
|
14504
14827
|
}
|
|
@@ -14513,6 +14836,7 @@ export type CreateNodeTypeRegistryPayloadSelect = {
|
|
|
14513
14836
|
};
|
|
14514
14837
|
export interface UpdateNodeTypeRegistryPayload {
|
|
14515
14838
|
clientMutationId?: string | null;
|
|
14839
|
+
/** The `NodeTypeRegistry` that was updated by this mutation. */
|
|
14516
14840
|
nodeTypeRegistry?: NodeTypeRegistry | null;
|
|
14517
14841
|
nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
|
|
14518
14842
|
}
|
|
@@ -14527,6 +14851,7 @@ export type UpdateNodeTypeRegistryPayloadSelect = {
|
|
|
14527
14851
|
};
|
|
14528
14852
|
export interface DeleteNodeTypeRegistryPayload {
|
|
14529
14853
|
clientMutationId?: string | null;
|
|
14854
|
+
/** The `NodeTypeRegistry` that was deleted by this mutation. */
|
|
14530
14855
|
nodeTypeRegistry?: NodeTypeRegistry | null;
|
|
14531
14856
|
nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
|
|
14532
14857
|
}
|
|
@@ -14541,6 +14866,7 @@ export type DeleteNodeTypeRegistryPayloadSelect = {
|
|
|
14541
14866
|
};
|
|
14542
14867
|
export interface CreateCommitPayload {
|
|
14543
14868
|
clientMutationId?: string | null;
|
|
14869
|
+
/** The `Commit` that was created by this mutation. */
|
|
14544
14870
|
commit?: Commit | null;
|
|
14545
14871
|
commitEdge?: CommitEdge | null;
|
|
14546
14872
|
}
|
|
@@ -14555,6 +14881,7 @@ export type CreateCommitPayloadSelect = {
|
|
|
14555
14881
|
};
|
|
14556
14882
|
export interface UpdateCommitPayload {
|
|
14557
14883
|
clientMutationId?: string | null;
|
|
14884
|
+
/** The `Commit` that was updated by this mutation. */
|
|
14558
14885
|
commit?: Commit | null;
|
|
14559
14886
|
commitEdge?: CommitEdge | null;
|
|
14560
14887
|
}
|
|
@@ -14569,6 +14896,7 @@ export type UpdateCommitPayloadSelect = {
|
|
|
14569
14896
|
};
|
|
14570
14897
|
export interface DeleteCommitPayload {
|
|
14571
14898
|
clientMutationId?: string | null;
|
|
14899
|
+
/** The `Commit` that was deleted by this mutation. */
|
|
14572
14900
|
commit?: Commit | null;
|
|
14573
14901
|
commitEdge?: CommitEdge | null;
|
|
14574
14902
|
}
|
|
@@ -14583,6 +14911,7 @@ export type DeleteCommitPayloadSelect = {
|
|
|
14583
14911
|
};
|
|
14584
14912
|
export interface CreateOrgMembershipDefaultPayload {
|
|
14585
14913
|
clientMutationId?: string | null;
|
|
14914
|
+
/** The `OrgMembershipDefault` that was created by this mutation. */
|
|
14586
14915
|
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
14587
14916
|
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
14588
14917
|
}
|
|
@@ -14597,6 +14926,7 @@ export type CreateOrgMembershipDefaultPayloadSelect = {
|
|
|
14597
14926
|
};
|
|
14598
14927
|
export interface UpdateOrgMembershipDefaultPayload {
|
|
14599
14928
|
clientMutationId?: string | null;
|
|
14929
|
+
/** The `OrgMembershipDefault` that was updated by this mutation. */
|
|
14600
14930
|
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
14601
14931
|
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
14602
14932
|
}
|
|
@@ -14611,6 +14941,7 @@ export type UpdateOrgMembershipDefaultPayloadSelect = {
|
|
|
14611
14941
|
};
|
|
14612
14942
|
export interface DeleteOrgMembershipDefaultPayload {
|
|
14613
14943
|
clientMutationId?: string | null;
|
|
14944
|
+
/** The `OrgMembershipDefault` that was deleted by this mutation. */
|
|
14614
14945
|
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
14615
14946
|
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
14616
14947
|
}
|
|
@@ -14625,6 +14956,7 @@ export type DeleteOrgMembershipDefaultPayloadSelect = {
|
|
|
14625
14956
|
};
|
|
14626
14957
|
export interface CreateEmailPayload {
|
|
14627
14958
|
clientMutationId?: string | null;
|
|
14959
|
+
/** The `Email` that was created by this mutation. */
|
|
14628
14960
|
email?: Email | null;
|
|
14629
14961
|
emailEdge?: EmailEdge | null;
|
|
14630
14962
|
}
|
|
@@ -14639,6 +14971,7 @@ export type CreateEmailPayloadSelect = {
|
|
|
14639
14971
|
};
|
|
14640
14972
|
export interface UpdateEmailPayload {
|
|
14641
14973
|
clientMutationId?: string | null;
|
|
14974
|
+
/** The `Email` that was updated by this mutation. */
|
|
14642
14975
|
email?: Email | null;
|
|
14643
14976
|
emailEdge?: EmailEdge | null;
|
|
14644
14977
|
}
|
|
@@ -14653,6 +14986,7 @@ export type UpdateEmailPayloadSelect = {
|
|
|
14653
14986
|
};
|
|
14654
14987
|
export interface DeleteEmailPayload {
|
|
14655
14988
|
clientMutationId?: string | null;
|
|
14989
|
+
/** The `Email` that was deleted by this mutation. */
|
|
14656
14990
|
email?: Email | null;
|
|
14657
14991
|
emailEdge?: EmailEdge | null;
|
|
14658
14992
|
}
|
|
@@ -14667,6 +15001,7 @@ export type DeleteEmailPayloadSelect = {
|
|
|
14667
15001
|
};
|
|
14668
15002
|
export interface CreateAuditLogPayload {
|
|
14669
15003
|
clientMutationId?: string | null;
|
|
15004
|
+
/** The `AuditLog` that was created by this mutation. */
|
|
14670
15005
|
auditLog?: AuditLog | null;
|
|
14671
15006
|
auditLogEdge?: AuditLogEdge | null;
|
|
14672
15007
|
}
|
|
@@ -14681,6 +15016,7 @@ export type CreateAuditLogPayloadSelect = {
|
|
|
14681
15016
|
};
|
|
14682
15017
|
export interface UpdateAuditLogPayload {
|
|
14683
15018
|
clientMutationId?: string | null;
|
|
15019
|
+
/** The `AuditLog` that was updated by this mutation. */
|
|
14684
15020
|
auditLog?: AuditLog | null;
|
|
14685
15021
|
auditLogEdge?: AuditLogEdge | null;
|
|
14686
15022
|
}
|
|
@@ -14695,6 +15031,7 @@ export type UpdateAuditLogPayloadSelect = {
|
|
|
14695
15031
|
};
|
|
14696
15032
|
export interface DeleteAuditLogPayload {
|
|
14697
15033
|
clientMutationId?: string | null;
|
|
15034
|
+
/** The `AuditLog` that was deleted by this mutation. */
|
|
14698
15035
|
auditLog?: AuditLog | null;
|
|
14699
15036
|
auditLogEdge?: AuditLogEdge | null;
|
|
14700
15037
|
}
|
|
@@ -14709,6 +15046,7 @@ export type DeleteAuditLogPayloadSelect = {
|
|
|
14709
15046
|
};
|
|
14710
15047
|
export interface CreateAppLevelPayload {
|
|
14711
15048
|
clientMutationId?: string | null;
|
|
15049
|
+
/** The `AppLevel` that was created by this mutation. */
|
|
14712
15050
|
appLevel?: AppLevel | null;
|
|
14713
15051
|
appLevelEdge?: AppLevelEdge | null;
|
|
14714
15052
|
}
|
|
@@ -14723,6 +15061,7 @@ export type CreateAppLevelPayloadSelect = {
|
|
|
14723
15061
|
};
|
|
14724
15062
|
export interface UpdateAppLevelPayload {
|
|
14725
15063
|
clientMutationId?: string | null;
|
|
15064
|
+
/** The `AppLevel` that was updated by this mutation. */
|
|
14726
15065
|
appLevel?: AppLevel | null;
|
|
14727
15066
|
appLevelEdge?: AppLevelEdge | null;
|
|
14728
15067
|
}
|
|
@@ -14737,6 +15076,7 @@ export type UpdateAppLevelPayloadSelect = {
|
|
|
14737
15076
|
};
|
|
14738
15077
|
export interface DeleteAppLevelPayload {
|
|
14739
15078
|
clientMutationId?: string | null;
|
|
15079
|
+
/** The `AppLevel` that was deleted by this mutation. */
|
|
14740
15080
|
appLevel?: AppLevel | null;
|
|
14741
15081
|
appLevelEdge?: AppLevelEdge | null;
|
|
14742
15082
|
}
|
|
@@ -14751,6 +15091,7 @@ export type DeleteAppLevelPayloadSelect = {
|
|
|
14751
15091
|
};
|
|
14752
15092
|
export interface CreateSqlMigrationPayload {
|
|
14753
15093
|
clientMutationId?: string | null;
|
|
15094
|
+
/** The `SqlMigration` that was created by this mutation. */
|
|
14754
15095
|
sqlMigration?: SqlMigration | null;
|
|
14755
15096
|
}
|
|
14756
15097
|
export type CreateSqlMigrationPayloadSelect = {
|
|
@@ -14761,6 +15102,7 @@ export type CreateSqlMigrationPayloadSelect = {
|
|
|
14761
15102
|
};
|
|
14762
15103
|
export interface CreateAstMigrationPayload {
|
|
14763
15104
|
clientMutationId?: string | null;
|
|
15105
|
+
/** The `AstMigration` that was created by this mutation. */
|
|
14764
15106
|
astMigration?: AstMigration | null;
|
|
14765
15107
|
}
|
|
14766
15108
|
export type CreateAstMigrationPayloadSelect = {
|
|
@@ -14771,6 +15113,7 @@ export type CreateAstMigrationPayloadSelect = {
|
|
|
14771
15113
|
};
|
|
14772
15114
|
export interface CreateAppMembershipPayload {
|
|
14773
15115
|
clientMutationId?: string | null;
|
|
15116
|
+
/** The `AppMembership` that was created by this mutation. */
|
|
14774
15117
|
appMembership?: AppMembership | null;
|
|
14775
15118
|
appMembershipEdge?: AppMembershipEdge | null;
|
|
14776
15119
|
}
|
|
@@ -14785,6 +15128,7 @@ export type CreateAppMembershipPayloadSelect = {
|
|
|
14785
15128
|
};
|
|
14786
15129
|
export interface UpdateAppMembershipPayload {
|
|
14787
15130
|
clientMutationId?: string | null;
|
|
15131
|
+
/** The `AppMembership` that was updated by this mutation. */
|
|
14788
15132
|
appMembership?: AppMembership | null;
|
|
14789
15133
|
appMembershipEdge?: AppMembershipEdge | null;
|
|
14790
15134
|
}
|
|
@@ -14799,6 +15143,7 @@ export type UpdateAppMembershipPayloadSelect = {
|
|
|
14799
15143
|
};
|
|
14800
15144
|
export interface DeleteAppMembershipPayload {
|
|
14801
15145
|
clientMutationId?: string | null;
|
|
15146
|
+
/** The `AppMembership` that was deleted by this mutation. */
|
|
14802
15147
|
appMembership?: AppMembership | null;
|
|
14803
15148
|
appMembershipEdge?: AppMembershipEdge | null;
|
|
14804
15149
|
}
|
|
@@ -14813,6 +15158,7 @@ export type DeleteAppMembershipPayloadSelect = {
|
|
|
14813
15158
|
};
|
|
14814
15159
|
export interface CreateUserPayload {
|
|
14815
15160
|
clientMutationId?: string | null;
|
|
15161
|
+
/** The `User` that was created by this mutation. */
|
|
14816
15162
|
user?: User | null;
|
|
14817
15163
|
userEdge?: UserEdge | null;
|
|
14818
15164
|
}
|
|
@@ -14827,6 +15173,7 @@ export type CreateUserPayloadSelect = {
|
|
|
14827
15173
|
};
|
|
14828
15174
|
export interface UpdateUserPayload {
|
|
14829
15175
|
clientMutationId?: string | null;
|
|
15176
|
+
/** The `User` that was updated by this mutation. */
|
|
14830
15177
|
user?: User | null;
|
|
14831
15178
|
userEdge?: UserEdge | null;
|
|
14832
15179
|
}
|
|
@@ -14841,6 +15188,7 @@ export type UpdateUserPayloadSelect = {
|
|
|
14841
15188
|
};
|
|
14842
15189
|
export interface DeleteUserPayload {
|
|
14843
15190
|
clientMutationId?: string | null;
|
|
15191
|
+
/** The `User` that was deleted by this mutation. */
|
|
14844
15192
|
user?: User | null;
|
|
14845
15193
|
userEdge?: UserEdge | null;
|
|
14846
15194
|
}
|
|
@@ -14855,6 +15203,7 @@ export type DeleteUserPayloadSelect = {
|
|
|
14855
15203
|
};
|
|
14856
15204
|
export interface CreateHierarchyModulePayload {
|
|
14857
15205
|
clientMutationId?: string | null;
|
|
15206
|
+
/** The `HierarchyModule` that was created by this mutation. */
|
|
14858
15207
|
hierarchyModule?: HierarchyModule | null;
|
|
14859
15208
|
hierarchyModuleEdge?: HierarchyModuleEdge | null;
|
|
14860
15209
|
}
|
|
@@ -14869,6 +15218,7 @@ export type CreateHierarchyModulePayloadSelect = {
|
|
|
14869
15218
|
};
|
|
14870
15219
|
export interface UpdateHierarchyModulePayload {
|
|
14871
15220
|
clientMutationId?: string | null;
|
|
15221
|
+
/** The `HierarchyModule` that was updated by this mutation. */
|
|
14872
15222
|
hierarchyModule?: HierarchyModule | null;
|
|
14873
15223
|
hierarchyModuleEdge?: HierarchyModuleEdge | null;
|
|
14874
15224
|
}
|
|
@@ -14883,6 +15233,7 @@ export type UpdateHierarchyModulePayloadSelect = {
|
|
|
14883
15233
|
};
|
|
14884
15234
|
export interface DeleteHierarchyModulePayload {
|
|
14885
15235
|
clientMutationId?: string | null;
|
|
15236
|
+
/** The `HierarchyModule` that was deleted by this mutation. */
|
|
14886
15237
|
hierarchyModule?: HierarchyModule | null;
|
|
14887
15238
|
hierarchyModuleEdge?: HierarchyModuleEdge | null;
|
|
14888
15239
|
}
|
|
@@ -14895,8 +15246,10 @@ export type DeleteHierarchyModulePayloadSelect = {
|
|
|
14895
15246
|
select: HierarchyModuleEdgeSelect;
|
|
14896
15247
|
};
|
|
14897
15248
|
};
|
|
15249
|
+
/** A `AppPermission` edge in the connection. */
|
|
14898
15250
|
export interface AppPermissionEdge {
|
|
14899
15251
|
cursor?: string | null;
|
|
15252
|
+
/** The `AppPermission` at the end of the edge. */
|
|
14900
15253
|
node?: AppPermission | null;
|
|
14901
15254
|
}
|
|
14902
15255
|
export type AppPermissionEdgeSelect = {
|
|
@@ -14905,10 +15258,15 @@ export type AppPermissionEdgeSelect = {
|
|
|
14905
15258
|
select: AppPermissionSelect;
|
|
14906
15259
|
};
|
|
14907
15260
|
};
|
|
15261
|
+
/** Information about pagination in a connection. */
|
|
14908
15262
|
export interface PageInfo {
|
|
15263
|
+
/** When paginating forwards, are there more items? */
|
|
14909
15264
|
hasNextPage: boolean;
|
|
15265
|
+
/** When paginating backwards, are there more items? */
|
|
14910
15266
|
hasPreviousPage: boolean;
|
|
15267
|
+
/** When paginating backwards, the cursor to continue. */
|
|
14911
15268
|
startCursor?: string | null;
|
|
15269
|
+
/** When paginating forwards, the cursor to continue. */
|
|
14912
15270
|
endCursor?: string | null;
|
|
14913
15271
|
}
|
|
14914
15272
|
export type PageInfoSelect = {
|
|
@@ -14917,8 +15275,10 @@ export type PageInfoSelect = {
|
|
|
14917
15275
|
startCursor?: boolean;
|
|
14918
15276
|
endCursor?: boolean;
|
|
14919
15277
|
};
|
|
15278
|
+
/** A `OrgPermission` edge in the connection. */
|
|
14920
15279
|
export interface OrgPermissionEdge {
|
|
14921
15280
|
cursor?: string | null;
|
|
15281
|
+
/** The `OrgPermission` at the end of the edge. */
|
|
14922
15282
|
node?: OrgPermission | null;
|
|
14923
15283
|
}
|
|
14924
15284
|
export type OrgPermissionEdgeSelect = {
|
|
@@ -14927,8 +15287,10 @@ export type OrgPermissionEdgeSelect = {
|
|
|
14927
15287
|
select: OrgPermissionSelect;
|
|
14928
15288
|
};
|
|
14929
15289
|
};
|
|
15290
|
+
/** A `Object` edge in the connection. */
|
|
14930
15291
|
export interface ObjectEdge {
|
|
14931
15292
|
cursor?: string | null;
|
|
15293
|
+
/** The `Object` at the end of the edge. */
|
|
14932
15294
|
node?: Object | null;
|
|
14933
15295
|
}
|
|
14934
15296
|
export type ObjectEdgeSelect = {
|
|
@@ -14937,8 +15299,10 @@ export type ObjectEdgeSelect = {
|
|
|
14937
15299
|
select: ObjectSelect;
|
|
14938
15300
|
};
|
|
14939
15301
|
};
|
|
15302
|
+
/** A `AppLevelRequirement` edge in the connection. */
|
|
14940
15303
|
export interface AppLevelRequirementEdge {
|
|
14941
15304
|
cursor?: string | null;
|
|
15305
|
+
/** The `AppLevelRequirement` at the end of the edge. */
|
|
14942
15306
|
node?: AppLevelRequirement | null;
|
|
14943
15307
|
}
|
|
14944
15308
|
export type AppLevelRequirementEdgeSelect = {
|
|
@@ -15065,8 +15429,10 @@ export type SessionSelect = {
|
|
|
15065
15429
|
createdAt?: boolean;
|
|
15066
15430
|
updatedAt?: boolean;
|
|
15067
15431
|
};
|
|
15432
|
+
/** A `Database` edge in the connection. */
|
|
15068
15433
|
export interface DatabaseEdge {
|
|
15069
15434
|
cursor?: string | null;
|
|
15435
|
+
/** The `Database` at the end of the edge. */
|
|
15070
15436
|
node?: Database | null;
|
|
15071
15437
|
}
|
|
15072
15438
|
export type DatabaseEdgeSelect = {
|
|
@@ -15075,8 +15441,10 @@ export type DatabaseEdgeSelect = {
|
|
|
15075
15441
|
select: DatabaseSelect;
|
|
15076
15442
|
};
|
|
15077
15443
|
};
|
|
15444
|
+
/** A `Schema` edge in the connection. */
|
|
15078
15445
|
export interface SchemaEdge {
|
|
15079
15446
|
cursor?: string | null;
|
|
15447
|
+
/** The `Schema` at the end of the edge. */
|
|
15080
15448
|
node?: Schema | null;
|
|
15081
15449
|
}
|
|
15082
15450
|
export type SchemaEdgeSelect = {
|
|
@@ -15085,8 +15453,10 @@ export type SchemaEdgeSelect = {
|
|
|
15085
15453
|
select: SchemaSelect;
|
|
15086
15454
|
};
|
|
15087
15455
|
};
|
|
15456
|
+
/** A `Table` edge in the connection. */
|
|
15088
15457
|
export interface TableEdge {
|
|
15089
15458
|
cursor?: string | null;
|
|
15459
|
+
/** The `Table` at the end of the edge. */
|
|
15090
15460
|
node?: Table | null;
|
|
15091
15461
|
}
|
|
15092
15462
|
export type TableEdgeSelect = {
|
|
@@ -15095,8 +15465,10 @@ export type TableEdgeSelect = {
|
|
|
15095
15465
|
select: TableSelect;
|
|
15096
15466
|
};
|
|
15097
15467
|
};
|
|
15468
|
+
/** A `CheckConstraint` edge in the connection. */
|
|
15098
15469
|
export interface CheckConstraintEdge {
|
|
15099
15470
|
cursor?: string | null;
|
|
15471
|
+
/** The `CheckConstraint` at the end of the edge. */
|
|
15100
15472
|
node?: CheckConstraint | null;
|
|
15101
15473
|
}
|
|
15102
15474
|
export type CheckConstraintEdgeSelect = {
|
|
@@ -15105,8 +15477,10 @@ export type CheckConstraintEdgeSelect = {
|
|
|
15105
15477
|
select: CheckConstraintSelect;
|
|
15106
15478
|
};
|
|
15107
15479
|
};
|
|
15480
|
+
/** A `Field` edge in the connection. */
|
|
15108
15481
|
export interface FieldEdge {
|
|
15109
15482
|
cursor?: string | null;
|
|
15483
|
+
/** The `Field` at the end of the edge. */
|
|
15110
15484
|
node?: Field | null;
|
|
15111
15485
|
}
|
|
15112
15486
|
export type FieldEdgeSelect = {
|
|
@@ -15115,8 +15489,10 @@ export type FieldEdgeSelect = {
|
|
|
15115
15489
|
select: FieldSelect;
|
|
15116
15490
|
};
|
|
15117
15491
|
};
|
|
15492
|
+
/** A `ForeignKeyConstraint` edge in the connection. */
|
|
15118
15493
|
export interface ForeignKeyConstraintEdge {
|
|
15119
15494
|
cursor?: string | null;
|
|
15495
|
+
/** The `ForeignKeyConstraint` at the end of the edge. */
|
|
15120
15496
|
node?: ForeignKeyConstraint | null;
|
|
15121
15497
|
}
|
|
15122
15498
|
export type ForeignKeyConstraintEdgeSelect = {
|
|
@@ -15125,8 +15501,10 @@ export type ForeignKeyConstraintEdgeSelect = {
|
|
|
15125
15501
|
select: ForeignKeyConstraintSelect;
|
|
15126
15502
|
};
|
|
15127
15503
|
};
|
|
15504
|
+
/** A `FullTextSearch` edge in the connection. */
|
|
15128
15505
|
export interface FullTextSearchEdge {
|
|
15129
15506
|
cursor?: string | null;
|
|
15507
|
+
/** The `FullTextSearch` at the end of the edge. */
|
|
15130
15508
|
node?: FullTextSearch | null;
|
|
15131
15509
|
}
|
|
15132
15510
|
export type FullTextSearchEdgeSelect = {
|
|
@@ -15135,8 +15513,10 @@ export type FullTextSearchEdgeSelect = {
|
|
|
15135
15513
|
select: FullTextSearchSelect;
|
|
15136
15514
|
};
|
|
15137
15515
|
};
|
|
15516
|
+
/** A `Index` edge in the connection. */
|
|
15138
15517
|
export interface IndexEdge {
|
|
15139
15518
|
cursor?: string | null;
|
|
15519
|
+
/** The `Index` at the end of the edge. */
|
|
15140
15520
|
node?: Index | null;
|
|
15141
15521
|
}
|
|
15142
15522
|
export type IndexEdgeSelect = {
|
|
@@ -15145,8 +15525,10 @@ export type IndexEdgeSelect = {
|
|
|
15145
15525
|
select: IndexSelect;
|
|
15146
15526
|
};
|
|
15147
15527
|
};
|
|
15528
|
+
/** A `LimitFunction` edge in the connection. */
|
|
15148
15529
|
export interface LimitFunctionEdge {
|
|
15149
15530
|
cursor?: string | null;
|
|
15531
|
+
/** The `LimitFunction` at the end of the edge. */
|
|
15150
15532
|
node?: LimitFunction | null;
|
|
15151
15533
|
}
|
|
15152
15534
|
export type LimitFunctionEdgeSelect = {
|
|
@@ -15155,8 +15537,10 @@ export type LimitFunctionEdgeSelect = {
|
|
|
15155
15537
|
select: LimitFunctionSelect;
|
|
15156
15538
|
};
|
|
15157
15539
|
};
|
|
15540
|
+
/** A `Policy` edge in the connection. */
|
|
15158
15541
|
export interface PolicyEdge {
|
|
15159
15542
|
cursor?: string | null;
|
|
15543
|
+
/** The `Policy` at the end of the edge. */
|
|
15160
15544
|
node?: Policy | null;
|
|
15161
15545
|
}
|
|
15162
15546
|
export type PolicyEdgeSelect = {
|
|
@@ -15165,8 +15549,10 @@ export type PolicyEdgeSelect = {
|
|
|
15165
15549
|
select: PolicySelect;
|
|
15166
15550
|
};
|
|
15167
15551
|
};
|
|
15552
|
+
/** A `PrimaryKeyConstraint` edge in the connection. */
|
|
15168
15553
|
export interface PrimaryKeyConstraintEdge {
|
|
15169
15554
|
cursor?: string | null;
|
|
15555
|
+
/** The `PrimaryKeyConstraint` at the end of the edge. */
|
|
15170
15556
|
node?: PrimaryKeyConstraint | null;
|
|
15171
15557
|
}
|
|
15172
15558
|
export type PrimaryKeyConstraintEdgeSelect = {
|
|
@@ -15175,8 +15561,10 @@ export type PrimaryKeyConstraintEdgeSelect = {
|
|
|
15175
15561
|
select: PrimaryKeyConstraintSelect;
|
|
15176
15562
|
};
|
|
15177
15563
|
};
|
|
15564
|
+
/** A `TableGrant` edge in the connection. */
|
|
15178
15565
|
export interface TableGrantEdge {
|
|
15179
15566
|
cursor?: string | null;
|
|
15567
|
+
/** The `TableGrant` at the end of the edge. */
|
|
15180
15568
|
node?: TableGrant | null;
|
|
15181
15569
|
}
|
|
15182
15570
|
export type TableGrantEdgeSelect = {
|
|
@@ -15185,8 +15573,10 @@ export type TableGrantEdgeSelect = {
|
|
|
15185
15573
|
select: TableGrantSelect;
|
|
15186
15574
|
};
|
|
15187
15575
|
};
|
|
15576
|
+
/** A `Trigger` edge in the connection. */
|
|
15188
15577
|
export interface TriggerEdge {
|
|
15189
15578
|
cursor?: string | null;
|
|
15579
|
+
/** The `Trigger` at the end of the edge. */
|
|
15190
15580
|
node?: Trigger | null;
|
|
15191
15581
|
}
|
|
15192
15582
|
export type TriggerEdgeSelect = {
|
|
@@ -15195,8 +15585,10 @@ export type TriggerEdgeSelect = {
|
|
|
15195
15585
|
select: TriggerSelect;
|
|
15196
15586
|
};
|
|
15197
15587
|
};
|
|
15588
|
+
/** A `UniqueConstraint` edge in the connection. */
|
|
15198
15589
|
export interface UniqueConstraintEdge {
|
|
15199
15590
|
cursor?: string | null;
|
|
15591
|
+
/** The `UniqueConstraint` at the end of the edge. */
|
|
15200
15592
|
node?: UniqueConstraint | null;
|
|
15201
15593
|
}
|
|
15202
15594
|
export type UniqueConstraintEdgeSelect = {
|
|
@@ -15205,8 +15597,10 @@ export type UniqueConstraintEdgeSelect = {
|
|
|
15205
15597
|
select: UniqueConstraintSelect;
|
|
15206
15598
|
};
|
|
15207
15599
|
};
|
|
15600
|
+
/** A `View` edge in the connection. */
|
|
15208
15601
|
export interface ViewEdge {
|
|
15209
15602
|
cursor?: string | null;
|
|
15603
|
+
/** The `View` at the end of the edge. */
|
|
15210
15604
|
node?: View | null;
|
|
15211
15605
|
}
|
|
15212
15606
|
export type ViewEdgeSelect = {
|
|
@@ -15215,8 +15609,10 @@ export type ViewEdgeSelect = {
|
|
|
15215
15609
|
select: ViewSelect;
|
|
15216
15610
|
};
|
|
15217
15611
|
};
|
|
15612
|
+
/** A `ViewTable` edge in the connection. */
|
|
15218
15613
|
export interface ViewTableEdge {
|
|
15219
15614
|
cursor?: string | null;
|
|
15615
|
+
/** The `ViewTable` at the end of the edge. */
|
|
15220
15616
|
node?: ViewTable | null;
|
|
15221
15617
|
}
|
|
15222
15618
|
export type ViewTableEdgeSelect = {
|
|
@@ -15225,8 +15621,10 @@ export type ViewTableEdgeSelect = {
|
|
|
15225
15621
|
select: ViewTableSelect;
|
|
15226
15622
|
};
|
|
15227
15623
|
};
|
|
15624
|
+
/** A `ViewGrant` edge in the connection. */
|
|
15228
15625
|
export interface ViewGrantEdge {
|
|
15229
15626
|
cursor?: string | null;
|
|
15627
|
+
/** The `ViewGrant` at the end of the edge. */
|
|
15230
15628
|
node?: ViewGrant | null;
|
|
15231
15629
|
}
|
|
15232
15630
|
export type ViewGrantEdgeSelect = {
|
|
@@ -15235,8 +15633,10 @@ export type ViewGrantEdgeSelect = {
|
|
|
15235
15633
|
select: ViewGrantSelect;
|
|
15236
15634
|
};
|
|
15237
15635
|
};
|
|
15636
|
+
/** A `ViewRule` edge in the connection. */
|
|
15238
15637
|
export interface ViewRuleEdge {
|
|
15239
15638
|
cursor?: string | null;
|
|
15639
|
+
/** The `ViewRule` at the end of the edge. */
|
|
15240
15640
|
node?: ViewRule | null;
|
|
15241
15641
|
}
|
|
15242
15642
|
export type ViewRuleEdgeSelect = {
|
|
@@ -15245,8 +15645,10 @@ export type ViewRuleEdgeSelect = {
|
|
|
15245
15645
|
select: ViewRuleSelect;
|
|
15246
15646
|
};
|
|
15247
15647
|
};
|
|
15648
|
+
/** A `TableModule` edge in the connection. */
|
|
15248
15649
|
export interface TableModuleEdge {
|
|
15249
15650
|
cursor?: string | null;
|
|
15651
|
+
/** The `TableModule` at the end of the edge. */
|
|
15250
15652
|
node?: TableModule | null;
|
|
15251
15653
|
}
|
|
15252
15654
|
export type TableModuleEdgeSelect = {
|
|
@@ -15255,8 +15657,10 @@ export type TableModuleEdgeSelect = {
|
|
|
15255
15657
|
select: TableModuleSelect;
|
|
15256
15658
|
};
|
|
15257
15659
|
};
|
|
15660
|
+
/** A `TableTemplateModule` edge in the connection. */
|
|
15258
15661
|
export interface TableTemplateModuleEdge {
|
|
15259
15662
|
cursor?: string | null;
|
|
15663
|
+
/** The `TableTemplateModule` at the end of the edge. */
|
|
15260
15664
|
node?: TableTemplateModule | null;
|
|
15261
15665
|
}
|
|
15262
15666
|
export type TableTemplateModuleEdgeSelect = {
|
|
@@ -15265,8 +15669,10 @@ export type TableTemplateModuleEdgeSelect = {
|
|
|
15265
15669
|
select: TableTemplateModuleSelect;
|
|
15266
15670
|
};
|
|
15267
15671
|
};
|
|
15672
|
+
/** A `SchemaGrant` edge in the connection. */
|
|
15268
15673
|
export interface SchemaGrantEdge {
|
|
15269
15674
|
cursor?: string | null;
|
|
15675
|
+
/** The `SchemaGrant` at the end of the edge. */
|
|
15270
15676
|
node?: SchemaGrant | null;
|
|
15271
15677
|
}
|
|
15272
15678
|
export type SchemaGrantEdgeSelect = {
|
|
@@ -15275,8 +15681,10 @@ export type SchemaGrantEdgeSelect = {
|
|
|
15275
15681
|
select: SchemaGrantSelect;
|
|
15276
15682
|
};
|
|
15277
15683
|
};
|
|
15684
|
+
/** A `ApiSchema` edge in the connection. */
|
|
15278
15685
|
export interface ApiSchemaEdge {
|
|
15279
15686
|
cursor?: string | null;
|
|
15687
|
+
/** The `ApiSchema` at the end of the edge. */
|
|
15280
15688
|
node?: ApiSchema | null;
|
|
15281
15689
|
}
|
|
15282
15690
|
export type ApiSchemaEdgeSelect = {
|
|
@@ -15285,8 +15693,10 @@ export type ApiSchemaEdgeSelect = {
|
|
|
15285
15693
|
select: ApiSchemaSelect;
|
|
15286
15694
|
};
|
|
15287
15695
|
};
|
|
15696
|
+
/** A `ApiModule` edge in the connection. */
|
|
15288
15697
|
export interface ApiModuleEdge {
|
|
15289
15698
|
cursor?: string | null;
|
|
15699
|
+
/** The `ApiModule` at the end of the edge. */
|
|
15290
15700
|
node?: ApiModule | null;
|
|
15291
15701
|
}
|
|
15292
15702
|
export type ApiModuleEdgeSelect = {
|
|
@@ -15295,8 +15705,10 @@ export type ApiModuleEdgeSelect = {
|
|
|
15295
15705
|
select: ApiModuleSelect;
|
|
15296
15706
|
};
|
|
15297
15707
|
};
|
|
15708
|
+
/** A `Domain` edge in the connection. */
|
|
15298
15709
|
export interface DomainEdge {
|
|
15299
15710
|
cursor?: string | null;
|
|
15711
|
+
/** The `Domain` at the end of the edge. */
|
|
15300
15712
|
node?: Domain | null;
|
|
15301
15713
|
}
|
|
15302
15714
|
export type DomainEdgeSelect = {
|
|
@@ -15305,8 +15717,10 @@ export type DomainEdgeSelect = {
|
|
|
15305
15717
|
select: DomainSelect;
|
|
15306
15718
|
};
|
|
15307
15719
|
};
|
|
15720
|
+
/** A `SiteMetadatum` edge in the connection. */
|
|
15308
15721
|
export interface SiteMetadatumEdge {
|
|
15309
15722
|
cursor?: string | null;
|
|
15723
|
+
/** The `SiteMetadatum` at the end of the edge. */
|
|
15310
15724
|
node?: SiteMetadatum | null;
|
|
15311
15725
|
}
|
|
15312
15726
|
export type SiteMetadatumEdgeSelect = {
|
|
@@ -15315,8 +15729,10 @@ export type SiteMetadatumEdgeSelect = {
|
|
|
15315
15729
|
select: SiteMetadatumSelect;
|
|
15316
15730
|
};
|
|
15317
15731
|
};
|
|
15732
|
+
/** A `SiteModule` edge in the connection. */
|
|
15318
15733
|
export interface SiteModuleEdge {
|
|
15319
15734
|
cursor?: string | null;
|
|
15735
|
+
/** The `SiteModule` at the end of the edge. */
|
|
15320
15736
|
node?: SiteModule | null;
|
|
15321
15737
|
}
|
|
15322
15738
|
export type SiteModuleEdgeSelect = {
|
|
@@ -15325,8 +15741,10 @@ export type SiteModuleEdgeSelect = {
|
|
|
15325
15741
|
select: SiteModuleSelect;
|
|
15326
15742
|
};
|
|
15327
15743
|
};
|
|
15744
|
+
/** A `SiteTheme` edge in the connection. */
|
|
15328
15745
|
export interface SiteThemeEdge {
|
|
15329
15746
|
cursor?: string | null;
|
|
15747
|
+
/** The `SiteTheme` at the end of the edge. */
|
|
15330
15748
|
node?: SiteTheme | null;
|
|
15331
15749
|
}
|
|
15332
15750
|
export type SiteThemeEdgeSelect = {
|
|
@@ -15335,8 +15753,10 @@ export type SiteThemeEdgeSelect = {
|
|
|
15335
15753
|
select: SiteThemeSelect;
|
|
15336
15754
|
};
|
|
15337
15755
|
};
|
|
15756
|
+
/** A `Procedure` edge in the connection. */
|
|
15338
15757
|
export interface ProcedureEdge {
|
|
15339
15758
|
cursor?: string | null;
|
|
15759
|
+
/** The `Procedure` at the end of the edge. */
|
|
15340
15760
|
node?: Procedure | null;
|
|
15341
15761
|
}
|
|
15342
15762
|
export type ProcedureEdgeSelect = {
|
|
@@ -15345,8 +15765,10 @@ export type ProcedureEdgeSelect = {
|
|
|
15345
15765
|
select: ProcedureSelect;
|
|
15346
15766
|
};
|
|
15347
15767
|
};
|
|
15768
|
+
/** A `TriggerFunction` edge in the connection. */
|
|
15348
15769
|
export interface TriggerFunctionEdge {
|
|
15349
15770
|
cursor?: string | null;
|
|
15771
|
+
/** The `TriggerFunction` at the end of the edge. */
|
|
15350
15772
|
node?: TriggerFunction | null;
|
|
15351
15773
|
}
|
|
15352
15774
|
export type TriggerFunctionEdgeSelect = {
|
|
@@ -15355,8 +15777,10 @@ export type TriggerFunctionEdgeSelect = {
|
|
|
15355
15777
|
select: TriggerFunctionSelect;
|
|
15356
15778
|
};
|
|
15357
15779
|
};
|
|
15780
|
+
/** A `Api` edge in the connection. */
|
|
15358
15781
|
export interface ApiEdge {
|
|
15359
15782
|
cursor?: string | null;
|
|
15783
|
+
/** The `Api` at the end of the edge. */
|
|
15360
15784
|
node?: Api | null;
|
|
15361
15785
|
}
|
|
15362
15786
|
export type ApiEdgeSelect = {
|
|
@@ -15365,8 +15789,10 @@ export type ApiEdgeSelect = {
|
|
|
15365
15789
|
select: ApiSelect;
|
|
15366
15790
|
};
|
|
15367
15791
|
};
|
|
15792
|
+
/** A `Site` edge in the connection. */
|
|
15368
15793
|
export interface SiteEdge {
|
|
15369
15794
|
cursor?: string | null;
|
|
15795
|
+
/** The `Site` at the end of the edge. */
|
|
15370
15796
|
node?: Site | null;
|
|
15371
15797
|
}
|
|
15372
15798
|
export type SiteEdgeSelect = {
|
|
@@ -15375,8 +15801,10 @@ export type SiteEdgeSelect = {
|
|
|
15375
15801
|
select: SiteSelect;
|
|
15376
15802
|
};
|
|
15377
15803
|
};
|
|
15804
|
+
/** A `App` edge in the connection. */
|
|
15378
15805
|
export interface AppEdge {
|
|
15379
15806
|
cursor?: string | null;
|
|
15807
|
+
/** The `App` at the end of the edge. */
|
|
15380
15808
|
node?: App | null;
|
|
15381
15809
|
}
|
|
15382
15810
|
export type AppEdgeSelect = {
|
|
@@ -15385,8 +15813,10 @@ export type AppEdgeSelect = {
|
|
|
15385
15813
|
select: AppSelect;
|
|
15386
15814
|
};
|
|
15387
15815
|
};
|
|
15816
|
+
/** A `ConnectedAccountsModule` edge in the connection. */
|
|
15388
15817
|
export interface ConnectedAccountsModuleEdge {
|
|
15389
15818
|
cursor?: string | null;
|
|
15819
|
+
/** The `ConnectedAccountsModule` at the end of the edge. */
|
|
15390
15820
|
node?: ConnectedAccountsModule | null;
|
|
15391
15821
|
}
|
|
15392
15822
|
export type ConnectedAccountsModuleEdgeSelect = {
|
|
@@ -15395,8 +15825,10 @@ export type ConnectedAccountsModuleEdgeSelect = {
|
|
|
15395
15825
|
select: ConnectedAccountsModuleSelect;
|
|
15396
15826
|
};
|
|
15397
15827
|
};
|
|
15828
|
+
/** A `CryptoAddressesModule` edge in the connection. */
|
|
15398
15829
|
export interface CryptoAddressesModuleEdge {
|
|
15399
15830
|
cursor?: string | null;
|
|
15831
|
+
/** The `CryptoAddressesModule` at the end of the edge. */
|
|
15400
15832
|
node?: CryptoAddressesModule | null;
|
|
15401
15833
|
}
|
|
15402
15834
|
export type CryptoAddressesModuleEdgeSelect = {
|
|
@@ -15405,8 +15837,10 @@ export type CryptoAddressesModuleEdgeSelect = {
|
|
|
15405
15837
|
select: CryptoAddressesModuleSelect;
|
|
15406
15838
|
};
|
|
15407
15839
|
};
|
|
15840
|
+
/** A `CryptoAuthModule` edge in the connection. */
|
|
15408
15841
|
export interface CryptoAuthModuleEdge {
|
|
15409
15842
|
cursor?: string | null;
|
|
15843
|
+
/** The `CryptoAuthModule` at the end of the edge. */
|
|
15410
15844
|
node?: CryptoAuthModule | null;
|
|
15411
15845
|
}
|
|
15412
15846
|
export type CryptoAuthModuleEdgeSelect = {
|
|
@@ -15415,8 +15849,10 @@ export type CryptoAuthModuleEdgeSelect = {
|
|
|
15415
15849
|
select: CryptoAuthModuleSelect;
|
|
15416
15850
|
};
|
|
15417
15851
|
};
|
|
15852
|
+
/** A `DefaultIdsModule` edge in the connection. */
|
|
15418
15853
|
export interface DefaultIdsModuleEdge {
|
|
15419
15854
|
cursor?: string | null;
|
|
15855
|
+
/** The `DefaultIdsModule` at the end of the edge. */
|
|
15420
15856
|
node?: DefaultIdsModule | null;
|
|
15421
15857
|
}
|
|
15422
15858
|
export type DefaultIdsModuleEdgeSelect = {
|
|
@@ -15425,8 +15861,10 @@ export type DefaultIdsModuleEdgeSelect = {
|
|
|
15425
15861
|
select: DefaultIdsModuleSelect;
|
|
15426
15862
|
};
|
|
15427
15863
|
};
|
|
15864
|
+
/** A `DenormalizedTableField` edge in the connection. */
|
|
15428
15865
|
export interface DenormalizedTableFieldEdge {
|
|
15429
15866
|
cursor?: string | null;
|
|
15867
|
+
/** The `DenormalizedTableField` at the end of the edge. */
|
|
15430
15868
|
node?: DenormalizedTableField | null;
|
|
15431
15869
|
}
|
|
15432
15870
|
export type DenormalizedTableFieldEdgeSelect = {
|
|
@@ -15435,8 +15873,10 @@ export type DenormalizedTableFieldEdgeSelect = {
|
|
|
15435
15873
|
select: DenormalizedTableFieldSelect;
|
|
15436
15874
|
};
|
|
15437
15875
|
};
|
|
15876
|
+
/** A `EmailsModule` edge in the connection. */
|
|
15438
15877
|
export interface EmailsModuleEdge {
|
|
15439
15878
|
cursor?: string | null;
|
|
15879
|
+
/** The `EmailsModule` at the end of the edge. */
|
|
15440
15880
|
node?: EmailsModule | null;
|
|
15441
15881
|
}
|
|
15442
15882
|
export type EmailsModuleEdgeSelect = {
|
|
@@ -15445,8 +15885,10 @@ export type EmailsModuleEdgeSelect = {
|
|
|
15445
15885
|
select: EmailsModuleSelect;
|
|
15446
15886
|
};
|
|
15447
15887
|
};
|
|
15888
|
+
/** A `EncryptedSecretsModule` edge in the connection. */
|
|
15448
15889
|
export interface EncryptedSecretsModuleEdge {
|
|
15449
15890
|
cursor?: string | null;
|
|
15891
|
+
/** The `EncryptedSecretsModule` at the end of the edge. */
|
|
15450
15892
|
node?: EncryptedSecretsModule | null;
|
|
15451
15893
|
}
|
|
15452
15894
|
export type EncryptedSecretsModuleEdgeSelect = {
|
|
@@ -15455,8 +15897,10 @@ export type EncryptedSecretsModuleEdgeSelect = {
|
|
|
15455
15897
|
select: EncryptedSecretsModuleSelect;
|
|
15456
15898
|
};
|
|
15457
15899
|
};
|
|
15900
|
+
/** A `FieldModule` edge in the connection. */
|
|
15458
15901
|
export interface FieldModuleEdge {
|
|
15459
15902
|
cursor?: string | null;
|
|
15903
|
+
/** The `FieldModule` at the end of the edge. */
|
|
15460
15904
|
node?: FieldModule | null;
|
|
15461
15905
|
}
|
|
15462
15906
|
export type FieldModuleEdgeSelect = {
|
|
@@ -15465,8 +15909,10 @@ export type FieldModuleEdgeSelect = {
|
|
|
15465
15909
|
select: FieldModuleSelect;
|
|
15466
15910
|
};
|
|
15467
15911
|
};
|
|
15912
|
+
/** A `InvitesModule` edge in the connection. */
|
|
15468
15913
|
export interface InvitesModuleEdge {
|
|
15469
15914
|
cursor?: string | null;
|
|
15915
|
+
/** The `InvitesModule` at the end of the edge. */
|
|
15470
15916
|
node?: InvitesModule | null;
|
|
15471
15917
|
}
|
|
15472
15918
|
export type InvitesModuleEdgeSelect = {
|
|
@@ -15475,8 +15921,10 @@ export type InvitesModuleEdgeSelect = {
|
|
|
15475
15921
|
select: InvitesModuleSelect;
|
|
15476
15922
|
};
|
|
15477
15923
|
};
|
|
15924
|
+
/** A `LevelsModule` edge in the connection. */
|
|
15478
15925
|
export interface LevelsModuleEdge {
|
|
15479
15926
|
cursor?: string | null;
|
|
15927
|
+
/** The `LevelsModule` at the end of the edge. */
|
|
15480
15928
|
node?: LevelsModule | null;
|
|
15481
15929
|
}
|
|
15482
15930
|
export type LevelsModuleEdgeSelect = {
|
|
@@ -15485,8 +15933,10 @@ export type LevelsModuleEdgeSelect = {
|
|
|
15485
15933
|
select: LevelsModuleSelect;
|
|
15486
15934
|
};
|
|
15487
15935
|
};
|
|
15936
|
+
/** A `LimitsModule` edge in the connection. */
|
|
15488
15937
|
export interface LimitsModuleEdge {
|
|
15489
15938
|
cursor?: string | null;
|
|
15939
|
+
/** The `LimitsModule` at the end of the edge. */
|
|
15490
15940
|
node?: LimitsModule | null;
|
|
15491
15941
|
}
|
|
15492
15942
|
export type LimitsModuleEdgeSelect = {
|
|
@@ -15495,8 +15945,10 @@ export type LimitsModuleEdgeSelect = {
|
|
|
15495
15945
|
select: LimitsModuleSelect;
|
|
15496
15946
|
};
|
|
15497
15947
|
};
|
|
15948
|
+
/** A `MembershipTypesModule` edge in the connection. */
|
|
15498
15949
|
export interface MembershipTypesModuleEdge {
|
|
15499
15950
|
cursor?: string | null;
|
|
15951
|
+
/** The `MembershipTypesModule` at the end of the edge. */
|
|
15500
15952
|
node?: MembershipTypesModule | null;
|
|
15501
15953
|
}
|
|
15502
15954
|
export type MembershipTypesModuleEdgeSelect = {
|
|
@@ -15505,8 +15957,10 @@ export type MembershipTypesModuleEdgeSelect = {
|
|
|
15505
15957
|
select: MembershipTypesModuleSelect;
|
|
15506
15958
|
};
|
|
15507
15959
|
};
|
|
15960
|
+
/** A `MembershipsModule` edge in the connection. */
|
|
15508
15961
|
export interface MembershipsModuleEdge {
|
|
15509
15962
|
cursor?: string | null;
|
|
15963
|
+
/** The `MembershipsModule` at the end of the edge. */
|
|
15510
15964
|
node?: MembershipsModule | null;
|
|
15511
15965
|
}
|
|
15512
15966
|
export type MembershipsModuleEdgeSelect = {
|
|
@@ -15515,8 +15969,10 @@ export type MembershipsModuleEdgeSelect = {
|
|
|
15515
15969
|
select: MembershipsModuleSelect;
|
|
15516
15970
|
};
|
|
15517
15971
|
};
|
|
15972
|
+
/** A `PermissionsModule` edge in the connection. */
|
|
15518
15973
|
export interface PermissionsModuleEdge {
|
|
15519
15974
|
cursor?: string | null;
|
|
15975
|
+
/** The `PermissionsModule` at the end of the edge. */
|
|
15520
15976
|
node?: PermissionsModule | null;
|
|
15521
15977
|
}
|
|
15522
15978
|
export type PermissionsModuleEdgeSelect = {
|
|
@@ -15525,8 +15981,10 @@ export type PermissionsModuleEdgeSelect = {
|
|
|
15525
15981
|
select: PermissionsModuleSelect;
|
|
15526
15982
|
};
|
|
15527
15983
|
};
|
|
15984
|
+
/** A `PhoneNumbersModule` edge in the connection. */
|
|
15528
15985
|
export interface PhoneNumbersModuleEdge {
|
|
15529
15986
|
cursor?: string | null;
|
|
15987
|
+
/** The `PhoneNumbersModule` at the end of the edge. */
|
|
15530
15988
|
node?: PhoneNumbersModule | null;
|
|
15531
15989
|
}
|
|
15532
15990
|
export type PhoneNumbersModuleEdgeSelect = {
|
|
@@ -15535,8 +15993,10 @@ export type PhoneNumbersModuleEdgeSelect = {
|
|
|
15535
15993
|
select: PhoneNumbersModuleSelect;
|
|
15536
15994
|
};
|
|
15537
15995
|
};
|
|
15996
|
+
/** A `ProfilesModule` edge in the connection. */
|
|
15538
15997
|
export interface ProfilesModuleEdge {
|
|
15539
15998
|
cursor?: string | null;
|
|
15999
|
+
/** The `ProfilesModule` at the end of the edge. */
|
|
15540
16000
|
node?: ProfilesModule | null;
|
|
15541
16001
|
}
|
|
15542
16002
|
export type ProfilesModuleEdgeSelect = {
|
|
@@ -15545,8 +16005,10 @@ export type ProfilesModuleEdgeSelect = {
|
|
|
15545
16005
|
select: ProfilesModuleSelect;
|
|
15546
16006
|
};
|
|
15547
16007
|
};
|
|
16008
|
+
/** A `RlsModule` edge in the connection. */
|
|
15548
16009
|
export interface RlsModuleEdge {
|
|
15549
16010
|
cursor?: string | null;
|
|
16011
|
+
/** The `RlsModule` at the end of the edge. */
|
|
15550
16012
|
node?: RlsModule | null;
|
|
15551
16013
|
}
|
|
15552
16014
|
export type RlsModuleEdgeSelect = {
|
|
@@ -15555,8 +16017,10 @@ export type RlsModuleEdgeSelect = {
|
|
|
15555
16017
|
select: RlsModuleSelect;
|
|
15556
16018
|
};
|
|
15557
16019
|
};
|
|
16020
|
+
/** A `SecretsModule` edge in the connection. */
|
|
15558
16021
|
export interface SecretsModuleEdge {
|
|
15559
16022
|
cursor?: string | null;
|
|
16023
|
+
/** The `SecretsModule` at the end of the edge. */
|
|
15560
16024
|
node?: SecretsModule | null;
|
|
15561
16025
|
}
|
|
15562
16026
|
export type SecretsModuleEdgeSelect = {
|
|
@@ -15565,8 +16029,10 @@ export type SecretsModuleEdgeSelect = {
|
|
|
15565
16029
|
select: SecretsModuleSelect;
|
|
15566
16030
|
};
|
|
15567
16031
|
};
|
|
16032
|
+
/** A `SessionsModule` edge in the connection. */
|
|
15568
16033
|
export interface SessionsModuleEdge {
|
|
15569
16034
|
cursor?: string | null;
|
|
16035
|
+
/** The `SessionsModule` at the end of the edge. */
|
|
15570
16036
|
node?: SessionsModule | null;
|
|
15571
16037
|
}
|
|
15572
16038
|
export type SessionsModuleEdgeSelect = {
|
|
@@ -15575,8 +16041,10 @@ export type SessionsModuleEdgeSelect = {
|
|
|
15575
16041
|
select: SessionsModuleSelect;
|
|
15576
16042
|
};
|
|
15577
16043
|
};
|
|
16044
|
+
/** A `UserAuthModule` edge in the connection. */
|
|
15578
16045
|
export interface UserAuthModuleEdge {
|
|
15579
16046
|
cursor?: string | null;
|
|
16047
|
+
/** The `UserAuthModule` at the end of the edge. */
|
|
15580
16048
|
node?: UserAuthModule | null;
|
|
15581
16049
|
}
|
|
15582
16050
|
export type UserAuthModuleEdgeSelect = {
|
|
@@ -15585,8 +16053,10 @@ export type UserAuthModuleEdgeSelect = {
|
|
|
15585
16053
|
select: UserAuthModuleSelect;
|
|
15586
16054
|
};
|
|
15587
16055
|
};
|
|
16056
|
+
/** A `UsersModule` edge in the connection. */
|
|
15588
16057
|
export interface UsersModuleEdge {
|
|
15589
16058
|
cursor?: string | null;
|
|
16059
|
+
/** The `UsersModule` at the end of the edge. */
|
|
15590
16060
|
node?: UsersModule | null;
|
|
15591
16061
|
}
|
|
15592
16062
|
export type UsersModuleEdgeSelect = {
|
|
@@ -15595,8 +16065,10 @@ export type UsersModuleEdgeSelect = {
|
|
|
15595
16065
|
select: UsersModuleSelect;
|
|
15596
16066
|
};
|
|
15597
16067
|
};
|
|
16068
|
+
/** A `UuidModule` edge in the connection. */
|
|
15598
16069
|
export interface UuidModuleEdge {
|
|
15599
16070
|
cursor?: string | null;
|
|
16071
|
+
/** The `UuidModule` at the end of the edge. */
|
|
15600
16072
|
node?: UuidModule | null;
|
|
15601
16073
|
}
|
|
15602
16074
|
export type UuidModuleEdgeSelect = {
|
|
@@ -15605,8 +16077,10 @@ export type UuidModuleEdgeSelect = {
|
|
|
15605
16077
|
select: UuidModuleSelect;
|
|
15606
16078
|
};
|
|
15607
16079
|
};
|
|
16080
|
+
/** A `DatabaseProvisionModule` edge in the connection. */
|
|
15608
16081
|
export interface DatabaseProvisionModuleEdge {
|
|
15609
16082
|
cursor?: string | null;
|
|
16083
|
+
/** The `DatabaseProvisionModule` at the end of the edge. */
|
|
15610
16084
|
node?: DatabaseProvisionModule | null;
|
|
15611
16085
|
}
|
|
15612
16086
|
export type DatabaseProvisionModuleEdgeSelect = {
|
|
@@ -15615,8 +16089,10 @@ export type DatabaseProvisionModuleEdgeSelect = {
|
|
|
15615
16089
|
select: DatabaseProvisionModuleSelect;
|
|
15616
16090
|
};
|
|
15617
16091
|
};
|
|
16092
|
+
/** A `AppAdminGrant` edge in the connection. */
|
|
15618
16093
|
export interface AppAdminGrantEdge {
|
|
15619
16094
|
cursor?: string | null;
|
|
16095
|
+
/** The `AppAdminGrant` at the end of the edge. */
|
|
15620
16096
|
node?: AppAdminGrant | null;
|
|
15621
16097
|
}
|
|
15622
16098
|
export type AppAdminGrantEdgeSelect = {
|
|
@@ -15625,8 +16101,10 @@ export type AppAdminGrantEdgeSelect = {
|
|
|
15625
16101
|
select: AppAdminGrantSelect;
|
|
15626
16102
|
};
|
|
15627
16103
|
};
|
|
16104
|
+
/** A `AppOwnerGrant` edge in the connection. */
|
|
15628
16105
|
export interface AppOwnerGrantEdge {
|
|
15629
16106
|
cursor?: string | null;
|
|
16107
|
+
/** The `AppOwnerGrant` at the end of the edge. */
|
|
15630
16108
|
node?: AppOwnerGrant | null;
|
|
15631
16109
|
}
|
|
15632
16110
|
export type AppOwnerGrantEdgeSelect = {
|
|
@@ -15635,8 +16113,10 @@ export type AppOwnerGrantEdgeSelect = {
|
|
|
15635
16113
|
select: AppOwnerGrantSelect;
|
|
15636
16114
|
};
|
|
15637
16115
|
};
|
|
16116
|
+
/** A `AppGrant` edge in the connection. */
|
|
15638
16117
|
export interface AppGrantEdge {
|
|
15639
16118
|
cursor?: string | null;
|
|
16119
|
+
/** The `AppGrant` at the end of the edge. */
|
|
15640
16120
|
node?: AppGrant | null;
|
|
15641
16121
|
}
|
|
15642
16122
|
export type AppGrantEdgeSelect = {
|
|
@@ -15645,8 +16125,10 @@ export type AppGrantEdgeSelect = {
|
|
|
15645
16125
|
select: AppGrantSelect;
|
|
15646
16126
|
};
|
|
15647
16127
|
};
|
|
16128
|
+
/** A `OrgMembership` edge in the connection. */
|
|
15648
16129
|
export interface OrgMembershipEdge {
|
|
15649
16130
|
cursor?: string | null;
|
|
16131
|
+
/** The `OrgMembership` at the end of the edge. */
|
|
15650
16132
|
node?: OrgMembership | null;
|
|
15651
16133
|
}
|
|
15652
16134
|
export type OrgMembershipEdgeSelect = {
|
|
@@ -15655,8 +16137,10 @@ export type OrgMembershipEdgeSelect = {
|
|
|
15655
16137
|
select: OrgMembershipSelect;
|
|
15656
16138
|
};
|
|
15657
16139
|
};
|
|
16140
|
+
/** A `OrgMember` edge in the connection. */
|
|
15658
16141
|
export interface OrgMemberEdge {
|
|
15659
16142
|
cursor?: string | null;
|
|
16143
|
+
/** The `OrgMember` at the end of the edge. */
|
|
15660
16144
|
node?: OrgMember | null;
|
|
15661
16145
|
}
|
|
15662
16146
|
export type OrgMemberEdgeSelect = {
|
|
@@ -15665,8 +16149,10 @@ export type OrgMemberEdgeSelect = {
|
|
|
15665
16149
|
select: OrgMemberSelect;
|
|
15666
16150
|
};
|
|
15667
16151
|
};
|
|
16152
|
+
/** A `OrgAdminGrant` edge in the connection. */
|
|
15668
16153
|
export interface OrgAdminGrantEdge {
|
|
15669
16154
|
cursor?: string | null;
|
|
16155
|
+
/** The `OrgAdminGrant` at the end of the edge. */
|
|
15670
16156
|
node?: OrgAdminGrant | null;
|
|
15671
16157
|
}
|
|
15672
16158
|
export type OrgAdminGrantEdgeSelect = {
|
|
@@ -15675,8 +16161,10 @@ export type OrgAdminGrantEdgeSelect = {
|
|
|
15675
16161
|
select: OrgAdminGrantSelect;
|
|
15676
16162
|
};
|
|
15677
16163
|
};
|
|
16164
|
+
/** A `OrgOwnerGrant` edge in the connection. */
|
|
15678
16165
|
export interface OrgOwnerGrantEdge {
|
|
15679
16166
|
cursor?: string | null;
|
|
16167
|
+
/** The `OrgOwnerGrant` at the end of the edge. */
|
|
15680
16168
|
node?: OrgOwnerGrant | null;
|
|
15681
16169
|
}
|
|
15682
16170
|
export type OrgOwnerGrantEdgeSelect = {
|
|
@@ -15685,8 +16173,10 @@ export type OrgOwnerGrantEdgeSelect = {
|
|
|
15685
16173
|
select: OrgOwnerGrantSelect;
|
|
15686
16174
|
};
|
|
15687
16175
|
};
|
|
16176
|
+
/** A `OrgGrant` edge in the connection. */
|
|
15688
16177
|
export interface OrgGrantEdge {
|
|
15689
16178
|
cursor?: string | null;
|
|
16179
|
+
/** The `OrgGrant` at the end of the edge. */
|
|
15690
16180
|
node?: OrgGrant | null;
|
|
15691
16181
|
}
|
|
15692
16182
|
export type OrgGrantEdgeSelect = {
|
|
@@ -15695,8 +16185,10 @@ export type OrgGrantEdgeSelect = {
|
|
|
15695
16185
|
select: OrgGrantSelect;
|
|
15696
16186
|
};
|
|
15697
16187
|
};
|
|
16188
|
+
/** A `AppLimit` edge in the connection. */
|
|
15698
16189
|
export interface AppLimitEdge {
|
|
15699
16190
|
cursor?: string | null;
|
|
16191
|
+
/** The `AppLimit` at the end of the edge. */
|
|
15700
16192
|
node?: AppLimit | null;
|
|
15701
16193
|
}
|
|
15702
16194
|
export type AppLimitEdgeSelect = {
|
|
@@ -15705,8 +16197,10 @@ export type AppLimitEdgeSelect = {
|
|
|
15705
16197
|
select: AppLimitSelect;
|
|
15706
16198
|
};
|
|
15707
16199
|
};
|
|
16200
|
+
/** A `OrgLimit` edge in the connection. */
|
|
15708
16201
|
export interface OrgLimitEdge {
|
|
15709
16202
|
cursor?: string | null;
|
|
16203
|
+
/** The `OrgLimit` at the end of the edge. */
|
|
15710
16204
|
node?: OrgLimit | null;
|
|
15711
16205
|
}
|
|
15712
16206
|
export type OrgLimitEdgeSelect = {
|
|
@@ -15715,8 +16209,10 @@ export type OrgLimitEdgeSelect = {
|
|
|
15715
16209
|
select: OrgLimitSelect;
|
|
15716
16210
|
};
|
|
15717
16211
|
};
|
|
16212
|
+
/** A `AppStep` edge in the connection. */
|
|
15718
16213
|
export interface AppStepEdge {
|
|
15719
16214
|
cursor?: string | null;
|
|
16215
|
+
/** The `AppStep` at the end of the edge. */
|
|
15720
16216
|
node?: AppStep | null;
|
|
15721
16217
|
}
|
|
15722
16218
|
export type AppStepEdgeSelect = {
|
|
@@ -15725,8 +16221,10 @@ export type AppStepEdgeSelect = {
|
|
|
15725
16221
|
select: AppStepSelect;
|
|
15726
16222
|
};
|
|
15727
16223
|
};
|
|
16224
|
+
/** A `AppAchievement` edge in the connection. */
|
|
15728
16225
|
export interface AppAchievementEdge {
|
|
15729
16226
|
cursor?: string | null;
|
|
16227
|
+
/** The `AppAchievement` at the end of the edge. */
|
|
15730
16228
|
node?: AppAchievement | null;
|
|
15731
16229
|
}
|
|
15732
16230
|
export type AppAchievementEdgeSelect = {
|
|
@@ -15735,8 +16233,10 @@ export type AppAchievementEdgeSelect = {
|
|
|
15735
16233
|
select: AppAchievementSelect;
|
|
15736
16234
|
};
|
|
15737
16235
|
};
|
|
16236
|
+
/** A `Invite` edge in the connection. */
|
|
15738
16237
|
export interface InviteEdge {
|
|
15739
16238
|
cursor?: string | null;
|
|
16239
|
+
/** The `Invite` at the end of the edge. */
|
|
15740
16240
|
node?: Invite | null;
|
|
15741
16241
|
}
|
|
15742
16242
|
export type InviteEdgeSelect = {
|
|
@@ -15745,8 +16245,10 @@ export type InviteEdgeSelect = {
|
|
|
15745
16245
|
select: InviteSelect;
|
|
15746
16246
|
};
|
|
15747
16247
|
};
|
|
16248
|
+
/** A `ClaimedInvite` edge in the connection. */
|
|
15748
16249
|
export interface ClaimedInviteEdge {
|
|
15749
16250
|
cursor?: string | null;
|
|
16251
|
+
/** The `ClaimedInvite` at the end of the edge. */
|
|
15750
16252
|
node?: ClaimedInvite | null;
|
|
15751
16253
|
}
|
|
15752
16254
|
export type ClaimedInviteEdgeSelect = {
|
|
@@ -15755,8 +16257,10 @@ export type ClaimedInviteEdgeSelect = {
|
|
|
15755
16257
|
select: ClaimedInviteSelect;
|
|
15756
16258
|
};
|
|
15757
16259
|
};
|
|
16260
|
+
/** A `OrgInvite` edge in the connection. */
|
|
15758
16261
|
export interface OrgInviteEdge {
|
|
15759
16262
|
cursor?: string | null;
|
|
16263
|
+
/** The `OrgInvite` at the end of the edge. */
|
|
15760
16264
|
node?: OrgInvite | null;
|
|
15761
16265
|
}
|
|
15762
16266
|
export type OrgInviteEdgeSelect = {
|
|
@@ -15765,8 +16269,10 @@ export type OrgInviteEdgeSelect = {
|
|
|
15765
16269
|
select: OrgInviteSelect;
|
|
15766
16270
|
};
|
|
15767
16271
|
};
|
|
16272
|
+
/** A `OrgClaimedInvite` edge in the connection. */
|
|
15768
16273
|
export interface OrgClaimedInviteEdge {
|
|
15769
16274
|
cursor?: string | null;
|
|
16275
|
+
/** The `OrgClaimedInvite` at the end of the edge. */
|
|
15770
16276
|
node?: OrgClaimedInvite | null;
|
|
15771
16277
|
}
|
|
15772
16278
|
export type OrgClaimedInviteEdgeSelect = {
|
|
@@ -15775,8 +16281,10 @@ export type OrgClaimedInviteEdgeSelect = {
|
|
|
15775
16281
|
select: OrgClaimedInviteSelect;
|
|
15776
16282
|
};
|
|
15777
16283
|
};
|
|
16284
|
+
/** A `AppPermissionDefault` edge in the connection. */
|
|
15778
16285
|
export interface AppPermissionDefaultEdge {
|
|
15779
16286
|
cursor?: string | null;
|
|
16287
|
+
/** The `AppPermissionDefault` at the end of the edge. */
|
|
15780
16288
|
node?: AppPermissionDefault | null;
|
|
15781
16289
|
}
|
|
15782
16290
|
export type AppPermissionDefaultEdgeSelect = {
|
|
@@ -15785,8 +16293,10 @@ export type AppPermissionDefaultEdgeSelect = {
|
|
|
15785
16293
|
select: AppPermissionDefaultSelect;
|
|
15786
16294
|
};
|
|
15787
16295
|
};
|
|
16296
|
+
/** A `Ref` edge in the connection. */
|
|
15788
16297
|
export interface RefEdge {
|
|
15789
16298
|
cursor?: string | null;
|
|
16299
|
+
/** The `Ref` at the end of the edge. */
|
|
15790
16300
|
node?: Ref | null;
|
|
15791
16301
|
}
|
|
15792
16302
|
export type RefEdgeSelect = {
|
|
@@ -15795,8 +16305,10 @@ export type RefEdgeSelect = {
|
|
|
15795
16305
|
select: RefSelect;
|
|
15796
16306
|
};
|
|
15797
16307
|
};
|
|
16308
|
+
/** A `Store` edge in the connection. */
|
|
15798
16309
|
export interface StoreEdge {
|
|
15799
16310
|
cursor?: string | null;
|
|
16311
|
+
/** The `Store` at the end of the edge. */
|
|
15800
16312
|
node?: Store | null;
|
|
15801
16313
|
}
|
|
15802
16314
|
export type StoreEdgeSelect = {
|
|
@@ -15805,8 +16317,10 @@ export type StoreEdgeSelect = {
|
|
|
15805
16317
|
select: StoreSelect;
|
|
15806
16318
|
};
|
|
15807
16319
|
};
|
|
16320
|
+
/** A `RoleType` edge in the connection. */
|
|
15808
16321
|
export interface RoleTypeEdge {
|
|
15809
16322
|
cursor?: string | null;
|
|
16323
|
+
/** The `RoleType` at the end of the edge. */
|
|
15810
16324
|
node?: RoleType | null;
|
|
15811
16325
|
}
|
|
15812
16326
|
export type RoleTypeEdgeSelect = {
|
|
@@ -15815,8 +16329,10 @@ export type RoleTypeEdgeSelect = {
|
|
|
15815
16329
|
select: RoleTypeSelect;
|
|
15816
16330
|
};
|
|
15817
16331
|
};
|
|
16332
|
+
/** A `OrgPermissionDefault` edge in the connection. */
|
|
15818
16333
|
export interface OrgPermissionDefaultEdge {
|
|
15819
16334
|
cursor?: string | null;
|
|
16335
|
+
/** The `OrgPermissionDefault` at the end of the edge. */
|
|
15820
16336
|
node?: OrgPermissionDefault | null;
|
|
15821
16337
|
}
|
|
15822
16338
|
export type OrgPermissionDefaultEdgeSelect = {
|
|
@@ -15825,8 +16341,10 @@ export type OrgPermissionDefaultEdgeSelect = {
|
|
|
15825
16341
|
select: OrgPermissionDefaultSelect;
|
|
15826
16342
|
};
|
|
15827
16343
|
};
|
|
16344
|
+
/** A `AppLimitDefault` edge in the connection. */
|
|
15828
16345
|
export interface AppLimitDefaultEdge {
|
|
15829
16346
|
cursor?: string | null;
|
|
16347
|
+
/** The `AppLimitDefault` at the end of the edge. */
|
|
15830
16348
|
node?: AppLimitDefault | null;
|
|
15831
16349
|
}
|
|
15832
16350
|
export type AppLimitDefaultEdgeSelect = {
|
|
@@ -15835,8 +16353,10 @@ export type AppLimitDefaultEdgeSelect = {
|
|
|
15835
16353
|
select: AppLimitDefaultSelect;
|
|
15836
16354
|
};
|
|
15837
16355
|
};
|
|
16356
|
+
/** A `OrgLimitDefault` edge in the connection. */
|
|
15838
16357
|
export interface OrgLimitDefaultEdge {
|
|
15839
16358
|
cursor?: string | null;
|
|
16359
|
+
/** The `OrgLimitDefault` at the end of the edge. */
|
|
15840
16360
|
node?: OrgLimitDefault | null;
|
|
15841
16361
|
}
|
|
15842
16362
|
export type OrgLimitDefaultEdgeSelect = {
|
|
@@ -15845,8 +16365,10 @@ export type OrgLimitDefaultEdgeSelect = {
|
|
|
15845
16365
|
select: OrgLimitDefaultSelect;
|
|
15846
16366
|
};
|
|
15847
16367
|
};
|
|
16368
|
+
/** A `CryptoAddress` edge in the connection. */
|
|
15848
16369
|
export interface CryptoAddressEdge {
|
|
15849
16370
|
cursor?: string | null;
|
|
16371
|
+
/** The `CryptoAddress` at the end of the edge. */
|
|
15850
16372
|
node?: CryptoAddress | null;
|
|
15851
16373
|
}
|
|
15852
16374
|
export type CryptoAddressEdgeSelect = {
|
|
@@ -15855,8 +16377,10 @@ export type CryptoAddressEdgeSelect = {
|
|
|
15855
16377
|
select: CryptoAddressSelect;
|
|
15856
16378
|
};
|
|
15857
16379
|
};
|
|
16380
|
+
/** A `MembershipType` edge in the connection. */
|
|
15858
16381
|
export interface MembershipTypeEdge {
|
|
15859
16382
|
cursor?: string | null;
|
|
16383
|
+
/** The `MembershipType` at the end of the edge. */
|
|
15860
16384
|
node?: MembershipType | null;
|
|
15861
16385
|
}
|
|
15862
16386
|
export type MembershipTypeEdgeSelect = {
|
|
@@ -15865,8 +16389,10 @@ export type MembershipTypeEdgeSelect = {
|
|
|
15865
16389
|
select: MembershipTypeSelect;
|
|
15866
16390
|
};
|
|
15867
16391
|
};
|
|
16392
|
+
/** A `ConnectedAccount` edge in the connection. */
|
|
15868
16393
|
export interface ConnectedAccountEdge {
|
|
15869
16394
|
cursor?: string | null;
|
|
16395
|
+
/** The `ConnectedAccount` at the end of the edge. */
|
|
15870
16396
|
node?: ConnectedAccount | null;
|
|
15871
16397
|
}
|
|
15872
16398
|
export type ConnectedAccountEdgeSelect = {
|
|
@@ -15875,8 +16401,10 @@ export type ConnectedAccountEdgeSelect = {
|
|
|
15875
16401
|
select: ConnectedAccountSelect;
|
|
15876
16402
|
};
|
|
15877
16403
|
};
|
|
16404
|
+
/** A `PhoneNumber` edge in the connection. */
|
|
15878
16405
|
export interface PhoneNumberEdge {
|
|
15879
16406
|
cursor?: string | null;
|
|
16407
|
+
/** The `PhoneNumber` at the end of the edge. */
|
|
15880
16408
|
node?: PhoneNumber | null;
|
|
15881
16409
|
}
|
|
15882
16410
|
export type PhoneNumberEdgeSelect = {
|
|
@@ -15885,8 +16413,10 @@ export type PhoneNumberEdgeSelect = {
|
|
|
15885
16413
|
select: PhoneNumberSelect;
|
|
15886
16414
|
};
|
|
15887
16415
|
};
|
|
16416
|
+
/** A `AppMembershipDefault` edge in the connection. */
|
|
15888
16417
|
export interface AppMembershipDefaultEdge {
|
|
15889
16418
|
cursor?: string | null;
|
|
16419
|
+
/** The `AppMembershipDefault` at the end of the edge. */
|
|
15890
16420
|
node?: AppMembershipDefault | null;
|
|
15891
16421
|
}
|
|
15892
16422
|
export type AppMembershipDefaultEdgeSelect = {
|
|
@@ -15895,8 +16425,10 @@ export type AppMembershipDefaultEdgeSelect = {
|
|
|
15895
16425
|
select: AppMembershipDefaultSelect;
|
|
15896
16426
|
};
|
|
15897
16427
|
};
|
|
16428
|
+
/** A `NodeTypeRegistry` edge in the connection. */
|
|
15898
16429
|
export interface NodeTypeRegistryEdge {
|
|
15899
16430
|
cursor?: string | null;
|
|
16431
|
+
/** The `NodeTypeRegistry` at the end of the edge. */
|
|
15900
16432
|
node?: NodeTypeRegistry | null;
|
|
15901
16433
|
}
|
|
15902
16434
|
export type NodeTypeRegistryEdgeSelect = {
|
|
@@ -15905,8 +16437,10 @@ export type NodeTypeRegistryEdgeSelect = {
|
|
|
15905
16437
|
select: NodeTypeRegistrySelect;
|
|
15906
16438
|
};
|
|
15907
16439
|
};
|
|
16440
|
+
/** A `Commit` edge in the connection. */
|
|
15908
16441
|
export interface CommitEdge {
|
|
15909
16442
|
cursor?: string | null;
|
|
16443
|
+
/** The `Commit` at the end of the edge. */
|
|
15910
16444
|
node?: Commit | null;
|
|
15911
16445
|
}
|
|
15912
16446
|
export type CommitEdgeSelect = {
|
|
@@ -15915,8 +16449,10 @@ export type CommitEdgeSelect = {
|
|
|
15915
16449
|
select: CommitSelect;
|
|
15916
16450
|
};
|
|
15917
16451
|
};
|
|
16452
|
+
/** A `OrgMembershipDefault` edge in the connection. */
|
|
15918
16453
|
export interface OrgMembershipDefaultEdge {
|
|
15919
16454
|
cursor?: string | null;
|
|
16455
|
+
/** The `OrgMembershipDefault` at the end of the edge. */
|
|
15920
16456
|
node?: OrgMembershipDefault | null;
|
|
15921
16457
|
}
|
|
15922
16458
|
export type OrgMembershipDefaultEdgeSelect = {
|
|
@@ -15925,8 +16461,10 @@ export type OrgMembershipDefaultEdgeSelect = {
|
|
|
15925
16461
|
select: OrgMembershipDefaultSelect;
|
|
15926
16462
|
};
|
|
15927
16463
|
};
|
|
16464
|
+
/** A `Email` edge in the connection. */
|
|
15928
16465
|
export interface EmailEdge {
|
|
15929
16466
|
cursor?: string | null;
|
|
16467
|
+
/** The `Email` at the end of the edge. */
|
|
15930
16468
|
node?: Email | null;
|
|
15931
16469
|
}
|
|
15932
16470
|
export type EmailEdgeSelect = {
|
|
@@ -15935,8 +16473,10 @@ export type EmailEdgeSelect = {
|
|
|
15935
16473
|
select: EmailSelect;
|
|
15936
16474
|
};
|
|
15937
16475
|
};
|
|
16476
|
+
/** A `AuditLog` edge in the connection. */
|
|
15938
16477
|
export interface AuditLogEdge {
|
|
15939
16478
|
cursor?: string | null;
|
|
16479
|
+
/** The `AuditLog` at the end of the edge. */
|
|
15940
16480
|
node?: AuditLog | null;
|
|
15941
16481
|
}
|
|
15942
16482
|
export type AuditLogEdgeSelect = {
|
|
@@ -15945,8 +16485,10 @@ export type AuditLogEdgeSelect = {
|
|
|
15945
16485
|
select: AuditLogSelect;
|
|
15946
16486
|
};
|
|
15947
16487
|
};
|
|
16488
|
+
/** A `AppLevel` edge in the connection. */
|
|
15948
16489
|
export interface AppLevelEdge {
|
|
15949
16490
|
cursor?: string | null;
|
|
16491
|
+
/** The `AppLevel` at the end of the edge. */
|
|
15950
16492
|
node?: AppLevel | null;
|
|
15951
16493
|
}
|
|
15952
16494
|
export type AppLevelEdgeSelect = {
|
|
@@ -15955,8 +16497,10 @@ export type AppLevelEdgeSelect = {
|
|
|
15955
16497
|
select: AppLevelSelect;
|
|
15956
16498
|
};
|
|
15957
16499
|
};
|
|
16500
|
+
/** A `AppMembership` edge in the connection. */
|
|
15958
16501
|
export interface AppMembershipEdge {
|
|
15959
16502
|
cursor?: string | null;
|
|
16503
|
+
/** The `AppMembership` at the end of the edge. */
|
|
15960
16504
|
node?: AppMembership | null;
|
|
15961
16505
|
}
|
|
15962
16506
|
export type AppMembershipEdgeSelect = {
|
|
@@ -15965,8 +16509,10 @@ export type AppMembershipEdgeSelect = {
|
|
|
15965
16509
|
select: AppMembershipSelect;
|
|
15966
16510
|
};
|
|
15967
16511
|
};
|
|
16512
|
+
/** A `User` edge in the connection. */
|
|
15968
16513
|
export interface UserEdge {
|
|
15969
16514
|
cursor?: string | null;
|
|
16515
|
+
/** The `User` at the end of the edge. */
|
|
15970
16516
|
node?: User | null;
|
|
15971
16517
|
}
|
|
15972
16518
|
export type UserEdgeSelect = {
|
|
@@ -15975,8 +16521,10 @@ export type UserEdgeSelect = {
|
|
|
15975
16521
|
select: UserSelect;
|
|
15976
16522
|
};
|
|
15977
16523
|
};
|
|
16524
|
+
/** A `HierarchyModule` edge in the connection. */
|
|
15978
16525
|
export interface HierarchyModuleEdge {
|
|
15979
16526
|
cursor?: string | null;
|
|
16527
|
+
/** The `HierarchyModule` at the end of the edge. */
|
|
15980
16528
|
node?: HierarchyModule | null;
|
|
15981
16529
|
}
|
|
15982
16530
|
export type HierarchyModuleEdgeSelect = {
|