@constructive-sdk/cli 0.12.18 → 0.12.20

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.
Files changed (41) hide show
  1. package/admin/cli/commands.js +13 -13
  2. package/admin/cli/executor.d.ts +6 -6
  3. package/admin/orm/index.d.ts +12 -12
  4. package/admin/orm/index.js +12 -12
  5. package/admin/orm/input-types.d.ts +849 -849
  6. package/admin/orm/models/index.d.ts +6 -6
  7. package/admin/orm/models/index.js +13 -13
  8. package/esm/admin/cli/commands.js +13 -13
  9. package/esm/admin/cli/executor.d.ts +6 -6
  10. package/esm/admin/orm/index.d.ts +12 -12
  11. package/esm/admin/orm/index.js +12 -12
  12. package/esm/admin/orm/input-types.d.ts +849 -849
  13. package/esm/admin/orm/models/index.d.ts +6 -6
  14. package/esm/admin/orm/models/index.js +6 -6
  15. package/esm/public/cli/commands/provision-table.js +1 -1
  16. package/esm/public/cli/commands.js +9 -11
  17. package/esm/public/cli/executor.d.ts +4 -5
  18. package/esm/public/orm/index.d.ts +8 -10
  19. package/esm/public/orm/index.js +8 -10
  20. package/esm/public/orm/input-types.d.ts +368 -529
  21. package/esm/public/orm/models/index.d.ts +4 -5
  22. package/esm/public/orm/models/index.js +4 -5
  23. package/esm/public/orm/mutation/index.d.ts +1 -1
  24. package/package.json +3 -3
  25. package/public/cli/commands/provision-table.js +1 -1
  26. package/public/cli/commands.js +9 -11
  27. package/public/cli/executor.d.ts +4 -5
  28. package/public/orm/index.d.ts +8 -10
  29. package/public/orm/index.js +8 -10
  30. package/public/orm/input-types.d.ts +368 -529
  31. package/public/orm/models/index.d.ts +4 -5
  32. package/public/orm/models/index.js +10 -12
  33. package/public/orm/mutation/index.d.ts +1 -1
  34. package/esm/public/cli/commands/node-type-registry.d.ts +0 -8
  35. package/esm/public/cli/commands/node-type-registry.js +0 -399
  36. package/esm/public/orm/models/nodeTypeRegistry.d.ts +0 -56
  37. package/esm/public/orm/models/nodeTypeRegistry.js +0 -96
  38. package/public/cli/commands/node-type-registry.d.ts +0 -8
  39. package/public/cli/commands/node-type-registry.js +0 -401
  40. package/public/orm/models/nodeTypeRegistry.d.ts +0 -56
  41. package/public/orm/models/nodeTypeRegistry.js +0 -100
@@ -325,6 +325,22 @@ export interface AppOwnerGrant {
325
325
  createdAt?: string | null;
326
326
  updatedAt?: string | null;
327
327
  }
328
+ /** Default maximum values for each named limit, applied when no per-actor override exists */
329
+ export interface AppLimitDefault {
330
+ id: string;
331
+ /** Name identifier of the limit this default applies to */
332
+ name?: string | null;
333
+ /** Default maximum usage allowed for this limit */
334
+ max?: number | null;
335
+ }
336
+ /** Default maximum values for each named limit, applied when no per-actor override exists */
337
+ export interface OrgLimitDefault {
338
+ id: string;
339
+ /** Name identifier of the limit this default applies to */
340
+ name?: string | null;
341
+ /** Default maximum usage allowed for this limit */
342
+ max?: number | null;
343
+ }
328
344
  /** Records of admin role grants and revocations between members */
