@constructive-io/react 0.8.0 → 0.8.2
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.
- package/README.md +0 -8
- package/admin/orm/input-types.d.ts +33 -127
- package/admin/schema-types.d.ts +20 -110
- package/admin/types.d.ts +0 -19
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +16 -16
- package/auth/hooks/invalidation.js +33 -33
- package/auth/hooks/mutation-keys.d.ts +32 -32
- package/auth/hooks/mutation-keys.js +20 -20
- package/auth/hooks/mutations/index.d.ts +9 -9
- package/auth/hooks/mutations/index.js +9 -9
- package/auth/hooks/queries/index.d.ts +6 -6
- package/auth/hooks/queries/index.js +6 -6
- package/auth/hooks/query-keys.d.ts +38 -38
- package/auth/hooks/query-keys.js +23 -23
- package/auth/orm/index.d.ts +6 -6
- package/auth/orm/index.js +6 -6
- package/auth/orm/input-types.d.ts +279 -327
- package/auth/orm/input-types.js +9 -1
- package/auth/orm/models/index.d.ts +3 -3
- package/auth/orm/models/index.js +7 -7
- package/auth/schema-types.d.ts +276 -188
- package/auth/types.d.ts +14 -24
- package/esm/admin/orm/input-types.d.ts +33 -127
- package/esm/admin/schema-types.d.ts +20 -110
- package/esm/admin/types.d.ts +0 -19
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +16 -16
- package/esm/auth/hooks/invalidation.js +34 -34
- package/esm/auth/hooks/mutation-keys.d.ts +32 -32
- package/esm/auth/hooks/mutation-keys.js +19 -19
- package/esm/auth/hooks/mutations/index.d.ts +9 -9
- package/esm/auth/hooks/mutations/index.js +9 -9
- package/esm/auth/hooks/queries/index.d.ts +6 -6
- package/esm/auth/hooks/queries/index.js +6 -6
- package/esm/auth/hooks/query-keys.d.ts +38 -38
- package/esm/auth/hooks/query-keys.js +22 -22
- package/esm/auth/orm/index.d.ts +6 -6
- package/esm/auth/orm/index.js +6 -6
- package/esm/auth/orm/input-types.d.ts +279 -327
- package/esm/auth/orm/input-types.js +9 -1
- package/esm/auth/orm/models/index.d.ts +3 -3
- package/esm/auth/orm/models/index.js +3 -3
- package/esm/auth/schema-types.d.ts +276 -188
- package/esm/auth/types.d.ts +14 -24
- package/esm/index.d.ts +5 -1
- package/esm/index.js +5 -1
- package/esm/objects/orm/input-types.d.ts +17 -48
- package/esm/objects/schema-types.d.ts +3 -37
- package/esm/objects/types.d.ts +0 -6
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +77 -53
- package/esm/public/hooks/invalidation.js +202 -138
- package/esm/public/hooks/mutation-keys.d.ts +180 -122
- package/esm/public/hooks/mutation-keys.js +129 -86
- package/esm/public/hooks/mutations/index.d.ts +50 -33
- package/esm/public/hooks/mutations/index.js +50 -33
- package/esm/public/hooks/mutations/useAcceptDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useAcceptDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useCancelDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCancelDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useConstructBlueprintMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useConstructBlueprintMutation.js +23 -0
- package/esm/public/hooks/mutations/useCopyTemplateToBlueprintMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useCopyTemplateToBlueprintMutation.js +23 -0
- package/esm/public/hooks/mutations/useCreateBlueprintMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBlueprintMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateBlueprintTemplateMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateBlueprintTemplateMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateDatabaseTransferMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateDatabaseTransferMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateEmbeddingChunkMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateEmbeddingChunkMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateEnumMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateUuidModuleMutation.js → useCreateEnumMutation.js} +7 -7
- package/esm/public/hooks/mutations/useDeleteBlueprintMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintTemplateMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteBlueprintTemplateMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteDatabaseTransferMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteDatabaseTransferMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteEmbeddingChunkMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteEmbeddingChunkMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteEnumMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteUuidModuleMutation.js → useDeleteEnumMutation.js} +8 -8
- package/esm/public/hooks/mutations/useRejectDatabaseTransferMutation.d.ts +20 -0
- package/esm/public/hooks/mutations/useRejectDatabaseTransferMutation.js +23 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintTemplateMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateBlueprintTemplateMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateDatabaseTransferMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateDatabaseTransferMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateEmbeddingChunkMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateEmbeddingChunkMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateEnumMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateUuidModuleMutation.js → useUpdateEnumMutation.js} +10 -10
- package/esm/public/hooks/queries/index.d.ts +25 -17
- package/esm/public/hooks/queries/index.js +25 -17
- package/esm/public/hooks/queries/useBlueprintQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBlueprintQuery.js +47 -0
- package/esm/public/hooks/queries/useBlueprintTemplateQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useBlueprintTemplateQuery.js +47 -0
- package/esm/public/hooks/queries/useBlueprintTemplatesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBlueprintTemplatesQuery.js +32 -0
- package/esm/public/hooks/queries/useBlueprintsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useBlueprintsQuery.js +32 -0
- package/esm/public/hooks/queries/useDatabaseTransferQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useDatabaseTransferQuery.js +47 -0
- package/esm/public/hooks/queries/useDatabaseTransfersQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useDatabaseTransfersQuery.js +32 -0
- package/esm/public/hooks/queries/useEmbeddingChunkQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useEmbeddingChunkQuery.js +47 -0
- package/esm/public/hooks/queries/useEmbeddingChunksQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useEmbeddingChunksQuery.js +32 -0
- package/esm/public/hooks/queries/useEnumQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useUuidModuleQuery.js → useEnumQuery.js} +11 -11
- package/esm/public/hooks/queries/useEnumsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useUuidModulesQuery.js → useEnumsQuery.js} +11 -11
- package/esm/public/hooks/query-keys.d.ts +180 -124
- package/esm/public/hooks/query-keys.js +103 -71
- package/esm/public/orm/index.d.ts +81 -48
- package/esm/public/orm/index.js +26 -18
- package/esm/public/orm/input-types.d.ts +2447 -2980
- package/esm/public/orm/input-types.js +26 -1
- package/esm/public/orm/models/blueprint.d.ts +56 -0
- package/esm/public/orm/models/blueprint.js +94 -0
- package/esm/public/orm/models/blueprintTemplate.d.ts +56 -0
- package/esm/public/orm/models/blueprintTemplate.js +94 -0
- package/esm/public/orm/models/databaseTransfer.d.ts +56 -0
- package/esm/public/orm/models/databaseTransfer.js +94 -0
- package/esm/public/orm/models/embeddingChunk.d.ts +56 -0
- package/esm/public/orm/models/embeddingChunk.js +94 -0
- package/esm/public/orm/models/enum.d.ts +56 -0
- package/esm/public/orm/models/{uuidModule.js → enum.js} +23 -23
- package/esm/public/orm/models/index.d.ts +13 -9
- package/esm/public/orm/models/index.js +13 -9
- package/esm/public/orm/mutation/index.d.ts +98 -50
- package/esm/public/orm/mutation/index.js +126 -66
- package/esm/public/schema-types.d.ts +2328 -2206
- package/esm/public/types.d.ts +161 -379
- package/index.d.ts +5 -1
- package/index.js +5 -1
- package/objects/orm/input-types.d.ts +17 -48
- package/objects/schema-types.d.ts +3 -37
- package/objects/types.d.ts +0 -6
- package/package.json +3 -3
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +77 -53
- package/public/hooks/invalidation.js +201 -137
- package/public/hooks/mutation-keys.d.ts +180 -122
- package/public/hooks/mutation-keys.js +132 -89
- package/public/hooks/mutations/index.d.ts +50 -33
- package/public/hooks/mutations/index.js +50 -33
- package/public/hooks/mutations/useAcceptDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useAcceptDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useCancelDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useCancelDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useConstructBlueprintMutation.d.ts +20 -0
- package/public/hooks/mutations/useConstructBlueprintMutation.js +26 -0
- package/public/hooks/mutations/useCopyTemplateToBlueprintMutation.d.ts +20 -0
- package/public/hooks/mutations/useCopyTemplateToBlueprintMutation.js +26 -0
- package/public/hooks/mutations/useCreateBlueprintMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateBlueprintMutation.js +34 -0
- package/public/hooks/mutations/useCreateBlueprintTemplateMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateBlueprintTemplateMutation.js +34 -0
- package/public/hooks/mutations/useCreateDatabaseTransferMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateDatabaseTransferMutation.js +34 -0
- package/public/hooks/mutations/useCreateEmbeddingChunkMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateEmbeddingChunkMutation.js +34 -0
- package/public/hooks/mutations/useCreateEnumMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateUuidModuleMutation.js → useCreateEnumMutation.js} +6 -6
- package/public/hooks/mutations/useDeleteBlueprintMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBlueprintMutation.js +39 -0
- package/public/hooks/mutations/useDeleteBlueprintTemplateMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteBlueprintTemplateMutation.js +39 -0
- package/public/hooks/mutations/useDeleteDatabaseTransferMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteDatabaseTransferMutation.js +39 -0
- package/public/hooks/mutations/useDeleteEmbeddingChunkMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteEmbeddingChunkMutation.js +39 -0
- package/public/hooks/mutations/useDeleteEnumMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteUuidModuleMutation.js → useDeleteEnumMutation.js} +7 -7
- package/public/hooks/mutations/useRejectDatabaseTransferMutation.d.ts +20 -0
- package/public/hooks/mutations/useRejectDatabaseTransferMutation.js +26 -0
- package/public/hooks/mutations/useUpdateBlueprintMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBlueprintMutation.js +40 -0
- package/public/hooks/mutations/useUpdateBlueprintTemplateMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateBlueprintTemplateMutation.js +40 -0
- package/public/hooks/mutations/useUpdateDatabaseTransferMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateDatabaseTransferMutation.js +40 -0
- package/public/hooks/mutations/useUpdateEmbeddingChunkMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateEmbeddingChunkMutation.js +40 -0
- package/public/hooks/mutations/useUpdateEnumMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateUuidModuleMutation.js → useUpdateEnumMutation.js} +9 -9
- package/public/hooks/queries/index.d.ts +25 -17
- package/public/hooks/queries/index.js +25 -17
- package/public/hooks/queries/useBlueprintQuery.d.ts +65 -0
- package/public/hooks/queries/useBlueprintQuery.js +53 -0
- package/public/hooks/queries/useBlueprintTemplateQuery.d.ts +65 -0
- package/public/hooks/queries/useBlueprintTemplateQuery.js +53 -0
- package/public/hooks/queries/useBlueprintTemplatesQuery.d.ts +69 -0
- package/public/hooks/queries/useBlueprintTemplatesQuery.js +38 -0
- package/public/hooks/queries/useBlueprintsQuery.d.ts +69 -0
- package/public/hooks/queries/useBlueprintsQuery.js +38 -0
- package/public/hooks/queries/useDatabaseTransferQuery.d.ts +65 -0
- package/public/hooks/queries/useDatabaseTransferQuery.js +53 -0
- package/public/hooks/queries/useDatabaseTransfersQuery.d.ts +69 -0
- package/public/hooks/queries/useDatabaseTransfersQuery.js +38 -0
- package/public/hooks/queries/useEmbeddingChunkQuery.d.ts +65 -0
- package/public/hooks/queries/useEmbeddingChunkQuery.js +53 -0
- package/public/hooks/queries/useEmbeddingChunksQuery.d.ts +69 -0
- package/public/hooks/queries/useEmbeddingChunksQuery.js +38 -0
- package/public/hooks/queries/useEnumQuery.d.ts +65 -0
- package/public/hooks/queries/{useUuidModuleQuery.js → useEnumQuery.js} +14 -14
- package/public/hooks/queries/useEnumsQuery.d.ts +69 -0
- package/public/hooks/queries/{useUuidModulesQuery.js → useEnumsQuery.js} +14 -14
- package/public/hooks/query-keys.d.ts +180 -124
- package/public/hooks/query-keys.js +106 -74
- package/public/orm/index.d.ts +81 -48
- package/public/orm/index.js +26 -18
- package/public/orm/input-types.d.ts +2447 -2980
- package/public/orm/input-types.js +26 -1
- package/public/orm/models/blueprint.d.ts +56 -0
- package/public/orm/models/blueprint.js +98 -0
- package/public/orm/models/blueprintTemplate.d.ts +56 -0
- package/public/orm/models/blueprintTemplate.js +98 -0
- package/public/orm/models/databaseTransfer.d.ts +56 -0
- package/public/orm/models/databaseTransfer.js +98 -0
- package/public/orm/models/embeddingChunk.d.ts +56 -0
- package/public/orm/models/embeddingChunk.js +98 -0
- package/public/orm/models/enum.d.ts +56 -0
- package/public/orm/models/{uuidModule.js → enum.js} +25 -25
- package/public/orm/models/index.d.ts +13 -9
- package/public/orm/models/index.js +29 -21
- package/public/orm/mutation/index.d.ts +98 -50
- package/public/orm/mutation/index.js +126 -66
- package/public/schema-types.d.ts +2328 -2206
- package/public/types.d.ts +161 -379
- package/esm/public/hooks/mutations/useCreateUuidModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useDeleteUuidModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useUpdateUuidModuleMutation.d.ts +0 -40
- package/esm/public/hooks/queries/useUuidModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useUuidModulesQuery.d.ts +0 -69
- package/esm/public/orm/models/uuidModule.d.ts +0 -56
- package/public/hooks/mutations/useCreateUuidModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useDeleteUuidModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useUpdateUuidModuleMutation.d.ts +0 -40
- package/public/hooks/queries/useUuidModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useUuidModulesQuery.d.ts +0 -69
- package/public/orm/models/uuidModule.d.ts +0 -56
|
@@ -24,6 +24,11 @@ import type { QueryClient } from '@tanstack/react-query';
|
|
|
24
24
|
* ```
|
|
25
25
|
*/
|
|
26
26
|
export declare const invalidate: {
|
|
27
|
+
/** Invalidate getAllRecord queries */ readonly getAllRecord: {
|
|
28
|
+
/** Invalidate all getAllRecord queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
29
|
+
/** Invalidate getAllRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
30
|
+
/** Invalidate a specific getAllRecord */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
31
|
+
};
|
|
27
32
|
/** Invalidate orgGetManagersRecord queries */ readonly orgGetManagersRecord: {
|
|
28
33
|
/** Invalidate all orgGetManagersRecord queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
29
34
|
/** Invalidate orgGetManagersRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -34,11 +39,6 @@ export declare const invalidate: {
|
|
|
34
39
|
/** Invalidate orgGetSubordinatesRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
35
40
|
/** Invalidate a specific orgGetSubordinatesRecord */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
36
41
|
};
|
|
37
|
-
/** Invalidate getAllRecord queries */ readonly getAllRecord: {
|
|
38
|
-
/** Invalidate all getAllRecord queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
39
|
-
/** Invalidate getAllRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
|
-
/** Invalidate a specific getAllRecord */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
|
-
};
|
|
42
42
|
/** Invalidate object queries */ readonly object: {
|
|
43
43
|
/** Invalidate all object queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
44
|
/** Invalidate object list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -144,6 +144,11 @@ export declare const invalidate: {
|
|
|
144
144
|
/** Invalidate viewRule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
145
145
|
/** Invalidate a specific viewRule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
146
146
|
};
|
|
147
|
+
/** Invalidate embeddingChunk queries */ readonly embeddingChunk: {
|
|
148
|
+
/** Invalidate all embeddingChunk queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
149
|
+
/** Invalidate embeddingChunk list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
150
|
+
/** Invalidate a specific embeddingChunk */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
151
|
+
};
|
|
147
152
|
/** Invalidate tableTemplateModule queries */ readonly tableTemplateModule: {
|
|
148
153
|
/** Invalidate all tableTemplateModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
149
154
|
/** Invalidate tableTemplateModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -169,6 +174,11 @@ export declare const invalidate: {
|
|
|
169
174
|
/** Invalidate defaultPrivilege list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
170
175
|
/** Invalidate a specific defaultPrivilege */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
176
|
};
|
|
177
|
+
/** Invalidate enum queries */ readonly enum: {
|
|
178
|
+
/** Invalidate all enum queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
179
|
+
/** Invalidate enum list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
180
|
+
/** Invalidate a specific enum */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
181
|
+
};
|
|
172
182
|
/** Invalidate apiSchema queries */ readonly apiSchema: {
|
|
173
183
|
/** Invalidate all apiSchema queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
174
184
|
/** Invalidate apiSchema list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -204,6 +214,11 @@ export declare const invalidate: {
|
|
|
204
214
|
/** Invalidate triggerFunction list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
205
215
|
/** Invalidate a specific triggerFunction */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
206
216
|
};
|
|
217
|
+
/** Invalidate databaseTransfer queries */ readonly databaseTransfer: {
|
|
218
|
+
/** Invalidate all databaseTransfer queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
219
|
+
/** Invalidate databaseTransfer list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
220
|
+
/** Invalidate a specific databaseTransfer */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
221
|
+
};
|
|
207
222
|
/** Invalidate api queries */ readonly api: {
|
|
208
223
|
/** Invalidate all api queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
209
224
|
/** Invalidate api list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -319,10 +334,15 @@ export declare const invalidate: {
|
|
|
319
334
|
/** Invalidate usersModule list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
320
335
|
/** Invalidate a specific usersModule */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
321
336
|
};
|
|
322
|
-
/** Invalidate
|
|
323
|
-
/** Invalidate all
|
|
324
|
-
/** Invalidate
|
|
325
|
-
/** Invalidate a specific
|
|
337
|
+
/** Invalidate blueprint queries */ readonly blueprint: {
|
|
338
|
+
/** Invalidate all blueprint queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
339
|
+
/** Invalidate blueprint list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
340
|
+
/** Invalidate a specific blueprint */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
341
|
+
};
|
|
342
|
+
/** Invalidate blueprintTemplate queries */ readonly blueprintTemplate: {
|
|
343
|
+
/** Invalidate all blueprintTemplate queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
344
|
+
/** Invalidate blueprintTemplate list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
345
|
+
/** Invalidate a specific blueprintTemplate */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
326
346
|
};
|
|
327
347
|
/** Invalidate databaseProvisionModule queries */ readonly databaseProvisionModule: {
|
|
328
348
|
/** Invalidate all databaseProvisionModule queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -379,6 +399,11 @@ export declare const invalidate: {
|
|
|
379
399
|
/** Invalidate orgChartEdgeGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
380
400
|
/** Invalidate a specific orgChartEdgeGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
381
401
|
};
|
|
402
|
+
/** Invalidate orgPermissionDefault queries */ readonly orgPermissionDefault: {
|
|
403
|
+
/** Invalidate all orgPermissionDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
404
|
+
/** Invalidate orgPermissionDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
405
|
+
/** Invalidate a specific orgPermissionDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
406
|
+
};
|
|
382
407
|
/** Invalidate appLimit queries */ readonly appLimit: {
|
|
383
408
|
/** Invalidate all appLimit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
384
409
|
/** Invalidate appLimit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -399,6 +424,31 @@ export declare const invalidate: {
|
|
|
399
424
|
/** Invalidate appAchievement list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
400
425
|
/** Invalidate a specific appAchievement */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
401
426
|
};
|
|
427
|
+
/** Invalidate appLevel queries */ readonly appLevel: {
|
|
428
|
+
/** Invalidate all appLevel queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
429
|
+
/** Invalidate appLevel list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
430
|
+
/** Invalidate a specific appLevel */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
431
|
+
};
|
|
432
|
+
/** Invalidate email queries */ readonly email: {
|
|
433
|
+
/** Invalidate all email queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
434
|
+
/** Invalidate email list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
435
|
+
/** Invalidate a specific email */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
436
|
+
};
|
|
437
|
+
/** Invalidate phoneNumber queries */ readonly phoneNumber: {
|
|
438
|
+
/** Invalidate all phoneNumber queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
439
|
+
/** Invalidate phoneNumber list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
440
|
+
/** Invalidate a specific phoneNumber */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
441
|
+
};
|
|
442
|
+
/** Invalidate cryptoAddress queries */ readonly cryptoAddress: {
|
|
443
|
+
/** Invalidate all cryptoAddress queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
444
|
+
/** Invalidate cryptoAddress list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
445
|
+
/** Invalidate a specific cryptoAddress */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
446
|
+
};
|
|
447
|
+
/** Invalidate connectedAccount queries */ readonly connectedAccount: {
|
|
448
|
+
/** Invalidate all connectedAccount queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
449
|
+
/** Invalidate connectedAccount list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
450
|
+
/** Invalidate a specific connectedAccount */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
451
|
+
};
|
|
402
452
|
/** Invalidate invite queries */ readonly invite: {
|
|
403
453
|
/** Invalidate all invite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
404
454
|
/** Invalidate invite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -419,6 +469,11 @@ export declare const invalidate: {
|
|
|
419
469
|
/** Invalidate orgClaimedInvite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
420
470
|
/** Invalidate a specific orgClaimedInvite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
421
471
|
};
|
|
472
|
+
/** Invalidate auditLog queries */ readonly auditLog: {
|
|
473
|
+
/** Invalidate all auditLog queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
474
|
+
/** Invalidate auditLog list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
475
|
+
/** Invalidate a specific auditLog */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
476
|
+
};
|
|
422
477
|
/** Invalidate ref queries */ readonly ref: {
|
|
423
478
|
/** Invalidate all ref queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
424
479
|
/** Invalidate ref list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -434,26 +489,11 @@ export declare const invalidate: {
|
|
|
434
489
|
/** Invalidate appPermissionDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
435
490
|
/** Invalidate a specific appPermissionDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
436
491
|
};
|
|
437
|
-
/** Invalidate cryptoAddress queries */ readonly cryptoAddress: {
|
|
438
|
-
/** Invalidate all cryptoAddress queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
439
|
-
/** Invalidate cryptoAddress list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
440
|
-
/** Invalidate a specific cryptoAddress */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
441
|
-
};
|
|
442
492
|
/** Invalidate roleType queries */ readonly roleType: {
|
|
443
493
|
/** Invalidate all roleType queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
444
494
|
/** Invalidate roleType list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
445
495
|
/** Invalidate a specific roleType */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
446
496
|
};
|
|
447
|
-
/** Invalidate orgPermissionDefault queries */ readonly orgPermissionDefault: {
|
|
448
|
-
/** Invalidate all orgPermissionDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
449
|
-
/** Invalidate orgPermissionDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
450
|
-
/** Invalidate a specific orgPermissionDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
451
|
-
};
|
|
452
|
-
/** Invalidate phoneNumber queries */ readonly phoneNumber: {
|
|
453
|
-
/** Invalidate all phoneNumber queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
454
|
-
/** Invalidate phoneNumber list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
455
|
-
/** Invalidate a specific phoneNumber */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
456
|
-
};
|
|
457
497
|
/** Invalidate appLimitDefault queries */ readonly appLimitDefault: {
|
|
458
498
|
/** Invalidate all appLimitDefault queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
459
499
|
/** Invalidate appLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -464,11 +504,6 @@ export declare const invalidate: {
|
|
|
464
504
|
/** Invalidate orgLimitDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
465
505
|
/** Invalidate a specific orgLimitDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
466
506
|
};
|
|
467
|
-
/** Invalidate connectedAccount queries */ readonly connectedAccount: {
|
|
468
|
-
/** Invalidate all connectedAccount queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
469
|
-
/** Invalidate connectedAccount list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
470
|
-
/** Invalidate a specific connectedAccount */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
471
|
-
};
|
|
472
507
|
/** Invalidate nodeTypeRegistry queries */ readonly nodeTypeRegistry: {
|
|
473
508
|
/** Invalidate all nodeTypeRegistry queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
474
509
|
/** Invalidate nodeTypeRegistry list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -499,26 +534,11 @@ export declare const invalidate: {
|
|
|
499
534
|
/** Invalidate orgMembershipDefault list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
500
535
|
/** Invalidate a specific orgMembershipDefault */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
501
536
|
};
|
|
502
|
-
/** Invalidate auditLog queries */ readonly auditLog: {
|
|
503
|
-
/** Invalidate all auditLog queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
504
|
-
/** Invalidate auditLog list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
505
|
-
/** Invalidate a specific auditLog */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
506
|
-
};
|
|
507
|
-
/** Invalidate appLevel queries */ readonly appLevel: {
|
|
508
|
-
/** Invalidate all appLevel queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
509
|
-
/** Invalidate appLevel list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
510
|
-
/** Invalidate a specific appLevel */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
511
|
-
};
|
|
512
537
|
/** Invalidate sqlMigration queries */ readonly sqlMigration: {
|
|
513
538
|
/** Invalidate all sqlMigration queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
514
539
|
/** Invalidate sqlMigration list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
515
540
|
/** Invalidate a specific sqlMigration */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
516
541
|
};
|
|
517
|
-
/** Invalidate email queries */ readonly email: {
|
|
518
|
-
/** Invalidate all email queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
519
|
-
/** Invalidate email list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
520
|
-
/** Invalidate a specific email */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
521
|
-
};
|
|
522
542
|
/** Invalidate user queries */ readonly user: {
|
|
523
543
|
/** Invalidate all user queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
524
544
|
/** Invalidate user list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -552,9 +572,9 @@ export declare const invalidate: {
|
|
|
552
572
|
* instead of just invalidating (which would trigger a refetch).
|
|
553
573
|
*/
|
|
554
574
|
export declare const remove: {
|
|
575
|
+
/** Remove getAllRecord from cache */ readonly getAllRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
555
576
|
/** Remove orgGetManagersRecord from cache */ readonly orgGetManagersRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
556
577
|
/** Remove orgGetSubordinatesRecord from cache */ readonly orgGetSubordinatesRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
557
|
-
/** Remove getAllRecord from cache */ readonly getAllRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
558
578
|
/** Remove object from cache */ readonly object: (queryClient: QueryClient, id: string | number) => void;
|
|
559
579
|
/** Remove appPermission from cache */ readonly appPermission: (queryClient: QueryClient, id: string | number) => void;
|
|
560
580
|
/** Remove orgPermission from cache */ readonly orgPermission: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -576,11 +596,13 @@ export declare const remove: {
|
|
|
576
596
|
/** Remove viewTable from cache */ readonly viewTable: (queryClient: QueryClient, id: string | number) => void;
|
|
577
597
|
/** Remove viewGrant from cache */ readonly viewGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
578
598
|
/** Remove viewRule from cache */ readonly viewRule: (queryClient: QueryClient, id: string | number) => void;
|
|
599
|
+
/** Remove embeddingChunk from cache */ readonly embeddingChunk: (queryClient: QueryClient, id: string | number) => void;
|
|
579
600
|
/** Remove tableTemplateModule from cache */ readonly tableTemplateModule: (queryClient: QueryClient, id: string | number) => void;
|
|
580
601
|
/** Remove secureTableProvision from cache */ readonly secureTableProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
581
602
|
/** Remove relationProvision from cache */ readonly relationProvision: (queryClient: QueryClient, id: string | number) => void;
|
|
582
603
|
/** Remove schemaGrant from cache */ readonly schemaGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
583
604
|
/** Remove defaultPrivilege from cache */ readonly defaultPrivilege: (queryClient: QueryClient, id: string | number) => void;
|
|
605
|
+
/** Remove enum from cache */ readonly enum: (queryClient: QueryClient, id: string | number) => void;
|
|
584
606
|
/** Remove apiSchema from cache */ readonly apiSchema: (queryClient: QueryClient, id: string | number) => void;
|
|
585
607
|
/** Remove apiModule from cache */ readonly apiModule: (queryClient: QueryClient, id: string | number) => void;
|
|
586
608
|
/** Remove domain from cache */ readonly domain: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -588,6 +610,7 @@ export declare const remove: {
|
|
|
588
610
|
/** Remove siteModule from cache */ readonly siteModule: (queryClient: QueryClient, id: string | number) => void;
|
|
589
611
|
/** Remove siteTheme from cache */ readonly siteTheme: (queryClient: QueryClient, id: string | number) => void;
|
|
590
612
|
/** Remove triggerFunction from cache */ readonly triggerFunction: (queryClient: QueryClient, id: string | number) => void;
|
|
613
|
+
/** Remove databaseTransfer from cache */ readonly databaseTransfer: (queryClient: QueryClient, id: string | number) => void;
|
|
591
614
|
/** Remove api from cache */ readonly api: (queryClient: QueryClient, id: string | number) => void;
|
|
592
615
|
/** Remove site from cache */ readonly site: (queryClient: QueryClient, id: string | number) => void;
|
|
593
616
|
/** Remove app from cache */ readonly app: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -611,7 +634,8 @@ export declare const remove: {
|
|
|
611
634
|
/** Remove sessionsModule from cache */ readonly sessionsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
612
635
|
/** Remove userAuthModule from cache */ readonly userAuthModule: (queryClient: QueryClient, id: string | number) => void;
|
|
613
636
|
/** Remove usersModule from cache */ readonly usersModule: (queryClient: QueryClient, id: string | number) => void;
|
|
614
|
-
/** Remove
|
|
637
|
+
/** Remove blueprint from cache */ readonly blueprint: (queryClient: QueryClient, id: string | number) => void;
|
|
638
|
+
/** Remove blueprintTemplate from cache */ readonly blueprintTemplate: (queryClient: QueryClient, id: string | number) => void;
|
|
615
639
|
/** Remove databaseProvisionModule from cache */ readonly databaseProvisionModule: (queryClient: QueryClient, id: string | number) => void;
|
|
616
640
|
/** Remove appAdminGrant from cache */ readonly appAdminGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
617
641
|
/** Remove appOwnerGrant from cache */ readonly appOwnerGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -623,34 +647,34 @@ export declare const remove: {
|
|
|
623
647
|
/** Remove orgGrant from cache */ readonly orgGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
624
648
|
/** Remove orgChartEdge from cache */ readonly orgChartEdge: (queryClient: QueryClient, id: string | number) => void;
|
|
625
649
|
/** Remove orgChartEdgeGrant from cache */ readonly orgChartEdgeGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
650
|
+
/** Remove orgPermissionDefault from cache */ readonly orgPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
626
651
|
/** Remove appLimit from cache */ readonly appLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
627
652
|
/** Remove orgLimit from cache */ readonly orgLimit: (queryClient: QueryClient, id: string | number) => void;
|
|
628
653
|
/** Remove appStep from cache */ readonly appStep: (queryClient: QueryClient, id: string | number) => void;
|
|
629
654
|
/** Remove appAchievement from cache */ readonly appAchievement: (queryClient: QueryClient, id: string | number) => void;
|
|
655
|
+
/** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
|
|
656
|
+
/** Remove email from cache */ readonly email: (queryClient: QueryClient, id: string | number) => void;
|
|
657
|
+
/** Remove phoneNumber from cache */ readonly phoneNumber: (queryClient: QueryClient, id: string | number) => void;
|
|
658
|
+
/** Remove cryptoAddress from cache */ readonly cryptoAddress: (queryClient: QueryClient, id: string | number) => void;
|
|
659
|
+
/** Remove connectedAccount from cache */ readonly connectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
630
660
|
/** Remove invite from cache */ readonly invite: (queryClient: QueryClient, id: string | number) => void;
|
|
631
661
|
/** Remove claimedInvite from cache */ readonly claimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
632
662
|
/** Remove orgInvite from cache */ readonly orgInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
633
663
|
/** Remove orgClaimedInvite from cache */ readonly orgClaimedInvite: (queryClient: QueryClient, id: string | number) => void;
|
|
664
|
+
/** Remove auditLog from cache */ readonly auditLog: (queryClient: QueryClient, id: string | number) => void;
|
|
634
665
|
/** Remove ref from cache */ readonly ref: (queryClient: QueryClient, id: string | number) => void;
|
|
635
666
|
/** Remove store from cache */ readonly store: (queryClient: QueryClient, id: string | number) => void;
|
|
636
667
|
/** Remove appPermissionDefault from cache */ readonly appPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
637
|
-
/** Remove cryptoAddress from cache */ readonly cryptoAddress: (queryClient: QueryClient, id: string | number) => void;
|
|
638
668
|
/** Remove roleType from cache */ readonly roleType: (queryClient: QueryClient, id: string | number) => void;
|
|
639
|
-
/** Remove orgPermissionDefault from cache */ readonly orgPermissionDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
640
|
-
/** Remove phoneNumber from cache */ readonly phoneNumber: (queryClient: QueryClient, id: string | number) => void;
|
|
641
669
|
/** Remove appLimitDefault from cache */ readonly appLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
642
670
|
/** Remove orgLimitDefault from cache */ readonly orgLimitDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
643
|
-
/** Remove connectedAccount from cache */ readonly connectedAccount: (queryClient: QueryClient, id: string | number) => void;
|
|
644
671
|
/** Remove nodeTypeRegistry from cache */ readonly nodeTypeRegistry: (queryClient: QueryClient, id: string | number) => void;
|
|
645
672
|
/** Remove membershipType from cache */ readonly membershipType: (queryClient: QueryClient, id: string | number) => void;
|
|
646
673
|
/** Remove commit from cache */ readonly commit: (queryClient: QueryClient, id: string | number) => void;
|
|
647
674
|
/** Remove appMembershipDefault from cache */ readonly appMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
648
675
|
/** Remove rlsModule from cache */ readonly rlsModule: (queryClient: QueryClient, id: string | number) => void;
|
|
649
676
|
/** Remove orgMembershipDefault from cache */ readonly orgMembershipDefault: (queryClient: QueryClient, id: string | number) => void;
|
|
650
|
-
/** Remove auditLog from cache */ readonly auditLog: (queryClient: QueryClient, id: string | number) => void;
|
|
651
|
-
/** Remove appLevel from cache */ readonly appLevel: (queryClient: QueryClient, id: string | number) => void;
|
|
652
677
|
/** Remove sqlMigration from cache */ readonly sqlMigration: (queryClient: QueryClient, id: string | number) => void;
|
|
653
|
-
/** Remove email from cache */ readonly email: (queryClient: QueryClient, id: string | number) => void;
|
|
654
678
|
/** Remove user from cache */ readonly user: (queryClient: QueryClient, id: string | number) => void;
|
|
655
679
|
/** Remove astMigration from cache */ readonly astMigration: (queryClient: QueryClient, id: string | number) => void;
|
|
656
680
|
/** Remove appMembership from cache */ readonly appMembership: (queryClient: QueryClient, id: string | number) => void;
|