@constructive-io/react 0.6.3 → 0.6.5

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 (65) hide show
  1. package/admin/hooks/queries/index.d.ts +1 -1
  2. package/admin/hooks/queries/index.js +1 -1
  3. package/admin/hooks/query-keys.d.ts +2 -2
  4. package/admin/hooks/query-keys.js +1 -1
  5. package/admin/orm/index.d.ts +5 -5
  6. package/admin/orm/query/index.d.ts +9 -9
  7. package/admin/orm/query/index.js +16 -16
  8. package/auth/orm/input-types.d.ts +0 -1
  9. package/auth/schema-types.d.ts +1 -3
  10. package/esm/admin/hooks/queries/index.d.ts +1 -1
  11. package/esm/admin/hooks/queries/index.js +1 -1
  12. package/esm/admin/hooks/query-keys.d.ts +2 -2
  13. package/esm/admin/hooks/query-keys.js +1 -1
  14. package/esm/admin/orm/index.d.ts +5 -5
  15. package/esm/admin/orm/query/index.d.ts +9 -9
  16. package/esm/admin/orm/query/index.js +16 -16
  17. package/esm/auth/orm/input-types.d.ts +0 -1
  18. package/esm/auth/schema-types.d.ts +1 -3
  19. package/esm/public/hooks/index.d.ts +1 -1
  20. package/esm/public/hooks/index.js +1 -1
  21. package/esm/public/hooks/invalidation.d.ts +18 -18
  22. package/esm/public/hooks/invalidation.js +49 -49
  23. package/esm/public/hooks/mutation-keys.d.ts +48 -48
  24. package/esm/public/hooks/mutation-keys.js +39 -39
  25. package/esm/public/hooks/mutations/index.d.ts +15 -15
  26. package/esm/public/hooks/mutations/index.js +15 -15
  27. package/esm/public/hooks/queries/index.d.ts +8 -8
  28. package/esm/public/hooks/queries/index.js +8 -8
  29. package/esm/public/hooks/query-keys.d.ts +46 -46
  30. package/esm/public/hooks/query-keys.js +26 -26
  31. package/esm/public/orm/index.d.ts +44 -44
  32. package/esm/public/orm/index.js +6 -6
  33. package/esm/public/orm/input-types.d.ts +570 -571
  34. package/esm/public/orm/models/index.d.ts +3 -3
  35. package/esm/public/orm/models/index.js +3 -3
  36. package/esm/public/orm/mutation/index.d.ts +46 -46
  37. package/esm/public/orm/mutation/index.js +66 -66
  38. package/esm/public/orm/query/index.d.ts +28 -28
  39. package/esm/public/orm/query/index.js +48 -48
  40. package/esm/public/schema-types.d.ts +752 -754
  41. package/esm/public/types.d.ts +36 -36
  42. package/package.json +6 -6
  43. package/public/hooks/index.d.ts +1 -1
  44. package/public/hooks/index.js +1 -1
  45. package/public/hooks/invalidation.d.ts +18 -18
  46. package/public/hooks/invalidation.js +48 -48
  47. package/public/hooks/mutation-keys.d.ts +48 -48
  48. package/public/hooks/mutation-keys.js +42 -42
  49. package/public/hooks/mutations/index.d.ts +15 -15
  50. package/public/hooks/mutations/index.js +15 -15
  51. package/public/hooks/queries/index.d.ts +8 -8
  52. package/public/hooks/queries/index.js +8 -8
  53. package/public/hooks/query-keys.d.ts +46 -46
  54. package/public/hooks/query-keys.js +29 -29
  55. package/public/orm/index.d.ts +44 -44
  56. package/public/orm/index.js +6 -6
  57. package/public/orm/input-types.d.ts +570 -571
  58. package/public/orm/models/index.d.ts +3 -3
  59. package/public/orm/models/index.js +9 -9
  60. package/public/orm/mutation/index.d.ts +46 -46
  61. package/public/orm/mutation/index.js +66 -66
  62. package/public/orm/query/index.d.ts +28 -28
  63. package/public/orm/query/index.js +48 -48
  64. package/public/schema-types.d.ts +752 -754
  65. package/public/types.d.ts +36 -36
@@ -248,6 +248,16 @@ export interface GetAllRecord {
248
248
  path?: string | null;
249
249
  data?: Record<string, unknown> | null;
250
250
  }
251
+ export interface Object {
252
+ hashUuid?: string | null;
253
+ id: string;
254
+ databaseId?: string | null;
255
+ kids?: string | null;
256
+ ktree?: string | null;
257
+ data?: Record<string, unknown> | null;
258
+ frzn?: boolean | null;
259
+ createdAt?: string | null;
260
+ }
251
261
  /** Defines available permissions as named bits within a bitmask, used by the RBAC system for access control */
