@constructive-io/react 0.6.4 → 0.6.6

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 (66) hide show
  1. package/README.md +8 -0
  2. package/admin/hooks/queries/index.d.ts +1 -1
  3. package/admin/hooks/queries/index.js +1 -1
  4. package/admin/hooks/query-keys.d.ts +2 -2
  5. package/admin/hooks/query-keys.js +1 -1
  6. package/admin/orm/index.d.ts +5 -5
  7. package/admin/orm/query/index.d.ts +9 -9
  8. package/admin/orm/query/index.js +16 -16
  9. package/auth/orm/input-types.d.ts +0 -1
  10. package/auth/schema-types.d.ts +1 -3
  11. package/esm/admin/hooks/queries/index.d.ts +1 -1
  12. package/esm/admin/hooks/queries/index.js +1 -1
  13. package/esm/admin/hooks/query-keys.d.ts +2 -2
  14. package/esm/admin/hooks/query-keys.js +1 -1
  15. package/esm/admin/orm/index.d.ts +5 -5
  16. package/esm/admin/orm/query/index.d.ts +9 -9
  17. package/esm/admin/orm/query/index.js +16 -16
  18. package/esm/auth/orm/input-types.d.ts +0 -1
  19. package/esm/auth/schema-types.d.ts +1 -3
  20. package/esm/public/hooks/index.d.ts +1 -1
  21. package/esm/public/hooks/index.js +1 -1
  22. package/esm/public/hooks/invalidation.d.ts +18 -18
  23. package/esm/public/hooks/invalidation.js +49 -49
  24. package/esm/public/hooks/mutation-keys.d.ts +48 -48
  25. package/esm/public/hooks/mutation-keys.js +39 -39
  26. package/esm/public/hooks/mutations/index.d.ts +15 -15
  27. package/esm/public/hooks/mutations/index.js +15 -15
  28. package/esm/public/hooks/queries/index.d.ts +8 -8
  29. package/esm/public/hooks/queries/index.js +8 -8
  30. package/esm/public/hooks/query-keys.d.ts +46 -46
  31. package/esm/public/hooks/query-keys.js +26 -26
  32. package/esm/public/orm/index.d.ts +44 -44
  33. package/esm/public/orm/index.js +6 -6
  34. package/esm/public/orm/input-types.d.ts +570 -571
  35. package/esm/public/orm/models/index.d.ts +3 -3
  36. package/esm/public/orm/models/index.js +3 -3
  37. package/esm/public/orm/mutation/index.d.ts +46 -46
  38. package/esm/public/orm/mutation/index.js +66 -66
  39. package/esm/public/orm/query/index.d.ts +28 -28
  40. package/esm/public/orm/query/index.js +48 -48
  41. package/esm/public/schema-types.d.ts +752 -754
  42. package/esm/public/types.d.ts +36 -36
  43. package/package.json +4 -4
  44. package/public/hooks/index.d.ts +1 -1
  45. package/public/hooks/index.js +1 -1
  46. package/public/hooks/invalidation.d.ts +18 -18
  47. package/public/hooks/invalidation.js +48 -48
  48. package/public/hooks/mutation-keys.d.ts +48 -48
  49. package/public/hooks/mutation-keys.js +42 -42
  50. package/public/hooks/mutations/index.d.ts +15 -15
  51. package/public/hooks/mutations/index.js +15 -15
  52. package/public/hooks/queries/index.d.ts +8 -8
  53. package/public/hooks/queries/index.js +8 -8
  54. package/public/hooks/query-keys.d.ts +46 -46
  55. package/public/hooks/query-keys.js +29 -29
  56. package/public/orm/index.d.ts +44 -44
  57. package/public/orm/index.js +6 -6
  58. package/public/orm/input-types.d.ts +570 -571
  59. package/public/orm/models/index.d.ts +3 -3
  60. package/public/orm/models/index.js +9 -9
  61. package/public/orm/mutation/index.d.ts +46 -46
  62. package/public/orm/mutation/index.js +66 -66
  63. package/public/orm/query/index.d.ts +28 -28
  64. package/public/orm/query/index.js +48 -48
  65. package/public/schema-types.d.ts +752 -754
  66. package/public/types.d.ts +36 -36
@@ -6,15 +6,15 @@
6
6
  export * from './useCreateOrgGetManagersRecordMutation';
7
7
  export * from './useCreateOrgGetSubordinatesRecordMutation';
8
8
  export * from './useCreateGetAllRecordMutation';
9
+ export * from './useCreateObjectMutation';
10
+ export * from './useUpdateObjectMutation';
11
+ export * from './useDeleteObjectMutation';
9
12
  export * from './useCreateAppPermissionMutation';
10
13
  export * from './useUpdateAppPermissionMutation';
11
14
  export * from './useDeleteAppPermissionMutation';
12
15
  export * from './useCreateOrgPermissionMutation';
13
16
  export * from './useUpdateOrgPermissionMutation';
14
17
  export * from './useDeleteOrgPermissionMutation';
15
- export * from './useCreateObjectMutation';
16
- export * from './useUpdateObjectMutation';
17
- export * from './useDeleteObjectMutation';
18
18
  export * from './useCreateAppLevelRequirementMutation';
19
19
  export * from './useUpdateAppLevelRequirementMutation';
20
20
  export * from './useDeleteAppLevelRequirementMutation';
