@constructive-io/react 0.10.7 → 0.10.9

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 (45) hide show
  1. package/admin/schema-types.d.ts +3 -0
  2. package/auth/schema-types.d.ts +3 -0
  3. package/esm/admin/schema-types.d.ts +3 -0
  4. package/esm/auth/schema-types.d.ts +3 -0
  5. package/esm/objects/schema-types.d.ts +3 -0
  6. package/esm/public/hooks/index.d.ts +1 -1
  7. package/esm/public/hooks/index.js +1 -1
  8. package/esm/public/hooks/invalidation.d.ts +6 -6
  9. package/esm/public/hooks/invalidation.js +17 -17
  10. package/esm/public/hooks/mutation-keys.d.ts +12 -12
  11. package/esm/public/hooks/mutation-keys.js +7 -7
  12. package/esm/public/hooks/mutations/index.d.ts +3 -3
  13. package/esm/public/hooks/mutations/index.js +3 -3
  14. package/esm/public/hooks/queries/index.d.ts +2 -2
  15. package/esm/public/hooks/queries/index.js +2 -2
  16. package/esm/public/hooks/query-keys.d.ts +14 -14
  17. package/esm/public/hooks/query-keys.js +8 -8
  18. package/esm/public/orm/index.d.ts +2 -2
  19. package/esm/public/orm/index.js +2 -2
  20. package/esm/public/orm/input-types.d.ts +161 -147
  21. package/esm/public/orm/models/index.d.ts +1 -1
  22. package/esm/public/orm/models/index.js +1 -1
  23. package/esm/public/schema-types.d.ts +130 -115
  24. package/esm/public/types.d.ts +13 -11
  25. package/objects/schema-types.d.ts +3 -0
  26. package/package.json +3 -3
  27. package/public/hooks/index.d.ts +1 -1
  28. package/public/hooks/index.js +1 -1
  29. package/public/hooks/invalidation.d.ts +6 -6
  30. package/public/hooks/invalidation.js +16 -16
  31. package/public/hooks/mutation-keys.d.ts +12 -12
  32. package/public/hooks/mutation-keys.js +9 -9
  33. package/public/hooks/mutations/index.d.ts +3 -3
  34. package/public/hooks/mutations/index.js +3 -3
  35. package/public/hooks/queries/index.d.ts +2 -2
  36. package/public/hooks/queries/index.js +2 -2
  37. package/public/hooks/query-keys.d.ts +14 -14
  38. package/public/hooks/query-keys.js +10 -10
  39. package/public/orm/index.d.ts +2 -2
  40. package/public/orm/index.js +2 -2
  41. package/public/orm/input-types.d.ts +161 -147
  42. package/public/orm/models/index.d.ts +1 -1
  43. package/public/orm/models/index.js +4 -4
  44. package/public/schema-types.d.ts +130 -115
  45. package/public/types.d.ts +13 -11
@@ -190,8 +190,6 @@ export type MigrateFileOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID
190
190
  export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
191
191
  /** Methods to use when ordering `OrgLimitDefault`. */
192
192
  export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
193
- /** Methods to use when ordering `NodeTypeRegistry`. */
194
- export type NodeTypeRegistryOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC';
195
193
  /** Methods to use when ordering `MembershipType`. */
196
194
  export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
197
195
  /** Methods to use when ordering `Object`. */
@@ -206,6 +204,8 @@ export type OrgPermissionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_
206
204
  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';
207
205
  /** Methods to use when ordering `RlsModule`. */
208
206
  export type RlsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
207
+ /** Methods to use when ordering `NodeTypeRegistry`. */
208
+ export type NodeTypeRegistryOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC';
209
209
  /** Methods to use when ordering `OrgMembershipDefault`. */
210
210
  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' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
211
211
  /** Methods to use when ordering `AppLevelRequirement`. */
@@ -5857,33 +5857,6 @@ export interface OrgLimitDefaultFilter {
5857
5857
  /** Negates the expression. */
5858
5858
  not?: OrgLimitDefaultFilter;
5859
5859
  }
