@constructive-sdk/cli 0.13.3 → 0.13.4

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 (128) hide show
  1. package/admin/cli/commands/{claimed-invite.d.ts → app-claimed-invite.d.ts} +1 -1
  2. package/admin/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
  3. package/{esm/public/cli/commands/invite.d.ts → admin/cli/commands/app-invite.d.ts} +1 -1
  4. package/{public/cli/commands/invite.js → admin/cli/commands/app-invite.js} +8 -8
  5. package/admin/cli/commands/steps-achieved.js +4 -4
  6. package/admin/cli/commands/steps-required.js +4 -4
  7. package/admin/cli/commands/{submit-invite-code.d.ts → submit-app-invite-code.d.ts} +1 -1
  8. package/admin/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
  9. package/admin/cli/commands.js +7 -7
  10. package/admin/cli/executor.d.ts +5 -5
  11. package/admin/orm/index.d.ts +7 -7
  12. package/admin/orm/index.js +4 -4
  13. package/admin/orm/input-types.d.ts +99 -99
  14. package/admin/orm/models/appClaimedInvite.d.ts +56 -0
  15. package/{public/orm/models/claimedInvite.js → admin/orm/models/appClaimedInvite.js} +26 -26
  16. package/admin/orm/models/appInvite.d.ts +56 -0
  17. package/{public/orm/models/invite.js → admin/orm/models/appInvite.js} +26 -26
  18. package/admin/orm/models/index.d.ts +2 -2
  19. package/admin/orm/models/index.js +5 -5
  20. package/admin/orm/mutation/index.d.ts +6 -6
  21. package/admin/orm/mutation/index.js +6 -6
  22. package/admin/orm/query/index.d.ts +4 -4
  23. package/admin/orm/query/index.js +4 -4
  24. package/auth/cli/commands.js +5 -5
  25. package/auth/cli/executor.d.ts +10 -10
  26. package/auth/orm/index.d.ts +10 -10
  27. package/auth/orm/input-types.d.ts +24 -72
  28. package/auth/orm/mutation/index.d.ts +17 -17
  29. package/auth/orm/mutation/index.js +24 -24
  30. package/esm/admin/cli/commands/{claimed-invite.d.ts → app-claimed-invite.d.ts} +1 -1
  31. package/esm/admin/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
  32. package/esm/admin/cli/commands/{invite.d.ts → app-invite.d.ts} +1 -1
  33. package/esm/{public/cli/commands/invite.js → admin/cli/commands/app-invite.js} +8 -8
  34. package/esm/admin/cli/commands/steps-achieved.js +4 -4
  35. package/esm/admin/cli/commands/steps-required.js +4 -4
  36. package/esm/admin/cli/commands/submit-app-invite-code.d.ts +8 -0
  37. package/esm/admin/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
  38. package/esm/admin/cli/commands.js +7 -7
  39. package/esm/admin/cli/executor.d.ts +5 -5
  40. package/esm/admin/orm/index.d.ts +7 -7
  41. package/esm/admin/orm/index.js +4 -4
  42. package/esm/admin/orm/input-types.d.ts +99 -99
  43. package/esm/admin/orm/models/appClaimedInvite.d.ts +56 -0
  44. package/esm/admin/orm/models/{claimedInvite.js → appClaimedInvite.js} +24 -24
  45. package/esm/admin/orm/models/appInvite.d.ts +56 -0
  46. package/esm/admin/orm/models/{invite.js → appInvite.js} +24 -24
  47. package/esm/admin/orm/models/index.d.ts +2 -2
  48. package/esm/admin/orm/models/index.js +2 -2
  49. package/esm/admin/orm/mutation/index.d.ts +6 -6
  50. package/esm/admin/orm/mutation/index.js +6 -6
  51. package/esm/admin/orm/query/index.d.ts +4 -4
  52. package/esm/admin/orm/query/index.js +4 -4
  53. package/esm/auth/cli/commands.js +5 -5
  54. package/esm/auth/cli/executor.d.ts +10 -10
  55. package/esm/auth/orm/index.d.ts +10 -10
  56. package/esm/auth/orm/input-types.d.ts +24 -72
  57. package/esm/auth/orm/mutation/index.d.ts +17 -17
  58. package/esm/auth/orm/mutation/index.js +24 -24
  59. package/esm/public/cli/commands/app-claimed-invite.d.ts +8 -0
  60. package/esm/public/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
  61. package/{admin/cli/commands/invite.d.ts → esm/public/cli/commands/app-invite.d.ts} +1 -1
  62. package/esm/{admin/cli/commands/invite.js → public/cli/commands/app-invite.js} +8 -8
  63. package/esm/public/cli/commands/rate-limits-module.d.ts +8 -0
  64. package/esm/public/cli/commands/rate-limits-module.js +382 -0
  65. package/esm/public/cli/commands/steps-achieved.js +4 -4
  66. package/esm/public/cli/commands/steps-required.js +4 -4
  67. package/esm/public/cli/commands/submit-app-invite-code.d.ts +8 -0
  68. package/esm/public/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
  69. package/esm/public/cli/commands.js +13 -11
  70. package/esm/public/cli/executor.d.ts +16 -15
  71. package/esm/public/orm/index.d.ts +19 -17
  72. package/esm/public/orm/index.js +6 -4
  73. package/esm/public/orm/input-types.d.ts +402 -230
  74. package/esm/public/orm/input-types.js +3 -3
  75. package/esm/public/orm/models/appClaimedInvite.d.ts +56 -0
  76. package/esm/public/orm/models/{claimedInvite.js → appClaimedInvite.js} +24 -24
  77. package/esm/public/orm/models/appInvite.d.ts +56 -0
  78. package/esm/public/orm/models/{invite.js → appInvite.js} +24 -24
  79. package/esm/public/orm/models/index.d.ts +3 -2
  80. package/esm/public/orm/models/index.js +3 -2
  81. package/esm/public/orm/models/rateLimitsModule.d.ts +56 -0
  82. package/esm/public/orm/models/rateLimitsModule.js +96 -0
  83. package/esm/public/orm/mutation/index.d.ts +22 -22
  84. package/esm/public/orm/mutation/index.js +30 -30
  85. package/esm/public/orm/query/index.d.ts +4 -4
  86. package/esm/public/orm/query/index.js +4 -4
  87. package/package.json +2 -2
  88. package/public/cli/commands/app-claimed-invite.d.ts +8 -0
  89. package/public/cli/commands/{claimed-invite.js → app-claimed-invite.js} +8 -8
  90. package/public/cli/commands/{invite.d.ts → app-invite.d.ts} +1 -1
  91. package/{admin/cli/commands/invite.js → public/cli/commands/app-invite.js} +8 -8
  92. package/public/cli/commands/rate-limits-module.d.ts +8 -0
  93. package/public/cli/commands/rate-limits-module.js +384 -0
  94. package/public/cli/commands/steps-achieved.js +4 -4
  95. package/public/cli/commands/steps-required.js +4 -4
  96. package/public/cli/commands/submit-app-invite-code.d.ts +8 -0
  97. package/public/cli/commands/{submit-invite-code.js → submit-app-invite-code.js} +3 -3
  98. package/public/cli/commands.js +13 -11
  99. package/public/cli/executor.d.ts +16 -15
  100. package/public/orm/index.d.ts +19 -17
  101. package/public/orm/index.js +6 -4
  102. package/public/orm/input-types.d.ts +402 -230
  103. package/public/orm/input-types.js +3 -3
  104. package/public/orm/models/appClaimedInvite.d.ts +56 -0
  105. package/{admin/orm/models/claimedInvite.js → public/orm/models/appClaimedInvite.js} +26 -26
  106. package/public/orm/models/appInvite.d.ts +56 -0
  107. package/{admin/orm/models/invite.js → public/orm/models/appInvite.js} +26 -26
  108. package/public/orm/models/index.d.ts +3 -2
  109. package/public/orm/models/index.js +8 -6
  110. package/public/orm/models/rateLimitsModule.d.ts +56 -0
  111. package/public/orm/models/rateLimitsModule.js +100 -0
  112. package/public/orm/mutation/index.d.ts +22 -22
  113. package/public/orm/mutation/index.js +30 -30
  114. package/public/orm/query/index.d.ts +4 -4
  115. package/public/orm/query/index.js +4 -4
  116. package/admin/orm/models/claimedInvite.d.ts +0 -56
  117. package/admin/orm/models/invite.d.ts +0 -56
  118. package/esm/admin/cli/commands/submit-invite-code.d.ts +0 -8
  119. package/esm/admin/orm/models/claimedInvite.d.ts +0 -56
  120. package/esm/admin/orm/models/invite.d.ts +0 -56
  121. package/esm/public/cli/commands/claimed-invite.d.ts +0 -8
  122. package/esm/public/cli/commands/submit-invite-code.d.ts +0 -8
  123. package/esm/public/orm/models/claimedInvite.d.ts +0 -56
  124. package/esm/public/orm/models/invite.d.ts +0 -56
  125. package/public/cli/commands/claimed-invite.d.ts +0 -8
  126. package/public/cli/commands/submit-invite-code.d.ts +0 -8
  127. package/public/orm/models/claimedInvite.d.ts +0 -56
  128. package/public/orm/models/invite.d.ts +0 -56