329
345
  export interface OrgAdminGrant {
330
346
  id: string;
@@ -351,42 +367,6 @@ export interface OrgOwnerGrant {
351
367
  createdAt?: string | null;
352
368
  updatedAt?: string | null;
353
369
  }
354
- /** Default maximum values for each named limit, applied when no per-actor override exists */
355
- export interface AppLimitDefault {
356
- id: string;
357
- /** Name identifier of the limit this default applies to */
358
- name?: string | null;
359
- /** Default maximum usage allowed for this limit */
360
- max?: number | null;
361
- }
362
- /** Default maximum values for each named limit, applied when no per-actor override exists */
363
- export interface OrgLimitDefault {
364
- id: string;
365
- /** Name identifier of the limit this default applies to */
366
- name?: string | null;
367
- /** Default maximum usage allowed for this limit */
368
- max?: number | null;
369
- }
370
- /** Append-only log of hierarchy edge grants and revocations; triggers apply changes to the edges table */
371
- export interface OrgChartEdgeGrant {
372
- id: string;
373
- /** Organization this grant applies to */
374
- entityId?: string | null;
375
- /** User ID of the subordinate being placed in the hierarchy */
376
- childId?: string | null;
377
- /** User ID of the manager being assigned; NULL for top-level positions */
378
- parentId?: string | null;
379
- /** User ID of the admin who performed this grant or revocation; NULL if grantor was deleted */
380
- grantorId?: string | null;
381
- /** TRUE to add/update the edge, FALSE to remove it */
382
- isGrant?: boolean | null;
383
- /** Job title or role name being assigned in this grant */
384
- positionTitle?: string | null;
385
- /** Numeric seniority level being assigned in this grant */
386
- positionLevel?: number | null;
387
- /** Timestamp when this grant or revocation was recorded */
388
- createdAt?: string | null;
389
- }
390
370
  /** Defines the different scopes of membership (e.g. App Member, Organization Member, Group Member) */
391
371
  export interface MembershipType {
392
372
  /** Integer identifier for the membership type (1=App, 2=Organization, 3=Group) */
@@ -444,6 +424,39 @@ export interface ClaimedInvite {
444
424
  createdAt?: string | null;
445
425
  updatedAt?: string | null;
446
426
  }
427
+ /** Append-only log of hierarchy edge grants and revocations; triggers apply changes to the edges table */
428
+ export interface OrgChartEdgeGrant {
429
+ id: string;
430
+ /** Organization this grant applies to */
431
+ entityId?: string | null;
432
+ /** User ID of the subordinate being placed in the hierarchy */
433
+ childId?: string | null;
434
+ /** User ID of the manager being assigned; NULL for top-level positions */
435
+ parentId?: string | null;
436
+ /** User ID of the admin who performed this grant or revocation; NULL if grantor was deleted */
437
+ grantorId?: string | null;
438
+ /** TRUE to add/update the edge, FALSE to remove it */
439
+ isGrant?: boolean | null;
440
+ /** Job title or role name being assigned in this grant */
441
+ positionTitle?: string | null;
442
+ /** Numeric seniority level being assigned in this grant */
443
+ positionLevel?: number | null;
444
+ /** Timestamp when this grant or revocation was recorded */
445
+ createdAt?: string | null;
446
+ }
447
+ /** Tracks per-actor usage counts against configurable maximum limits */
448
+ export interface OrgLimit {
449
+ id: string;
450
+ /** Name identifier of the limit being tracked */
451
+ name?: string | null;
452
+ /** User whose usage is being tracked against this limit */
453
+ actorId?: string | null;
454
+ /** Current usage count for this actor and limit */
455
+ num?: number | null;
456
+ /** Maximum allowed usage; NULL means use the default limit value */
457
+ max?: number | null;
458
+ entityId?: string | null;
459
+ }
447
460
  /** Records of individual permission grants and revocations for members via bitmask */
448
461
  export interface AppGrant {
449
462
  id: string;
@@ -469,19 +482,6 @@ export interface AppMembershipDefault {
469
482
  /** Whether new members are automatically verified upon joining */
470
483
  isVerified?: boolean | null;
471
484
  }
472
- /** Tracks per-actor usage counts against configurable maximum limits */
473
- export interface OrgLimit {
474
- id: string;
475
- /** Name identifier of the limit being tracked */
476
- name?: string | null;
477
- /** User whose usage is being tracked against this limit */
478
- actorId?: string | null;
479
- /** Current usage count for this actor and limit */
480
- num?: number | null;
481
- /** Maximum allowed usage; NULL means use the default limit value */
482
- max?: number | null;
483
- entityId?: string | null;
484
- }
485
485
  /** Records of successfully claimed invitations, linking senders to receivers */
486
486
  export interface OrgClaimedInvite {
487
487
  id: string;
@@ -542,6 +542,44 @@ export interface OrgMembershipDefault {
542
542
  /** When a group is created, whether to auto-add existing org members as group members */
543
543
  createGroupsCascadeMembers?: boolean | null;
544
544
  }
545
+ /** Defines available levels that users can achieve by completing requirements */
546
+ export interface AppLevel {
547
+ id: string;
548
+ /** Unique name of the level */
549
+ name?: string | null;
550
+ /** Human-readable description of what this level represents */
551
+ description?: string | null;
552
+ /** Badge or icon image associated with this level */
553
+ image?: ConstructiveInternalTypeImage | null;
554
+ /** Optional owner (actor) who created or manages this level */
555
+ ownerId?: string | null;
556
+ createdAt?: string | null;
557
+ updatedAt?: string | null;
558
+ }
559
+ /** Invitation records sent to prospective members via email, with token-based redemption and expiration */
560
+ export interface Invite {
561
+ id: string;
562
+ /** Email address of the invited recipient */
563
+ email?: ConstructiveInternalTypeEmail | null;
564
+ /** User ID of the member who sent this invitation */
565
+ senderId?: string | null;
566
+ /** Unique random hex token used to redeem this invitation */
567
+ inviteToken?: string | null;
568
+ /** Whether this invitation is still valid and can be redeemed */
569
+ inviteValid?: boolean | null;
570
+ /** Maximum number of times this invite can be claimed; -1 means unlimited */
571
+ inviteLimit?: number | null;
572
+ /** Running count of how many times this invite has been claimed */
573
+ inviteCount?: number | null;
574
+ /** Whether this invite can be claimed by multiple recipients */
575
+ multiple?: boolean | null;
576
+ /** Optional JSON payload of additional invite metadata */
577
+ data?: Record<string, unknown> | null;
578
+ /** Timestamp after which this invitation can no longer be redeemed */
579
+ expiresAt?: string | null;
580
+ createdAt?: string | null;
581
+ updatedAt?: string | null;
582
+ }
545
583
  /** Tracks membership records linking actors to entities with permission bitmasks, ownership, and admin status */
546
584
  export interface AppMembership {
547
585
  id: string;
@@ -601,44 +639,6 @@ export interface OrgMembership {
601
639
  profileId?: string | null;
602
640
  }
603
641
  /** Invitation records sent to prospective members via email, with token-based redemption and expiration */
604
- export interface Invite {
605
- id: string;
606
- /** Email address of the invited recipient */
607
- email?: ConstructiveInternalTypeEmail | null;
608
- /** User ID of the member who sent this invitation */
609
- senderId?: string | null;
610
- /** Unique random hex token used to redeem this invitation */
611
- inviteToken?: string | null;
612
- /** Whether this invitation is still valid and can be redeemed */
613
- inviteValid?: boolean | null;
614
- /** Maximum number of times this invite can be claimed; -1 means unlimited */
615
- inviteLimit?: number | null;
616
- /** Running count of how many times this invite has been claimed */
617
- inviteCount?: number | null;
618
- /** Whether this invite can be claimed by multiple recipients */
619
- multiple?: boolean | null;
620
- /** Optional JSON payload of additional invite metadata */
621
- data?: Record<string, unknown> | null;
622
- /** Timestamp after which this invitation can no longer be redeemed */
623
- expiresAt?: string | null;
624
- createdAt?: string | null;
625
- updatedAt?: string | null;
626
- }
627
- /** Defines available levels that users can achieve by completing requirements */
628
- export interface AppLevel {
629
- id: string;
630
- /** Unique name of the level */
631
- name?: string | null;
632
- /** Human-readable description of what this level represents */
633
- description?: string | null;
634
- /** Badge or icon image associated with this level */
635
- image?: ConstructiveInternalTypeImage | null;
636
- /** Optional owner (actor) who created or manages this level */
637
- ownerId?: string | null;
638
- createdAt?: string | null;
639
- updatedAt?: string | null;
640
- }
641
- /** Invitation records sent to prospective members via email, with token-based redemption and expiration */
642
642
  export interface OrgInvite {
643
643
  id: string;
644
644
  /** Email address of the invited recipient */
@@ -696,15 +696,13 @@ export interface AppAdminGrantRelations {
696
696
  }
697
697
  export interface AppOwnerGrantRelations {
698
698
  }
699
- export interface OrgAdminGrantRelations {
700
- }
701
- export interface OrgOwnerGrantRelations {
702
- }
703
699
  export interface AppLimitDefaultRelations {
704
700
  }
705
701
  export interface OrgLimitDefaultRelations {
706
702
  }
707
- export interface OrgChartEdgeGrantRelations {
703
+ export interface OrgAdminGrantRelations {
704
+ }
705
+ export interface OrgOwnerGrantRelations {
708
706
  }
709
707
  export interface MembershipTypeRelations {
710
708
  }
@@ -716,12 +714,14 @@ export interface AppStepRelations {
716
714
  }
717
715
  export interface ClaimedInviteRelations {
718
716
  }
717
+ export interface OrgChartEdgeGrantRelations {
718
+ }
719
+ export interface OrgLimitRelations {
720
+ }
719
721
  export interface AppGrantRelations {
720
722
  }
721
723
  export interface AppMembershipDefaultRelations {
722
724
  }
723
- export interface OrgLimitRelations {
724
- }
725
725
  export interface OrgClaimedInviteRelations {
726
726
  }
727
727
  export interface OrgGrantRelations {
@@ -730,13 +730,13 @@ export interface OrgChartEdgeRelations {
730
730
  }
731
731
  export interface OrgMembershipDefaultRelations {
732
732
  }
733
- export interface AppMembershipRelations {
734
- }
735
- export interface OrgMembershipRelations {
733
+ export interface AppLevelRelations {
736
734
  }
737
735
  export interface InviteRelations {
738
736
  }
739
- export interface AppLevelRelations {
737
+ export interface AppMembershipRelations {
738
+ }
739
+ export interface OrgMembershipRelations {
740
740
  }
741
741
  export interface OrgInviteRelations {
742
742
  }
@@ -750,27 +750,27 @@ export type AppPermissionDefaultWithRelations = AppPermissionDefault & AppPermis
750
750
  export type OrgPermissionDefaultWithRelations = OrgPermissionDefault & OrgPermissionDefaultRelations;
751
751
  export type AppAdminGrantWithRelations = AppAdminGrant & AppAdminGrantRelations;
752
752
  export type AppOwnerGrantWithRelations = AppOwnerGrant & AppOwnerGrantRelations;
753
- export type OrgAdminGrantWithRelations = OrgAdminGrant & OrgAdminGrantRelations;
754
- export type OrgOwnerGrantWithRelations = OrgOwnerGrant & OrgOwnerGrantRelations;
755
753
  export type AppLimitDefaultWithRelations = AppLimitDefault & AppLimitDefaultRelations;
756
754
  export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRelations;
757
- export type OrgChartEdgeGrantWithRelations = OrgChartEdgeGrant & OrgChartEdgeGrantRelations;
755
+ export type OrgAdminGrantWithRelations = OrgAdminGrant & OrgAdminGrantRelations;
756
+ export type OrgOwnerGrantWithRelations = OrgOwnerGrant & OrgOwnerGrantRelations;
758
757
  export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelations;
759
758
  export type AppLimitWithRelations = AppLimit & AppLimitRelations;
760
759
  export type AppAchievementWithRelations = AppAchievement & AppAchievementRelations;
761
760
  export type AppStepWithRelations = AppStep & AppStepRelations;
762
761
  export type ClaimedInviteWithRelations = ClaimedInvite & ClaimedInviteRelations;
762
+ export type OrgChartEdgeGrantWithRelations = OrgChartEdgeGrant & OrgChartEdgeGrantRelations;
763
+ export type OrgLimitWithRelations = OrgLimit & OrgLimitRelations;
763
764
  export type AppGrantWithRelations = AppGrant & AppGrantRelations;
764
765
  export type AppMembershipDefaultWithRelations = AppMembershipDefault & AppMembershipDefaultRelations;
765
- export type OrgLimitWithRelations = OrgLimit & OrgLimitRelations;
766
766
  export type OrgClaimedInviteWithRelations = OrgClaimedInvite & OrgClaimedInviteRelations;
767
767
  export type OrgGrantWithRelations = OrgGrant & OrgGrantRelations;
768
768
  export type OrgChartEdgeWithRelations = OrgChartEdge & OrgChartEdgeRelations;
769
769
  export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
770
+ export type AppLevelWithRelations = AppLevel & AppLevelRelations;
771
+ export type InviteWithRelations = Invite & InviteRelations;
770
772
  export type AppMembershipWithRelations = AppMembership & AppMembershipRelations;
771
773
  export type OrgMembershipWithRelations = OrgMembership & OrgMembershipRelations;
772
- export type InviteWithRelations = Invite & InviteRelations;
773
- export type AppLevelWithRelations = AppLevel & AppLevelRelations;
774
774
  export type OrgInviteWithRelations = OrgInvite & OrgInviteRelations;
775
775
  export type OrgGetManagersRecordSelect = {
776
776
  userId?: boolean;
@@ -835,6 +835,16 @@ export type AppOwnerGrantSelect = {
835
835
  createdAt?: boolean;
836
836
  updatedAt?: boolean;
837
837
  };
838
+ export type AppLimitDefaultSelect = {
839
+ id?: boolean;
840
+ name?: boolean;
841
+ max?: boolean;
842
+ };
843
+ export type OrgLimitDefaultSelect = {
844
+ id?: boolean;
845
+ name?: boolean;
846
+ max?: boolean;
847
+ };
838
848
  export type OrgAdminGrantSelect = {
839
849
  id?: boolean;
840
850
  isGrant?: boolean;
@@ -853,27 +863,6 @@ export type OrgOwnerGrantSelect = {
853
863
  createdAt?: boolean;
854
864
  updatedAt?: boolean;
855
865
  };
856
- export type AppLimitDefaultSelect = {
857
- id?: boolean;
858
- name?: boolean;
859
- max?: boolean;
860
- };
861
- export type OrgLimitDefaultSelect = {
862
- id?: boolean;
863
- name?: boolean;
864
- max?: boolean;
865
- };
866
- export type OrgChartEdgeGrantSelect = {
867
- id?: boolean;
868
- entityId?: boolean;
869
- childId?: boolean;
870
- parentId?: boolean;
871
- grantorId?: boolean;
872
- isGrant?: boolean;
873
- positionTitle?: boolean;
874
- positionLevel?: boolean;
875
- createdAt?: boolean;
876
- };
877
866
  export type MembershipTypeSelect = {
878
867
  id?: boolean;
879
868
  name?: boolean;
@@ -911,25 +900,18 @@ export type ClaimedInviteSelect = {
911
900
  createdAt?: boolean;
912
901
  updatedAt?: boolean;
913
902
  };
914
- export type AppGrantSelect = {
903
+ export type OrgChartEdgeGrantSelect = {
915
904
  id?: boolean;
916
- permissions?: boolean;
917
- isGrant?: boolean;
918
- actorId?: boolean;
905
+ entityId?: boolean;
906
+ childId?: boolean;
907
+ parentId?: boolean;
919
908
  grantorId?: boolean;
909
+ isGrant?: boolean;
910
+ positionTitle?: boolean;
911
+ positionLevel?: boolean;
920
912
  createdAt?: boolean;
921
- updatedAt?: boolean;
922
913
  };
923
- export type AppMembershipDefaultSelect = {
924
- id?: boolean;
925
- createdAt?: boolean;
926
- updatedAt?: boolean;
927
- createdBy?: boolean;
928
- updatedBy?: boolean;
929
- isApproved?: boolean;
930
- isVerified?: boolean;
931
- };
932
- export type OrgLimitSelect = {
914
+ export type OrgLimitSelect = {
933
915
  id?: boolean;
934
916
  name?: boolean;
935
917
  actorId?: boolean;
@@ -937,6 +919,24 @@ export type OrgLimitSelect = {
937
919
  max?: boolean;
938
920
  entityId?: boolean;
939
921
  };
922
+ export type AppGrantSelect = {
923
+ id?: boolean;
924
+ permissions?: boolean;
925
+ isGrant?: boolean;
926
+ actorId?: boolean;
927
+ grantorId?: boolean;
928
+ createdAt?: boolean;
929
+ updatedAt?: boolean;
930
+ };
931
+ export type AppMembershipDefaultSelect = {
932
+ id?: boolean;
933
+ createdAt?: boolean;
934
+ updatedAt?: boolean;
935
+ createdBy?: boolean;
936
+ updatedBy?: boolean;
937
+ isApproved?: boolean;
938
+ isVerified?: boolean;
939
+ };
940
940
  export type OrgClaimedInviteSelect = {
941
941
  id?: boolean;
942
942
  data?: boolean;
@@ -977,6 +977,29 @@ export type OrgMembershipDefaultSelect = {
977
977
  deleteMemberCascadeGroups?: boolean;
978
978
  createGroupsCascadeMembers?: boolean;
979
979
  };
980
+ export type AppLevelSelect = {
981
+ id?: boolean;
982
+ name?: boolean;
983
+ description?: boolean;
984
+ image?: boolean;
985
+ ownerId?: boolean;
986
+ createdAt?: boolean;
987
+ updatedAt?: boolean;
988
+ };
989
+ export type InviteSelect = {
990
+ id?: boolean;
991
+ email?: boolean;
992
+ senderId?: boolean;
993
+ inviteToken?: boolean;
994
+ inviteValid?: boolean;
995
+ inviteLimit?: boolean;
996
+ inviteCount?: boolean;
997
+ multiple?: boolean;
998
+ data?: boolean;
999
+ expiresAt?: boolean;
1000
+ createdAt?: boolean;
1001
+ updatedAt?: boolean;
1002
+ };
980
1003
  export type AppMembershipSelect = {
981
1004
  id?: boolean;
982
1005
  createdAt?: boolean;
@@ -1013,29 +1036,6 @@ export type OrgMembershipSelect = {
1013
1036
  entityId?: boolean;
1014
1037
  profileId?: boolean;
1015
1038
  };
1016
- export type InviteSelect = {
1017
- id?: boolean;
1018
- email?: boolean;
1019
- senderId?: boolean;
1020
- inviteToken?: boolean;
1021
- inviteValid?: boolean;
1022
- inviteLimit?: boolean;
1023
- inviteCount?: boolean;
1024
- multiple?: boolean;
1025
- data?: boolean;
1026
- expiresAt?: boolean;
1027
- createdAt?: boolean;
1028
- updatedAt?: boolean;
1029
- };
1030
- export type AppLevelSelect = {
1031
- id?: boolean;
1032
- name?: boolean;
1033
- description?: boolean;
1034
- image?: boolean;
1035
- ownerId?: boolean;
1036
- createdAt?: boolean;
1037
- updatedAt?: boolean;
1038
- };
1039
1039
  export type OrgInviteSelect = {
1040
1040
  id?: boolean;
1041
1041
  email?: boolean;
@@ -1208,6 +1208,34 @@ export interface AppOwnerGrantFilter {
1208
1208
  /** Negates the expression. */
1209
1209
  not?: AppOwnerGrantFilter;
1210
1210
  }
1211
+ export interface AppLimitDefaultFilter {
1212
+ /** Filter by the object’s `id` field. */
1213
+ id?: UUIDFilter;
1214
+ /** Filter by the object’s `name` field. */
1215
+ name?: StringFilter;
1216
+ /** Filter by the object’s `max` field. */
1217
+ max?: IntFilter;
1218
+ /** Checks for all expressions in this list. */
1219
+ and?: AppLimitDefaultFilter[];
1220
+ /** Checks for any expressions in this list. */
1221
+ or?: AppLimitDefaultFilter[];
1222
+ /** Negates the expression. */
1223
+ not?: AppLimitDefaultFilter;
1224
+ }
1225
+ export interface OrgLimitDefaultFilter {
1226
+ /** Filter by the object’s `id` field. */
1227
+ id?: UUIDFilter;
1228
+ /** Filter by the object’s `name` field. */
1229
+ name?: StringFilter;
1230
+ /** Filter by the object’s `max` field. */
1231
+ max?: IntFilter;
1232
+ /** Checks for all expressions in this list. */
1233
+ and?: OrgLimitDefaultFilter[];
1234
+ /** Checks for any expressions in this list. */
1235
+ or?: OrgLimitDefaultFilter[];
1236
+ /** Negates the expression. */
1237
+ not?: OrgLimitDefaultFilter;
1238
+ }
1211
1239
  export interface OrgAdminGrantFilter {
1212
1240
  /** Filter by the object’s `id` field. */
1213
1241
  id?: UUIDFilter;
@@ -1252,60 +1280,6 @@ export interface OrgOwnerGrantFilter {
1252
1280
  /** Negates the expression. */
1253
1281
  not?: OrgOwnerGrantFilter;
1254
1282
  }
1255
- export interface AppLimitDefaultFilter {
1256
- /** Filter by the object’s `id` field. */
1257
- id?: UUIDFilter;
1258
- /** Filter by the object’s `name` field. */
1259
- name?: StringFilter;
1260
- /** Filter by the object’s `max` field. */
1261
- max?: IntFilter;
1262
- /** Checks for all expressions in this list. */
1263
- and?: AppLimitDefaultFilter[];
1264
- /** Checks for any expressions in this list. */
1265
- or?: AppLimitDefaultFilter[];
1266
- /** Negates the expression. */
1267
- not?: AppLimitDefaultFilter;
1268
- }
1269
- export interface OrgLimitDefaultFilter {
1270
- /** Filter by the object’s `id` field. */
1271
- id?: UUIDFilter;
1272
- /** Filter by the object’s `name` field. */
1273
- name?: StringFilter;
1274
- /** Filter by the object’s `max` field. */
1275
- max?: IntFilter;
1276
- /** Checks for all expressions in this list. */
1277
- and?: OrgLimitDefaultFilter[];
1278
- /** Checks for any expressions in this list. */
1279
- or?: OrgLimitDefaultFilter[];
1280
- /** Negates the expression. */
1281
- not?: OrgLimitDefaultFilter;
1282
- }
1283
- export interface OrgChartEdgeGrantFilter {
1284
- /** Filter by the object’s `id` field. */
1285
- id?: UUIDFilter;
1286
- /** Filter by the object’s `entityId` field. */
1287
- entityId?: UUIDFilter;
1288
- /** Filter by the object’s `childId` field. */
1289
- childId?: UUIDFilter;
1290
- /** Filter by the object’s `parentId` field. */
1291
- parentId?: UUIDFilter;
1292
- /** Filter by the object’s `grantorId` field. */
1293
- grantorId?: UUIDFilter;
1294
- /** Filter by the object’s `isGrant` field. */
1295
- isGrant?: BooleanFilter;
1296
- /** Filter by the object’s `positionTitle` field. */
1297
- positionTitle?: StringFilter;
1298
- /** Filter by the object’s `positionLevel` field. */
1299
- positionLevel?: IntFilter;
1300
- /** Filter by the object’s `createdAt` field. */
1301
- createdAt?: DatetimeFilter;
1302
- /** Checks for all expressions in this list. */
1303
- and?: OrgChartEdgeGrantFilter[];
1304
- /** Checks for any expressions in this list. */
1305
- or?: OrgChartEdgeGrantFilter[];
1306
- /** Negates the expression. */
1307
- not?: OrgChartEdgeGrantFilter;
1308
- }
1309
1283
  export interface MembershipTypeFilter {
1310
1284
  /** Filter by the object’s `id` field. */
1311
1285
  id?: IntFilter;
@@ -1398,6 +1372,52 @@ export interface ClaimedInviteFilter {
1398
1372
  /** Negates the expression. */
1399
1373
  not?: ClaimedInviteFilter;
1400
1374
  }
1375
+ export interface OrgChartEdgeGrantFilter {
1376
+ /** Filter by the object’s `id` field. */
1377
+ id?: UUIDFilter;
1378
+ /** Filter by the object’s `entityId` field. */
1379
+ entityId?: UUIDFilter;
1380
+ /** Filter by the object’s `childId` field. */
1381
+ childId?: UUIDFilter;
1382
+ /** Filter by the object’s `parentId` field. */
1383
+ parentId?: UUIDFilter;
1384
+ /** Filter by the object’s `grantorId` field. */
1385
+ grantorId?: UUIDFilter;
1386
+ /** Filter by the object’s `isGrant` field. */
1387
+ isGrant?: BooleanFilter;
1388
+ /** Filter by the object’s `positionTitle` field. */
1389
+ positionTitle?: StringFilter;
1390
+ /** Filter by the object’s `positionLevel` field. */
1391
+ positionLevel?: IntFilter;
1392
+ /** Filter by the object’s `createdAt` field. */
1393
+ createdAt?: DatetimeFilter;
1394
+ /** Checks for all expressions in this list. */
1395
+ and?: OrgChartEdgeGrantFilter[];
1396
+ /** Checks for any expressions in this list. */
1397
+ or?: OrgChartEdgeGrantFilter[];
1398
+ /** Negates the expression. */
1399
+ not?: OrgChartEdgeGrantFilter;
1400
+ }
1401
+ export interface OrgLimitFilter {
1402
+ /** Filter by the object’s `id` field. */
1403
+ id?: UUIDFilter;
1404
+ /** Filter by the object’s `name` field. */
1405
+ name?: StringFilter;
1406
+ /** Filter by the object’s `actorId` field. */
1407
+ actorId?: UUIDFilter;
1408
+ /** Filter by the object’s `num` field. */
1409
+ num?: IntFilter;
1410
+ /** Filter by the object’s `max` field. */
1411
+ max?: IntFilter;
1412
+ /** Filter by the object’s `entityId` field. */
1413
+ entityId?: UUIDFilter;
1414
+ /** Checks for all expressions in this list. */
1415
+ and?: OrgLimitFilter[];
1416
+ /** Checks for any expressions in this list. */
1417
+ or?: OrgLimitFilter[];
1418
+ /** Negates the expression. */
1419
+ not?: OrgLimitFilter;
1420
+ }
1401
1421
  export interface AppGrantFilter {
1402
1422
  /** Filter by the object’s `id` field. */
1403
1423
  id?: UUIDFilter;
@@ -1442,26 +1462,6 @@ export interface AppMembershipDefaultFilter {
1442
1462
  /** Negates the expression. */
1443
1463
  not?: AppMembershipDefaultFilter;
1444
1464
  }
1445
- export interface OrgLimitFilter {
1446
- /** Filter by the object’s `id` field. */
1447
- id?: UUIDFilter;
1448
- /** Filter by the object’s `name` field. */
1449
- name?: StringFilter;
1450
- /** Filter by the object’s `actorId` field. */
1451
- actorId?: UUIDFilter;
1452
- /** Filter by the object’s `num` field. */
1453
- num?: IntFilter;
1454
- /** Filter by the object’s `max` field. */
1455
- max?: IntFilter;
1456
- /** Filter by the object’s `entityId` field. */
1457
- entityId?: UUIDFilter;
1458
- /** Checks for all expressions in this list. */
1459
- and?: OrgLimitFilter[];
1460
- /** Checks for any expressions in this list. */
1461
- or?: OrgLimitFilter[];
1462
- /** Negates the expression. */
1463
- not?: OrgLimitFilter;
1464
- }
1465
1465
  export interface OrgClaimedInviteFilter {
1466
1466
  /** Filter by the object’s `id` field. */
1467
1467
  id?: UUIDFilter;
@@ -1556,47 +1556,59 @@ export interface OrgMembershipDefaultFilter {
1556
1556
  /** Negates the expression. */
1557
1557
  not?: OrgMembershipDefaultFilter;
1558
1558
  }
1559
- export interface AppMembershipFilter {
1559
+ export interface AppLevelFilter {
1560
1560
  /** Filter by the object’s `id` field. */
1561
1561
  id?: UUIDFilter;
1562
+ /** Filter by the object’s `name` field. */
1563
+ name?: StringFilter;
1564
+ /** Filter by the object’s `description` field. */
1565
+ description?: StringFilter;
1566
+ /** Filter by the object’s `image` field. */
1567
+ image?: ConstructiveInternalTypeImageFilter;
1568
+ /** Filter by the object’s `ownerId` field. */
1569
+ ownerId?: UUIDFilter;
1562
1570
  /** Filter by the object’s `createdAt` field. */
1563
1571
  createdAt?: DatetimeFilter;
1564
1572
  /** Filter by the object’s `updatedAt` field. */
1565
1573
  updatedAt?: DatetimeFilter;
1566
- /** Filter by the object’s `createdBy` field. */
1567
- createdBy?: UUIDFilter;
1568
- /** Filter by the object’s `updatedBy` field. */
1569
- updatedBy?: UUIDFilter;
1570
- /** Filter by the object’s `isApproved` field. */
1571
- isApproved?: BooleanFilter;
1572
- /** Filter by the object’s `isBanned` field. */
1573
- isBanned?: BooleanFilter;
1574
- /** Filter by the object’s `isDisabled` field. */
1575
- isDisabled?: BooleanFilter;
1576
- /** Filter by the object’s `isVerified` field. */
1577
- isVerified?: BooleanFilter;
1578
- /** Filter by the object’s `isActive` field. */
1579
- isActive?: BooleanFilter;
1580
- /** Filter by the object’s `isOwner` field. */
1581
- isOwner?: BooleanFilter;
1582
- /** Filter by the object’s `isAdmin` field. */
1583
- isAdmin?: BooleanFilter;
1584
- /** Filter by the object’s `permissions` field. */
1585
- permissions?: BitStringFilter;
1586
- /** Filter by the object’s `granted` field. */
1587
- granted?: BitStringFilter;
1588
- /** Filter by the object’s `actorId` field. */
1589
- actorId?: UUIDFilter;
1590
- /** Filter by the object’s `profileId` field. */
1591
- profileId?: UUIDFilter;
1592
1574
  /** Checks for all expressions in this list. */
1593
- and?: AppMembershipFilter[];
1575
+ and?: AppLevelFilter[];
1594
1576
  /** Checks for any expressions in this list. */
1595
- or?: AppMembershipFilter[];
1577
+ or?: AppLevelFilter[];
1596
1578
  /** Negates the expression. */
1597
- not?: AppMembershipFilter;
1579
+ not?: AppLevelFilter;
1598
1580
  }
1599
- export interface OrgMembershipFilter {
1581
+ export interface InviteFilter {
1582
+ /** Filter by the object’s `id` field. */
1583
+ id?: UUIDFilter;
1584
+ /** Filter by the object’s `email` field. */
1585
+ email?: ConstructiveInternalTypeEmailFilter;
1586
+ /** Filter by the object’s `senderId` field. */
1587
+ senderId?: UUIDFilter;
1588
+ /** Filter by the object’s `inviteToken` field. */
1589
+ inviteToken?: StringFilter;
1590
+ /** Filter by the object’s `inviteValid` field. */
1591
+ inviteValid?: BooleanFilter;
1592
+ /** Filter by the object’s `inviteLimit` field. */
1593
+ inviteLimit?: IntFilter;
1594
+ /** Filter by the object’s `inviteCount` field. */
1595
+ inviteCount?: IntFilter;
1596
+ /** Filter by the object’s `multiple` field. */
1597
+ multiple?: BooleanFilter;
1598
+ /** Filter by the object’s `expiresAt` field. */
1599
+ expiresAt?: DatetimeFilter;
1600
+ /** Filter by the object’s `createdAt` field. */
1601
+ createdAt?: DatetimeFilter;
1602
+ /** Filter by the object’s `updatedAt` field. */
1603
+ updatedAt?: DatetimeFilter;
1604
+ /** Checks for all expressions in this list. */
1605
+ and?: InviteFilter[];
1606
+ /** Checks for any expressions in this list. */
1607
+ or?: InviteFilter[];
1608
+ /** Negates the expression. */
1609
+ not?: InviteFilter;
1610
+ }
1611
+ export interface AppMembershipFilter {
1600
1612
  /** Filter by the object’s `id` field. */
1601
1613
  id?: UUIDFilter;
1602
1614
  /** Filter by the object’s `createdAt` field. */
@@ -1613,6 +1625,8 @@ export interface OrgMembershipFilter {
1613
1625
  isBanned?: BooleanFilter;
1614
1626
  /** Filter by the object’s `isDisabled` field. */
1615
1627
  isDisabled?: BooleanFilter;
1628
+ /** Filter by the object’s `isVerified` field. */
1629
+ isVerified?: BooleanFilter;
1616
1630
  /** Filter by the object’s `isActive` field. */
1617
1631
  isActive?: BooleanFilter;
1618
1632
  /** Filter by the object’s `isOwner` field. */
@@ -1625,68 +1639,54 @@ export interface OrgMembershipFilter {
1625
1639
  granted?: BitStringFilter;
1626
1640
  /** Filter by the object’s `actorId` field. */
1627
1641
  actorId?: UUIDFilter;
1628
- /** Filter by the object’s `entityId` field. */
1629
- entityId?: UUIDFilter;
1630
1642
  /** Filter by the object’s `profileId` field. */
1631
1643
  profileId?: UUIDFilter;
1632
1644
  /** Checks for all expressions in this list. */
1633
- and?: OrgMembershipFilter[];
1634
- /** Checks for any expressions in this list. */
1635
- or?: OrgMembershipFilter[];
1636
- /** Negates the expression. */
1637
- not?: OrgMembershipFilter;
1638
- }
1639
- export interface InviteFilter {
1640
- /** Filter by the object’s `id` field. */
1641
- id?: UUIDFilter;
1642
- /** Filter by the object’s `email` field. */
1643
- email?: ConstructiveInternalTypeEmailFilter;
1644
- /** Filter by the object’s `senderId` field. */
1645
- senderId?: UUIDFilter;
1646
- /** Filter by the object’s `inviteToken` field. */
1647
- inviteToken?: StringFilter;
1648
- /** Filter by the object’s `inviteValid` field. */
1649
- inviteValid?: BooleanFilter;
1650
- /** Filter by the object’s `inviteLimit` field. */
1651
- inviteLimit?: IntFilter;
1652
- /** Filter by the object’s `inviteCount` field. */
1653
- inviteCount?: IntFilter;
1654
- /** Filter by the object’s `multiple` field. */
1655
- multiple?: BooleanFilter;
1656
- /** Filter by the object’s `expiresAt` field. */
1657
- expiresAt?: DatetimeFilter;
1658
- /** Filter by the object’s `createdAt` field. */
1659
- createdAt?: DatetimeFilter;
1660
- /** Filter by the object’s `updatedAt` field. */
1661
- updatedAt?: DatetimeFilter;
1662
- /** Checks for all expressions in this list. */
1663
- and?: InviteFilter[];
1645
+ and?: AppMembershipFilter[];
1664
1646
  /** Checks for any expressions in this list. */
1665
- or?: InviteFilter[];
1647
+ or?: AppMembershipFilter[];
1666
1648
  /** Negates the expression. */
1667
- not?: InviteFilter;
1649
+ not?: AppMembershipFilter;
1668
1650
  }
1669
- export interface AppLevelFilter {
1651
+ export interface OrgMembershipFilter {
1670
1652
  /** Filter by the object’s `id` field. */
1671
1653
  id?: UUIDFilter;
1672
- /** Filter by the object’s `name` field. */
1673
- name?: StringFilter;
1674
- /** Filter by the object’s `description` field. */
1675
- description?: StringFilter;
1676
- /** Filter by the object’s `image` field. */
1677
- image?: ConstructiveInternalTypeImageFilter;
1678
- /** Filter by the object’s `ownerId` field. */
1679
- ownerId?: UUIDFilter;
1680
1654
  /** Filter by the object’s `createdAt` field. */
1681
1655
  createdAt?: DatetimeFilter;
1682
1656
  /** Filter by the object’s `updatedAt` field. */
1683
1657
  updatedAt?: DatetimeFilter;
1658
+ /** Filter by the object’s `createdBy` field. */
1659
+ createdBy?: UUIDFilter;
1660
+ /** Filter by the object’s `updatedBy` field. */
1661
+ updatedBy?: UUIDFilter;
1662
+ /** Filter by the object’s `isApproved` field. */
1663
+ isApproved?: BooleanFilter;
1664
+ /** Filter by the object’s `isBanned` field. */
1665
+ isBanned?: BooleanFilter;
1666
+ /** Filter by the object’s `isDisabled` field. */
1667
+ isDisabled?: BooleanFilter;
1668
+ /** Filter by the object’s `isActive` field. */
1669
+ isActive?: BooleanFilter;
1670
+ /** Filter by the object’s `isOwner` field. */
1671
+ isOwner?: BooleanFilter;
1672
+ /** Filter by the object’s `isAdmin` field. */
1673
+ isAdmin?: BooleanFilter;
1674
+ /** Filter by the object’s `permissions` field. */
1675
+ permissions?: BitStringFilter;
1676
+ /** Filter by the object’s `granted` field. */
1677
+ granted?: BitStringFilter;
1678
+ /** Filter by the object’s `actorId` field. */
1679
+ actorId?: UUIDFilter;
1680
+ /** Filter by the object’s `entityId` field. */
1681
+ entityId?: UUIDFilter;
1682
+ /** Filter by the object’s `profileId` field. */
1683
+ profileId?: UUIDFilter;
1684
1684
  /** Checks for all expressions in this list. */
1685
- and?: AppLevelFilter[];
1685
+ and?: OrgMembershipFilter[];
1686
1686
  /** Checks for any expressions in this list. */
1687
- or?: AppLevelFilter[];
1687
+ or?: OrgMembershipFilter[];
1688
1688
  /** Negates the expression. */
1689
- not?: AppLevelFilter;
1689
+ not?: OrgMembershipFilter;
1690
1690
  }
1691
1691
  export interface OrgInviteFilter {
1692
1692
  /** Filter by the object’s `id` field. */
@@ -1732,27 +1732,27 @@ export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMA
1732
1732
  export type OrgPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1733
1733
  export type AppAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1734
1734
  export type AppOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1735
- export type OrgAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1736
- export type OrgOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1737
1735
  export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
1738
1736
  export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
1739
- export type OrgChartEdgeGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
1737
+ export type OrgAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1738
+ export type OrgOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1740
1739
  export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
1741
1740
  export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC';
1742
1741
  export type AppAchievementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1743
1742
  export type AppStepOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1744
1743
  export type ClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1744
+ export type OrgChartEdgeGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
1745
+ export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1745
1746
  export type AppGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1746
1747
  export type AppMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC';
1747
- export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1748
1748
  export type OrgClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1749
1749
  export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1750
1750
  export type OrgChartEdgeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC';
1751
1751
  export type OrgMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'DELETE_MEMBER_CASCADE_GROUPS_ASC' | 'DELETE_MEMBER_CASCADE_GROUPS_DESC' | 'CREATE_GROUPS_CASCADE_MEMBERS_ASC' | 'CREATE_GROUPS_CASCADE_MEMBERS_DESC';
1752
+ export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1753
+ export type InviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1752
1754
  export type AppMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
1753
1755
  export type OrgMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
1754
- export type InviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1755
- export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1756
1756
  export type OrgInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1757
1757
  export interface CreateOrgGetManagersRecordInput {
1758
1758
  clientMutationId?: string;
@@ -1972,54 +1972,6 @@ export interface DeleteAppOwnerGrantInput {
1972
1972
  clientMutationId?: string;
1973
1973
  id: string;
1974
1974
  }
1975
- export interface CreateOrgAdminGrantInput {
1976
- clientMutationId?: string;
1977
- orgAdminGrant: {
1978
- isGrant?: boolean;
1979
- actorId: string;
1980
- entityId: string;
1981
- grantorId?: string;
1982
- };
1983
- }
1984
- export interface OrgAdminGrantPatch {
1985
- isGrant?: boolean | null;
1986
- actorId?: string | null;
1987
- entityId?: string | null;
1988
- grantorId?: string | null;
1989
- }
1990
- export interface UpdateOrgAdminGrantInput {
1991
- clientMutationId?: string;
1992
- id: string;
1993
- orgAdminGrantPatch: OrgAdminGrantPatch;
1994
- }
1995
- export interface DeleteOrgAdminGrantInput {
1996
- clientMutationId?: string;
1997
- id: string;
1998
- }
1999
- export interface CreateOrgOwnerGrantInput {
2000
- clientMutationId?: string;
2001
- orgOwnerGrant: {
2002
- isGrant?: boolean;
2003
- actorId: string;
2004
- entityId: string;
2005
- grantorId?: string;
2006
- };
2007
- }
2008
- export interface OrgOwnerGrantPatch {
2009
- isGrant?: boolean | null;
2010
- actorId?: string | null;
2011
- entityId?: string | null;
2012
- grantorId?: string | null;
2013
- }
2014
- export interface UpdateOrgOwnerGrantInput {
2015
- clientMutationId?: string;
2016
- id: string;
2017
- orgOwnerGrantPatch: OrgOwnerGrantPatch;
2018
- }
2019
- export interface DeleteOrgOwnerGrantInput {
2020
- clientMutationId?: string;
2021
- id: string;
2022
- }
2023
1975
  export interface CreateAppLimitDefaultInput {
2024
1976
  clientMutationId?: string;
2025
1977
  appLimitDefault: {
@@ -2060,33 +2012,51 @@ export interface DeleteOrgLimitDefaultInput {
2060
2012
  clientMutationId?: string;
2061
2013
  id: string;
2062
2014
  }
2063
- export interface CreateOrgChartEdgeGrantInput {
2015
+ export interface CreateOrgAdminGrantInput {
2064
2016
  clientMutationId?: string;
2065
- orgChartEdgeGrant: {
2017
+ orgAdminGrant: {
2018
+ isGrant?: boolean;
2019
+ actorId: string;
2066
2020
  entityId: string;
2067
- childId: string;
2068
- parentId?: string;
2069
2021
  grantorId?: string;
2070
- isGrant?: boolean;
2071
- positionTitle?: string;
2072
- positionLevel?: number;
2073
2022
  };
2074
2023
  }
2075
- export interface OrgChartEdgeGrantPatch {
2024
+ export interface OrgAdminGrantPatch {
2025
+ isGrant?: boolean | null;
2026
+ actorId?: string | null;
2076
2027
  entityId?: string | null;
2077
- childId?: string | null;
2078
- parentId?: string | null;
2079
2028
  grantorId?: string | null;
2029
+ }
2030
+ export interface UpdateOrgAdminGrantInput {
2031
+ clientMutationId?: string;
2032
+ id: string;
2033
+ orgAdminGrantPatch: OrgAdminGrantPatch;
2034
+ }
2035
+ export interface DeleteOrgAdminGrantInput {
2036
+ clientMutationId?: string;
2037
+ id: string;
2038
+ }
2039
+ export interface CreateOrgOwnerGrantInput {
2040
+ clientMutationId?: string;
2041
+ orgOwnerGrant: {
2042
+ isGrant?: boolean;
2043
+ actorId: string;
2044
+ entityId: string;
2045
+ grantorId?: string;
2046
+ };
2047
+ }
2048
+ export interface OrgOwnerGrantPatch {
2080
2049
  isGrant?: boolean | null;
2081
- positionTitle?: string | null;
2082
- positionLevel?: number | null;
2050
+ actorId?: string | null;
2051
+ entityId?: string | null;
2052
+ grantorId?: string | null;
2083
2053
  }
2084
- export interface UpdateOrgChartEdgeGrantInput {
2054
+ export interface UpdateOrgOwnerGrantInput {
2085
2055
  clientMutationId?: string;
2086
2056
  id: string;
2087
- orgChartEdgeGrantPatch: OrgChartEdgeGrantPatch;
2057
+ orgOwnerGrantPatch: OrgOwnerGrantPatch;
2088
2058
  }
2089
- export interface DeleteOrgChartEdgeGrantInput {
2059
+ export interface DeleteOrgOwnerGrantInput {
2090
2060
  clientMutationId?: string;
2091
2061
  id: string;
2092
2062
  }
@@ -2202,51 +2172,33 @@ export interface DeleteClaimedInviteInput {
2202
2172
  clientMutationId?: string;
2203
2173
  id: string;
2204
2174
  }
2205
- export interface CreateAppGrantInput {
2175
+ export interface CreateOrgChartEdgeGrantInput {
2206
2176
  clientMutationId?: string;
2207
- appGrant: {
2208
- permissions?: string;
2209
- isGrant?: boolean;
2210
- actorId: string;
2177
+ orgChartEdgeGrant: {
2178
+ entityId: string;
2179
+ childId: string;
2180
+ parentId?: string;
2211
2181
  grantorId?: string;
2182
+ isGrant?: boolean;
2183
+ positionTitle?: string;
2184
+ positionLevel?: number;
2212
2185
  };
2213
2186
  }
2214
- export interface AppGrantPatch {
2215
- permissions?: string | null;
2216
- isGrant?: boolean | null;
2217
- actorId?: string | null;
2187
+ export interface OrgChartEdgeGrantPatch {
2188
+ entityId?: string | null;
2189
+ childId?: string | null;
2190
+ parentId?: string | null;
2218
2191
  grantorId?: string | null;
2192
+ isGrant?: boolean | null;
2193
+ positionTitle?: string | null;
2194
+ positionLevel?: number | null;
2219
2195
  }
2220
- export interface UpdateAppGrantInput {
2196
+ export interface UpdateOrgChartEdgeGrantInput {
2221
2197
  clientMutationId?: string;
2222
2198
  id: string;
2223
- appGrantPatch: AppGrantPatch;
2199
+ orgChartEdgeGrantPatch: OrgChartEdgeGrantPatch;
2224
2200
  }
2225
- export interface DeleteAppGrantInput {
2226
- clientMutationId?: string;
2227
- id: string;
2228
- }
2229
- export interface CreateAppMembershipDefaultInput {
2230
- clientMutationId?: string;
2231
- appMembershipDefault: {
2232
- createdBy?: string;
2233
- updatedBy?: string;
2234
- isApproved?: boolean;
2235
- isVerified?: boolean;
2236
- };
2237
- }
2238
- export interface AppMembershipDefaultPatch {
2239
- createdBy?: string | null;
2240
- updatedBy?: string | null;
2241
- isApproved?: boolean | null;
2242
- isVerified?: boolean | null;
2243
- }
2244
- export interface UpdateAppMembershipDefaultInput {
2245
- clientMutationId?: string;
2246
- id: string;
2247
- appMembershipDefaultPatch: AppMembershipDefaultPatch;
2248
- }
2249
- export interface DeleteAppMembershipDefaultInput {
2201
+ export interface DeleteOrgChartEdgeGrantInput {
2250
2202
  clientMutationId?: string;
2251
2203
  id: string;
2252
2204
  }
@@ -2276,6 +2228,54 @@ export interface DeleteOrgLimitInput {
2276
2228
  clientMutationId?: string;
2277
2229
  id: string;
2278
2230
  }
2231
+ export interface CreateAppGrantInput {
2232
+ clientMutationId?: string;
2233
+ appGrant: {
2234
+ permissions?: string;
2235
+ isGrant?: boolean;
2236
+ actorId: string;
2237
+ grantorId?: string;
2238
+ };
2239
+ }
2240
+ export interface AppGrantPatch {
2241
+ permissions?: string | null;
2242
+ isGrant?: boolean | null;
2243
+ actorId?: string | null;
2244
+ grantorId?: string | null;
2245
+ }
2246
+ export interface UpdateAppGrantInput {
2247
+ clientMutationId?: string;
2248
+ id: string;
2249
+ appGrantPatch: AppGrantPatch;
2250
+ }
2251
+ export interface DeleteAppGrantInput {
2252
+ clientMutationId?: string;
2253
+ id: string;
2254
+ }
2255
+ export interface CreateAppMembershipDefaultInput {
2256
+ clientMutationId?: string;
2257
+ appMembershipDefault: {
2258
+ createdBy?: string;
2259
+ updatedBy?: string;
2260
+ isApproved?: boolean;
2261
+ isVerified?: boolean;
2262
+ };
2263
+ }
2264
+ export interface AppMembershipDefaultPatch {
2265
+ createdBy?: string | null;
2266
+ updatedBy?: string | null;
2267
+ isApproved?: boolean | null;
2268
+ isVerified?: boolean | null;
2269
+ }
2270
+ export interface UpdateAppMembershipDefaultInput {
2271
+ clientMutationId?: string;
2272
+ id: string;
2273
+ appMembershipDefaultPatch: AppMembershipDefaultPatch;
2274
+ }
2275
+ export interface DeleteAppMembershipDefaultInput {
2276
+ clientMutationId?: string;
2277
+ id: string;
2278
+ }
2279
2279
  export interface CreateOrgClaimedInviteInput {
2280
2280
  clientMutationId?: string;
2281
2281
  orgClaimedInvite: {
@@ -2380,6 +2380,65 @@ export interface DeleteOrgMembershipDefaultInput {
2380
2380
  clientMutationId?: string;
2381
2381
  id: string;
2382
2382
  }
2383
+ export interface CreateAppLevelInput {
2384
+ clientMutationId?: string;
2385
+ appLevel: {
2386
+ name: string;
2387
+ description?: string;
2388
+ image?: ConstructiveInternalTypeImage;
2389
+ ownerId?: string;
2390
+ };
2391
+ }
2392
+ export interface AppLevelPatch {
2393
+ name?: string | null;
2394
+ description?: string | null;
2395
+ image?: ConstructiveInternalTypeImage | null;
2396
+ ownerId?: string | null;
2397
+ imageUpload?: File | null;
2398
+ }
2399
+ export interface UpdateAppLevelInput {
2400
+ clientMutationId?: string;
2401
+ id: string;
2402
+ appLevelPatch: AppLevelPatch;
2403
+ }
2404
+ export interface DeleteAppLevelInput {
2405
+ clientMutationId?: string;
2406
+ id: string;
2407
+ }
2408
+ export interface CreateInviteInput {
2409
+ clientMutationId?: string;
2410
+ invite: {
2411
+ email?: ConstructiveInternalTypeEmail;
2412
+ senderId?: string;
2413
+ inviteToken?: string;
2414
+ inviteValid?: boolean;
2415
+ inviteLimit?: number;
2416
+ inviteCount?: number;
2417
+ multiple?: boolean;
2418
+ data?: Record<string, unknown>;
2419
+ expiresAt?: string;
2420
+ };
2421
+ }
2422
+ export interface InvitePatch {
2423
+ email?: ConstructiveInternalTypeEmail | null;
2424
+ senderId?: string | null;
2425
+ inviteToken?: string | null;
2426
+ inviteValid?: boolean | null;
2427
+ inviteLimit?: number | null;
2428
+ inviteCount?: number | null;
2429
+ multiple?: boolean | null;
2430
+ data?: Record<string, unknown> | null;
2431
+ expiresAt?: string | null;
2432
+ }
2433
+ export interface UpdateInviteInput {
2434
+ clientMutationId?: string;
2435
+ id: string;
2436
+ invitePatch: InvitePatch;
2437
+ }
2438
+ export interface DeleteInviteInput {
2439
+ clientMutationId?: string;
2440
+ id: string;
2441
+ }
2383
2442
  export interface CreateAppMembershipInput {
2384
2443
  clientMutationId?: string;
2385
2444
  appMembership: {
@@ -2464,65 +2523,6 @@ export interface DeleteOrgMembershipInput {
2464
2523
  clientMutationId?: string;
2465
2524
  id: string;
2466
2525
  }
2467
- export interface CreateInviteInput {
2468
- clientMutationId?: string;
2469
- invite: {
2470
- email?: ConstructiveInternalTypeEmail;
2471
- senderId?: string;
2472
- inviteToken?: string;
2473
- inviteValid?: boolean;
2474
- inviteLimit?: number;
2475
- inviteCount?: number;
2476
- multiple?: boolean;
2477
- data?: Record<string, unknown>;
2478
- expiresAt?: string;
2479
- };
2480
- }
2481
- export interface InvitePatch {
2482
- email?: ConstructiveInternalTypeEmail | null;
2483
- senderId?: string | null;
2484
- inviteToken?: string | null;
2485
- inviteValid?: boolean | null;
2486
- inviteLimit?: number | null;
2487
- inviteCount?: number | null;
2488
- multiple?: boolean | null;
2489
- data?: Record<string, unknown> | null;
2490
- expiresAt?: string | null;
2491
- }
2492
- export interface UpdateInviteInput {
2493
- clientMutationId?: string;
2494
- id: string;
2495
- invitePatch: InvitePatch;
2496
- }
2497
- export interface DeleteInviteInput {
2498
- clientMutationId?: string;
2499
- id: string;
2500
- }
2501
- export interface CreateAppLevelInput {
2502
- clientMutationId?: string;
2503
- appLevel: {
2504
- name: string;
2505
- description?: string;
2506
- image?: ConstructiveInternalTypeImage;
2507
- ownerId?: string;
2508
- };
2509
- }
2510
- export interface AppLevelPatch {
2511
- name?: string | null;
2512
- description?: string | null;
2513
- image?: ConstructiveInternalTypeImage | null;
2514
- ownerId?: string | null;
2515
- imageUpload?: File | null;
2516
- }
2517
- export interface UpdateAppLevelInput {
2518
- clientMutationId?: string;
2519
- id: string;
2520
- appLevelPatch: AppLevelPatch;
2521
- }
2522
- export interface DeleteAppLevelInput {
2523
- clientMutationId?: string;
2524
- id: string;
2525
- }
2526
2526
  export interface CreateOrgInviteInput {
2527
2527
  clientMutationId?: string;
2528
2528
  orgInvite: {
@@ -2570,6 +2570,41 @@ export interface SubmitOrgInviteCodeInput {
2570
2570
  clientMutationId?: string;
2571
2571
  token?: string;
2572
2572
  }
2573
+ /** A filter to be used against ConstructiveInternalTypeImage fields. All fields are combined with a logical ‘and.’ */
2574
+ export interface ConstructiveInternalTypeImageFilter {
2575
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2576
+ isNull?: boolean;
2577
+ /** Equal to the specified value. */
2578
+ equalTo?: ConstructiveInternalTypeImage;
2579
+ /** Not equal to the specified value. */
2580
+ notEqualTo?: ConstructiveInternalTypeImage;
2581
+ /** Not equal to the specified value, treating null like an ordinary value. */
2582
+ distinctFrom?: ConstructiveInternalTypeImage;
2583
+ /** Equal to the specified value, treating null like an ordinary value. */
2584
+ notDistinctFrom?: ConstructiveInternalTypeImage;
2585
+ /** Included in the specified list. */
2586
+ in?: ConstructiveInternalTypeImage[];
2587
+ /** Not included in the specified list. */
2588
+ notIn?: ConstructiveInternalTypeImage[];
2589
+ /** Less than the specified value. */
2590
+ lessThan?: ConstructiveInternalTypeImage;
2591
+ /** Less than or equal to the specified value. */
2592
+ lessThanOrEqualTo?: ConstructiveInternalTypeImage;
2593
+ /** Greater than the specified value. */
2594
+ greaterThan?: ConstructiveInternalTypeImage;
2595
+ /** Greater than or equal to the specified value. */
2596
+ greaterThanOrEqualTo?: ConstructiveInternalTypeImage;
2597
+ /** Contains the specified JSON. */
2598
+ contains?: ConstructiveInternalTypeImage;
2599
+ /** Contains the specified key. */
2600
+ containsKey?: string;
2601
+ /** Contains all of the specified keys. */
2602
+ containsAllKeys?: string[];
2603
+ /** Contains any of the specified keys. */
2604
+ containsAnyKeys?: string[];
2605
+ /** Contained by the specified JSON. */
2606
+ containedBy?: ConstructiveInternalTypeImage;
2607
+ }
2573
2608
  /** A filter to be used against ConstructiveInternalTypeEmail fields. All fields are combined with a logical ‘and.’ */
2574
2609
  export interface ConstructiveInternalTypeEmailFilter {
2575
2610
  /** Is null (if `true` is specified) or is not null (if `false` is specified). */
@@ -2647,41 +2682,6 @@ export interface ConstructiveInternalTypeEmailFilter {
2647
2682
  /** Greater than or equal to the specified value (case-insensitive). */
2648
2683
  greaterThanOrEqualToInsensitive?: ConstructiveInternalTypeEmail;
2649
2684
  }
2650
- /** A filter to be used against ConstructiveInternalTypeImage fields. All fields are combined with a logical ‘and.’ */
2651
- export interface ConstructiveInternalTypeImageFilter {
2652
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
2653
- isNull?: boolean;
2654
- /** Equal to the specified value. */
2655
- equalTo?: ConstructiveInternalTypeImage;
2656
- /** Not equal to the specified value. */
2657
- notEqualTo?: ConstructiveInternalTypeImage;
2658
- /** Not equal to the specified value, treating null like an ordinary value. */
2659
- distinctFrom?: ConstructiveInternalTypeImage;
2660
- /** Equal to the specified value, treating null like an ordinary value. */
2661
- notDistinctFrom?: ConstructiveInternalTypeImage;
2662
- /** Included in the specified list. */
2663
- in?: ConstructiveInternalTypeImage[];
2664
- /** Not included in the specified list. */
2665
- notIn?: ConstructiveInternalTypeImage[];
2666
- /** Less than the specified value. */
2667
- lessThan?: ConstructiveInternalTypeImage;
2668
- /** Less than or equal to the specified value. */
2669
- lessThanOrEqualTo?: ConstructiveInternalTypeImage;
2670
- /** Greater than the specified value. */
2671
- greaterThan?: ConstructiveInternalTypeImage;
2672
- /** Greater than or equal to the specified value. */
2673
- greaterThanOrEqualTo?: ConstructiveInternalTypeImage;
2674
- /** Contains the specified JSON. */
2675
- contains?: ConstructiveInternalTypeImage;
2676
- /** Contains the specified key. */
2677
- containsKey?: string;
2678
- /** Contains all of the specified keys. */
2679
- containsAllKeys?: string[];
2680
- /** Contains any of the specified keys. */
2681
- containsAnyKeys?: string[];
2682
- /** Contained by the specified JSON. */
2683
- containedBy?: ConstructiveInternalTypeImage;
2684
- }
2685
2685
  /** A connection to a list of `AppPermission` values. */
2686
2686
  export interface AppPermissionConnection {
2687
2687
  nodes: AppPermission[];
@@ -3115,96 +3115,6 @@ export type DeleteAppOwnerGrantPayloadSelect = {
3115
3115
  select: AppOwnerGrantEdgeSelect;
3116
3116
  };
3117
3117
  };
3118
- export interface CreateOrgAdminGrantPayload {
3119
- clientMutationId?: string | null;
3120
- /** The `OrgAdminGrant` that was created by this mutation. */
3121
- orgAdminGrant?: OrgAdminGrant | null;
3122
- orgAdminGrantEdge?: OrgAdminGrantEdge | null;
3123
- }
3124
- export type CreateOrgAdminGrantPayloadSelect = {
3125
- clientMutationId?: boolean;
3126
- orgAdminGrant?: {
3127
- select: OrgAdminGrantSelect;
3128
- };
3129
- orgAdminGrantEdge?: {
3130
- select: OrgAdminGrantEdgeSelect;
3131
- };
3132
- };
3133
- export interface UpdateOrgAdminGrantPayload {
3134
- clientMutationId?: string | null;
3135
- /** The `OrgAdminGrant` that was updated by this mutation. */
3136
- orgAdminGrant?: OrgAdminGrant | null;
3137
- orgAdminGrantEdge?: OrgAdminGrantEdge | null;
3138
- }
3139
- export type UpdateOrgAdminGrantPayloadSelect = {
3140
- clientMutationId?: boolean;
3141
- orgAdminGrant?: {
3142
- select: OrgAdminGrantSelect;
3143
- };
3144
- orgAdminGrantEdge?: {
3145
- select: OrgAdminGrantEdgeSelect;
3146
- };
3147
- };
3148
- export interface DeleteOrgAdminGrantPayload {
3149
- clientMutationId?: string | null;
3150
- /** The `OrgAdminGrant` that was deleted by this mutation. */
3151
- orgAdminGrant?: OrgAdminGrant | null;
3152
- orgAdminGrantEdge?: OrgAdminGrantEdge | null;
3153
- }
3154
- export type DeleteOrgAdminGrantPayloadSelect = {
3155
- clientMutationId?: boolean;
3156
- orgAdminGrant?: {
3157
- select: OrgAdminGrantSelect;
3158
- };
3159
- orgAdminGrantEdge?: {
3160
- select: OrgAdminGrantEdgeSelect;
3161
- };
3162
- };
3163
- export interface CreateOrgOwnerGrantPayload {
3164
- clientMutationId?: string | null;
3165
- /** The `OrgOwnerGrant` that was created by this mutation. */
3166
- orgOwnerGrant?: OrgOwnerGrant | null;
3167
- orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
3168
- }
3169
- export type CreateOrgOwnerGrantPayloadSelect = {
3170
- clientMutationId?: boolean;
3171
- orgOwnerGrant?: {
3172
- select: OrgOwnerGrantSelect;
3173
- };
3174
- orgOwnerGrantEdge?: {
3175
- select: OrgOwnerGrantEdgeSelect;
3176
- };
3177
- };
3178
- export interface UpdateOrgOwnerGrantPayload {
3179
- clientMutationId?: string | null;
3180
- /** The `OrgOwnerGrant` that was updated by this mutation. */
3181
- orgOwnerGrant?: OrgOwnerGrant | null;
3182
- orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
3183
- }
3184
- export type UpdateOrgOwnerGrantPayloadSelect = {
3185
- clientMutationId?: boolean;
3186
- orgOwnerGrant?: {
3187
- select: OrgOwnerGrantSelect;
3188
- };
3189
- orgOwnerGrantEdge?: {
3190
- select: OrgOwnerGrantEdgeSelect;
3191
- };
3192
- };
3193
- export interface DeleteOrgOwnerGrantPayload {
3194
- clientMutationId?: string | null;
3195
- /** The `OrgOwnerGrant` that was deleted by this mutation. */
3196
- orgOwnerGrant?: OrgOwnerGrant | null;
3197
- orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
3198
- }
3199
- export type DeleteOrgOwnerGrantPayloadSelect = {
3200
- clientMutationId?: boolean;
3201
- orgOwnerGrant?: {
3202
- select: OrgOwnerGrantSelect;
3203
- };
3204
- orgOwnerGrantEdge?: {
3205
- select: OrgOwnerGrantEdgeSelect;
3206
- };
3207
- };
3208
3118
  export interface CreateAppLimitDefaultPayload {
3209
3119
  clientMutationId?: string | null;
3210
3120
  /** The `AppLimitDefault` that was created by this mutation. */
@@ -3295,49 +3205,94 @@ export type DeleteOrgLimitDefaultPayloadSelect = {
3295
3205
  select: OrgLimitDefaultEdgeSelect;
3296
3206
  };
3297
3207
  };
3298
- export interface CreateOrgChartEdgeGrantPayload {
3208
+ export interface CreateOrgAdminGrantPayload {
3299
3209
  clientMutationId?: string | null;
3300
- /** The `OrgChartEdgeGrant` that was created by this mutation. */
3301
- orgChartEdgeGrant?: OrgChartEdgeGrant | null;
3302
- orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
3210
+ /** The `OrgAdminGrant` that was created by this mutation. */
3211
+ orgAdminGrant?: OrgAdminGrant | null;
3212
+ orgAdminGrantEdge?: OrgAdminGrantEdge | null;
3303
3213
  }
3304
- export type CreateOrgChartEdgeGrantPayloadSelect = {
3214
+ export type CreateOrgAdminGrantPayloadSelect = {
3305
3215
  clientMutationId?: boolean;
3306
- orgChartEdgeGrant?: {
3307
- select: OrgChartEdgeGrantSelect;
3216
+ orgAdminGrant?: {
3217
+ select: OrgAdminGrantSelect;
3308
3218
  };
3309
- orgChartEdgeGrantEdge?: {
3310
- select: OrgChartEdgeGrantEdgeSelect;
3219
+ orgAdminGrantEdge?: {
3220
+ select: OrgAdminGrantEdgeSelect;
3311
3221
  };
3312
3222
  };
3313
- export interface UpdateOrgChartEdgeGrantPayload {
3223
+ export interface UpdateOrgAdminGrantPayload {
3314
3224
  clientMutationId?: string | null;
3315
- /** The `OrgChartEdgeGrant` that was updated by this mutation. */
3316
- orgChartEdgeGrant?: OrgChartEdgeGrant | null;
3317
- orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
3225
+ /** The `OrgAdminGrant` that was updated by this mutation. */
3226
+ orgAdminGrant?: OrgAdminGrant | null;
3227
+ orgAdminGrantEdge?: OrgAdminGrantEdge | null;
3228
+ }
3229
+ export type UpdateOrgAdminGrantPayloadSelect = {
3230
+ clientMutationId?: boolean;
3231
+ orgAdminGrant?: {
3232
+ select: OrgAdminGrantSelect;
3233
+ };
3234
+ orgAdminGrantEdge?: {
3235
+ select: OrgAdminGrantEdgeSelect;
3236
+ };
3237
+ };
3238
+ export interface DeleteOrgAdminGrantPayload {
3239
+ clientMutationId?: string | null;
3240
+ /** The `OrgAdminGrant` that was deleted by this mutation. */
3241
+ orgAdminGrant?: OrgAdminGrant | null;
3242
+ orgAdminGrantEdge?: OrgAdminGrantEdge | null;
3243
+ }
3244
+ export type DeleteOrgAdminGrantPayloadSelect = {
3245
+ clientMutationId?: boolean;
3246
+ orgAdminGrant?: {
3247
+ select: OrgAdminGrantSelect;
3248
+ };
3249
+ orgAdminGrantEdge?: {
3250
+ select: OrgAdminGrantEdgeSelect;
3251
+ };
3252
+ };
3253
+ export interface CreateOrgOwnerGrantPayload {
3254
+ clientMutationId?: string | null;
3255
+ /** The `OrgOwnerGrant` that was created by this mutation. */
3256
+ orgOwnerGrant?: OrgOwnerGrant | null;
3257
+ orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
3258
+ }
3259
+ export type CreateOrgOwnerGrantPayloadSelect = {
3260
+ clientMutationId?: boolean;
3261
+ orgOwnerGrant?: {
3262
+ select: OrgOwnerGrantSelect;
3263
+ };
3264
+ orgOwnerGrantEdge?: {
3265
+ select: OrgOwnerGrantEdgeSelect;
3266
+ };
3267
+ };
3268
+ export interface UpdateOrgOwnerGrantPayload {
3269
+ clientMutationId?: string | null;
3270
+ /** The `OrgOwnerGrant` that was updated by this mutation. */
3271
+ orgOwnerGrant?: OrgOwnerGrant | null;
3272
+ orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
3318
3273
  }
3319
- export type UpdateOrgChartEdgeGrantPayloadSelect = {
3274
+ export type UpdateOrgOwnerGrantPayloadSelect = {
3320
3275
  clientMutationId?: boolean;
3321
- orgChartEdgeGrant?: {
3322
- select: OrgChartEdgeGrantSelect;
3276
+ orgOwnerGrant?: {
3277
+ select: OrgOwnerGrantSelect;
3323
3278
  };
3324
- orgChartEdgeGrantEdge?: {
3325
- select: OrgChartEdgeGrantEdgeSelect;
3279
+ orgOwnerGrantEdge?: {
3280
+ select: OrgOwnerGrantEdgeSelect;
3326
3281
  };
3327
3282
  };
3328
- export interface DeleteOrgChartEdgeGrantPayload {
3283
+ export interface DeleteOrgOwnerGrantPayload {
3329
3284
  clientMutationId?: string | null;
3330
- /** The `OrgChartEdgeGrant` that was deleted by this mutation. */
3331
- orgChartEdgeGrant?: OrgChartEdgeGrant | null;
3332
- orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
3285
+ /** The `OrgOwnerGrant` that was deleted by this mutation. */
3286
+ orgOwnerGrant?: OrgOwnerGrant | null;
3287
+ orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
3333
3288
  }
3334
- export type DeleteOrgChartEdgeGrantPayloadSelect = {
3289
+ export type DeleteOrgOwnerGrantPayloadSelect = {
3335
3290
  clientMutationId?: boolean;
3336
- orgChartEdgeGrant?: {
3337
- select: OrgChartEdgeGrantSelect;
3291
+ orgOwnerGrant?: {
3292
+ select: OrgOwnerGrantSelect;
3338
3293
  };
3339
- orgChartEdgeGrantEdge?: {
3340
- select: OrgChartEdgeGrantEdgeSelect;
3294
+ orgOwnerGrantEdge?: {
3295
+ select: OrgOwnerGrantEdgeSelect;
3341
3296
  };
3342
3297
  };
3343
3298
  export interface CreateMembershipTypePayload {
@@ -3565,6 +3520,96 @@ export type DeleteClaimedInvitePayloadSelect = {
3565
3520
  select: ClaimedInviteEdgeSelect;
3566
3521
  };
3567
3522
  };
3523
+ export interface CreateOrgChartEdgeGrantPayload {
3524
+ clientMutationId?: string | null;
3525
+ /** The `OrgChartEdgeGrant` that was created by this mutation. */
3526
+ orgChartEdgeGrant?: OrgChartEdgeGrant | null;
3527
+ orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
3528
+ }
3529
+ export type CreateOrgChartEdgeGrantPayloadSelect = {
3530
+ clientMutationId?: boolean;
3531
+ orgChartEdgeGrant?: {
3532
+ select: OrgChartEdgeGrantSelect;
3533
+ };
3534
+ orgChartEdgeGrantEdge?: {
3535
+ select: OrgChartEdgeGrantEdgeSelect;
3536
+ };
3537
+ };
3538
+ export interface UpdateOrgChartEdgeGrantPayload {
3539
+ clientMutationId?: string | null;
3540
+ /** The `OrgChartEdgeGrant` that was updated by this mutation. */
3541
+ orgChartEdgeGrant?: OrgChartEdgeGrant | null;
3542
+ orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
3543
+ }
3544
+ export type UpdateOrgChartEdgeGrantPayloadSelect = {
3545
+ clientMutationId?: boolean;
3546
+ orgChartEdgeGrant?: {
3547
+ select: OrgChartEdgeGrantSelect;
3548
+ };
3549
+ orgChartEdgeGrantEdge?: {
3550
+ select: OrgChartEdgeGrantEdgeSelect;
3551
+ };
3552
+ };
3553
+ export interface DeleteOrgChartEdgeGrantPayload {
3554
+ clientMutationId?: string | null;
3555
+ /** The `OrgChartEdgeGrant` that was deleted by this mutation. */
3556
+ orgChartEdgeGrant?: OrgChartEdgeGrant | null;
3557
+ orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
3558
+ }
3559
+ export type DeleteOrgChartEdgeGrantPayloadSelect = {
3560
+ clientMutationId?: boolean;
3561
+ orgChartEdgeGrant?: {
3562
+ select: OrgChartEdgeGrantSelect;
3563
+ };
3564
+ orgChartEdgeGrantEdge?: {
3565
+ select: OrgChartEdgeGrantEdgeSelect;
3566
+ };
3567
+ };
3568
+ export interface CreateOrgLimitPayload {
3569
+ clientMutationId?: string | null;
3570
+ /** The `OrgLimit` that was created by this mutation. */
3571
+ orgLimit?: OrgLimit | null;
3572
+ orgLimitEdge?: OrgLimitEdge | null;
3573
+ }
3574
+ export type CreateOrgLimitPayloadSelect = {
3575
+ clientMutationId?: boolean;
3576
+ orgLimit?: {
3577
+ select: OrgLimitSelect;
3578
+ };
3579
+ orgLimitEdge?: {
3580
+ select: OrgLimitEdgeSelect;
3581
+ };
3582
+ };
3583
+ export interface UpdateOrgLimitPayload {
3584
+ clientMutationId?: string | null;
3585
+ /** The `OrgLimit` that was updated by this mutation. */
3586
+ orgLimit?: OrgLimit | null;
3587
+ orgLimitEdge?: OrgLimitEdge | null;
3588
+ }
3589
+ export type UpdateOrgLimitPayloadSelect = {
3590
+ clientMutationId?: boolean;
3591
+ orgLimit?: {
3592
+ select: OrgLimitSelect;
3593
+ };
3594
+ orgLimitEdge?: {
3595
+ select: OrgLimitEdgeSelect;
3596
+ };
3597
+ };
3598
+ export interface DeleteOrgLimitPayload {
3599
+ clientMutationId?: string | null;
3600
+ /** The `OrgLimit` that was deleted by this mutation. */
3601
+ orgLimit?: OrgLimit | null;
3602
+ orgLimitEdge?: OrgLimitEdge | null;
3603
+ }
3604
+ export type DeleteOrgLimitPayloadSelect = {
3605
+ clientMutationId?: boolean;
3606
+ orgLimit?: {
3607
+ select: OrgLimitSelect;
3608
+ };
3609
+ orgLimitEdge?: {
3610
+ select: OrgLimitEdgeSelect;
3611
+ };
3612
+ };
3568
3613
  export interface CreateAppGrantPayload {
3569
3614
  clientMutationId?: string | null;
3570
3615
  /** The `AppGrant` that was created by this mutation. */
@@ -3655,51 +3700,6 @@ export type DeleteAppMembershipDefaultPayloadSelect = {
3655
3700
  select: AppMembershipDefaultEdgeSelect;
3656
3701
  };
3657
3702
  };
3658
- export interface CreateOrgLimitPayload {
3659
- clientMutationId?: string | null;
3660
- /** The `OrgLimit` that was created by this mutation. */
3661
- orgLimit?: OrgLimit | null;
3662
- orgLimitEdge?: OrgLimitEdge | null;
3663
- }
3664
- export type CreateOrgLimitPayloadSelect = {
3665
- clientMutationId?: boolean;
3666
- orgLimit?: {
3667
- select: OrgLimitSelect;
3668
- };
3669
- orgLimitEdge?: {
3670
- select: OrgLimitEdgeSelect;
3671
- };
3672
- };
3673
- export interface UpdateOrgLimitPayload {
3674
- clientMutationId?: string | null;
3675
- /** The `OrgLimit` that was updated by this mutation. */
3676
- orgLimit?: OrgLimit | null;
3677
- orgLimitEdge?: OrgLimitEdge | null;
3678
- }
3679
- export type UpdateOrgLimitPayloadSelect = {
3680
- clientMutationId?: boolean;
3681
- orgLimit?: {
3682
- select: OrgLimitSelect;
3683
- };
3684
- orgLimitEdge?: {
3685
- select: OrgLimitEdgeSelect;
3686
- };
3687
- };
3688
- export interface DeleteOrgLimitPayload {
3689
- clientMutationId?: string | null;
3690
- /** The `OrgLimit` that was deleted by this mutation. */
3691
- orgLimit?: OrgLimit | null;
3692
- orgLimitEdge?: OrgLimitEdge | null;
3693
- }
3694
- export type DeleteOrgLimitPayloadSelect = {
3695
- clientMutationId?: boolean;
3696
- orgLimit?: {
3697
- select: OrgLimitSelect;
3698
- };
3699
- orgLimitEdge?: {
3700
- select: OrgLimitEdgeSelect;
3701
- };
3702
- };
3703
3703
  export interface CreateOrgClaimedInvitePayload {
3704
3704
  clientMutationId?: string | null;
3705
3705
  /** The `OrgClaimedInvite` that was created by this mutation. */
@@ -3852,32 +3852,122 @@ export type CreateOrgMembershipDefaultPayloadSelect = {
3852
3852
  };
3853
3853
  export interface UpdateOrgMembershipDefaultPayload {
3854
3854
  clientMutationId?: string | null;
3855
- /** The `OrgMembershipDefault` that was updated by this mutation. */
3856
- orgMembershipDefault?: OrgMembershipDefault | null;
3857
- orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
3855
+ /** The `OrgMembershipDefault` that was updated by this mutation. */
3856
+ orgMembershipDefault?: OrgMembershipDefault | null;
3857
+ orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
3858
+ }
3859
+ export type UpdateOrgMembershipDefaultPayloadSelect = {
3860
+ clientMutationId?: boolean;
3861
+ orgMembershipDefault?: {
3862
+ select: OrgMembershipDefaultSelect;
3863
+ };
3864
+ orgMembershipDefaultEdge?: {
3865
+ select: OrgMembershipDefaultEdgeSelect;
3866
+ };
3867
+ };
3868
+ export interface DeleteOrgMembershipDefaultPayload {
3869
+ clientMutationId?: string | null;
3870
+ /** The `OrgMembershipDefault` that was deleted by this mutation. */
3871
+ orgMembershipDefault?: OrgMembershipDefault | null;
3872
+ orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
3873
+ }
3874
+ export type DeleteOrgMembershipDefaultPayloadSelect = {
3875
+ clientMutationId?: boolean;
3876
+ orgMembershipDefault?: {
3877
+ select: OrgMembershipDefaultSelect;
3878
+ };
3879
+ orgMembershipDefaultEdge?: {
3880
+ select: OrgMembershipDefaultEdgeSelect;
3881
+ };
3882
+ };
3883
+ export interface CreateAppLevelPayload {
3884
+ clientMutationId?: string | null;
3885
+ /** The `AppLevel` that was created by this mutation. */
3886
+ appLevel?: AppLevel | null;
3887
+ appLevelEdge?: AppLevelEdge | null;
3888
+ }
3889
+ export type CreateAppLevelPayloadSelect = {
3890
+ clientMutationId?: boolean;
3891
+ appLevel?: {
3892
+ select: AppLevelSelect;
3893
+ };
3894
+ appLevelEdge?: {
3895
+ select: AppLevelEdgeSelect;
3896
+ };
3897
+ };
3898
+ export interface UpdateAppLevelPayload {
3899
+ clientMutationId?: string | null;
3900
+ /** The `AppLevel` that was updated by this mutation. */
3901
+ appLevel?: AppLevel | null;
3902
+ appLevelEdge?: AppLevelEdge | null;
3903
+ }
3904
+ export type UpdateAppLevelPayloadSelect = {
3905
+ clientMutationId?: boolean;
3906
+ appLevel?: {
3907
+ select: AppLevelSelect;
3908
+ };
3909
+ appLevelEdge?: {
3910
+ select: AppLevelEdgeSelect;
3911
+ };
3912
+ };
3913
+ export interface DeleteAppLevelPayload {
3914
+ clientMutationId?: string | null;
3915
+ /** The `AppLevel` that was deleted by this mutation. */
3916
+ appLevel?: AppLevel | null;
3917
+ appLevelEdge?: AppLevelEdge | null;
3918
+ }
3919
+ export type DeleteAppLevelPayloadSelect = {
3920
+ clientMutationId?: boolean;
3921
+ appLevel?: {
3922
+ select: AppLevelSelect;
3923
+ };
3924
+ appLevelEdge?: {
3925
+ select: AppLevelEdgeSelect;
3926
+ };
3927
+ };
3928
+ export interface CreateInvitePayload {
3929
+ clientMutationId?: string | null;
3930
+ /** The `Invite` that was created by this mutation. */
3931
+ invite?: Invite | null;
3932
+ inviteEdge?: InviteEdge | null;
3933
+ }
3934
+ export type CreateInvitePayloadSelect = {
3935
+ clientMutationId?: boolean;
3936
+ invite?: {
3937
+ select: InviteSelect;
3938
+ };
3939
+ inviteEdge?: {
3940
+ select: InviteEdgeSelect;
3941
+ };
3942
+ };
3943
+ export interface UpdateInvitePayload {
3944
+ clientMutationId?: string | null;
3945
+ /** The `Invite` that was updated by this mutation. */
3946
+ invite?: Invite | null;
3947
+ inviteEdge?: InviteEdge | null;
3858
3948
  }
3859
- export type UpdateOrgMembershipDefaultPayloadSelect = {
3949
+ export type UpdateInvitePayloadSelect = {
3860
3950
  clientMutationId?: boolean;
3861
- orgMembershipDefault?: {
3862
- select: OrgMembershipDefaultSelect;
3951
+ invite?: {
3952
+ select: InviteSelect;
3863
3953
  };
3864
- orgMembershipDefaultEdge?: {
3865
- select: OrgMembershipDefaultEdgeSelect;
3954
+ inviteEdge?: {
3955
+ select: InviteEdgeSelect;
3866
3956
  };
3867
3957
  };
3868
- export interface DeleteOrgMembershipDefaultPayload {
3958
+ export interface DeleteInvitePayload {
3869
3959
  clientMutationId?: string | null;
3870
- /** The `OrgMembershipDefault` that was deleted by this mutation. */
3871
- orgMembershipDefault?: OrgMembershipDefault | null;
3872
- orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
3960
+ /** The `Invite` that was deleted by this mutation. */
3961
+ invite?: Invite | null;
3962
+ inviteEdge?: InviteEdge | null;
3873
3963
  }
3874
- export type DeleteOrgMembershipDefaultPayloadSelect = {
3964
+ export type DeleteInvitePayloadSelect = {
3875
3965
  clientMutationId?: boolean;
3876
- orgMembershipDefault?: {
3877
- select: OrgMembershipDefaultSelect;
3966
+ invite?: {
3967
+ select: InviteSelect;
3878
3968
  };
3879
- orgMembershipDefaultEdge?: {
3880
- select: OrgMembershipDefaultEdgeSelect;
3969
+ inviteEdge?: {
3970
+ select: InviteEdgeSelect;
3881
3971
  };
3882
3972
  };
3883
3973
  export interface CreateAppMembershipPayload {
@@ -3970,96 +4060,6 @@ export type DeleteOrgMembershipPayloadSelect = {
3970
4060
  select: OrgMembershipEdgeSelect;
3971
4061
  };
3972
4062
  };
3973
- export interface CreateInvitePayload {
3974
- clientMutationId?: string | null;
3975
- /** The `Invite` that was created by this mutation. */
3976
- invite?: Invite | null;
3977
- inviteEdge?: InviteEdge | null;
3978
- }
3979
- export type CreateInvitePayloadSelect = {
3980
- clientMutationId?: boolean;
3981
- invite?: {
3982
- select: InviteSelect;
3983
- };
3984
- inviteEdge?: {
3985
- select: InviteEdgeSelect;
3986
- };
3987
- };
3988
- export interface UpdateInvitePayload {
3989
- clientMutationId?: string | null;
3990
- /** The `Invite` that was updated by this mutation. */
3991
- invite?: Invite | null;
3992
- inviteEdge?: InviteEdge | null;
3993
- }
3994
- export type UpdateInvitePayloadSelect = {
3995
- clientMutationId?: boolean;
3996
- invite?: {
3997
- select: InviteSelect;
3998
- };
3999
- inviteEdge?: {
4000
- select: InviteEdgeSelect;
4001
- };
4002
- };
4003
- export interface DeleteInvitePayload {
4004
- clientMutationId?: string | null;
4005
- /** The `Invite` that was deleted by this mutation. */
4006
- invite?: Invite | null;
4007
- inviteEdge?: InviteEdge | null;
4008
- }
4009
- export type DeleteInvitePayloadSelect = {
4010
- clientMutationId?: boolean;
4011
- invite?: {
4012
- select: InviteSelect;
4013
- };
4014
- inviteEdge?: {
4015
- select: InviteEdgeSelect;
4016
- };
4017
- };
4018
- export interface CreateAppLevelPayload {
4019
- clientMutationId?: string | null;
4020
- /** The `AppLevel` that was created by this mutation. */
4021
- appLevel?: AppLevel | null;
4022
- appLevelEdge?: AppLevelEdge | null;
4023
- }
4024
- export type CreateAppLevelPayloadSelect = {
4025
- clientMutationId?: boolean;
4026
- appLevel?: {
4027
- select: AppLevelSelect;
4028
- };
4029
- appLevelEdge?: {
4030
- select: AppLevelEdgeSelect;
4031
- };
4032
- };
4033
- export interface UpdateAppLevelPayload {
4034
- clientMutationId?: string | null;
4035
- /** The `AppLevel` that was updated by this mutation. */
4036
- appLevel?: AppLevel | null;
4037
- appLevelEdge?: AppLevelEdge | null;
4038
- }
4039
- export type UpdateAppLevelPayloadSelect = {
4040
- clientMutationId?: boolean;
4041
- appLevel?: {
4042
- select: AppLevelSelect;
4043
- };
4044
- appLevelEdge?: {
4045
- select: AppLevelEdgeSelect;
4046
- };
4047
- };
4048
- export interface DeleteAppLevelPayload {
4049
- clientMutationId?: string | null;
4050
- /** The `AppLevel` that was deleted by this mutation. */
4051
- appLevel?: AppLevel | null;
4052
- appLevelEdge?: AppLevelEdge | null;
4053
- }
4054
- export type DeleteAppLevelPayloadSelect = {
4055
- clientMutationId?: boolean;
4056
- appLevel?: {
4057
- select: AppLevelSelect;
4058
- };
4059
- appLevelEdge?: {
4060
- select: AppLevelEdgeSelect;
4061
- };
4062
- };
4063
4063
  export interface CreateOrgInvitePayload {
4064
4064
  clientMutationId?: string | null;
4065
4065
  /** The `OrgInvite` that was created by this mutation. */
@@ -4218,30 +4218,6 @@ export type AppOwnerGrantEdgeSelect = {
4218
4218
  select: AppOwnerGrantSelect;
4219
4219
  };
4220
4220
  };
4221
- /** A `OrgAdminGrant` edge in the connection. */
4222
- export interface OrgAdminGrantEdge {
4223
- cursor?: string | null;
4224
- /** The `OrgAdminGrant` at the end of the edge. */
4225
- node?: OrgAdminGrant | null;
4226
- }
4227
- export type OrgAdminGrantEdgeSelect = {
4228
- cursor?: boolean;
4229
- node?: {
4230
- select: OrgAdminGrantSelect;
4231
- };
4232
- };
4233
- /** A `OrgOwnerGrant` edge in the connection. */
4234
- export interface OrgOwnerGrantEdge {
4235
- cursor?: string | null;
4236
- /** The `OrgOwnerGrant` at the end of the edge. */
4237
- node?: OrgOwnerGrant | null;
4238
- }
4239
- export type OrgOwnerGrantEdgeSelect = {
4240
- cursor?: boolean;
4241
- node?: {
4242
- select: OrgOwnerGrantSelect;
4243
- };
4244
- };
4245
4221
  /** A `AppLimitDefault` edge in the connection. */
4246
4222
  export interface AppLimitDefaultEdge {
4247
4223
  cursor?: string | null;
@@ -4266,16 +4242,28 @@ export type OrgLimitDefaultEdgeSelect = {
4266
4242
  select: OrgLimitDefaultSelect;
4267
4243
  };
4268
4244
  };
4269
- /** A `OrgChartEdgeGrant` edge in the connection. */
4270
- export interface OrgChartEdgeGrantEdge {
4245
+ /** A `OrgAdminGrant` edge in the connection. */
4246
+ export interface OrgAdminGrantEdge {
4271
4247
  cursor?: string | null;
4272
- /** The `OrgChartEdgeGrant` at the end of the edge. */
4273
- node?: OrgChartEdgeGrant | null;
4248
+ /** The `OrgAdminGrant` at the end of the edge. */
4249
+ node?: OrgAdminGrant | null;
4274
4250
  }
4275
- export type OrgChartEdgeGrantEdgeSelect = {
4251
+ export type OrgAdminGrantEdgeSelect = {
4276
4252
  cursor?: boolean;
4277
4253
  node?: {
4278
- select: OrgChartEdgeGrantSelect;
4254
+ select: OrgAdminGrantSelect;
4255
+ };
4256
+ };
4257
+ /** A `OrgOwnerGrant` edge in the connection. */
4258
+ export interface OrgOwnerGrantEdge {
4259
+ cursor?: string | null;
4260
+ /** The `OrgOwnerGrant` at the end of the edge. */
4261
+ node?: OrgOwnerGrant | null;
4262
+ }
4263
+ export type OrgOwnerGrantEdgeSelect = {
4264
+ cursor?: boolean;
4265
+ node?: {
4266
+ select: OrgOwnerGrantSelect;
4279
4267
  };
4280
4268
  };
4281
4269
  /** A `MembershipType` edge in the connection. */
@@ -4338,6 +4326,30 @@ export type ClaimedInviteEdgeSelect = {
4338
4326
  select: ClaimedInviteSelect;
4339
4327
  };
4340
4328
  };
4329
+ /** A `OrgChartEdgeGrant` edge in the connection. */
4330
+ export interface OrgChartEdgeGrantEdge {
4331
+ cursor?: string | null;
4332
+ /** The `OrgChartEdgeGrant` at the end of the edge. */
4333
+ node?: OrgChartEdgeGrant | null;
4334
+ }
4335
+ export type OrgChartEdgeGrantEdgeSelect = {
4336
+ cursor?: boolean;
4337
+ node?: {
4338
+ select: OrgChartEdgeGrantSelect;
4339
+ };
4340
+ };
4341
+ /** A `OrgLimit` edge in the connection. */
4342
+ export interface OrgLimitEdge {
4343
+ cursor?: string | null;
4344
+ /** The `OrgLimit` at the end of the edge. */
4345
+ node?: OrgLimit | null;
4346
+ }
4347
+ export type OrgLimitEdgeSelect = {
4348
+ cursor?: boolean;
4349
+ node?: {
4350
+ select: OrgLimitSelect;
4351
+ };
4352
+ };
4341
4353
  /** A `AppGrant` edge in the connection. */
4342
4354
  export interface AppGrantEdge {
4343
4355
  cursor?: string | null;
@@ -4362,18 +4374,6 @@ export type AppMembershipDefaultEdgeSelect = {
4362
4374
  select: AppMembershipDefaultSelect;
4363
4375
  };
4364
4376
  };
4365
- /** A `OrgLimit` edge in the connection. */
4366
- export interface OrgLimitEdge {
4367
- cursor?: string | null;
4368
- /** The `OrgLimit` at the end of the edge. */
4369
- node?: OrgLimit | null;
4370
- }
4371
- export type OrgLimitEdgeSelect = {
4372
- cursor?: boolean;
4373
- node?: {
4374
- select: OrgLimitSelect;
4375
- };
4376
- };
4377
4377
  /** A `OrgClaimedInvite` edge in the connection. */
4378
4378
  export interface OrgClaimedInviteEdge {
4379
4379
  cursor?: string | null;
@@ -4422,28 +4422,16 @@ export type OrgMembershipDefaultEdgeSelect = {
4422
4422
  select: OrgMembershipDefaultSelect;
4423
4423
  };
4424
4424
  };
4425
- /** A `AppMembership` edge in the connection. */
4426
- export interface AppMembershipEdge {
4427
- cursor?: string | null;
4428
- /** The `AppMembership` at the end of the edge. */
4429
- node?: AppMembership | null;
4430
- }
4431
- export type AppMembershipEdgeSelect = {
4432
- cursor?: boolean;
4433
- node?: {
4434
- select: AppMembershipSelect;
4435
- };
4436
- };
4437
- /** A `OrgMembership` edge in the connection. */
4438
- export interface OrgMembershipEdge {
4425
+ /** A `AppLevel` edge in the connection. */
4426
+ export interface AppLevelEdge {
4439
4427
  cursor?: string | null;
4440
- /** The `OrgMembership` at the end of the edge. */
4441
- node?: OrgMembership | null;
4428
+ /** The `AppLevel` at the end of the edge. */
4429
+ node?: AppLevel | null;
4442
4430
  }
4443
- export type OrgMembershipEdgeSelect = {
4431
+ export type AppLevelEdgeSelect = {
4444
4432
  cursor?: boolean;
4445
4433
  node?: {
4446
- select: OrgMembershipSelect;
4434
+ select: AppLevelSelect;
4447
4435
  };
4448
4436
  };
4449
4437
  /** A `Invite` edge in the connection. */
@@ -4458,16 +4446,28 @@ export type InviteEdgeSelect = {
4458
4446
  select: InviteSelect;
4459
4447
  };
4460
4448
  };
4461
- /** A `AppLevel` edge in the connection. */
4462
- export interface AppLevelEdge {
4449
+ /** A `AppMembership` edge in the connection. */
4450
+ export interface AppMembershipEdge {
4463
4451
  cursor?: string | null;
4464
- /** The `AppLevel` at the end of the edge. */
4465
- node?: AppLevel | null;
4452
+ /** The `AppMembership` at the end of the edge. */
4453
+ node?: AppMembership | null;
4466
4454
  }
4467
- export type AppLevelEdgeSelect = {
4455
+ export type AppMembershipEdgeSelect = {
4468
4456
  cursor?: boolean;
4469
4457
  node?: {
4470
- select: AppLevelSelect;
4458
+ select: AppMembershipSelect;
4459
+ };
4460
+ };
4461
+ /** A `OrgMembership` edge in the connection. */
4462
+ export interface OrgMembershipEdge {
4463
+ cursor?: string | null;
4464
+ /** The `OrgMembership` at the end of the edge. */
4465
+ node?: OrgMembership | null;
4466
+ }
4467
+ export type OrgMembershipEdgeSelect = {
4468
+ cursor?: boolean;
4469
+ node?: {
4470
+ select: OrgMembershipSelect;
4471
4471
  };
4472
4472
  };
4473
4473
  /** A `OrgInvite` edge in the connection. */