@@ -270,15 +270,15 @@ export * from './useDeleteNodeTypeRegistryMutation';
270
270
  export * from './useCreateMembershipTypeMutation';
271
271
  export * from './useUpdateMembershipTypeMutation';
272
272
  export * from './useDeleteMembershipTypeMutation';
273
+ export * from './useCreateCommitMutation';
274
+ export * from './useUpdateCommitMutation';
275
+ export * from './useDeleteCommitMutation';
273
276
  export * from './useCreateAppMembershipDefaultMutation';
274
277
  export * from './useUpdateAppMembershipDefaultMutation';
275
278
  export * from './useDeleteAppMembershipDefaultMutation';
276
279
  export * from './useCreateRlsModuleMutation';
277
280
  export * from './useUpdateRlsModuleMutation';
278
281
  export * from './useDeleteRlsModuleMutation';
279
- export * from './useCreateCommitMutation';
280
- export * from './useUpdateCommitMutation';
281
- export * from './useDeleteCommitMutation';
282
282
  export * from './useCreateOrgMembershipDefaultMutation';
283
283
  export * from './useUpdateOrgMembershipDefaultMutation';
284
284
  export * from './useDeleteOrgMembershipDefaultMutation';
@@ -292,13 +292,13 @@ export * from './useCreateSqlMigrationMutation';
292
292
  export * from './useCreateEmailMutation';
293
293
  export * from './useUpdateEmailMutation';
294
294
  export * from './useDeleteEmailMutation';
295
+ export * from './useCreateUserMutation';
296
+ export * from './useUpdateUserMutation';
297
+ export * from './useDeleteUserMutation';
295
298
  export * from './useCreateAstMigrationMutation';
296
299
  export * from './useCreateAppMembershipMutation';
297
300
  export * from './useUpdateAppMembershipMutation';
298
301
  export * from './useDeleteAppMembershipMutation';
299
- export * from './useCreateUserMutation';
300
- export * from './useUpdateUserMutation';
301
- export * from './useDeleteUserMutation';
302
302
  export * from './useCreateHierarchyModuleMutation';
303
303
  export * from './useUpdateHierarchyModuleMutation';
304
304
  export * from './useDeleteHierarchyModuleMutation';
@@ -312,23 +312,23 @@ export * from './useInitEmptyRepoMutation';
312
312
  export * from './useConfirmDeleteAccountMutation';
313
313
  export * from './useSetPasswordMutation';
314
314
  export * from './useVerifyEmailMutation';
315
+ export * from './useRemoveNodeAtPathMutation';
315
316
  export * from './useResetPasswordMutation';
316
317
  export * from './useBootstrapUserMutation';
317
- export * from './useRemoveNodeAtPathMutation';
318
+ export * from './useSetFieldOrderMutation';
318
319
  export * from './useSetDataAtPathMutation';
319
320
  export * from './useSetPropsAndCommitMutation';
320
321
  export * from './useProvisionDatabaseWithUserMutation';
322
+ export * from './useInsertNodeAtPathMutation';
323
+ export * from './useUpdateNodeAtPathMutation';
324
+ export * from './useSetAndCommitMutation';
325
+ export * from './useApplyRlsMutation';
321
326
  export * from './useSignInOneTimeTokenMutation';
322
327
  export * from './useCreateUserDatabaseMutation';
323
328
  export * from './useExtendTokenExpiresMutation';
324
329
  export * from './useSignInMutation';
325
330
  export * from './useSignUpMutation';
326
- export * from './useSetFieldOrderMutation';
327
331
  export * from './useOneTimeTokenMutation';
328
- export * from './useInsertNodeAtPathMutation';
329
- export * from './useUpdateNodeAtPathMutation';
330
- export * from './useSetAndCommitMutation';
331
- export * from './useApplyRlsMutation';
332
332
  export * from './useForgotPasswordMutation';
333
333
  export * from './useSendVerificationEmailMutation';
334
334
  export * from './useVerifyPasswordMutation';
@@ -6,15 +6,15 @@
6
6
  export * from './useCreateOrgGetManagersRecordMutation';
7
7
  export * from './useCreateOrgGetSubordinatesRecordMutation';
8
8
  export * from './useCreateGetAllRecordMutation';
9
+ export * from './useCreateObjectMutation';
10
+ export * from './useUpdateObjectMutation';
11
+ export * from './useDeleteObjectMutation';
9
12
  export * from './useCreateAppPermissionMutation';
10
13
  export * from './useUpdateAppPermissionMutation';
11
14
  export * from './useDeleteAppPermissionMutation';
12
15
  export * from './useCreateOrgPermissionMutation';
13
16
  export * from './useUpdateOrgPermissionMutation';
14
17
  export * from './useDeleteOrgPermissionMutation';
15
- export * from './useCreateObjectMutation';
16
- export * from './useUpdateObjectMutation';
17
- export * from './useDeleteObjectMutation';
18
18
  export * from './useCreateAppLevelRequirementMutation';
19
19
  export * from './useUpdateAppLevelRequirementMutation';
20
20
  export * from './useDeleteAppLevelRequirementMutation';
@@ -270,15 +270,15 @@ export * from './useDeleteNodeTypeRegistryMutation';
270
270
  export * from './useCreateMembershipTypeMutation';
271
271
  export * from './useUpdateMembershipTypeMutation';
272
272
  export * from './useDeleteMembershipTypeMutation';