@@ -1671,7 +1671,7 @@ export interface ConnectedAccount {
1671
1671
  updatedAt?: string | null;
1672
1672
  }
1673
1673
  /** Invitation records sent to prospective members via email, with token-based redemption and expiration */
1674
- export interface Invite {
1674
+ export interface AppInvite {
1675
1675
  id: string;
1676
1676
  /** Email address of the invited recipient */
1677
1677
  email?: ConstructiveInternalTypeEmail | null;
@@ -1695,7 +1695,7 @@ export interface Invite {
1695
1695
  updatedAt?: string | null;
1696
1696
  }
1697
1697
  /** Records of successfully claimed invitations, linking senders to receivers */
1698
- export interface ClaimedInvite {
1698
+ export interface AppClaimedInvite {
1699
1699
  id: string;
1700
1700
  /** Optional JSON payload captured at the time the invite was claimed */
1701
1701
  data?: Record<string, unknown> | null;
@@ -1859,6 +1859,17 @@ export interface Commit {
1859
1859
  treeId?: string | null;
1860
1860
  date?: string | null;
1861
1861
  }
1862
+ export interface RateLimitsModule {
1863
+ id: string;
1864
+ databaseId?: string | null;
1865
+ schemaId?: string | null;
1866
+ rateLimitSettingsTableId?: string | null;
1867
+ ipRateLimitsTableId?: string | null;
1868
+ rateLimitsTableId?: string | null;
1869
+ rateLimitSettingsTable?: string | null;
1870
+ ipRateLimitsTable?: string | null;
1871
+ rateLimitsTable?: string | null;
1872
+ }
1862
1873
  /** Default membership settings per entity, controlling initial approval and verification state for new members */
1863
1874
  export interface OrgMembershipDefault {
1864
1875
  id: string;
@@ -2014,6 +2025,7 @@ export interface DatabaseRelations {
2014
2025
  owner?: User | null;
2015
2026
  rlsModule?: RlsModule | null;
2016
2027
  hierarchyModule?: HierarchyModule | null;
2028
+ rateLimitsModule?: RateLimitsModule | null;
2017
2029
  schemas?: ConnectionResult<Schema>;
2018
2030
  tables?: ConnectionResult<Table>;
2019
2031
  checkConstraints?: ConnectionResult<CheckConstraint>;
@@ -2510,10 +2522,10 @@ export interface CryptoAddressRelations {
2510
2522
  export interface ConnectedAccountRelations {
2511
2523
  owner?: User | null;
2512
2524
  }
2513
- export interface InviteRelations {
2525
+ export interface AppInviteRelations {
2514
2526
  sender?: User | null;
2515
2527
  }
2516
- export interface ClaimedInviteRelations {
2528
+ export interface AppClaimedInviteRelations {
2517
2529
  receiver?: User | null;
2518
2530
  sender?: User | null;
2519
2531
  }
@@ -2550,6 +2562,13 @@ export interface AppMembershipDefaultRelations {
2550
2562
  }
2551
2563
  export interface CommitRelations {
2552
2564
  }
2565
+ export interface RateLimitsModuleRelations {
2566
+ database?: Database | null;
2567
+ ipRateLimitsTableByIpRateLimitsTableId?: Table | null;
2568
+ rateLimitSettingsTableByRateLimitSettingsTableId?: Table | null;
2569
+ rateLimitsTableByRateLimitsTableId?: Table | null;
2570
+ schema?: Schema | null;
2571
+ }
2553
2572
  export interface OrgMembershipDefaultRelations {
2554
2573
  entity?: User | null;
2555
2574
  }
@@ -2605,9 +2624,9 @@ export interface UserRelations {
2605
2624
  ownedPhoneNumbers?: ConnectionResult<PhoneNumber>;
2606
2625
  ownedCryptoAddresses?: ConnectionResult<CryptoAddress>;
2607
2626
  ownedConnectedAccounts?: ConnectionResult<ConnectedAccount>;
2608
- invitesBySenderId?: ConnectionResult<Invite>;
2609
- claimedInvitesByReceiverId?: ConnectionResult<ClaimedInvite>;
2610
- claimedInvitesBySenderId?: ConnectionResult<ClaimedInvite>;
2627
+ appInvitesBySenderId?: ConnectionResult<AppInvite>;
2628
+ appClaimedInvitesByReceiverId?: ConnectionResult<AppClaimedInvite>;
2629
+ appClaimedInvitesBySenderId?: ConnectionResult<AppClaimedInvite>;
2611
2630
  orgInvitesByEntityId?: ConnectionResult<OrgInvite>;
2612
2631
  orgInvitesByReceiverId?: ConnectionResult<OrgInvite>;
2613
2632
  orgInvitesBySenderId?: ConnectionResult<OrgInvite>;
@@ -2717,8 +2736,8 @@ export type EmailWithRelations = Email & EmailRelations;
2717
2736
  export type PhoneNumberWithRelations = PhoneNumber & PhoneNumberRelations;
2718
2737
  export type CryptoAddressWithRelations = CryptoAddress & CryptoAddressRelations;
2719
2738
  export type ConnectedAccountWithRelations = ConnectedAccount & ConnectedAccountRelations;
2720
- export type InviteWithRelations = Invite & InviteRelations;
2721
- export type ClaimedInviteWithRelations = ClaimedInvite & ClaimedInviteRelations;
2739
+ export type AppInviteWithRelations = AppInvite & AppInviteRelations;
2740
+ export type AppClaimedInviteWithRelations = AppClaimedInvite & AppClaimedInviteRelations;
2722
2741
  export type OrgInviteWithRelations = OrgInvite & OrgInviteRelations;
2723
2742
  export type OrgClaimedInviteWithRelations = OrgClaimedInvite & OrgClaimedInviteRelations;
2724
2743
  export type AuditLogWithRelations = AuditLog & AuditLogRelations;
@@ -2732,6 +2751,7 @@ export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRela
2732
2751
  export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelations;
2733
2752
  export type AppMembershipDefaultWithRelations = AppMembershipDefault & AppMembershipDefaultRelations;
2734
2753
  export type CommitWithRelations = Commit & CommitRelations;
2754
+ export type RateLimitsModuleWithRelations = RateLimitsModule & RateLimitsModuleRelations;
2735
2755
  export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
2736
2756
  export type RlsModuleWithRelations = RlsModule & RlsModuleRelations;
2737
2757
  export type SqlActionWithRelations = SqlAction & SqlActionRelations;
@@ -2803,6 +2823,9 @@ export type DatabaseSelect = {
2803
2823
  hierarchyModule?: {
2804
2824
  select: HierarchyModuleSelect;
2805
2825
  };
2826
+ rateLimitsModule?: {
2827
+ select: RateLimitsModuleSelect;
2828
+ };
2806
2829
  schemas?: {
2807
2830
  select: SchemaSelect;
2808
2831
  first?: number;
@@ -5113,7 +5136,7 @@ export type ConnectedAccountSelect = {
5113
5136
  select: UserSelect;
5114
5137
  };
5115
5138
  };
5116
- export type InviteSelect = {
5139
+ export type AppInviteSelect = {
5117
5140
  id?: boolean;
5118
5141
  email?: boolean;
5119
5142
  senderId?: boolean;
@@ -5130,7 +5153,7 @@ export type InviteSelect = {
5130
5153
  select: UserSelect;
5131
5154
  };
5132
5155
  };
5133
- export type ClaimedInviteSelect = {
5156
+ export type AppClaimedInviteSelect = {
5134
5157
  id?: boolean;
5135
5158
  data?: boolean;
5136
5159
  senderId?: boolean;
@@ -5263,6 +5286,32 @@ export type CommitSelect = {
5263
5286
  treeId?: boolean;
5264
5287
  date?: boolean;
5265
5288
  };
5289
+ export type RateLimitsModuleSelect = {
5290
+ id?: boolean;
5291
+ databaseId?: boolean;
5292
+ schemaId?: boolean;
5293
+ rateLimitSettingsTableId?: boolean;
5294
+ ipRateLimitsTableId?: boolean;
5295
+ rateLimitsTableId?: boolean;
5296
+ rateLimitSettingsTable?: boolean;
5297
+ ipRateLimitsTable?: boolean;
5298
+ rateLimitsTable?: boolean;
5299
+ database?: {
5300
+ select: DatabaseSelect;
5301
+ };
5302
+ ipRateLimitsTableByIpRateLimitsTableId?: {
5303
+ select: TableSelect;
5304
+ };
5305
+ rateLimitSettingsTableByRateLimitSettingsTableId?: {
5306
+ select: TableSelect;
5307
+ };
5308
+ rateLimitsTableByRateLimitsTableId?: {
5309
+ select: TableSelect;
5310
+ };
5311
+ schema?: {
5312
+ select: SchemaSelect;
5313
+ };
5314
+ };
5266
5315
  export type OrgMembershipDefaultSelect = {
5267
5316
  id?: boolean;
5268
5317
  createdAt?: boolean;
@@ -5572,23 +5621,23 @@ export type UserSelect = {
5572
5621
  filter?: ConnectedAccountFilter;
5573
5622
  orderBy?: ConnectedAccountOrderBy[];
5574
5623
  };
5575
- invitesBySenderId?: {
5576
- select: InviteSelect;
5624
+ appInvitesBySenderId?: {
5625
+ select: AppInviteSelect;
5577
5626
  first?: number;
5578
- filter?: InviteFilter;
5579
- orderBy?: InviteOrderBy[];
5627
+ filter?: AppInviteFilter;
5628
+ orderBy?: AppInviteOrderBy[];
5580
5629
  };
5581
- claimedInvitesByReceiverId?: {
5582
- select: ClaimedInviteSelect;
5630
+ appClaimedInvitesByReceiverId?: {
5631
+ select: AppClaimedInviteSelect;
5583
5632
  first?: number;
5584
- filter?: ClaimedInviteFilter;
5585
- orderBy?: ClaimedInviteOrderBy[];
5633
+ filter?: AppClaimedInviteFilter;
5634
+ orderBy?: AppClaimedInviteOrderBy[];
5586
5635
  };
5587
- claimedInvitesBySenderId?: {
5588
- select: ClaimedInviteSelect;
5636
+ appClaimedInvitesBySenderId?: {
5637
+ select: AppClaimedInviteSelect;
5589
5638
  first?: number;
5590
- filter?: ClaimedInviteFilter;
5591
- orderBy?: ClaimedInviteOrderBy[];
5639
+ filter?: AppClaimedInviteFilter;
5640
+ orderBy?: AppClaimedInviteOrderBy[];
5592
5641
  };
5593
5642
  orgInvitesByEntityId?: {
5594
5643
  select: OrgInviteSelect;
@@ -6073,6 +6122,10 @@ export interface DatabaseFilter {
6073
6122
  storageModules?: DatabaseToManyStorageModuleFilter;
6074
6123
  /** `storageModules` exist. */
6075
6124
  storageModulesExist?: boolean;
6125
+ /** Filter by the object’s `rateLimitsModule` relation. */
6126
+ rateLimitsModule?: RateLimitsModuleFilter;
6127
+ /** A related `rateLimitsModule` exists. */
6128
+ rateLimitsModuleExists?: boolean;
6076
6129
  /** Filter by the object’s `databaseProvisionModules` relation. */
6077
6130
  databaseProvisionModules?: DatabaseToManyDatabaseProvisionModuleFilter;
6078
6131
  /** `databaseProvisionModules` exist. */
@@ -9098,7 +9151,7 @@ export interface ConnectedAccountFilter {
9098
9151
  /** Filter by the object’s `owner` relation. */
9099
9152
  owner?: UserFilter;
9100
9153
  }
9101
- export interface InviteFilter {
9154
+ export interface AppInviteFilter {
9102
9155
  /** Filter by the object’s `id` field. */
9103
9156
  id?: UUIDFilter;
9104
9157
  /** Filter by the object’s `email` field. */
@@ -9122,15 +9175,15 @@ export interface InviteFilter {
9122
9175
  /** Filter by the object’s `updatedAt` field. */
9123
9176
  updatedAt?: DatetimeFilter;
9124
9177
  /** Checks for all expressions in this list. */
9125
- and?: InviteFilter[];
9178
+ and?: AppInviteFilter[];
9126
9179
  /** Checks for any expressions in this list. */
9127
- or?: InviteFilter[];
9180
+ or?: AppInviteFilter[];
9128
9181
  /** Negates the expression. */
9129
- not?: InviteFilter;
9182
+ not?: AppInviteFilter;
9130
9183
  /** Filter by the object’s `sender` relation. */
9131
9184
  sender?: UserFilter;
9132
9185
  }
9133
- export interface ClaimedInviteFilter {
9186
+ export interface AppClaimedInviteFilter {
9134
9187
  /** Filter by the object’s `id` field. */
9135
9188
  id?: UUIDFilter;
9136
9189
  /** Filter by the object’s `senderId` field. */
@@ -9142,11 +9195,11 @@ export interface ClaimedInviteFilter {
9142
9195
  /** Filter by the object’s `updatedAt` field. */
9143
9196
  updatedAt?: DatetimeFilter;
9144
9197
  /** Checks for all expressions in this list. */
9145
- and?: ClaimedInviteFilter[];
9198
+ and?: AppClaimedInviteFilter[];
9146
9199
  /** Checks for any expressions in this list. */
9147
- or?: ClaimedInviteFilter[];
9200
+ or?: AppClaimedInviteFilter[];
9148
9201
  /** Negates the expression. */
9149
- not?: ClaimedInviteFilter;
9202
+ not?: AppClaimedInviteFilter;
9150
9203
  /** Filter by the object’s `receiver` relation. */
9151
9204
  receiver?: UserFilter;
9152
9205
  /** A related `receiver` exists. */
@@ -9422,6 +9475,42 @@ export interface CommitFilter {
9422
9475
  /** Negates the expression. */
9423
9476
  not?: CommitFilter;
9424
9477
  }
9478
+ export interface RateLimitsModuleFilter {
9479
+ /** Filter by the object’s `id` field. */
9480
+ id?: UUIDFilter;
9481
+ /** Filter by the object’s `databaseId` field. */
9482
+ databaseId?: UUIDFilter;
9483
+ /** Filter by the object’s `schemaId` field. */
9484
+ schemaId?: UUIDFilter;
9485
+ /** Filter by the object’s `rateLimitSettingsTableId` field. */
9486
+ rateLimitSettingsTableId?: UUIDFilter;
9487
+ /** Filter by the object’s `ipRateLimitsTableId` field. */
9488
+ ipRateLimitsTableId?: UUIDFilter;
9489
+ /** Filter by the object’s `rateLimitsTableId` field. */
9490
+ rateLimitsTableId?: UUIDFilter;
9491
+ /** Filter by the object’s `rateLimitSettingsTable` field. */
9492
+ rateLimitSettingsTable?: StringFilter;
9493
+ /** Filter by the object’s `ipRateLimitsTable` field. */
9494
+ ipRateLimitsTable?: StringFilter;
9495
+ /** Filter by the object’s `rateLimitsTable` field. */
9496
+ rateLimitsTable?: StringFilter;
9497
+ /** Checks for all expressions in this list. */
9498
+ and?: RateLimitsModuleFilter[];
9499
+ /** Checks for any expressions in this list. */
9500
+ or?: RateLimitsModuleFilter[];
9501
+ /** Negates the expression. */
9502
+ not?: RateLimitsModuleFilter;
9503
+ /** Filter by the object’s `database` relation. */
9504
+ database?: DatabaseFilter;
9505
+ /** Filter by the object’s `ipRateLimitsTableByIpRateLimitsTableId` relation. */
9506
+ ipRateLimitsTableByIpRateLimitsTableId?: TableFilter;
9507
+ /** Filter by the object’s `rateLimitSettingsTableByRateLimitSettingsTableId` relation. */
9508
+ rateLimitSettingsTableByRateLimitSettingsTableId?: TableFilter;
9509
+ /** Filter by the object’s `rateLimitsTableByRateLimitsTableId` relation. */
9510
+ rateLimitsTableByRateLimitsTableId?: TableFilter;
9511
+ /** Filter by the object’s `schema` relation. */
9512
+ schema?: SchemaFilter;
9513
+ }
9425
9514
  export interface OrgMembershipDefaultFilter {
9426
9515
  /** Filter by the object’s `id` field. */
9427
9516
  id?: UUIDFilter;
@@ -9709,18 +9798,18 @@ export interface UserFilter {
9709
9798
  ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
9710
9799
  /** `ownedConnectedAccounts` exist. */
9711
9800
  ownedConnectedAccountsExist?: boolean;
9712
- /** Filter by the object’s `invitesBySenderId` relation. */
9713
- invitesBySenderId?: UserToManyInviteFilter;
9714
- /** `invitesBySenderId` exist. */
9715
- invitesBySenderIdExist?: boolean;
9716
- /** Filter by the object’s `claimedInvitesByReceiverId` relation. */
9717
- claimedInvitesByReceiverId?: UserToManyClaimedInviteFilter;
9718
- /** `claimedInvitesByReceiverId` exist. */
9719
- claimedInvitesByReceiverIdExist?: boolean;
9720
- /** Filter by the object’s `claimedInvitesBySenderId` relation. */
9721
- claimedInvitesBySenderId?: UserToManyClaimedInviteFilter;
9722
- /** `claimedInvitesBySenderId` exist. */
9723
- claimedInvitesBySenderIdExist?: boolean;
9801
+ /** Filter by the object’s `appInvitesBySenderId` relation. */
9802
+ appInvitesBySenderId?: UserToManyAppInviteFilter;
9803
+ /** `appInvitesBySenderId` exist. */
9804
+ appInvitesBySenderIdExist?: boolean;
9805
+ /** Filter by the object’s `appClaimedInvitesByReceiverId` relation. */
9806
+ appClaimedInvitesByReceiverId?: UserToManyAppClaimedInviteFilter;
9807
+ /** `appClaimedInvitesByReceiverId` exist. */
9808
+ appClaimedInvitesByReceiverIdExist?: boolean;
9809
+ /** Filter by the object’s `appClaimedInvitesBySenderId` relation. */
9810
+ appClaimedInvitesBySenderId?: UserToManyAppClaimedInviteFilter;
9811
+ /** `appClaimedInvitesBySenderId` exist. */
9812
+ appClaimedInvitesBySenderIdExist?: boolean;
9724
9813
  /** Filter by the object’s `orgInvitesByEntityId` relation. */
9725
9814
  orgInvitesByEntityId?: UserToManyOrgInviteFilter;
9726
9815
  /** `orgInvitesByEntityId` exist. */
@@ -9987,8 +10076,8 @@ export type EmailOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' |
9987
10076
  export type PhoneNumberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CC_ASC' | 'CC_DESC' | 'NUMBER_ASC' | 'NUMBER_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
9988
10077
  export type CryptoAddressOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'ADDRESS_ASC' | 'ADDRESS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_PRIMARY_ASC' | 'IS_PRIMARY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
9989
10078
  export type ConnectedAccountOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SERVICE_ASC' | 'SERVICE_DESC' | 'IDENTIFIER_ASC' | 'IDENTIFIER_DESC' | 'DETAILS_ASC' | 'DETAILS_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
9990
- 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';
9991
- 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';
10079
+ export type AppInviteOrderBy = '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';
10080
+ export type AppClaimedInviteOrderBy = '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';
9992
10081
  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';
9993
10082
  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';
9994
10083
  export type AuditLogOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ORIGIN_ASC' | 'ORIGIN_DESC' | 'USER_AGENT_ASC' | 'USER_AGENT_DESC' | 'IP_ADDRESS_ASC' | 'IP_ADDRESS_DESC' | 'SUCCESS_ASC' | 'SUCCESS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
@@ -10002,6 +10091,7 @@ export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KE
10002
10091
  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';
10003
10092
  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';
10004
10093
  export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC';
10094
+ export type RateLimitsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_DESC' | 'IP_RATE_LIMITS_TABLE_ID_ASC' | 'IP_RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMITS_TABLE_ID_ASC' | 'RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_DESC' | 'IP_RATE_LIMITS_TABLE_ASC' | 'IP_RATE_LIMITS_TABLE_DESC' | 'RATE_LIMITS_TABLE_ASC' | 'RATE_LIMITS_TABLE_DESC';
10005
10095
  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';
10006
10096
  export type RlsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'AUTHENTICATE_ASC' | 'AUTHENTICATE_DESC' | 'AUTHENTICATE_STRICT_ASC' | 'AUTHENTICATE_STRICT_DESC' | 'CURRENT_ROLE_ASC' | 'CURRENT_ROLE_DESC' | 'CURRENT_ROLE_ID_ASC' | 'CURRENT_ROLE_ID_DESC';
10007
10097
  export type SqlActionOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'DEPS_ASC' | 'DEPS_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
@@ -12848,9 +12938,9 @@ export interface DeleteConnectedAccountInput {
12848
12938
  clientMutationId?: string;
12849
12939
  id: string;
12850
12940
  }
12851
- export interface CreateInviteInput {
12941
+ export interface CreateAppInviteInput {
12852
12942
  clientMutationId?: string;
12853
- invite: {
12943
+ appInvite: {
12854
12944
  email?: ConstructiveInternalTypeEmail;
12855
12945
  senderId?: string;
12856
12946
  inviteToken?: string;
@@ -12862,7 +12952,7 @@ export interface CreateInviteInput {
12862
12952
  expiresAt?: string;
12863
12953
  };
12864
12954
  }
12865
- export interface InvitePatch {
12955
+ export interface AppInvitePatch {
12866
12956
  email?: ConstructiveInternalTypeEmail | null;
12867
12957
  senderId?: string | null;
12868
12958
  inviteToken?: string | null;
@@ -12873,34 +12963,34 @@ export interface InvitePatch {
12873
12963
  data?: Record<string, unknown> | null;
12874
12964
  expiresAt?: string | null;
12875
12965
  }
12876
- export interface UpdateInviteInput {
12966
+ export interface UpdateAppInviteInput {
12877
12967
  clientMutationId?: string;
12878
12968
  id: string;
12879
- invitePatch: InvitePatch;
12969
+ appInvitePatch: AppInvitePatch;
12880
12970
  }
12881
- export interface DeleteInviteInput {
12971
+ export interface DeleteAppInviteInput {
12882
12972
  clientMutationId?: string;
12883
12973
  id: string;
12884
12974
  }
12885
- export interface CreateClaimedInviteInput {
12975
+ export interface CreateAppClaimedInviteInput {
12886
12976
  clientMutationId?: string;
12887
- claimedInvite: {
12977
+ appClaimedInvite: {
12888
12978
  data?: Record<string, unknown>;
12889
12979
  senderId?: string;
12890
12980
  receiverId?: string;
12891
12981
  };
12892
12982
  }
12893
- export interface ClaimedInvitePatch {
12983
+ export interface AppClaimedInvitePatch {
12894
12984
  data?: Record<string, unknown> | null;
12895
12985
  senderId?: string | null;
12896
12986
  receiverId?: string | null;
12897
12987
  }
12898
- export interface UpdateClaimedInviteInput {
12988
+ export interface UpdateAppClaimedInviteInput {
12899
12989
  clientMutationId?: string;
12900
12990
  id: string;
12901
- claimedInvitePatch: ClaimedInvitePatch;
12991
+ appClaimedInvitePatch: AppClaimedInvitePatch;
12902
12992
  }
12903
- export interface DeleteClaimedInviteInput {
12993
+ export interface DeleteAppClaimedInviteInput {
12904
12994
  clientMutationId?: string;
12905
12995
  id: string;
12906
12996
  }
@@ -13214,6 +13304,38 @@ export interface DeleteCommitInput {
13214
13304
  clientMutationId?: string;
13215
13305
  id: string;
13216
13306
  }
13307
+ export interface CreateRateLimitsModuleInput {
13308
+ clientMutationId?: string;
13309
+ rateLimitsModule: {
13310
+ databaseId: string;
13311
+ schemaId?: string;
13312
+ rateLimitSettingsTableId?: string;
13313
+ ipRateLimitsTableId?: string;
13314
+ rateLimitsTableId?: string;
13315
+ rateLimitSettingsTable?: string;
13316
+ ipRateLimitsTable?: string;
13317
+ rateLimitsTable?: string;
13318
+ };
13319
+ }
13320
+ export interface RateLimitsModulePatch {
13321
+ databaseId?: string | null;
13322
+ schemaId?: string | null;
13323
+ rateLimitSettingsTableId?: string | null;
13324
+ ipRateLimitsTableId?: string | null;
13325
+ rateLimitsTableId?: string | null;
13326
+ rateLimitSettingsTable?: string | null;
13327
+ ipRateLimitsTable?: string | null;
13328
+ rateLimitsTable?: string | null;
13329
+ }
13330
+ export interface UpdateRateLimitsModuleInput {
13331
+ clientMutationId?: string;
13332
+ id: string;
13333
+ rateLimitsModulePatch: RateLimitsModulePatch;
13334
+ }
13335
+ export interface DeleteRateLimitsModuleInput {
13336
+ clientMutationId?: string;
13337
+ id: string;
13338
+ }
13217
13339
  export interface CreateOrgMembershipDefaultInput {
13218
13340
  clientMutationId?: string;
13219
13341
  orgMembershipDefault: {
@@ -13492,7 +13614,15 @@ export interface RejectDatabaseTransferInput {
13492
13614
  clientMutationId?: string;
13493
13615
  transferId?: string;
13494
13616
  }
13495
- export interface SubmitInviteCodeInput {
13617
+ export interface VerifyPasswordInput {
13618
+ clientMutationId?: string;
13619
+ password: string;
13620
+ }
13621
+ export interface VerifyTotpInput {
13622
+ clientMutationId?: string;
13623
+ totpValue: string;
13624
+ }
13625
+ export interface SubmitAppInviteCodeInput {
13496
13626
  clientMutationId?: string;
13497
13627
  token?: string;
13498
13628
  }
@@ -13736,14 +13866,6 @@ export interface ForgotPasswordInput {
13736
13866
  clientMutationId?: string;
13737
13867
  email?: ConstructiveInternalTypeEmail;
13738
13868
  }
13739
- export interface VerifyPasswordInput {
13740
- clientMutationId?: string;
13741
- password: string;
13742
- }
13743
- export interface VerifyTotpInput {
13744
- clientMutationId?: string;
13745
- totpValue: string;
13746
- }
13747
13869
  export interface RequestUploadUrlInput {
13748
13870
  /** Bucket key (e.g., "public", "private") */
13749
13871
  bucketKey: string;
@@ -15406,23 +15528,23 @@ export interface UserToManyConnectedAccountFilter {
15406
15528
  /** Filters to entities where no related entity matches. */
15407
15529
  none?: ConnectedAccountFilter;
15408
15530
  }
15409
- /** A filter to be used against many `Invite` object types. All fields are combined with a logical ‘and.’ */
15410
- export interface UserToManyInviteFilter {
15531
+ /** A filter to be used against many `AppInvite` object types. All fields are combined with a logical ‘and.’ */
15532
+ export interface UserToManyAppInviteFilter {
15411
15533
  /** Filters to entities where at least one related entity matches. */
15412
- some?: InviteFilter;
15534
+ some?: AppInviteFilter;
15413
15535
  /** Filters to entities where every related entity matches. */
15414
- every?: InviteFilter;
15536
+ every?: AppInviteFilter;
15415
15537
  /** Filters to entities where no related entity matches. */
15416
- none?: InviteFilter;
15538
+ none?: AppInviteFilter;
15417
15539
  }
15418
- /** A filter to be used against many `ClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
15419
- export interface UserToManyClaimedInviteFilter {
15540
+ /** A filter to be used against many `AppClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
15541
+ export interface UserToManyAppClaimedInviteFilter {
15420
15542
  /** Filters to entities where at least one related entity matches. */
15421
- some?: ClaimedInviteFilter;
15543
+ some?: AppClaimedInviteFilter;
15422
15544
  /** Filters to entities where every related entity matches. */
15423
- every?: ClaimedInviteFilter;
15545
+ every?: AppClaimedInviteFilter;
15424
15546
  /** Filters to entities where no related entity matches. */
15425
- none?: ClaimedInviteFilter;
15547
+ none?: AppClaimedInviteFilter;
15426
15548
  }
15427
15549
  /** A filter to be used against many `OrgInvite` object types. All fields are combined with a logical ‘and.’ */
15428
15550
  export interface UserToManyOrgInviteFilter {
@@ -18275,6 +18397,10 @@ export interface DatabaseFilter {
18275
18397
  storageModules?: DatabaseToManyStorageModuleFilter;
18276
18398
  /** `storageModules` exist. */
18277
18399
  storageModulesExist?: boolean;
18400
+ /** Filter by the object’s `rateLimitsModule` relation. */
18401
+ rateLimitsModule?: RateLimitsModuleFilter;
18402
+ /** A related `rateLimitsModule` exists. */
18403
+ rateLimitsModuleExists?: boolean;
18278
18404
  /** Filter by the object’s `databaseProvisionModules` relation. */
18279
18405
  databaseProvisionModules?: DatabaseToManyDatabaseProvisionModuleFilter;
18280
18406
  /** `databaseProvisionModules` exist. */
@@ -18836,8 +18962,8 @@ export interface ConnectedAccountFilter {
18836
18962
  /** Filter by the object’s `owner` relation. */
18837
18963
  owner?: UserFilter;
18838
18964
  }
18839
- /** A filter to be used against `Invite` object types. All fields are combined with a logical ‘and.’ */
18840
- export interface InviteFilter {
18965
+ /** A filter to be used against `AppInvite` object types. All fields are combined with a logical ‘and.’ */
18966
+ export interface AppInviteFilter {
18841
18967
  /** Filter by the object’s `id` field. */
18842
18968
  id?: UUIDFilter;
18843
18969
  /** Filter by the object’s `email` field. */
@@ -18861,16 +18987,16 @@ export interface InviteFilter {
18861
18987
  /** Filter by the object’s `updatedAt` field. */
18862
18988
  updatedAt?: DatetimeFilter;
18863
18989
  /** Checks for all expressions in this list. */
18864
- and?: InviteFilter[];
18990
+ and?: AppInviteFilter[];
18865
18991
  /** Checks for any expressions in this list. */
18866
- or?: InviteFilter[];
18992
+ or?: AppInviteFilter[];
18867
18993
  /** Negates the expression. */
18868
- not?: InviteFilter;
18994
+ not?: AppInviteFilter;
18869
18995
  /** Filter by the object’s `sender` relation. */
18870
18996
  sender?: UserFilter;
18871
18997
  }
18872
- /** A filter to be used against `ClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
18873
- export interface ClaimedInviteFilter {
18998
+ /** A filter to be used against `AppClaimedInvite` object types. All fields are combined with a logical ‘and.’ */
18999
+ export interface AppClaimedInviteFilter {
18874
19000
  /** Filter by the object’s `id` field. */
18875
19001
  id?: UUIDFilter;
18876
19002
  /** Filter by the object’s `senderId` field. */
@@ -18882,11 +19008,11 @@ export interface ClaimedInviteFilter {
18882
19008
  /** Filter by the object’s `updatedAt` field. */
18883
19009
  updatedAt?: DatetimeFilter;
18884
19010
  /** Checks for all expressions in this list. */
18885
- and?: ClaimedInviteFilter[];
19011
+ and?: AppClaimedInviteFilter[];
18886
19012
  /** Checks for any expressions in this list. */
18887
- or?: ClaimedInviteFilter[];
19013
+ or?: AppClaimedInviteFilter[];
18888
19014
  /** Negates the expression. */
18889
- not?: ClaimedInviteFilter;
19015
+ not?: AppClaimedInviteFilter;
18890
19016
  /** Filter by the object’s `receiver` relation. */
18891
19017
  receiver?: UserFilter;
18892
19018
  /** A related `receiver` exists. */
@@ -19525,18 +19651,18 @@ export interface UserFilter {
19525
19651
  ownedConnectedAccounts?: UserToManyConnectedAccountFilter;
19526
19652
  /** `ownedConnectedAccounts` exist. */
19527
19653
  ownedConnectedAccountsExist?: boolean;
19528
- /** Filter by the object’s `invitesBySenderId` relation. */
19529
- invitesBySenderId?: UserToManyInviteFilter;
19530
- /** `invitesBySenderId` exist. */
19531
- invitesBySenderIdExist?: boolean;
19532
- /** Filter by the object’s `claimedInvitesByReceiverId` relation. */
19533
- claimedInvitesByReceiverId?: UserToManyClaimedInviteFilter;
19534
- /** `claimedInvitesByReceiverId` exist. */
19535
- claimedInvitesByReceiverIdExist?: boolean;
19536
- /** Filter by the object’s `claimedInvitesBySenderId` relation. */
19537
- claimedInvitesBySenderId?: UserToManyClaimedInviteFilter;
19538
- /** `claimedInvitesBySenderId` exist. */
19539
- claimedInvitesBySenderIdExist?: boolean;
19654
+ /** Filter by the object’s `appInvitesBySenderId` relation. */
19655
+ appInvitesBySenderId?: UserToManyAppInviteFilter;
19656
+ /** `appInvitesBySenderId` exist. */
19657
+ appInvitesBySenderIdExist?: boolean;
19658
+ /** Filter by the object’s `appClaimedInvitesByReceiverId` relation. */
19659
+ appClaimedInvitesByReceiverId?: UserToManyAppClaimedInviteFilter;
19660
+ /** `appClaimedInvitesByReceiverId` exist. */
19661
+ appClaimedInvitesByReceiverIdExist?: boolean;
19662
+ /** Filter by the object’s `appClaimedInvitesBySenderId` relation. */
19663
+ appClaimedInvitesBySenderId?: UserToManyAppClaimedInviteFilter;
19664
+ /** `appClaimedInvitesBySenderId` exist. */
19665
+ appClaimedInvitesBySenderIdExist?: boolean;
19540
19666
  /** Filter by the object’s `orgInvitesByEntityId` relation. */
19541
19667
  orgInvitesByEntityId?: UserToManyOrgInviteFilter;
19542
19668
  /** `orgInvitesByEntityId` exist. */
@@ -19685,6 +19811,43 @@ export interface HierarchyModuleFilter {
19685
19811
  /** Filter by the object’s `usersTable` relation. */
19686
19812
  usersTable?: TableFilter;
19687
19813
  }
19814
+ /** A filter to be used against `RateLimitsModule` object types. All fields are combined with a logical ‘and.’ */
19815
+ export interface RateLimitsModuleFilter {
19816
+ /** Filter by the object’s `id` field. */
19817
+ id?: UUIDFilter;
19818
+ /** Filter by the object’s `databaseId` field. */
19819
+ databaseId?: UUIDFilter;
19820
+ /** Filter by the object’s `schemaId` field. */
19821
+ schemaId?: UUIDFilter;
19822
+ /** Filter by the object’s `rateLimitSettingsTableId` field. */
19823
+ rateLimitSettingsTableId?: UUIDFilter;
19824
+ /** Filter by the object’s `ipRateLimitsTableId` field. */
19825
+ ipRateLimitsTableId?: UUIDFilter;
19826
+ /** Filter by the object’s `rateLimitsTableId` field. */
19827
+ rateLimitsTableId?: UUIDFilter;
19828
+ /** Filter by the object’s `rateLimitSettingsTable` field. */
19829
+ rateLimitSettingsTable?: StringFilter;
19830
+ /** Filter by the object’s `ipRateLimitsTable` field. */
19831
+ ipRateLimitsTable?: StringFilter;
19832
+ /** Filter by the object’s `rateLimitsTable` field. */
19833
+ rateLimitsTable?: StringFilter;
19834
+ /** Checks for all expressions in this list. */
19835
+ and?: RateLimitsModuleFilter[];
19836
+ /** Checks for any expressions in this list. */
19837
+ or?: RateLimitsModuleFilter[];
19838
+ /** Negates the expression. */
19839
+ not?: RateLimitsModuleFilter;
19840
+ /** Filter by the object’s `database` relation. */
19841
+ database?: DatabaseFilter;
19842
+ /** Filter by the object’s `ipRateLimitsTableByIpRateLimitsTableId` relation. */
19843
+ ipRateLimitsTableByIpRateLimitsTableId?: TableFilter;
19844
+ /** Filter by the object’s `rateLimitSettingsTableByRateLimitSettingsTableId` relation. */
19845
+ rateLimitSettingsTableByRateLimitSettingsTableId?: TableFilter;
19846
+ /** Filter by the object’s `rateLimitsTableByRateLimitsTableId` relation. */
19847
+ rateLimitsTableByRateLimitsTableId?: TableFilter;
19848
+ /** Filter by the object’s `schema` relation. */
19849
+ schema?: SchemaFilter;
19850
+ }
19688
19851
  /** A filter to be used against BitString fields. All fields are combined with a logical ‘and.’ */
19689
19852
  export interface BitStringFilter {
19690
19853
  /** Is null (if `true` is specified) or is not null (if `false` is specified). */
@@ -19963,11 +20126,27 @@ export type RejectDatabaseTransferPayloadSelect = {
19963
20126
  clientMutationId?: boolean;
19964
20127
  result?: boolean;
19965
20128
  };
19966
- export interface SubmitInviteCodePayload {
20129
+ export interface VerifyPasswordPayload {
20130
+ clientMutationId?: string | null;
20131
+ result?: boolean | null;
20132
+ }
20133
+ export type VerifyPasswordPayloadSelect = {
20134
+ clientMutationId?: boolean;
20135
+ result?: boolean;
20136
+ };
20137
+ export interface VerifyTotpPayload {
20138
+ clientMutationId?: string | null;
20139
+ result?: boolean | null;
20140
+ }
20141
+ export type VerifyTotpPayloadSelect = {
20142
+ clientMutationId?: boolean;
20143
+ result?: boolean;
20144
+ };
20145
+ export interface SubmitAppInviteCodePayload {
19967
20146
  clientMutationId?: string | null;
19968
20147
  result?: boolean | null;
19969
20148
  }
19970
- export type SubmitInviteCodePayloadSelect = {
20149
+ export type SubmitAppInviteCodePayloadSelect = {
19971
20150
  clientMutationId?: boolean;
19972
20151
  result?: boolean;
19973
20152
  };
@@ -20237,26 +20416,6 @@ export interface ForgotPasswordPayload {
20237
20416
  export type ForgotPasswordPayloadSelect = {
20238
20417
  clientMutationId?: boolean;
20239
20418
  };
20240
- export interface VerifyPasswordPayload {
20241
- clientMutationId?: string | null;
20242
- result?: Session | null;
20243
- }
20244
- export type VerifyPasswordPayloadSelect = {
20245
- clientMutationId?: boolean;
20246
- result?: {
20247
- select: SessionSelect;
20248
- };
20249
- };
20250
- export interface VerifyTotpPayload {
20251
- clientMutationId?: string | null;
20252
- result?: Session | null;
20253
- }
20254
- export type VerifyTotpPayloadSelect = {
20255
- clientMutationId?: boolean;
20256
- result?: {
20257
- select: SessionSelect;
20258
- };
20259
- };
20260
20419
  export interface RequestUploadUrlPayload {
20261
20420
  /** Presigned PUT URL (null if file was deduplicated) */
20262
20421
  uploadUrl?: string | null;
@@ -24046,94 +24205,94 @@ export type DeleteConnectedAccountPayloadSelect = {
24046
24205
  select: ConnectedAccountEdgeSelect;
24047
24206
  };
24048
24207
  };
24049
- export interface CreateInvitePayload {
24208
+ export interface CreateAppInvitePayload {
24050
24209
  clientMutationId?: string | null;
24051
- /** The `Invite` that was created by this mutation. */
24052
- invite?: Invite | null;
24053
- inviteEdge?: InviteEdge | null;
24210
+ /** The `AppInvite` that was created by this mutation. */
24211
+ appInvite?: AppInvite | null;
24212
+ appInviteEdge?: AppInviteEdge | null;
24054
24213
  }
24055
- export type CreateInvitePayloadSelect = {
24214
+ export type CreateAppInvitePayloadSelect = {
24056
24215
  clientMutationId?: boolean;
24057
- invite?: {
24058
- select: InviteSelect;
24216
+ appInvite?: {
24217
+ select: AppInviteSelect;
24059
24218
  };
24060
- inviteEdge?: {
24061
- select: InviteEdgeSelect;
24219
+ appInviteEdge?: {
24220
+ select: AppInviteEdgeSelect;
24062
24221
  };
24063
24222
  };
24064
- export interface UpdateInvitePayload {
24223
+ export interface UpdateAppInvitePayload {
24065
24224
  clientMutationId?: string | null;
24066
- /** The `Invite` that was updated by this mutation. */
24067
- invite?: Invite | null;
24068
- inviteEdge?: InviteEdge | null;
24225
+ /** The `AppInvite` that was updated by this mutation. */
24226
+ appInvite?: AppInvite | null;
24227
+ appInviteEdge?: AppInviteEdge | null;
24069
24228
  }
24070
- export type UpdateInvitePayloadSelect = {
24229
+ export type UpdateAppInvitePayloadSelect = {
24071
24230
  clientMutationId?: boolean;
24072
- invite?: {
24073
- select: InviteSelect;
24231
+ appInvite?: {
24232
+ select: AppInviteSelect;
24074
24233
  };
24075
- inviteEdge?: {
24076
- select: InviteEdgeSelect;
24234
+ appInviteEdge?: {
24235
+ select: AppInviteEdgeSelect;
24077
24236
  };
24078
24237
  };
24079
- export interface DeleteInvitePayload {
24238
+ export interface DeleteAppInvitePayload {
24080
24239
  clientMutationId?: string | null;
24081
- /** The `Invite` that was deleted by this mutation. */
24082
- invite?: Invite | null;
24083
- inviteEdge?: InviteEdge | null;
24240
+ /** The `AppInvite` that was deleted by this mutation. */
24241
+ appInvite?: AppInvite | null;
24242
+ appInviteEdge?: AppInviteEdge | null;
24084
24243
  }
24085
- export type DeleteInvitePayloadSelect = {
24244
+ export type DeleteAppInvitePayloadSelect = {
24086
24245
  clientMutationId?: boolean;
24087
- invite?: {
24088
- select: InviteSelect;
24246
+ appInvite?: {
24247
+ select: AppInviteSelect;
24089
24248
  };
24090
- inviteEdge?: {
24091
- select: InviteEdgeSelect;
24249
+ appInviteEdge?: {
24250
+ select: AppInviteEdgeSelect;
24092
24251
  };
24093
24252
  };
24094
- export interface CreateClaimedInvitePayload {
24253
+ export interface CreateAppClaimedInvitePayload {
24095
24254
  clientMutationId?: string | null;
24096
- /** The `ClaimedInvite` that was created by this mutation. */
24097
- claimedInvite?: ClaimedInvite | null;
24098
- claimedInviteEdge?: ClaimedInviteEdge | null;
24255
+ /** The `AppClaimedInvite` that was created by this mutation. */
24256
+ appClaimedInvite?: AppClaimedInvite | null;
24257
+ appClaimedInviteEdge?: AppClaimedInviteEdge | null;
24099
24258
  }
24100
- export type CreateClaimedInvitePayloadSelect = {
24259
+ export type CreateAppClaimedInvitePayloadSelect = {
24101
24260
  clientMutationId?: boolean;
24102
- claimedInvite?: {
24103
- select: ClaimedInviteSelect;
24261
+ appClaimedInvite?: {
24262
+ select: AppClaimedInviteSelect;
24104
24263
  };
24105
- claimedInviteEdge?: {
24106
- select: ClaimedInviteEdgeSelect;
24264
+ appClaimedInviteEdge?: {
24265
+ select: AppClaimedInviteEdgeSelect;
24107
24266
  };
24108
24267
  };
24109
- export interface UpdateClaimedInvitePayload {
24268
+ export interface UpdateAppClaimedInvitePayload {
24110
24269
  clientMutationId?: string | null;
24111
- /** The `ClaimedInvite` that was updated by this mutation. */
24112
- claimedInvite?: ClaimedInvite | null;
24113
- claimedInviteEdge?: ClaimedInviteEdge | null;
24270
+ /** The `AppClaimedInvite` that was updated by this mutation. */
24271
+ appClaimedInvite?: AppClaimedInvite | null;
24272
+ appClaimedInviteEdge?: AppClaimedInviteEdge | null;
24114
24273
  }
24115
- export type UpdateClaimedInvitePayloadSelect = {
24274
+ export type UpdateAppClaimedInvitePayloadSelect = {
24116
24275
  clientMutationId?: boolean;
24117
- claimedInvite?: {
24118
- select: ClaimedInviteSelect;
24276
+ appClaimedInvite?: {
24277
+ select: AppClaimedInviteSelect;
24119
24278
  };
24120
- claimedInviteEdge?: {
24121
- select: ClaimedInviteEdgeSelect;
24279
+ appClaimedInviteEdge?: {
24280
+ select: AppClaimedInviteEdgeSelect;
24122
24281
  };
24123
24282
  };
24124
- export interface DeleteClaimedInvitePayload {
24283
+ export interface DeleteAppClaimedInvitePayload {
24125
24284
  clientMutationId?: string | null;
24126
- /** The `ClaimedInvite` that was deleted by this mutation. */
24127
- claimedInvite?: ClaimedInvite | null;
24128
- claimedInviteEdge?: ClaimedInviteEdge | null;
24285
+ /** The `AppClaimedInvite` that was deleted by this mutation. */
24286
+ appClaimedInvite?: AppClaimedInvite | null;
24287
+ appClaimedInviteEdge?: AppClaimedInviteEdge | null;
24129
24288
  }
24130
- export type DeleteClaimedInvitePayloadSelect = {
24289
+ export type DeleteAppClaimedInvitePayloadSelect = {
24131
24290
  clientMutationId?: boolean;
24132
- claimedInvite?: {
24133
- select: ClaimedInviteSelect;
24291
+ appClaimedInvite?: {
24292
+ select: AppClaimedInviteSelect;
24134
24293
  };
24135
- claimedInviteEdge?: {
24136
- select: ClaimedInviteEdgeSelect;
24294
+ appClaimedInviteEdge?: {
24295
+ select: AppClaimedInviteEdgeSelect;
24137
24296
  };
24138
24297
  };
24139
24298
  export interface CreateOrgInvitePayload {
@@ -24687,6 +24846,51 @@ export type DeleteCommitPayloadSelect = {
24687
24846
  select: CommitEdgeSelect;
24688
24847
  };
24689
24848
  };
24849
+ export interface CreateRateLimitsModulePayload {
24850
+ clientMutationId?: string | null;
24851
+ /** The `RateLimitsModule` that was created by this mutation. */
24852
+ rateLimitsModule?: RateLimitsModule | null;
24853
+ rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
24854
+ }
24855
+ export type CreateRateLimitsModulePayloadSelect = {
24856
+ clientMutationId?: boolean;
24857
+ rateLimitsModule?: {
24858
+ select: RateLimitsModuleSelect;
24859
+ };
24860
+ rateLimitsModuleEdge?: {
24861
+ select: RateLimitsModuleEdgeSelect;
24862
+ };
24863
+ };
24864
+ export interface UpdateRateLimitsModulePayload {
24865
+ clientMutationId?: string | null;
24866
+ /** The `RateLimitsModule` that was updated by this mutation. */
24867
+ rateLimitsModule?: RateLimitsModule | null;
24868
+ rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
24869
+ }
24870
+ export type UpdateRateLimitsModulePayloadSelect = {
24871
+ clientMutationId?: boolean;
24872
+ rateLimitsModule?: {
24873
+ select: RateLimitsModuleSelect;
24874
+ };
24875
+ rateLimitsModuleEdge?: {
24876
+ select: RateLimitsModuleEdgeSelect;
24877
+ };
24878
+ };
24879
+ export interface DeleteRateLimitsModulePayload {
24880
+ clientMutationId?: string | null;
24881
+ /** The `RateLimitsModule` that was deleted by this mutation. */
24882
+ rateLimitsModule?: RateLimitsModule | null;
24883
+ rateLimitsModuleEdge?: RateLimitsModuleEdge | null;
24884
+ }
24885
+ export type DeleteRateLimitsModulePayloadSelect = {
24886
+ clientMutationId?: boolean;
24887
+ rateLimitsModule?: {
24888
+ select: RateLimitsModuleSelect;
24889
+ };
24890
+ rateLimitsModuleEdge?: {
24891
+ select: RateLimitsModuleEdgeSelect;
24892
+ };
24893
+ };
24690
24894
  export interface CreateOrgMembershipDefaultPayload {
24691
24895
  clientMutationId?: string | null;
24692
24896
  /** The `OrgMembershipDefault` that was created by this mutation. */
@@ -25105,50 +25309,6 @@ export type ProvisionTableRecordSelect = {
25105
25309
  outTableId?: boolean;
25106
25310
  outFields?: boolean;
25107
25311
  };
25108
- /** Tracks user authentication sessions with expiration, fingerprinting, and step-up verification state */
25109
- export interface Session {
25110
- id: string;
25111
- /** References the authenticated user; NULL for anonymous sessions */
25112
- userId?: string | null;
25113
- /** Whether this is an anonymous session (no authenticated user) */
25114
- isAnonymous: boolean;
25115
- /** When this session expires and can no longer be used for authentication */
25116
- expiresAt: string;
25117
- /** When this session was explicitly revoked (soft delete); NULL means active */
25118
- revokedAt?: string | null;
25119
- /** The origin (protocol + host) from which the session was created, used for fingerprint validation */
25120
- origin?: ConstructiveInternalTypeOrigin | null;
25121
- /** IP address from which the session was created, used for strict fingerprint validation */
25122
- ip?: string | null;
25123
- /** User-Agent string from the client, used for strict fingerprint validation */
25124
- uagent?: string | null;
25125
- /** Session validation mode: strict (origin+ip+uagent), lax (origin only), or none (no validation) */
25126
- fingerprintMode: string;
25127
- /** Timestamp of last password re-verification for step-up authentication */
25128
- lastPasswordVerified?: string | null;
25129
- /** Timestamp of last MFA verification for step-up authentication */
25130
- lastMfaVerified?: string | null;
25131
- /** Secret used to generate and validate CSRF tokens for cookie-based sessions */
25132
- csrfSecret?: string | null;
25133
- createdAt?: string | null;
25134
- updatedAt?: string | null;
25135
- }
25136
- export type SessionSelect = {
25137
- id?: boolean;
25138
- userId?: boolean;
25139
- isAnonymous?: boolean;
25140
- expiresAt?: boolean;
25141
- revokedAt?: boolean;
25142
- origin?: boolean;
25143
- ip?: boolean;
25144
- uagent?: boolean;
25145
- fingerprintMode?: boolean;
25146
- lastPasswordVerified?: boolean;
25147
- lastMfaVerified?: boolean;
25148
- csrfSecret?: boolean;
25149
- createdAt?: boolean;
25150
- updatedAt?: boolean;
25151
- };
25152
25312
  /** A `Database` edge in the connection. */
25153
25313
  export interface DatabaseEdge {
25154
25314
  cursor?: string | null;
@@ -26097,28 +26257,28 @@ export type ConnectedAccountEdgeSelect = {
26097
26257
  select: ConnectedAccountSelect;
26098
26258
  };
26099
26259
  };
26100
- /** A `Invite` edge in the connection. */
26101
- export interface InviteEdge {
26260
+ /** A `AppInvite` edge in the connection. */
26261
+ export interface AppInviteEdge {
26102
26262
  cursor?: string | null;
26103
- /** The `Invite` at the end of the edge. */
26104
- node?: Invite | null;
26263
+ /** The `AppInvite` at the end of the edge. */
26264
+ node?: AppInvite | null;
26105
26265
  }
26106
- export type InviteEdgeSelect = {
26266
+ export type AppInviteEdgeSelect = {
26107
26267
  cursor?: boolean;
26108
26268
  node?: {
26109
- select: InviteSelect;
26269
+ select: AppInviteSelect;
26110
26270
  };
26111
26271
  };
26112
- /** A `ClaimedInvite` edge in the connection. */
26113
- export interface ClaimedInviteEdge {
26272
+ /** A `AppClaimedInvite` edge in the connection. */
26273
+ export interface AppClaimedInviteEdge {
26114
26274
  cursor?: string | null;
26115
- /** The `ClaimedInvite` at the end of the edge. */
26116
- node?: ClaimedInvite | null;
26275
+ /** The `AppClaimedInvite` at the end of the edge. */
26276
+ node?: AppClaimedInvite | null;
26117
26277
  }
26118
- export type ClaimedInviteEdgeSelect = {
26278
+ export type AppClaimedInviteEdgeSelect = {
26119
26279
  cursor?: boolean;
26120
26280
  node?: {
26121
- select: ClaimedInviteSelect;
26281
+ select: AppClaimedInviteSelect;
26122
26282
  };
26123
26283
  };
26124
26284
  /** A `OrgInvite` edge in the connection. */
@@ -26265,6 +26425,18 @@ export type CommitEdgeSelect = {
26265
26425
  select: CommitSelect;
26266
26426
  };
26267
26427
  };
26428
+ /** A `RateLimitsModule` edge in the connection. */
26429
+ export interface RateLimitsModuleEdge {
26430
+ cursor?: string | null;
26431
+ /** The `RateLimitsModule` at the end of the edge. */
26432
+ node?: RateLimitsModule | null;
26433
+ }
26434
+ export type RateLimitsModuleEdgeSelect = {
26435
+ cursor?: boolean;
26436
+ node?: {
26437
+ select: RateLimitsModuleSelect;
26438
+ };
26439
+ };
26268
26440
  /** A `OrgMembershipDefault` edge in the connection. */
26269
26441
  export interface OrgMembershipDefaultEdge {
26270
26442
  cursor?: string | null;