@constructive-sdk/cli 0.12.18 → 0.12.19

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
@@ -645,7 +645,7 @@ export interface RelationProvision {
645
645
  /** The database this relation belongs to. Required. Must match the database of both source_table_id and target_table_id. */
646
646
  databaseId?: string | null;
647
647
  /**
648
- * The type of relation to create. Uses SuperCase naming matching the node_type_registry:
648
+ * The type of relation to create. Uses SuperCase naming:
649
649
  * - RelationBelongsTo: creates a FK field on source_table referencing target_table (e.g., tasks belongs to projects -> tasks.project_id). Field name auto-derived from target table.
650
650
  * - RelationHasMany: creates a FK field on target_table referencing source_table (e.g., projects has many tasks -> tasks.project_id). Field name auto-derived from source table. Inverse of BelongsTo — same FK, different perspective.
651
651
  * - RelationHasOne: creates a FK field + unique constraint on source_table referencing target_table (e.g., user_settings has one user -> user_settings.user_id with UNIQUE). Also supports shared-primary-key patterns (e.g., user_profiles.id = users.id) by setting field_name to the existing PK field.
@@ -1760,6 +1760,12 @@ export interface AuditLog {
1760
1760
  /** Timestamp when the audit event was recorded */
1761
1761
  createdAt?: string | null;
1762
1762
  }
1763
+ /** Stores the default permission bitmask assigned to new members upon joining */
1764
+ export interface AppPermissionDefault {
1765
+ id: string;
1766
+ /** Default permission bitmask applied to new members */
1767
+ permissions?: string | null;
1768
+ }
1763
1769
  /** A ref is a data structure for pointing to a commit. */