252
262
  export interface AppPermission {
253
263
  id: string;
@@ -280,16 +290,6 @@ export interface OrgPermission {
280
290
  /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
281
291
  searchScore?: number | null;
282
292
  }
283
- export interface Object {
284
- hashUuid?: string | null;
285
- id: string;
286
- databaseId?: string | null;
287
- kids?: string | null;
288
- ktree?: string | null;
289
- data?: Record<string, unknown> | null;
290
- frzn?: boolean | null;
291
- createdAt?: string | null;
292
- }
293
293
  /** Defines the specific requirements that must be met to achieve a level */
294
294
  export interface AppLevelRequirement {
295
295
  id: string;
@@ -2182,6 +2182,29 @@ export interface MembershipType {
2182
2182
  /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
2183
2183
  searchScore?: number | null;
2184
2184
  }
2185
+ /** A commit records changes to the repository. */
2186
+ export interface Commit {
2187
+ /** The primary unique identifier for the commit. */
2188
+ id: string;
2189
+ /** The commit message */
2190
+ message?: string | null;
2191
+ /** The repository identifier */
2192
+ databaseId?: string | null;
2193
+ storeId?: string | null;
2194
+ /** Parent commits */
2195
+ parentIds?: string | null;
2196
+ /** The author of the commit */
2197
+ authorId?: string | null;
2198
+ /** The committer of the commit */
2199
+ committerId?: string | null;
2200
+ /** The root of the tree */
2201
+ treeId?: string | null;
2202
+ date?: string | null;
2203
+ /** TRGM similarity when searching `message`. Returns null when no trgm search filter is active. */
2204
+ messageTrgmSimilarity?: number | null;
2205
+ /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
2206
+ searchScore?: number | null;
2207
+ }
2185
2208
  /** Default membership settings per entity, controlling initial approval and verification state for new members */
2186
2209
  export interface AppMembershipDefault {
2187
2210
  id: string;
@@ -2217,29 +2240,6 @@ export interface RlsModule {
2217
2240
  /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
2218
2241
  searchScore?: number | null;
2219
2242
  }
2220
- /** A commit records changes to the repository. */
2221
- export interface Commit {
2222
- /** The primary unique identifier for the commit. */
2223
- id: string;
2224
- /** The commit message */
2225
- message?: string | null;
2226
- /** The repository identifier */
2227
- databaseId?: string | null;
2228
- storeId?: string | null;
2229
- /** Parent commits */
2230
- parentIds?: string | null;
2231
- /** The author of the commit */
2232
- authorId?: string | null;
2233
- /** The committer of the commit */
2234
- committerId?: string | null;
2235
- /** The root of the tree */
2236
- treeId?: string | null;
2237
- date?: string | null;
2238
- /** TRGM similarity when searching `message`. Returns null when no trgm search filter is active. */
2239
- messageTrgmSimilarity?: number | null;
2240
- /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
2241
- searchScore?: number | null;
2242
- }
2243
2243
  /** Default membership settings per entity, controlling initial approval and verification state for new members */
2244
2244
  export interface OrgMembershipDefault {
2245
2245
  id: string;
@@ -2338,6 +2338,22 @@ export interface Email {
2338
2338
  createdAt?: string | null;
2339
2339
  updatedAt?: string | null;
2340
2340
  }
2341
+ export interface User {
2342
+ id: string;
2343
+ username?: string | null;
2344
+ displayName?: string | null;
2345
+ profilePicture?: ConstructiveInternalTypeImage | null;
2346
+ searchTsv?: string | null;
2347
+ type?: number | null;
2348
+ createdAt?: string | null;
2349
+ updatedAt?: string | null;
2350
+ /** TSV rank when searching `searchTsv`. Returns null when no tsv search filter is active. */
2351
+ searchTsvRank?: number | null;
2352
+ /** TRGM similarity when searching `displayName`. Returns null when no trgm search filter is active. */
2353
+ displayNameTrgmSimilarity?: number | null;
2354
+ /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
2355
+ searchScore?: number | null;
2356
+ }
2341
2357
  export interface AstMigration {
2342
2358
  id: number;
2343
2359
  databaseId?: string | null;
@@ -2386,22 +2402,6 @@ export interface AppMembership {
2386
2402
  actorId?: string | null;
2387
2403
  profileId?: string | null;
2388
2404
  }
2389
- export interface User {
2390
- id: string;
2391
- username?: string | null;
2392
- displayName?: string | null;
2393
- profilePicture?: ConstructiveInternalTypeImage | null;
2394
- searchTsv?: string | null;
2395
- type?: number | null;
2396
- createdAt?: string | null;
2397
- updatedAt?: string | null;
2398
- /** TSV rank when searching `searchTsv`. Returns null when no tsv search filter is active. */
2399
- searchTsvRank?: number | null;
2400
- /** TRGM similarity when searching `displayName`. Returns null when no trgm search filter is active. */
2401
- displayNameTrgmSimilarity?: number | null;
2402
- /** Composite search relevance score (0..1, higher = more relevant). Computed by normalizing and averaging all active search signals. Returns null when no search filters are active. */
2403
- searchScore?: number | null;
2404
- }
2405
2405
  export interface HierarchyModule {
2406
2406
  id: string;
2407
2407
  databaseId?: string | null;
@@ -2463,12 +2463,12 @@ export interface OrgGetSubordinatesRecordRelations {
2463
2463
  }
2464
2464
  export interface GetAllRecordRelations {
2465
2465
  }
2466
+ export interface ObjectRelations {
2467
+ }
2466
2468
  export interface AppPermissionRelations {
2467
2469
  }
2468
2470
  export interface OrgPermissionRelations {
2469
2471
  }
2470
- export interface ObjectRelations {
2471
- }
2472
2472
  export interface AppLevelRequirementRelations {
2473
2473
  }
2474
2474
  export interface DatabaseRelations {
@@ -2964,6 +2964,8 @@ export interface NodeTypeRegistryRelations {
2964
2964
  }
2965
2965
  export interface MembershipTypeRelations {
2966
2966
  }
2967
+ export interface CommitRelations {
2968
+ }
2967
2969
  export interface AppMembershipDefaultRelations {
2968
2970
  }
2969
2971
  export interface RlsModuleRelations {
@@ -2974,8 +2976,6 @@ export interface RlsModuleRelations {
2974
2976
  sessionsTable?: Table | null;
2975
2977
  usersTable?: Table | null;
2976
2978
  }
2977
- export interface CommitRelations {
2978
- }
2979
2979
  export interface OrgMembershipDefaultRelations {
2980
2980
  entity?: User | null;
2981
2981
  }
@@ -2990,11 +2990,6 @@ export interface SqlMigrationRelations {
2990
2990
  export interface EmailRelations {
2991
2991
  owner?: User | null;
2992
2992
  }
2993
- export interface AstMigrationRelations {
2994
- }
2995
- export interface AppMembershipRelations {
2996
- actor?: User | null;
2997
- }
2998
2993
  export interface UserRelations {
2999
2994
  roleType?: RoleType | null;
3000
2995
  appMembershipByActorId?: AppMembership | null;
@@ -3033,6 +3028,11 @@ export interface UserRelations {
3033
3028
  orgClaimedInvitesByReceiverId?: ConnectionResult<OrgClaimedInvite>;
3034
3029
  orgClaimedInvitesBySenderId?: ConnectionResult<OrgClaimedInvite>;
3035
3030
  }
3031
+ export interface AstMigrationRelations {
3032
+ }
3033
+ export interface AppMembershipRelations {
3034
+ actor?: User | null;
3035
+ }
3036
3036
  export interface HierarchyModuleRelations {
3037
3037
  chartEdgeGrantsTable?: Table | null;
3038
3038
  chartEdgesTable?: Table | null;
@@ -3046,9 +3046,9 @@ export interface HierarchyModuleRelations {
3046
3046
  export type OrgGetManagersRecordWithRelations = OrgGetManagersRecord & OrgGetManagersRecordRelations;
3047
3047
  export type OrgGetSubordinatesRecordWithRelations = OrgGetSubordinatesRecord & OrgGetSubordinatesRecordRelations;
3048
3048
  export type GetAllRecordWithRelations = GetAllRecord & GetAllRecordRelations;
3049
+ export type ObjectWithRelations = Object & ObjectRelations;
3049
3050
  export type AppPermissionWithRelations = AppPermission & AppPermissionRelations;
3050
3051
  export type OrgPermissionWithRelations = OrgPermission & OrgPermissionRelations;
3051
- export type ObjectWithRelations = Object & ObjectRelations;
3052
3052
  export type AppLevelRequirementWithRelations = AppLevelRequirement & AppLevelRequirementRelations;
3053
3053
  export type DatabaseWithRelations = Database & DatabaseRelations;
3054
3054
  export type SchemaWithRelations = Schema & SchemaRelations;
@@ -3134,17 +3134,17 @@ export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRela
3134
3134
  export type ConnectedAccountWithRelations = ConnectedAccount & ConnectedAccountRelations;
3135
3135
  export type NodeTypeRegistryWithRelations = NodeTypeRegistry & NodeTypeRegistryRelations;
3136
3136
  export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelations;
3137
+ export type CommitWithRelations = Commit & CommitRelations;
3137
3138
  export type AppMembershipDefaultWithRelations = AppMembershipDefault & AppMembershipDefaultRelations;
3138
3139
  export type RlsModuleWithRelations = RlsModule & RlsModuleRelations;
3139
- export type CommitWithRelations = Commit & CommitRelations;
3140
3140
  export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
3141
3141
  export type AuditLogWithRelations = AuditLog & AuditLogRelations;
3142
3142
  export type AppLevelWithRelations = AppLevel & AppLevelRelations;
3143
3143
  export type SqlMigrationWithRelations = SqlMigration & SqlMigrationRelations;
3144
3144
  export type EmailWithRelations = Email & EmailRelations;
3145
+ export type UserWithRelations = User & UserRelations;
3145
3146
  export type AstMigrationWithRelations = AstMigration & AstMigrationRelations;
3146
3147
  export type AppMembershipWithRelations = AppMembership & AppMembershipRelations;
3147
- export type UserWithRelations = User & UserRelations;
3148
3148
  export type HierarchyModuleWithRelations = HierarchyModule & HierarchyModuleRelations;
3149
3149
  export type OrgGetManagersRecordSelect = {
3150
3150
  userId?: boolean;
@@ -3158,6 +3158,16 @@ export type GetAllRecordSelect = {
3158
3158
  path?: boolean;
3159
3159
  data?: boolean;
3160
3160
  };
3161
+ export type ObjectSelect = {
3162
+ hashUuid?: boolean;
3163
+ id?: boolean;
3164
+ databaseId?: boolean;
3165
+ kids?: boolean;
3166
+ ktree?: boolean;
3167
+ data?: boolean;
3168
+ frzn?: boolean;
3169
+ createdAt?: boolean;
3170
+ };
3161
3171
  export type AppPermissionSelect = {
3162
3172
  id?: boolean;
3163
3173
  name?: boolean;
@@ -3176,16 +3186,6 @@ export type OrgPermissionSelect = {
3176
3186
  descriptionTrgmSimilarity?: boolean;
3177
3187
  searchScore?: boolean;
3178
3188
  };
3179
- export type ObjectSelect = {
3180
- hashUuid?: boolean;
3181
- id?: boolean;
3182
- databaseId?: boolean;
3183
- kids?: boolean;
3184
- ktree?: boolean;
3185
- data?: boolean;
3186
- frzn?: boolean;
3187
- createdAt?: boolean;
3188
- };
3189
3189
  export type AppLevelRequirementSelect = {
3190
3190
  id?: boolean;
3191
3191
  name?: boolean;
@@ -5688,6 +5688,19 @@ export type MembershipTypeSelect = {
5688
5688
  prefixTrgmSimilarity?: boolean;
5689
5689
  searchScore?: boolean;
5690
5690
  };
5691
+ export type CommitSelect = {
5692
+ id?: boolean;
5693
+ message?: boolean;
5694
+ databaseId?: boolean;
5695
+ storeId?: boolean;
5696
+ parentIds?: boolean;
5697
+ authorId?: boolean;
5698
+ committerId?: boolean;
5699
+ treeId?: boolean;
5700
+ date?: boolean;
5701
+ messageTrgmSimilarity?: boolean;
5702
+ searchScore?: boolean;
5703
+ };
5691
5704
  export type AppMembershipDefaultSelect = {
5692
5705
  id?: boolean;
5693
5706
  createdAt?: boolean;
@@ -5733,19 +5746,6 @@ export type RlsModuleSelect = {
5733
5746
  select: TableSelect;
5734
5747
  };
5735
5748
  };
5736
- export type CommitSelect = {
5737
- id?: boolean;
5738
- message?: boolean;
5739
- databaseId?: boolean;
5740
- storeId?: boolean;
5741
- parentIds?: boolean;
5742
- authorId?: boolean;
5743
- committerId?: boolean;
5744
- treeId?: boolean;
5745
- date?: boolean;
5746
- messageTrgmSimilarity?: boolean;
5747
- searchScore?: boolean;
5748
- };
5749
5749
  export type OrgMembershipDefaultSelect = {
5750
5750
  id?: boolean;
5751
5751
  createdAt?: boolean;
@@ -5823,44 +5823,6 @@ export type EmailSelect = {
5823
5823
  select: UserSelect;
5824
5824
  };
5825
5825
  };
5826
- export type AstMigrationSelect = {
5827
- id?: boolean;
5828
- databaseId?: boolean;
5829
- name?: boolean;
5830
- requires?: boolean;
5831
- payload?: boolean;
5832
- deploys?: boolean;
5833
- deploy?: boolean;
5834
- revert?: boolean;
5835
- verify?: boolean;
5836
- createdAt?: boolean;
5837
- action?: boolean;
5838
- actionId?: boolean;
5839
- actorId?: boolean;
5840
- actionTrgmSimilarity?: boolean;
5841
- searchScore?: boolean;
5842
- };
5843
- export type AppMembershipSelect = {
5844
- id?: boolean;
5845
- createdAt?: boolean;
5846
- updatedAt?: boolean;
5847
- createdBy?: boolean;
5848
- updatedBy?: boolean;
5849
- isApproved?: boolean;
5850
- isBanned?: boolean;
5851
- isDisabled?: boolean;
5852
- isVerified?: boolean;
5853
- isActive?: boolean;
5854
- isOwner?: boolean;
5855
- isAdmin?: boolean;
5856
- permissions?: boolean;
5857
- granted?: boolean;
5858
- actorId?: boolean;
5859
- profileId?: boolean;
5860
- actor?: {
5861
- select: UserSelect;
5862
- };
5863
- };
5864
5826
  export type UserSelect = {
5865
5827
  id?: boolean;
5866
5828
  username?: boolean;
@@ -6081,6 +6043,44 @@ export type UserSelect = {
6081
6043
  orderBy?: OrgClaimedInviteOrderBy[];
6082
6044
  };
6083
6045
  };
6046
+ export type AstMigrationSelect = {
6047
+ id?: boolean;
6048
+ databaseId?: boolean;
6049
+ name?: boolean;
6050
+ requires?: boolean;
6051
+ payload?: boolean;
6052
+ deploys?: boolean;
6053
+ deploy?: boolean;
6054
+ revert?: boolean;
6055
+ verify?: boolean;
6056
+ createdAt?: boolean;
6057
+ action?: boolean;
6058
+ actionId?: boolean;
6059
+ actorId?: boolean;
6060
+ actionTrgmSimilarity?: boolean;
6061
+ searchScore?: boolean;
6062
+ };
6063
+ export type AppMembershipSelect = {
6064
+ id?: boolean;
6065
+ createdAt?: boolean;
6066
+ updatedAt?: boolean;
6067
+ createdBy?: boolean;
6068
+ updatedBy?: boolean;
6069
+ isApproved?: boolean;
6070
+ isBanned?: boolean;
6071
+ isDisabled?: boolean;
6072
+ isVerified?: boolean;
6073
+ isActive?: boolean;
6074
+ isOwner?: boolean;
6075
+ isAdmin?: boolean;
6076
+ permissions?: boolean;
6077
+ granted?: boolean;
6078
+ actorId?: boolean;
6079
+ profileId?: boolean;
6080
+ actor?: {
6081
+ select: UserSelect;
6082
+ };
6083
+ };
6084
6084
  export type HierarchyModuleSelect = {
6085
6085
  id?: boolean;
6086
6086
  databaseId?: boolean;
@@ -6159,17 +6159,30 @@ export interface GetAllRecordFilter {
6159
6159
  or?: GetAllRecordFilter[];
6160
6160
  not?: GetAllRecordFilter;
6161
6161
  }
6162
- export interface AppPermissionFilter {
6162
+ export interface ObjectFilter {
6163
+ hashUuid?: UUIDFilter;
6163
6164
  id?: UUIDFilter;
6164
- name?: StringFilter;
6165
- bitnum?: IntFilter;
6166
- bitstr?: BitStringFilter;
6167
- description?: StringFilter;
6168
- descriptionTrgmSimilarity?: FloatFilter;
6169
- searchScore?: FloatFilter;
6170
- and?: AppPermissionFilter[];
6171
- or?: AppPermissionFilter[];
6172
- not?: AppPermissionFilter;
6165
+ databaseId?: UUIDFilter;
6166
+ kids?: UUIDFilter;
6167
+ ktree?: StringFilter;
6168
+ data?: JSONFilter;
6169
+ frzn?: BooleanFilter;
6170
+ createdAt?: DatetimeFilter;
6171
+ and?: ObjectFilter[];
6172
+ or?: ObjectFilter[];
6173
+ not?: ObjectFilter;
6174
+ }
6175
+ export interface AppPermissionFilter {
6176
+ id?: UUIDFilter;
6177
+ name?: StringFilter;
6178
+ bitnum?: IntFilter;
6179
+ bitstr?: BitStringFilter;
6180
+ description?: StringFilter;
6181
+ descriptionTrgmSimilarity?: FloatFilter;
6182
+ searchScore?: FloatFilter;
6183
+ and?: AppPermissionFilter[];
6184
+ or?: AppPermissionFilter[];
6185
+ not?: AppPermissionFilter;
6173
6186
  }
6174
6187
  export interface OrgPermissionFilter {
6175
6188
  id?: UUIDFilter;
@@ -6183,19 +6196,6 @@ export interface OrgPermissionFilter {
6183
6196
  or?: OrgPermissionFilter[];
6184
6197
  not?: OrgPermissionFilter;
6185
6198
  }
6186
- export interface ObjectFilter {
6187
- hashUuid?: UUIDFilter;
6188
- id?: UUIDFilter;
6189
- databaseId?: UUIDFilter;
6190
- kids?: UUIDFilter;
6191
- ktree?: StringFilter;
6192
- data?: JSONFilter;
6193
- frzn?: BooleanFilter;
6194
- createdAt?: DatetimeFilter;
6195
- and?: ObjectFilter[];
6196
- or?: ObjectFilter[];
6197
- not?: ObjectFilter;
6198
- }
6199
6199
  export interface AppLevelRequirementFilter {
6200
6200
  id?: UUIDFilter;
6201
6201
  name?: StringFilter;
@@ -7720,6 +7720,22 @@ export interface MembershipTypeFilter {
7720
7720
  or?: MembershipTypeFilter[];
7721
7721
  not?: MembershipTypeFilter;
7722
7722
  }
7723
+ export interface CommitFilter {
7724
+ id?: UUIDFilter;
7725
+ message?: StringFilter;
7726
+ databaseId?: UUIDFilter;
7727
+ storeId?: UUIDFilter;
7728
+ parentIds?: UUIDFilter;
7729
+ authorId?: UUIDFilter;
7730
+ committerId?: UUIDFilter;
7731
+ treeId?: UUIDFilter;
7732
+ date?: DatetimeFilter;
7733
+ messageTrgmSimilarity?: FloatFilter;
7734
+ searchScore?: FloatFilter;
7735
+ and?: CommitFilter[];
7736
+ or?: CommitFilter[];
7737
+ not?: CommitFilter;
7738
+ }
7723
7739
  export interface AppMembershipDefaultFilter {
7724
7740
  id?: UUIDFilter;
7725
7741
  createdAt?: DatetimeFilter;
@@ -7753,22 +7769,6 @@ export interface RlsModuleFilter {
7753
7769
  or?: RlsModuleFilter[];
7754
7770
  not?: RlsModuleFilter;
7755
7771
  }
7756
- export interface CommitFilter {
7757
- id?: UUIDFilter;
7758
- message?: StringFilter;
7759
- databaseId?: UUIDFilter;
7760
- storeId?: UUIDFilter;
7761
- parentIds?: UUIDFilter;
7762
- authorId?: UUIDFilter;
7763
- committerId?: UUIDFilter;
7764
- treeId?: UUIDFilter;
7765
- date?: DatetimeFilter;
7766
- messageTrgmSimilarity?: FloatFilter;
7767
- searchScore?: FloatFilter;
7768
- and?: CommitFilter[];
7769
- or?: CommitFilter[];
7770
- not?: CommitFilter;
7771
- }
7772
7772
  export interface OrgMembershipDefaultFilter {
7773
7773
  id?: UUIDFilter;
7774
7774
  createdAt?: DatetimeFilter;
@@ -7849,6 +7849,22 @@ export interface EmailFilter {
7849
7849
  or?: EmailFilter[];
7850
7850
  not?: EmailFilter;
7851
7851
  }
7852
+ export interface UserFilter {
7853
+ id?: UUIDFilter;
7854
+ username?: StringFilter;
7855
+ displayName?: StringFilter;
7856
+ profilePicture?: StringFilter;
7857
+ searchTsv?: FullTextFilter;
7858
+ type?: IntFilter;
7859
+ createdAt?: DatetimeFilter;
7860
+ updatedAt?: DatetimeFilter;
7861
+ searchTsvRank?: FloatFilter;
7862
+ displayNameTrgmSimilarity?: FloatFilter;
7863
+ searchScore?: FloatFilter;
7864
+ and?: UserFilter[];
7865
+ or?: UserFilter[];
7866
+ not?: UserFilter;
7867
+ }
7852
7868
  export interface AstMigrationFilter {
7853
7869
  id?: IntFilter;
7854
7870
  databaseId?: UUIDFilter;
@@ -7890,22 +7906,6 @@ export interface AppMembershipFilter {
7890
7906
  or?: AppMembershipFilter[];
7891
7907
  not?: AppMembershipFilter;
7892
7908
  }
7893
- export interface UserFilter {
7894
- id?: UUIDFilter;
7895
- username?: StringFilter;
7896
- displayName?: StringFilter;
7897
- profilePicture?: StringFilter;
7898
- searchTsv?: FullTextFilter;
7899
- type?: IntFilter;
7900
- createdAt?: DatetimeFilter;
7901
- updatedAt?: DatetimeFilter;
7902
- searchTsvRank?: FloatFilter;
7903
- displayNameTrgmSimilarity?: FloatFilter;
7904
- searchScore?: FloatFilter;
7905
- and?: UserFilter[];
7906
- or?: UserFilter[];
7907
- not?: UserFilter;
7908
- }
7909
7909
  export interface HierarchyModuleFilter {
7910
7910
  id?: UUIDFilter;
7911
7911
  databaseId?: UUIDFilter;
@@ -7945,9 +7945,9 @@ export interface HierarchyModuleFilter {
7945
7945
  export type OrgGetManagersRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
7946
7946
  export type OrgGetSubordinatesRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'USER_ID_ASC' | 'USER_ID_DESC' | 'DEPTH_ASC' | 'DEPTH_DESC';
7947
7947
  export type GetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'DATA_ASC' | 'DATA_DESC';
7948
+ export type ObjectOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'HASH_UUID_ASC' | 'HASH_UUID_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FRZN_ASC' | 'FRZN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
7948
7949
  export type AppPermissionOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'BITSTR_ASC' | 'BITSTR_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
7949
7950
  export type OrgPermissionOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'BITSTR_ASC' | 'BITSTR_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
7950
- export type ObjectOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'HASH_UUID_ASC' | 'HASH_UUID_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'FRZN_ASC' | 'FRZN_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
7951
7951
  export type AppLevelRequirementOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LEVEL_ASC' | 'LEVEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'REQUIRED_COUNT_ASC' | 'REQUIRED_COUNT_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
7952
7952
  export type DatabaseOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SCHEMA_HASH_ASC' | 'SCHEMA_HASH_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SCHEMA_HASH_TRGM_SIMILARITY_ASC' | 'SCHEMA_HASH_TRGM_SIMILARITY_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'LABEL_TRGM_SIMILARITY_ASC' | 'LABEL_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
7953
7953
  export type SchemaOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SCHEMA_NAME_ASC' | 'SCHEMA_NAME_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'MODULE_ASC' | 'MODULE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'IS_PUBLIC_ASC' | 'IS_PUBLIC_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SCHEMA_NAME_TRGM_SIMILARITY_ASC' | 'SCHEMA_NAME_TRGM_SIMILARITY_DESC' | 'LABEL_TRGM_SIMILARITY_ASC' | 'LABEL_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'MODULE_TRGM_SIMILARITY_ASC' | 'MODULE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
@@ -8033,17 +8033,17 @@ export type OrgLimitDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'N
8033
8033
  export type ConnectedAccountOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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' | 'SERVICE_TRGM_SIMILARITY_ASC' | 'SERVICE_TRGM_SIMILARITY_DESC' | 'IDENTIFIER_TRGM_SIMILARITY_ASC' | 'IDENTIFIER_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8034
8034
  export type NodeTypeRegistryOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PARAMETER_SCHEMA_ASC' | 'PARAMETER_SCHEMA_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'SLUG_TRGM_SIMILARITY_ASC' | 'SLUG_TRGM_SIMILARITY_DESC' | 'CATEGORY_TRGM_SIMILARITY_ASC' | 'CATEGORY_TRGM_SIMILARITY_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8035
8035
  export type MembershipTypeOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8036
+ export type CommitOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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' | 'MESSAGE_TRGM_SIMILARITY_ASC' | 'MESSAGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8036
8037
  export type AppMembershipDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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';
8037
8038
  export type RlsModuleOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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' | 'AUTHENTICATE_TRGM_SIMILARITY_ASC' | 'AUTHENTICATE_TRGM_SIMILARITY_DESC' | 'AUTHENTICATE_STRICT_TRGM_SIMILARITY_ASC' | 'AUTHENTICATE_STRICT_TRGM_SIMILARITY_DESC' | 'CURRENT_ROLE_TRGM_SIMILARITY_ASC' | 'CURRENT_ROLE_TRGM_SIMILARITY_DESC' | 'CURRENT_ROLE_ID_TRGM_SIMILARITY_ASC' | 'CURRENT_ROLE_ID_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8038
- export type CommitOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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' | 'MESSAGE_TRGM_SIMILARITY_ASC' | 'MESSAGE_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8039
8039
  export type OrgMembershipDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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';
8040
8040
  export type AuditLogOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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' | 'USER_AGENT_TRGM_SIMILARITY_ASC' | 'USER_AGENT_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8041
8041
  export type AppLevelOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'DESCRIPTION_TRGM_SIMILARITY_ASC' | 'DESCRIPTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8042
8042
  export type SqlMigrationOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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' | 'NAME_TRGM_SIMILARITY_ASC' | 'NAME_TRGM_SIMILARITY_DESC' | 'DEPLOY_TRGM_SIMILARITY_ASC' | 'DEPLOY_TRGM_SIMILARITY_DESC' | 'CONTENT_TRGM_SIMILARITY_ASC' | 'CONTENT_TRGM_SIMILARITY_DESC' | 'REVERT_TRGM_SIMILARITY_ASC' | 'REVERT_TRGM_SIMILARITY_DESC' | 'VERIFY_TRGM_SIMILARITY_ASC' | 'VERIFY_TRGM_SIMILARITY_DESC' | 'ACTION_TRGM_SIMILARITY_ASC' | 'ACTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8043
8043
  export type EmailOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'EMAIL_ASC' | 'EMAIL_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';
8044
+ export type UserOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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';
8044
8045
  export type AstMigrationOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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' | 'ACTION_TRGM_SIMILARITY_ASC' | 'ACTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8045
8046
  export type AppMembershipOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
8046
- export type UserOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | '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';
8047
8047
  export type HierarchyModuleOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'CHART_EDGES_TABLE_ID_ASC' | 'CHART_EDGES_TABLE_ID_DESC' | 'CHART_EDGES_TABLE_NAME_ASC' | 'CHART_EDGES_TABLE_NAME_DESC' | 'HIERARCHY_SPRT_TABLE_ID_ASC' | 'HIERARCHY_SPRT_TABLE_ID_DESC' | 'HIERARCHY_SPRT_TABLE_NAME_ASC' | 'HIERARCHY_SPRT_TABLE_NAME_DESC' | 'CHART_EDGE_GRANTS_TABLE_ID_ASC' | 'CHART_EDGE_GRANTS_TABLE_ID_DESC' | 'CHART_EDGE_GRANTS_TABLE_NAME_ASC' | 'CHART_EDGE_GRANTS_TABLE_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'SPRT_TABLE_NAME_ASC' | 'SPRT_TABLE_NAME_DESC' | 'REBUILD_HIERARCHY_FUNCTION_ASC' | 'REBUILD_HIERARCHY_FUNCTION_DESC' | 'GET_SUBORDINATES_FUNCTION_ASC' | 'GET_SUBORDINATES_FUNCTION_DESC' | 'GET_MANAGERS_FUNCTION_ASC' | 'GET_MANAGERS_FUNCTION_DESC' | 'IS_MANAGER_OF_FUNCTION_ASC' | 'IS_MANAGER_OF_FUNCTION_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CHART_EDGES_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'CHART_EDGES_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'HIERARCHY_SPRT_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'HIERARCHY_SPRT_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'CHART_EDGE_GRANTS_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'CHART_EDGE_GRANTS_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'PREFIX_TRGM_SIMILARITY_ASC' | 'PREFIX_TRGM_SIMILARITY_DESC' | 'PRIVATE_SCHEMA_NAME_TRGM_SIMILARITY_ASC' | 'PRIVATE_SCHEMA_NAME_TRGM_SIMILARITY_DESC' | 'SPRT_TABLE_NAME_TRGM_SIMILARITY_ASC' | 'SPRT_TABLE_NAME_TRGM_SIMILARITY_DESC' | 'REBUILD_HIERARCHY_FUNCTION_TRGM_SIMILARITY_ASC' | 'REBUILD_HIERARCHY_FUNCTION_TRGM_SIMILARITY_DESC' | 'GET_SUBORDINATES_FUNCTION_TRGM_SIMILARITY_ASC' | 'GET_SUBORDINATES_FUNCTION_TRGM_SIMILARITY_DESC' | 'GET_MANAGERS_FUNCTION_TRGM_SIMILARITY_ASC' | 'GET_MANAGERS_FUNCTION_TRGM_SIMILARITY_DESC' | 'IS_MANAGER_OF_FUNCTION_TRGM_SIMILARITY_ASC' | 'IS_MANAGER_OF_FUNCTION_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
8048
8048
  export interface CreateOrgGetManagersRecordInput {
8049
8049
  clientMutationId?: string;
@@ -8105,6 +8105,33 @@ export interface DeleteGetAllRecordInput {
8105
8105
  clientMutationId?: string;
8106
8106
  id: string;
8107
8107
  }
8108
+ export interface CreateObjectInput {
8109
+ clientMutationId?: string;
8110
+ object: {
8111
+ databaseId: string;
8112
+ kids?: string[];
8113
+ ktree?: string[];
8114
+ data?: Record<string, unknown>;
8115
+ frzn?: boolean;
8116
+ };
8117
+ }
8118
+ export interface ObjectPatch {
8119
+ hashUuid?: string | null;
8120
+ databaseId?: string | null;
8121
+ kids?: string | null;
8122
+ ktree?: string | null;
8123
+ data?: Record<string, unknown> | null;
8124
+ frzn?: boolean | null;
8125
+ }
8126
+ export interface UpdateObjectInput {
8127
+ clientMutationId?: string;
8128
+ id: string;
8129
+ objectPatch: ObjectPatch;
8130
+ }
8131
+ export interface DeleteObjectInput {
8132
+ clientMutationId?: string;
8133
+ id: string;
8134
+ }
8108
8135
  export interface CreateAppPermissionInput {
8109
8136
  clientMutationId?: string;
8110
8137
  appPermission: {
@@ -8157,33 +8184,6 @@ export interface DeleteOrgPermissionInput {
8157
8184
  clientMutationId?: string;
8158
8185
  id: string;
8159
8186
  }
8160
- export interface CreateObjectInput {
8161
- clientMutationId?: string;
8162
- object: {
8163
- databaseId: string;
8164
- kids?: string[];
8165
- ktree?: string[];
8166
- data?: Record<string, unknown>;
8167
- frzn?: boolean;
8168
- };
8169
- }
8170
- export interface ObjectPatch {
8171
- hashUuid?: string | null;
8172
- databaseId?: string | null;
8173
- kids?: string | null;
8174
- ktree?: string | null;
8175
- data?: Record<string, unknown> | null;
8176
- frzn?: boolean | null;
8177
- }
8178
- export interface UpdateObjectInput {
8179
- clientMutationId?: string;
8180
- id: string;
8181
- objectPatch: ObjectPatch;
8182
- }
8183
- export interface DeleteObjectInput {
8184
- clientMutationId?: string;
8185
- id: string;
8186
- }
8187
8187
  export interface CreateAppLevelRequirementInput {
8188
8188
  clientMutationId?: string;
8189
8189
  appLevelRequirement: {
@@ -11159,6 +11159,40 @@ export interface DeleteMembershipTypeInput {
11159
11159
  clientMutationId?: string;
11160
11160
  id: number;
11161
11161
  }
11162
+ export interface CreateCommitInput {
11163
+ clientMutationId?: string;
11164
+ commit: {
11165
+ message?: string;
11166
+ databaseId: string;
11167
+ storeId: string;
11168
+ parentIds?: string[];
11169
+ authorId?: string;
11170
+ committerId?: string;
11171
+ treeId?: string;
11172
+ date?: string;
11173
+ };
11174
+ }
11175
+ export interface CommitPatch {
11176
+ message?: string | null;
11177
+ databaseId?: string | null;
11178
+ storeId?: string | null;
11179
+ parentIds?: string | null;
11180
+ authorId?: string | null;
11181
+ committerId?: string | null;
11182
+ treeId?: string | null;
11183
+ date?: string | null;
11184
+ messageTrgmSimilarity?: number | null;
11185
+ searchScore?: number | null;
11186
+ }
11187
+ export interface UpdateCommitInput {
11188
+ clientMutationId?: string;
11189
+ id: string;
11190
+ commitPatch: CommitPatch;
11191
+ }
11192
+ export interface DeleteCommitInput {
11193
+ clientMutationId?: string;
11194
+ id: string;
11195
+ }
11162
11196
  export interface CreateAppMembershipDefaultInput {
11163
11197
  clientMutationId?: string;
11164
11198
  appMembershipDefault: {
@@ -11224,40 +11258,6 @@ export interface DeleteRlsModuleInput {
11224
11258
  clientMutationId?: string;
11225
11259
  id: string;
11226
11260
  }
11227
- export interface CreateCommitInput {
11228
- clientMutationId?: string;
11229
- commit: {
11230
- message?: string;
11231
- databaseId: string;
11232
- storeId: string;
11233
- parentIds?: string[];
11234
- authorId?: string;
11235
- committerId?: string;
11236
- treeId?: string;
11237
- date?: string;
11238
- };
11239
- }
11240
- export interface CommitPatch {
11241
- message?: string | null;
11242
- databaseId?: string | null;
11243
- storeId?: string | null;
11244
- parentIds?: string | null;
11245
- authorId?: string | null;
11246
- committerId?: string | null;
11247
- treeId?: string | null;
11248
- date?: string | null;
11249
- messageTrgmSimilarity?: number | null;
11250
- searchScore?: number | null;
11251
- }
11252
- export interface UpdateCommitInput {
11253
- clientMutationId?: string;
11254
- id: string;
11255
- commitPatch: CommitPatch;
11256
- }
11257
- export interface DeleteCommitInput {
11258
- clientMutationId?: string;
11259
- id: string;
11260
- }
11261
11261
  export interface CreateOrgMembershipDefaultInput {
11262
11262
  clientMutationId?: string;
11263
11263
  orgMembershipDefault: {
@@ -11411,6 +11411,34 @@ export interface DeleteEmailInput {
11411
11411
  clientMutationId?: string;
11412
11412
  id: string;
11413
11413
  }
11414
+ export interface CreateUserInput {
11415
+ clientMutationId?: string;
11416
+ user: {
11417
+ username?: string;
11418
+ displayName?: string;
11419
+ profilePicture?: ConstructiveInternalTypeImage;
11420
+ type?: number;
11421
+ };
11422
+ }
11423
+ export interface UserPatch {
11424
+ username?: string | null;
11425
+ displayName?: string | null;
11426
+ profilePicture?: ConstructiveInternalTypeImage | null;
11427
+ searchTsv?: string | null;
11428
+ type?: number | null;
11429
+ searchTsvRank?: number | null;
11430
+ displayNameTrgmSimilarity?: number | null;
11431
+ searchScore?: number | null;
11432
+ }
11433
+ export interface UpdateUserInput {
11434
+ clientMutationId?: string;
11435
+ id: string;
11436
+ userPatch: UserPatch;
11437
+ }
11438
+ export interface DeleteUserInput {
11439
+ clientMutationId?: string;
11440
+ id: string;
11441
+ }
11414
11442
  export interface CreateAstMigrationInput {
11415
11443
  clientMutationId?: string;
11416
11444
  astMigration: {
@@ -11493,36 +11521,7 @@ export interface DeleteAppMembershipInput {
11493
11521
  clientMutationId?: string;
11494
11522
  id: string;
11495
11523
  }
11496
- export interface CreateUserInput {
11497
- clientMutationId?: string;
11498
- user: {
11499
- username?: string;
11500
- displayName?: string;
11501
- profilePicture?: ConstructiveInternalTypeImage;
11502
- searchTsv?: string;
11503
- type?: number;
11504
- };
11505
- }
11506
- export interface UserPatch {
11507
- username?: string | null;
11508
- displayName?: string | null;
11509
- profilePicture?: ConstructiveInternalTypeImage | null;
11510
- searchTsv?: string | null;
11511
- type?: number | null;
11512
- searchTsvRank?: number | null;
11513
- displayNameTrgmSimilarity?: number | null;
11514
- searchScore?: number | null;
11515
- }
11516
- export interface UpdateUserInput {
11517
- clientMutationId?: string;
11518
- id: string;
11519
- userPatch: UserPatch;
11520
- }
11521
- export interface DeleteUserInput {
11522
- clientMutationId?: string;
11523
- id: string;
11524
- }
11525
- export interface CreateHierarchyModuleInput {
11524
+ export interface CreateHierarchyModuleInput {
11526
11525
  clientMutationId?: string;
11527
11526
  hierarchyModule: {
11528
11527
  databaseId: string;
@@ -11629,6 +11628,12 @@ export interface VerifyEmailInput {
11629
11628
  emailId?: string;
11630
11629
  token?: string;
11631
11630
  }
11631
+ export interface RemoveNodeAtPathInput {
11632
+ clientMutationId?: string;
11633
+ dbId?: string;
11634
+ root?: string;
11635
+ path?: string[];
11636
+ }
11632
11637
  export interface ResetPasswordInput {
11633
11638
  clientMutationId?: string;
11634
11639
  roleId?: string;
@@ -11645,11 +11650,9 @@ export interface BootstrapUserInput {
11645
11650
  displayName?: string;
11646
11651
  returnApiKey?: boolean;
11647
11652
  }
11648
- export interface RemoveNodeAtPathInput {
11653
+ export interface SetFieldOrderInput {
11649
11654
  clientMutationId?: string;
11650
- dbId?: string;
11651
- root?: string;
11652
- path?: string[];
11655
+ fieldIds?: string[];
11653
11656
  }
11654
11657
  export interface SetDataAtPathInput {
11655
11658
  clientMutationId?: string;
@@ -11674,6 +11677,44 @@ export interface ProvisionDatabaseWithUserInput {
11674
11677
  pModules?: string[];
11675
11678
  pOptions?: Record<string, unknown>;
11676
11679
  }
11680
+ export interface InsertNodeAtPathInput {
11681
+ clientMutationId?: string;
11682
+ dbId?: string;
11683
+ root?: string;
11684
+ path?: string[];
11685
+ data?: Record<string, unknown>;
11686
+ kids?: string[];
11687
+ ktree?: string[];
11688
+ }
11689
+ export interface UpdateNodeAtPathInput {
11690
+ clientMutationId?: string;
11691
+ dbId?: string;
11692
+ root?: string;
11693
+ path?: string[];
11694
+ data?: Record<string, unknown>;
11695
+ kids?: string[];
11696
+ ktree?: string[];
11697
+ }
11698
+ export interface SetAndCommitInput {
11699
+ clientMutationId?: string;
11700
+ dbId?: string;
11701
+ storeId?: string;
11702
+ refname?: string;
11703
+ path?: string[];
11704
+ data?: Record<string, unknown>;
11705
+ kids?: string[];
11706
+ ktree?: string[];
11707
+ }
11708
+ export interface ApplyRlsInput {
11709
+ clientMutationId?: string;
11710
+ tableId?: string;
11711
+ grants?: Record<string, unknown>;
11712
+ policyType?: string;
11713
+ vars?: Record<string, unknown>;
11714
+ fieldIds?: string[];
11715
+ permissive?: boolean;
11716
+ name?: string;
11717
+ }
11677
11718
  export interface SignInOneTimeTokenInput {
11678
11719
  clientMutationId?: string;
11679
11720
  token?: string;
@@ -11709,10 +11750,6 @@ export interface SignUpInput {
11709
11750
  credentialKind?: string;
11710
11751
  csrfToken?: string;
11711
11752
  }
11712
- export interface SetFieldOrderInput {
11713
- clientMutationId?: string;
11714
- fieldIds?: string[];
11715
- }
11716
11753
  export interface OneTimeTokenInput {
11717
11754
  clientMutationId?: string;
11718
11755
  email?: string;
@@ -11720,44 +11757,6 @@ export interface OneTimeTokenInput {
11720
11757
  origin?: ConstructiveInternalTypeOrigin;
11721
11758
  rememberMe?: boolean;
11722
11759
  }
11723
- export interface InsertNodeAtPathInput {
11724
- clientMutationId?: string;
11725
- dbId?: string;
11726
- root?: string;
11727
- path?: string[];
11728
- data?: Record<string, unknown>;
11729
- kids?: string[];
11730
- ktree?: string[];
11731
- }
11732
- export interface UpdateNodeAtPathInput {
11733
- clientMutationId?: string;
11734
- dbId?: string;
11735
- root?: string;
11736
- path?: string[];
11737
- data?: Record<string, unknown>;
11738
- kids?: string[];
11739
- ktree?: string[];
11740
- }
11741
- export interface SetAndCommitInput {
11742
- clientMutationId?: string;
11743
- dbId?: string;
11744
- storeId?: string;
11745
- refname?: string;
11746
- path?: string[];
11747
- data?: Record<string, unknown>;
11748
- kids?: string[];
11749
- ktree?: string[];
11750
- }
11751
- export interface ApplyRlsInput {
11752
- clientMutationId?: string;
11753
- tableId?: string;
11754
- grants?: Record<string, unknown>;
11755
- policyType?: string;
11756
- vars?: Record<string, unknown>;
11757
- fieldIds?: string[];
11758
- permissive?: boolean;
11759
- name?: string;
11760
- }
11761
11760
  export interface ForgotPasswordInput {
11762
11761
  clientMutationId?: string;
11763
11762
  email?: ConstructiveInternalTypeEmail;
@@ -11793,6 +11792,25 @@ export interface IntervalInput {
11793
11792
  /** A quantity of years. */
11794
11793
  years?: number;
11795
11794
  }
11795
+ /** A connection to a list of `Object` values. */
11796
+ export interface ObjectConnection {
11797
+ nodes: Object[];
11798
+ edges: ObjectEdge[];
11799
+ pageInfo: PageInfo;
11800
+ totalCount: number;
11801
+ }
11802
+ export type ObjectConnectionSelect = {
11803
+ nodes?: {
11804
+ select: ObjectSelect;
11805
+ };
11806
+ edges?: {
11807
+ select: ObjectEdgeSelect;
11808
+ };
11809
+ pageInfo?: {
11810
+ select: PageInfoSelect;
11811
+ };
11812
+ totalCount?: boolean;
11813
+ };
11796
11814
  /** A connection to a list of `AppPermission` values. */
11797
11815
  export interface AppPermissionConnection {
11798
11816
  nodes: AppPermission[];
@@ -11831,25 +11849,6 @@ export type OrgPermissionConnectionSelect = {
11831
11849
  };
11832
11850
  totalCount?: boolean;
11833
11851
  };
11834
- /** A connection to a list of `Object` values. */
11835
- export interface ObjectConnection {
11836
- nodes: Object[];
11837
- edges: ObjectEdge[];
11838
- pageInfo: PageInfo;
11839
- totalCount: number;
11840
- }
11841
- export type ObjectConnectionSelect = {
11842
- nodes?: {
11843
- select: ObjectSelect;
11844
- };
11845
- edges?: {
11846
- select: ObjectEdgeSelect;
11847
- };
11848
- pageInfo?: {
11849
- select: PageInfoSelect;
11850
- };
11851
- totalCount?: boolean;
11852
- };
11853
11852
  /** A connection to a list of `AppLevelRequirement` values. */
11854
11853
  export interface AppLevelRequirementConnection {
11855
11854
  nodes: AppLevelRequirement[];
@@ -11941,6 +11940,14 @@ export type VerifyEmailPayloadSelect = {
11941
11940
  clientMutationId?: boolean;
11942
11941
  result?: boolean;
11943
11942
  };
11943
+ export interface RemoveNodeAtPathPayload {
11944
+ clientMutationId?: string | null;
11945
+ result?: string | null;
11946
+ }
11947
+ export type RemoveNodeAtPathPayloadSelect = {
11948
+ clientMutationId?: boolean;
11949
+ result?: boolean;
11950
+ };
11944
11951
  export interface ResetPasswordPayload {
11945
11952
  clientMutationId?: string | null;
11946
11953
  result?: boolean | null;
@@ -11959,13 +11966,11 @@ export type BootstrapUserPayloadSelect = {
11959
11966
  select: BootstrapUserRecordSelect;
11960
11967
  };
11961
11968
  };
11962
- export interface RemoveNodeAtPathPayload {
11969
+ export interface SetFieldOrderPayload {
11963
11970
  clientMutationId?: string | null;
11964
- result?: string | null;
11965
11971
  }
11966
- export type RemoveNodeAtPathPayloadSelect = {
11972
+ export type SetFieldOrderPayloadSelect = {
11967
11973
  clientMutationId?: boolean;
11968
- result?: boolean;
11969
11974
  };
11970
11975
  export interface SetDataAtPathPayload {
11971
11976
  clientMutationId?: string | null;
@@ -11993,6 +11998,36 @@ export type ProvisionDatabaseWithUserPayloadSelect = {
11993
11998
  select: ProvisionDatabaseWithUserRecordSelect;
11994
11999
  };
11995
12000
  };
12001
+ export interface InsertNodeAtPathPayload {
12002
+ clientMutationId?: string | null;
12003
+ result?: string | null;
12004
+ }
12005
+ export type InsertNodeAtPathPayloadSelect = {
12006
+ clientMutationId?: boolean;
12007
+ result?: boolean;
12008
+ };
12009
+ export interface UpdateNodeAtPathPayload {
12010
+ clientMutationId?: string | null;
12011
+ result?: string | null;
12012
+ }
12013
+ export type UpdateNodeAtPathPayloadSelect = {
12014
+ clientMutationId?: boolean;
12015
+ result?: boolean;
12016
+ };
12017
+ export interface SetAndCommitPayload {
12018
+ clientMutationId?: string | null;
12019
+ result?: string | null;
12020
+ }
12021
+ export type SetAndCommitPayloadSelect = {
12022
+ clientMutationId?: boolean;
12023
+ result?: boolean;
12024
+ };
12025
+ export interface ApplyRlsPayload {
12026
+ clientMutationId?: string | null;
12027
+ }
12028
+ export type ApplyRlsPayloadSelect = {
12029
+ clientMutationId?: boolean;
12030
+ };
11996
12031
  export interface SignInOneTimeTokenPayload {
11997
12032
  clientMutationId?: string | null;
11998
12033
  result?: SignInOneTimeTokenRecord | null;
@@ -12041,12 +12076,6 @@ export type SignUpPayloadSelect = {
12041
12076
  select: SignUpRecordSelect;
12042
12077
  };
12043
12078
  };
12044
- export interface SetFieldOrderPayload {
12045
- clientMutationId?: string | null;
12046
- }
12047
- export type SetFieldOrderPayloadSelect = {
12048
- clientMutationId?: boolean;
12049
- };
12050
12079
  export interface OneTimeTokenPayload {
12051
12080
  clientMutationId?: string | null;
12052
12081
  result?: string | null;
@@ -12055,36 +12084,6 @@ export type OneTimeTokenPayloadSelect = {
12055
12084
  clientMutationId?: boolean;
12056
12085
  result?: boolean;
12057
12086
  };
12058
- export interface InsertNodeAtPathPayload {
12059
- clientMutationId?: string | null;
12060
- result?: string | null;
12061
- }
12062
- export type InsertNodeAtPathPayloadSelect = {
12063
- clientMutationId?: boolean;
12064
- result?: boolean;
12065
- };
12066
- export interface UpdateNodeAtPathPayload {
12067
- clientMutationId?: string | null;
12068
- result?: string | null;
12069
- }
12070
- export type UpdateNodeAtPathPayloadSelect = {
12071
- clientMutationId?: boolean;
12072
- result?: boolean;
12073
- };
12074
- export interface SetAndCommitPayload {
12075
- clientMutationId?: string | null;
12076
- result?: string | null;
12077
- }
12078
- export type SetAndCommitPayloadSelect = {
12079
- clientMutationId?: boolean;
12080
- result?: boolean;
12081
- };
12082
- export interface ApplyRlsPayload {
12083
- clientMutationId?: string | null;
12084
- }
12085
- export type ApplyRlsPayloadSelect = {
12086
- clientMutationId?: boolean;
12087
- };
12088
12087
  export interface ForgotPasswordPayload {
12089
12088
  clientMutationId?: string | null;
12090
12089
  }
@@ -12119,6 +12118,51 @@ export type VerifyTotpPayloadSelect = {
12119
12118
  select: SessionSelect;
12120
12119
  };
12121
12120
  };
12121
+ export interface CreateObjectPayload {
12122
+ clientMutationId?: string | null;
12123
+ /** The `Object` that was created by this mutation. */
12124
+ object?: Object | null;
12125
+ objectEdge?: ObjectEdge | null;
12126
+ }
12127
+ export type CreateObjectPayloadSelect = {
12128
+ clientMutationId?: boolean;
12129
+ object?: {
12130
+ select: ObjectSelect;
12131
+ };
12132
+ objectEdge?: {
12133
+ select: ObjectEdgeSelect;
12134
+ };
12135
+ };
12136
+ export interface UpdateObjectPayload {
12137
+ clientMutationId?: string | null;
12138
+ /** The `Object` that was updated by this mutation. */
12139
+ object?: Object | null;
12140
+ objectEdge?: ObjectEdge | null;
12141
+ }
12142
+ export type UpdateObjectPayloadSelect = {
12143
+ clientMutationId?: boolean;
12144
+ object?: {
12145
+ select: ObjectSelect;
12146
+ };
12147
+ objectEdge?: {
12148
+ select: ObjectEdgeSelect;
12149
+ };
12150
+ };
12151
+ export interface DeleteObjectPayload {
12152
+ clientMutationId?: string | null;
12153
+ /** The `Object` that was deleted by this mutation. */
12154
+ object?: Object | null;
12155
+ objectEdge?: ObjectEdge | null;
12156
+ }
12157
+ export type DeleteObjectPayloadSelect = {
12158
+ clientMutationId?: boolean;
12159
+ object?: {
12160
+ select: ObjectSelect;
12161
+ };
12162
+ objectEdge?: {
12163
+ select: ObjectEdgeSelect;
12164
+ };
12165
+ };
12122
12166
  export interface CreateAppPermissionPayload {
12123
12167
  clientMutationId?: string | null;
12124
12168
  /** The `AppPermission` that was created by this mutation. */
@@ -12209,51 +12253,6 @@ export type DeleteOrgPermissionPayloadSelect = {
12209
12253
  select: OrgPermissionEdgeSelect;
12210
12254
  };
12211
12255
  };
12212
- export interface CreateObjectPayload {
12213
- clientMutationId?: string | null;
12214
- /** The `Object` that was created by this mutation. */
12215
- object?: Object | null;
12216
- objectEdge?: ObjectEdge | null;
12217
- }
12218
- export type CreateObjectPayloadSelect = {
12219
- clientMutationId?: boolean;
12220
- object?: {
12221
- select: ObjectSelect;
12222
- };
12223
- objectEdge?: {
12224
- select: ObjectEdgeSelect;
12225
- };
12226
- };
12227
- export interface UpdateObjectPayload {
12228
- clientMutationId?: string | null;
12229
- /** The `Object` that was updated by this mutation. */
12230
- object?: Object | null;
12231
- objectEdge?: ObjectEdge | null;
12232
- }
12233
- export type UpdateObjectPayloadSelect = {
12234
- clientMutationId?: boolean;
12235
- object?: {
12236
- select: ObjectSelect;
12237
- };
12238
- objectEdge?: {
12239
- select: ObjectEdgeSelect;
12240
- };
12241
- };
12242
- export interface DeleteObjectPayload {
12243
- clientMutationId?: string | null;
12244
- /** The `Object` that was deleted by this mutation. */
12245
- object?: Object | null;
12246
- objectEdge?: ObjectEdge | null;
12247
- }
12248
- export type DeleteObjectPayloadSelect = {
12249
- clientMutationId?: boolean;
12250
- object?: {
12251
- select: ObjectSelect;
12252
- };
12253
- objectEdge?: {
12254
- select: ObjectEdgeSelect;
12255
- };
12256
- };
12257
12256
  export interface CreateAppLevelRequirementPayload {
12258
12257
  clientMutationId?: string | null;
12259
12258
  /** The `AppLevelRequirement` that was created by this mutation. */
@@ -16049,34 +16048,79 @@ export type CreateMembershipTypePayloadSelect = {
16049
16048
  select: MembershipTypeEdgeSelect;
16050
16049
  };
16051
16050
  };
16052
- export interface UpdateMembershipTypePayload {
16051
+ export interface UpdateMembershipTypePayload {
16052
+ clientMutationId?: string | null;
16053
+ /** The `MembershipType` that was updated by this mutation. */
16054
+ membershipType?: MembershipType | null;
16055
+ membershipTypeEdge?: MembershipTypeEdge | null;
16056
+ }
16057
+ export type UpdateMembershipTypePayloadSelect = {
16058
+ clientMutationId?: boolean;
16059
+ membershipType?: {
16060
+ select: MembershipTypeSelect;
16061
+ };
16062
+ membershipTypeEdge?: {
16063
+ select: MembershipTypeEdgeSelect;
16064
+ };
16065
+ };
16066
+ export interface DeleteMembershipTypePayload {
16067
+ clientMutationId?: string | null;
16068
+ /** The `MembershipType` that was deleted by this mutation. */
16069
+ membershipType?: MembershipType | null;
16070
+ membershipTypeEdge?: MembershipTypeEdge | null;
16071
+ }
16072
+ export type DeleteMembershipTypePayloadSelect = {
16073
+ clientMutationId?: boolean;
16074
+ membershipType?: {
16075
+ select: MembershipTypeSelect;
16076
+ };
16077
+ membershipTypeEdge?: {
16078
+ select: MembershipTypeEdgeSelect;
16079
+ };
16080
+ };
16081
+ export interface CreateCommitPayload {
16082
+ clientMutationId?: string | null;
16083
+ /** The `Commit` that was created by this mutation. */
16084
+ commit?: Commit | null;
16085
+ commitEdge?: CommitEdge | null;
16086
+ }
16087
+ export type CreateCommitPayloadSelect = {
16088
+ clientMutationId?: boolean;
16089
+ commit?: {
16090
+ select: CommitSelect;
16091
+ };
16092
+ commitEdge?: {
16093
+ select: CommitEdgeSelect;
16094
+ };
16095
+ };
16096
+ export interface UpdateCommitPayload {
16053
16097
  clientMutationId?: string | null;
16054
- /** The `MembershipType` that was updated by this mutation. */
16055
- membershipType?: MembershipType | null;
16056
- membershipTypeEdge?: MembershipTypeEdge | null;
16098
+ /** The `Commit` that was updated by this mutation. */
16099
+ commit?: Commit | null;
16100
+ commitEdge?: CommitEdge | null;
16057
16101
  }
16058
- export type UpdateMembershipTypePayloadSelect = {
16102
+ export type UpdateCommitPayloadSelect = {
16059
16103
  clientMutationId?: boolean;
16060
- membershipType?: {
16061
- select: MembershipTypeSelect;
16104
+ commit?: {
16105
+ select: CommitSelect;
16062
16106
  };
16063
- membershipTypeEdge?: {
16064
- select: MembershipTypeEdgeSelect;
16107
+ commitEdge?: {
16108
+ select: CommitEdgeSelect;
16065
16109
  };
16066
16110
  };
16067
- export interface DeleteMembershipTypePayload {
16111
+ export interface DeleteCommitPayload {
16068
16112
  clientMutationId?: string | null;
16069
- /** The `MembershipType` that was deleted by this mutation. */
16070
- membershipType?: MembershipType | null;
16071
- membershipTypeEdge?: MembershipTypeEdge | null;
16113
+ /** The `Commit` that was deleted by this mutation. */
16114
+ commit?: Commit | null;
16115
+ commitEdge?: CommitEdge | null;
16072
16116
  }
16073
- export type DeleteMembershipTypePayloadSelect = {
16117
+ export type DeleteCommitPayloadSelect = {
16074
16118
  clientMutationId?: boolean;
16075
- membershipType?: {
16076
- select: MembershipTypeSelect;
16119
+ commit?: {
16120
+ select: CommitSelect;
16077
16121
  };
16078
- membershipTypeEdge?: {
16079
- select: MembershipTypeEdgeSelect;
16122
+ commitEdge?: {
16123
+ select: CommitEdgeSelect;
16080
16124
  };
16081
16125
  };
16082
16126
  export interface CreateAppMembershipDefaultPayload {
@@ -16169,51 +16213,6 @@ export type DeleteRlsModulePayloadSelect = {
16169
16213
  select: RlsModuleEdgeSelect;
16170
16214
  };
16171
16215
  };
16172
- export interface CreateCommitPayload {
16173
- clientMutationId?: string | null;
16174
- /** The `Commit` that was created by this mutation. */
16175
- commit?: Commit | null;
16176
- commitEdge?: CommitEdge | null;
16177
- }
16178
- export type CreateCommitPayloadSelect = {
16179
- clientMutationId?: boolean;
16180
- commit?: {
16181
- select: CommitSelect;
16182
- };
16183
- commitEdge?: {
16184
- select: CommitEdgeSelect;
16185
- };
16186
- };
16187
- export interface UpdateCommitPayload {
16188
- clientMutationId?: string | null;
16189
- /** The `Commit` that was updated by this mutation. */
16190
- commit?: Commit | null;
16191
- commitEdge?: CommitEdge | null;
16192
- }
16193
- export type UpdateCommitPayloadSelect = {
16194
- clientMutationId?: boolean;
16195
- commit?: {
16196
- select: CommitSelect;
16197
- };
16198
- commitEdge?: {
16199
- select: CommitEdgeSelect;
16200
- };
16201
- };
16202
- export interface DeleteCommitPayload {
16203
- clientMutationId?: string | null;
16204
- /** The `Commit` that was deleted by this mutation. */
16205
- commit?: Commit | null;
16206
- commitEdge?: CommitEdge | null;
16207
- }
16208
- export type DeleteCommitPayloadSelect = {
16209
- clientMutationId?: boolean;
16210
- commit?: {
16211
- select: CommitSelect;
16212
- };
16213
- commitEdge?: {
16214
- select: CommitEdgeSelect;
16215
- };
16216
- };
16217
16216
  export interface CreateOrgMembershipDefaultPayload {
16218
16217
  clientMutationId?: string | null;
16219
16218
  /** The `OrgMembershipDefault` that was created by this mutation. */
@@ -16405,6 +16404,51 @@ export type DeleteEmailPayloadSelect = {
16405
16404
  select: EmailEdgeSelect;
16406
16405
  };
16407
16406
  };
16407
+ export interface CreateUserPayload {
16408
+ clientMutationId?: string | null;
16409
+ /** The `User` that was created by this mutation. */
16410
+ user?: User | null;
16411
+ userEdge?: UserEdge | null;
16412
+ }
16413
+ export type CreateUserPayloadSelect = {
16414
+ clientMutationId?: boolean;
16415
+ user?: {
16416
+ select: UserSelect;
16417
+ };
16418
+ userEdge?: {
16419
+ select: UserEdgeSelect;
16420
+ };
16421
+ };
16422
+ export interface UpdateUserPayload {
16423
+ clientMutationId?: string | null;
16424
+ /** The `User` that was updated by this mutation. */
16425
+ user?: User | null;
16426
+ userEdge?: UserEdge | null;
16427
+ }
16428
+ export type UpdateUserPayloadSelect = {
16429
+ clientMutationId?: boolean;
16430
+ user?: {
16431
+ select: UserSelect;
16432
+ };
16433
+ userEdge?: {
16434
+ select: UserEdgeSelect;
16435
+ };
16436
+ };
16437
+ export interface DeleteUserPayload {
16438
+ clientMutationId?: string | null;
16439
+ /** The `User` that was deleted by this mutation. */
16440
+ user?: User | null;
16441
+ userEdge?: UserEdge | null;
16442
+ }
16443
+ export type DeleteUserPayloadSelect = {
16444
+ clientMutationId?: boolean;
16445
+ user?: {
16446
+ select: UserSelect;
16447
+ };
16448
+ userEdge?: {
16449
+ select: UserEdgeSelect;
16450
+ };
16451
+ };
16408
16452
  export interface CreateAstMigrationPayload {
16409
16453
  clientMutationId?: string | null;
16410
16454
  /** The `AstMigration` that was created by this mutation. */
@@ -16461,51 +16505,6 @@ export type DeleteAppMembershipPayloadSelect = {
16461
16505
  select: AppMembershipEdgeSelect;
16462
16506
  };
16463
16507
  };
16464
- export interface CreateUserPayload {
16465
- clientMutationId?: string | null;
16466
- /** The `User` that was created by this mutation. */
16467
- user?: User | null;
16468
- userEdge?: UserEdge | null;
16469
- }
16470
- export type CreateUserPayloadSelect = {
16471
- clientMutationId?: boolean;
16472
- user?: {
16473
- select: UserSelect;
16474
- };
16475
- userEdge?: {
16476
- select: UserEdgeSelect;
16477
- };
16478
- };
16479
- export interface UpdateUserPayload {
16480
- clientMutationId?: string | null;
16481
- /** The `User` that was updated by this mutation. */
16482
- user?: User | null;
16483
- userEdge?: UserEdge | null;
16484
- }
16485
- export type UpdateUserPayloadSelect = {
16486
- clientMutationId?: boolean;
16487
- user?: {
16488
- select: UserSelect;
16489
- };
16490
- userEdge?: {
16491
- select: UserEdgeSelect;
16492
- };
16493
- };
16494
- export interface DeleteUserPayload {
16495
- clientMutationId?: string | null;
16496
- /** The `User` that was deleted by this mutation. */
16497
- user?: User | null;
16498
- userEdge?: UserEdge | null;
16499
- }
16500
- export type DeleteUserPayloadSelect = {
16501
- clientMutationId?: boolean;
16502
- user?: {
16503
- select: UserSelect;
16504
- };
16505
- userEdge?: {
16506
- select: UserEdgeSelect;
16507
- };
16508
- };
16509
16508
  export interface CreateHierarchyModulePayload {
16510
16509
  clientMutationId?: string | null;
16511
16510
  /** The `HierarchyModule` that was created by this mutation. */
@@ -16551,16 +16550,16 @@ export type DeleteHierarchyModulePayloadSelect = {
16551
16550
  select: HierarchyModuleEdgeSelect;
16552
16551
  };
16553
16552
  };
16554
- /** A `AppPermission` edge in the connection. */
16555
- export interface AppPermissionEdge {
16553
+ /** A `Object` edge in the connection. */
16554
+ export interface ObjectEdge {
16556
16555
  cursor?: string | null;
16557
- /** The `AppPermission` at the end of the edge. */
16558
- node?: AppPermission | null;
16556
+ /** The `Object` at the end of the edge. */
16557
+ node?: Object | null;
16559
16558
  }
16560
- export type AppPermissionEdgeSelect = {
16559
+ export type ObjectEdgeSelect = {
16561
16560
  cursor?: boolean;
16562
16561
  node?: {
16563
- select: AppPermissionSelect;
16562
+ select: ObjectSelect;
16564
16563
  };
16565
16564
  };
16566
16565
  /** Information about pagination in a connection. */
@@ -16580,28 +16579,28 @@ export type PageInfoSelect = {
16580
16579
  startCursor?: boolean;
16581
16580
  endCursor?: boolean;
16582
16581
  };
16583
- /** A `OrgPermission` edge in the connection. */
16584
- export interface OrgPermissionEdge {
16582
+ /** A `AppPermission` edge in the connection. */
16583
+ export interface AppPermissionEdge {
16585
16584
  cursor?: string | null;
16586
- /** The `OrgPermission` at the end of the edge. */
16587
- node?: OrgPermission | null;
16585
+ /** The `AppPermission` at the end of the edge. */
16586
+ node?: AppPermission | null;
16588
16587
  }
16589
- export type OrgPermissionEdgeSelect = {
16588
+ export type AppPermissionEdgeSelect = {
16590
16589
  cursor?: boolean;
16591
16590
  node?: {
16592
- select: OrgPermissionSelect;
16591
+ select: AppPermissionSelect;
16593
16592
  };
16594
16593
  };
16595
- /** A `Object` edge in the connection. */
16596
- export interface ObjectEdge {
16594
+ /** A `OrgPermission` edge in the connection. */
16595
+ export interface OrgPermissionEdge {
16597
16596
  cursor?: string | null;
16598
- /** The `Object` at the end of the edge. */
16599
- node?: Object | null;
16597
+ /** The `OrgPermission` at the end of the edge. */
16598
+ node?: OrgPermission | null;
16600
16599
  }
16601
- export type ObjectEdgeSelect = {
16600
+ export type OrgPermissionEdgeSelect = {
16602
16601
  cursor?: boolean;
16603
16602
  node?: {
16604
- select: ObjectSelect;
16603
+ select: OrgPermissionSelect;
16605
16604
  };
16606
16605
  };
16607
16606
  /** A `AppLevelRequirement` edge in the connection. */
@@ -17805,6 +17804,18 @@ export type MembershipTypeEdgeSelect = {
17805
17804
  select: MembershipTypeSelect;
17806
17805
  };
17807
17806
  };
17807
+ /** A `Commit` edge in the connection. */
17808
+ export interface CommitEdge {
17809
+ cursor?: string | null;
17810
+ /** The `Commit` at the end of the edge. */
17811
+ node?: Commit | null;
17812
+ }
17813
+ export type CommitEdgeSelect = {
17814
+ cursor?: boolean;
17815
+ node?: {
17816
+ select: CommitSelect;
17817
+ };
17818
+ };
17808
17819
  /** A `AppMembershipDefault` edge in the connection. */
17809
17820
  export interface AppMembershipDefaultEdge {
17810
17821
  cursor?: string | null;
@@ -17829,18 +17840,6 @@ export type RlsModuleEdgeSelect = {
17829
17840
  select: RlsModuleSelect;
17830
17841
  };
17831
17842
  };
17832
- /** A `Commit` edge in the connection. */
17833
- export interface CommitEdge {
17834
- cursor?: string | null;
17835
- /** The `Commit` at the end of the edge. */
17836
- node?: Commit | null;
17837
- }
17838
- export type CommitEdgeSelect = {
17839
- cursor?: boolean;
17840
- node?: {
17841
- select: CommitSelect;
17842
- };
17843
- };
17844
17843
  /** A `OrgMembershipDefault` edge in the connection. */
17845
17844
  export interface OrgMembershipDefaultEdge {
17846
17845
  cursor?: string | null;
@@ -17889,18 +17888,6 @@ export type EmailEdgeSelect = {
17889
17888
  select: EmailSelect;
17890
17889
  };
17891
17890
  };
17892
- /** A `AppMembership` edge in the connection. */
17893
- export interface AppMembershipEdge {
17894
- cursor?: string | null;
17895
- /** The `AppMembership` at the end of the edge. */
17896
- node?: AppMembership | null;
17897
- }
17898
- export type AppMembershipEdgeSelect = {
17899
- cursor?: boolean;
17900
- node?: {
17901
- select: AppMembershipSelect;
17902
- };
17903
- };
17904
17891
  /** A `User` edge in the connection. */
17905
17892
  export interface UserEdge {
17906
17893
  cursor?: string | null;
@@ -17913,6 +17900,18 @@ export type UserEdgeSelect = {
17913
17900
  select: UserSelect;
17914
17901
  };
17915
17902
  };
17903
+ /** A `AppMembership` edge in the connection. */
17904
+ export interface AppMembershipEdge {
17905
+ cursor?: string | null;
17906
+ /** The `AppMembership` at the end of the edge. */
17907
+ node?: AppMembership | null;
17908
+ }
17909
+ export type AppMembershipEdgeSelect = {
17910
+ cursor?: boolean;
17911
+ node?: {
17912
+ select: AppMembershipSelect;
17913
+ };
17914
+ };
17916
17915
  /** A `HierarchyModule` edge in the connection. */
17917
17916
  export interface HierarchyModuleEdge {
17918
17917
  cursor?: string | null;