5860
- /** A filter to be used against `NodeTypeRegistry` object types. All fields are combined with a logical ‘and.’ */
5861
- export interface NodeTypeRegistryFilter {
5862
- /** Filter by the object’s `name` field. */
5863
- name?: StringFilter;
5864
- /** Filter by the object’s `slug` field. */
5865
- slug?: StringFilter;
5866
- /** Filter by the object’s `category` field. */
5867
- category?: StringFilter;
5868
- /** Filter by the object’s `displayName` field. */
5869
- displayName?: StringFilter;
5870
- /** Filter by the object’s `description` field. */
5871
- description?: StringFilter;
5872
- /** Filter by the object’s `parameterSchema` field. */
5873
- parameterSchema?: JSONFilter;
5874
- /** Filter by the object’s `tags` field. */
5875
- tags?: StringListFilter;
5876
- /** Filter by the object’s `createdAt` field. */
5877
- createdAt?: DatetimeFilter;
5878
- /** Filter by the object’s `updatedAt` field. */
5879
- updatedAt?: DatetimeFilter;
5880
- /** Checks for all expressions in this list. */
5881
- and?: NodeTypeRegistryFilter[];
5882
- /** Checks for any expressions in this list. */
5883
- or?: NodeTypeRegistryFilter[];
5884
- /** Negates the expression. */
5885
- not?: NodeTypeRegistryFilter;
5886
- }
5887
5860
  /** A filter to be used against `MembershipType` object types. All fields are combined with a logical ‘and.’ */
