@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 {
package/public/types.d.ts CHANGED
@@ -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;