@constructive-io/react 0.21.2 → 0.22.0
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/admin/hooks/index.d.ts +1 -1
- package/admin/hooks/index.js +1 -1
- package/admin/hooks/invalidation.d.ts +85 -91
- package/admin/hooks/invalidation.js +194 -210
- package/admin/hooks/mutation-keys.d.ts +170 -182
- package/admin/hooks/mutation-keys.js +101 -108
- package/admin/hooks/mutations/index.d.ts +48 -47
- package/admin/hooks/mutations/index.js +48 -47
- package/admin/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteAppLimitEventMutation.js +39 -0
- package/admin/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
- package/admin/hooks/mutations/useDeleteOrgLimitEventMutation.js +39 -0
- package/admin/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
- package/{public/hooks/mutations/useUpdateObjectMutation.js → admin/hooks/mutations/useUpdateAppLimitEventMutation.js} +9 -9
- package/admin/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
- package/admin/hooks/mutations/useUpdateOrgLimitEventMutation.js +40 -0
- package/admin/hooks/queries/index.d.ts +32 -32
- package/admin/hooks/queries/index.js +32 -32
- package/admin/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
- package/admin/hooks/queries/useAppLimitEventQuery.js +53 -0
- package/admin/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
- package/admin/hooks/queries/useOrgLimitEventQuery.js +53 -0
- package/admin/hooks/query-keys.d.ts +200 -214
- package/admin/hooks/query-keys.js +116 -124
- package/admin/orm/index.d.ts +31 -33
- package/admin/orm/index.js +32 -33
- package/admin/orm/input-types.d.ts +2090 -2039
- package/admin/orm/input-types.js +4 -4
- package/admin/orm/models/appLimitEvent.d.ts +26 -2
- package/admin/orm/models/appLimitEvent.js +45 -0
- package/admin/orm/models/index.d.ts +15 -16
- package/admin/orm/models/index.js +31 -33
- package/admin/orm/models/orgLimitEvent.d.ts +26 -2
- package/admin/orm/models/orgLimitEvent.js +45 -0
- package/admin/schema-types.d.ts +1917 -1838
- package/admin/types.d.ts +149 -143
- package/auth/hooks/index.d.ts +1 -1
- package/auth/hooks/index.js +1 -1
- package/auth/hooks/invalidation.d.ts +5 -5
- package/auth/hooks/invalidation.js +9 -9
- package/auth/hooks/mutation-keys.d.ts +12 -12
- package/auth/hooks/mutation-keys.js +10 -10
- package/auth/hooks/mutations/index.d.ts +4 -4
- package/auth/hooks/mutations/index.js +4 -4
- package/auth/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
- package/auth/hooks/mutations/useCreateAuditLogAuthMutation.js +34 -0
- package/auth/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
- package/auth/hooks/mutations/useDeleteAuditLogAuthMutation.js +39 -0
- package/auth/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
- package/auth/hooks/mutations/useUpdateAuditLogAuthMutation.js +40 -0
- package/auth/hooks/queries/index.d.ts +2 -2
- package/auth/hooks/queries/index.js +2 -2
- package/auth/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
- package/auth/hooks/queries/useAuditLogAuthQuery.js +53 -0
- package/auth/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
- package/{public/hooks/queries/useGetAllQuery.js → auth/hooks/queries/useAuditLogAuthsQuery.js} +14 -14
- package/auth/hooks/query-keys.d.ts +12 -12
- package/auth/hooks/query-keys.js +8 -8
- package/auth/orm/index.d.ts +8 -8
- package/auth/orm/index.js +4 -3
- package/auth/orm/input-types.d.ts +94 -94
- package/auth/orm/input-types.js +1 -1
- package/auth/orm/models/auditLogAuth.d.ts +54 -0
- package/{public/orm/models/agentMessage.js → auth/orm/models/auditLogAuth.js} +27 -27
- package/auth/orm/models/index.d.ts +1 -1
- package/auth/orm/models/index.js +3 -3
- package/auth/orm/mutation/index.d.ts +9 -9
- package/auth/orm/mutation/index.js +12 -12
- package/auth/schema-types.d.ts +90 -86
- package/auth/types.d.ts +2 -2
- package/esm/admin/hooks/index.d.ts +1 -1
- package/esm/admin/hooks/index.js +1 -1
- package/esm/admin/hooks/invalidation.d.ts +85 -91
- package/esm/admin/hooks/invalidation.js +195 -211
- package/esm/admin/hooks/mutation-keys.d.ts +170 -182
- package/esm/admin/hooks/mutation-keys.js +100 -107
- package/esm/admin/hooks/mutations/index.d.ts +48 -47
- package/esm/admin/hooks/mutations/index.js +48 -47
- package/esm/admin/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteAppLimitEventMutation.js +36 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
- package/esm/admin/hooks/mutations/useDeleteOrgLimitEventMutation.js +36 -0
- package/esm/admin/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateAppLimitEventMutation.js +37 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
- package/esm/admin/hooks/mutations/useUpdateOrgLimitEventMutation.js +37 -0
- package/esm/admin/hooks/queries/index.d.ts +32 -32
- package/esm/admin/hooks/queries/index.js +32 -32
- package/esm/admin/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useAppLimitEventQuery.js +47 -0
- package/esm/admin/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
- package/esm/admin/hooks/queries/useOrgLimitEventQuery.js +47 -0
- package/esm/admin/hooks/query-keys.d.ts +200 -214
- package/esm/admin/hooks/query-keys.js +115 -123
- package/esm/admin/orm/index.d.ts +31 -33
- package/esm/admin/orm/index.js +31 -33
- package/esm/admin/orm/input-types.d.ts +2090 -2039
- package/esm/admin/orm/input-types.js +4 -4
- package/esm/admin/orm/models/appLimitEvent.d.ts +26 -2
- package/esm/admin/orm/models/appLimitEvent.js +46 -1
- package/esm/admin/orm/models/index.d.ts +15 -16
- package/esm/admin/orm/models/index.js +15 -16
- package/esm/admin/orm/models/orgLimitEvent.d.ts +26 -2
- package/esm/admin/orm/models/orgLimitEvent.js +46 -1
- package/esm/admin/schema-types.d.ts +1917 -1838
- package/esm/admin/types.d.ts +149 -143
- package/esm/auth/hooks/index.d.ts +1 -1
- package/esm/auth/hooks/index.js +1 -1
- package/esm/auth/hooks/invalidation.d.ts +5 -5
- package/esm/auth/hooks/invalidation.js +10 -10
- package/esm/auth/hooks/mutation-keys.d.ts +12 -12
- package/esm/auth/hooks/mutation-keys.js +9 -9
- package/esm/auth/hooks/mutations/index.d.ts +4 -4
- package/esm/auth/hooks/mutations/index.js +4 -4
- package/esm/auth/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
- package/esm/auth/hooks/mutations/useCreateAuditLogAuthMutation.js +31 -0
- package/esm/auth/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
- package/esm/auth/hooks/mutations/useDeleteAuditLogAuthMutation.js +36 -0
- package/esm/auth/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
- package/esm/auth/hooks/mutations/useUpdateAuditLogAuthMutation.js +37 -0
- package/esm/auth/hooks/queries/index.d.ts +2 -2
- package/esm/auth/hooks/queries/index.js +2 -2
- package/esm/auth/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
- package/esm/auth/hooks/queries/useAuditLogAuthQuery.js +47 -0
- package/esm/auth/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
- package/esm/auth/hooks/queries/useAuditLogAuthsQuery.js +32 -0
- package/esm/auth/hooks/query-keys.d.ts +12 -12
- package/esm/auth/hooks/query-keys.js +7 -7
- package/esm/auth/orm/index.d.ts +8 -8
- package/esm/auth/orm/index.js +3 -3
- package/esm/auth/orm/input-types.d.ts +94 -94
- package/esm/auth/orm/input-types.js +1 -1
- package/esm/auth/orm/models/auditLogAuth.d.ts +54 -0
- package/esm/{public/orm/models/auditLog.js → auth/orm/models/auditLogAuth.js} +25 -25
- package/esm/auth/orm/models/index.d.ts +1 -1
- package/esm/auth/orm/models/index.js +1 -1
- package/esm/auth/orm/mutation/index.d.ts +9 -9
- package/esm/auth/orm/mutation/index.js +12 -12
- package/esm/auth/schema-types.d.ts +90 -86
- package/esm/auth/types.d.ts +2 -2
- package/esm/objects/orm/index.d.ts +1 -1
- package/esm/objects/orm/index.js +1 -1
- package/esm/public/hooks/index.d.ts +1 -1
- package/esm/public/hooks/index.js +1 -1
- package/esm/public/hooks/invalidation.d.ts +164 -152
- package/esm/public/hooks/invalidation.js +374 -342
- package/esm/public/hooks/mutation-keys.d.ts +350 -342
- package/esm/public/hooks/mutation-keys.js +224 -231
- package/esm/public/hooks/mutations/index.d.ts +91 -87
- package/esm/public/hooks/mutations/index.js +91 -87
- package/esm/public/hooks/mutations/useCreateAgentModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateObjectMutation.js → useCreateAgentModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateAuditLogAuthMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateComputeLogModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateAuditLogMutation.js → useCreateComputeLogModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateConfigSecretsUserModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateEncryptedSecretsModuleMutation.js → useCreateConfigSecretsUserModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateDbUsageModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateRefMutation.js → useCreateDbUsageModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateFunctionModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateFunctionModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateGraphModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/{useCreateCommitMutation.js → useCreateGraphModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateInferenceLogModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateInferenceLogModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateMerkleStoreModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateMerkleStoreModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateNamespaceModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateNamespaceModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useCreateStorageLogModuleMutation.d.ts +34 -0
- package/esm/{auth/hooks/mutations/useCreateAuditLogMutation.js → public/hooks/mutations/useCreateStorageLogModuleMutation.js} +7 -7
- package/esm/public/hooks/mutations/useCreateTransferLogModuleMutation.d.ts +34 -0
- package/esm/public/hooks/mutations/useCreateTransferLogModuleMutation.js +31 -0
- package/esm/public/hooks/mutations/useDeleteAgentModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteRefMutation.js → useDeleteAgentModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAppLimitEventMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteAuditLogAuthMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteComputeLogModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteAuditLogMutation.js → useDeleteComputeLogModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteConfigSecretsUserModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteEncryptedSecretsModuleMutation.js → useDeleteConfigSecretsUserModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteDbUsageModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteStoreMutation.js → useDeleteDbUsageModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteFunctionModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteObjectMutation.js → useDeleteFunctionModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteGraphModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/{useDeleteCommitMutation.js → useDeleteGraphModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteInferenceLogModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteInferenceLogModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteNamespaceModuleMutation.d.ts +38 -0
- package/esm/{auth/hooks/mutations/useDeleteAuditLogMutation.js → public/hooks/mutations/useDeleteNamespaceModuleMutation.js} +8 -8
- package/esm/public/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteOrgLimitEventMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteStorageLogModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteStorageLogModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useDeleteTransferLogModuleMutation.d.ts +38 -0
- package/esm/public/hooks/mutations/useDeleteTransferLogModuleMutation.js +36 -0
- package/esm/public/hooks/mutations/useUpdateAgentModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateRefMutation.js → useUpdateAgentModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAppLimitEventMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateAuditLogAuthMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateComputeLogModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateComputeLogModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateConfigSecretsOrgModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateAgentTaskMutation.js → useUpdateConfigSecretsOrgModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateConfigSecretsUserModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateEncryptedSecretsModuleMutation.js → useUpdateConfigSecretsUserModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateDbUsageModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateObjectMutation.js → useUpdateDbUsageModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateFunctionModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateAuditLogMutation.js → useUpdateFunctionModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateGraphModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/{useUpdateCommitMutation.js → useUpdateGraphModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateInferenceLogModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateInferenceLogModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateNamespaceModuleMutation.d.ts +40 -0
- package/esm/{auth/hooks/mutations/useUpdateAuditLogMutation.js → public/hooks/mutations/useUpdateNamespaceModuleMutation.js} +10 -10
- package/esm/public/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateOrgLimitEventMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateStorageLogModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateStorageLogModuleMutation.js +37 -0
- package/esm/public/hooks/mutations/useUpdateTransferLogModuleMutation.d.ts +40 -0
- package/esm/public/hooks/mutations/useUpdateTransferLogModuleMutation.js +37 -0
- package/esm/public/hooks/queries/index.d.ts +60 -56
- package/esm/public/hooks/queries/index.js +60 -56
- package/esm/public/hooks/queries/useAgentModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useCommitQuery.js → useAgentModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useAgentModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useCommitsQuery.js → useAgentModulesQuery.js} +11 -11
- package/esm/public/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAppLimitEventQuery.js +47 -0
- package/esm/public/hooks/queries/useApplyRegistryDefaultsQuery.d.ts +53 -0
- package/esm/public/hooks/queries/useApplyRegistryDefaultsQuery.js +47 -0
- package/esm/public/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useAuditLogAuthQuery.js +47 -0
- package/esm/public/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useAuditLogAuthsQuery.js +32 -0
- package/esm/public/hooks/queries/useComputeLogModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useComputeLogModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useComputeLogModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useStoresQuery.js → useComputeLogModulesQuery.js} +11 -11
- package/esm/public/hooks/queries/useConfigSecretsOrgModuleQuery.d.ts +65 -0
- package/esm/{admin/hooks/queries/useUsageSnapshotQuery.js → public/hooks/queries/useConfigSecretsOrgModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useConfigSecretsOrgModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useConfigSecretsOrgModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useConfigSecretsUserModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useEncryptedSecretsModuleQuery.js → useConfigSecretsUserModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useConfigSecretsUserModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useConfigSecretsUserModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useDbUsageModuleQuery.d.ts +65 -0
- package/esm/{auth/hooks/queries/useAuditLogQuery.js → public/hooks/queries/useDbUsageModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useDbUsageModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useObjectsQuery.js → useDbUsageModulesQuery.js} +11 -11
- package/esm/public/hooks/queries/useFunctionModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useAuditLogQuery.js → useFunctionModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useFunctionModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useAuditLogsQuery.js → useFunctionModulesQuery.js} +11 -11
- package/esm/public/hooks/queries/useGraphModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useRefQuery.js → useGraphModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useGraphModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/{useGetAllQuery.js → useGraphModulesQuery.js} +11 -11
- package/esm/public/hooks/queries/useInferenceLogModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useInferenceLogModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useInferenceLogModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useInferenceLogModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useMerkleStoreModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useMerkleStoreModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useMerkleStoreModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useMerkleStoreModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useNamespaceModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useNamespaceModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useNamespaceModulesQuery.d.ts +69 -0
- package/esm/{auth/hooks/queries/useAuditLogsQuery.js → public/hooks/queries/useNamespaceModulesQuery.js} +11 -11
- package/esm/public/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useOrgLimitEventQuery.js +47 -0
- package/esm/public/hooks/queries/useStorageLogModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/{useObjectQuery.js → useStorageLogModuleQuery.js} +11 -11
- package/esm/public/hooks/queries/useStorageLogModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useStorageLogModulesQuery.js +32 -0
- package/esm/public/hooks/queries/useTransferLogModuleQuery.d.ts +65 -0
- package/esm/public/hooks/queries/useTransferLogModuleQuery.js +47 -0
- package/esm/public/hooks/queries/useTransferLogModulesQuery.d.ts +69 -0
- package/esm/public/hooks/queries/useTransferLogModulesQuery.js +32 -0
- package/esm/public/hooks/query-keys.d.ts +392 -370
- package/esm/public/hooks/query-keys.js +225 -212
- package/esm/public/orm/index.d.ts +102 -153
- package/esm/public/orm/index.js +59 -55
- package/esm/public/orm/input-types.d.ts +6255 -3877
- package/esm/public/orm/input-types.js +24 -15
- package/esm/public/orm/models/agentModule.d.ts +54 -0
- package/esm/public/orm/models/{agentThread.js → agentModule.js} +25 -25
- package/esm/public/orm/models/appLimitEvent.d.ts +26 -2
- package/esm/public/orm/models/appLimitEvent.js +46 -1
- package/esm/public/orm/models/auditLogAuth.d.ts +54 -0
- package/esm/{auth/orm/models/auditLog.js → public/orm/models/auditLogAuth.js} +25 -25
- package/esm/public/orm/models/computeLogModule.d.ts +54 -0
- package/esm/public/orm/models/{commit.js → computeLogModule.js} +25 -25
- package/esm/public/orm/models/configSecretsOrgModule.d.ts +54 -0
- package/esm/public/orm/models/{encryptedSecretsModule.js → configSecretsOrgModule.js} +25 -25
- package/esm/public/orm/models/configSecretsUserModule.d.ts +54 -0
- package/esm/public/orm/models/configSecretsUserModule.js +100 -0
- package/esm/public/orm/models/dbUsageModule.d.ts +54 -0
- package/esm/public/orm/models/{usageSnapshot.js → dbUsageModule.js} +25 -25
- package/esm/public/orm/models/functionModule.d.ts +54 -0
- package/esm/{admin/orm/models/usageSnapshot.js → public/orm/models/functionModule.js} +25 -25
- package/esm/public/orm/models/graphModule.d.ts +54 -0
- package/esm/public/orm/models/{agentTask.js → graphModule.js} +25 -25
- package/esm/public/orm/models/index.d.ts +29 -27
- package/esm/public/orm/models/index.js +29 -27
- package/esm/public/orm/models/inferenceLogModule.d.ts +54 -0
- package/esm/public/orm/models/inferenceLogModule.js +100 -0
- package/esm/public/orm/models/merkleStoreModule.d.ts +54 -0
- package/esm/public/orm/models/merkleStoreModule.js +100 -0
- package/esm/public/orm/models/namespaceModule.d.ts +54 -0
- package/esm/public/orm/models/{agentMessage.js → namespaceModule.js} +25 -25
- package/esm/public/orm/models/orgLimitEvent.d.ts +26 -2
- package/esm/public/orm/models/orgLimitEvent.js +46 -1
- package/esm/public/orm/models/storageLogModule.d.ts +54 -0
- package/esm/public/orm/models/{store.js → storageLogModule.js} +25 -25
- package/esm/public/orm/models/transferLogModule.d.ts +54 -0
- package/esm/public/orm/models/transferLogModule.js +100 -0
- package/esm/public/orm/mutation/index.d.ts +69 -133
- package/esm/public/orm/mutation/index.js +78 -174
- package/esm/public/orm/query/index.d.ts +22 -71
- package/esm/public/orm/query/index.js +36 -124
- package/esm/public/schema-types.d.ts +5424 -4317
- package/esm/public/types.d.ts +402 -240
- package/objects/orm/index.d.ts +1 -1
- package/objects/orm/index.js +2 -1
- package/package.json +6 -6
- package/public/hooks/index.d.ts +1 -1
- package/public/hooks/index.js +1 -1
- package/public/hooks/invalidation.d.ts +164 -152
- package/public/hooks/invalidation.js +373 -341
- package/public/hooks/mutation-keys.d.ts +350 -342
- package/public/hooks/mutation-keys.js +228 -234
- package/public/hooks/mutations/index.d.ts +91 -87
- package/public/hooks/mutations/index.js +91 -87
- package/public/hooks/mutations/useCreateAgentModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateCommitMutation.js → useCreateAgentModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateAuditLogAuthMutation.js +34 -0
- package/public/hooks/mutations/useCreateComputeLogModuleMutation.d.ts +34 -0
- package/{auth/hooks/mutations/useCreateAuditLogMutation.js → public/hooks/mutations/useCreateComputeLogModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateConfigSecretsUserModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateEncryptedSecretsModuleMutation.js → useCreateConfigSecretsUserModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateDbUsageModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateObjectMutation.js → useCreateDbUsageModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateFunctionModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateFunctionModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateGraphModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateStoreMutation.js → useCreateGraphModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateInferenceLogModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateInferenceLogModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateMerkleStoreModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateMerkleStoreModuleMutation.js +34 -0
- package/public/hooks/mutations/useCreateNamespaceModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateRefMutation.js → useCreateNamespaceModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateStorageLogModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/{useCreateAuditLogMutation.js → useCreateStorageLogModuleMutation.js} +6 -6
- package/public/hooks/mutations/useCreateTransferLogModuleMutation.d.ts +34 -0
- package/public/hooks/mutations/useCreateTransferLogModuleMutation.js +34 -0
- package/public/hooks/mutations/useDeleteAgentModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteRefMutation.js → useDeleteAgentModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAppLimitEventMutation.js +39 -0
- package/public/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteAuditLogAuthMutation.js +39 -0
- package/public/hooks/mutations/useDeleteComputeLogModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteAuditLogMutation.js → useDeleteComputeLogModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteConfigSecretsUserModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteEncryptedSecretsModuleMutation.js → useDeleteConfigSecretsUserModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteDbUsageModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteCommitMutation.js → useDeleteDbUsageModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteFunctionModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteStoreMutation.js → useDeleteFunctionModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteGraphModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/{useDeleteObjectMutation.js → useDeleteGraphModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteInferenceLogModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteInferenceLogModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteNamespaceModuleMutation.d.ts +38 -0
- package/{auth/hooks/mutations/useDeleteAuditLogMutation.js → public/hooks/mutations/useDeleteNamespaceModuleMutation.js} +7 -7
- package/public/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteOrgLimitEventMutation.js +39 -0
- package/public/hooks/mutations/useDeleteStorageLogModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteStorageLogModuleMutation.js +39 -0
- package/public/hooks/mutations/useDeleteTransferLogModuleMutation.d.ts +38 -0
- package/public/hooks/mutations/useDeleteTransferLogModuleMutation.js +39 -0
- package/public/hooks/mutations/useUpdateAgentModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateRefMutation.js → useUpdateAgentModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAppLimitEventMutation.js +40 -0
- package/public/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateAuditLogAuthMutation.js +40 -0
- package/public/hooks/mutations/useUpdateComputeLogModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateComputeLogModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateConfigSecretsOrgModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateAgentTaskMutation.js → useUpdateConfigSecretsOrgModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateConfigSecretsUserModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateEncryptedSecretsModuleMutation.js → useUpdateConfigSecretsUserModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateDbUsageModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateStoreMutation.js → useUpdateDbUsageModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateFunctionModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateAuditLogMutation.js → useUpdateFunctionModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateGraphModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/{useUpdateCommitMutation.js → useUpdateGraphModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateInferenceLogModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateInferenceLogModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateNamespaceModuleMutation.d.ts +40 -0
- package/{auth/hooks/mutations/useUpdateAuditLogMutation.js → public/hooks/mutations/useUpdateNamespaceModuleMutation.js} +9 -9
- package/public/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateOrgLimitEventMutation.js +40 -0
- package/public/hooks/mutations/useUpdateStorageLogModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateStorageLogModuleMutation.js +40 -0
- package/public/hooks/mutations/useUpdateTransferLogModuleMutation.d.ts +40 -0
- package/public/hooks/mutations/useUpdateTransferLogModuleMutation.js +40 -0
- package/public/hooks/queries/index.d.ts +60 -56
- package/public/hooks/queries/index.js +60 -56
- package/public/hooks/queries/useAgentModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useAuditLogQuery.js → useAgentModuleQuery.js} +14 -14
- package/public/hooks/queries/useAgentModulesQuery.d.ts +69 -0
- package/public/hooks/queries/{useRefsQuery.js → useAgentModulesQuery.js} +14 -14
- package/public/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
- package/public/hooks/queries/useAppLimitEventQuery.js +53 -0
- package/public/hooks/queries/useApplyRegistryDefaultsQuery.d.ts +53 -0
- package/public/hooks/queries/useApplyRegistryDefaultsQuery.js +53 -0
- package/public/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
- package/public/hooks/queries/useAuditLogAuthQuery.js +53 -0
- package/public/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
- package/public/hooks/queries/useAuditLogAuthsQuery.js +38 -0
- package/public/hooks/queries/useComputeLogModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useComputeLogModuleQuery.js +53 -0
- package/public/hooks/queries/useComputeLogModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useComputeLogModulesQuery.js +38 -0
- package/public/hooks/queries/useConfigSecretsOrgModuleQuery.d.ts +65 -0
- package/{admin/hooks/queries/useUsageSnapshotQuery.js → public/hooks/queries/useConfigSecretsOrgModuleQuery.js} +14 -14
- package/public/hooks/queries/useConfigSecretsOrgModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useConfigSecretsOrgModulesQuery.js +38 -0
- package/public/hooks/queries/useConfigSecretsUserModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useEncryptedSecretsModuleQuery.js → useConfigSecretsUserModuleQuery.js} +14 -14
- package/public/hooks/queries/useConfigSecretsUserModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useConfigSecretsUserModulesQuery.js +38 -0
- package/public/hooks/queries/useDbUsageModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useCommitQuery.js → useDbUsageModuleQuery.js} +14 -14
- package/public/hooks/queries/useDbUsageModulesQuery.d.ts +69 -0
- package/public/hooks/queries/{useCommitsQuery.js → useDbUsageModulesQuery.js} +14 -14
- package/public/hooks/queries/useFunctionModuleQuery.d.ts +65 -0
- package/public/hooks/queries/{useObjectQuery.js → useFunctionModuleQuery.js} +14 -14
- package/public/hooks/queries/useFunctionModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useFunctionModulesQuery.js +38 -0
- package/public/hooks/queries/useGraphModuleQuery.d.ts +65 -0
- package/{auth/hooks/queries/useAuditLogQuery.js → public/hooks/queries/useGraphModuleQuery.js} +14 -14
- package/public/hooks/queries/useGraphModulesQuery.d.ts +69 -0
- package/public/hooks/queries/{useObjectsQuery.js → useGraphModulesQuery.js} +14 -14
- package/public/hooks/queries/useInferenceLogModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useInferenceLogModuleQuery.js +53 -0
- package/public/hooks/queries/useInferenceLogModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useInferenceLogModulesQuery.js +38 -0
- package/public/hooks/queries/useMerkleStoreModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useMerkleStoreModuleQuery.js +53 -0
- package/public/hooks/queries/useMerkleStoreModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useMerkleStoreModulesQuery.js +38 -0
- package/public/hooks/queries/useNamespaceModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useNamespaceModuleQuery.js +53 -0
- package/public/hooks/queries/useNamespaceModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useNamespaceModulesQuery.js +38 -0
- package/public/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
- package/public/hooks/queries/useOrgLimitEventQuery.js +53 -0
- package/public/hooks/queries/useStorageLogModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useStorageLogModuleQuery.js +53 -0
- package/public/hooks/queries/useStorageLogModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useStorageLogModulesQuery.js +38 -0
- package/public/hooks/queries/useTransferLogModuleQuery.d.ts +65 -0
- package/public/hooks/queries/useTransferLogModuleQuery.js +53 -0
- package/public/hooks/queries/useTransferLogModulesQuery.d.ts +69 -0
- package/public/hooks/queries/useTransferLogModulesQuery.js +38 -0
- package/public/hooks/query-keys.d.ts +392 -370
- package/public/hooks/query-keys.js +229 -215
- package/public/orm/index.d.ts +102 -153
- package/public/orm/index.js +60 -55
- package/public/orm/input-types.d.ts +6255 -3877
- package/public/orm/input-types.js +24 -15
- package/public/orm/models/agentModule.d.ts +54 -0
- package/public/orm/models/{agentThread.js → agentModule.js} +27 -27
- package/public/orm/models/appLimitEvent.d.ts +26 -2
- package/public/orm/models/appLimitEvent.js +45 -0
- package/public/orm/models/auditLogAuth.d.ts +54 -0
- package/{admin/orm/models/usageSnapshot.js → public/orm/models/auditLogAuth.js} +27 -27
- package/public/orm/models/computeLogModule.d.ts +54 -0
- package/public/orm/models/computeLogModule.js +104 -0
- package/public/orm/models/configSecretsOrgModule.d.ts +54 -0
- package/public/orm/models/{encryptedSecretsModule.js → configSecretsOrgModule.js} +27 -27
- package/public/orm/models/configSecretsUserModule.d.ts +54 -0
- package/public/orm/models/{ref.js → configSecretsUserModule.js} +27 -27
- package/public/orm/models/dbUsageModule.d.ts +54 -0
- package/public/orm/models/{usageSnapshot.js → dbUsageModule.js} +27 -27
- package/public/orm/models/functionModule.d.ts +54 -0
- package/public/orm/models/functionModule.js +104 -0
- package/public/orm/models/graphModule.d.ts +54 -0
- package/public/orm/models/{agentTask.js → graphModule.js} +27 -27
- package/public/orm/models/index.d.ts +29 -27
- package/public/orm/models/index.js +61 -57
- package/public/orm/models/inferenceLogModule.d.ts +54 -0
- package/public/orm/models/inferenceLogModule.js +104 -0
- package/public/orm/models/merkleStoreModule.d.ts +54 -0
- package/public/orm/models/merkleStoreModule.js +104 -0
- package/public/orm/models/namespaceModule.d.ts +54 -0
- package/{auth/orm/models/auditLog.js → public/orm/models/namespaceModule.js} +27 -27
- package/public/orm/models/orgLimitEvent.d.ts +26 -2
- package/public/orm/models/orgLimitEvent.js +45 -0
- package/public/orm/models/storageLogModule.d.ts +54 -0
- package/public/orm/models/storageLogModule.js +104 -0
- package/public/orm/models/transferLogModule.d.ts +54 -0
- package/public/orm/models/transferLogModule.js +104 -0
- package/public/orm/mutation/index.d.ts +69 -133
- package/public/orm/mutation/index.js +78 -174
- package/public/orm/query/index.d.ts +22 -71
- package/public/orm/query/index.js +36 -124
- package/public/schema-types.d.ts +5424 -4317
- package/public/types.d.ts +402 -240
- package/admin/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
- package/admin/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -34
- package/admin/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
- package/admin/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -39
- package/admin/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
- package/admin/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -40
- package/admin/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
- package/admin/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
- package/admin/hooks/queries/useUsageSnapshotsQuery.js +0 -38
- package/admin/orm/models/usageSnapshot.d.ts +0 -54
- package/auth/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
- package/auth/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
- package/auth/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
- package/auth/hooks/queries/useAuditLogQuery.d.ts +0 -65
- package/auth/hooks/queries/useAuditLogsQuery.d.ts +0 -69
- package/auth/hooks/queries/useAuditLogsQuery.js +0 -38
- package/auth/orm/models/auditLog.d.ts +0 -54
- package/esm/admin/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
- package/esm/admin/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -31
- package/esm/admin/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
- package/esm/admin/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -36
- package/esm/admin/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
- package/esm/admin/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -37
- package/esm/admin/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
- package/esm/admin/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
- package/esm/admin/hooks/queries/useUsageSnapshotsQuery.js +0 -32
- package/esm/admin/orm/models/usageSnapshot.d.ts +0 -54
- package/esm/auth/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
- package/esm/auth/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
- package/esm/auth/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
- package/esm/auth/hooks/queries/useAuditLogQuery.d.ts +0 -65
- package/esm/auth/hooks/queries/useAuditLogsQuery.d.ts +0 -69
- package/esm/auth/orm/models/auditLog.d.ts +0 -54
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateAgentMessageMutation.js +0 -31
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateAgentTaskMutation.js +0 -31
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateAgentThreadMutation.js +0 -31
- package/esm/public/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateCommitMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateEncryptedSecretsModuleMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateObjectMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateRefMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateStoreMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateStoreMutation.js +0 -31
- package/esm/public/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
- package/esm/public/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -31
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.js +0 -36
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.js +0 -36
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.js +0 -36
- package/esm/public/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteCommitMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteEncryptedSecretsModuleMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteObjectMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteRefMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteStoreMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
- package/esm/public/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -36
- package/esm/public/hooks/mutations/useFreezeObjectsMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useFreezeObjectsMutation.js +0 -23
- package/esm/public/hooks/mutations/useInitEmptyRepoMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useInitEmptyRepoMutation.js +0 -23
- package/esm/public/hooks/mutations/useInsertNodeAtPathMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useInsertNodeAtPathMutation.js +0 -23
- package/esm/public/hooks/mutations/useRemoveNodeAtPathMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useRemoveNodeAtPathMutation.js +0 -23
- package/esm/public/hooks/mutations/useSetAndCommitMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useSetAndCommitMutation.js +0 -23
- package/esm/public/hooks/mutations/useSetDataAtPathMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useSetDataAtPathMutation.js +0 -23
- package/esm/public/hooks/mutations/useSetPropsAndCommitMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useSetPropsAndCommitMutation.js +0 -23
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.js +0 -37
- package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.js +0 -37
- package/esm/public/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateCommitMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateEncryptedSecretsModuleMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateNodeAtPathMutation.d.ts +0 -20
- package/esm/public/hooks/mutations/useUpdateNodeAtPathMutation.js +0 -23
- package/esm/public/hooks/mutations/useUpdateObjectMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateRefMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateStoreMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateStoreMutation.js +0 -37
- package/esm/public/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
- package/esm/public/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -37
- package/esm/public/hooks/queries/useAgentMessageQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAgentMessageQuery.js +0 -47
- package/esm/public/hooks/queries/useAgentMessagesQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useAgentMessagesQuery.js +0 -32
- package/esm/public/hooks/queries/useAgentTaskQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAgentTaskQuery.js +0 -47
- package/esm/public/hooks/queries/useAgentTasksQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useAgentTasksQuery.js +0 -32
- package/esm/public/hooks/queries/useAgentThreadQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAgentThreadQuery.js +0 -47
- package/esm/public/hooks/queries/useAgentThreadsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useAgentThreadsQuery.js +0 -32
- package/esm/public/hooks/queries/useAuditLogQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useAuditLogsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useCommitQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useCommitsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useEncryptedSecretsModuleQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useEncryptedSecretsModulesQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useEncryptedSecretsModulesQuery.js +0 -32
- package/esm/public/hooks/queries/useGetAllObjectsFromRootQuery.d.ts +0 -54
- package/esm/public/hooks/queries/useGetAllObjectsFromRootQuery.js +0 -47
- package/esm/public/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useGetObjectAtPathQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useGetObjectAtPathQuery.js +0 -48
- package/esm/public/hooks/queries/useGetPathObjectsFromRootQuery.d.ts +0 -54
- package/esm/public/hooks/queries/useGetPathObjectsFromRootQuery.js +0 -47
- package/esm/public/hooks/queries/useObjectQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useObjectsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useRefQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useRefsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useRefsQuery.js +0 -32
- package/esm/public/hooks/queries/useRevParseQuery.d.ts +0 -53
- package/esm/public/hooks/queries/useRevParseQuery.js +0 -47
- package/esm/public/hooks/queries/useStoreQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useStoreQuery.js +0 -47
- package/esm/public/hooks/queries/useStoresQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
- package/esm/public/hooks/queries/useUsageSnapshotQuery.js +0 -47
- package/esm/public/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
- package/esm/public/hooks/queries/useUsageSnapshotsQuery.js +0 -32
- package/esm/public/orm/models/agentMessage.d.ts +0 -54
- package/esm/public/orm/models/agentTask.d.ts +0 -54
- package/esm/public/orm/models/agentThread.d.ts +0 -54
- package/esm/public/orm/models/auditLog.d.ts +0 -54
- package/esm/public/orm/models/commit.d.ts +0 -54
- package/esm/public/orm/models/encryptedSecretsModule.d.ts +0 -54
- package/esm/public/orm/models/getAllRecord.d.ts +0 -30
- package/esm/public/orm/models/getAllRecord.js +0 -55
- package/esm/public/orm/models/object.d.ts +0 -54
- package/esm/public/orm/models/object.js +0 -90
- package/esm/public/orm/models/ref.d.ts +0 -54
- package/esm/public/orm/models/ref.js +0 -100
- package/esm/public/orm/models/store.d.ts +0 -54
- package/esm/public/orm/models/usageSnapshot.d.ts +0 -54
- package/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateAgentMessageMutation.js +0 -34
- package/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateAgentTaskMutation.js +0 -34
- package/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateAgentThreadMutation.js +0 -34
- package/public/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateCommitMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateEncryptedSecretsModuleMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateObjectMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateRefMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateStoreMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
- package/public/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -34
- package/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteAgentMessageMutation.js +0 -39
- package/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteAgentTaskMutation.js +0 -39
- package/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteAgentThreadMutation.js +0 -39
- package/public/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteCommitMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteEncryptedSecretsModuleMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteObjectMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteRefMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteStoreMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
- package/public/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -39
- package/public/hooks/mutations/useFreezeObjectsMutation.d.ts +0 -20
- package/public/hooks/mutations/useFreezeObjectsMutation.js +0 -26
- package/public/hooks/mutations/useInitEmptyRepoMutation.d.ts +0 -20
- package/public/hooks/mutations/useInitEmptyRepoMutation.js +0 -26
- package/public/hooks/mutations/useInsertNodeAtPathMutation.d.ts +0 -20
- package/public/hooks/mutations/useInsertNodeAtPathMutation.js +0 -26
- package/public/hooks/mutations/useRemoveNodeAtPathMutation.d.ts +0 -20
- package/public/hooks/mutations/useRemoveNodeAtPathMutation.js +0 -26
- package/public/hooks/mutations/useSetAndCommitMutation.d.ts +0 -20
- package/public/hooks/mutations/useSetAndCommitMutation.js +0 -26
- package/public/hooks/mutations/useSetDataAtPathMutation.d.ts +0 -20
- package/public/hooks/mutations/useSetDataAtPathMutation.js +0 -26
- package/public/hooks/mutations/useSetPropsAndCommitMutation.d.ts +0 -20
- package/public/hooks/mutations/useSetPropsAndCommitMutation.js +0 -26
- package/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateAgentMessageMutation.js +0 -40
- package/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateAgentThreadMutation.js +0 -40
- package/public/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateCommitMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateEncryptedSecretsModuleMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateNodeAtPathMutation.d.ts +0 -20
- package/public/hooks/mutations/useUpdateNodeAtPathMutation.js +0 -26
- package/public/hooks/mutations/useUpdateObjectMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateRefMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateStoreMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
- package/public/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -40
- package/public/hooks/queries/useAgentMessageQuery.d.ts +0 -65
- package/public/hooks/queries/useAgentMessageQuery.js +0 -53
- package/public/hooks/queries/useAgentMessagesQuery.d.ts +0 -69
- package/public/hooks/queries/useAgentMessagesQuery.js +0 -38
- package/public/hooks/queries/useAgentTaskQuery.d.ts +0 -65
- package/public/hooks/queries/useAgentTaskQuery.js +0 -53
- package/public/hooks/queries/useAgentTasksQuery.d.ts +0 -69
- package/public/hooks/queries/useAgentTasksQuery.js +0 -38
- package/public/hooks/queries/useAgentThreadQuery.d.ts +0 -65
- package/public/hooks/queries/useAgentThreadQuery.js +0 -53
- package/public/hooks/queries/useAgentThreadsQuery.d.ts +0 -69
- package/public/hooks/queries/useAgentThreadsQuery.js +0 -38
- package/public/hooks/queries/useAuditLogQuery.d.ts +0 -65
- package/public/hooks/queries/useAuditLogsQuery.d.ts +0 -69
- package/public/hooks/queries/useAuditLogsQuery.js +0 -38
- package/public/hooks/queries/useCommitQuery.d.ts +0 -65
- package/public/hooks/queries/useCommitsQuery.d.ts +0 -69
- package/public/hooks/queries/useEncryptedSecretsModuleQuery.d.ts +0 -65
- package/public/hooks/queries/useEncryptedSecretsModulesQuery.d.ts +0 -69
- package/public/hooks/queries/useEncryptedSecretsModulesQuery.js +0 -38
- package/public/hooks/queries/useGetAllObjectsFromRootQuery.d.ts +0 -54
- package/public/hooks/queries/useGetAllObjectsFromRootQuery.js +0 -53
- package/public/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/public/hooks/queries/useGetObjectAtPathQuery.d.ts +0 -65
- package/public/hooks/queries/useGetObjectAtPathQuery.js +0 -54
- package/public/hooks/queries/useGetPathObjectsFromRootQuery.d.ts +0 -54
- package/public/hooks/queries/useGetPathObjectsFromRootQuery.js +0 -53
- package/public/hooks/queries/useObjectQuery.d.ts +0 -65
- package/public/hooks/queries/useObjectsQuery.d.ts +0 -69
- package/public/hooks/queries/useRefQuery.d.ts +0 -65
- package/public/hooks/queries/useRefQuery.js +0 -53
- package/public/hooks/queries/useRefsQuery.d.ts +0 -69
- package/public/hooks/queries/useRevParseQuery.d.ts +0 -53
- package/public/hooks/queries/useRevParseQuery.js +0 -53
- package/public/hooks/queries/useStoreQuery.d.ts +0 -65
- package/public/hooks/queries/useStoreQuery.js +0 -53
- package/public/hooks/queries/useStoresQuery.d.ts +0 -69
- package/public/hooks/queries/useStoresQuery.js +0 -38
- package/public/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
- package/public/hooks/queries/useUsageSnapshotQuery.js +0 -53
- package/public/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
- package/public/hooks/queries/useUsageSnapshotsQuery.js +0 -38
- package/public/orm/models/agentMessage.d.ts +0 -54
- package/public/orm/models/agentTask.d.ts +0 -54
- package/public/orm/models/agentThread.d.ts +0 -54
- package/public/orm/models/auditLog.d.ts +0 -54
- package/public/orm/models/auditLog.js +0 -104
- package/public/orm/models/commit.d.ts +0 -54
- package/public/orm/models/commit.js +0 -104
- package/public/orm/models/encryptedSecretsModule.d.ts +0 -54
- package/public/orm/models/getAllRecord.d.ts +0 -30
- package/public/orm/models/getAllRecord.js +0 -59
- package/public/orm/models/object.d.ts +0 -54
- package/public/orm/models/object.js +0 -94
- package/public/orm/models/ref.d.ts +0 -54
- package/public/orm/models/store.d.ts +0 -54
- package/public/orm/models/store.js +0 -104
- package/public/orm/models/usageSnapshot.d.ts +0 -54
|
@@ -17,13 +17,6 @@ export declare const orgGetSubordinatesRecordKeys: {
|
|
|
17
17
|
/** Detail query keys */ readonly details: () => readonly ["orggetsubordinatesrecord", "detail"];
|
|
18
18
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orggetsubordinatesrecord", "detail", string | number];
|
|
19
19
|
};
|
|
20
|
-
export declare const getAllRecordKeys: {
|
|
21
|
-
/** All getAllRecord queries */ readonly all: readonly ["getallrecord"];
|
|
22
|
-
/** List query keys */ readonly lists: () => readonly ["getallrecord", "list"];
|
|
23
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["getallrecord", "list", object];
|
|
24
|
-
/** Detail query keys */ readonly details: () => readonly ["getallrecord", "detail"];
|
|
25
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["getallrecord", "detail", string | number];
|
|
26
|
-
};
|
|
27
20
|
export declare const appPermissionKeys: {
|
|
28
21
|
/** All appPermission queries */ readonly all: readonly ["apppermission"];
|
|
29
22
|
/** List query keys */ readonly lists: () => readonly ["apppermission", "list"];
|
|
@@ -38,13 +31,6 @@ export declare const orgPermissionKeys: {
|
|
|
38
31
|
/** Detail query keys */ readonly details: () => readonly ["orgpermission", "detail"];
|
|
39
32
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgpermission", "detail", string | number];
|
|
40
33
|
};
|
|
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
34
|
export declare const databaseKeys: {
|
|
49
35
|
/** All database queries */ readonly all: readonly ["database"];
|
|
50
36
|
/** List query keys */ readonly lists: () => readonly ["database", "list"];
|
|
@@ -213,6 +199,13 @@ export declare const realtimeModuleKeys: {
|
|
|
213
199
|
/** Detail query keys */ readonly details: () => readonly ["realtimemodule", "detail"];
|
|
214
200
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["realtimemodule", "detail", string | number];
|
|
215
201
|
};
|
|
202
|
+
export declare const configSecretsOrgModuleKeys: {
|
|
203
|
+
/** All configSecretsOrgModule queries */ readonly all: readonly ["configsecretsorgmodule"];
|
|
204
|
+
/** List query keys */ readonly lists: () => readonly ["configsecretsorgmodule", "list"];
|
|
205
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["configsecretsorgmodule", "list", object];
|
|
206
|
+
/** Detail query keys */ readonly details: () => readonly ["configsecretsorgmodule", "detail"];
|
|
207
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["configsecretsorgmodule", "detail", string | number];
|
|
208
|
+
};
|
|
216
209
|
export declare const schemaGrantKeys: {
|
|
217
210
|
/** All schemaGrant queries */ readonly all: readonly ["schemagrant"];
|
|
218
211
|
/** List query keys */ readonly lists: () => readonly ["schemagrant", "list"];
|
|
@@ -290,6 +283,20 @@ export declare const corsSettingKeys: {
|
|
|
290
283
|
/** Detail query keys */ readonly details: () => readonly ["corssetting", "detail"];
|
|
291
284
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["corssetting", "detail", string | number];
|
|
292
285
|
};
|
|
286
|
+
export declare const merkleStoreModuleKeys: {
|
|
287
|
+
/** All merkleStoreModule queries */ readonly all: readonly ["merklestoremodule"];
|
|
288
|
+
/** List query keys */ readonly lists: () => readonly ["merklestoremodule", "list"];
|
|
289
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["merklestoremodule", "list", object];
|
|
290
|
+
/** Detail query keys */ readonly details: () => readonly ["merklestoremodule", "detail"];
|
|
291
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["merklestoremodule", "detail", string | number];
|
|
292
|
+
};
|
|
293
|
+
export declare const graphModuleKeys: {
|
|
294
|
+
/** All graphModule queries */ readonly all: readonly ["graphmodule"];
|
|
295
|
+
/** List query keys */ readonly lists: () => readonly ["graphmodule", "list"];
|
|
296
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["graphmodule", "list", object];
|
|
297
|
+
/** Detail query keys */ readonly details: () => readonly ["graphmodule", "detail"];
|
|
298
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["graphmodule", "detail", string | number];
|
|
299
|
+
};
|
|
293
300
|
export declare const triggerFunctionKeys: {
|
|
294
301
|
/** All triggerFunction queries */ readonly all: readonly ["triggerfunction"];
|
|
295
302
|
/** List query keys */ readonly lists: () => readonly ["triggerfunction", "list"];
|
|
@@ -297,13 +304,6 @@ export declare const triggerFunctionKeys: {
|
|
|
297
304
|
/** Detail query keys */ readonly details: () => readonly ["triggerfunction", "detail"];
|
|
298
305
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["triggerfunction", "detail", string | number];
|
|
299
306
|
};
|
|
300
|
-
export declare const databaseTransferKeys: {
|
|
301
|
-
/** All databaseTransfer queries */ readonly all: readonly ["databasetransfer"];
|
|
302
|
-
/** List query keys */ readonly lists: () => readonly ["databasetransfer", "list"];
|
|
303
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["databasetransfer", "list", object];
|
|
304
|
-
/** Detail query keys */ readonly details: () => readonly ["databasetransfer", "detail"];
|
|
305
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["databasetransfer", "detail", string | number];
|
|
306
|
-
};
|
|
307
307
|
export declare const partitionKeys: {
|
|
308
308
|
/** All partition queries */ readonly all: readonly ["partition"];
|
|
309
309
|
/** List query keys */ readonly lists: () => readonly ["partition", "list"];
|
|
@@ -311,6 +311,13 @@ export declare const partitionKeys: {
|
|
|
311
311
|
/** Detail query keys */ readonly details: () => readonly ["partition", "detail"];
|
|
312
312
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["partition", "detail", string | number];
|
|
313
313
|
};
|
|
314
|
+
export declare const databaseTransferKeys: {
|
|
315
|
+
/** All databaseTransfer queries */ readonly all: readonly ["databasetransfer"];
|
|
316
|
+
/** List query keys */ readonly lists: () => readonly ["databasetransfer", "list"];
|
|
317
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["databasetransfer", "list", object];
|
|
318
|
+
/** Detail query keys */ readonly details: () => readonly ["databasetransfer", "detail"];
|
|
319
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["databasetransfer", "detail", string | number];
|
|
320
|
+
};
|
|
314
321
|
export declare const apiKeys: {
|
|
315
322
|
/** All api queries */ readonly all: readonly ["api"];
|
|
316
323
|
/** List query keys */ readonly lists: () => readonly ["api", "list"];
|
|
@@ -381,12 +388,12 @@ export declare const emailsModuleKeys: {
|
|
|
381
388
|
/** Detail query keys */ readonly details: () => readonly ["emailsmodule", "detail"];
|
|
382
389
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["emailsmodule", "detail", string | number];
|
|
383
390
|
};
|
|
384
|
-
export declare const
|
|
385
|
-
/** All
|
|
386
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
387
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
388
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
389
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
391
|
+
export declare const configSecretsUserModuleKeys: {
|
|
392
|
+
/** All configSecretsUserModule queries */ readonly all: readonly ["configsecretsusermodule"];
|
|
393
|
+
/** List query keys */ readonly lists: () => readonly ["configsecretsusermodule", "list"];
|
|
394
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["configsecretsusermodule", "list", object];
|
|
395
|
+
/** Detail query keys */ readonly details: () => readonly ["configsecretsusermodule", "detail"];
|
|
396
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["configsecretsusermodule", "detail", string | number];
|
|
390
397
|
};
|
|
391
398
|
export declare const invitesModuleKeys: {
|
|
392
399
|
/** All invitesModule queries */ readonly all: readonly ["invitesmodule"];
|
|
@@ -528,6 +535,62 @@ export declare const notificationsModuleKeys: {
|
|
|
528
535
|
/** Detail query keys */ readonly details: () => readonly ["notificationsmodule", "detail"];
|
|
529
536
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["notificationsmodule", "detail", string | number];
|
|
530
537
|
};
|
|
538
|
+
export declare const inferenceLogModuleKeys: {
|
|
539
|
+
/** All inferenceLogModule queries */ readonly all: readonly ["inferencelogmodule"];
|
|
540
|
+
/** List query keys */ readonly lists: () => readonly ["inferencelogmodule", "list"];
|
|
541
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["inferencelogmodule", "list", object];
|
|
542
|
+
/** Detail query keys */ readonly details: () => readonly ["inferencelogmodule", "detail"];
|
|
543
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["inferencelogmodule", "detail", string | number];
|
|
544
|
+
};
|
|
545
|
+
export declare const computeLogModuleKeys: {
|
|
546
|
+
/** All computeLogModule queries */ readonly all: readonly ["computelogmodule"];
|
|
547
|
+
/** List query keys */ readonly lists: () => readonly ["computelogmodule", "list"];
|
|
548
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["computelogmodule", "list", object];
|
|
549
|
+
/** Detail query keys */ readonly details: () => readonly ["computelogmodule", "detail"];
|
|
550
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["computelogmodule", "detail", string | number];
|
|
551
|
+
};
|
|
552
|
+
export declare const transferLogModuleKeys: {
|
|
553
|
+
/** All transferLogModule queries */ readonly all: readonly ["transferlogmodule"];
|
|
554
|
+
/** List query keys */ readonly lists: () => readonly ["transferlogmodule", "list"];
|
|
555
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["transferlogmodule", "list", object];
|
|
556
|
+
/** Detail query keys */ readonly details: () => readonly ["transferlogmodule", "detail"];
|
|
557
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["transferlogmodule", "detail", string | number];
|
|
558
|
+
};
|
|
559
|
+
export declare const storageLogModuleKeys: {
|
|
560
|
+
/** All storageLogModule queries */ readonly all: readonly ["storagelogmodule"];
|
|
561
|
+
/** List query keys */ readonly lists: () => readonly ["storagelogmodule", "list"];
|
|
562
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["storagelogmodule", "list", object];
|
|
563
|
+
/** Detail query keys */ readonly details: () => readonly ["storagelogmodule", "detail"];
|
|
564
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["storagelogmodule", "detail", string | number];
|
|
565
|
+
};
|
|
566
|
+
export declare const dbUsageModuleKeys: {
|
|
567
|
+
/** All dbUsageModule queries */ readonly all: readonly ["dbusagemodule"];
|
|
568
|
+
/** List query keys */ readonly lists: () => readonly ["dbusagemodule", "list"];
|
|
569
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["dbusagemodule", "list", object];
|
|
570
|
+
/** Detail query keys */ readonly details: () => readonly ["dbusagemodule", "detail"];
|
|
571
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["dbusagemodule", "detail", string | number];
|
|
572
|
+
};
|
|
573
|
+
export declare const agentModuleKeys: {
|
|
574
|
+
/** All agentModule queries */ readonly all: readonly ["agentmodule"];
|
|
575
|
+
/** List query keys */ readonly lists: () => readonly ["agentmodule", "list"];
|
|
576
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agentmodule", "list", object];
|
|
577
|
+
/** Detail query keys */ readonly details: () => readonly ["agentmodule", "detail"];
|
|
578
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agentmodule", "detail", string | number];
|
|
579
|
+
};
|
|
580
|
+
export declare const namespaceModuleKeys: {
|
|
581
|
+
/** All namespaceModule queries */ readonly all: readonly ["namespacemodule"];
|
|
582
|
+
/** List query keys */ readonly lists: () => readonly ["namespacemodule", "list"];
|
|
583
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["namespacemodule", "list", object];
|
|
584
|
+
/** Detail query keys */ readonly details: () => readonly ["namespacemodule", "detail"];
|
|
585
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["namespacemodule", "detail", string | number];
|
|
586
|
+
};
|
|
587
|
+
export declare const functionModuleKeys: {
|
|
588
|
+
/** All functionModule queries */ readonly all: readonly ["functionmodule"];
|
|
589
|
+
/** List query keys */ readonly lists: () => readonly ["functionmodule", "list"];
|
|
590
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["functionmodule", "list", object];
|
|
591
|
+
/** Detail query keys */ readonly details: () => readonly ["functionmodule", "detail"];
|
|
592
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functionmodule", "detail", string | number];
|
|
593
|
+
};
|
|
531
594
|
export declare const databaseProvisionModuleKeys: {
|
|
532
595
|
/** All databaseProvisionModule queries */ readonly all: readonly ["databaseprovisionmodule"];
|
|
533
596
|
/** List query keys */ readonly lists: () => readonly ["databaseprovisionmodule", "list"];
|
|
@@ -731,40 +794,12 @@ export declare const orgClaimedInviteKeys: {
|
|
|
731
794
|
/** Detail query keys */ readonly details: () => readonly ["orgclaimedinvite", "detail"];
|
|
732
795
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgclaimedinvite", "detail", string | number];
|
|
733
796
|
};
|
|
734
|
-
export declare const
|
|
735
|
-
/** All
|
|
736
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
737
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
738
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
739
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
740
|
-
};
|
|
741
|
-
export declare const agentThreadKeys: {
|
|
742
|
-
/** All agentThread queries */ readonly all: readonly ["agentthread"];
|
|
743
|
-
/** List query keys */ readonly lists: () => readonly ["agentthread", "list"];
|
|
744
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agentthread", "list", object];
|
|
745
|
-
/** Detail query keys */ readonly details: () => readonly ["agentthread", "detail"];
|
|
746
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agentthread", "detail", string | number];
|
|
747
|
-
};
|
|
748
|
-
export declare const agentMessageKeys: {
|
|
749
|
-
/** All agentMessage queries */ readonly all: readonly ["agentmessage"];
|
|
750
|
-
/** List query keys */ readonly lists: () => readonly ["agentmessage", "list"];
|
|
751
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agentmessage", "list", object];
|
|
752
|
-
/** Detail query keys */ readonly details: () => readonly ["agentmessage", "detail"];
|
|
753
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agentmessage", "detail", string | number];
|
|
754
|
-
};
|
|
755
|
-
export declare const agentTaskKeys: {
|
|
756
|
-
/** All agentTask queries */ readonly all: readonly ["agenttask"];
|
|
757
|
-
/** List query keys */ readonly lists: () => readonly ["agenttask", "list"];
|
|
758
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agenttask", "list", object];
|
|
759
|
-
/** Detail query keys */ readonly details: () => readonly ["agenttask", "detail"];
|
|
760
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agenttask", "detail", string | number];
|
|
761
|
-
};
|
|
762
|
-
export declare const roleTypeKeys: {
|
|
763
|
-
/** All roleType queries */ readonly all: readonly ["roletype"];
|
|
764
|
-
/** List query keys */ readonly lists: () => readonly ["roletype", "list"];
|
|
765
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["roletype", "list", object];
|
|
766
|
-
/** Detail query keys */ readonly details: () => readonly ["roletype", "detail"];
|
|
767
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["roletype", "detail", string | number];
|
|
797
|
+
export declare const auditLogAuthKeys: {
|
|
798
|
+
/** All auditLogAuth queries */ readonly all: readonly ["auditlogauth"];
|
|
799
|
+
/** List query keys */ readonly lists: () => readonly ["auditlogauth", "list"];
|
|
800
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["auditlogauth", "list", object];
|
|
801
|
+
/** Detail query keys */ readonly details: () => readonly ["auditlogauth", "detail"];
|
|
802
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["auditlogauth", "detail", string | number];
|
|
768
803
|
};
|
|
769
804
|
export declare const identityProviderKeys: {
|
|
770
805
|
/** All identityProvider queries */ readonly all: readonly ["identityprovider"];
|
|
@@ -773,20 +808,6 @@ export declare const identityProviderKeys: {
|
|
|
773
808
|
/** Detail query keys */ readonly details: () => readonly ["identityprovider", "detail"];
|
|
774
809
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["identityprovider", "detail", string | number];
|
|
775
810
|
};
|
|
776
|
-
export declare const refKeys: {
|
|
777
|
-
/** All ref queries */ readonly all: readonly ["ref"];
|
|
778
|
-
/** List query keys */ readonly lists: () => readonly ["ref", "list"];
|
|
779
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["ref", "list", object];
|
|
780
|
-
/** Detail query keys */ readonly details: () => readonly ["ref", "detail"];
|
|
781
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["ref", "detail", string | number];
|
|
782
|
-
};
|
|
783
|
-
export declare const storeKeys: {
|
|
784
|
-
/** All store queries */ readonly all: readonly ["store"];
|
|
785
|
-
/** List query keys */ readonly lists: () => readonly ["store", "list"];
|
|
786
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["store", "list", object];
|
|
787
|
-
/** Detail query keys */ readonly details: () => readonly ["store", "detail"];
|
|
788
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["store", "detail", string | number];
|
|
789
|
-
};
|
|
790
811
|
export declare const appPermissionDefaultKeys: {
|
|
791
812
|
/** All appPermissionDefault queries */ readonly all: readonly ["apppermissiondefault"];
|
|
792
813
|
/** List query keys */ readonly lists: () => readonly ["apppermissiondefault", "list"];
|
|
@@ -794,12 +815,47 @@ export declare const appPermissionDefaultKeys: {
|
|
|
794
815
|
/** Detail query keys */ readonly details: () => readonly ["apppermissiondefault", "detail"];
|
|
795
816
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["apppermissiondefault", "detail", string | number];
|
|
796
817
|
};
|
|
797
|
-
export declare const
|
|
798
|
-
/** All
|
|
799
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
800
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
801
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
802
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
818
|
+
export declare const roleTypeKeys: {
|
|
819
|
+
/** All roleType queries */ readonly all: readonly ["roletype"];
|
|
820
|
+
/** List query keys */ readonly lists: () => readonly ["roletype", "list"];
|
|
821
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["roletype", "list", object];
|
|
822
|
+
/** Detail query keys */ readonly details: () => readonly ["roletype", "detail"];
|
|
823
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["roletype", "detail", string | number];
|
|
824
|
+
};
|
|
825
|
+
export declare const migrateFileKeys: {
|
|
826
|
+
/** All migrateFile queries */ readonly all: readonly ["migratefile"];
|
|
827
|
+
/** List query keys */ readonly lists: () => readonly ["migratefile", "list"];
|
|
828
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["migratefile", "list", object];
|
|
829
|
+
/** Detail query keys */ readonly details: () => readonly ["migratefile", "detail"];
|
|
830
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["migratefile", "detail", string | number];
|
|
831
|
+
};
|
|
832
|
+
export declare const devicesModuleKeys: {
|
|
833
|
+
/** All devicesModule queries */ readonly all: readonly ["devicesmodule"];
|
|
834
|
+
/** List query keys */ readonly lists: () => readonly ["devicesmodule", "list"];
|
|
835
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["devicesmodule", "list", object];
|
|
836
|
+
/** Detail query keys */ readonly details: () => readonly ["devicesmodule", "detail"];
|
|
837
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["devicesmodule", "detail", string | number];
|
|
838
|
+
};
|
|
839
|
+
export declare const appMembershipDefaultKeys: {
|
|
840
|
+
/** All appMembershipDefault queries */ readonly all: readonly ["appmembershipdefault"];
|
|
841
|
+
/** List query keys */ readonly lists: () => readonly ["appmembershipdefault", "list"];
|
|
842
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appmembershipdefault", "list", object];
|
|
843
|
+
/** Detail query keys */ readonly details: () => readonly ["appmembershipdefault", "detail"];
|
|
844
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembershipdefault", "detail", string | number];
|
|
845
|
+
};
|
|
846
|
+
export declare const orgMembershipDefaultKeys: {
|
|
847
|
+
/** All orgMembershipDefault queries */ readonly all: readonly ["orgmembershipdefault"];
|
|
848
|
+
/** List query keys */ readonly lists: () => readonly ["orgmembershipdefault", "list"];
|
|
849
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipdefault", "list", object];
|
|
850
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmembershipdefault", "detail"];
|
|
851
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipdefault", "detail", string | number];
|
|
852
|
+
};
|
|
853
|
+
export declare const nodeTypeRegistryKeys: {
|
|
854
|
+
/** All nodeTypeRegistry queries */ readonly all: readonly ["nodetyperegistry"];
|
|
855
|
+
/** List query keys */ readonly lists: () => readonly ["nodetyperegistry", "list"];
|
|
856
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["nodetyperegistry", "list", object];
|
|
857
|
+
/** Detail query keys */ readonly details: () => readonly ["nodetyperegistry", "detail"];
|
|
858
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["nodetyperegistry", "detail", string | number];
|
|
803
859
|
};
|
|
804
860
|
export declare const appLimitCapsDefaultKeys: {
|
|
805
861
|
/** All appLimitCapsDefault queries */ readonly all: readonly ["applimitcapsdefault"];
|
|
@@ -829,33 +885,12 @@ export declare const orgLimitCapKeys: {
|
|
|
829
885
|
/** Detail query keys */ readonly details: () => readonly ["orglimitcap", "detail"];
|
|
830
886
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitcap", "detail", string | number];
|
|
831
887
|
};
|
|
832
|
-
export declare const
|
|
833
|
-
/** All
|
|
834
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
835
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
836
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
837
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
838
|
-
};
|
|
839
|
-
export declare const migrateFileKeys: {
|
|
840
|
-
/** All migrateFile queries */ readonly all: readonly ["migratefile"];
|
|
841
|
-
/** List query keys */ readonly lists: () => readonly ["migratefile", "list"];
|
|
842
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["migratefile", "list", object];
|
|
843
|
-
/** Detail query keys */ readonly details: () => readonly ["migratefile", "detail"];
|
|
844
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["migratefile", "detail", string | number];
|
|
845
|
-
};
|
|
846
|
-
export declare const devicesModuleKeys: {
|
|
847
|
-
/** All devicesModule queries */ readonly all: readonly ["devicesmodule"];
|
|
848
|
-
/** List query keys */ readonly lists: () => readonly ["devicesmodule", "list"];
|
|
849
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["devicesmodule", "list", object];
|
|
850
|
-
/** Detail query keys */ readonly details: () => readonly ["devicesmodule", "detail"];
|
|
851
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["devicesmodule", "detail", string | number];
|
|
852
|
-
};
|
|
853
|
-
export declare const nodeTypeRegistryKeys: {
|
|
854
|
-
/** All nodeTypeRegistry queries */ readonly all: readonly ["nodetyperegistry"];
|
|
855
|
-
/** List query keys */ readonly lists: () => readonly ["nodetyperegistry", "list"];
|
|
856
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["nodetyperegistry", "list", object];
|
|
857
|
-
/** Detail query keys */ readonly details: () => readonly ["nodetyperegistry", "detail"];
|
|
858
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["nodetyperegistry", "detail", string | number];
|
|
888
|
+
export declare const userConnectedAccountKeys: {
|
|
889
|
+
/** All userConnectedAccount queries */ readonly all: readonly ["userconnectedaccount"];
|
|
890
|
+
/** List query keys */ readonly lists: () => readonly ["userconnectedaccount", "list"];
|
|
891
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["userconnectedaccount", "list", object];
|
|
892
|
+
/** Detail query keys */ readonly details: () => readonly ["userconnectedaccount", "detail"];
|
|
893
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["userconnectedaccount", "detail", string | number];
|
|
859
894
|
};
|
|
860
895
|
export declare const appLimitDefaultKeys: {
|
|
861
896
|
/** All appLimitDefault queries */ readonly all: readonly ["applimitdefault"];
|
|
@@ -871,6 +906,13 @@ export declare const orgLimitDefaultKeys: {
|
|
|
871
906
|
/** Detail query keys */ readonly details: () => readonly ["orglimitdefault", "detail"];
|
|
872
907
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitdefault", "detail", string | number];
|
|
873
908
|
};
|
|
909
|
+
export declare const appLimitCreditCodeKeys: {
|
|
910
|
+
/** All appLimitCreditCode queries */ readonly all: readonly ["applimitcreditcode"];
|
|
911
|
+
/** List query keys */ readonly lists: () => readonly ["applimitcreditcode", "list"];
|
|
912
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitcreditcode", "list", object];
|
|
913
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitcreditcode", "detail"];
|
|
914
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitcreditcode", "detail", string | number];
|
|
915
|
+
};
|
|
874
916
|
export declare const appLimitWarningKeys: {
|
|
875
917
|
/** All appLimitWarning queries */ readonly all: readonly ["applimitwarning"];
|
|
876
918
|
/** List query keys */ readonly lists: () => readonly ["applimitwarning", "list"];
|
|
@@ -878,20 +920,6 @@ export declare const appLimitWarningKeys: {
|
|
|
878
920
|
/** Detail query keys */ readonly details: () => readonly ["applimitwarning", "detail"];
|
|
879
921
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitwarning", "detail", string | number];
|
|
880
922
|
};
|
|
881
|
-
export declare const userConnectedAccountKeys: {
|
|
882
|
-
/** All userConnectedAccount queries */ readonly all: readonly ["userconnectedaccount"];
|
|
883
|
-
/** List query keys */ readonly lists: () => readonly ["userconnectedaccount", "list"];
|
|
884
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["userconnectedaccount", "list", object];
|
|
885
|
-
/** Detail query keys */ readonly details: () => readonly ["userconnectedaccount", "detail"];
|
|
886
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["userconnectedaccount", "detail", string | number];
|
|
887
|
-
};
|
|
888
|
-
export declare const commitKeys: {
|
|
889
|
-
/** All commit queries */ readonly all: readonly ["commit"];
|
|
890
|
-
/** List query keys */ readonly lists: () => readonly ["commit", "list"];
|
|
891
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["commit", "list", object];
|
|
892
|
-
/** Detail query keys */ readonly details: () => readonly ["commit", "detail"];
|
|
893
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["commit", "detail", string | number];
|
|
894
|
-
};
|
|
895
923
|
export declare const pubkeySettingKeys: {
|
|
896
924
|
/** All pubkeySetting queries */ readonly all: readonly ["pubkeysetting"];
|
|
897
925
|
/** List query keys */ readonly lists: () => readonly ["pubkeysetting", "list"];
|
|
@@ -906,26 +934,12 @@ export declare const rateLimitsModuleKeys: {
|
|
|
906
934
|
/** Detail query keys */ readonly details: () => readonly ["ratelimitsmodule", "detail"];
|
|
907
935
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["ratelimitsmodule", "detail", string | number];
|
|
908
936
|
};
|
|
909
|
-
export declare const
|
|
910
|
-
/** All
|
|
911
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
912
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
913
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
914
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
915
|
-
};
|
|
916
|
-
export declare const appMembershipDefaultKeys: {
|
|
917
|
-
/** All appMembershipDefault queries */ readonly all: readonly ["appmembershipdefault"];
|
|
918
|
-
/** List query keys */ readonly lists: () => readonly ["appmembershipdefault", "list"];
|
|
919
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appmembershipdefault", "list", object];
|
|
920
|
-
/** Detail query keys */ readonly details: () => readonly ["appmembershipdefault", "detail"];
|
|
921
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembershipdefault", "detail", string | number];
|
|
922
|
-
};
|
|
923
|
-
export declare const orgMembershipDefaultKeys: {
|
|
924
|
-
/** All orgMembershipDefault queries */ readonly all: readonly ["orgmembershipdefault"];
|
|
925
|
-
/** List query keys */ readonly lists: () => readonly ["orgmembershipdefault", "list"];
|
|
926
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipdefault", "list", object];
|
|
927
|
-
/** Detail query keys */ readonly details: () => readonly ["orgmembershipdefault", "detail"];
|
|
928
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipdefault", "detail", string | number];
|
|
937
|
+
export declare const membershipTypeKeys: {
|
|
938
|
+
/** All membershipType queries */ readonly all: readonly ["membershiptype"];
|
|
939
|
+
/** List query keys */ readonly lists: () => readonly ["membershiptype", "list"];
|
|
940
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["membershiptype", "list", object];
|
|
941
|
+
/** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
|
|
942
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
|
|
929
943
|
};
|
|
930
944
|
export declare const rlsSettingKeys: {
|
|
931
945
|
/** All rlsSetting queries */ readonly all: readonly ["rlssetting"];
|
|
@@ -934,20 +948,6 @@ export declare const rlsSettingKeys: {
|
|
|
934
948
|
/** Detail query keys */ readonly details: () => readonly ["rlssetting", "detail"];
|
|
935
949
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["rlssetting", "detail", string | number];
|
|
936
950
|
};
|
|
937
|
-
export declare const appLimitEventKeys: {
|
|
938
|
-
/** All appLimitEvent queries */ readonly all: readonly ["applimitevent"];
|
|
939
|
-
/** List query keys */ readonly lists: () => readonly ["applimitevent", "list"];
|
|
940
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitevent", "list", object];
|
|
941
|
-
/** Detail query keys */ readonly details: () => readonly ["applimitevent", "detail"];
|
|
942
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitevent", "detail", string | number];
|
|
943
|
-
};
|
|
944
|
-
export declare const orgLimitEventKeys: {
|
|
945
|
-
/** All orgLimitEvent queries */ readonly all: readonly ["orglimitevent"];
|
|
946
|
-
/** List query keys */ readonly lists: () => readonly ["orglimitevent", "list"];
|
|
947
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitevent", "list", object];
|
|
948
|
-
/** Detail query keys */ readonly details: () => readonly ["orglimitevent", "detail"];
|
|
949
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitevent", "detail", string | number];
|
|
950
|
-
};
|
|
951
951
|
export declare const rlsModuleKeys: {
|
|
952
952
|
/** All rlsModule queries */ readonly all: readonly ["rlsmodule"];
|
|
953
953
|
/** List query keys */ readonly lists: () => readonly ["rlsmodule", "list"];
|
|
@@ -983,19 +983,33 @@ export declare const databaseSettingKeys: {
|
|
|
983
983
|
/** Detail query keys */ readonly details: () => readonly ["databasesetting", "detail"];
|
|
984
984
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["databasesetting", "detail", string | number];
|
|
985
985
|
};
|
|
986
|
-
export declare const
|
|
987
|
-
/** All
|
|
988
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
989
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
990
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
991
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
986
|
+
export declare const orgMembershipSettingKeys: {
|
|
987
|
+
/** All orgMembershipSetting queries */ readonly all: readonly ["orgmembershipsetting"];
|
|
988
|
+
/** List query keys */ readonly lists: () => readonly ["orgmembershipsetting", "list"];
|
|
989
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipsetting", "list", object];
|
|
990
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmembershipsetting", "detail"];
|
|
991
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipsetting", "detail", string | number];
|
|
992
992
|
};
|
|
993
|
-
export declare const
|
|
994
|
-
/** All
|
|
995
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
996
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
997
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
998
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
993
|
+
export declare const appLimitEventKeys: {
|
|
994
|
+
/** All appLimitEvent queries */ readonly all: readonly ["applimitevent"];
|
|
995
|
+
/** List query keys */ readonly lists: () => readonly ["applimitevent", "list"];
|
|
996
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitevent", "list", object];
|
|
997
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitevent", "detail"];
|
|
998
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitevent", "detail", string | number];
|
|
999
|
+
};
|
|
1000
|
+
export declare const orgLimitEventKeys: {
|
|
1001
|
+
/** All orgLimitEvent queries */ readonly all: readonly ["orglimitevent"];
|
|
1002
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitevent", "list"];
|
|
1003
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitevent", "list", object];
|
|
1004
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitevent", "detail"];
|
|
1005
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitevent", "detail", string | number];
|
|
1006
|
+
};
|
|
1007
|
+
export declare const appMembershipKeys: {
|
|
1008
|
+
/** All appMembership queries */ readonly all: readonly ["appmembership"];
|
|
1009
|
+
/** List query keys */ readonly lists: () => readonly ["appmembership", "list"];
|
|
1010
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appmembership", "list", object];
|
|
1011
|
+
/** Detail query keys */ readonly details: () => readonly ["appmembership", "detail"];
|
|
1012
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembership", "detail", string | number];
|
|
999
1013
|
};
|
|
1000
1014
|
export declare const userKeys: {
|
|
1001
1015
|
/** All user queries */ readonly all: readonly ["user"];
|
|
@@ -1004,12 +1018,12 @@ export declare const userKeys: {
|
|
|
1004
1018
|
/** Detail query keys */ readonly details: () => readonly ["user", "detail"];
|
|
1005
1019
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["user", "detail", string | number];
|
|
1006
1020
|
};
|
|
1007
|
-
export declare const
|
|
1008
|
-
/** All
|
|
1009
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1010
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1011
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1012
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1021
|
+
export declare const astMigrationKeys: {
|
|
1022
|
+
/** All astMigration queries */ readonly all: readonly ["astmigration"];
|
|
1023
|
+
/** List query keys */ readonly lists: () => readonly ["astmigration", "list"];
|
|
1024
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["astmigration", "list", object];
|
|
1025
|
+
/** Detail query keys */ readonly details: () => readonly ["astmigration", "detail"];
|
|
1026
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["astmigration", "detail", string | number];
|
|
1013
1027
|
};
|
|
1014
1028
|
export declare const webauthnSettingKeys: {
|
|
1015
1029
|
/** All webauthnSetting queries */ readonly all: readonly ["webauthnsetting"];
|
|
@@ -1018,12 +1032,12 @@ export declare const webauthnSettingKeys: {
|
|
|
1018
1032
|
/** Detail query keys */ readonly details: () => readonly ["webauthnsetting", "detail"];
|
|
1019
1033
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["webauthnsetting", "detail", string | number];
|
|
1020
1034
|
};
|
|
1021
|
-
export declare const
|
|
1022
|
-
/** All
|
|
1023
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1024
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1025
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1026
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1035
|
+
export declare const billingModuleKeys: {
|
|
1036
|
+
/** All billingModule queries */ readonly all: readonly ["billingmodule"];
|
|
1037
|
+
/** List query keys */ readonly lists: () => readonly ["billingmodule", "list"];
|
|
1038
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["billingmodule", "list", object];
|
|
1039
|
+
/** Detail query keys */ readonly details: () => readonly ["billingmodule", "detail"];
|
|
1040
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["billingmodule", "detail", string | number];
|
|
1027
1041
|
};
|
|
1028
1042
|
export declare const billingProviderModuleKeys: {
|
|
1029
1043
|
/** All billingProviderModule queries */ readonly all: readonly ["billingprovidermodule"];
|
|
@@ -1046,19 +1060,16 @@ export declare const customQueryKeys: {
|
|
|
1046
1060
|
/** Query key for requireStepUp */ readonly requireStepUp: (variables?: object) => readonly ["requireStepUp", object];
|
|
1047
1061
|
/** Query key for appPermissionsGetPaddedMask */ readonly appPermissionsGetPaddedMask: (variables?: object) => readonly ["appPermissionsGetPaddedMask", object];
|
|
1048
1062
|
/** Query key for orgPermissionsGetPaddedMask */ readonly orgPermissionsGetPaddedMask: (variables?: object) => readonly ["orgPermissionsGetPaddedMask", object];
|
|
1049
|
-
/** Query key for
|
|
1063
|
+
/** Query key for applyRegistryDefaults */ readonly applyRegistryDefaults: (variables?: object) => readonly ["applyRegistryDefaults", object];
|
|
1050
1064
|
/** Query key for resolveBlueprintField */ readonly resolveBlueprintField: (variables?: object) => readonly ["resolveBlueprintField", object];
|
|
1065
|
+
/** Query key for resolveBlueprintTable */ readonly resolveBlueprintTable: (variables?: object) => readonly ["resolveBlueprintTable", object];
|
|
1051
1066
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
1052
1067
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
1053
1068
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
1054
|
-
/** Query key for resolveBlueprintTable */ readonly resolveBlueprintTable: (variables?: object) => readonly ["resolveBlueprintTable", object];
|
|
1055
1069
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
1056
1070
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
1057
1071
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
1058
1072
|
/** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
|
|
1059
|
-
/** Query key for getAllObjectsFromRoot */ readonly getAllObjectsFromRoot: (variables?: object) => readonly ["getAllObjectsFromRoot", object];
|
|
1060
|
-
/** Query key for getPathObjectsFromRoot */ readonly getPathObjectsFromRoot: (variables?: object) => readonly ["getPathObjectsFromRoot", object];
|
|
1061
|
-
/** Query key for getObjectAtPath */ readonly getObjectAtPath: (variables?: object) => readonly ["getObjectAtPath", object];
|
|
1062
1073
|
/** Query key for currentUser */ readonly currentUser: () => readonly ["currentUser"];
|
|
1063
1074
|
};
|
|
1064
1075
|
/**
|
|
@@ -1098,13 +1109,6 @@ export declare const queryKeys: {
|
|
|
1098
1109
|
/** Detail query keys */ readonly details: () => readonly ["orggetsubordinatesrecord", "detail"];
|
|
1099
1110
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orggetsubordinatesrecord", "detail", string | number];
|
|
1100
1111
|
};
|
|
1101
|
-
readonly getAllRecord: {
|
|
1102
|
-
/** All getAllRecord queries */ readonly all: readonly ["getallrecord"];
|
|
1103
|
-
/** List query keys */ readonly lists: () => readonly ["getallrecord", "list"];
|
|
1104
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["getallrecord", "list", object];
|
|
1105
|
-
/** Detail query keys */ readonly details: () => readonly ["getallrecord", "detail"];
|
|
1106
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["getallrecord", "detail", string | number];
|
|
1107
|
-
};
|
|
1108
1112
|
readonly appPermission: {
|
|
1109
1113
|
/** All appPermission queries */ readonly all: readonly ["apppermission"];
|
|
1110
1114
|
/** List query keys */ readonly lists: () => readonly ["apppermission", "list"];
|
|
@@ -1119,13 +1123,6 @@ export declare const queryKeys: {
|
|
|
1119
1123
|
/** Detail query keys */ readonly details: () => readonly ["orgpermission", "detail"];
|
|
1120
1124
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgpermission", "detail", string | number];
|
|
1121
1125
|
};
|
|
1122
|
-
readonly object: {
|
|
1123
|
-
/** All object queries */ readonly all: readonly ["object"];
|
|
1124
|
-
/** List query keys */ readonly lists: () => readonly ["object", "list"];
|
|
1125
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["object", "list", object];
|
|
1126
|
-
/** Detail query keys */ readonly details: () => readonly ["object", "detail"];
|
|
1127
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["object", "detail", string | number];
|
|
1128
|
-
};
|
|
1129
1126
|
readonly database: {
|
|
1130
1127
|
/** All database queries */ readonly all: readonly ["database"];
|
|
1131
1128
|
/** List query keys */ readonly lists: () => readonly ["database", "list"];
|
|
@@ -1294,6 +1291,13 @@ export declare const queryKeys: {
|
|
|
1294
1291
|
/** Detail query keys */ readonly details: () => readonly ["realtimemodule", "detail"];
|
|
1295
1292
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["realtimemodule", "detail", string | number];
|
|
1296
1293
|
};
|
|
1294
|
+
readonly configSecretsOrgModule: {
|
|
1295
|
+
/** All configSecretsOrgModule queries */ readonly all: readonly ["configsecretsorgmodule"];
|
|
1296
|
+
/** List query keys */ readonly lists: () => readonly ["configsecretsorgmodule", "list"];
|
|
1297
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["configsecretsorgmodule", "list", object];
|
|
1298
|
+
/** Detail query keys */ readonly details: () => readonly ["configsecretsorgmodule", "detail"];
|
|
1299
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["configsecretsorgmodule", "detail", string | number];
|
|
1300
|
+
};
|
|
1297
1301
|
readonly schemaGrant: {
|
|
1298
1302
|
/** All schemaGrant queries */ readonly all: readonly ["schemagrant"];
|
|
1299
1303
|
/** List query keys */ readonly lists: () => readonly ["schemagrant", "list"];
|
|
@@ -1371,6 +1375,20 @@ export declare const queryKeys: {
|
|
|
1371
1375
|
/** Detail query keys */ readonly details: () => readonly ["corssetting", "detail"];
|
|
1372
1376
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["corssetting", "detail", string | number];
|
|
1373
1377
|
};
|
|
1378
|
+
readonly merkleStoreModule: {
|
|
1379
|
+
/** All merkleStoreModule queries */ readonly all: readonly ["merklestoremodule"];
|
|
1380
|
+
/** List query keys */ readonly lists: () => readonly ["merklestoremodule", "list"];
|
|
1381
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["merklestoremodule", "list", object];
|
|
1382
|
+
/** Detail query keys */ readonly details: () => readonly ["merklestoremodule", "detail"];
|
|
1383
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["merklestoremodule", "detail", string | number];
|
|
1384
|
+
};
|
|
1385
|
+
readonly graphModule: {
|
|
1386
|
+
/** All graphModule queries */ readonly all: readonly ["graphmodule"];
|
|
1387
|
+
/** List query keys */ readonly lists: () => readonly ["graphmodule", "list"];
|
|
1388
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["graphmodule", "list", object];
|
|
1389
|
+
/** Detail query keys */ readonly details: () => readonly ["graphmodule", "detail"];
|
|
1390
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["graphmodule", "detail", string | number];
|
|
1391
|
+
};
|
|
1374
1392
|
readonly triggerFunction: {
|
|
1375
1393
|
/** All triggerFunction queries */ readonly all: readonly ["triggerfunction"];
|
|
1376
1394
|
/** List query keys */ readonly lists: () => readonly ["triggerfunction", "list"];
|
|
@@ -1378,13 +1396,6 @@ export declare const queryKeys: {
|
|
|
1378
1396
|
/** Detail query keys */ readonly details: () => readonly ["triggerfunction", "detail"];
|
|
1379
1397
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["triggerfunction", "detail", string | number];
|
|
1380
1398
|
};
|
|
1381
|
-
readonly databaseTransfer: {
|
|
1382
|
-
/** All databaseTransfer queries */ readonly all: readonly ["databasetransfer"];
|
|
1383
|
-
/** List query keys */ readonly lists: () => readonly ["databasetransfer", "list"];
|
|
1384
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["databasetransfer", "list", object];
|
|
1385
|
-
/** Detail query keys */ readonly details: () => readonly ["databasetransfer", "detail"];
|
|
1386
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["databasetransfer", "detail", string | number];
|
|
1387
|
-
};
|
|
1388
1399
|
readonly partition: {
|
|
1389
1400
|
/** All partition queries */ readonly all: readonly ["partition"];
|
|
1390
1401
|
/** List query keys */ readonly lists: () => readonly ["partition", "list"];
|
|
@@ -1392,6 +1403,13 @@ export declare const queryKeys: {
|
|
|
1392
1403
|
/** Detail query keys */ readonly details: () => readonly ["partition", "detail"];
|
|
1393
1404
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["partition", "detail", string | number];
|
|
1394
1405
|
};
|
|
1406
|
+
readonly databaseTransfer: {
|
|
1407
|
+
/** All databaseTransfer queries */ readonly all: readonly ["databasetransfer"];
|
|
1408
|
+
/** List query keys */ readonly lists: () => readonly ["databasetransfer", "list"];
|
|
1409
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["databasetransfer", "list", object];
|
|
1410
|
+
/** Detail query keys */ readonly details: () => readonly ["databasetransfer", "detail"];
|
|
1411
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["databasetransfer", "detail", string | number];
|
|
1412
|
+
};
|
|
1395
1413
|
readonly api: {
|
|
1396
1414
|
/** All api queries */ readonly all: readonly ["api"];
|
|
1397
1415
|
/** List query keys */ readonly lists: () => readonly ["api", "list"];
|
|
@@ -1462,12 +1480,12 @@ export declare const queryKeys: {
|
|
|
1462
1480
|
/** Detail query keys */ readonly details: () => readonly ["emailsmodule", "detail"];
|
|
1463
1481
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["emailsmodule", "detail", string | number];
|
|
1464
1482
|
};
|
|
1465
|
-
readonly
|
|
1466
|
-
/** All
|
|
1467
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1468
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1469
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1470
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1483
|
+
readonly configSecretsUserModule: {
|
|
1484
|
+
/** All configSecretsUserModule queries */ readonly all: readonly ["configsecretsusermodule"];
|
|
1485
|
+
/** List query keys */ readonly lists: () => readonly ["configsecretsusermodule", "list"];
|
|
1486
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["configsecretsusermodule", "list", object];
|
|
1487
|
+
/** Detail query keys */ readonly details: () => readonly ["configsecretsusermodule", "detail"];
|
|
1488
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["configsecretsusermodule", "detail", string | number];
|
|
1471
1489
|
};
|
|
1472
1490
|
readonly invitesModule: {
|
|
1473
1491
|
/** All invitesModule queries */ readonly all: readonly ["invitesmodule"];
|
|
@@ -1609,6 +1627,62 @@ export declare const queryKeys: {
|
|
|
1609
1627
|
/** Detail query keys */ readonly details: () => readonly ["notificationsmodule", "detail"];
|
|
1610
1628
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["notificationsmodule", "detail", string | number];
|
|
1611
1629
|
};
|
|
1630
|
+
readonly inferenceLogModule: {
|
|
1631
|
+
/** All inferenceLogModule queries */ readonly all: readonly ["inferencelogmodule"];
|
|
1632
|
+
/** List query keys */ readonly lists: () => readonly ["inferencelogmodule", "list"];
|
|
1633
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["inferencelogmodule", "list", object];
|
|
1634
|
+
/** Detail query keys */ readonly details: () => readonly ["inferencelogmodule", "detail"];
|
|
1635
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["inferencelogmodule", "detail", string | number];
|
|
1636
|
+
};
|
|
1637
|
+
readonly computeLogModule: {
|
|
1638
|
+
/** All computeLogModule queries */ readonly all: readonly ["computelogmodule"];
|
|
1639
|
+
/** List query keys */ readonly lists: () => readonly ["computelogmodule", "list"];
|
|
1640
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["computelogmodule", "list", object];
|
|
1641
|
+
/** Detail query keys */ readonly details: () => readonly ["computelogmodule", "detail"];
|
|
1642
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["computelogmodule", "detail", string | number];
|
|
1643
|
+
};
|
|
1644
|
+
readonly transferLogModule: {
|
|
1645
|
+
/** All transferLogModule queries */ readonly all: readonly ["transferlogmodule"];
|
|
1646
|
+
/** List query keys */ readonly lists: () => readonly ["transferlogmodule", "list"];
|
|
1647
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["transferlogmodule", "list", object];
|
|
1648
|
+
/** Detail query keys */ readonly details: () => readonly ["transferlogmodule", "detail"];
|
|
1649
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["transferlogmodule", "detail", string | number];
|
|
1650
|
+
};
|
|
1651
|
+
readonly storageLogModule: {
|
|
1652
|
+
/** All storageLogModule queries */ readonly all: readonly ["storagelogmodule"];
|
|
1653
|
+
/** List query keys */ readonly lists: () => readonly ["storagelogmodule", "list"];
|
|
1654
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["storagelogmodule", "list", object];
|
|
1655
|
+
/** Detail query keys */ readonly details: () => readonly ["storagelogmodule", "detail"];
|
|
1656
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["storagelogmodule", "detail", string | number];
|
|
1657
|
+
};
|
|
1658
|
+
readonly dbUsageModule: {
|
|
1659
|
+
/** All dbUsageModule queries */ readonly all: readonly ["dbusagemodule"];
|
|
1660
|
+
/** List query keys */ readonly lists: () => readonly ["dbusagemodule", "list"];
|
|
1661
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["dbusagemodule", "list", object];
|
|
1662
|
+
/** Detail query keys */ readonly details: () => readonly ["dbusagemodule", "detail"];
|
|
1663
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["dbusagemodule", "detail", string | number];
|
|
1664
|
+
};
|
|
1665
|
+
readonly agentModule: {
|
|
1666
|
+
/** All agentModule queries */ readonly all: readonly ["agentmodule"];
|
|
1667
|
+
/** List query keys */ readonly lists: () => readonly ["agentmodule", "list"];
|
|
1668
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agentmodule", "list", object];
|
|
1669
|
+
/** Detail query keys */ readonly details: () => readonly ["agentmodule", "detail"];
|
|
1670
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agentmodule", "detail", string | number];
|
|
1671
|
+
};
|
|
1672
|
+
readonly namespaceModule: {
|
|
1673
|
+
/** All namespaceModule queries */ readonly all: readonly ["namespacemodule"];
|
|
1674
|
+
/** List query keys */ readonly lists: () => readonly ["namespacemodule", "list"];
|
|
1675
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["namespacemodule", "list", object];
|
|
1676
|
+
/** Detail query keys */ readonly details: () => readonly ["namespacemodule", "detail"];
|
|
1677
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["namespacemodule", "detail", string | number];
|
|
1678
|
+
};
|
|
1679
|
+
readonly functionModule: {
|
|
1680
|
+
/** All functionModule queries */ readonly all: readonly ["functionmodule"];
|
|
1681
|
+
/** List query keys */ readonly lists: () => readonly ["functionmodule", "list"];
|
|
1682
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["functionmodule", "list", object];
|
|
1683
|
+
/** Detail query keys */ readonly details: () => readonly ["functionmodule", "detail"];
|
|
1684
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["functionmodule", "detail", string | number];
|
|
1685
|
+
};
|
|
1612
1686
|
readonly databaseProvisionModule: {
|
|
1613
1687
|
/** All databaseProvisionModule queries */ readonly all: readonly ["databaseprovisionmodule"];
|
|
1614
1688
|
/** List query keys */ readonly lists: () => readonly ["databaseprovisionmodule", "list"];
|
|
@@ -1812,40 +1886,12 @@ export declare const queryKeys: {
|
|
|
1812
1886
|
/** Detail query keys */ readonly details: () => readonly ["orgclaimedinvite", "detail"];
|
|
1813
1887
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgclaimedinvite", "detail", string | number];
|
|
1814
1888
|
};
|
|
1815
|
-
readonly
|
|
1816
|
-
/** All
|
|
1817
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1818
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1819
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1820
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1821
|
-
};
|
|
1822
|
-
readonly agentThread: {
|
|
1823
|
-
/** All agentThread queries */ readonly all: readonly ["agentthread"];
|
|
1824
|
-
/** List query keys */ readonly lists: () => readonly ["agentthread", "list"];
|
|
1825
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agentthread", "list", object];
|
|
1826
|
-
/** Detail query keys */ readonly details: () => readonly ["agentthread", "detail"];
|
|
1827
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agentthread", "detail", string | number];
|
|
1828
|
-
};
|
|
1829
|
-
readonly agentMessage: {
|
|
1830
|
-
/** All agentMessage queries */ readonly all: readonly ["agentmessage"];
|
|
1831
|
-
/** List query keys */ readonly lists: () => readonly ["agentmessage", "list"];
|
|
1832
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agentmessage", "list", object];
|
|
1833
|
-
/** Detail query keys */ readonly details: () => readonly ["agentmessage", "detail"];
|
|
1834
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agentmessage", "detail", string | number];
|
|
1835
|
-
};
|
|
1836
|
-
readonly agentTask: {
|
|
1837
|
-
/** All agentTask queries */ readonly all: readonly ["agenttask"];
|
|
1838
|
-
/** List query keys */ readonly lists: () => readonly ["agenttask", "list"];
|
|
1839
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["agenttask", "list", object];
|
|
1840
|
-
/** Detail query keys */ readonly details: () => readonly ["agenttask", "detail"];
|
|
1841
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["agenttask", "detail", string | number];
|
|
1842
|
-
};
|
|
1843
|
-
readonly roleType: {
|
|
1844
|
-
/** All roleType queries */ readonly all: readonly ["roletype"];
|
|
1845
|
-
/** List query keys */ readonly lists: () => readonly ["roletype", "list"];
|
|
1846
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["roletype", "list", object];
|
|
1847
|
-
/** Detail query keys */ readonly details: () => readonly ["roletype", "detail"];
|
|
1848
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["roletype", "detail", string | number];
|
|
1889
|
+
readonly auditLogAuth: {
|
|
1890
|
+
/** All auditLogAuth queries */ readonly all: readonly ["auditlogauth"];
|
|
1891
|
+
/** List query keys */ readonly lists: () => readonly ["auditlogauth", "list"];
|
|
1892
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["auditlogauth", "list", object];
|
|
1893
|
+
/** Detail query keys */ readonly details: () => readonly ["auditlogauth", "detail"];
|
|
1894
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["auditlogauth", "detail", string | number];
|
|
1849
1895
|
};
|
|
1850
1896
|
readonly identityProvider: {
|
|
1851
1897
|
/** All identityProvider queries */ readonly all: readonly ["identityprovider"];
|
|
@@ -1854,20 +1900,6 @@ export declare const queryKeys: {
|
|
|
1854
1900
|
/** Detail query keys */ readonly details: () => readonly ["identityprovider", "detail"];
|
|
1855
1901
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["identityprovider", "detail", string | number];
|
|
1856
1902
|
};
|
|
1857
|
-
readonly ref: {
|
|
1858
|
-
/** All ref queries */ readonly all: readonly ["ref"];
|
|
1859
|
-
/** List query keys */ readonly lists: () => readonly ["ref", "list"];
|
|
1860
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["ref", "list", object];
|
|
1861
|
-
/** Detail query keys */ readonly details: () => readonly ["ref", "detail"];
|
|
1862
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["ref", "detail", string | number];
|
|
1863
|
-
};
|
|
1864
|
-
readonly store: {
|
|
1865
|
-
/** All store queries */ readonly all: readonly ["store"];
|
|
1866
|
-
/** List query keys */ readonly lists: () => readonly ["store", "list"];
|
|
1867
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["store", "list", object];
|
|
1868
|
-
/** Detail query keys */ readonly details: () => readonly ["store", "detail"];
|
|
1869
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["store", "detail", string | number];
|
|
1870
|
-
};
|
|
1871
1903
|
readonly appPermissionDefault: {
|
|
1872
1904
|
/** All appPermissionDefault queries */ readonly all: readonly ["apppermissiondefault"];
|
|
1873
1905
|
/** List query keys */ readonly lists: () => readonly ["apppermissiondefault", "list"];
|
|
@@ -1875,12 +1907,47 @@ export declare const queryKeys: {
|
|
|
1875
1907
|
/** Detail query keys */ readonly details: () => readonly ["apppermissiondefault", "detail"];
|
|
1876
1908
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["apppermissiondefault", "detail", string | number];
|
|
1877
1909
|
};
|
|
1878
|
-
readonly
|
|
1879
|
-
/** All
|
|
1880
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1881
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1882
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1883
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1910
|
+
readonly roleType: {
|
|
1911
|
+
/** All roleType queries */ readonly all: readonly ["roletype"];
|
|
1912
|
+
/** List query keys */ readonly lists: () => readonly ["roletype", "list"];
|
|
1913
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["roletype", "list", object];
|
|
1914
|
+
/** Detail query keys */ readonly details: () => readonly ["roletype", "detail"];
|
|
1915
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["roletype", "detail", string | number];
|
|
1916
|
+
};
|
|
1917
|
+
readonly migrateFile: {
|
|
1918
|
+
/** All migrateFile queries */ readonly all: readonly ["migratefile"];
|
|
1919
|
+
/** List query keys */ readonly lists: () => readonly ["migratefile", "list"];
|
|
1920
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["migratefile", "list", object];
|
|
1921
|
+
/** Detail query keys */ readonly details: () => readonly ["migratefile", "detail"];
|
|
1922
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["migratefile", "detail", string | number];
|
|
1923
|
+
};
|
|
1924
|
+
readonly devicesModule: {
|
|
1925
|
+
/** All devicesModule queries */ readonly all: readonly ["devicesmodule"];
|
|
1926
|
+
/** List query keys */ readonly lists: () => readonly ["devicesmodule", "list"];
|
|
1927
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["devicesmodule", "list", object];
|
|
1928
|
+
/** Detail query keys */ readonly details: () => readonly ["devicesmodule", "detail"];
|
|
1929
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["devicesmodule", "detail", string | number];
|
|
1930
|
+
};
|
|
1931
|
+
readonly appMembershipDefault: {
|
|
1932
|
+
/** All appMembershipDefault queries */ readonly all: readonly ["appmembershipdefault"];
|
|
1933
|
+
/** List query keys */ readonly lists: () => readonly ["appmembershipdefault", "list"];
|
|
1934
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appmembershipdefault", "list", object];
|
|
1935
|
+
/** Detail query keys */ readonly details: () => readonly ["appmembershipdefault", "detail"];
|
|
1936
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembershipdefault", "detail", string | number];
|
|
1937
|
+
};
|
|
1938
|
+
readonly orgMembershipDefault: {
|
|
1939
|
+
/** All orgMembershipDefault queries */ readonly all: readonly ["orgmembershipdefault"];
|
|
1940
|
+
/** List query keys */ readonly lists: () => readonly ["orgmembershipdefault", "list"];
|
|
1941
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipdefault", "list", object];
|
|
1942
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmembershipdefault", "detail"];
|
|
1943
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipdefault", "detail", string | number];
|
|
1944
|
+
};
|
|
1945
|
+
readonly nodeTypeRegistry: {
|
|
1946
|
+
/** All nodeTypeRegistry queries */ readonly all: readonly ["nodetyperegistry"];
|
|
1947
|
+
/** List query keys */ readonly lists: () => readonly ["nodetyperegistry", "list"];
|
|
1948
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["nodetyperegistry", "list", object];
|
|
1949
|
+
/** Detail query keys */ readonly details: () => readonly ["nodetyperegistry", "detail"];
|
|
1950
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["nodetyperegistry", "detail", string | number];
|
|
1884
1951
|
};
|
|
1885
1952
|
readonly appLimitCapsDefault: {
|
|
1886
1953
|
/** All appLimitCapsDefault queries */ readonly all: readonly ["applimitcapsdefault"];
|
|
@@ -1910,33 +1977,12 @@ export declare const queryKeys: {
|
|
|
1910
1977
|
/** Detail query keys */ readonly details: () => readonly ["orglimitcap", "detail"];
|
|
1911
1978
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitcap", "detail", string | number];
|
|
1912
1979
|
};
|
|
1913
|
-
readonly
|
|
1914
|
-
/** All
|
|
1915
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1916
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1917
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1918
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1919
|
-
};
|
|
1920
|
-
readonly migrateFile: {
|
|
1921
|
-
/** All migrateFile queries */ readonly all: readonly ["migratefile"];
|
|
1922
|
-
/** List query keys */ readonly lists: () => readonly ["migratefile", "list"];
|
|
1923
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["migratefile", "list", object];
|
|
1924
|
-
/** Detail query keys */ readonly details: () => readonly ["migratefile", "detail"];
|
|
1925
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["migratefile", "detail", string | number];
|
|
1926
|
-
};
|
|
1927
|
-
readonly devicesModule: {
|
|
1928
|
-
/** All devicesModule queries */ readonly all: readonly ["devicesmodule"];
|
|
1929
|
-
/** List query keys */ readonly lists: () => readonly ["devicesmodule", "list"];
|
|
1930
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["devicesmodule", "list", object];
|
|
1931
|
-
/** Detail query keys */ readonly details: () => readonly ["devicesmodule", "detail"];
|
|
1932
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["devicesmodule", "detail", string | number];
|
|
1933
|
-
};
|
|
1934
|
-
readonly nodeTypeRegistry: {
|
|
1935
|
-
/** All nodeTypeRegistry queries */ readonly all: readonly ["nodetyperegistry"];
|
|
1936
|
-
/** List query keys */ readonly lists: () => readonly ["nodetyperegistry", "list"];
|
|
1937
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["nodetyperegistry", "list", object];
|
|
1938
|
-
/** Detail query keys */ readonly details: () => readonly ["nodetyperegistry", "detail"];
|
|
1939
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["nodetyperegistry", "detail", string | number];
|
|
1980
|
+
readonly userConnectedAccount: {
|
|
1981
|
+
/** All userConnectedAccount queries */ readonly all: readonly ["userconnectedaccount"];
|
|
1982
|
+
/** List query keys */ readonly lists: () => readonly ["userconnectedaccount", "list"];
|
|
1983
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["userconnectedaccount", "list", object];
|
|
1984
|
+
/** Detail query keys */ readonly details: () => readonly ["userconnectedaccount", "detail"];
|
|
1985
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["userconnectedaccount", "detail", string | number];
|
|
1940
1986
|
};
|
|
1941
1987
|
readonly appLimitDefault: {
|
|
1942
1988
|
/** All appLimitDefault queries */ readonly all: readonly ["applimitdefault"];
|
|
@@ -1952,6 +1998,13 @@ export declare const queryKeys: {
|
|
|
1952
1998
|
/** Detail query keys */ readonly details: () => readonly ["orglimitdefault", "detail"];
|
|
1953
1999
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitdefault", "detail", string | number];
|
|
1954
2000
|
};
|
|
2001
|
+
readonly appLimitCreditCode: {
|
|
2002
|
+
/** All appLimitCreditCode queries */ readonly all: readonly ["applimitcreditcode"];
|
|
2003
|
+
/** List query keys */ readonly lists: () => readonly ["applimitcreditcode", "list"];
|
|
2004
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitcreditcode", "list", object];
|
|
2005
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitcreditcode", "detail"];
|
|
2006
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitcreditcode", "detail", string | number];
|
|
2007
|
+
};
|
|
1955
2008
|
readonly appLimitWarning: {
|
|
1956
2009
|
/** All appLimitWarning queries */ readonly all: readonly ["applimitwarning"];
|
|
1957
2010
|
/** List query keys */ readonly lists: () => readonly ["applimitwarning", "list"];
|
|
@@ -1959,20 +2012,6 @@ export declare const queryKeys: {
|
|
|
1959
2012
|
/** Detail query keys */ readonly details: () => readonly ["applimitwarning", "detail"];
|
|
1960
2013
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitwarning", "detail", string | number];
|
|
1961
2014
|
};
|
|
1962
|
-
readonly userConnectedAccount: {
|
|
1963
|
-
/** All userConnectedAccount queries */ readonly all: readonly ["userconnectedaccount"];
|
|
1964
|
-
/** List query keys */ readonly lists: () => readonly ["userconnectedaccount", "list"];
|
|
1965
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["userconnectedaccount", "list", object];
|
|
1966
|
-
/** Detail query keys */ readonly details: () => readonly ["userconnectedaccount", "detail"];
|
|
1967
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["userconnectedaccount", "detail", string | number];
|
|
1968
|
-
};
|
|
1969
|
-
readonly commit: {
|
|
1970
|
-
/** All commit queries */ readonly all: readonly ["commit"];
|
|
1971
|
-
/** List query keys */ readonly lists: () => readonly ["commit", "list"];
|
|
1972
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["commit", "list", object];
|
|
1973
|
-
/** Detail query keys */ readonly details: () => readonly ["commit", "detail"];
|
|
1974
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["commit", "detail", string | number];
|
|
1975
|
-
};
|
|
1976
2015
|
readonly pubkeySetting: {
|
|
1977
2016
|
/** All pubkeySetting queries */ readonly all: readonly ["pubkeysetting"];
|
|
1978
2017
|
/** List query keys */ readonly lists: () => readonly ["pubkeysetting", "list"];
|
|
@@ -1987,26 +2026,12 @@ export declare const queryKeys: {
|
|
|
1987
2026
|
/** Detail query keys */ readonly details: () => readonly ["ratelimitsmodule", "detail"];
|
|
1988
2027
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["ratelimitsmodule", "detail", string | number];
|
|
1989
2028
|
};
|
|
1990
|
-
readonly
|
|
1991
|
-
/** All
|
|
1992
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
1993
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
1994
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
1995
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
1996
|
-
};
|
|
1997
|
-
readonly appMembershipDefault: {
|
|
1998
|
-
/** All appMembershipDefault queries */ readonly all: readonly ["appmembershipdefault"];
|
|
1999
|
-
/** List query keys */ readonly lists: () => readonly ["appmembershipdefault", "list"];
|
|
2000
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appmembershipdefault", "list", object];
|
|
2001
|
-
/** Detail query keys */ readonly details: () => readonly ["appmembershipdefault", "detail"];
|
|
2002
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembershipdefault", "detail", string | number];
|
|
2003
|
-
};
|
|
2004
|
-
readonly orgMembershipDefault: {
|
|
2005
|
-
/** All orgMembershipDefault queries */ readonly all: readonly ["orgmembershipdefault"];
|
|
2006
|
-
/** List query keys */ readonly lists: () => readonly ["orgmembershipdefault", "list"];
|
|
2007
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipdefault", "list", object];
|
|
2008
|
-
/** Detail query keys */ readonly details: () => readonly ["orgmembershipdefault", "detail"];
|
|
2009
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipdefault", "detail", string | number];
|
|
2029
|
+
readonly membershipType: {
|
|
2030
|
+
/** All membershipType queries */ readonly all: readonly ["membershiptype"];
|
|
2031
|
+
/** List query keys */ readonly lists: () => readonly ["membershiptype", "list"];
|
|
2032
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["membershiptype", "list", object];
|
|
2033
|
+
/** Detail query keys */ readonly details: () => readonly ["membershiptype", "detail"];
|
|
2034
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["membershiptype", "detail", string | number];
|
|
2010
2035
|
};
|
|
2011
2036
|
readonly rlsSetting: {
|
|
2012
2037
|
/** All rlsSetting queries */ readonly all: readonly ["rlssetting"];
|
|
@@ -2015,20 +2040,6 @@ export declare const queryKeys: {
|
|
|
2015
2040
|
/** Detail query keys */ readonly details: () => readonly ["rlssetting", "detail"];
|
|
2016
2041
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["rlssetting", "detail", string | number];
|
|
2017
2042
|
};
|
|
2018
|
-
readonly appLimitEvent: {
|
|
2019
|
-
/** All appLimitEvent queries */ readonly all: readonly ["applimitevent"];
|
|
2020
|
-
/** List query keys */ readonly lists: () => readonly ["applimitevent", "list"];
|
|
2021
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitevent", "list", object];
|
|
2022
|
-
/** Detail query keys */ readonly details: () => readonly ["applimitevent", "detail"];
|
|
2023
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitevent", "detail", string | number];
|
|
2024
|
-
};
|
|
2025
|
-
readonly orgLimitEvent: {
|
|
2026
|
-
/** All orgLimitEvent queries */ readonly all: readonly ["orglimitevent"];
|
|
2027
|
-
/** List query keys */ readonly lists: () => readonly ["orglimitevent", "list"];
|
|
2028
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitevent", "list", object];
|
|
2029
|
-
/** Detail query keys */ readonly details: () => readonly ["orglimitevent", "detail"];
|
|
2030
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitevent", "detail", string | number];
|
|
2031
|
-
};
|
|
2032
2043
|
readonly rlsModule: {
|
|
2033
2044
|
/** All rlsModule queries */ readonly all: readonly ["rlsmodule"];
|
|
2034
2045
|
/** List query keys */ readonly lists: () => readonly ["rlsmodule", "list"];
|
|
@@ -2064,19 +2075,33 @@ export declare const queryKeys: {
|
|
|
2064
2075
|
/** Detail query keys */ readonly details: () => readonly ["databasesetting", "detail"];
|
|
2065
2076
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["databasesetting", "detail", string | number];
|
|
2066
2077
|
};
|
|
2067
|
-
readonly
|
|
2068
|
-
/** All
|
|
2069
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
2070
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
2071
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
2072
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
2078
|
+
readonly orgMembershipSetting: {
|
|
2079
|
+
/** All orgMembershipSetting queries */ readonly all: readonly ["orgmembershipsetting"];
|
|
2080
|
+
/** List query keys */ readonly lists: () => readonly ["orgmembershipsetting", "list"];
|
|
2081
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orgmembershipsetting", "list", object];
|
|
2082
|
+
/** Detail query keys */ readonly details: () => readonly ["orgmembershipsetting", "detail"];
|
|
2083
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orgmembershipsetting", "detail", string | number];
|
|
2073
2084
|
};
|
|
2074
|
-
readonly
|
|
2075
|
-
/** All
|
|
2076
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
2077
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
2078
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
2079
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
2085
|
+
readonly appLimitEvent: {
|
|
2086
|
+
/** All appLimitEvent queries */ readonly all: readonly ["applimitevent"];
|
|
2087
|
+
/** List query keys */ readonly lists: () => readonly ["applimitevent", "list"];
|
|
2088
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["applimitevent", "list", object];
|
|
2089
|
+
/** Detail query keys */ readonly details: () => readonly ["applimitevent", "detail"];
|
|
2090
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["applimitevent", "detail", string | number];
|
|
2091
|
+
};
|
|
2092
|
+
readonly orgLimitEvent: {
|
|
2093
|
+
/** All orgLimitEvent queries */ readonly all: readonly ["orglimitevent"];
|
|
2094
|
+
/** List query keys */ readonly lists: () => readonly ["orglimitevent", "list"];
|
|
2095
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["orglimitevent", "list", object];
|
|
2096
|
+
/** Detail query keys */ readonly details: () => readonly ["orglimitevent", "detail"];
|
|
2097
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["orglimitevent", "detail", string | number];
|
|
2098
|
+
};
|
|
2099
|
+
readonly appMembership: {
|
|
2100
|
+
/** All appMembership queries */ readonly all: readonly ["appmembership"];
|
|
2101
|
+
/** List query keys */ readonly lists: () => readonly ["appmembership", "list"];
|
|
2102
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["appmembership", "list", object];
|
|
2103
|
+
/** Detail query keys */ readonly details: () => readonly ["appmembership", "detail"];
|
|
2104
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["appmembership", "detail", string | number];
|
|
2080
2105
|
};
|
|
2081
2106
|
readonly user: {
|
|
2082
2107
|
/** All user queries */ readonly all: readonly ["user"];
|
|
@@ -2085,12 +2110,12 @@ export declare const queryKeys: {
|
|
|
2085
2110
|
/** Detail query keys */ readonly details: () => readonly ["user", "detail"];
|
|
2086
2111
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["user", "detail", string | number];
|
|
2087
2112
|
};
|
|
2088
|
-
readonly
|
|
2089
|
-
/** All
|
|
2090
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
2091
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
2092
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
2093
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
2113
|
+
readonly astMigration: {
|
|
2114
|
+
/** All astMigration queries */ readonly all: readonly ["astmigration"];
|
|
2115
|
+
/** List query keys */ readonly lists: () => readonly ["astmigration", "list"];
|
|
2116
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["astmigration", "list", object];
|
|
2117
|
+
/** Detail query keys */ readonly details: () => readonly ["astmigration", "detail"];
|
|
2118
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["astmigration", "detail", string | number];
|
|
2094
2119
|
};
|
|
2095
2120
|
readonly webauthnSetting: {
|
|
2096
2121
|
/** All webauthnSetting queries */ readonly all: readonly ["webauthnsetting"];
|
|
@@ -2099,12 +2124,12 @@ export declare const queryKeys: {
|
|
|
2099
2124
|
/** Detail query keys */ readonly details: () => readonly ["webauthnsetting", "detail"];
|
|
2100
2125
|
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["webauthnsetting", "detail", string | number];
|
|
2101
2126
|
};
|
|
2102
|
-
readonly
|
|
2103
|
-
/** All
|
|
2104
|
-
/** List query keys */ readonly lists: () => readonly ["
|
|
2105
|
-
/** List query key with variables */ readonly list: (variables?: object) => readonly ["
|
|
2106
|
-
/** Detail query keys */ readonly details: () => readonly ["
|
|
2107
|
-
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["
|
|
2127
|
+
readonly billingModule: {
|
|
2128
|
+
/** All billingModule queries */ readonly all: readonly ["billingmodule"];
|
|
2129
|
+
/** List query keys */ readonly lists: () => readonly ["billingmodule", "list"];
|
|
2130
|
+
/** List query key with variables */ readonly list: (variables?: object) => readonly ["billingmodule", "list", object];
|
|
2131
|
+
/** Detail query keys */ readonly details: () => readonly ["billingmodule", "detail"];
|
|
2132
|
+
/** Detail query key for specific item */ readonly detail: (id: string | number) => readonly ["billingmodule", "detail", string | number];
|
|
2108
2133
|
};
|
|
2109
2134
|
readonly billingProviderModule: {
|
|
2110
2135
|
/** All billingProviderModule queries */ readonly all: readonly ["billingprovidermodule"];
|
|
@@ -2127,19 +2152,16 @@ export declare const queryKeys: {
|
|
|
2127
2152
|
/** Query key for requireStepUp */ readonly requireStepUp: (variables?: object) => readonly ["requireStepUp", object];
|
|
2128
2153
|
/** Query key for appPermissionsGetPaddedMask */ readonly appPermissionsGetPaddedMask: (variables?: object) => readonly ["appPermissionsGetPaddedMask", object];
|
|
2129
2154
|
/** Query key for orgPermissionsGetPaddedMask */ readonly orgPermissionsGetPaddedMask: (variables?: object) => readonly ["orgPermissionsGetPaddedMask", object];
|
|
2130
|
-
/** Query key for
|
|
2155
|
+
/** Query key for applyRegistryDefaults */ readonly applyRegistryDefaults: (variables?: object) => readonly ["applyRegistryDefaults", object];
|
|
2131
2156
|
/** Query key for resolveBlueprintField */ readonly resolveBlueprintField: (variables?: object) => readonly ["resolveBlueprintField", object];
|
|
2157
|
+
/** Query key for resolveBlueprintTable */ readonly resolveBlueprintTable: (variables?: object) => readonly ["resolveBlueprintTable", object];
|
|
2132
2158
|
/** Query key for orgIsManagerOf */ readonly orgIsManagerOf: (variables?: object) => readonly ["orgIsManagerOf", object];
|
|
2133
2159
|
/** Query key for appPermissionsGetMask */ readonly appPermissionsGetMask: (variables?: object) => readonly ["appPermissionsGetMask", object];
|
|
2134
2160
|
/** Query key for orgPermissionsGetMask */ readonly orgPermissionsGetMask: (variables?: object) => readonly ["orgPermissionsGetMask", object];
|
|
2135
|
-
/** Query key for resolveBlueprintTable */ readonly resolveBlueprintTable: (variables?: object) => readonly ["resolveBlueprintTable", object];
|
|
2136
2161
|
/** Query key for appPermissionsGetMaskByNames */ readonly appPermissionsGetMaskByNames: (variables?: object) => readonly ["appPermissionsGetMaskByNames", object];
|
|
2137
2162
|
/** Query key for orgPermissionsGetMaskByNames */ readonly orgPermissionsGetMaskByNames: (variables?: object) => readonly ["orgPermissionsGetMaskByNames", object];
|
|
2138
2163
|
/** Query key for appPermissionsGetByMask */ readonly appPermissionsGetByMask: (variables?: object) => readonly ["appPermissionsGetByMask", object];
|
|
2139
2164
|
/** Query key for orgPermissionsGetByMask */ readonly orgPermissionsGetByMask: (variables?: object) => readonly ["orgPermissionsGetByMask", object];
|
|
2140
|
-
/** Query key for getAllObjectsFromRoot */ readonly getAllObjectsFromRoot: (variables?: object) => readonly ["getAllObjectsFromRoot", object];
|
|
2141
|
-
/** Query key for getPathObjectsFromRoot */ readonly getPathObjectsFromRoot: (variables?: object) => readonly ["getPathObjectsFromRoot", object];
|
|
2142
|
-
/** Query key for getObjectAtPath */ readonly getObjectAtPath: (variables?: object) => readonly ["getObjectAtPath", object];
|
|
2143
2165
|
/** Query key for currentUser */ readonly currentUser: () => readonly ["currentUser"];
|
|
2144
2166
|
};
|
|
2145
2167
|
};
|