5888
5861
  export interface MembershipTypeFilter {
5889
5862
  /** Filter by the object’s `id` field. */
@@ -6012,6 +5985,37 @@ export interface AppMembershipDefaultFilter {
6012
5985
  /** Negates the expression. */
6013
5986
  not?: AppMembershipDefaultFilter;
6014
5987
  }
5988
+ /** A filter to be used against `NodeTypeRegistry` object types. All fields are combined with a logical ‘and.’ */
5989
+ export interface NodeTypeRegistryFilter {
5990
+ /** Filter by the object’s `name` field. */
5991
+ name?: StringFilter;
5992
+ /** Filter by the object’s `slug` field. */
5993
+ slug?: StringFilter;
5994
+ /** Filter by the object’s `category` field. */
5995
+ category?: StringFilter;
5996
+ /** Filter by the object’s `displayName` field. */
5997
+ displayName?: StringFilter;
5998
+ /** Filter by the object’s `description` field. */
5999
+ description?: StringFilter;
6000
+ /** Filter by the object’s `summary` field. */
6001
+ summary?: StringFilter;
6002
+ /** Filter by the object’s `parameterSchema` field. */
6003
+ parameterSchema?: JSONFilter;
6004
+ /** Filter by the object’s `guidance` field. */
6005
+ guidance?: JSONFilter;
6006
+ /** Filter by the object’s `tags` field. */
6007
+ tags?: StringListFilter;
6008
+ /** Filter by the object’s `createdAt` field. */
6009
+ createdAt?: DatetimeFilter;
6010
+ /** Filter by the object’s `updatedAt` field. */
6011
+ updatedAt?: DatetimeFilter;
6012
+ /** Checks for all expressions in this list. */
6013
+ and?: NodeTypeRegistryFilter[];
6014
+ /** Checks for any expressions in this list. */
6015
+ or?: NodeTypeRegistryFilter[];
6016
+ /** Negates the expression. */
6017
+ not?: NodeTypeRegistryFilter;
6018
+ }
6015
6019
  /** A filter to be used against `AppLevelRequirement` object types. All fields are combined with a logical ‘and.’ */
6016
6020
  export interface AppLevelRequirementFilter {
6017
6021
  /** Filter by the object’s `id` field. */
@@ -6938,30 +6942,6 @@ export interface OrgChartEdgeGrantInput {
6938
6942
  /** Timestamp when this grant or revocation was recorded */
6939
6943
  createdAt?: string;
6940
6944
  }
6941
- export interface CreateNodeTypeRegistryInput {
6942
- clientMutationId?: string;
6943
- /** The `NodeTypeRegistry` to be created by this mutation. */
6944
- nodeTypeRegistry: NodeTypeRegistryInput;
6945
- }
6946
- /** An input for mutations affecting `NodeTypeRegistry` */
6947
- export interface NodeTypeRegistryInput {
6948
- /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
6949
- name: string;
6950
- /** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
6951
- slug: string;
6952
- /** Node type category: authz (authorization semantics), data (table-level behaviors), view (view query types), relation (relational structure between tables) */
6953
- category: string;
6954
- /** Human-readable display name for UI */
6955
- displayName?: string;
6956
- /** Description of what this node type does */
6957
- description?: string;
6958
- /** JSON Schema defining valid parameters for this node type */
6959
- parameterSchema?: unknown;
6960
- /** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
6961
- tags?: string[];
6962
- createdAt?: string;
6963
- updatedAt?: string;
6964
- }
6965
6945
  export interface CreateMembershipTypeInput {
6966
6946
  clientMutationId?: string;
6967
6947
  /** The `MembershipType` to be created by this mutation. */
@@ -7209,6 +7189,34 @@ export interface SessionsModuleInput {
7209
7189
  sessionCredentialsTable?: string;
7210
7190
  authSettingsTable?: string;
7211
7191
  }
7192
+ export interface CreateNodeTypeRegistryInput {
7193
+ clientMutationId?: string;
7194
+ /** The `NodeTypeRegistry` to be created by this mutation. */
7195
+ nodeTypeRegistry: NodeTypeRegistryInput;
7196
+ }
7197
+ /** An input for mutations affecting `NodeTypeRegistry` */
7198
+ export interface NodeTypeRegistryInput {
7199
+ /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
7200
+ name: string;
7201
+ /** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
7202
+ slug: string;
7203
+ /** Node type category: authz (authorization semantics), data (table-level behaviors), view (view query types), relation (relational structure between tables) */
7204
+ category: string;
7205
+ /** Human-readable display name for UI */
7206
+ displayName?: string;
7207
+ /** Description of what this node type does */
7208
+ description?: string;
7209
+ /** Casual, approachable marketing description for onboarding UIs. Explains what the node type does and when you would use it in plain language. */
7210
+ summary?: string;
7211
+ /** JSON Schema defining valid parameters for this node type */
7212
+ parameterSchema?: unknown;
7213
+ /** 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 */
7214
+ guidance?: unknown;
7215
+ /** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
7216
+ tags?: string[];
7217
+ createdAt?: string;
7218
+ updatedAt?: string;
7219
+ }
7212
7220
  export interface CreateOrgLimitInput {
7213
7221
  clientMutationId?: string;
7214
7222
  /** The `OrgLimit` to be created by this mutation. */
@@ -9256,32 +9264,6 @@ export interface OrgChartEdgeGrantPatch {
9256
9264
  /** Timestamp when this grant or revocation was recorded */
9257
9265
  createdAt?: string;
9258
9266
  }
9259
- export interface UpdateNodeTypeRegistryInput {
9260
- clientMutationId?: string;
9261
- /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
9262
- name: string;
9263
- /** An object where the defined keys will be set on the `NodeTypeRegistry` being updated. */
9264
- nodeTypeRegistryPatch: NodeTypeRegistryPatch;
9265
- }
9266
- /** Represents an update to a `NodeTypeRegistry`. Fields that are set will be updated. */
9267
- export interface NodeTypeRegistryPatch {
9268
- /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
9269
- name?: string;
9270
- /** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
9271
- slug?: string;
9272
- /** Node type category: authz (authorization semantics), data (table-level behaviors), view (view query types), relation (relational structure between tables) */
9273
- category?: string;
9274
- /** Human-readable display name for UI */
9275
- displayName?: string;
9276
- /** Description of what this node type does */
9277
- description?: string;
9278
- /** JSON Schema defining valid parameters for this node type */
9279
- parameterSchema?: unknown;
9280
- /** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
9281
- tags?: string[];
9282
- createdAt?: string;
9283
- updatedAt?: string;
9284
- }
9285
9267
  export interface UpdateMembershipTypeInput {
9286
9268
  clientMutationId?: string;
9287
9269
  /** Integer identifier for the membership type (1=App, 2=Organization, 3=Group) */
@@ -9551,6 +9533,36 @@ export interface SessionsModulePatch {
9551
9533
  sessionCredentialsTable?: string;
9552
9534
  authSettingsTable?: string;
9553
9535
  }
9536
+ export interface UpdateNodeTypeRegistryInput {
9537
+ clientMutationId?: string;
9538
+ /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
9539
+ name: string;
9540
+ /** An object where the defined keys will be set on the `NodeTypeRegistry` being updated. */
9541
+ nodeTypeRegistryPatch: NodeTypeRegistryPatch;
9542
+ }
9543
+ /** Represents an update to a `NodeTypeRegistry`. Fields that are set will be updated. */
9544
+ export interface NodeTypeRegistryPatch {
9545
+ /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
9546
+ name?: string;
9547
+ /** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
9548
+ slug?: string;
9549
+ /** Node type category: authz (authorization semantics), data (table-level behaviors), view (view query types), relation (relational structure between tables) */
9550
+ category?: string;
9551
+ /** Human-readable display name for UI */
9552
+ displayName?: string;
9553
+ /** Description of what this node type does */
9554
+ description?: string;
9555
+ /** Casual, approachable marketing description for onboarding UIs. Explains what the node type does and when you would use it in plain language. */
9556
+ summary?: string;
9557
+ /** JSON Schema defining valid parameters for this node type */
9558
+ parameterSchema?: unknown;
9559
+ /** 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 */
9560
+ guidance?: unknown;
9561
+ /** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
9562
+ tags?: string[];
9563
+ createdAt?: string;
9564
+ updatedAt?: string;
9565
+ }
9554
9566
  export interface UpdateOrgLimitInput {
9555
9567
  clientMutationId?: string;
9556
9568
  id: string;
@@ -11132,11 +11144,6 @@ export interface DeleteOrgChartEdgeGrantInput {
11132
11144
  clientMutationId?: string;
11133
11145
  id: string;
11134
11146
  }
11135
- export interface DeleteNodeTypeRegistryInput {
11136
- clientMutationId?: string;
11137
- /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
11138
- name: string;
11139
- }
11140
11147
  export interface DeleteMembershipTypeInput {
11141
11148
  clientMutationId?: string;
11142
11149
  /** Integer identifier for the membership type (1=App, 2=Organization, 3=Group) */
@@ -11199,6 +11206,11 @@ export interface DeleteSessionsModuleInput {
11199
11206
  clientMutationId?: string;
11200
11207
  id: string;
11201
11208
  }
11209
+ export interface DeleteNodeTypeRegistryInput {
11210
+ clientMutationId?: string;
11211
+ /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
11212
+ name: string;
11213
+ }
11202
11214
  export interface DeleteOrgLimitInput {
11203
11215
  clientMutationId?: string;
11204
11216
  id: string;
@@ -11723,13 +11735,6 @@ export interface OrgChartEdgeGrantConnection {
11723
11735
  pageInfo: PageInfo;
11724
11736
  totalCount: number;
11725
11737
  }
11726
- /** A connection to a list of `NodeTypeRegistry` values. */
11727
- export interface NodeTypeRegistryConnection {
11728
- nodes: NodeTypeRegistry[];
11729
- edges: NodeTypeRegistryEdge[];
11730
- pageInfo: PageInfo;
11731
- totalCount: number;
11732
- }
11733
11738
  /** A connection to a list of `MembershipType` values. */
11734
11739
  export interface MembershipTypeConnection {
11735
11740
  nodes: MembershipType[];
@@ -11807,6 +11812,13 @@ export interface SessionsModuleConnection {
11807
11812
  pageInfo: PageInfo;
11808
11813
  totalCount: number;
11809
11814
  }
11815
+ /** A connection to a list of `NodeTypeRegistry` values. */
11816
+ export interface NodeTypeRegistryConnection {
11817
+ nodes: NodeTypeRegistry[];
11818
+ edges: NodeTypeRegistryEdge[];
11819
+ pageInfo: PageInfo;
11820
+ totalCount: number;
11821
+ }
11810
11822
  /** A connection to a list of `OrgLimit` values. */
11811
11823
  export interface OrgLimitConnection {
11812
11824
  nodes: OrgLimit[];
@@ -12523,12 +12535,6 @@ export interface CreateOrgChartEdgeGrantPayload {
12523
12535
  orgChartEdgeGrant?: OrgChartEdgeGrant | null;
12524
12536
  orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
12525
12537
  }
12526
- export interface CreateNodeTypeRegistryPayload {
12527
- clientMutationId?: string | null;
12528
- /** The `NodeTypeRegistry` that was created by this mutation. */
12529
- nodeTypeRegistry?: NodeTypeRegistry | null;
12530
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
12531
- }
12532
12538
  export interface CreateMembershipTypePayload {
12533
12539
  clientMutationId?: string | null;
12534
12540
  /** The `MembershipType` that was created by this mutation. */
@@ -12613,6 +12619,12 @@ export interface CreateSessionsModulePayload {
12613
12619
  sessionsModule?: SessionsModule | null;
12614
12620
  sessionsModuleEdge?: SessionsModuleEdge | null;
12615
12621
  }
12622
+ export interface CreateNodeTypeRegistryPayload {
12623
+ clientMutationId?: string | null;
12624
+ /** The `NodeTypeRegistry` that was created by this mutation. */
12625
+ nodeTypeRegistry?: NodeTypeRegistry | null;
12626
+ nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
12627
+ }
12616
12628
  export interface CreateOrgLimitPayload {
12617
12629
  clientMutationId?: string | null;
12618
12630
  /** The `OrgLimit` that was created by this mutation. */
@@ -13139,12 +13151,6 @@ export interface UpdateOrgChartEdgeGrantPayload {
13139
13151
  orgChartEdgeGrant?: OrgChartEdgeGrant | null;
13140
13152
  orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
13141
13153
  }
13142
- export interface UpdateNodeTypeRegistryPayload {
13143
- clientMutationId?: string | null;
13144
- /** The `NodeTypeRegistry` that was updated by this mutation. */
13145
- nodeTypeRegistry?: NodeTypeRegistry | null;
13146
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
13147
- }
13148
13154
  export interface UpdateMembershipTypePayload {
13149
13155
  clientMutationId?: string | null;
13150
13156
  /** The `MembershipType` that was updated by this mutation. */
@@ -13229,6 +13235,12 @@ export interface UpdateSessionsModulePayload {
13229
13235
  sessionsModule?: SessionsModule | null;
13230
13236
  sessionsModuleEdge?: SessionsModuleEdge | null;
13231
13237
  }
13238
+ export interface UpdateNodeTypeRegistryPayload {
13239
+ clientMutationId?: string | null;
13240
+ /** The `NodeTypeRegistry` that was updated by this mutation. */
13241
+ nodeTypeRegistry?: NodeTypeRegistry | null;
13242
+ nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
13243
+ }
13232
13244
  export interface UpdateOrgLimitPayload {
13233
13245
  clientMutationId?: string | null;
13234
13246
  /** The `OrgLimit` that was updated by this mutation. */
@@ -13745,12 +13757,6 @@ export interface DeleteOrgChartEdgeGrantPayload {
13745
13757
  orgChartEdgeGrant?: OrgChartEdgeGrant | null;
13746
13758
  orgChartEdgeGrantEdge?: OrgChartEdgeGrantEdge | null;
13747
13759
  }
13748
- export interface DeleteNodeTypeRegistryPayload {
13749
- clientMutationId?: string | null;
13750
- /** The `NodeTypeRegistry` that was deleted by this mutation. */
13751
- nodeTypeRegistry?: NodeTypeRegistry | null;
13752
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
13753
- }
13754
13760
  export interface DeleteMembershipTypePayload {
13755
13761
  clientMutationId?: string | null;
13756
13762
  /** The `MembershipType` that was deleted by this mutation. */
@@ -13835,6 +13841,12 @@ export interface DeleteSessionsModulePayload {
13835
13841
  sessionsModule?: SessionsModule | null;
13836
13842
  sessionsModuleEdge?: SessionsModuleEdge | null;
13837
13843
  }
13844
+ export interface DeleteNodeTypeRegistryPayload {
13845
+ clientMutationId?: string | null;
13846
+ /** The `NodeTypeRegistry` that was deleted by this mutation. */
13847
+ nodeTypeRegistry?: NodeTypeRegistry | null;
13848
+ nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
13849
+ }
13838
13850
  export interface DeleteOrgLimitPayload {
13839
13851
  clientMutationId?: string | null;
13840
13852
  /** The `OrgLimit` that was deleted by this mutation. */
@@ -14410,12 +14422,6 @@ export interface OrgChartEdgeGrantEdge {
14410
14422
  /** The `OrgChartEdgeGrant` at the end of the edge. */
14411
14423
  node?: OrgChartEdgeGrant | null;
14412
14424
  }
14413
- /** A `NodeTypeRegistry` edge in the connection. */
14414
- export interface NodeTypeRegistryEdge {
14415
- cursor?: string | null;
14416
- /** The `NodeTypeRegistry` at the end of the edge. */
14417
- node?: NodeTypeRegistry | null;
14418
- }
14419
14425
  /** A `MembershipType` edge in the connection. */
14420
14426
  export interface MembershipTypeEdge {
14421
14427
  cursor?: string | null;
@@ -14482,6 +14488,12 @@ export interface SessionsModuleEdge {
14482
14488
  /** The `SessionsModule` at the end of the edge. */
14483
14489
  node?: SessionsModule | null;
14484
14490
  }
14491
+ /** A `NodeTypeRegistry` edge in the connection. */
14492
+ export interface NodeTypeRegistryEdge {
14493
+ cursor?: string | null;
14494
+ /** The `NodeTypeRegistry` at the end of the edge. */
14495
+ node?: NodeTypeRegistry | null;
14496
+ }
14485
14497
  /** A `OrgLimit` edge in the connection. */
14486
14498
  export interface OrgLimitEdge {
14487
14499
  cursor?: string | null;
@@ -14861,6 +14873,9 @@ export interface MetaField {
14861
14873
  type: MetaType;
14862
14874
  isNotNull: boolean;
14863
14875
  hasDefault: boolean;
14876
+ isPrimaryKey: boolean;
14877
+ isForeignKey: boolean;
14878
+ description?: string | null;
14864
14879
  }
14865
14880
  /** Information about a database index */
14866
14881
  export interface MetaIndex {
@@ -1137,17 +1137,6 @@ export interface OrgLimitDefault {
1137
1137
  name: string | null;
1138
1138
  max: number | null;
1139
1139
  }
1140
- export interface NodeTypeRegistry {
1141
- name: string | null;
1142
- slug: string | null;
1143
- category: string | null;
1144
- displayName: string | null;
1145
- description: string | null;
1146
- parameterSchema: unknown | null;
1147
- tags: string[] | null;
1148
- createdAt: string | null;
1149
- updatedAt: string | null;
1150
- }
1151
1140
  export interface MembershipType {
1152
1141
  id: number | null;
1153
1142
  name: string | null;
@@ -1187,6 +1176,19 @@ export interface RlsModule {
1187
1176
  currentRole: string | null;
1188
1177
  currentRoleId: string | null;
1189
1178
  }
1179
+ export interface NodeTypeRegistry {
1180
+ name: string | null;
1181
+ slug: string | null;
1182
+ category: string | null;
1183
+ displayName: string | null;
1184
+ description: string | null;
1185
+ summary: string | null;
1186
+ parameterSchema: unknown | null;
1187
+ guidance: unknown | null;
1188
+ tags: string[] | null;
1189
+ createdAt: string | null;
1190
+ updatedAt: string | null;
1191
+ }
1190
1192
  export interface OrgMembershipDefault {
1191
1193
  id: string | null;
1192
1194
  createdAt: string | null;
@@ -537,6 +537,9 @@ export interface MetaField {
537
537
  type: MetaType;
538
538
  isNotNull: boolean;
539
539
  hasDefault: boolean;
540
+ isPrimaryKey: boolean;
541
+ isForeignKey: boolean;
542
+ description?: string | null;
540
543
  }
541
544
  /** Information about a database index */
542
545
  export interface MetaIndex {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/react",
3
- "version": "0.10.7",
3
+ "version": "0.10.9",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Constructive React - Auto-generated React Query hooks and ORM client",
6
6
  "main": "index.js",
@@ -51,7 +51,7 @@
51
51
  "react": "^18.0.0 || ^19.0.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@constructive-io/graphql-codegen": "^4.26.0",
54
+ "@constructive-io/graphql-codegen": "^4.27.1",
55
55
  "@types/node": "^22.19.11",
56
56
  "@types/react": "^19.2.14",
57
57
  "makage": "^0.3.0",
@@ -59,5 +59,5 @@
59
59
  "tsx": "^4.19.0",
60
60
  "typescript": "^5.9.3"
61
61
  },
62
- "gitHead": "baae875effd00af36577612c861d0f6f9a1a792a"
62
+ "gitHead": "98b0d29e8937be61d1afde2c6c1fdab74754b1e4"
63
63
  }
@@ -2,7 +2,7 @@
2
2
  * GraphQL SDK
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  *
5
- * Tables: GetAllRecord, OrgGetManagersRecord, OrgGetSubordinatesRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, TableTemplateModule, SecureTableProvision, RelationProvision, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, ConnectedAccount, Invite, ClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, Ref, Store, AppPermissionDefault, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, NodeTypeRegistry, MembershipType, Commit, AppMembershipDefault, RlsModule, OrgMembershipDefault, SqlAction, User, AstMigration, AppMembership, HierarchyModule
5
+ * Tables: GetAllRecord, OrgGetManagersRecord, OrgGetSubordinatesRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, TableTemplateModule, SecureTableProvision, RelationProvision, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, ConnectedAccount, Invite, ClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, Ref, Store, AppPermissionDefault, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, MembershipType, Commit, AppMembershipDefault, RlsModule, NodeTypeRegistry, OrgMembershipDefault, SqlAction, User, AstMigration, AppMembership, HierarchyModule
6
6
  *
7
7
  * Usage:
8
8
  *
@@ -18,7 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
18
18
  * GraphQL SDK
19
19
  * @generated by @constructive-io/graphql-codegen
20
20
  *
21
- * Tables: GetAllRecord, OrgGetManagersRecord, OrgGetSubordinatesRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, TableTemplateModule, SecureTableProvision, RelationProvision, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, ConnectedAccount, Invite, ClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, Ref, Store, AppPermissionDefault, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, NodeTypeRegistry, MembershipType, Commit, AppMembershipDefault, RlsModule, OrgMembershipDefault, SqlAction, User, AstMigration, AppMembership, HierarchyModule
21
+ * Tables: GetAllRecord, OrgGetManagersRecord, OrgGetSubordinatesRecord, Object, AppPermission, OrgPermission, AppLevelRequirement, Database, Schema, Table, CheckConstraint, Field, ForeignKeyConstraint, FullTextSearch, Index, Policy, PrimaryKeyConstraint, TableGrant, Trigger, UniqueConstraint, View, ViewTable, ViewGrant, ViewRule, EmbeddingChunk, TableTemplateModule, SecureTableProvision, RelationProvision, SchemaGrant, DefaultPrivilege, Enum, ApiSchema, ApiModule, Domain, SiteMetadatum, SiteModule, SiteTheme, TriggerFunction, DatabaseTransfer, Api, Site, App, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DefaultIdsModule, DenormalizedTableField, EmailsModule, EncryptedSecretsModule, InvitesModule, LevelsModule, LimitsModule, MembershipTypesModule, MembershipsModule, PermissionsModule, PhoneNumbersModule, ProfilesModule, SecretsModule, SessionsModule, UserAuthModule, UsersModule, Blueprint, BlueprintTemplate, DatabaseProvisionModule, AppAdminGrant, AppOwnerGrant, AppGrant, OrgMembership, OrgMember, OrgAdminGrant, OrgOwnerGrant, OrgGrant, OrgChartEdge, OrgChartEdgeGrant, OrgPermissionDefault, AppLimit, OrgLimit, AppStep, AppAchievement, AppLevel, Email, PhoneNumber, CryptoAddress, ConnectedAccount, Invite, ClaimedInvite, OrgInvite, OrgClaimedInvite, AuditLog, Ref, Store, AppPermissionDefault, RoleType, MigrateFile, AppLimitDefault, OrgLimitDefault, MembershipType, Commit, AppMembershipDefault, RlsModule, NodeTypeRegistry, OrgMembershipDefault, SqlAction, User, AstMigration, AppMembership, HierarchyModule
22
22
  *
23
23
  * Usage:
24
24
  *
@@ -504,11 +504,6 @@ export declare const invalidate: {
504
504
  /** Invalidate orgLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
505
505
  /** Invalidate a specific orgLimitDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
506
506
  };
507
- /** Invalidate nodeTypeRegistry queries */ readonly nodeTypeRegistry: {
508
- /** Invalidate all nodeTypeRegistry queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
509
- /** Invalidate nodeTypeRegistry list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
510
- /** Invalidate a specific nodeTypeRegistry */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
511
- };
512
507
  /** Invalidate membershipType queries */ readonly membershipType: {
513
508
  /** Invalidate all membershipType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
514
509
  /** Invalidate membershipType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
@@ -529,6 +524,11 @@ export declare const invalidate: {
529
524
  /** Invalidate rlsModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
530
525
  /** Invalidate a specific rlsModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
531
526
  };
527
+ /** Invalidate nodeTypeRegistry queries */ readonly nodeTypeRegistry: {
528
+ /** Invalidate all nodeTypeRegistry queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
529
+ /** Invalidate nodeTypeRegistry list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
530
+ /** Invalidate a specific nodeTypeRegistry */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
531
+ };
532
532
  /** Invalidate orgMembershipDefault queries */ readonly orgMembershipDefault: {
533
533
  /** Invalidate all orgMembershipDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
534
534
  /** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
@@ -668,11 +668,11 @@ export declare const remove: {
668
668
  /** Remove migrateFile from cache */ readonly migrateFile: (queryClient: QueryClient, id: string | number) => void;
669
669
  /** Remove appLimitDefault from cache */ readonly appLimitDefault: (queryClient: QueryClient, id: string | number) => void;
670
670
  /** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
671
- /** Remove nodeTypeRegistry from cache */ readonly nodeTypeRegistry: (queryClient: QueryClient, id: string | number) => void;
672
671
  /** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
673
672
  /** Remove commit from cache */ readonly commit: (queryClient: QueryClient, id: string | number) => void;
674
673
  /** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
675
674
  /** Remove rlsModule from cache */ readonly rlsModule: (queryClient: QueryClient, id: string | number) => void;
675
+ /** Remove nodeTypeRegistry from cache */ readonly nodeTypeRegistry: (queryClient: QueryClient, id: string | number) => void;
676
676
  /** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
677
677
  /** Remove sqlAction from cache */ readonly sqlAction: (queryClient: QueryClient, id: string | number) => void;
678
678
  /** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
@@ -1083,17 +1083,6 @@ exports.invalidate = {
1083
1083
  queryKey: query_keys_1.orgLimitDefaultKeys.detail(id),
1084
1084
  }),
1085
1085
  },
1086
- /** Invalidate nodeTypeRegistry queries */ nodeTypeRegistry: {
1087
- /** Invalidate all nodeTypeRegistry queries */ all: (queryClient) => queryClient.invalidateQueries({
1088
- queryKey: query_keys_1.nodeTypeRegistryKeys.all,
1089
- }),
1090
- /** Invalidate nodeTypeRegistry list queries */ lists: (queryClient) => queryClient.invalidateQueries({
1091
- queryKey: query_keys_1.nodeTypeRegistryKeys.lists(),
1092
- }),
1093
- /** Invalidate a specific nodeTypeRegistry */ detail: (queryClient, id) => queryClient.invalidateQueries({
1094
- queryKey: query_keys_1.nodeTypeRegistryKeys.detail(id),
1095
- }),
1096
- },
1097
1086
  /** Invalidate membershipType queries */ membershipType: {
1098
1087
  /** Invalidate all membershipType queries */ all: (queryClient) => queryClient.invalidateQueries({
1099
1088
  queryKey: query_keys_1.membershipTypeKeys.all,
@@ -1138,6 +1127,17 @@ exports.invalidate = {
1138
1127
  queryKey: query_keys_1.rlsModuleKeys.detail(id),
1139
1128
  }),
1140
1129
  },
1130
+ /** Invalidate nodeTypeRegistry queries */ nodeTypeRegistry: {
1131
+ /** Invalidate all nodeTypeRegistry queries */ all: (queryClient) => queryClient.invalidateQueries({
1132
+ queryKey: query_keys_1.nodeTypeRegistryKeys.all,
1133
+ }),
1134
+ /** Invalidate nodeTypeRegistry list queries */ lists: (queryClient) => queryClient.invalidateQueries({
1135
+ queryKey: query_keys_1.nodeTypeRegistryKeys.lists(),
1136
+ }),
1137
+ /** Invalidate a specific nodeTypeRegistry */ detail: (queryClient, id) => queryClient.invalidateQueries({
1138
+ queryKey: query_keys_1.nodeTypeRegistryKeys.detail(id),
1139
+ }),
1140
+ },
1141
1141
  /** Invalidate orgMembershipDefault queries */ orgMembershipDefault: {
1142
1142
  /** Invalidate all orgMembershipDefault queries */ all: (queryClient) => queryClient.invalidateQueries({
1143
1143
  queryKey: query_keys_1.orgMembershipDefaultKeys.all,
@@ -1697,11 +1697,6 @@ exports.remove = {
1697
1697
  queryKey: query_keys_1.orgLimitDefaultKeys.detail(id),
1698
1698
  });
1699
1699
  },
1700
- /** Remove nodeTypeRegistry from cache */ nodeTypeRegistry: (queryClient, id) => {
1701
- queryClient.removeQueries({
1702
- queryKey: query_keys_1.nodeTypeRegistryKeys.detail(id),
1703
- });
1704
- },
1705
1700
  /** Remove membershipType from cache */ membershipType: (queryClient, id) => {
1706
1701
  queryClient.removeQueries({
1707
1702
  queryKey: query_keys_1.membershipTypeKeys.detail(id),
@@ -1722,6 +1717,11 @@ exports.remove = {
1722
1717
  queryKey: query_keys_1.rlsModuleKeys.detail(id),
1723
1718
  });
1724
1719
  },
1720
+ /** Remove nodeTypeRegistry from cache */ nodeTypeRegistry: (queryClient, id) => {
1721
+ queryClient.removeQueries({
1722
+ queryKey: query_keys_1.nodeTypeRegistryKeys.detail(id),
1723
+ });
1724
+ },
1725
1725
  /** Remove orgMembershipDefault from cache */ orgMembershipDefault: (queryClient, id) => {
1726
1726
  queryClient.removeQueries({
1727
1727
  queryKey: query_keys_1.orgMembershipDefaultKeys.detail(id),
@@ -579,12 +579,6 @@ export declare const orgLimitDefaultMutationKeys: {
579
579
  /** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
580
580
  /** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
581
581
  };
582
- export declare const nodeTypeRegistryMutationKeys: {
583
- /** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
584
- /** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
585
- /** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
586
- /** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
587
- };
588
582
  export declare const membershipTypeMutationKeys: {
589
583
  /** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
590
584
  /** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
@@ -609,6 +603,12 @@ export declare const rlsModuleMutationKeys: {
609
603
  /** Update rlsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "rlsmodule", "update", string | number];
610
604
  /** Delete rlsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "rlsmodule", "delete", string | number];
611
605
  };
606
+ export declare const nodeTypeRegistryMutationKeys: {
607
+ /** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
608
+ /** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
609
+ /** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
610
+ /** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
611
+ };
612
612
  export declare const orgMembershipDefaultMutationKeys: {
613
613
  /** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
614
614
  /** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
@@ -1282,12 +1282,6 @@ export declare const mutationKeys: {
1282
1282
  /** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
1283
1283
  /** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
1284
1284
  };
1285
- readonly nodeTypeRegistry: {
1286
- /** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
1287
- /** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
1288
- /** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
1289
- /** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
1290
- };
1291
1285
  readonly membershipType: {
1292
1286
  /** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
1293
1287
  /** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
@@ -1312,6 +1306,12 @@ export declare const mutationKeys: {
1312
1306
  /** Update rlsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "rlsmodule", "update", string | number];
1313
1307
  /** Delete rlsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "rlsmodule", "delete", string | number];
1314
1308
  };
1309
+ readonly nodeTypeRegistry: {
1310
+ /** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
1311
+ /** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
1312
+ /** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
1313
+ /** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
1314
+ };
1315
1315
  readonly orgMembershipDefault: {
1316
1316
  /** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
1317
1317
  /** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];