1764
1770
  export interface Ref {
1765
1771
  /** The primary unique identifier for the ref. */
@@ -1782,16 +1788,15 @@ export interface Store {
1782
1788
  hash?: string | null;
1783
1789
  createdAt?: string | null;
1784
1790
  }
1785
- /** Stores the default permission bitmask assigned to new members upon joining */
1786
- export interface AppPermissionDefault {
1787
- id: string;
1788
- /** Default permission bitmask applied to new members */
1789
- permissions?: string | null;
1790
- }
1791
1791
  export interface RoleType {
1792
1792
  id: number;
1793
1793
  name?: string | null;
1794
1794
  }
1795
+ export interface MigrateFile {
1796
+ id: string;
1797
+ databaseId?: string | null;
1798
+ upload?: ConstructiveInternalTypeUpload | null;
1799
+ }
1795
1800
  /** Default maximum values for each named limit, applied when no per-actor override exists */
1796
1801
  export interface AppLimitDefault {
1797
1802
  id: string;
@@ -1808,11 +1813,6 @@ export interface OrgLimitDefault {
1808
1813
  /** Default maximum usage allowed for this limit */
1809
1814
  max?: number | null;
1810
1815
  }
1811
- export interface MigrateFile {
1812
- id: string;
1813
- databaseId?: string | null;
1814
- upload?: ConstructiveInternalTypeUpload | null;
1815
- }
1816
1816
  /** Defines the different scopes of membership (e.g. App Member, Organization Member, Group Member) */
1817
1817
  export interface MembershipType {
1818
1818
  /** Integer identifier for the membership type (1=App, 2=Organization, 3=Group) */
@@ -1824,6 +1824,18 @@ export interface MembershipType {
1824
1824
  /** Short prefix used to namespace tables and functions for this membership scope */
1825
1825
  prefix?: string | null;
1826
1826
  }
1827
+ /** Default membership settings per entity, controlling initial approval and verification state for new members */
1828
+ export interface AppMembershipDefault {
1829
+ id: string;
1830
+ createdAt?: string | null;
1831
+ updatedAt?: string | null;
1832
+ createdBy?: string | null;
1833
+ updatedBy?: string | null;
1834
+ /** Whether new members are automatically approved upon joining */
1835
+ isApproved?: boolean | null;
1836
+ /** Whether new members are automatically verified upon joining */
1837
+ isVerified?: boolean | null;
1838
+ }
1827
1839
  /** A commit records changes to the repository. */
1828
1840
  export interface Commit {
1829
1841
  /** The primary unique identifier for the commit. */
@@ -1844,7 +1856,7 @@ export interface Commit {
1844
1856
  date?: string | null;
1845
1857
  }
1846
1858
  /** Default membership settings per entity, controlling initial approval and verification state for new members */
1847
- export interface AppMembershipDefault {
1859
+ export interface OrgMembershipDefault {
1848
1860
  id: string;
1849
1861
  createdAt?: string | null;
1850
1862
  updatedAt?: string | null;
@@ -1852,8 +1864,12 @@ export interface AppMembershipDefault {
1852
1864
  updatedBy?: string | null;
1853
1865
  /** Whether new members are automatically approved upon joining */
1854
1866
  isApproved?: boolean | null;
1855
- /** Whether new members are automatically verified upon joining */
1856
- isVerified?: boolean | null;
1867
+ /** References the entity these membership defaults apply to */
1868
+ entityId?: string | null;
1869
+ /** When an org member is deleted, whether to cascade-remove their group memberships */
1870
+ deleteMemberCascadeGroups?: boolean | null;
1871
+ /** When a group is created, whether to auto-add existing org members as group members */
1872
+ createGroupsCascadeMembers?: boolean | null;
1857
1873
  }
1858
1874
  export interface RlsModule {
1859
1875
  id: string;
@@ -1868,45 +1884,6 @@ export interface RlsModule {
1868
1884
  currentRole?: string | null;
1869
1885
  currentRoleId?: string | null;
1870
1886
  }
1871
- /** Registry of high-level semantic AST node types using domain-prefixed naming. These IR nodes compile to multiple targets (Postgres RLS, egress, ingress, etc.). */
1872
- export interface NodeTypeRegistry {
1873
- /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
1874
- name?: string | null;
1875
- /** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
1876
- slug?: string | null;
1877
- /** Node type category: authz (authorization semantics), data (table-level behaviors), view (view query types), relation (relational structure between tables) */
1878
- category?: string | null;
1879
- /** Human-readable display name for UI */
1880
- displayName?: string | null;
1881
- /** Description of what this node type does */
1882
- description?: string | null;
1883
- /** Casual, approachable marketing description for onboarding UIs. Explains what the node type does and when you would use it in plain language. */
1884
- summary?: string | null;
1885
- /** JSON Schema defining valid parameters for this node type */
1886
- parameterSchema?: Record<string, unknown> | null;
1887
- /** Machine-readable usage guidance: privilege recommendations, combination patterns, warnings, anti-patterns. All fields optional. Keys: recommended_privileges, privilege_note, standalone_ok, suggested_companions, combination_note, typical_pattern, status, status_note, alternatives, warnings, anti_patterns, performance_note, requires, decision_semantics, related_nodes, examples */
1888
- guidance?: Record<string, unknown> | null;
1889
- /** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
1890
- tags?: string[] | null;
1891
- createdAt?: string | null;
1892
- updatedAt?: string | null;
1893
- }
1894
- /** Default membership settings per entity, controlling initial approval and verification state for new members */
1895
- export interface OrgMembershipDefault {
1896
- id: string;
1897
- createdAt?: string | null;
1898
- updatedAt?: string | null;
1899
- createdBy?: string | null;
1900
- updatedBy?: string | null;
1901
- /** Whether new members are automatically approved upon joining */
1902
- isApproved?: boolean | null;
1903
- /** References the entity these membership defaults apply to */
1904
- entityId?: string | null;
1905
- /** When an org member is deleted, whether to cascade-remove their group memberships */
1906
- deleteMemberCascadeGroups?: boolean | null;
1907
- /** When a group is created, whether to auto-add existing org members as group members */
1908
- createGroupsCascadeMembers?: boolean | null;
1909
- }
1910
1887
  export interface SqlAction {
1911
1888
  id: number;
1912
1889
  name?: string | null;
@@ -2549,25 +2526,28 @@ export interface OrgClaimedInviteRelations {
2549
2526
  export interface AuditLogRelations {
2550
2527
  actor?: User | null;
2551
2528
  }
2529
+ export interface AppPermissionDefaultRelations {
2530
+ }
2552
2531
  export interface RefRelations {
2553
2532
  }
2554
2533
  export interface StoreRelations {
2555
2534
  }
2556
- export interface AppPermissionDefaultRelations {
2557
- }
2558
2535
  export interface RoleTypeRelations {
2559
2536
  }
2537
+ export interface MigrateFileRelations {
2538
+ }
2560
2539
  export interface AppLimitDefaultRelations {
2561
2540
  }
2562
2541
  export interface OrgLimitDefaultRelations {
2563
2542
  }
2564
- export interface MigrateFileRelations {
2565
- }
2566
2543
  export interface MembershipTypeRelations {
2567
2544
  }
2545
+ export interface AppMembershipDefaultRelations {
2546
+ }
2568
2547
  export interface CommitRelations {
2569
2548
  }
2570
- export interface AppMembershipDefaultRelations {
2549
+ export interface OrgMembershipDefaultRelations {
2550
+ entity?: User | null;
2571
2551
  }
2572
2552
  export interface RlsModuleRelations {
2573
2553
  database?: Database | null;
@@ -2577,11 +2557,6 @@ export interface RlsModuleRelations {
2577
2557
  sessionsTable?: Table | null;
2578
2558
  usersTable?: Table | null;
2579
2559
  }
2580
- export interface NodeTypeRegistryRelations {
2581
- }
2582
- export interface OrgMembershipDefaultRelations {
2583
- entity?: User | null;
2584
- }
2585
2560
  export interface SqlActionRelations {
2586
2561
  }
2587
2562
  export interface UserRelations {
@@ -2743,19 +2718,18 @@ export type ClaimedInviteWithRelations = ClaimedInvite & ClaimedInviteRelations;
2743
2718
  export type OrgInviteWithRelations = OrgInvite & OrgInviteRelations;
2744
2719
  export type OrgClaimedInviteWithRelations = OrgClaimedInvite & OrgClaimedInviteRelations;
2745
2720
  export type AuditLogWithRelations = AuditLog & AuditLogRelations;
2721
+ export type AppPermissionDefaultWithRelations = AppPermissionDefault & AppPermissionDefaultRelations;
2746
2722
  export type RefWithRelations = Ref & RefRelations;
2747
2723
  export type StoreWithRelations = Store & StoreRelations;
2748
- export type AppPermissionDefaultWithRelations = AppPermissionDefault & AppPermissionDefaultRelations;
2749
2724
  export type RoleTypeWithRelations = RoleType & RoleTypeRelations;
2725
+ export type MigrateFileWithRelations = MigrateFile & MigrateFileRelations;
2750
2726
  export type AppLimitDefaultWithRelations = AppLimitDefault & AppLimitDefaultRelations;
2751
2727
  export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRelations;
2752
- export type MigrateFileWithRelations = MigrateFile & MigrateFileRelations;
2753
2728
  export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelations;
2754
- export type CommitWithRelations = Commit & CommitRelations;
2755
2729
  export type AppMembershipDefaultWithRelations = AppMembershipDefault & AppMembershipDefaultRelations;
2756
- export type RlsModuleWithRelations = RlsModule & RlsModuleRelations;
2757
- export type NodeTypeRegistryWithRelations = NodeTypeRegistry & NodeTypeRegistryRelations;
2730
+ export type CommitWithRelations = Commit & CommitRelations;
2758
2731
  export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
2732
+ export type RlsModuleWithRelations = RlsModule & RlsModuleRelations;
2759
2733
  export type SqlActionWithRelations = SqlAction & SqlActionRelations;
2760
2734
  export type UserWithRelations = User & UserRelations;
2761
2735
  export type AstMigrationWithRelations = AstMigration & AstMigrationRelations;
@@ -5218,6 +5192,10 @@ export type AuditLogSelect = {
5218
5192
  select: UserSelect;
5219
5193
  };
5220
5194
  };
5195
+ export type AppPermissionDefaultSelect = {
5196
+ id?: boolean;
5197
+ permissions?: boolean;
5198
+ };
5221
5199
  export type RefSelect = {
5222
5200
  id?: boolean;
5223
5201
  name?: boolean;
@@ -5232,14 +5210,15 @@ export type StoreSelect = {
5232
5210
  hash?: boolean;
5233
5211
  createdAt?: boolean;
5234
5212
  };
5235
- export type AppPermissionDefaultSelect = {
5236
- id?: boolean;
5237
- permissions?: boolean;
5238
- };
5239
5213
  export type RoleTypeSelect = {
5240
5214
  id?: boolean;
5241
5215
  name?: boolean;
5242
5216
  };
5217
+ export type MigrateFileSelect = {
5218
+ id?: boolean;
5219
+ databaseId?: boolean;
5220
+ upload?: boolean;
5221
+ };
5243
5222
  export type AppLimitDefaultSelect = {
5244
5223
  id?: boolean;
5245
5224
  name?: boolean;
@@ -5250,17 +5229,21 @@ export type OrgLimitDefaultSelect = {
5250
5229
  name?: boolean;
5251
5230
  max?: boolean;
5252
5231
  };
5253
- export type MigrateFileSelect = {
5254
- id?: boolean;
5255
- databaseId?: boolean;
5256
- upload?: boolean;
5257
- };
5258
5232
  export type MembershipTypeSelect = {
5259
5233
  id?: boolean;
5260
5234
  name?: boolean;
5261
5235
  description?: boolean;
5262
5236
  prefix?: boolean;
5263
5237
  };
5238
+ export type AppMembershipDefaultSelect = {
5239
+ id?: boolean;
5240
+ createdAt?: boolean;
5241
+ updatedAt?: boolean;
5242
+ createdBy?: boolean;
5243
+ updatedBy?: boolean;
5244
+ isApproved?: boolean;
5245
+ isVerified?: boolean;
5246
+ };
5264
5247
  export type CommitSelect = {
5265
5248
  id?: boolean;
5266
5249
  message?: boolean;
@@ -5272,14 +5255,19 @@ export type CommitSelect = {
5272
5255
  treeId?: boolean;
5273
5256
  date?: boolean;
5274
5257
  };
5275
- export type AppMembershipDefaultSelect = {
5258
+ export type OrgMembershipDefaultSelect = {
5276
5259
  id?: boolean;
5277
5260
  createdAt?: boolean;
5278
5261
  updatedAt?: boolean;
5279
5262
  createdBy?: boolean;
5280
5263
  updatedBy?: boolean;
5281
5264
  isApproved?: boolean;
5282
- isVerified?: boolean;
5265
+ entityId?: boolean;
5266
+ deleteMemberCascadeGroups?: boolean;
5267
+ createGroupsCascadeMembers?: boolean;
5268
+ entity?: {
5269
+ select: UserSelect;
5270
+ };
5283
5271
  };
5284
5272
  export type RlsModuleSelect = {
5285
5273
  id?: boolean;
@@ -5312,33 +5300,6 @@ export type RlsModuleSelect = {
5312
5300
  select: TableSelect;
5313
5301
  };
5314
5302
  };
5315
- export type NodeTypeRegistrySelect = {
5316
- name?: boolean;
5317
- slug?: boolean;
5318
- category?: boolean;
5319
- displayName?: boolean;
5320
- description?: boolean;
5321
- summary?: boolean;
5322
- parameterSchema?: boolean;
5323
- guidance?: boolean;
5324
- tags?: boolean;
5325
- createdAt?: boolean;
5326
- updatedAt?: boolean;
5327
- };
5328
- export type OrgMembershipDefaultSelect = {
5329
- id?: boolean;
5330
- createdAt?: boolean;
5331
- updatedAt?: boolean;
5332
- createdBy?: boolean;
5333
- updatedBy?: boolean;
5334
- isApproved?: boolean;
5335
- entityId?: boolean;
5336
- deleteMemberCascadeGroups?: boolean;
5337
- createGroupsCascadeMembers?: boolean;
5338
- entity?: {
5339
- select: UserSelect;
5340
- };
5341
- };
5342
5303
  export type SqlActionSelect = {
5343
5304
  id?: boolean;
5344
5305
  name?: boolean;
@@ -9279,6 +9240,18 @@ export interface AuditLogFilter {
9279
9240
  /** A related `actor` exists. */
9280
9241
  actorExists?: boolean;
9281
9242
  }
9243
+ export interface AppPermissionDefaultFilter {
9244
+ /** Filter by the object’s `id` field. */
9245
+ id?: UUIDFilter;
9246
+ /** Filter by the object’s `permissions` field. */
9247
+ permissions?: BitStringFilter;
9248
+ /** Checks for all expressions in this list. */
9249
+ and?: AppPermissionDefaultFilter[];
9250
+ /** Checks for any expressions in this list. */
9251
+ or?: AppPermissionDefaultFilter[];
9252
+ /** Negates the expression. */
9253
+ not?: AppPermissionDefaultFilter;
9254
+ }
9282
9255
  export interface RefFilter {
9283
9256
  /** Filter by the object’s `id` field. */
9284
9257
  id?: UUIDFilter;
@@ -9315,18 +9288,6 @@ export interface StoreFilter {
9315
9288
  /** Negates the expression. */
9316
9289
  not?: StoreFilter;
9317
9290
  }
9318
- export interface AppPermissionDefaultFilter {
9319
- /** Filter by the object’s `id` field. */
9320
- id?: UUIDFilter;
9321
- /** Filter by the object’s `permissions` field. */
9322
- permissions?: BitStringFilter;
9323
- /** Checks for all expressions in this list. */
9324
- and?: AppPermissionDefaultFilter[];
9325
- /** Checks for any expressions in this list. */
9326
- or?: AppPermissionDefaultFilter[];
9327
- /** Negates the expression. */
9328
- not?: AppPermissionDefaultFilter;
9329
- }
9330
9291
  export interface RoleTypeFilter {
9331
9292
  /** Filter by the object’s `id` field. */
9332
9293
  id?: IntFilter;
@@ -9339,6 +9300,20 @@ export interface RoleTypeFilter {
9339
9300
  /** Negates the expression. */
9340
9301
  not?: RoleTypeFilter;
9341
9302
  }
9303
+ export interface MigrateFileFilter {
9304
+ /** Filter by the object’s `id` field. */
9305
+ id?: UUIDFilter;
9306
+ /** Filter by the object’s `databaseId` field. */
9307
+ databaseId?: UUIDFilter;
9308
+ /** Filter by the object’s `upload` field. */
9309
+ upload?: ConstructiveInternalTypeUploadFilter;
9310
+ /** Checks for all expressions in this list. */
9311
+ and?: MigrateFileFilter[];
9312
+ /** Checks for any expressions in this list. */
9313
+ or?: MigrateFileFilter[];
9314
+ /** Negates the expression. */
9315
+ not?: MigrateFileFilter;
9316
+ }
9342
9317
  export interface AppLimitDefaultFilter {
9343
9318
  /** Filter by the object’s `id` field. */
9344
9319
  id?: UUIDFilter;
@@ -9367,20 +9342,6 @@ export interface OrgLimitDefaultFilter {
9367
9342
  /** Negates the expression. */
9368
9343
  not?: OrgLimitDefaultFilter;
9369
9344
  }
9370
- export interface MigrateFileFilter {
9371
- /** Filter by the object’s `id` field. */
9372
- id?: UUIDFilter;
9373
- /** Filter by the object’s `databaseId` field. */
9374
- databaseId?: UUIDFilter;
9375
- /** Filter by the object’s `upload` field. */
9376
- upload?: ConstructiveInternalTypeUploadFilter;
9377
- /** Checks for all expressions in this list. */
9378
- and?: MigrateFileFilter[];
9379
- /** Checks for any expressions in this list. */
9380
- or?: MigrateFileFilter[];
9381
- /** Negates the expression. */
9382
- not?: MigrateFileFilter;
9383
- }
9384
9345
  export interface MembershipTypeFilter {
9385
9346
  /** Filter by the object’s `id` field. */
9386
9347
  id?: IntFilter;
@@ -9397,6 +9358,28 @@ export interface MembershipTypeFilter {
9397
9358
  /** Negates the expression. */
9398
9359
  not?: MembershipTypeFilter;
9399
9360
  }
9361
+ export interface AppMembershipDefaultFilter {
9362
+ /** Filter by the object’s `id` field. */
9363
+ id?: UUIDFilter;
9364
+ /** Filter by the object’s `createdAt` field. */
9365
+ createdAt?: DatetimeFilter;
9366
+ /** Filter by the object’s `updatedAt` field. */
9367
+ updatedAt?: DatetimeFilter;
9368
+ /** Filter by the object’s `createdBy` field. */
9369
+ createdBy?: UUIDFilter;
9370
+ /** Filter by the object’s `updatedBy` field. */
9371
+ updatedBy?: UUIDFilter;
9372
+ /** Filter by the object’s `isApproved` field. */
9373
+ isApproved?: BooleanFilter;
9374
+ /** Filter by the object’s `isVerified` field. */
9375
+ isVerified?: BooleanFilter;
9376
+ /** Checks for all expressions in this list. */
9377
+ and?: AppMembershipDefaultFilter[];
9378
+ /** Checks for any expressions in this list. */
9379
+ or?: AppMembershipDefaultFilter[];
9380
+ /** Negates the expression. */
9381
+ not?: AppMembershipDefaultFilter;
9382
+ }
9400
9383
  export interface CommitFilter {
9401
9384
  /** Filter by the object’s `id` field. */
9402
9385
  id?: UUIDFilter;
@@ -9423,7 +9406,7 @@ export interface CommitFilter {
9423
9406
  /** Negates the expression. */
9424
9407
  not?: CommitFilter;
9425
9408
  }
9426
- export interface AppMembershipDefaultFilter {
9409
+ export interface OrgMembershipDefaultFilter {
9427
9410
  /** Filter by the object’s `id` field. */
9428
9411
  id?: UUIDFilter;
9429
9412
  /** Filter by the object’s `createdAt` field. */
@@ -9436,14 +9419,20 @@ export interface AppMembershipDefaultFilter {
9436
9419
  updatedBy?: UUIDFilter;
9437
9420
  /** Filter by the object’s `isApproved` field. */
9438
9421
  isApproved?: BooleanFilter;
9439
- /** Filter by the object’s `isVerified` field. */
9440
- isVerified?: BooleanFilter;
9422
+ /** Filter by the object’s `entityId` field. */
9423
+ entityId?: UUIDFilter;
9424
+ /** Filter by the object’s `deleteMemberCascadeGroups` field. */
9425
+ deleteMemberCascadeGroups?: BooleanFilter;
9426
+ /** Filter by the object’s `createGroupsCascadeMembers` field. */
9427
+ createGroupsCascadeMembers?: BooleanFilter;
9441
9428
  /** Checks for all expressions in this list. */
9442
- and?: AppMembershipDefaultFilter[];
9429
+ and?: OrgMembershipDefaultFilter[];
9443
9430
  /** Checks for any expressions in this list. */
9444
- or?: AppMembershipDefaultFilter[];
9431
+ or?: OrgMembershipDefaultFilter[];
9445
9432
  /** Negates the expression. */
9446
- not?: AppMembershipDefaultFilter;
9433
+ not?: OrgMembershipDefaultFilter;
9434
+ /** Filter by the object’s `entity` relation. */
9435
+ entity?: UserFilter;
9447
9436
  }
9448
9437
  export interface RlsModuleFilter {
9449
9438
  /** Filter by the object’s `id` field. */
@@ -9487,67 +9476,9 @@ export interface RlsModuleFilter {
9487
9476
  /** Filter by the object’s `usersTable` relation. */
9488
9477
  usersTable?: TableFilter;
9489
9478
  }
9490
- export interface NodeTypeRegistryFilter {
9491
- /** Filter by the object’s `name` field. */
9492
- name?: StringFilter;
9493
- /** Filter by the object’s `slug` field. */
9494
- slug?: StringFilter;
9495
- /** Filter by the object’s `category` field. */
9496
- category?: StringFilter;
9497
- /** Filter by the object’s `displayName` field. */
9498
- displayName?: StringFilter;
9499
- /** Filter by the object’s `description` field. */
9500
- description?: StringFilter;
9501
- /** Filter by the object’s `summary` field. */
9502
- summary?: StringFilter;
9503
- /** Filter by the object’s `parameterSchema` field. */
9504
- parameterSchema?: JSONFilter;
9505
- /** Filter by the object’s `guidance` field. */
9506
- guidance?: JSONFilter;
9507
- /** Filter by the object’s `tags` field. */
9508
- tags?: StringListFilter;
9509
- /** Filter by the object’s `createdAt` field. */
9510
- createdAt?: DatetimeFilter;
9511
- /** Filter by the object’s `updatedAt` field. */
9512
- updatedAt?: DatetimeFilter;
9513
- /** Checks for all expressions in this list. */
9514
- and?: NodeTypeRegistryFilter[];
9515
- /** Checks for any expressions in this list. */
9516
- or?: NodeTypeRegistryFilter[];
9517
- /** Negates the expression. */
9518
- not?: NodeTypeRegistryFilter;
9519
- }
9520
- export interface OrgMembershipDefaultFilter {
9521
- /** Filter by the object’s `id` field. */
9522
- id?: UUIDFilter;
9523
- /** Filter by the object’s `createdAt` field. */
9524
- createdAt?: DatetimeFilter;
9525
- /** Filter by the object’s `updatedAt` field. */
9526
- updatedAt?: DatetimeFilter;
9527
- /** Filter by the object’s `createdBy` field. */
9528
- createdBy?: UUIDFilter;
9529
- /** Filter by the object’s `updatedBy` field. */
9530
- updatedBy?: UUIDFilter;
9531
- /** Filter by the object’s `isApproved` field. */
9532
- isApproved?: BooleanFilter;
9533
- /** Filter by the object’s `entityId` field. */
9534
- entityId?: UUIDFilter;
9535
- /** Filter by the object’s `deleteMemberCascadeGroups` field. */
9536
- deleteMemberCascadeGroups?: BooleanFilter;
9537
- /** Filter by the object’s `createGroupsCascadeMembers` field. */
9538
- createGroupsCascadeMembers?: BooleanFilter;
9539
- /** Checks for all expressions in this list. */
9540
- and?: OrgMembershipDefaultFilter[];
9541
- /** Checks for any expressions in this list. */
9542
- or?: OrgMembershipDefaultFilter[];
9543
- /** Negates the expression. */
9544
- not?: OrgMembershipDefaultFilter;
9545
- /** Filter by the object’s `entity` relation. */
9546
- entity?: UserFilter;
9547
- }
9548
- export interface SqlActionFilter {
9549
- /** Filter by the object’s `id` field. */
9550
- id?: IntFilter;
9479
+ export interface SqlActionFilter {
9480
+ /** Filter by the object’s `id` field. */
9481
+ id?: IntFilter;
9551
9482
  /** Filter by the object’s `name` field. */
9552
9483
  name?: StringFilter;
9553
9484
  /** Filter by the object’s `databaseId` field. */
@@ -10045,19 +9976,18 @@ export type ClaimedInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_
10045
9976
  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';
10046
9977
  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';
10047
9978
  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';
9979
+ export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC';
10048
9980
  export type RefOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC';
10049
9981
  export type StoreOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
10050
- export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC';
10051
9982
  export type RoleTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
9983
+ export type MigrateFileOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'UPLOAD_ASC' | 'UPLOAD_DESC';
10052
9984
  export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
10053
9985
  export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
10054
- export type MigrateFileOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'UPLOAD_ASC' | 'UPLOAD_DESC';
10055
9986
  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';
10056
- 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';
10057
9987
  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';
10058
- 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';
10059
- export type NodeTypeRegistryOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SUMMARY_ASC' | 'SUMMARY_DESC' | 'PARAMETER_SCHEMA_ASC' | 'PARAMETER_SCHEMA_DESC' | 'GUIDANCE_ASC' | 'GUIDANCE_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
9988
+ 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';
10060
9989
  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';
9990
+ 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';
10061
9991
  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';
10062
9992
  export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'PROFILE_PICTURE_ASC' | 'PROFILE_PICTURE_DESC' | 'SEARCH_TSV_ASC' | 'SEARCH_TSV_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
10063
9993
  export type AstMigrationOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'REQUIRES_ASC' | 'REQUIRES_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'DEPLOYS_ASC' | 'DEPLOYS_DESC' | 'DEPLOY_ASC' | 'DEPLOY_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';
@@ -13040,6 +12970,24 @@ export interface DeleteAuditLogInput {
13040
12970
  clientMutationId?: string;
13041
12971
  id: string;
13042
12972
  }
12973
+ export interface CreateAppPermissionDefaultInput {
12974
+ clientMutationId?: string;
12975
+ appPermissionDefault: {
12976
+ permissions?: string;
12977
+ };
12978
+ }
12979
+ export interface AppPermissionDefaultPatch {
12980
+ permissions?: string | null;
12981
+ }
12982
+ export interface UpdateAppPermissionDefaultInput {
12983
+ clientMutationId?: string;
12984
+ id: string;
12985
+ appPermissionDefaultPatch: AppPermissionDefaultPatch;
12986
+ }
12987
+ export interface DeleteAppPermissionDefaultInput {
12988
+ clientMutationId?: string;
12989
+ id: string;
12990
+ }
13043
12991
  export interface CreateRefInput {
13044
12992
  clientMutationId?: string;
13045
12993
  ref: {
@@ -13086,24 +13034,6 @@ export interface DeleteStoreInput {
13086
13034
  clientMutationId?: string;
13087
13035
  id: string;
13088
13036
  }
13089
- export interface CreateAppPermissionDefaultInput {
13090
- clientMutationId?: string;
13091
- appPermissionDefault: {
13092
- permissions?: string;
13093
- };
13094
- }
13095
- export interface AppPermissionDefaultPatch {
13096
- permissions?: string | null;
13097
- }
13098
- export interface UpdateAppPermissionDefaultInput {
13099
- clientMutationId?: string;
13100
- id: string;
13101
- appPermissionDefaultPatch: AppPermissionDefaultPatch;
13102
- }
13103
- export interface DeleteAppPermissionDefaultInput {
13104
- clientMutationId?: string;
13105
- id: string;
13106
- }
13107
13037
  export interface CreateRoleTypeInput {
13108
13038
  clientMutationId?: string;
13109
13039
  roleType: {
@@ -13122,6 +13052,26 @@ export interface DeleteRoleTypeInput {
13122
13052
  clientMutationId?: string;
13123
13053
  id: number;
13124
13054
  }
13055
+ export interface CreateMigrateFileInput {
13056
+ clientMutationId?: string;
13057
+ migrateFile: {
13058
+ databaseId?: string;
13059
+ upload?: ConstructiveInternalTypeUpload;
13060
+ };
13061
+ }
13062
+ export interface MigrateFilePatch {
13063
+ databaseId?: string | null;
13064
+ upload?: ConstructiveInternalTypeUpload | null;
13065
+ }
13066
+ export interface UpdateMigrateFileInput {
13067
+ clientMutationId?: string;
13068
+ id: string;
13069
+ migrateFilePatch: MigrateFilePatch;
13070
+ }
13071
+ export interface DeleteMigrateFileInput {
13072
+ clientMutationId?: string;
13073
+ id: string;
13074
+ }
13125
13075
  export interface CreateAppLimitDefaultInput {
13126
13076
  clientMutationId?: string;
13127
13077
  appLimitDefault: {
@@ -13162,26 +13112,6 @@ export interface DeleteOrgLimitDefaultInput {
13162
13112
  clientMutationId?: string;
13163
13113
  id: string;
13164
13114
  }
13165
- export interface CreateMigrateFileInput {
13166
- clientMutationId?: string;
13167
- migrateFile: {
13168
- databaseId?: string;
13169
- upload?: ConstructiveInternalTypeUpload;
13170
- };
13171
- }
13172
- export interface MigrateFilePatch {
13173
- databaseId?: string | null;
13174
- upload?: ConstructiveInternalTypeUpload | null;
13175
- }
13176
- export interface UpdateMigrateFileInput {
13177
- clientMutationId?: string;
13178
- id: string;
13179
- migrateFilePatch: MigrateFilePatch;
13180
- }
13181
- export interface DeleteMigrateFileInput {
13182
- clientMutationId?: string;
13183
- id: string;
13184
- }
13185
13115
  export interface CreateMembershipTypeInput {
13186
13116
  clientMutationId?: string;
13187
13117
  membershipType: {
@@ -13204,6 +13134,30 @@ export interface DeleteMembershipTypeInput {
13204
13134
  clientMutationId?: string;
13205
13135
  id: number;
13206
13136
  }
13137
+ export interface CreateAppMembershipDefaultInput {
13138
+ clientMutationId?: string;
13139
+ appMembershipDefault: {
13140
+ createdBy?: string;
13141
+ updatedBy?: string;
13142
+ isApproved?: boolean;
13143
+ isVerified?: boolean;
13144
+ };
13145
+ }
13146
+ export interface AppMembershipDefaultPatch {
13147
+ createdBy?: string | null;
13148
+ updatedBy?: string | null;
13149
+ isApproved?: boolean | null;
13150
+ isVerified?: boolean | null;
13151
+ }
13152
+ export interface UpdateAppMembershipDefaultInput {
13153
+ clientMutationId?: string;
13154
+ id: string;
13155
+ appMembershipDefaultPatch: AppMembershipDefaultPatch;
13156
+ }
13157
+ export interface DeleteAppMembershipDefaultInput {
13158
+ clientMutationId?: string;
13159
+ id: string;
13160
+ }
13207
13161
  export interface CreateCommitInput {
13208
13162
  clientMutationId?: string;
13209
13163
  commit: {
@@ -13236,27 +13190,31 @@ export interface DeleteCommitInput {
13236
13190
  clientMutationId?: string;
13237
13191
  id: string;
13238
13192
  }
13239
- export interface CreateAppMembershipDefaultInput {
13193
+ export interface CreateOrgMembershipDefaultInput {
13240
13194
  clientMutationId?: string;
13241
- appMembershipDefault: {
13195
+ orgMembershipDefault: {
13242
13196
  createdBy?: string;
13243
13197
  updatedBy?: string;
13244
13198
  isApproved?: boolean;
13245
- isVerified?: boolean;
13199
+ entityId: string;
13200
+ deleteMemberCascadeGroups?: boolean;
13201
+ createGroupsCascadeMembers?: boolean;
13246
13202
  };
13247
13203
  }
13248
- export interface AppMembershipDefaultPatch {
13204
+ export interface OrgMembershipDefaultPatch {
13249
13205
  createdBy?: string | null;
13250
13206
  updatedBy?: string | null;
13251
13207
  isApproved?: boolean | null;
13252
- isVerified?: boolean | null;
13208
+ entityId?: string | null;
13209
+ deleteMemberCascadeGroups?: boolean | null;
13210
+ createGroupsCascadeMembers?: boolean | null;
13253
13211
  }
13254
- export interface UpdateAppMembershipDefaultInput {
13212
+ export interface UpdateOrgMembershipDefaultInput {
13255
13213
  clientMutationId?: string;
13256
13214
  id: string;
13257
- appMembershipDefaultPatch: AppMembershipDefaultPatch;
13215
+ orgMembershipDefaultPatch: OrgMembershipDefaultPatch;
13258
13216
  }
13259
- export interface DeleteAppMembershipDefaultInput {
13217
+ export interface DeleteOrgMembershipDefaultInput {
13260
13218
  clientMutationId?: string;
13261
13219
  id: string;
13262
13220
  }
@@ -13296,68 +13254,6 @@ export interface DeleteRlsModuleInput {
13296
13254
  clientMutationId?: string;
13297
13255
  id: string;
13298
13256
  }
13299
- export interface CreateNodeTypeRegistryInput {
13300
- clientMutationId?: string;
13301
- nodeTypeRegistry: {
13302
- name: string;
13303
- slug: string;
13304
- category: string;
13305
- displayName?: string;
13306
- description?: string;
13307
- summary?: string;
13308
- parameterSchema?: Record<string, unknown>;
13309
- guidance?: Record<string, unknown>;
13310
- tags?: string[];
13311
- };
13312
- }
13313
- export interface NodeTypeRegistryPatch {
13314
- name?: string | null;
13315
- slug?: string | null;
13316
- category?: string | null;
13317
- displayName?: string | null;
13318
- description?: string | null;
13319
- summary?: string | null;
13320
- parameterSchema?: Record<string, unknown> | null;
13321
- guidance?: Record<string, unknown> | null;
13322
- tags?: string[] | null;
13323
- }
13324
- export interface UpdateNodeTypeRegistryInput {
13325
- clientMutationId?: string;
13326
- name: string;
13327
- nodeTypeRegistryPatch: NodeTypeRegistryPatch;
13328
- }
13329
- export interface DeleteNodeTypeRegistryInput {
13330
- clientMutationId?: string;
13331
- name: string;
13332
- }
13333
- export interface CreateOrgMembershipDefaultInput {
13334
- clientMutationId?: string;
13335
- orgMembershipDefault: {
13336
- createdBy?: string;
13337
- updatedBy?: string;
13338
- isApproved?: boolean;
13339
- entityId: string;
13340
- deleteMemberCascadeGroups?: boolean;
13341
- createGroupsCascadeMembers?: boolean;
13342
- };
13343
- }
13344
- export interface OrgMembershipDefaultPatch {
13345
- createdBy?: string | null;
13346
- updatedBy?: string | null;
13347
- isApproved?: boolean | null;
13348
- entityId?: string | null;
13349
- deleteMemberCascadeGroups?: boolean | null;
13350
- createGroupsCascadeMembers?: boolean | null;
13351
- }
13352
- export interface UpdateOrgMembershipDefaultInput {
13353
- clientMutationId?: string;
13354
- id: string;
13355
- orgMembershipDefaultPatch: OrgMembershipDefaultPatch;
13356
- }
13357
- export interface DeleteOrgMembershipDefaultInput {
13358
- clientMutationId?: string;
13359
- id: string;
13360
- }
13361
13257
  export interface CreateSqlActionInput {
13362
13258
  clientMutationId?: string;
13363
13259
  sqlAction: {
@@ -24269,6 +24165,51 @@ export type DeleteAuditLogPayloadSelect = {
24269
24165
  select: AuditLogEdgeSelect;
24270
24166
  };
24271
24167
  };
24168
+ export interface CreateAppPermissionDefaultPayload {
24169
+ clientMutationId?: string | null;
24170
+ /** The `AppPermissionDefault` that was created by this mutation. */
24171
+ appPermissionDefault?: AppPermissionDefault | null;
24172
+ appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
24173
+ }
24174
+ export type CreateAppPermissionDefaultPayloadSelect = {
24175
+ clientMutationId?: boolean;
24176
+ appPermissionDefault?: {
24177
+ select: AppPermissionDefaultSelect;
24178
+ };
24179
+ appPermissionDefaultEdge?: {
24180
+ select: AppPermissionDefaultEdgeSelect;
24181
+ };
24182
+ };
24183
+ export interface UpdateAppPermissionDefaultPayload {
24184
+ clientMutationId?: string | null;
24185
+ /** The `AppPermissionDefault` that was updated by this mutation. */
24186
+ appPermissionDefault?: AppPermissionDefault | null;
24187
+ appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
24188
+ }
24189
+ export type UpdateAppPermissionDefaultPayloadSelect = {
24190
+ clientMutationId?: boolean;
24191
+ appPermissionDefault?: {
24192
+ select: AppPermissionDefaultSelect;
24193
+ };
24194
+ appPermissionDefaultEdge?: {
24195
+ select: AppPermissionDefaultEdgeSelect;
24196
+ };
24197
+ };
24198
+ export interface DeleteAppPermissionDefaultPayload {
24199
+ clientMutationId?: string | null;
24200
+ /** The `AppPermissionDefault` that was deleted by this mutation. */
24201
+ appPermissionDefault?: AppPermissionDefault | null;
24202
+ appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
24203
+ }
24204
+ export type DeleteAppPermissionDefaultPayloadSelect = {
24205
+ clientMutationId?: boolean;
24206
+ appPermissionDefault?: {
24207
+ select: AppPermissionDefaultSelect;
24208
+ };
24209
+ appPermissionDefaultEdge?: {
24210
+ select: AppPermissionDefaultEdgeSelect;
24211
+ };
24212
+ };
24272
24213
  export interface CreateRefPayload {
24273
24214
  clientMutationId?: string | null;
24274
24215
  /** The `Ref` that was created by this mutation. */
@@ -24359,52 +24300,7 @@ export type DeleteStorePayloadSelect = {
24359
24300
  select: StoreEdgeSelect;
24360
24301
  };
24361
24302
  };
24362
- export interface CreateAppPermissionDefaultPayload {
24363
- clientMutationId?: string | null;
24364
- /** The `AppPermissionDefault` that was created by this mutation. */
24365
- appPermissionDefault?: AppPermissionDefault | null;
24366
- appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
24367
- }
24368
- export type CreateAppPermissionDefaultPayloadSelect = {
24369
- clientMutationId?: boolean;
24370
- appPermissionDefault?: {
24371
- select: AppPermissionDefaultSelect;
24372
- };
24373
- appPermissionDefaultEdge?: {
24374
- select: AppPermissionDefaultEdgeSelect;
24375
- };
24376
- };
24377
- export interface UpdateAppPermissionDefaultPayload {
24378
- clientMutationId?: string | null;
24379
- /** The `AppPermissionDefault` that was updated by this mutation. */
24380
- appPermissionDefault?: AppPermissionDefault | null;
24381
- appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
24382
- }
24383
- export type UpdateAppPermissionDefaultPayloadSelect = {
24384
- clientMutationId?: boolean;
24385
- appPermissionDefault?: {
24386
- select: AppPermissionDefaultSelect;
24387
- };
24388
- appPermissionDefaultEdge?: {
24389
- select: AppPermissionDefaultEdgeSelect;
24390
- };
24391
- };
24392
- export interface DeleteAppPermissionDefaultPayload {
24393
- clientMutationId?: string | null;
24394
- /** The `AppPermissionDefault` that was deleted by this mutation. */
24395
- appPermissionDefault?: AppPermissionDefault | null;
24396
- appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
24397
- }
24398
- export type DeleteAppPermissionDefaultPayloadSelect = {
24399
- clientMutationId?: boolean;
24400
- appPermissionDefault?: {
24401
- select: AppPermissionDefaultSelect;
24402
- };
24403
- appPermissionDefaultEdge?: {
24404
- select: AppPermissionDefaultEdgeSelect;
24405
- };
24406
- };
24407
- export interface CreateRoleTypePayload {
24303
+ export interface CreateRoleTypePayload {
24408
24304
  clientMutationId?: string | null;
24409
24305
  /** The `RoleType` that was created by this mutation. */
24410
24306
  roleType?: RoleType | null;
@@ -24449,6 +24345,17 @@ export type DeleteRoleTypePayloadSelect = {
24449
24345
  select: RoleTypeEdgeSelect;
24450
24346
  };
24451
24347
  };
24348
+ export interface CreateMigrateFilePayload {
24349
+ clientMutationId?: string | null;
24350
+ /** The `MigrateFile` that was created by this mutation. */
24351
+ migrateFile?: MigrateFile | null;
24352
+ }
24353
+ export type CreateMigrateFilePayloadSelect = {
24354
+ clientMutationId?: boolean;
24355
+ migrateFile?: {
24356
+ select: MigrateFileSelect;
24357
+ };
24358
+ };
24452
24359
  export interface CreateAppLimitDefaultPayload {
24453
24360
  clientMutationId?: string | null;
24454
24361
  /** The `AppLimitDefault` that was created by this mutation. */
@@ -24539,17 +24446,6 @@ export type DeleteOrgLimitDefaultPayloadSelect = {
24539
24446
  select: OrgLimitDefaultEdgeSelect;
24540
24447
  };
24541
24448
  };
24542
- export interface CreateMigrateFilePayload {
24543
- clientMutationId?: string | null;
24544
- /** The `MigrateFile` that was created by this mutation. */
24545
- migrateFile?: MigrateFile | null;
24546
- }
24547
- export type CreateMigrateFilePayloadSelect = {
24548
- clientMutationId?: boolean;
24549
- migrateFile?: {
24550
- select: MigrateFileSelect;
24551
- };
24552
- };
24553
24449
  export interface CreateMembershipTypePayload {
24554
24450
  clientMutationId?: string | null;
24555
24451
  /** The `MembershipType` that was created by this mutation. */
@@ -24595,51 +24491,6 @@ export type DeleteMembershipTypePayloadSelect = {
24595
24491
  select: MembershipTypeEdgeSelect;
24596
24492
  };
24597
24493
  };
24598
- export interface CreateCommitPayload {
24599
- clientMutationId?: string | null;
24600
- /** The `Commit` that was created by this mutation. */
24601
- commit?: Commit | null;
24602
- commitEdge?: CommitEdge | null;
24603
- }
24604
- export type CreateCommitPayloadSelect = {
24605
- clientMutationId?: boolean;
24606
- commit?: {
24607
- select: CommitSelect;
24608
- };
24609
- commitEdge?: {
24610
- select: CommitEdgeSelect;
24611
- };
24612
- };
24613
- export interface UpdateCommitPayload {
24614
- clientMutationId?: string | null;
24615
- /** The `Commit` that was updated by this mutation. */
24616
- commit?: Commit | null;
24617
- commitEdge?: CommitEdge | null;
24618
- }
24619
- export type UpdateCommitPayloadSelect = {
24620
- clientMutationId?: boolean;
24621
- commit?: {
24622
- select: CommitSelect;
24623
- };
24624
- commitEdge?: {
24625
- select: CommitEdgeSelect;
24626
- };
24627
- };
24628
- export interface DeleteCommitPayload {
24629
- clientMutationId?: string | null;
24630
- /** The `Commit` that was deleted by this mutation. */
24631
- commit?: Commit | null;
24632
- commitEdge?: CommitEdge | null;
24633
- }
24634
- export type DeleteCommitPayloadSelect = {
24635
- clientMutationId?: boolean;
24636
- commit?: {
24637
- select: CommitSelect;
24638
- };
24639
- commitEdge?: {
24640
- select: CommitEdgeSelect;
24641
- };
24642
- };
24643
24494
  export interface CreateAppMembershipDefaultPayload {
24644
24495
  clientMutationId?: string | null;
24645
24496
  /** The `AppMembershipDefault` that was created by this mutation. */
@@ -24685,94 +24536,49 @@ export type DeleteAppMembershipDefaultPayloadSelect = {
24685
24536
  select: AppMembershipDefaultEdgeSelect;
24686
24537
  };
24687
24538
  };
24688
- export interface CreateRlsModulePayload {
24689
- clientMutationId?: string | null;
24690
- /** The `RlsModule` that was created by this mutation. */
24691
- rlsModule?: RlsModule | null;
24692
- rlsModuleEdge?: RlsModuleEdge | null;
24693
- }
24694
- export type CreateRlsModulePayloadSelect = {
24695
- clientMutationId?: boolean;
24696
- rlsModule?: {
24697
- select: RlsModuleSelect;
24698
- };
24699
- rlsModuleEdge?: {
24700
- select: RlsModuleEdgeSelect;
24701
- };
24702
- };
24703
- export interface UpdateRlsModulePayload {
24704
- clientMutationId?: string | null;
24705
- /** The `RlsModule` that was updated by this mutation. */
24706
- rlsModule?: RlsModule | null;
24707
- rlsModuleEdge?: RlsModuleEdge | null;
24708
- }
24709
- export type UpdateRlsModulePayloadSelect = {
24710
- clientMutationId?: boolean;
24711
- rlsModule?: {
24712
- select: RlsModuleSelect;
24713
- };
24714
- rlsModuleEdge?: {
24715
- select: RlsModuleEdgeSelect;
24716
- };
24717
- };
24718
- export interface DeleteRlsModulePayload {
24719
- clientMutationId?: string | null;
24720
- /** The `RlsModule` that was deleted by this mutation. */
24721
- rlsModule?: RlsModule | null;
24722
- rlsModuleEdge?: RlsModuleEdge | null;
24723
- }
24724
- export type DeleteRlsModulePayloadSelect = {
24725
- clientMutationId?: boolean;
24726
- rlsModule?: {
24727
- select: RlsModuleSelect;
24728
- };
24729
- rlsModuleEdge?: {
24730
- select: RlsModuleEdgeSelect;
24731
- };
24732
- };
24733
- export interface CreateNodeTypeRegistryPayload {
24539
+ export interface CreateCommitPayload {
24734
24540
  clientMutationId?: string | null;
24735
- /** The `NodeTypeRegistry` that was created by this mutation. */
24736
- nodeTypeRegistry?: NodeTypeRegistry | null;
24737
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
24541
+ /** The `Commit` that was created by this mutation. */
24542
+ commit?: Commit | null;
24543
+ commitEdge?: CommitEdge | null;
24738
24544
  }
24739
- export type CreateNodeTypeRegistryPayloadSelect = {
24545
+ export type CreateCommitPayloadSelect = {
24740
24546
  clientMutationId?: boolean;
24741
- nodeTypeRegistry?: {
24742
- select: NodeTypeRegistrySelect;
24547
+ commit?: {
24548
+ select: CommitSelect;
24743
24549
  };
24744
- nodeTypeRegistryEdge?: {
24745
- select: NodeTypeRegistryEdgeSelect;
24550
+ commitEdge?: {
24551
+ select: CommitEdgeSelect;
24746
24552
  };
24747
24553
  };
24748
- export interface UpdateNodeTypeRegistryPayload {
24554
+ export interface UpdateCommitPayload {
24749
24555
  clientMutationId?: string | null;
24750
- /** The `NodeTypeRegistry` that was updated by this mutation. */
24751
- nodeTypeRegistry?: NodeTypeRegistry | null;
24752
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
24556
+ /** The `Commit` that was updated by this mutation. */
24557
+ commit?: Commit | null;
24558
+ commitEdge?: CommitEdge | null;
24753
24559
  }
24754
- export type UpdateNodeTypeRegistryPayloadSelect = {
24560
+ export type UpdateCommitPayloadSelect = {
24755
24561
  clientMutationId?: boolean;
24756
- nodeTypeRegistry?: {
24757
- select: NodeTypeRegistrySelect;
24562
+ commit?: {
24563
+ select: CommitSelect;
24758
24564
  };
24759
- nodeTypeRegistryEdge?: {
24760
- select: NodeTypeRegistryEdgeSelect;
24565
+ commitEdge?: {
24566
+ select: CommitEdgeSelect;
24761
24567
  };
24762
24568
  };
24763
- export interface DeleteNodeTypeRegistryPayload {
24569
+ export interface DeleteCommitPayload {
24764
24570
  clientMutationId?: string | null;
24765
- /** The `NodeTypeRegistry` that was deleted by this mutation. */
24766
- nodeTypeRegistry?: NodeTypeRegistry | null;
24767
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
24571
+ /** The `Commit` that was deleted by this mutation. */
24572
+ commit?: Commit | null;
24573
+ commitEdge?: CommitEdge | null;
24768
24574
  }
24769
- export type DeleteNodeTypeRegistryPayloadSelect = {
24575
+ export type DeleteCommitPayloadSelect = {
24770
24576
  clientMutationId?: boolean;
24771
- nodeTypeRegistry?: {
24772
- select: NodeTypeRegistrySelect;
24577
+ commit?: {
24578
+ select: CommitSelect;
24773
24579
  };
24774
- nodeTypeRegistryEdge?: {
24775
- select: NodeTypeRegistryEdgeSelect;
24580
+ commitEdge?: {
24581
+ select: CommitEdgeSelect;
24776
24582
  };
24777
24583
  };
24778
24584
  export interface CreateOrgMembershipDefaultPayload {
@@ -24820,6 +24626,51 @@ export type DeleteOrgMembershipDefaultPayloadSelect = {
24820
24626
  select: OrgMembershipDefaultEdgeSelect;
24821
24627
  };
24822
24628
  };
24629
+ export interface CreateRlsModulePayload {
24630
+ clientMutationId?: string | null;
24631
+ /** The `RlsModule` that was created by this mutation. */
24632
+ rlsModule?: RlsModule | null;
24633
+ rlsModuleEdge?: RlsModuleEdge | null;
24634
+ }
24635
+ export type CreateRlsModulePayloadSelect = {
24636
+ clientMutationId?: boolean;
24637
+ rlsModule?: {
24638
+ select: RlsModuleSelect;
24639
+ };
24640
+ rlsModuleEdge?: {
24641
+ select: RlsModuleEdgeSelect;
24642
+ };
24643
+ };
24644
+ export interface UpdateRlsModulePayload {
24645
+ clientMutationId?: string | null;
24646
+ /** The `RlsModule` that was updated by this mutation. */
24647
+ rlsModule?: RlsModule | null;
24648
+ rlsModuleEdge?: RlsModuleEdge | null;
24649
+ }
24650
+ export type UpdateRlsModulePayloadSelect = {
24651
+ clientMutationId?: boolean;
24652
+ rlsModule?: {
24653
+ select: RlsModuleSelect;
24654
+ };
24655
+ rlsModuleEdge?: {
24656
+ select: RlsModuleEdgeSelect;
24657
+ };
24658
+ };
24659
+ export interface DeleteRlsModulePayload {
24660
+ clientMutationId?: string | null;
24661
+ /** The `RlsModule` that was deleted by this mutation. */
24662
+ rlsModule?: RlsModule | null;
24663
+ rlsModuleEdge?: RlsModuleEdge | null;
24664
+ }
24665
+ export type DeleteRlsModulePayloadSelect = {
24666
+ clientMutationId?: boolean;
24667
+ rlsModule?: {
24668
+ select: RlsModuleSelect;
24669
+ };
24670
+ rlsModuleEdge?: {
24671
+ select: RlsModuleEdgeSelect;
24672
+ };
24673
+ };
24823
24674
  export interface CreateSqlActionPayload {
24824
24675
  clientMutationId?: string | null;
24825
24676
  /** The `SqlAction` that was created by this mutation. */
@@ -26200,6 +26051,18 @@ export type AuditLogEdgeSelect = {
26200
26051
  select: AuditLogSelect;
26201
26052
  };
26202
26053
  };
26054
+ /** A `AppPermissionDefault` edge in the connection. */
26055
+ export interface AppPermissionDefaultEdge {
26056
+ cursor?: string | null;
26057
+ /** The `AppPermissionDefault` at the end of the edge. */
26058
+ node?: AppPermissionDefault | null;
26059
+ }
26060
+ export type AppPermissionDefaultEdgeSelect = {
26061
+ cursor?: boolean;
26062
+ node?: {
26063
+ select: AppPermissionDefaultSelect;
26064
+ };
26065
+ };
26203
26066
  /** A `Ref` edge in the connection. */
26204
26067
  export interface RefEdge {
26205
26068
  cursor?: string | null;
@@ -26224,18 +26087,6 @@ export type StoreEdgeSelect = {
26224
26087
  select: StoreSelect;
26225
26088
  };
26226
26089
  };
26227
- /** A `AppPermissionDefault` edge in the connection. */
26228
- export interface AppPermissionDefaultEdge {
26229
- cursor?: string | null;
26230
- /** The `AppPermissionDefault` at the end of the edge. */
26231
- node?: AppPermissionDefault | null;
26232
- }
26233
- export type AppPermissionDefaultEdgeSelect = {
26234
- cursor?: boolean;
26235
- node?: {
26236
- select: AppPermissionDefaultSelect;
26237
- };
26238
- };
26239
26090
  /** A `RoleType` edge in the connection. */
26240
26091
  export interface RoleTypeEdge {
26241
26092
  cursor?: string | null;
@@ -26284,18 +26135,6 @@ export type MembershipTypeEdgeSelect = {
26284
26135
  select: MembershipTypeSelect;
26285
26136
  };
26286
26137
  };
26287
- /** A `Commit` edge in the connection. */
26288
- export interface CommitEdge {
26289
- cursor?: string | null;
26290
- /** The `Commit` at the end of the edge. */
26291
- node?: Commit | null;
26292
- }
26293
- export type CommitEdgeSelect = {
26294
- cursor?: boolean;
26295
- node?: {
26296
- select: CommitSelect;
26297
- };
26298
- };
26299
26138
  /** A `AppMembershipDefault` edge in the connection. */
26300
26139
  export interface AppMembershipDefaultEdge {
26301
26140
  cursor?: string | null;
@@ -26308,28 +26147,16 @@ export type AppMembershipDefaultEdgeSelect = {
26308
26147
  select: AppMembershipDefaultSelect;
26309
26148
  };
26310
26149
  };
26311
- /** A `RlsModule` edge in the connection. */
26312
- export interface RlsModuleEdge {
26313
- cursor?: string | null;
26314
- /** The `RlsModule` at the end of the edge. */
26315
- node?: RlsModule | null;
26316
- }
26317
- export type RlsModuleEdgeSelect = {
26318
- cursor?: boolean;
26319
- node?: {
26320
- select: RlsModuleSelect;
26321
- };
26322
- };
26323
- /** A `NodeTypeRegistry` edge in the connection. */
26324
- export interface NodeTypeRegistryEdge {
26150
+ /** A `Commit` edge in the connection. */
26151
+ export interface CommitEdge {
26325
26152
  cursor?: string | null;
26326
- /** The `NodeTypeRegistry` at the end of the edge. */
26327
- node?: NodeTypeRegistry | null;
26153
+ /** The `Commit` at the end of the edge. */
26154
+ node?: Commit | null;
26328
26155
  }
26329
- export type NodeTypeRegistryEdgeSelect = {
26156
+ export type CommitEdgeSelect = {
26330
26157
  cursor?: boolean;
26331
26158
  node?: {
26332
- select: NodeTypeRegistrySelect;
26159
+ select: CommitSelect;
26333
26160
  };
26334
26161
  };
26335
26162
  /** A `OrgMembershipDefault` edge in the connection. */
@@ -26344,6 +26171,18 @@ export type OrgMembershipDefaultEdgeSelect = {
26344
26171
  select: OrgMembershipDefaultSelect;
26345
26172
  };
26346
26173
  };
26174
+ /** A `RlsModule` edge in the connection. */
26175
+ export interface RlsModuleEdge {
26176
+ cursor?: string | null;
26177
+ /** The `RlsModule` at the end of the edge. */
26178
+ node?: RlsModule | null;
26179
+ }
26180
+ export type RlsModuleEdgeSelect = {
26181
+ cursor?: boolean;
26182
+ node?: {
26183
+ select: RlsModuleSelect;
26184
+ };
26185
+ };
26347
26186
  /** A `User` edge in the connection. */
26348
26187
  export interface UserEdge {
26349
26188
  cursor?: string | null;