273
+ export * from './useCreateCommitMutation';
274
+ export * from './useUpdateCommitMutation';
275
+ export * from './useDeleteCommitMutation';
273
276
  export * from './useCreateAppMembershipDefaultMutation';
274
277
  export * from './useUpdateAppMembershipDefaultMutation';
275
278
  export * from './useDeleteAppMembershipDefaultMutation';
276
279
  export * from './useCreateRlsModuleMutation';
277
280
  export * from './useUpdateRlsModuleMutation';
278
281
  export * from './useDeleteRlsModuleMutation';
279
- export * from './useCreateCommitMutation';
280
- export * from './useUpdateCommitMutation';
281
- export * from './useDeleteCommitMutation';
282
282
  export * from './useCreateOrgMembershipDefaultMutation';
283
283
  export * from './useUpdateOrgMembershipDefaultMutation';
284
284
  export * from './useDeleteOrgMembershipDefaultMutation';
@@ -292,13 +292,13 @@ export * from './useCreateSqlMigrationMutation';
292
292
  export * from './useCreateEmailMutation';
293
293
  export * from './useUpdateEmailMutation';
294
294
  export * from './useDeleteEmailMutation';
295
+ export * from './useCreateUserMutation';
296
+ export * from './useUpdateUserMutation';
297
+ export * from './useDeleteUserMutation';
295
298
  export * from './useCreateAstMigrationMutation';
296
299
  export * from './useCreateAppMembershipMutation';
297
300
  export * from './useUpdateAppMembershipMutation';
298
301
  export * from './useDeleteAppMembershipMutation';
299
- export * from './useCreateUserMutation';
300
- export * from './useUpdateUserMutation';
301
- export * from './useDeleteUserMutation';
302
302
  export * from './useCreateHierarchyModuleMutation';
303
303
  export * from './useUpdateHierarchyModuleMutation';
304
304
  export * from './useDeleteHierarchyModuleMutation';
@@ -312,23 +312,23 @@ export * from './useInitEmptyRepoMutation';
312
312
  export * from './useConfirmDeleteAccountMutation';
313
313
  export * from './useSetPasswordMutation';
314
314
  export * from './useVerifyEmailMutation';
315
+ export * from './useRemoveNodeAtPathMutation';
315
316
  export * from './useResetPasswordMutation';
316
317
  export * from './useBootstrapUserMutation';
317
- export * from './useRemoveNodeAtPathMutation';
318
+ export * from './useSetFieldOrderMutation';
318
319
  export * from './useSetDataAtPathMutation';
319
320
  export * from './useSetPropsAndCommitMutation';
320
321
  export * from './useProvisionDatabaseWithUserMutation';
322
+ export * from './useInsertNodeAtPathMutation';
323
+ export * from './useUpdateNodeAtPathMutation';
324
+ export * from './useSetAndCommitMutation';
325
+ export * from './useApplyRlsMutation';
321
326
  export * from './useSignInOneTimeTokenMutation';
322
327
  export * from './useCreateUserDatabaseMutation';
323
328
  export * from './useExtendTokenExpiresMutation';
324
329
  export * from './useSignInMutation';
325
330
  export * from './useSignUpMutation';
326
- export * from './useSetFieldOrderMutation';
327
331
  export * from './useOneTimeTokenMutation';
328
- export * from './useInsertNodeAtPathMutation';
329
- export * from './useUpdateNodeAtPathMutation';
330
- export * from './useSetAndCommitMutation';
331
- export * from './useApplyRlsMutation';
332
332
  export * from './useForgotPasswordMutation';
333
333
  export * from './useSendVerificationEmailMutation';
334
334
  export * from './useVerifyPasswordMutation';
@@ -6,12 +6,12 @@
6
6
  export * from './useOrgGetManagersQuery';
7
7
  export * from './useOrgGetSubordinatesQuery';
8
8
  export * from './useGetAllQuery';
9
+ export * from './useObjectsQuery';
10
+ export * from './useObjectQuery';
9
11
  export * from './useAppPermissionsQuery';
10
12
  export * from './useAppPermissionQuery';
11
13
  export * from './useOrgPermissionsQuery';
12
14
  export * from './useOrgPermissionQuery';
13
- export * from './useObjectsQuery';
14
- export * from './useObjectQuery';
15
15
  export * from './useAppLevelRequirementsQuery';
16
16
  export * from './useAppLevelRequirementQuery';
17
17
  export * from './useDatabasesQuery';
@@ -182,12 +182,12 @@ export * from './useNodeTypeRegistriesQuery';
182
182
  export * from './useNodeTypeRegistryQuery';
183
183
  export * from './useMembershipTypesQuery';
184
184
  export * from './useMembershipTypeQuery';
185
+ export * from './useCommitsQuery';
186
+ export * from './useCommitQuery';
185
187
  export * from './useAppMembershipDefaultsQuery';
186
188
  export * from './useAppMembershipDefaultQuery';
187
189
  export * from './useRlsModulesQuery';
188
190
  export * from './useRlsModuleQuery';
189
- export * from './useCommitsQuery';
190
- export * from './useCommitQuery';
191
191
  export * from './useOrgMembershipDefaultsQuery';
192
192
  export * from './useOrgMembershipDefaultQuery';
193
193
  export * from './useAuditLogsQuery';
@@ -198,12 +198,12 @@ export * from './useSqlMigrationsQuery';
198
198
  export * from './useSqlMigrationQuery';
