@constructive-io/sdk 0.0.4 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/admin/orm/input-types.d.ts +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
|
@@ -238,6 +238,7 @@ export interface OrgPermission {
|
|
|
238
238
|
bitstr?: string | null;
|
|
239
239
|
description?: string | null;
|
|
240
240
|
}
|
|
241
|
+
/** Requirements to achieve a level */
|
|
241
242
|
export interface AppLevelRequirement {
|
|
242
243
|
id: string;
|
|
243
244
|
name?: string | null;
|
|
@@ -320,6 +321,7 @@ export interface AppLimit {
|
|
|
320
321
|
num?: number | null;
|
|
321
322
|
max?: number | null;
|
|
322
323
|
}
|
|
324
|
+
/** 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. */
|
|
323
325
|
export interface AppAchievement {
|
|
324
326
|
id: string;
|
|
325
327
|
actorId?: string | null;
|
|
@@ -328,6 +330,7 @@ export interface AppAchievement {
|
|
|
328
330
|
createdAt?: string | null;
|
|
329
331
|
updatedAt?: string | null;
|
|
330
332
|
}
|
|
333
|
+
/** The user achieving a requirement for a level. Log table that has every single step ever taken. */
|
|
331
334
|
export interface AppStep {
|
|
332
335
|
id: string;
|
|
333
336
|
actorId?: string | null;
|
|
@@ -400,6 +403,7 @@ export interface OrgMembershipDefault {
|
|
|
400
403
|
deleteMemberCascadeGroups?: boolean | null;
|
|
401
404
|
createGroupsCascadeMembers?: boolean | null;
|
|
402
405
|
}
|
|
406
|
+
/** Levels for achievement */
|
|
403
407
|
export interface AppLevel {
|
|
404
408
|
id: string;
|
|
405
409
|
name?: string | null;
|
|
@@ -2142,6 +2146,7 @@ export interface SubmitOrgInviteCodeInput {
|
|
|
2142
2146
|
clientMutationId?: string;
|
|
2143
2147
|
token?: string;
|
|
2144
2148
|
}
|
|
2149
|
+
/** A connection to a list of `AppPermission` values. */
|
|
2145
2150
|
export interface AppPermissionConnection {
|
|
2146
2151
|
nodes: AppPermission[];
|
|
2147
2152
|
edges: AppPermissionEdge[];
|
|
@@ -2160,6 +2165,7 @@ export type AppPermissionConnectionSelect = {
|
|
|
2160
2165
|
};
|
|
2161
2166
|
totalCount?: boolean;
|
|
2162
2167
|
};
|
|
2168
|
+
/** A connection to a list of `OrgPermission` values. */
|
|
2163
2169
|
export interface OrgPermissionConnection {
|
|
2164
2170
|
nodes: OrgPermission[];
|
|
2165
2171
|
edges: OrgPermissionEdge[];
|
|
@@ -2178,6 +2184,7 @@ export type OrgPermissionConnectionSelect = {
|
|
|
2178
2184
|
};
|
|
2179
2185
|
totalCount?: boolean;
|
|
2180
2186
|
};
|
|
2187
|
+
/** A connection to a list of `AppLevelRequirement` values. */
|
|
2181
2188
|
export interface AppLevelRequirementConnection {
|
|
2182
2189
|
nodes: AppLevelRequirement[];
|
|
2183
2190
|
edges: AppLevelRequirementEdge[];
|
|
@@ -2214,6 +2221,7 @@ export type SubmitOrgInviteCodePayloadSelect = {
|
|
|
2214
2221
|
};
|
|
2215
2222
|
export interface CreateAppPermissionPayload {
|
|
2216
2223
|
clientMutationId?: string | null;
|
|
2224
|
+
/** The `AppPermission` that was created by this mutation. */
|
|
2217
2225
|
appPermission?: AppPermission | null;
|
|
2218
2226
|
appPermissionEdge?: AppPermissionEdge | null;
|
|
2219
2227
|
}
|
|
@@ -2228,6 +2236,7 @@ export type CreateAppPermissionPayloadSelect = {
|
|
|
2228
2236
|
};
|
|
2229
2237
|
export interface UpdateAppPermissionPayload {
|
|
2230
2238
|
clientMutationId?: string | null;
|
|
2239
|
+
/** The `AppPermission` that was updated by this mutation. */
|
|
2231
2240
|
appPermission?: AppPermission | null;
|
|
2232
2241
|
appPermissionEdge?: AppPermissionEdge | null;
|
|
2233
2242
|
}
|
|
@@ -2242,6 +2251,7 @@ export type UpdateAppPermissionPayloadSelect = {
|
|
|
2242
2251
|
};
|
|
2243
2252
|
export interface DeleteAppPermissionPayload {
|
|
2244
2253
|
clientMutationId?: string | null;
|
|
2254
|
+
/** The `AppPermission` that was deleted by this mutation. */
|
|
2245
2255
|
appPermission?: AppPermission | null;
|
|
2246
2256
|
appPermissionEdge?: AppPermissionEdge | null;
|
|
2247
2257
|
}
|
|
@@ -2256,6 +2266,7 @@ export type DeleteAppPermissionPayloadSelect = {
|
|
|
2256
2266
|
};
|
|
2257
2267
|
export interface CreateOrgPermissionPayload {
|
|
2258
2268
|
clientMutationId?: string | null;
|
|
2269
|
+
/** The `OrgPermission` that was created by this mutation. */
|
|
2259
2270
|
orgPermission?: OrgPermission | null;
|
|
2260
2271
|
orgPermissionEdge?: OrgPermissionEdge | null;
|
|
2261
2272
|
}
|
|
@@ -2270,6 +2281,7 @@ export type CreateOrgPermissionPayloadSelect = {
|
|
|
2270
2281
|
};
|
|
2271
2282
|
export interface UpdateOrgPermissionPayload {
|
|
2272
2283
|
clientMutationId?: string | null;
|
|
2284
|
+
/** The `OrgPermission` that was updated by this mutation. */
|
|
2273
2285
|
orgPermission?: OrgPermission | null;
|
|
2274
2286
|
orgPermissionEdge?: OrgPermissionEdge | null;
|
|
2275
2287
|
}
|
|
@@ -2284,6 +2296,7 @@ export type UpdateOrgPermissionPayloadSelect = {
|
|
|
2284
2296
|
};
|
|
2285
2297
|
export interface DeleteOrgPermissionPayload {
|
|
2286
2298
|
clientMutationId?: string | null;
|
|
2299
|
+
/** The `OrgPermission` that was deleted by this mutation. */
|
|
2287
2300
|
orgPermission?: OrgPermission | null;
|
|
2288
2301
|
orgPermissionEdge?: OrgPermissionEdge | null;
|
|
2289
2302
|
}
|
|
@@ -2298,6 +2311,7 @@ export type DeleteOrgPermissionPayloadSelect = {
|
|
|
2298
2311
|
};
|
|
2299
2312
|
export interface CreateAppLevelRequirementPayload {
|
|
2300
2313
|
clientMutationId?: string | null;
|
|
2314
|
+
/** The `AppLevelRequirement` that was created by this mutation. */
|
|
2301
2315
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
2302
2316
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
2303
2317
|
}
|
|
@@ -2312,6 +2326,7 @@ export type CreateAppLevelRequirementPayloadSelect = {
|
|
|
2312
2326
|
};
|
|
2313
2327
|
export interface UpdateAppLevelRequirementPayload {
|
|
2314
2328
|
clientMutationId?: string | null;
|
|
2329
|
+
/** The `AppLevelRequirement` that was updated by this mutation. */
|
|
2315
2330
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
2316
2331
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
2317
2332
|
}
|
|
@@ -2326,6 +2341,7 @@ export type UpdateAppLevelRequirementPayloadSelect = {
|
|
|
2326
2341
|
};
|
|
2327
2342
|
export interface DeleteAppLevelRequirementPayload {
|
|
2328
2343
|
clientMutationId?: string | null;
|
|
2344
|
+
/** The `AppLevelRequirement` that was deleted by this mutation. */
|
|
2329
2345
|
appLevelRequirement?: AppLevelRequirement | null;
|
|
2330
2346
|
appLevelRequirementEdge?: AppLevelRequirementEdge | null;
|
|
2331
2347
|
}
|
|
@@ -2340,6 +2356,7 @@ export type DeleteAppLevelRequirementPayloadSelect = {
|
|
|
2340
2356
|
};
|
|
2341
2357
|
export interface CreateOrgMemberPayload {
|
|
2342
2358
|
clientMutationId?: string | null;
|
|
2359
|
+
/** The `OrgMember` that was created by this mutation. */
|
|
2343
2360
|
orgMember?: OrgMember | null;
|
|
2344
2361
|
orgMemberEdge?: OrgMemberEdge | null;
|
|
2345
2362
|
}
|
|
@@ -2354,6 +2371,7 @@ export type CreateOrgMemberPayloadSelect = {
|
|
|
2354
2371
|
};
|
|
2355
2372
|
export interface UpdateOrgMemberPayload {
|
|
2356
2373
|
clientMutationId?: string | null;
|
|
2374
|
+
/** The `OrgMember` that was updated by this mutation. */
|
|
2357
2375
|
orgMember?: OrgMember | null;
|
|
2358
2376
|
orgMemberEdge?: OrgMemberEdge | null;
|
|
2359
2377
|
}
|
|
@@ -2368,6 +2386,7 @@ export type UpdateOrgMemberPayloadSelect = {
|
|
|
2368
2386
|
};
|
|
2369
2387
|
export interface DeleteOrgMemberPayload {
|
|
2370
2388
|
clientMutationId?: string | null;
|
|
2389
|
+
/** The `OrgMember` that was deleted by this mutation. */
|
|
2371
2390
|
orgMember?: OrgMember | null;
|
|
2372
2391
|
orgMemberEdge?: OrgMemberEdge | null;
|
|
2373
2392
|
}
|
|
@@ -2382,6 +2401,7 @@ export type DeleteOrgMemberPayloadSelect = {
|
|
|
2382
2401
|
};
|
|
2383
2402
|
export interface CreateAppPermissionDefaultPayload {
|
|
2384
2403
|
clientMutationId?: string | null;
|
|
2404
|
+
/** The `AppPermissionDefault` that was created by this mutation. */
|
|
2385
2405
|
appPermissionDefault?: AppPermissionDefault | null;
|
|
2386
2406
|
appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
|
|
2387
2407
|
}
|
|
@@ -2396,6 +2416,7 @@ export type CreateAppPermissionDefaultPayloadSelect = {
|
|
|
2396
2416
|
};
|
|
2397
2417
|
export interface UpdateAppPermissionDefaultPayload {
|
|
2398
2418
|
clientMutationId?: string | null;
|
|
2419
|
+
/** The `AppPermissionDefault` that was updated by this mutation. */
|
|
2399
2420
|
appPermissionDefault?: AppPermissionDefault | null;
|
|
2400
2421
|
appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
|
|
2401
2422
|
}
|
|
@@ -2410,6 +2431,7 @@ export type UpdateAppPermissionDefaultPayloadSelect = {
|
|
|
2410
2431
|
};
|
|
2411
2432
|
export interface DeleteAppPermissionDefaultPayload {
|
|
2412
2433
|
clientMutationId?: string | null;
|
|
2434
|
+
/** The `AppPermissionDefault` that was deleted by this mutation. */
|
|
2413
2435
|
appPermissionDefault?: AppPermissionDefault | null;
|
|
2414
2436
|
appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
|
|
2415
2437
|
}
|
|
@@ -2424,6 +2446,7 @@ export type DeleteAppPermissionDefaultPayloadSelect = {
|
|
|
2424
2446
|
};
|
|
2425
2447
|
export interface CreateOrgPermissionDefaultPayload {
|
|
2426
2448
|
clientMutationId?: string | null;
|
|
2449
|
+
/** The `OrgPermissionDefault` that was created by this mutation. */
|
|
2427
2450
|
orgPermissionDefault?: OrgPermissionDefault | null;
|
|
2428
2451
|
orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
|
|
2429
2452
|
}
|
|
@@ -2438,6 +2461,7 @@ export type CreateOrgPermissionDefaultPayloadSelect = {
|
|
|
2438
2461
|
};
|
|
2439
2462
|
export interface UpdateOrgPermissionDefaultPayload {
|
|
2440
2463
|
clientMutationId?: string | null;
|
|
2464
|
+
/** The `OrgPermissionDefault` that was updated by this mutation. */
|
|
2441
2465
|
orgPermissionDefault?: OrgPermissionDefault | null;
|
|
2442
2466
|
orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
|
|
2443
2467
|
}
|
|
@@ -2452,6 +2476,7 @@ export type UpdateOrgPermissionDefaultPayloadSelect = {
|
|
|
2452
2476
|
};
|
|
2453
2477
|
export interface DeleteOrgPermissionDefaultPayload {
|
|
2454
2478
|
clientMutationId?: string | null;
|
|
2479
|
+
/** The `OrgPermissionDefault` that was deleted by this mutation. */
|
|
2455
2480
|
orgPermissionDefault?: OrgPermissionDefault | null;
|
|
2456
2481
|
orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
|
|
2457
2482
|
}
|
|
@@ -2466,6 +2491,7 @@ export type DeleteOrgPermissionDefaultPayloadSelect = {
|
|
|
2466
2491
|
};
|
|
2467
2492
|
export interface CreateAppAdminGrantPayload {
|
|
2468
2493
|
clientMutationId?: string | null;
|
|
2494
|
+
/** The `AppAdminGrant` that was created by this mutation. */
|
|
2469
2495
|
appAdminGrant?: AppAdminGrant | null;
|
|
2470
2496
|
appAdminGrantEdge?: AppAdminGrantEdge | null;
|
|
2471
2497
|
}
|
|
@@ -2480,6 +2506,7 @@ export type CreateAppAdminGrantPayloadSelect = {
|
|
|
2480
2506
|
};
|
|
2481
2507
|
export interface UpdateAppAdminGrantPayload {
|
|
2482
2508
|
clientMutationId?: string | null;
|
|
2509
|
+
/** The `AppAdminGrant` that was updated by this mutation. */
|
|
2483
2510
|
appAdminGrant?: AppAdminGrant | null;
|
|
2484
2511
|
appAdminGrantEdge?: AppAdminGrantEdge | null;
|
|
2485
2512
|
}
|
|
@@ -2494,6 +2521,7 @@ export type UpdateAppAdminGrantPayloadSelect = {
|
|
|
2494
2521
|
};
|
|
2495
2522
|
export interface DeleteAppAdminGrantPayload {
|
|
2496
2523
|
clientMutationId?: string | null;
|
|
2524
|
+
/** The `AppAdminGrant` that was deleted by this mutation. */
|
|
2497
2525
|
appAdminGrant?: AppAdminGrant | null;
|
|
2498
2526
|
appAdminGrantEdge?: AppAdminGrantEdge | null;
|
|
2499
2527
|
}
|
|
@@ -2508,6 +2536,7 @@ export type DeleteAppAdminGrantPayloadSelect = {
|
|
|
2508
2536
|
};
|
|
2509
2537
|
export interface CreateAppOwnerGrantPayload {
|
|
2510
2538
|
clientMutationId?: string | null;
|
|
2539
|
+
/** The `AppOwnerGrant` that was created by this mutation. */
|
|
2511
2540
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
2512
2541
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
2513
2542
|
}
|
|
@@ -2522,6 +2551,7 @@ export type CreateAppOwnerGrantPayloadSelect = {
|
|
|
2522
2551
|
};
|
|
2523
2552
|
export interface UpdateAppOwnerGrantPayload {
|
|
2524
2553
|
clientMutationId?: string | null;
|
|
2554
|
+
/** The `AppOwnerGrant` that was updated by this mutation. */
|
|
2525
2555
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
2526
2556
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
2527
2557
|
}
|
|
@@ -2536,6 +2566,7 @@ export type UpdateAppOwnerGrantPayloadSelect = {
|
|
|
2536
2566
|
};
|
|
2537
2567
|
export interface DeleteAppOwnerGrantPayload {
|
|
2538
2568
|
clientMutationId?: string | null;
|
|
2569
|
+
/** The `AppOwnerGrant` that was deleted by this mutation. */
|
|
2539
2570
|
appOwnerGrant?: AppOwnerGrant | null;
|
|
2540
2571
|
appOwnerGrantEdge?: AppOwnerGrantEdge | null;
|
|
2541
2572
|
}
|
|
@@ -2550,6 +2581,7 @@ export type DeleteAppOwnerGrantPayloadSelect = {
|
|
|
2550
2581
|
};
|
|
2551
2582
|
export interface CreateAppLimitDefaultPayload {
|
|
2552
2583
|
clientMutationId?: string | null;
|
|
2584
|
+
/** The `AppLimitDefault` that was created by this mutation. */
|
|
2553
2585
|
appLimitDefault?: AppLimitDefault | null;
|
|
2554
2586
|
appLimitDefaultEdge?: AppLimitDefaultEdge | null;
|
|
2555
2587
|
}
|
|
@@ -2564,6 +2596,7 @@ export type CreateAppLimitDefaultPayloadSelect = {
|
|
|
2564
2596
|
};
|
|
2565
2597
|
export interface UpdateAppLimitDefaultPayload {
|
|
2566
2598
|
clientMutationId?: string | null;
|
|
2599
|
+
/** The `AppLimitDefault` that was updated by this mutation. */
|
|
2567
2600
|
appLimitDefault?: AppLimitDefault | null;
|
|
2568
2601
|
appLimitDefaultEdge?: AppLimitDefaultEdge | null;
|
|
2569
2602
|
}
|
|
@@ -2578,6 +2611,7 @@ export type UpdateAppLimitDefaultPayloadSelect = {
|
|
|
2578
2611
|
};
|
|
2579
2612
|
export interface DeleteAppLimitDefaultPayload {
|
|
2580
2613
|
clientMutationId?: string | null;
|
|
2614
|
+
/** The `AppLimitDefault` that was deleted by this mutation. */
|
|
2581
2615
|
appLimitDefault?: AppLimitDefault | null;
|
|
2582
2616
|
appLimitDefaultEdge?: AppLimitDefaultEdge | null;
|
|
2583
2617
|
}
|
|
@@ -2592,6 +2626,7 @@ export type DeleteAppLimitDefaultPayloadSelect = {
|
|
|
2592
2626
|
};
|
|
2593
2627
|
export interface CreateOrgLimitDefaultPayload {
|
|
2594
2628
|
clientMutationId?: string | null;
|
|
2629
|
+
/** The `OrgLimitDefault` that was created by this mutation. */
|
|
2595
2630
|
orgLimitDefault?: OrgLimitDefault | null;
|
|
2596
2631
|
orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
|
|
2597
2632
|
}
|
|
@@ -2606,6 +2641,7 @@ export type CreateOrgLimitDefaultPayloadSelect = {
|
|
|
2606
2641
|
};
|
|
2607
2642
|
export interface UpdateOrgLimitDefaultPayload {
|
|
2608
2643
|
clientMutationId?: string | null;
|
|
2644
|
+
/** The `OrgLimitDefault` that was updated by this mutation. */
|
|
2609
2645
|
orgLimitDefault?: OrgLimitDefault | null;
|
|
2610
2646
|
orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
|
|
2611
2647
|
}
|
|
@@ -2620,6 +2656,7 @@ export type UpdateOrgLimitDefaultPayloadSelect = {
|
|
|
2620
2656
|
};
|
|
2621
2657
|
export interface DeleteOrgLimitDefaultPayload {
|
|
2622
2658
|
clientMutationId?: string | null;
|
|
2659
|
+
/** The `OrgLimitDefault` that was deleted by this mutation. */
|
|
2623
2660
|
orgLimitDefault?: OrgLimitDefault | null;
|
|
2624
2661
|
orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
|
|
2625
2662
|
}
|
|
@@ -2634,6 +2671,7 @@ export type DeleteOrgLimitDefaultPayloadSelect = {
|
|
|
2634
2671
|
};
|
|
2635
2672
|
export interface CreateOrgAdminGrantPayload {
|
|
2636
2673
|
clientMutationId?: string | null;
|
|
2674
|
+
/** The `OrgAdminGrant` that was created by this mutation. */
|
|
2637
2675
|
orgAdminGrant?: OrgAdminGrant | null;
|
|
2638
2676
|
orgAdminGrantEdge?: OrgAdminGrantEdge | null;
|
|
2639
2677
|
}
|
|
@@ -2648,6 +2686,7 @@ export type CreateOrgAdminGrantPayloadSelect = {
|
|
|
2648
2686
|
};
|
|
2649
2687
|
export interface UpdateOrgAdminGrantPayload {
|
|
2650
2688
|
clientMutationId?: string | null;
|
|
2689
|
+
/** The `OrgAdminGrant` that was updated by this mutation. */
|
|
2651
2690
|
orgAdminGrant?: OrgAdminGrant | null;
|
|
2652
2691
|
orgAdminGrantEdge?: OrgAdminGrantEdge | null;
|
|
2653
2692
|
}
|
|
@@ -2662,6 +2701,7 @@ export type UpdateOrgAdminGrantPayloadSelect = {
|
|
|
2662
2701
|
};
|
|
2663
2702
|
export interface DeleteOrgAdminGrantPayload {
|
|
2664
2703
|
clientMutationId?: string | null;
|
|
2704
|
+
/** The `OrgAdminGrant` that was deleted by this mutation. */
|
|
2665
2705
|
orgAdminGrant?: OrgAdminGrant | null;
|
|
2666
2706
|
orgAdminGrantEdge?: OrgAdminGrantEdge | null;
|
|
2667
2707
|
}
|
|
@@ -2676,6 +2716,7 @@ export type DeleteOrgAdminGrantPayloadSelect = {
|
|
|
2676
2716
|
};
|
|
2677
2717
|
export interface CreateOrgOwnerGrantPayload {
|
|
2678
2718
|
clientMutationId?: string | null;
|
|
2719
|
+
/** The `OrgOwnerGrant` that was created by this mutation. */
|
|
2679
2720
|
orgOwnerGrant?: OrgOwnerGrant | null;
|
|
2680
2721
|
orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
|
|
2681
2722
|
}
|
|
@@ -2690,6 +2731,7 @@ export type CreateOrgOwnerGrantPayloadSelect = {
|
|
|
2690
2731
|
};
|
|
2691
2732
|
export interface UpdateOrgOwnerGrantPayload {
|
|
2692
2733
|
clientMutationId?: string | null;
|
|
2734
|
+
/** The `OrgOwnerGrant` that was updated by this mutation. */
|
|
2693
2735
|
orgOwnerGrant?: OrgOwnerGrant | null;
|
|
2694
2736
|
orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
|
|
2695
2737
|
}
|
|
@@ -2704,6 +2746,7 @@ export type UpdateOrgOwnerGrantPayloadSelect = {
|
|
|
2704
2746
|
};
|
|
2705
2747
|
export interface DeleteOrgOwnerGrantPayload {
|
|
2706
2748
|
clientMutationId?: string | null;
|
|
2749
|
+
/** The `OrgOwnerGrant` that was deleted by this mutation. */
|
|
2707
2750
|
orgOwnerGrant?: OrgOwnerGrant | null;
|
|
2708
2751
|
orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
|
|
2709
2752
|
}
|
|
@@ -2718,6 +2761,7 @@ export type DeleteOrgOwnerGrantPayloadSelect = {
|
|
|
2718
2761
|
};
|
|
2719
2762
|
export interface CreateMembershipTypePayload {
|
|
2720
2763
|
clientMutationId?: string | null;
|
|
2764
|
+
/** The `MembershipType` that was created by this mutation. */
|
|
2721
2765
|
membershipType?: MembershipType | null;
|
|
2722
2766
|
membershipTypeEdge?: MembershipTypeEdge | null;
|
|
2723
2767
|
}
|
|
@@ -2732,6 +2776,7 @@ export type CreateMembershipTypePayloadSelect = {
|
|
|
2732
2776
|
};
|
|
2733
2777
|
export interface UpdateMembershipTypePayload {
|
|
2734
2778
|
clientMutationId?: string | null;
|
|
2779
|
+
/** The `MembershipType` that was updated by this mutation. */
|
|
2735
2780
|
membershipType?: MembershipType | null;
|
|
2736
2781
|
membershipTypeEdge?: MembershipTypeEdge | null;
|
|
2737
2782
|
}
|
|
@@ -2746,6 +2791,7 @@ export type UpdateMembershipTypePayloadSelect = {
|
|
|
2746
2791
|
};
|
|
2747
2792
|
export interface DeleteMembershipTypePayload {
|
|
2748
2793
|
clientMutationId?: string | null;
|
|
2794
|
+
/** The `MembershipType` that was deleted by this mutation. */
|
|
2749
2795
|
membershipType?: MembershipType | null;
|
|
2750
2796
|
membershipTypeEdge?: MembershipTypeEdge | null;
|
|
2751
2797
|
}
|
|
@@ -2760,6 +2806,7 @@ export type DeleteMembershipTypePayloadSelect = {
|
|
|
2760
2806
|
};
|
|
2761
2807
|
export interface CreateAppLimitPayload {
|
|
2762
2808
|
clientMutationId?: string | null;
|
|
2809
|
+
/** The `AppLimit` that was created by this mutation. */
|
|
2763
2810
|
appLimit?: AppLimit | null;
|
|
2764
2811
|
appLimitEdge?: AppLimitEdge | null;
|
|
2765
2812
|
}
|
|
@@ -2774,6 +2821,7 @@ export type CreateAppLimitPayloadSelect = {
|
|
|
2774
2821
|
};
|
|
2775
2822
|
export interface UpdateAppLimitPayload {
|
|
2776
2823
|
clientMutationId?: string | null;
|
|
2824
|
+
/** The `AppLimit` that was updated by this mutation. */
|
|
2777
2825
|
appLimit?: AppLimit | null;
|
|
2778
2826
|
appLimitEdge?: AppLimitEdge | null;
|
|
2779
2827
|
}
|
|
@@ -2788,6 +2836,7 @@ export type UpdateAppLimitPayloadSelect = {
|
|
|
2788
2836
|
};
|
|
2789
2837
|
export interface DeleteAppLimitPayload {
|
|
2790
2838
|
clientMutationId?: string | null;
|
|
2839
|
+
/** The `AppLimit` that was deleted by this mutation. */
|
|
2791
2840
|
appLimit?: AppLimit | null;
|
|
2792
2841
|
appLimitEdge?: AppLimitEdge | null;
|
|
2793
2842
|
}
|
|
@@ -2802,6 +2851,7 @@ export type DeleteAppLimitPayloadSelect = {
|
|
|
2802
2851
|
};
|
|
2803
2852
|
export interface CreateAppAchievementPayload {
|
|
2804
2853
|
clientMutationId?: string | null;
|
|
2854
|
+
/** The `AppAchievement` that was created by this mutation. */
|
|
2805
2855
|
appAchievement?: AppAchievement | null;
|
|
2806
2856
|
appAchievementEdge?: AppAchievementEdge | null;
|
|
2807
2857
|
}
|
|
@@ -2816,6 +2866,7 @@ export type CreateAppAchievementPayloadSelect = {
|
|
|
2816
2866
|
};
|
|
2817
2867
|
export interface UpdateAppAchievementPayload {
|
|
2818
2868
|
clientMutationId?: string | null;
|
|
2869
|
+
/** The `AppAchievement` that was updated by this mutation. */
|
|
2819
2870
|
appAchievement?: AppAchievement | null;
|
|
2820
2871
|
appAchievementEdge?: AppAchievementEdge | null;
|
|
2821
2872
|
}
|
|
@@ -2830,6 +2881,7 @@ export type UpdateAppAchievementPayloadSelect = {
|
|
|
2830
2881
|
};
|
|
2831
2882
|
export interface DeleteAppAchievementPayload {
|
|
2832
2883
|
clientMutationId?: string | null;
|
|
2884
|
+
/** The `AppAchievement` that was deleted by this mutation. */
|
|
2833
2885
|
appAchievement?: AppAchievement | null;
|
|
2834
2886
|
appAchievementEdge?: AppAchievementEdge | null;
|
|
2835
2887
|
}
|
|
@@ -2844,6 +2896,7 @@ export type DeleteAppAchievementPayloadSelect = {
|
|
|
2844
2896
|
};
|
|
2845
2897
|
export interface CreateAppStepPayload {
|
|
2846
2898
|
clientMutationId?: string | null;
|
|
2899
|
+
/** The `AppStep` that was created by this mutation. */
|
|
2847
2900
|
appStep?: AppStep | null;
|
|
2848
2901
|
appStepEdge?: AppStepEdge | null;
|
|
2849
2902
|
}
|
|
@@ -2858,6 +2911,7 @@ export type CreateAppStepPayloadSelect = {
|
|
|
2858
2911
|
};
|
|
2859
2912
|
export interface UpdateAppStepPayload {
|
|
2860
2913
|
clientMutationId?: string | null;
|
|
2914
|
+
/** The `AppStep` that was updated by this mutation. */
|
|
2861
2915
|
appStep?: AppStep | null;
|
|
2862
2916
|
appStepEdge?: AppStepEdge | null;
|
|
2863
2917
|
}
|
|
@@ -2872,6 +2926,7 @@ export type UpdateAppStepPayloadSelect = {
|
|
|
2872
2926
|
};
|
|
2873
2927
|
export interface DeleteAppStepPayload {
|
|
2874
2928
|
clientMutationId?: string | null;
|
|
2929
|
+
/** The `AppStep` that was deleted by this mutation. */
|
|
2875
2930
|
appStep?: AppStep | null;
|
|
2876
2931
|
appStepEdge?: AppStepEdge | null;
|
|
2877
2932
|
}
|
|
@@ -2886,6 +2941,7 @@ export type DeleteAppStepPayloadSelect = {
|
|
|
2886
2941
|
};
|
|
2887
2942
|
export interface CreateClaimedInvitePayload {
|
|
2888
2943
|
clientMutationId?: string | null;
|
|
2944
|
+
/** The `ClaimedInvite` that was created by this mutation. */
|
|
2889
2945
|
claimedInvite?: ClaimedInvite | null;
|
|
2890
2946
|
claimedInviteEdge?: ClaimedInviteEdge | null;
|
|
2891
2947
|
}
|
|
@@ -2900,6 +2956,7 @@ export type CreateClaimedInvitePayloadSelect = {
|
|
|
2900
2956
|
};
|
|
2901
2957
|
export interface UpdateClaimedInvitePayload {
|
|
2902
2958
|
clientMutationId?: string | null;
|
|
2959
|
+
/** The `ClaimedInvite` that was updated by this mutation. */
|
|
2903
2960
|
claimedInvite?: ClaimedInvite | null;
|
|
2904
2961
|
claimedInviteEdge?: ClaimedInviteEdge | null;
|
|
2905
2962
|
}
|
|
@@ -2914,6 +2971,7 @@ export type UpdateClaimedInvitePayloadSelect = {
|
|
|
2914
2971
|
};
|
|
2915
2972
|
export interface DeleteClaimedInvitePayload {
|
|
2916
2973
|
clientMutationId?: string | null;
|
|
2974
|
+
/** The `ClaimedInvite` that was deleted by this mutation. */
|
|
2917
2975
|
claimedInvite?: ClaimedInvite | null;
|
|
2918
2976
|
claimedInviteEdge?: ClaimedInviteEdge | null;
|
|
2919
2977
|
}
|
|
@@ -2928,6 +2986,7 @@ export type DeleteClaimedInvitePayloadSelect = {
|
|
|
2928
2986
|
};
|
|
2929
2987
|
export interface CreateAppGrantPayload {
|
|
2930
2988
|
clientMutationId?: string | null;
|
|
2989
|
+
/** The `AppGrant` that was created by this mutation. */
|
|
2931
2990
|
appGrant?: AppGrant | null;
|
|
2932
2991
|
appGrantEdge?: AppGrantEdge | null;
|
|
2933
2992
|
}
|
|
@@ -2942,6 +3001,7 @@ export type CreateAppGrantPayloadSelect = {
|
|
|
2942
3001
|
};
|
|
2943
3002
|
export interface UpdateAppGrantPayload {
|
|
2944
3003
|
clientMutationId?: string | null;
|
|
3004
|
+
/** The `AppGrant` that was updated by this mutation. */
|
|
2945
3005
|
appGrant?: AppGrant | null;
|
|
2946
3006
|
appGrantEdge?: AppGrantEdge | null;
|
|
2947
3007
|
}
|
|
@@ -2956,6 +3016,7 @@ export type UpdateAppGrantPayloadSelect = {
|
|
|
2956
3016
|
};
|
|
2957
3017
|
export interface DeleteAppGrantPayload {
|
|
2958
3018
|
clientMutationId?: string | null;
|
|
3019
|
+
/** The `AppGrant` that was deleted by this mutation. */
|
|
2959
3020
|
appGrant?: AppGrant | null;
|
|
2960
3021
|
appGrantEdge?: AppGrantEdge | null;
|
|
2961
3022
|
}
|
|
@@ -2970,6 +3031,7 @@ export type DeleteAppGrantPayloadSelect = {
|
|
|
2970
3031
|
};
|
|
2971
3032
|
export interface CreateAppMembershipDefaultPayload {
|
|
2972
3033
|
clientMutationId?: string | null;
|
|
3034
|
+
/** The `AppMembershipDefault` that was created by this mutation. */
|
|
2973
3035
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
2974
3036
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
2975
3037
|
}
|
|
@@ -2984,6 +3046,7 @@ export type CreateAppMembershipDefaultPayloadSelect = {
|
|
|
2984
3046
|
};
|
|
2985
3047
|
export interface UpdateAppMembershipDefaultPayload {
|
|
2986
3048
|
clientMutationId?: string | null;
|
|
3049
|
+
/** The `AppMembershipDefault` that was updated by this mutation. */
|
|
2987
3050
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
2988
3051
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
2989
3052
|
}
|
|
@@ -2998,6 +3061,7 @@ export type UpdateAppMembershipDefaultPayloadSelect = {
|
|
|
2998
3061
|
};
|
|
2999
3062
|
export interface DeleteAppMembershipDefaultPayload {
|
|
3000
3063
|
clientMutationId?: string | null;
|
|
3064
|
+
/** The `AppMembershipDefault` that was deleted by this mutation. */
|
|
3001
3065
|
appMembershipDefault?: AppMembershipDefault | null;
|
|
3002
3066
|
appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
|
|
3003
3067
|
}
|
|
@@ -3012,6 +3076,7 @@ export type DeleteAppMembershipDefaultPayloadSelect = {
|
|
|
3012
3076
|
};
|
|
3013
3077
|
export interface CreateOrgLimitPayload {
|
|
3014
3078
|
clientMutationId?: string | null;
|
|
3079
|
+
/** The `OrgLimit` that was created by this mutation. */
|
|
3015
3080
|
orgLimit?: OrgLimit | null;
|
|
3016
3081
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
3017
3082
|
}
|
|
@@ -3026,6 +3091,7 @@ export type CreateOrgLimitPayloadSelect = {
|
|
|
3026
3091
|
};
|
|
3027
3092
|
export interface UpdateOrgLimitPayload {
|
|
3028
3093
|
clientMutationId?: string | null;
|
|
3094
|
+
/** The `OrgLimit` that was updated by this mutation. */
|
|
3029
3095
|
orgLimit?: OrgLimit | null;
|
|
3030
3096
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
3031
3097
|
}
|
|
@@ -3040,6 +3106,7 @@ export type UpdateOrgLimitPayloadSelect = {
|
|
|
3040
3106
|
};
|
|
3041
3107
|
export interface DeleteOrgLimitPayload {
|
|
3042
3108
|
clientMutationId?: string | null;
|
|
3109
|
+
/** The `OrgLimit` that was deleted by this mutation. */
|
|
3043
3110
|
orgLimit?: OrgLimit | null;
|
|
3044
3111
|
orgLimitEdge?: OrgLimitEdge | null;
|
|
3045
3112
|
}
|
|
@@ -3054,6 +3121,7 @@ export type DeleteOrgLimitPayloadSelect = {
|
|
|
3054
3121
|
};
|
|
3055
3122
|
export interface CreateOrgClaimedInvitePayload {
|
|
3056
3123
|
clientMutationId?: string | null;
|
|
3124
|
+
/** The `OrgClaimedInvite` that was created by this mutation. */
|
|
3057
3125
|
orgClaimedInvite?: OrgClaimedInvite | null;
|
|
3058
3126
|
orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
|
|
3059
3127
|
}
|
|
@@ -3068,6 +3136,7 @@ export type CreateOrgClaimedInvitePayloadSelect = {
|
|
|
3068
3136
|
};
|
|
3069
3137
|
export interface UpdateOrgClaimedInvitePayload {
|
|
3070
3138
|
clientMutationId?: string | null;
|
|
3139
|
+
/** The `OrgClaimedInvite` that was updated by this mutation. */
|
|
3071
3140
|
orgClaimedInvite?: OrgClaimedInvite | null;
|
|
3072
3141
|
orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
|
|
3073
3142
|
}
|
|
@@ -3082,6 +3151,7 @@ export type UpdateOrgClaimedInvitePayloadSelect = {
|
|
|
3082
3151
|
};
|
|
3083
3152
|
export interface DeleteOrgClaimedInvitePayload {
|
|
3084
3153
|
clientMutationId?: string | null;
|
|
3154
|
+
/** The `OrgClaimedInvite` that was deleted by this mutation. */
|
|
3085
3155
|
orgClaimedInvite?: OrgClaimedInvite | null;
|
|
3086
3156
|
orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
|
|
3087
3157
|
}
|
|
@@ -3096,6 +3166,7 @@ export type DeleteOrgClaimedInvitePayloadSelect = {
|
|
|
3096
3166
|
};
|
|
3097
3167
|
export interface CreateOrgGrantPayload {
|
|
3098
3168
|
clientMutationId?: string | null;
|
|
3169
|
+
/** The `OrgGrant` that was created by this mutation. */
|
|
3099
3170
|
orgGrant?: OrgGrant | null;
|
|
3100
3171
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
3101
3172
|
}
|
|
@@ -3110,6 +3181,7 @@ export type CreateOrgGrantPayloadSelect = {
|
|
|
3110
3181
|
};
|
|
3111
3182
|
export interface UpdateOrgGrantPayload {
|
|
3112
3183
|
clientMutationId?: string | null;
|
|
3184
|
+
/** The `OrgGrant` that was updated by this mutation. */
|
|
3113
3185
|
orgGrant?: OrgGrant | null;
|
|
3114
3186
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
3115
3187
|
}
|
|
@@ -3124,6 +3196,7 @@ export type UpdateOrgGrantPayloadSelect = {
|
|
|
3124
3196
|
};
|
|
3125
3197
|
export interface DeleteOrgGrantPayload {
|
|
3126
3198
|
clientMutationId?: string | null;
|
|
3199
|
+
/** The `OrgGrant` that was deleted by this mutation. */
|
|
3127
3200
|
orgGrant?: OrgGrant | null;
|
|
3128
3201
|
orgGrantEdge?: OrgGrantEdge | null;
|
|
3129
3202
|
}
|
|
@@ -3138,6 +3211,7 @@ export type DeleteOrgGrantPayloadSelect = {
|
|
|
3138
3211
|
};
|
|
3139
3212
|
export interface CreateOrgMembershipDefaultPayload {
|
|
3140
3213
|
clientMutationId?: string | null;
|
|
3214
|
+
/** The `OrgMembershipDefault` that was created by this mutation. */
|
|
3141
3215
|
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
3142
3216
|
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
3143
3217
|
}
|
|
@@ -3152,6 +3226,7 @@ export type CreateOrgMembershipDefaultPayloadSelect = {
|
|
|
3152
3226
|
};
|
|
3153
3227
|
export interface UpdateOrgMembershipDefaultPayload {
|
|
3154
3228
|
clientMutationId?: string | null;
|
|
3229
|
+
/** The `OrgMembershipDefault` that was updated by this mutation. */
|
|
3155
3230
|
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
3156
3231
|
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
3157
3232
|
}
|
|
@@ -3166,6 +3241,7 @@ export type UpdateOrgMembershipDefaultPayloadSelect = {
|
|
|
3166
3241
|
};
|
|
3167
3242
|
export interface DeleteOrgMembershipDefaultPayload {
|
|
3168
3243
|
clientMutationId?: string | null;
|
|
3244
|
+
/** The `OrgMembershipDefault` that was deleted by this mutation. */
|
|
3169
3245
|
orgMembershipDefault?: OrgMembershipDefault | null;
|
|
3170
3246
|
orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
|
|
3171
3247
|
}
|
|
@@ -3180,6 +3256,7 @@ export type DeleteOrgMembershipDefaultPayloadSelect = {
|
|
|
3180
3256
|
};
|
|
3181
3257
|
export interface CreateAppLevelPayload {
|
|
3182
3258
|
clientMutationId?: string | null;
|
|
3259
|
+
/** The `AppLevel` that was created by this mutation. */
|
|
3183
3260
|
appLevel?: AppLevel | null;
|
|
3184
3261
|
appLevelEdge?: AppLevelEdge | null;
|
|
3185
3262
|
}
|
|
@@ -3194,6 +3271,7 @@ export type CreateAppLevelPayloadSelect = {
|
|
|
3194
3271
|
};
|
|
3195
3272
|
export interface UpdateAppLevelPayload {
|
|
3196
3273
|
clientMutationId?: string | null;
|
|
3274
|
+
/** The `AppLevel` that was updated by this mutation. */
|
|
3197
3275
|
appLevel?: AppLevel | null;
|
|
3198
3276
|
appLevelEdge?: AppLevelEdge | null;
|
|
3199
3277
|
}
|
|
@@ -3208,6 +3286,7 @@ export type UpdateAppLevelPayloadSelect = {
|
|
|
3208
3286
|
};
|
|
3209
3287
|
export interface DeleteAppLevelPayload {
|
|
3210
3288
|
clientMutationId?: string | null;
|
|
3289
|
+
/** The `AppLevel` that was deleted by this mutation. */
|
|
3211
3290
|
appLevel?: AppLevel | null;
|
|
3212
3291
|
appLevelEdge?: AppLevelEdge | null;
|
|
3213
3292
|
}
|
|
@@ -3222,6 +3301,7 @@ export type DeleteAppLevelPayloadSelect = {
|
|
|
3222
3301
|
};
|
|
3223
3302
|
export interface CreateInvitePayload {
|
|
3224
3303
|
clientMutationId?: string | null;
|
|
3304
|
+
/** The `Invite` that was created by this mutation. */
|
|
3225
3305
|
invite?: Invite | null;
|
|
3226
3306
|
inviteEdge?: InviteEdge | null;
|
|
3227
3307
|
}
|
|
@@ -3236,6 +3316,7 @@ export type CreateInvitePayloadSelect = {
|
|
|
3236
3316
|
};
|
|
3237
3317
|
export interface UpdateInvitePayload {
|
|
3238
3318
|
clientMutationId?: string | null;
|
|
3319
|
+
/** The `Invite` that was updated by this mutation. */
|
|
3239
3320
|
invite?: Invite | null;
|
|
3240
3321
|
inviteEdge?: InviteEdge | null;
|
|
3241
3322
|
}
|
|
@@ -3250,6 +3331,7 @@ export type UpdateInvitePayloadSelect = {
|
|
|
3250
3331
|
};
|
|
3251
3332
|
export interface DeleteInvitePayload {
|
|
3252
3333
|
clientMutationId?: string | null;
|
|
3334
|
+
/** The `Invite` that was deleted by this mutation. */
|
|
3253
3335
|
invite?: Invite | null;
|
|
3254
3336
|
inviteEdge?: InviteEdge | null;
|
|
3255
3337
|
}
|
|
@@ -3264,6 +3346,7 @@ export type DeleteInvitePayloadSelect = {
|
|
|
3264
3346
|
};
|
|
3265
3347
|
export interface CreateAppMembershipPayload {
|
|
3266
3348
|
clientMutationId?: string | null;
|
|
3349
|
+
/** The `AppMembership` that was created by this mutation. */
|
|
3267
3350
|
appMembership?: AppMembership | null;
|
|
3268
3351
|
appMembershipEdge?: AppMembershipEdge | null;
|
|
3269
3352
|
}
|
|
@@ -3278,6 +3361,7 @@ export type CreateAppMembershipPayloadSelect = {
|
|
|
3278
3361
|
};
|
|
3279
3362
|
export interface UpdateAppMembershipPayload {
|
|
3280
3363
|
clientMutationId?: string | null;
|
|
3364
|
+
/** The `AppMembership` that was updated by this mutation. */
|
|
3281
3365
|
appMembership?: AppMembership | null;
|
|
3282
3366
|
appMembershipEdge?: AppMembershipEdge | null;
|
|
3283
3367
|
}
|
|
@@ -3292,6 +3376,7 @@ export type UpdateAppMembershipPayloadSelect = {
|
|
|
3292
3376
|
};
|
|
3293
3377
|
export interface DeleteAppMembershipPayload {
|
|
3294
3378
|
clientMutationId?: string | null;
|
|
3379
|
+
/** The `AppMembership` that was deleted by this mutation. */
|
|
3295
3380
|
appMembership?: AppMembership | null;
|
|
3296
3381
|
appMembershipEdge?: AppMembershipEdge | null;
|
|
3297
3382
|
}
|
|
@@ -3306,6 +3391,7 @@ export type DeleteAppMembershipPayloadSelect = {
|
|
|
3306
3391
|
};
|
|
3307
3392
|
export interface CreateOrgMembershipPayload {
|
|
3308
3393
|
clientMutationId?: string | null;
|
|
3394
|
+
/** The `OrgMembership` that was created by this mutation. */
|
|
3309
3395
|
orgMembership?: OrgMembership | null;
|
|
3310
3396
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
3311
3397
|
}
|
|
@@ -3320,6 +3406,7 @@ export type CreateOrgMembershipPayloadSelect = {
|
|
|
3320
3406
|
};
|
|
3321
3407
|
export interface UpdateOrgMembershipPayload {
|
|
3322
3408
|
clientMutationId?: string | null;
|
|
3409
|
+
/** The `OrgMembership` that was updated by this mutation. */
|
|
3323
3410
|
orgMembership?: OrgMembership | null;
|
|
3324
3411
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
3325
3412
|
}
|
|
@@ -3334,6 +3421,7 @@ export type UpdateOrgMembershipPayloadSelect = {
|
|
|
3334
3421
|
};
|
|
3335
3422
|
export interface DeleteOrgMembershipPayload {
|
|
3336
3423
|
clientMutationId?: string | null;
|
|
3424
|
+
/** The `OrgMembership` that was deleted by this mutation. */
|
|
3337
3425
|
orgMembership?: OrgMembership | null;
|
|
3338
3426
|
orgMembershipEdge?: OrgMembershipEdge | null;
|
|
3339
3427
|
}
|
|
@@ -3348,6 +3436,7 @@ export type DeleteOrgMembershipPayloadSelect = {
|
|
|
3348
3436
|
};
|
|
3349
3437
|
export interface CreateOrgInvitePayload {
|
|
3350
3438
|
clientMutationId?: string | null;
|
|
3439
|
+
/** The `OrgInvite` that was created by this mutation. */
|
|
3351
3440
|
orgInvite?: OrgInvite | null;
|
|
3352
3441
|
orgInviteEdge?: OrgInviteEdge | null;
|
|
3353
3442
|
}
|
|
@@ -3362,6 +3451,7 @@ export type CreateOrgInvitePayloadSelect = {
|
|
|
3362
3451
|
};
|
|
3363
3452
|
export interface UpdateOrgInvitePayload {
|
|
3364
3453
|
clientMutationId?: string | null;
|
|
3454
|
+
/** The `OrgInvite` that was updated by this mutation. */
|
|
3365
3455
|
orgInvite?: OrgInvite | null;
|
|
3366
3456
|
orgInviteEdge?: OrgInviteEdge | null;
|
|
3367
3457
|
}
|
|
@@ -3376,6 +3466,7 @@ export type UpdateOrgInvitePayloadSelect = {
|
|
|
3376
3466
|
};
|
|
3377
3467
|
export interface DeleteOrgInvitePayload {
|
|
3378
3468
|
clientMutationId?: string | null;
|
|
3469
|
+
/** The `OrgInvite` that was deleted by this mutation. */
|
|
3379
3470
|
orgInvite?: OrgInvite | null;
|
|
3380
3471
|
orgInviteEdge?: OrgInviteEdge | null;
|
|
3381
3472
|
}
|
|
@@ -3388,8 +3479,10 @@ export type DeleteOrgInvitePayloadSelect = {
|
|
|
3388
3479
|
select: OrgInviteEdgeSelect;
|
|
3389
3480
|
};
|
|
3390
3481
|
};
|
|
3482
|
+
/** A `AppPermission` edge in the connection. */
|
|
3391
3483
|
export interface AppPermissionEdge {
|
|
3392
3484
|
cursor?: string | null;
|
|
3485
|
+
/** The `AppPermission` at the end of the edge. */
|
|
3393
3486
|
node?: AppPermission | null;
|
|
3394
3487
|
}
|
|
3395
3488
|
export type AppPermissionEdgeSelect = {
|
|
@@ -3398,10 +3491,15 @@ export type AppPermissionEdgeSelect = {
|
|
|
3398
3491
|
select: AppPermissionSelect;
|
|
3399
3492
|
};
|
|
3400
3493
|
};
|
|
3494
|
+
/** Information about pagination in a connection. */
|
|
3401
3495
|
export interface PageInfo {
|
|
3496
|
+
/** When paginating forwards, are there more items? */
|
|
3402
3497
|
hasNextPage: boolean;
|
|
3498
|
+
/** When paginating backwards, are there more items? */
|
|
3403
3499
|
hasPreviousPage: boolean;
|
|
3500
|
+
/** When paginating backwards, the cursor to continue. */
|
|
3404
3501
|
startCursor?: string | null;
|
|
3502
|
+
/** When paginating forwards, the cursor to continue. */
|
|
3405
3503
|
endCursor?: string | null;
|
|
3406
3504
|
}
|
|
3407
3505
|
export type PageInfoSelect = {
|
|
@@ -3410,8 +3508,10 @@ export type PageInfoSelect = {
|
|
|
3410
3508
|
startCursor?: boolean;
|
|
3411
3509
|
endCursor?: boolean;
|
|
3412
3510
|
};
|
|
3511
|
+
/** A `OrgPermission` edge in the connection. */
|
|
3413
3512
|
export interface OrgPermissionEdge {
|
|
3414
3513
|
cursor?: string | null;
|
|
3514
|
+
/** The `OrgPermission` at the end of the edge. */
|
|
3415
3515
|
node?: OrgPermission | null;
|
|
3416
3516
|
}
|
|
3417
3517
|
export type OrgPermissionEdgeSelect = {
|
|
@@ -3420,8 +3520,10 @@ export type OrgPermissionEdgeSelect = {
|
|
|
3420
3520
|
select: OrgPermissionSelect;
|
|
3421
3521
|
};
|
|
3422
3522
|
};
|
|
3523
|
+
/** A `AppLevelRequirement` edge in the connection. */
|
|
3423
3524
|
export interface AppLevelRequirementEdge {
|
|
3424
3525
|
cursor?: string | null;
|
|
3526
|
+
/** The `AppLevelRequirement` at the end of the edge. */
|
|
3425
3527
|
node?: AppLevelRequirement | null;
|
|
3426
3528
|
}
|
|
3427
3529
|
export type AppLevelRequirementEdgeSelect = {
|
|
@@ -3430,8 +3532,10 @@ export type AppLevelRequirementEdgeSelect = {
|
|
|
3430
3532
|
select: AppLevelRequirementSelect;
|
|
3431
3533
|
};
|
|
3432
3534
|
};
|
|
3535
|
+
/** A `OrgMember` edge in the connection. */
|
|
3433
3536
|
export interface OrgMemberEdge {
|
|
3434
3537
|
cursor?: string | null;
|
|
3538
|
+
/** The `OrgMember` at the end of the edge. */
|
|
3435
3539
|
node?: OrgMember | null;
|
|
3436
3540
|
}
|
|
3437
3541
|
export type OrgMemberEdgeSelect = {
|
|
@@ -3440,8 +3544,10 @@ export type OrgMemberEdgeSelect = {
|
|
|
3440
3544
|
select: OrgMemberSelect;
|
|
3441
3545
|
};
|
|
3442
3546
|
};
|
|
3547
|
+
/** A `AppPermissionDefault` edge in the connection. */
|
|
3443
3548
|
export interface AppPermissionDefaultEdge {
|
|
3444
3549
|
cursor?: string | null;
|
|
3550
|
+
/** The `AppPermissionDefault` at the end of the edge. */
|
|
3445
3551
|
node?: AppPermissionDefault | null;
|
|
3446
3552
|
}
|
|
3447
3553
|
export type AppPermissionDefaultEdgeSelect = {
|
|
@@ -3450,8 +3556,10 @@ export type AppPermissionDefaultEdgeSelect = {
|
|
|
3450
3556
|
select: AppPermissionDefaultSelect;
|
|
3451
3557
|
};
|
|
3452
3558
|
};
|
|
3559
|
+
/** A `OrgPermissionDefault` edge in the connection. */
|
|
3453
3560
|
export interface OrgPermissionDefaultEdge {
|
|
3454
3561
|
cursor?: string | null;
|
|
3562
|
+
/** The `OrgPermissionDefault` at the end of the edge. */
|
|
3455
3563
|
node?: OrgPermissionDefault | null;
|
|
3456
3564
|
}
|
|
3457
3565
|
export type OrgPermissionDefaultEdgeSelect = {
|
|
@@ -3460,8 +3568,10 @@ export type OrgPermissionDefaultEdgeSelect = {
|
|
|
3460
3568
|
select: OrgPermissionDefaultSelect;
|
|
3461
3569
|
};
|
|
3462
3570
|
};
|
|
3571
|
+
/** A `AppAdminGrant` edge in the connection. */
|
|
3463
3572
|
export interface AppAdminGrantEdge {
|
|
3464
3573
|
cursor?: string | null;
|
|
3574
|
+
/** The `AppAdminGrant` at the end of the edge. */
|
|
3465
3575
|
node?: AppAdminGrant | null;
|
|
3466
3576
|
}
|
|
3467
3577
|
export type AppAdminGrantEdgeSelect = {
|
|
@@ -3470,8 +3580,10 @@ export type AppAdminGrantEdgeSelect = {
|
|
|
3470
3580
|
select: AppAdminGrantSelect;
|
|
3471
3581
|
};
|
|
3472
3582
|
};
|
|
3583
|
+
/** A `AppOwnerGrant` edge in the connection. */
|
|
3473
3584
|
export interface AppOwnerGrantEdge {
|
|
3474
3585
|
cursor?: string | null;
|
|
3586
|
+
/** The `AppOwnerGrant` at the end of the edge. */
|
|
3475
3587
|
node?: AppOwnerGrant | null;
|
|
3476
3588
|
}
|
|
3477
3589
|
export type AppOwnerGrantEdgeSelect = {
|
|
@@ -3480,8 +3592,10 @@ export type AppOwnerGrantEdgeSelect = {
|
|
|
3480
3592
|
select: AppOwnerGrantSelect;
|
|
3481
3593
|
};
|
|
3482
3594
|
};
|
|
3595
|
+
/** A `AppLimitDefault` edge in the connection. */
|
|
3483
3596
|
export interface AppLimitDefaultEdge {
|
|
3484
3597
|
cursor?: string | null;
|
|
3598
|
+
/** The `AppLimitDefault` at the end of the edge. */
|
|
3485
3599
|
node?: AppLimitDefault | null;
|
|
3486
3600
|
}
|
|
3487
3601
|
export type AppLimitDefaultEdgeSelect = {
|
|
@@ -3490,8 +3604,10 @@ export type AppLimitDefaultEdgeSelect = {
|
|
|
3490
3604
|
select: AppLimitDefaultSelect;
|
|
3491
3605
|
};
|
|
3492
3606
|
};
|
|
3607
|
+
/** A `OrgLimitDefault` edge in the connection. */
|
|
3493
3608
|
export interface OrgLimitDefaultEdge {
|
|
3494
3609
|
cursor?: string | null;
|
|
3610
|
+
/** The `OrgLimitDefault` at the end of the edge. */
|
|
3495
3611
|
node?: OrgLimitDefault | null;
|
|
3496
3612
|
}
|
|
3497
3613
|
export type OrgLimitDefaultEdgeSelect = {
|
|
@@ -3500,8 +3616,10 @@ export type OrgLimitDefaultEdgeSelect = {
|
|
|
3500
3616
|
select: OrgLimitDefaultSelect;
|
|
3501
3617
|
};
|
|
3502
3618
|
};
|
|
3619
|
+
/** A `OrgAdminGrant` edge in the connection. */
|
|
3503
3620
|
export interface OrgAdminGrantEdge {
|
|
3504
3621
|
cursor?: string | null;
|
|
3622
|
+
/** The `OrgAdminGrant` at the end of the edge. */
|
|
3505
3623
|
node?: OrgAdminGrant | null;
|
|
3506
3624
|
}
|
|
3507
3625
|
export type OrgAdminGrantEdgeSelect = {
|
|
@@ -3510,8 +3628,10 @@ export type OrgAdminGrantEdgeSelect = {
|
|
|
3510
3628
|
select: OrgAdminGrantSelect;
|
|
3511
3629
|
};
|
|
3512
3630
|
};
|
|
3631
|
+
/** A `OrgOwnerGrant` edge in the connection. */
|
|
3513
3632
|
export interface OrgOwnerGrantEdge {
|
|
3514
3633
|
cursor?: string | null;
|
|
3634
|
+
/** The `OrgOwnerGrant` at the end of the edge. */
|
|
3515
3635
|
node?: OrgOwnerGrant | null;
|
|
3516
3636
|
}
|
|
3517
3637
|
export type OrgOwnerGrantEdgeSelect = {
|
|
@@ -3520,8 +3640,10 @@ export type OrgOwnerGrantEdgeSelect = {
|
|
|
3520
3640
|
select: OrgOwnerGrantSelect;
|
|
3521
3641
|
};
|
|
3522
3642
|
};
|
|
3643
|
+
/** A `MembershipType` edge in the connection. */
|
|
3523
3644
|
export interface MembershipTypeEdge {
|
|
3524
3645
|
cursor?: string | null;
|
|
3646
|
+
/** The `MembershipType` at the end of the edge. */
|
|
3525
3647
|
node?: MembershipType | null;
|
|
3526
3648
|
}
|
|
3527
3649
|
export type MembershipTypeEdgeSelect = {
|
|
@@ -3530,8 +3652,10 @@ export type MembershipTypeEdgeSelect = {
|
|
|
3530
3652
|
select: MembershipTypeSelect;
|
|
3531
3653
|
};
|
|
3532
3654
|
};
|
|
3655
|
+
/** A `AppLimit` edge in the connection. */
|
|
3533
3656
|
export interface AppLimitEdge {
|
|
3534
3657
|
cursor?: string | null;
|
|
3658
|
+
/** The `AppLimit` at the end of the edge. */
|
|
3535
3659
|
node?: AppLimit | null;
|
|
3536
3660
|
}
|
|
3537
3661
|
export type AppLimitEdgeSelect = {
|
|
@@ -3540,8 +3664,10 @@ export type AppLimitEdgeSelect = {
|
|
|
3540
3664
|
select: AppLimitSelect;
|
|
3541
3665
|
};
|
|
3542
3666
|
};
|
|
3667
|
+
/** A `AppAchievement` edge in the connection. */
|
|
3543
3668
|
export interface AppAchievementEdge {
|
|
3544
3669
|
cursor?: string | null;
|
|
3670
|
+
/** The `AppAchievement` at the end of the edge. */
|
|
3545
3671
|
node?: AppAchievement | null;
|
|
3546
3672
|
}
|
|
3547
3673
|
export type AppAchievementEdgeSelect = {
|
|
@@ -3550,8 +3676,10 @@ export type AppAchievementEdgeSelect = {
|
|
|
3550
3676
|
select: AppAchievementSelect;
|
|
3551
3677
|
};
|
|
3552
3678
|
};
|
|
3679
|
+
/** A `AppStep` edge in the connection. */
|
|
3553
3680
|
export interface AppStepEdge {
|
|
3554
3681
|
cursor?: string | null;
|
|
3682
|
+
/** The `AppStep` at the end of the edge. */
|
|
3555
3683
|
node?: AppStep | null;
|
|
3556
3684
|
}
|
|
3557
3685
|
export type AppStepEdgeSelect = {
|
|
@@ -3560,8 +3688,10 @@ export type AppStepEdgeSelect = {
|
|
|
3560
3688
|
select: AppStepSelect;
|
|
3561
3689
|
};
|
|
3562
3690
|
};
|
|
3691
|
+
/** A `ClaimedInvite` edge in the connection. */
|
|
3563
3692
|
export interface ClaimedInviteEdge {
|
|
3564
3693
|
cursor?: string | null;
|
|
3694
|
+
/** The `ClaimedInvite` at the end of the edge. */
|
|
3565
3695
|
node?: ClaimedInvite | null;
|
|
3566
3696
|
}
|
|
3567
3697
|
export type ClaimedInviteEdgeSelect = {
|
|
@@ -3570,8 +3700,10 @@ export type ClaimedInviteEdgeSelect = {
|
|
|
3570
3700
|
select: ClaimedInviteSelect;
|
|
3571
3701
|
};
|
|
3572
3702
|
};
|
|
3703
|
+
/** A `AppGrant` edge in the connection. */
|
|
3573
3704
|
export interface AppGrantEdge {
|
|
3574
3705
|
cursor?: string | null;
|
|
3706
|
+
/** The `AppGrant` at the end of the edge. */
|
|
3575
3707
|
node?: AppGrant | null;
|
|
3576
3708
|
}
|
|
3577
3709
|
export type AppGrantEdgeSelect = {
|
|
@@ -3580,8 +3712,10 @@ export type AppGrantEdgeSelect = {
|
|
|
3580
3712
|
select: AppGrantSelect;
|
|
3581
3713
|
};
|
|
3582
3714
|
};
|
|
3715
|
+
/** A `AppMembershipDefault` edge in the connection. */
|
|
3583
3716
|
export interface AppMembershipDefaultEdge {
|
|
3584
3717
|
cursor?: string | null;
|
|
3718
|
+
/** The `AppMembershipDefault` at the end of the edge. */
|
|
3585
3719
|
node?: AppMembershipDefault | null;
|
|
3586
3720
|
}
|
|
3587
3721
|
export type AppMembershipDefaultEdgeSelect = {
|
|
@@ -3590,8 +3724,10 @@ export type AppMembershipDefaultEdgeSelect = {
|
|
|
3590
3724
|
select: AppMembershipDefaultSelect;
|
|
3591
3725
|
};
|
|
3592
3726
|
};
|
|
3727
|
+
/** A `OrgLimit` edge in the connection. */
|
|
3593
3728
|
export interface OrgLimitEdge {
|
|
3594
3729
|
cursor?: string | null;
|
|
3730
|
+
/** The `OrgLimit` at the end of the edge. */
|
|
3595
3731
|
node?: OrgLimit | null;
|
|
3596
3732
|
}
|
|
3597
3733
|
export type OrgLimitEdgeSelect = {
|
|
@@ -3600,8 +3736,10 @@ export type OrgLimitEdgeSelect = {
|
|
|
3600
3736
|
select: OrgLimitSelect;
|
|
3601
3737
|
};
|
|
3602
3738
|
};
|
|
3739
|
+
/** A `OrgClaimedInvite` edge in the connection. */
|
|
3603
3740
|
export interface OrgClaimedInviteEdge {
|
|
3604
3741
|
cursor?: string | null;
|
|
3742
|
+
/** The `OrgClaimedInvite` at the end of the edge. */
|
|
3605
3743
|
node?: OrgClaimedInvite | null;
|
|
3606
3744
|
}
|
|
3607
3745
|
export type OrgClaimedInviteEdgeSelect = {
|
|
@@ -3610,8 +3748,10 @@ export type OrgClaimedInviteEdgeSelect = {
|
|
|
3610
3748
|
select: OrgClaimedInviteSelect;
|
|
3611
3749
|
};
|
|
3612
3750
|
};
|
|
3751
|
+
/** A `OrgGrant` edge in the connection. */
|
|
3613
3752
|
export interface OrgGrantEdge {
|
|
3614
3753
|
cursor?: string | null;
|
|
3754
|
+
/** The `OrgGrant` at the end of the edge. */
|
|
3615
3755
|
node?: OrgGrant | null;
|
|
3616
3756
|
}
|
|
3617
3757
|
export type OrgGrantEdgeSelect = {
|
|
@@ -3620,8 +3760,10 @@ export type OrgGrantEdgeSelect = {
|
|
|
3620
3760
|
select: OrgGrantSelect;
|
|
3621
3761
|
};
|
|
3622
3762
|
};
|
|
3763
|
+
/** A `OrgMembershipDefault` edge in the connection. */
|
|
3623
3764
|
export interface OrgMembershipDefaultEdge {
|
|
3624
3765
|
cursor?: string | null;
|
|
3766
|
+
/** The `OrgMembershipDefault` at the end of the edge. */
|
|
3625
3767
|
node?: OrgMembershipDefault | null;
|
|
3626
3768
|
}
|
|
3627
3769
|
export type OrgMembershipDefaultEdgeSelect = {
|
|
@@ -3630,8 +3772,10 @@ export type OrgMembershipDefaultEdgeSelect = {
|
|
|
3630
3772
|
select: OrgMembershipDefaultSelect;
|
|
3631
3773
|
};
|
|
3632
3774
|
};
|
|
3775
|
+
/** A `AppLevel` edge in the connection. */
|
|
3633
3776
|
export interface AppLevelEdge {
|
|
3634
3777
|
cursor?: string | null;
|
|
3778
|
+
/** The `AppLevel` at the end of the edge. */
|
|
3635
3779
|
node?: AppLevel | null;
|
|
3636
3780
|
}
|
|
3637
3781
|
export type AppLevelEdgeSelect = {
|
|
@@ -3640,8 +3784,10 @@ export type AppLevelEdgeSelect = {
|
|
|
3640
3784
|
select: AppLevelSelect;
|
|
3641
3785
|
};
|
|
3642
3786
|
};
|
|
3787
|
+
/** A `Invite` edge in the connection. */
|
|
3643
3788
|
export interface InviteEdge {
|
|
3644
3789
|
cursor?: string | null;
|
|
3790
|
+
/** The `Invite` at the end of the edge. */
|
|
3645
3791
|
node?: Invite | null;
|
|
3646
3792
|
}
|
|
3647
3793
|
export type InviteEdgeSelect = {
|
|
@@ -3650,8 +3796,10 @@ export type InviteEdgeSelect = {
|
|
|
3650
3796
|
select: InviteSelect;
|
|
3651
3797
|
};
|
|
3652
3798
|
};
|
|
3799
|
+
/** A `AppMembership` edge in the connection. */
|
|
3653
3800
|
export interface AppMembershipEdge {
|
|
3654
3801
|
cursor?: string | null;
|
|
3802
|
+
/** The `AppMembership` at the end of the edge. */
|
|
3655
3803
|
node?: AppMembership | null;
|
|
3656
3804
|
}
|
|
3657
3805
|
export type AppMembershipEdgeSelect = {
|
|
@@ -3660,8 +3808,10 @@ export type AppMembershipEdgeSelect = {
|
|
|
3660
3808
|
select: AppMembershipSelect;
|
|
3661
3809
|
};
|
|
3662
3810
|
};
|
|
3811
|
+
/** A `OrgMembership` edge in the connection. */
|
|
3663
3812
|
export interface OrgMembershipEdge {
|
|
3664
3813
|
cursor?: string | null;
|
|
3814
|
+
/** The `OrgMembership` at the end of the edge. */
|
|
3665
3815
|
node?: OrgMembership | null;
|
|
3666
3816
|
}
|
|
3667
3817
|
export type OrgMembershipEdgeSelect = {
|
|
@@ -3670,8 +3820,10 @@ export type OrgMembershipEdgeSelect = {
|
|
|
3670
3820
|
select: OrgMembershipSelect;
|
|
3671
3821
|
};
|
|
3672
3822
|
};
|
|
3823
|
+
/** A `OrgInvite` edge in the connection. */
|
|
3673
3824
|
export interface OrgInviteEdge {
|
|
3674
3825
|
cursor?: string | null;
|
|
3826
|
+
/** The `OrgInvite` at the end of the edge. */
|
|
3675
3827
|
node?: OrgInvite | null;
|
|
3676
3828
|
}
|
|
3677
3829
|
export type OrgInviteEdgeSelect = {
|