199
199
  export * from './useEmailsQuery';
200
200
  export * from './useEmailQuery';
201
+ export * from './useUsersQuery';
202
+ export * from './useUserQuery';
201
203
  export * from './useAstMigrationsQuery';
202
204
  export * from './useAstMigrationQuery';
203
205
  export * from './useAppMembershipsQuery';
204
206
  export * from './useAppMembershipQuery';
205
- export * from './useUsersQuery';
206
- export * from './useUserQuery';
207
207
  export * from './useHierarchyModulesQuery';
208
208
  export * from './useHierarchyModuleQuery';
209
209
  export * from './useCurrentUserIdQuery';
@@ -218,10 +218,10 @@ export * from './useAppPermissionsGetMaskQuery';
218
218
  export * from './useOrgPermissionsGetMaskQuery';
219
219
  export * from './useAppPermissionsGetMaskByNamesQuery';
220
220
  export * from './useOrgPermissionsGetMaskByNamesQuery';
221
- export * from './useAppPermissionsGetByMaskQuery';
222
- export * from './useOrgPermissionsGetByMaskQuery';
223
221
  export * from './useGetAllObjectsFromRootQuery';
224
222
  export * from './useGetPathObjectsFromRootQuery';
225
223
  export * from './useGetObjectAtPathQuery';
224
+ export * from './useAppPermissionsGetByMaskQuery';
225
+ export * from './useOrgPermissionsGetByMaskQuery';
226
226
  export * from './useStepsRequiredQuery';
227
227
  export * from './useCurrentUserQuery';
@@ -6,12 +6,12 @@
6
6
  export * from './useOrgGetManagersQuery';
7
7
  export * from './useOrgGetSubordinatesQuery';
8
8
  export * from './useGetAllQuery';
9
+ export * from './useObjectsQuery';
10
+ export * from './useObjectQuery';
9
11
  export * from './useAppPermissionsQuery';
10
12
  export * from './useAppPermissionQuery';
11
13
  export * from './useOrgPermissionsQuery';
12
14
  export * from './useOrgPermissionQuery';
13
- export * from './useObjectsQuery';
14
- export * from './useObjectQuery';
15
15
  export * from './useAppLevelRequirementsQuery';
16
16
  export * from './useAppLevelRequirementQuery';
17
17
  export * from './useDatabasesQuery';
@@ -182,12 +182,12 @@ export * from './useNodeTypeRegistriesQuery';
182
182
  export * from './useNodeTypeRegistryQuery';
183
183
  export * from './useMembershipTypesQuery';
184
184
  export * from './useMembershipTypeQuery';
185
+ export * from './useCommitsQuery';
186
+ export * from './useCommitQuery';
185
187
  export * from './useAppMembershipDefaultsQuery';
186
188
  export * from './useAppMembershipDefaultQuery';
187
189
  export * from './useRlsModulesQuery';
188
190
  export * from './useRlsModuleQuery';
189
- export * from './useCommitsQuery';
190
- export * from './useCommitQuery';
191
191
  export * from './useOrgMembershipDefaultsQuery';
192
192
  export * from './useOrgMembershipDefaultQuery';
193
193
  export * from './useAuditLogsQuery';
@@ -198,12 +198,12 @@ export * from './useSqlMigrationsQuery';
198
198
  export * from './useSqlMigrationQuery';
199
199
  export * from './useEmailsQuery';
200
200
  export * from './useEmailQuery';
201
+ export * from './useUsersQuery';
202
+ export * from './useUserQuery';
201
203
  export * from './useAstMigrationsQuery';
202
204
  export * from './useAstMigrationQuery';
203
205
  export * from './useAppMembershipsQuery';
204
206
  export * from './useAppMembershipQuery';
205
- export * from './useUsersQuery';
206
- export * from './useUserQuery';
207
207
  export * from './useHierarchyModulesQuery';
208
208
  export * from './useHierarchyModuleQuery';
209
209
  export * from './useCurrentUserIdQuery';
@@ -218,10 +218,10 @@ export * from './useAppPermissionsGetMaskQuery';
218
218
  export * from './useOrgPermissionsGetMaskQuery';
219
219
  export * from './useAppPermissionsGetMaskByNamesQuery';
220
220
  export * from './useOrgPermissionsGetMaskByNamesQuery';
221
- export * from './useAppPermissionsGetByMaskQuery';
222
- export * from './useOrgPermissionsGetByMaskQuery';
223
221
  export * from './useGetAllObjectsFromRootQuery';
224
222
  export * from './useGetPathObjectsFromRootQuery';
225
223
  export * from './useGetObjectAtPathQuery';
224
+ export * from './useAppPermissionsGetByMaskQuery';
225
+ export * from './useOrgPermissionsGetByMaskQuery';
226
226
  export * from './useStepsRequiredQuery';
227
227
  export * from './useCurrentUserQuery';
@@ -24,6 +24,13 @@ export declare const getAllRecordKeys: {
24
24
  /** Detail query keys */ readonly details: () => readonly ["getallrecord", "detail"];
25
25
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["getallrecord", "detail", string | number];
26
26
  };
27
+ export declare const objectKeys: {
28
+ /** All object queries */ readonly all: readonly ["object"];
29
+ /** List query keys */ readonly lists: () => readonly ["object", "list"];
30
+ /** List query key with variables */ readonly list: (variables?: object) => readonly ["object", "list", object];
31
+ /** Detail query keys */ readonly details: () => readonly ["object", "detail"];
32
+ /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["object", "detail", string | number];
33
+ };
27
34
  export declare const appPermissionKeys: {
28
35
  /** All appPermission queries */ readonly all: readonly ["apppermission"];
29
36
  /** List query keys */ readonly lists: () => readonly ["apppermission", "list"];
@@ -38,13 +45,6 @@ export declare const orgPermissionKeys: {
38
45
  /** Detail query keys */ readonly details: () => readonly ["orgpermission", "detail"];
39
46
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgpermission", "detail", string | number];
40
47
  };
41
- export declare const objectKeys: {
42
- /** All object queries */ readonly all: readonly ["object"];
43
- /** List query keys */ readonly lists: () => readonly ["object", "list"];
44
- /** List query key with variables */ readonly list: (variables?: object) => readonly ["object", "list", object];
45
- /** Detail query keys */ readonly details: () => readonly ["object", "detail"];
46
- /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["object", "detail", string | number];
47
- };
48
48
  export declare const appLevelRequirementKeys: {
49
49
  /** All appLevelRequirement queries */ readonly all: readonly ["applevelrequirement"];
50
50
  /** List query keys */ readonly lists: () => readonly ["applevelrequirement", "list"];
@@ -640,6 +640,13 @@ export declare const membershipTypeKeys: {
640
640
  /** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
641
641
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
642
642
  };
643
+ export declare const commitKeys: {
644
+ /** All commit queries */ readonly all: readonly ["commit"];
645
+ /** List query keys */ readonly lists: () => readonly ["commit", "list"];
646
+ /** List query key with variables */ readonly list: (variables?: object) => readonly ["commit", "list", object];
647
+ /** Detail query keys */ readonly details: () => readonly ["commit", "detail"];
648
+ /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["commit", "detail", string | number];
649
+ };
643
650
  export declare const appMembershipDefaultKeys: {
644
651
  /** All appMembershipDefault queries */ readonly all: readonly ["appmembershipdefault"];
645
652
  /** List query keys */ readonly lists: () => readonly ["appmembershipdefault", "list"];
@@ -654,13 +661,6 @@ export declare const rlsModuleKeys: {
654
661
  /** Detail query keys */ readonly details: () => readonly ["rlsmodule", "detail"];
655
662
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["rlsmodule", "detail", string | number];
656
663
  };
657
- export declare const commitKeys: {
658
- /** All commit queries */ readonly all: readonly ["commit"];
659
- /** List query keys */ readonly lists: () => readonly ["commit", "list"];
660
- /** List query key with variables */ readonly list: (variables?: object) => readonly ["commit", "list", object];
661
- /** Detail query keys */ readonly details: () => readonly ["commit", "detail"];
662
- /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["commit", "detail", string | number];
663
- };
664
664
  export declare const orgMembershipDefaultKeys: {
665
665
  /** All orgMembershipDefault queries */ readonly all: readonly ["orgmembershipdefault"];
666
666
  /** List query keys */ readonly lists: () => readonly ["orgmembershipdefault", "list"];
@@ -696,6 +696,13 @@ export declare const emailKeys: {
696
696
  /** Detail query keys */ readonly details: () => readonly ["email", "detail"];
697
697
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["email", "detail", string | number];
698
698
  };
699
+ export declare const userKeys: {
700
+ /** All user queries */ readonly all: readonly ["user"];
701
+ /** List query keys */ readonly lists: () => readonly ["user", "list"];
702
+ /** List query key with variables */ readonly list: (variables?: object) => readonly ["user", "list", object];
703
+ /** Detail query keys */ readonly details: () => readonly ["user", "detail"];
704
+ /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["user", "detail", string | number];
705
+ };
699
706
  export declare const astMigrationKeys: {
700
707
  /** All astMigration queries */ readonly all: readonly ["astmigration"];
701
708
  /** List query keys */ readonly lists: () => readonly ["astmigration", "list"];
@@ -710,13 +717,6 @@ export declare const appMembershipKeys: {
710
717
  /** Detail query keys */ readonly details: () => readonly ["appmembership", "detail"];
711
718
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembership", "detail", string | number];
712
719
  };
713
- export declare const userKeys: {
714
- /** All user queries */ readonly all: readonly ["user"];
715
- /** List query keys */ readonly lists: () => readonly ["user", "list"];
716
- /** List query key with variables */ readonly list: (variables?: object) => readonly ["user", "list", object];
717
- /** Detail query keys */ readonly details: () => readonly ["user", "detail"];
718
- /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["user", "detail", string | number];
719
- };
720
720
  export declare const hierarchyModuleKeys: {
721
721
  /** All hierarchyModule queries */ readonly all: readonly ["hierarchymodule"];
722
722
  /** List query keys */ readonly lists: () => readonly ["hierarchymodule", "list"];
@@ -737,11 +737,11 @@ export declare const customQueryKeys: {
737
737
  /** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
738
738
  /** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
739
739
  /** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
740
- /** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
741
- /** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
742
740
  /** Query key for getAllObjectsFromRoot */ readonly getAllObjectsFromRoot: (variables?: object) => readonly ["getAllObjectsFromRoot", object];
743
741
  /** Query key for getPathObjectsFromRoot */ readonly getPathObjectsFromRoot: (variables?: object) => readonly ["getPathObjectsFromRoot", object];
744
742
  /** Query key for getObjectAtPath */ readonly getObjectAtPath: (variables?: object) => readonly ["getObjectAtPath", object];
743
+ /** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
744
+ /** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
745
745
  /** Query key for stepsRequired */ readonly stepsRequired: (variables?: object) => readonly ["stepsRequired", object];
746
746
  /** Query key for currentUser */ readonly currentUser: () => readonly ["currentUser"];
747
747
  };
@@ -789,6 +789,13 @@ export declare const queryKeys: {
789
789
  /** Detail query keys */ readonly details: () => readonly ["getallrecord", "detail"];
790
790
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["getallrecord", "detail", string | number];
791
791
  };
792
+ readonly object: {
793
+ /** All object queries */ readonly all: readonly ["object"];
794
+ /** List query keys */ readonly lists: () => readonly ["object", "list"];
795
+ /** List query key with variables */ readonly list: (variables?: object) => readonly ["object", "list", object];
796
+ /** Detail query keys */ readonly details: () => readonly ["object", "detail"];
797
+ /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["object", "detail", string | number];
798
+ };
792
799
  readonly appPermission: {
793
800
  /** All appPermission queries */ readonly all: readonly ["apppermission"];
794
801
  /** List query keys */ readonly lists: () => readonly ["apppermission", "list"];
@@ -803,13 +810,6 @@ export declare const queryKeys: {
803
810
  /** Detail query keys */ readonly details: () => readonly ["orgpermission", "detail"];
804
811
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgpermission", "detail", string | number];
805
812
  };
806
- readonly object: {
807
- /** All object queries */ readonly all: readonly ["object"];
808
- /** List query keys */ readonly lists: () => readonly ["object", "list"];
809
- /** List query key with variables */ readonly list: (variables?: object) => readonly ["object", "list", object];
810
- /** Detail query keys */ readonly details: () => readonly ["object", "detail"];
811
- /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["object", "detail", string | number];
812
- };
813
813
  readonly appLevelRequirement: {
814
814
  /** All appLevelRequirement queries */ readonly all: readonly ["applevelrequirement"];
815
815
  /** List query keys */ readonly lists: () => readonly ["applevelrequirement", "list"];
@@ -1405,6 +1405,13 @@ export declare const queryKeys: {
1405
1405
  /** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
1406
1406
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
1407
1407
  };
1408
+ readonly commit: {
1409
+ /** All commit queries */ readonly all: readonly ["commit"];
1410
+ /** List query keys */ readonly lists: () => readonly ["commit", "list"];
1411
+ /** List query key with variables */ readonly list: (variables?: object) => readonly ["commit", "list", object];
1412
+ /** Detail query keys */ readonly details: () => readonly ["commit", "detail"];
1413
+ /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["commit", "detail", string | number];
1414
+ };
1408
1415
  readonly appMembershipDefault: {
1409
1416
  /** All appMembershipDefault queries */ readonly all: readonly ["appmembershipdefault"];
1410
1417
  /** List query keys */ readonly lists: () => readonly ["appmembershipdefault", "list"];
@@ -1419,13 +1426,6 @@ export declare const queryKeys: {
1419
1426
  /** Detail query keys */ readonly details: () => readonly ["rlsmodule", "detail"];
1420
1427
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["rlsmodule", "detail", string | number];
1421
1428
  };
1422
- readonly commit: {
1423
- /** All commit queries */ readonly all: readonly ["commit"];
1424
- /** List query keys */ readonly lists: () => readonly ["commit", "list"];
1425
- /** List query key with variables */ readonly list: (variables?: object) => readonly ["commit", "list", object];
1426
- /** Detail query keys */ readonly details: () => readonly ["commit", "detail"];
1427
- /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["commit", "detail", string | number];
1428
- };
1429
1429
  readonly orgMembershipDefault: {
1430
1430
  /** All orgMembershipDefault queries */ readonly all: readonly ["orgmembershipdefault"];
1431
1431
  /** List query keys */ readonly lists: () => readonly ["orgmembershipdefault", "list"];
@@ -1461,6 +1461,13 @@ export declare const queryKeys: {
1461
1461
  /** Detail query keys */ readonly details: () => readonly ["email", "detail"];
1462
1462
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["email", "detail", string | number];
1463
1463
  };
1464
+ readonly user: {
1465
+ /** All user queries */ readonly all: readonly ["user"];
1466
+ /** List query keys */ readonly lists: () => readonly ["user", "list"];
1467
+ /** List query key with variables */ readonly list: (variables?: object) => readonly ["user", "list", object];
1468
+ /** Detail query keys */ readonly details: () => readonly ["user", "detail"];
1469
+ /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["user", "detail", string | number];
1470
+ };
1464
1471
  readonly astMigration: {
1465
1472
  /** All astMigration queries */ readonly all: readonly ["astmigration"];
1466
1473
  /** List query keys */ readonly lists: () => readonly ["astmigration", "list"];
@@ -1475,13 +1482,6 @@ export declare const queryKeys: {
1475
1482
  /** Detail query keys */ readonly details: () => readonly ["appmembership", "detail"];
1476
1483
  /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembership", "detail", string | number];
1477
1484
  };
1478
- readonly user: {
1479
- /** All user queries */ readonly all: readonly ["user"];
1480
- /** List query keys */ readonly lists: () => readonly ["user", "list"];
1481
- /** List query key with variables */ readonly list: (variables?: object) => readonly ["user", "list", object];
1482
- /** Detail query keys */ readonly details: () => readonly ["user", "detail"];
1483
- /** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["user", "detail", string | number];
1484
- };
1485
1485
  readonly hierarchyModule: {
1486
1486
  /** All hierarchyModule queries */ readonly all: readonly ["hierarchymodule"];
1487
1487
  /** List query keys */ readonly lists: () => readonly ["hierarchymodule", "list"];
@@ -1502,11 +1502,11 @@ export declare const queryKeys: {
1502
1502
  /** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
1503
1503
  /** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
1504
1504
  /** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
1505
- /** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
1506
- /** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
1507
1505
  /** Query key for getAllObjectsFromRoot */ readonly getAllObjectsFromRoot: (variables?: object) => readonly ["getAllObjectsFromRoot", object];
1508
1506
  /** Query key for getPathObjectsFromRoot */ readonly getPathObjectsFromRoot: (variables?: object) => readonly ["getPathObjectsFromRoot", object];
1509
1507
  /** Query key for getObjectAtPath */ readonly getObjectAtPath: (variables?: object) => readonly ["getObjectAtPath", object];
1508
+ /** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
1509
+ /** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
1510
1510
  /** Query key for stepsRequired */ readonly stepsRequired: (variables?: object) => readonly ["stepsRequired", object];
1511
1511
  /** Query key for currentUser */ readonly currentUser: () => readonly ["currentUser"];
1512
1512
  };
@@ -37,6 +37,13 @@ export const getAllRecordKeys = {
37
37
  /** Detail query keys */ details: () => [...getAllRecordKeys.all, 'detail'],
38
38
  /** Detail query key for specific item */ detail: (id) => [...getAllRecordKeys.details(), id],
39
39
  };
40
+ export const objectKeys = {
41
+ /** All object queries */ all: ['object'],
42
+ /** List query keys */ lists: () => [...objectKeys.all, 'list'],
43
+ /** List query key with variables */ list: (variables) => [...objectKeys.lists(), variables],
44
+ /** Detail query keys */ details: () => [...objectKeys.all, 'detail'],
45
+ /** Detail query key for specific item */ detail: (id) => [...objectKeys.details(), id],
46
+ };
40
47
  export const appPermissionKeys = {
41
48
  /** All appPermission queries */ all: ['apppermission'],
42
49
  /** List query keys */ lists: () => [...appPermissionKeys.all, 'list'],
@@ -51,13 +58,6 @@ export const orgPermissionKeys = {
51
58
  /** Detail query keys */ details: () => [...orgPermissionKeys.all, 'detail'],
52
59
  /** Detail query key for specific item */ detail: (id) => [...orgPermissionKeys.details(), id],
53
60
  };
54
- export const objectKeys = {
55
- /** All object queries */ all: ['object'],
56
- /** List query keys */ lists: () => [...objectKeys.all, 'list'],
57
- /** List query key with variables */ list: (variables) => [...objectKeys.lists(), variables],
58
- /** Detail query keys */ details: () => [...objectKeys.all, 'detail'],
59
- /** Detail query key for specific item */ detail: (id) => [...objectKeys.details(), id],
60
- };
61
61
  export const appLevelRequirementKeys = {
62
62
  /** All appLevelRequirement queries */ all: ['applevelrequirement'],
63
63
  /** List query keys */ lists: () => [...appLevelRequirementKeys.all, 'list'],
@@ -653,6 +653,13 @@ export const membershipTypeKeys = {
653
653
  /** Detail query keys */ details: () => [...membershipTypeKeys.all, 'detail'],
654
654
  /** Detail query key for specific item */ detail: (id) => [...membershipTypeKeys.details(), id],
655
655
  };
656
+ export const commitKeys = {
657
+ /** All commit queries */ all: ['commit'],
658
+ /** List query keys */ lists: () => [...commitKeys.all, 'list'],
659
+ /** List query key with variables */ list: (variables) => [...commitKeys.lists(), variables],
660
+ /** Detail query keys */ details: () => [...commitKeys.all, 'detail'],
661
+ /** Detail query key for specific item */ detail: (id) => [...commitKeys.details(), id],
662
+ };
656
663
  export const appMembershipDefaultKeys = {
657
664
  /** All appMembershipDefault queries */ all: ['appmembershipdefault'],
658
665
  /** List query keys */ lists: () => [...appMembershipDefaultKeys.all, 'list'],
@@ -667,13 +674,6 @@ export const rlsModuleKeys = {
667
674
  /** Detail query keys */ details: () => [...rlsModuleKeys.all, 'detail'],
668
675
  /** Detail query key for specific item */ detail: (id) => [...rlsModuleKeys.details(), id],
669
676
  };
670
- export const commitKeys = {
671
- /** All commit queries */ all: ['commit'],
672
- /** List query keys */ lists: () => [...commitKeys.all, 'list'],
673
- /** List query key with variables */ list: (variables) => [...commitKeys.lists(), variables],
674
- /** Detail query keys */ details: () => [...commitKeys.all, 'detail'],
675
- /** Detail query key for specific item */ detail: (id) => [...commitKeys.details(), id],
676
- };
677
677
  export const orgMembershipDefaultKeys = {
678
678
  /** All orgMembershipDefault queries */ all: ['orgmembershipdefault'],
679
679
  /** List query keys */ lists: () => [...orgMembershipDefaultKeys.all, 'list'],
@@ -709,6 +709,13 @@ export const emailKeys = {
709
709
  /** Detail query keys */ details: () => [...emailKeys.all, 'detail'],
710
710
  /** Detail query key for specific item */ detail: (id) => [...emailKeys.details(), id],
711
711
  };
712
+ export const userKeys = {
713
+ /** All user queries */ all: ['user'],
714
+ /** List query keys */ lists: () => [...userKeys.all, 'list'],
715
+ /** List query key with variables */ list: (variables) => [...userKeys.lists(), variables],
716
+ /** Detail query keys */ details: () => [...userKeys.all, 'detail'],
717
+ /** Detail query key for specific item */ detail: (id) => [...userKeys.details(), id],
718
+ };
712
719
  export const astMigrationKeys = {
713
720
  /** All astMigration queries */ all: ['astmigration'],
714
721
  /** List query keys */ lists: () => [...astMigrationKeys.all, 'list'],
@@ -723,13 +730,6 @@ export const appMembershipKeys = {
723
730
  /** Detail query keys */ details: () => [...appMembershipKeys.all, 'detail'],
724
731
  /** Detail query key for specific item */ detail: (id) => [...appMembershipKeys.details(), id],
725
732
  };
726
- export const userKeys = {
727
- /** All user queries */ all: ['user'],
728
- /** List query keys */ lists: () => [...userKeys.all, 'list'],
729
- /** List query key with variables */ list: (variables) => [...userKeys.lists(), variables],
730
- /** Detail query keys */ details: () => [...userKeys.all, 'detail'],
731
- /** Detail query key for specific item */ detail: (id) => [...userKeys.details(), id],
732
- };
733
733
  export const hierarchyModuleKeys = {
734
734
  /** All hierarchyModule queries */ all: ['hierarchymodule'],
735
735
  /** List query keys */ lists: () => [...hierarchyModuleKeys.all, 'list'],
@@ -753,11 +753,11 @@ export const customQueryKeys = {
753
753
  /** Query key for orgPermissionsGetMask */ orgPermissionsGetMask: (variables) => ['orgPermissionsGetMask', variables],
754
754
  /** Query key for appPermissionsGetMaskByNames */ appPermissionsGetMaskByNames: (variables) => ['appPermissionsGetMaskByNames', variables],
755
755
  /** Query key for orgPermissionsGetMaskByNames */ orgPermissionsGetMaskByNames: (variables) => ['orgPermissionsGetMaskByNames', variables],
756
- /** Query key for appPermissionsGetByMask */ appPermissionsGetByMask: (variables) => ['appPermissionsGetByMask', variables],
757
- /** Query key for orgPermissionsGetByMask */ orgPermissionsGetByMask: (variables) => ['orgPermissionsGetByMask', variables],
758
756
  /** Query key for getAllObjectsFromRoot */ getAllObjectsFromRoot: (variables) => ['getAllObjectsFromRoot', variables],
759
757
  /** Query key for getPathObjectsFromRoot */ getPathObjectsFromRoot: (variables) => ['getPathObjectsFromRoot', variables],
760
758
  /** Query key for getObjectAtPath */ getObjectAtPath: (variables) => ['getObjectAtPath', variables],
759
+ /** Query key for appPermissionsGetByMask */ appPermissionsGetByMask: (variables) => ['appPermissionsGetByMask', variables],
760
+ /** Query key for orgPermissionsGetByMask */ orgPermissionsGetByMask: (variables) => ['orgPermissionsGetByMask', variables],
761
761
  /** Query key for stepsRequired */ stepsRequired: (variables) => ['stepsRequired', variables],
762
762
  /** Query key for currentUser */ currentUser: () => ['currentUser'],
763
763
  };
@@ -787,9 +787,9 @@ export const queryKeys = {
787
787
  orgGetManagersRecord: orgGetManagersRecordKeys,
788
788
  orgGetSubordinatesRecord: orgGetSubordinatesRecordKeys,
789
789
  getAllRecord: getAllRecordKeys,
790
+ object: objectKeys,
790
791
  appPermission: appPermissionKeys,
791
792
  orgPermission: orgPermissionKeys,
792
- object: objectKeys,
793
793
  appLevelRequirement: appLevelRequirementKeys,
794
794
  database: databaseKeys,
795
795
  schema: schemaKeys,
@@ -875,17 +875,17 @@ export const queryKeys = {
875
875
  connectedAccount: connectedAccountKeys,
876
876
  nodeTypeRegistry: nodeTypeRegistryKeys,
877
877
  membershipType: membershipTypeKeys,
878
+ commit: commitKeys,
878
879
  appMembershipDefault: appMembershipDefaultKeys,
879
880
  rlsModule: rlsModuleKeys,
880
- commit: commitKeys,
881
881
  orgMembershipDefault: orgMembershipDefaultKeys,
882
882
  auditLog: auditLogKeys,
883
883
  appLevel: appLevelKeys,
884
884
  sqlMigration: sqlMigrationKeys,
885
885
  email: emailKeys,
886
+ user: userKeys,
886
887
  astMigration: astMigrationKeys,
887
888
  appMembership: appMembershipKeys,
888
- user: userKeys,
889
889
  hierarchyModule: hierarchyModuleKeys,
890
890
  custom: customQueryKeys,
891
891
  };