@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
|
@@ -15,12 +15,6 @@ export declare const orgGetSubordinatesRecordMutationKeys: {
|
|
|
15
15
|
/** Update orgGetSubordinatesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orggetsubordinatesrecord", "update", string | number];
|
|
16
16
|
/** Delete orgGetSubordinatesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orggetsubordinatesrecord", "delete", string | number];
|
|
17
17
|
};
|
|
18
|
-
export declare const getAllRecordMutationKeys: {
|
|
19
|
-
/** All getAllRecord mutation keys */ readonly all: readonly ["mutation", "getallrecord"];
|
|
20
|
-
/** Create getAllRecord mutation key */ readonly create: () => readonly ["mutation", "getallrecord", "create"];
|
|
21
|
-
/** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
|
|
22
|
-
/** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
|
|
23
|
-
};
|
|
24
18
|
export declare const appPermissionMutationKeys: {
|
|
25
19
|
/** All appPermission mutation keys */ readonly all: readonly ["mutation", "apppermission"];
|
|
26
20
|
/** Create appPermission mutation key */ readonly create: () => readonly ["mutation", "apppermission", "create"];
|
|
@@ -33,12 +27,6 @@ export declare const orgPermissionMutationKeys: {
|
|
|
33
27
|
/** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
|
|
34
28
|
/** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
|
|
35
29
|
};
|
|
36
|
-
export declare const objectMutationKeys: {
|
|
37
|
-
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
38
|
-
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
39
|
-
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
40
|
-
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
41
|
-
};
|
|
42
30
|
export declare const databaseMutationKeys: {
|
|
43
31
|
/** All database mutation keys */ readonly all: readonly ["mutation", "database"];
|
|
44
32
|
/** Create database mutation key */ readonly create: () => readonly ["mutation", "database", "create"];
|
|
@@ -183,6 +171,12 @@ export declare const realtimeModuleMutationKeys: {
|
|
|
183
171
|
/** Update realtimeModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "realtimemodule", "update", string | number];
|
|
184
172
|
/** Delete realtimeModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "realtimemodule", "delete", string | number];
|
|
185
173
|
};
|
|
174
|
+
export declare const configSecretsOrgModuleMutationKeys: {
|
|
175
|
+
/** All configSecretsOrgModule mutation keys */ readonly all: readonly ["mutation", "configsecretsorgmodule"];
|
|
176
|
+
/** Create configSecretsOrgModule mutation key */ readonly create: () => readonly ["mutation", "configsecretsorgmodule", "create"];
|
|
177
|
+
/** Update configSecretsOrgModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "configsecretsorgmodule", "update", string | number];
|
|
178
|
+
/** Delete configSecretsOrgModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "configsecretsorgmodule", "delete", string | number];
|
|
179
|
+
};
|
|
186
180
|
export declare const schemaGrantMutationKeys: {
|
|
187
181
|
/** All schemaGrant mutation keys */ readonly all: readonly ["mutation", "schemagrant"];
|
|
188
182
|
/** Create schemaGrant mutation key */ readonly create: () => readonly ["mutation", "schemagrant", "create"];
|
|
@@ -249,24 +243,36 @@ export declare const corsSettingMutationKeys: {
|
|
|
249
243
|
/** Update corsSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "corssetting", "update", string | number];
|
|
250
244
|
/** Delete corsSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "corssetting", "delete", string | number];
|
|
251
245
|
};
|
|
246
|
+
export declare const merkleStoreModuleMutationKeys: {
|
|
247
|
+
/** All merkleStoreModule mutation keys */ readonly all: readonly ["mutation", "merklestoremodule"];
|
|
248
|
+
/** Create merkleStoreModule mutation key */ readonly create: () => readonly ["mutation", "merklestoremodule", "create"];
|
|
249
|
+
/** Update merkleStoreModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "merklestoremodule", "update", string | number];
|
|
250
|
+
/** Delete merkleStoreModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "merklestoremodule", "delete", string | number];
|
|
251
|
+
};
|
|
252
|
+
export declare const graphModuleMutationKeys: {
|
|
253
|
+
/** All graphModule mutation keys */ readonly all: readonly ["mutation", "graphmodule"];
|
|
254
|
+
/** Create graphModule mutation key */ readonly create: () => readonly ["mutation", "graphmodule", "create"];
|
|
255
|
+
/** Update graphModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "graphmodule", "update", string | number];
|
|
256
|
+
/** Delete graphModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "graphmodule", "delete", string | number];
|
|
257
|
+
};
|
|
252
258
|
export declare const triggerFunctionMutationKeys: {
|
|
253
259
|
/** All triggerFunction mutation keys */ readonly all: readonly ["mutation", "triggerfunction"];
|
|
254
260
|
/** Create triggerFunction mutation key */ readonly create: () => readonly ["mutation", "triggerfunction", "create"];
|
|
255
261
|
/** Update triggerFunction mutation key */ readonly update: (id: string | number) => readonly ["mutation", "triggerfunction", "update", string | number];
|
|
256
262
|
/** Delete triggerFunction mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "triggerfunction", "delete", string | number];
|
|
257
263
|
};
|
|
258
|
-
export declare const databaseTransferMutationKeys: {
|
|
259
|
-
/** All databaseTransfer mutation keys */ readonly all: readonly ["mutation", "databasetransfer"];
|
|
260
|
-
/** Create databaseTransfer mutation key */ readonly create: () => readonly ["mutation", "databasetransfer", "create"];
|
|
261
|
-
/** Update databaseTransfer mutation key */ readonly update: (id: string | number) => readonly ["mutation", "databasetransfer", "update", string | number];
|
|
262
|
-
/** Delete databaseTransfer mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "databasetransfer", "delete", string | number];
|
|
263
|
-
};
|
|
264
264
|
export declare const partitionMutationKeys: {
|
|
265
265
|
/** All partition mutation keys */ readonly all: readonly ["mutation", "partition"];
|
|
266
266
|
/** Create partition mutation key */ readonly create: () => readonly ["mutation", "partition", "create"];
|
|
267
267
|
/** Update partition mutation key */ readonly update: (id: string | number) => readonly ["mutation", "partition", "update", string | number];
|
|
268
268
|
/** Delete partition mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "partition", "delete", string | number];
|
|
269
269
|
};
|
|
270
|
+
export declare const databaseTransferMutationKeys: {
|
|
271
|
+
/** All databaseTransfer mutation keys */ readonly all: readonly ["mutation", "databasetransfer"];
|
|
272
|
+
/** Create databaseTransfer mutation key */ readonly create: () => readonly ["mutation", "databasetransfer", "create"];
|
|
273
|
+
/** Update databaseTransfer mutation key */ readonly update: (id: string | number) => readonly ["mutation", "databasetransfer", "update", string | number];
|
|
274
|
+
/** Delete databaseTransfer mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "databasetransfer", "delete", string | number];
|
|
275
|
+
};
|
|
270
276
|
export declare const apiMutationKeys: {
|
|
271
277
|
/** All api mutation keys */ readonly all: readonly ["mutation", "api"];
|
|
272
278
|
/** Create api mutation key */ readonly create: () => readonly ["mutation", "api", "create"];
|
|
@@ -327,11 +333,11 @@ export declare const emailsModuleMutationKeys: {
|
|
|
327
333
|
/** Update emailsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "emailsmodule", "update", string | number];
|
|
328
334
|
/** Delete emailsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "emailsmodule", "delete", string | number];
|
|
329
335
|
};
|
|
330
|
-
export declare const
|
|
331
|
-
/** All
|
|
332
|
-
/** Create
|
|
333
|
-
/** Update
|
|
334
|
-
/** Delete
|
|
336
|
+
export declare const configSecretsUserModuleMutationKeys: {
|
|
337
|
+
/** All configSecretsUserModule mutation keys */ readonly all: readonly ["mutation", "configsecretsusermodule"];
|
|
338
|
+
/** Create configSecretsUserModule mutation key */ readonly create: () => readonly ["mutation", "configsecretsusermodule", "create"];
|
|
339
|
+
/** Update configSecretsUserModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "configsecretsusermodule", "update", string | number];
|
|
340
|
+
/** Delete configSecretsUserModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "configsecretsusermodule", "delete", string | number];
|
|
335
341
|
};
|
|
336
342
|
export declare const invitesModuleMutationKeys: {
|
|
337
343
|
/** All invitesModule mutation keys */ readonly all: readonly ["mutation", "invitesmodule"];
|
|
@@ -453,6 +459,54 @@ export declare const notificationsModuleMutationKeys: {
|
|
|
453
459
|
/** Update notificationsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "notificationsmodule", "update", string | number];
|
|
454
460
|
/** Delete notificationsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "notificationsmodule", "delete", string | number];
|
|
455
461
|
};
|
|
462
|
+
export declare const inferenceLogModuleMutationKeys: {
|
|
463
|
+
/** All inferenceLogModule mutation keys */ readonly all: readonly ["mutation", "inferencelogmodule"];
|
|
464
|
+
/** Create inferenceLogModule mutation key */ readonly create: () => readonly ["mutation", "inferencelogmodule", "create"];
|
|
465
|
+
/** Update inferenceLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "inferencelogmodule", "update", string | number];
|
|
466
|
+
/** Delete inferenceLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "inferencelogmodule", "delete", string | number];
|
|
467
|
+
};
|
|
468
|
+
export declare const computeLogModuleMutationKeys: {
|
|
469
|
+
/** All computeLogModule mutation keys */ readonly all: readonly ["mutation", "computelogmodule"];
|
|
470
|
+
/** Create computeLogModule mutation key */ readonly create: () => readonly ["mutation", "computelogmodule", "create"];
|
|
471
|
+
/** Update computeLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "computelogmodule", "update", string | number];
|
|
472
|
+
/** Delete computeLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "computelogmodule", "delete", string | number];
|
|
473
|
+
};
|
|
474
|
+
export declare const transferLogModuleMutationKeys: {
|
|
475
|
+
/** All transferLogModule mutation keys */ readonly all: readonly ["mutation", "transferlogmodule"];
|
|
476
|
+
/** Create transferLogModule mutation key */ readonly create: () => readonly ["mutation", "transferlogmodule", "create"];
|
|
477
|
+
/** Update transferLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "transferlogmodule", "update", string | number];
|
|
478
|
+
/** Delete transferLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "transferlogmodule", "delete", string | number];
|
|
479
|
+
};
|
|
480
|
+
export declare const storageLogModuleMutationKeys: {
|
|
481
|
+
/** All storageLogModule mutation keys */ readonly all: readonly ["mutation", "storagelogmodule"];
|
|
482
|
+
/** Create storageLogModule mutation key */ readonly create: () => readonly ["mutation", "storagelogmodule", "create"];
|
|
483
|
+
/** Update storageLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "storagelogmodule", "update", string | number];
|
|
484
|
+
/** Delete storageLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "storagelogmodule", "delete", string | number];
|
|
485
|
+
};
|
|
486
|
+
export declare const dbUsageModuleMutationKeys: {
|
|
487
|
+
/** All dbUsageModule mutation keys */ readonly all: readonly ["mutation", "dbusagemodule"];
|
|
488
|
+
/** Create dbUsageModule mutation key */ readonly create: () => readonly ["mutation", "dbusagemodule", "create"];
|
|
489
|
+
/** Update dbUsageModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "dbusagemodule", "update", string | number];
|
|
490
|
+
/** Delete dbUsageModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "dbusagemodule", "delete", string | number];
|
|
491
|
+
};
|
|
492
|
+
export declare const agentModuleMutationKeys: {
|
|
493
|
+
/** All agentModule mutation keys */ readonly all: readonly ["mutation", "agentmodule"];
|
|
494
|
+
/** Create agentModule mutation key */ readonly create: () => readonly ["mutation", "agentmodule", "create"];
|
|
495
|
+
/** Update agentModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentmodule", "update", string | number];
|
|
496
|
+
/** Delete agentModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentmodule", "delete", string | number];
|
|
497
|
+
};
|
|
498
|
+
export declare const namespaceModuleMutationKeys: {
|
|
499
|
+
/** All namespaceModule mutation keys */ readonly all: readonly ["mutation", "namespacemodule"];
|
|
500
|
+
/** Create namespaceModule mutation key */ readonly create: () => readonly ["mutation", "namespacemodule", "create"];
|
|
501
|
+
/** Update namespaceModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "namespacemodule", "update", string | number];
|
|
502
|
+
/** Delete namespaceModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "namespacemodule", "delete", string | number];
|
|
503
|
+
};
|
|
504
|
+
export declare const functionModuleMutationKeys: {
|
|
505
|
+
/** All functionModule mutation keys */ readonly all: readonly ["mutation", "functionmodule"];
|
|
506
|
+
/** Create functionModule mutation key */ readonly create: () => readonly ["mutation", "functionmodule", "create"];
|
|
507
|
+
/** Update functionModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functionmodule", "update", string | number];
|
|
508
|
+
/** Delete functionModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functionmodule", "delete", string | number];
|
|
509
|
+
};
|
|
456
510
|
export declare const databaseProvisionModuleMutationKeys: {
|
|
457
511
|
/** All databaseProvisionModule mutation keys */ readonly all: readonly ["mutation", "databaseprovisionmodule"];
|
|
458
512
|
/** Create databaseProvisionModule mutation key */ readonly create: () => readonly ["mutation", "databaseprovisionmodule", "create"];
|
|
@@ -627,35 +681,11 @@ export declare const orgClaimedInviteMutationKeys: {
|
|
|
627
681
|
/** Update orgClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "update", string | number];
|
|
628
682
|
/** Delete orgClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "delete", string | number];
|
|
629
683
|
};
|
|
630
|
-
export declare const
|
|
631
|
-
/** All
|
|
632
|
-
/** Create
|
|
633
|
-
/** Update
|
|
634
|
-
/** Delete
|
|
635
|
-
};
|
|
636
|
-
export declare const agentThreadMutationKeys: {
|
|
637
|
-
/** All agentThread mutation keys */ readonly all: readonly ["mutation", "agentthread"];
|
|
638
|
-
/** Create agentThread mutation key */ readonly create: () => readonly ["mutation", "agentthread", "create"];
|
|
639
|
-
/** Update agentThread mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentthread", "update", string | number];
|
|
640
|
-
/** Delete agentThread mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentthread", "delete", string | number];
|
|
641
|
-
};
|
|
642
|
-
export declare const agentMessageMutationKeys: {
|
|
643
|
-
/** All agentMessage mutation keys */ readonly all: readonly ["mutation", "agentmessage"];
|
|
644
|
-
/** Create agentMessage mutation key */ readonly create: () => readonly ["mutation", "agentmessage", "create"];
|
|
645
|
-
/** Update agentMessage mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentmessage", "update", string | number];
|
|
646
|
-
/** Delete agentMessage mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentmessage", "delete", string | number];
|
|
647
|
-
};
|
|
648
|
-
export declare const agentTaskMutationKeys: {
|
|
649
|
-
/** All agentTask mutation keys */ readonly all: readonly ["mutation", "agenttask"];
|
|
650
|
-
/** Create agentTask mutation key */ readonly create: () => readonly ["mutation", "agenttask", "create"];
|
|
651
|
-
/** Update agentTask mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agenttask", "update", string | number];
|
|
652
|
-
/** Delete agentTask mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agenttask", "delete", string | number];
|
|
653
|
-
};
|
|
654
|
-
export declare const roleTypeMutationKeys: {
|
|
655
|
-
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
656
|
-
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
657
|
-
/** Update roleType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "roletype", "update", string | number];
|
|
658
|
-
/** Delete roleType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "roletype", "delete", string | number];
|
|
684
|
+
export declare const auditLogAuthMutationKeys: {
|
|
685
|
+
/** All auditLogAuth mutation keys */ readonly all: readonly ["mutation", "auditlogauth"];
|
|
686
|
+
/** Create auditLogAuth mutation key */ readonly create: () => readonly ["mutation", "auditlogauth", "create"];
|
|
687
|
+
/** Update auditLogAuth mutation key */ readonly update: (id: string | number) => readonly ["mutation", "auditlogauth", "update", string | number];
|
|
688
|
+
/** Delete auditLogAuth mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "auditlogauth", "delete", string | number];
|
|
659
689
|
};
|
|
660
690
|
export declare const identityProviderMutationKeys: {
|
|
661
691
|
/** All identityProvider mutation keys */ readonly all: readonly ["mutation", "identityprovider"];
|
|
@@ -663,29 +693,47 @@ export declare const identityProviderMutationKeys: {
|
|
|
663
693
|
/** Update identityProvider mutation key */ readonly update: (id: string | number) => readonly ["mutation", "identityprovider", "update", string | number];
|
|
664
694
|
/** Delete identityProvider mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "identityprovider", "delete", string | number];
|
|
665
695
|
};
|
|
666
|
-
export declare const refMutationKeys: {
|
|
667
|
-
/** All ref mutation keys */ readonly all: readonly ["mutation", "ref"];
|
|
668
|
-
/** Create ref mutation key */ readonly create: () => readonly ["mutation", "ref", "create"];
|
|
669
|
-
/** Update ref mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ref", "update", string | number];
|
|
670
|
-
/** Delete ref mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ref", "delete", string | number];
|
|
671
|
-
};
|
|
672
|
-
export declare const storeMutationKeys: {
|
|
673
|
-
/** All store mutation keys */ readonly all: readonly ["mutation", "store"];
|
|
674
|
-
/** Create store mutation key */ readonly create: () => readonly ["mutation", "store", "create"];
|
|
675
|
-
/** Update store mutation key */ readonly update: (id: string | number) => readonly ["mutation", "store", "update", string | number];
|
|
676
|
-
/** Delete store mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "store", "delete", string | number];
|
|
677
|
-
};
|
|
678
696
|
export declare const appPermissionDefaultMutationKeys: {
|
|
679
697
|
/** All appPermissionDefault mutation keys */ readonly all: readonly ["mutation", "apppermissiondefault"];
|
|
680
698
|
/** Create appPermissionDefault mutation key */ readonly create: () => readonly ["mutation", "apppermissiondefault", "create"];
|
|
681
699
|
/** Update appPermissionDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "apppermissiondefault", "update", string | number];
|
|
682
700
|
/** Delete appPermissionDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "apppermissiondefault", "delete", string | number];
|
|
683
701
|
};
|
|
684
|
-
export declare const
|
|
685
|
-
/** All
|
|
686
|
-
/** Create
|
|
687
|
-
/** Update
|
|
688
|
-
/** Delete
|
|
702
|
+
export declare const roleTypeMutationKeys: {
|
|
703
|
+
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
704
|
+
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
705
|
+
/** Update roleType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "roletype", "update", string | number];
|
|
706
|
+
/** Delete roleType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "roletype", "delete", string | number];
|
|
707
|
+
};
|
|
708
|
+
export declare const migrateFileMutationKeys: {
|
|
709
|
+
/** All migrateFile mutation keys */ readonly all: readonly ["mutation", "migratefile"];
|
|
710
|
+
/** Create migrateFile mutation key */ readonly create: () => readonly ["mutation", "migratefile", "create"];
|
|
711
|
+
/** Update migrateFile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "migratefile", "update", string | number];
|
|
712
|
+
/** Delete migrateFile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "migratefile", "delete", string | number];
|
|
713
|
+
};
|
|
714
|
+
export declare const devicesModuleMutationKeys: {
|
|
715
|
+
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
716
|
+
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
717
|
+
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
718
|
+
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
719
|
+
};
|
|
720
|
+
export declare const appMembershipDefaultMutationKeys: {
|
|
721
|
+
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
722
|
+
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
723
|
+
/** Update appMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembershipdefault", "update", string | number];
|
|
724
|
+
/** Delete appMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembershipdefault", "delete", string | number];
|
|
725
|
+
};
|
|
726
|
+
export declare const orgMembershipDefaultMutationKeys: {
|
|
727
|
+
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
728
|
+
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
729
|
+
/** Update orgMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "update", string | number];
|
|
730
|
+
/** Delete orgMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "delete", string | number];
|
|
731
|
+
};
|
|
732
|
+
export declare const nodeTypeRegistryMutationKeys: {
|
|
733
|
+
/** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
|
|
734
|
+
/** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
|
|
735
|
+
/** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
|
|
736
|
+
/** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
|
|
689
737
|
};
|
|
690
738
|
export declare const appLimitCapsDefaultMutationKeys: {
|
|
691
739
|
/** All appLimitCapsDefault mutation keys */ readonly all: readonly ["mutation", "applimitcapsdefault"];
|
|
@@ -711,29 +759,11 @@ export declare const orgLimitCapMutationKeys: {
|
|
|
711
759
|
/** Update orgLimitCap mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitcap", "update", string | number];
|
|
712
760
|
/** Delete orgLimitCap mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitcap", "delete", string | number];
|
|
713
761
|
};
|
|
714
|
-
export declare const
|
|
715
|
-
/** All
|
|
716
|
-
/** Create
|
|
717
|
-
/** Update
|
|
718
|
-
/** Delete
|
|
719
|
-
};
|
|
720
|
-
export declare const migrateFileMutationKeys: {
|
|
721
|
-
/** All migrateFile mutation keys */ readonly all: readonly ["mutation", "migratefile"];
|
|
722
|
-
/** Create migrateFile mutation key */ readonly create: () => readonly ["mutation", "migratefile", "create"];
|
|
723
|
-
/** Update migrateFile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "migratefile", "update", string | number];
|
|
724
|
-
/** Delete migrateFile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "migratefile", "delete", string | number];
|
|
725
|
-
};
|
|
726
|
-
export declare const devicesModuleMutationKeys: {
|
|
727
|
-
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
728
|
-
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
729
|
-
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
730
|
-
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
731
|
-
};
|
|
732
|
-
export declare const nodeTypeRegistryMutationKeys: {
|
|
733
|
-
/** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
|
|
734
|
-
/** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
|
|
735
|
-
/** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
|
|
736
|
-
/** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
|
|
762
|
+
export declare const userConnectedAccountMutationKeys: {
|
|
763
|
+
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
764
|
+
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
765
|
+
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
766
|
+
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
737
767
|
};
|
|
738
768
|
export declare const appLimitDefaultMutationKeys: {
|
|
739
769
|
/** All appLimitDefault mutation keys */ readonly all: readonly ["mutation", "applimitdefault"];
|
|
@@ -747,24 +777,18 @@ export declare const orgLimitDefaultMutationKeys: {
|
|
|
747
777
|
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
748
778
|
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
749
779
|
};
|
|
780
|
+
export declare const appLimitCreditCodeMutationKeys: {
|
|
781
|
+
/** All appLimitCreditCode mutation keys */ readonly all: readonly ["mutation", "applimitcreditcode"];
|
|
782
|
+
/** Create appLimitCreditCode mutation key */ readonly create: () => readonly ["mutation", "applimitcreditcode", "create"];
|
|
783
|
+
/** Update appLimitCreditCode mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitcreditcode", "update", string | number];
|
|
784
|
+
/** Delete appLimitCreditCode mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitcreditcode", "delete", string | number];
|
|
785
|
+
};
|
|
750
786
|
export declare const appLimitWarningMutationKeys: {
|
|
751
787
|
/** All appLimitWarning mutation keys */ readonly all: readonly ["mutation", "applimitwarning"];
|
|
752
788
|
/** Create appLimitWarning mutation key */ readonly create: () => readonly ["mutation", "applimitwarning", "create"];
|
|
753
789
|
/** Update appLimitWarning mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitwarning", "update", string | number];
|
|
754
790
|
/** Delete appLimitWarning mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitwarning", "delete", string | number];
|
|
755
791
|
};
|
|
756
|
-
export declare const userConnectedAccountMutationKeys: {
|
|
757
|
-
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
758
|
-
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
759
|
-
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
760
|
-
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
761
|
-
};
|
|
762
|
-
export declare const commitMutationKeys: {
|
|
763
|
-
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
764
|
-
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
765
|
-
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
766
|
-
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
767
|
-
};
|
|
768
792
|
export declare const pubkeySettingMutationKeys: {
|
|
769
793
|
/** All pubkeySetting mutation keys */ readonly all: readonly ["mutation", "pubkeysetting"];
|
|
770
794
|
/** Create pubkeySetting mutation key */ readonly create: () => readonly ["mutation", "pubkeysetting", "create"];
|
|
@@ -777,23 +801,11 @@ export declare const rateLimitsModuleMutationKeys: {
|
|
|
777
801
|
/** Update rateLimitsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "update", string | number];
|
|
778
802
|
/** Delete rateLimitsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "delete", string | number];
|
|
779
803
|
};
|
|
780
|
-
export declare const
|
|
781
|
-
/** All
|
|
782
|
-
/** Create
|
|
783
|
-
/** Update
|
|
784
|
-
/** Delete
|
|
785
|
-
};
|
|
786
|
-
export declare const appMembershipDefaultMutationKeys: {
|
|
787
|
-
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
788
|
-
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
789
|
-
/** Update appMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembershipdefault", "update", string | number];
|
|
790
|
-
/** Delete appMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembershipdefault", "delete", string | number];
|
|
791
|
-
};
|
|
792
|
-
export declare const orgMembershipDefaultMutationKeys: {
|
|
793
|
-
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
794
|
-
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
795
|
-
/** Update orgMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "update", string | number];
|
|
796
|
-
/** Delete orgMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "delete", string | number];
|
|
804
|
+
export declare const membershipTypeMutationKeys: {
|
|
805
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
806
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
807
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
808
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
797
809
|
};
|
|
798
810
|
export declare const rlsSettingMutationKeys: {
|
|
799
811
|
/** All rlsSetting mutation keys */ readonly all: readonly ["mutation", "rlssetting"];
|
|
@@ -801,18 +813,6 @@ export declare const rlsSettingMutationKeys: {
|
|
|
801
813
|
/** Update rlsSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "rlssetting", "update", string | number];
|
|
802
814
|
/** Delete rlsSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "rlssetting", "delete", string | number];
|
|
803
815
|
};
|
|
804
|
-
export declare const appLimitEventMutationKeys: {
|
|
805
|
-
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
806
|
-
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
807
|
-
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
808
|
-
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
809
|
-
};
|
|
810
|
-
export declare const orgLimitEventMutationKeys: {
|
|
811
|
-
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
812
|
-
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
813
|
-
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
814
|
-
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
815
|
-
};
|
|
816
816
|
export declare const rlsModuleMutationKeys: {
|
|
817
817
|
/** All rlsModule mutation keys */ readonly all: readonly ["mutation", "rlsmodule"];
|
|
818
818
|
/** Create rlsModule mutation key */ readonly create: () => readonly ["mutation", "rlsmodule", "create"];
|
|
@@ -843,17 +843,29 @@ export declare const databaseSettingMutationKeys: {
|
|
|
843
843
|
/** Update databaseSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "databasesetting", "update", string | number];
|
|
844
844
|
/** Delete databaseSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "databasesetting", "delete", string | number];
|
|
845
845
|
};
|
|
846
|
-
export declare const
|
|
847
|
-
/** All
|
|
848
|
-
/** Create
|
|
849
|
-
/** Update
|
|
850
|
-
/** Delete
|
|
846
|
+
export declare const orgMembershipSettingMutationKeys: {
|
|
847
|
+
/** All orgMembershipSetting mutation keys */ readonly all: readonly ["mutation", "orgmembershipsetting"];
|
|
848
|
+
/** Create orgMembershipSetting mutation key */ readonly create: () => readonly ["mutation", "orgmembershipsetting", "create"];
|
|
849
|
+
/** Update orgMembershipSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "update", string | number];
|
|
850
|
+
/** Delete orgMembershipSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "delete", string | number];
|
|
851
851
|
};
|
|
852
|
-
export declare const
|
|
853
|
-
/** All
|
|
854
|
-
/** Create
|
|
855
|
-
/** Update
|
|
856
|
-
/** Delete
|
|
852
|
+
export declare const appLimitEventMutationKeys: {
|
|
853
|
+
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
854
|
+
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
855
|
+
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
856
|
+
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
857
|
+
};
|
|
858
|
+
export declare const orgLimitEventMutationKeys: {
|
|
859
|
+
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
860
|
+
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
861
|
+
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
862
|
+
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
863
|
+
};
|
|
864
|
+
export declare const appMembershipMutationKeys: {
|
|
865
|
+
/** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
|
|
866
|
+
/** Create appMembership mutation key */ readonly create: () => readonly ["mutation", "appmembership", "create"];
|
|
867
|
+
/** Update appMembership mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembership", "update", string | number];
|
|
868
|
+
/** Delete appMembership mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembership", "delete", string | number];
|
|
857
869
|
};
|
|
858
870
|
export declare const userMutationKeys: {
|
|
859
871
|
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
@@ -861,11 +873,11 @@ export declare const userMutationKeys: {
|
|
|
861
873
|
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
862
874
|
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
863
875
|
};
|
|
864
|
-
export declare const
|
|
865
|
-
/** All
|
|
866
|
-
/** Create
|
|
867
|
-
/** Update
|
|
868
|
-
/** Delete
|
|
876
|
+
export declare const astMigrationMutationKeys: {
|
|
877
|
+
/** All astMigration mutation keys */ readonly all: readonly ["mutation", "astmigration"];
|
|
878
|
+
/** Create astMigration mutation key */ readonly create: () => readonly ["mutation", "astmigration", "create"];
|
|
879
|
+
/** Update astMigration mutation key */ readonly update: (id: string | number) => readonly ["mutation", "astmigration", "update", string | number];
|
|
880
|
+
/** Delete astMigration mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "astmigration", "delete", string | number];
|
|
869
881
|
};
|
|
870
882
|
export declare const webauthnSettingMutationKeys: {
|
|
871
883
|
/** All webauthnSetting mutation keys */ readonly all: readonly ["mutation", "webauthnsetting"];
|
|
@@ -873,11 +885,11 @@ export declare const webauthnSettingMutationKeys: {
|
|
|
873
885
|
/** Update webauthnSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webauthnsetting", "update", string | number];
|
|
874
886
|
/** Delete webauthnSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webauthnsetting", "delete", string | number];
|
|
875
887
|
};
|
|
876
|
-
export declare const
|
|
877
|
-
/** All
|
|
878
|
-
/** Create
|
|
879
|
-
/** Update
|
|
880
|
-
/** Delete
|
|
888
|
+
export declare const billingModuleMutationKeys: {
|
|
889
|
+
/** All billingModule mutation keys */ readonly all: readonly ["mutation", "billingmodule"];
|
|
890
|
+
/** Create billingModule mutation key */ readonly create: () => readonly ["mutation", "billingmodule", "create"];
|
|
891
|
+
/** Update billingModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "billingmodule", "update", string | number];
|
|
892
|
+
/** Delete billingModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "billingmodule", "delete", string | number];
|
|
881
893
|
};
|
|
882
894
|
export declare const billingProviderModuleMutationKeys: {
|
|
883
895
|
/** All billingProviderModule mutation keys */ readonly all: readonly ["mutation", "billingprovidermodule"];
|
|
@@ -908,38 +920,30 @@ export declare const customMutationKeys: {
|
|
|
908
920
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
909
921
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
910
922
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
911
|
-
/** Mutation key for freezeObjects */ readonly freezeObjects: (identifier?: string) => readonly ["mutation", "freezeObjects", string] | readonly ["mutation", "freezeObjects"];
|
|
912
|
-
/** Mutation key for initEmptyRepo */ readonly initEmptyRepo: (identifier?: string) => readonly ["mutation", "initEmptyRepo", string] | readonly ["mutation", "initEmptyRepo"];
|
|
913
923
|
/** Mutation key for constructBlueprint */ readonly constructBlueprint: (identifier?: string) => readonly ["mutation", "constructBlueprint", string] | readonly ["mutation", "constructBlueprint"];
|
|
914
924
|
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
915
925
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
916
|
-
/** Mutation key for removeNodeAtPath */ readonly removeNodeAtPath: (identifier?: string) => readonly ["mutation", "removeNodeAtPath", string] | readonly ["mutation", "removeNodeAtPath"];
|
|
917
|
-
/** Mutation key for copyTemplateToBlueprint */ readonly copyTemplateToBlueprint: (identifier?: string) => readonly ["mutation", "copyTemplateToBlueprint", string] | readonly ["mutation", "copyTemplateToBlueprint"];
|
|
918
|
-
/** Mutation key for provisionSpatialRelation */ readonly provisionSpatialRelation: (identifier?: string) => readonly ["mutation", "provisionSpatialRelation", string] | readonly ["mutation", "provisionSpatialRelation"];
|
|
919
|
-
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
920
|
-
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
921
926
|
/** Mutation key for provisionCheckConstraint */ readonly provisionCheckConstraint: (identifier?: string) => readonly ["mutation", "provisionCheckConstraint", string] | readonly ["mutation", "provisionCheckConstraint"];
|
|
922
927
|
/** Mutation key for provisionUniqueConstraint */ readonly provisionUniqueConstraint: (identifier?: string) => readonly ["mutation", "provisionUniqueConstraint", string] | readonly ["mutation", "provisionUniqueConstraint"];
|
|
923
928
|
/** Mutation key for provisionFullTextSearch */ readonly provisionFullTextSearch: (identifier?: string) => readonly ["mutation", "provisionFullTextSearch", string] | readonly ["mutation", "provisionFullTextSearch"];
|
|
924
929
|
/** Mutation key for provisionIndex */ readonly provisionIndex: (identifier?: string) => readonly ["mutation", "provisionIndex", string] | readonly ["mutation", "provisionIndex"];
|
|
925
|
-
/** Mutation key for
|
|
926
|
-
/** Mutation key for
|
|
927
|
-
/** Mutation key for
|
|
928
|
-
/** Mutation key for
|
|
929
|
-
/** Mutation key for
|
|
930
|
-
/** Mutation key for
|
|
930
|
+
/** Mutation key for copyTemplateToBlueprint */ readonly copyTemplateToBlueprint: (identifier?: string) => readonly ["mutation", "copyTemplateToBlueprint", string] | readonly ["mutation", "copyTemplateToBlueprint"];
|
|
931
|
+
/** Mutation key for provisionSpatialRelation */ readonly provisionSpatialRelation: (identifier?: string) => readonly ["mutation", "provisionSpatialRelation", string] | readonly ["mutation", "provisionSpatialRelation"];
|
|
932
|
+
/** Mutation key for signInCrossOrigin */ readonly signInCrossOrigin: (identifier?: string) => readonly ["mutation", "signInCrossOrigin", string] | readonly ["mutation", "signInCrossOrigin"];
|
|
933
|
+
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
934
|
+
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
935
|
+
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
931
936
|
/** Mutation key for provisionRelation */ readonly provisionRelation: (identifier?: string) => readonly ["mutation", "provisionRelation", string] | readonly ["mutation", "provisionRelation"];
|
|
937
|
+
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
932
938
|
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
933
|
-
/** Mutation key for
|
|
939
|
+
/** Mutation key for provisionDatabaseWithUser */ readonly provisionDatabaseWithUser: (identifier?: string) => readonly ["mutation", "provisionDatabaseWithUser", string] | readonly ["mutation", "provisionDatabaseWithUser"];
|
|
934
940
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
935
941
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
936
942
|
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
937
|
-
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
938
|
-
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
939
|
-
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
940
943
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
941
|
-
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
942
944
|
/** Mutation key for provisionTable */ readonly provisionTable: (identifier?: string) => readonly ["mutation", "provisionTable", string] | readonly ["mutation", "provisionTable"];
|
|
945
|
+
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
946
|
+
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
943
947
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
944
948
|
};
|
|
945
949
|
/**
|
|
@@ -977,12 +981,6 @@ export declare const mutationKeys: {
|
|
|
977
981
|
/** Update orgGetSubordinatesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orggetsubordinatesrecord", "update", string | number];
|
|
978
982
|
/** Delete orgGetSubordinatesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orggetsubordinatesrecord", "delete", string | number];
|
|
979
983
|
};
|
|
980
|
-
readonly getAllRecord: {
|
|
981
|
-
/** All getAllRecord mutation keys */ readonly all: readonly ["mutation", "getallrecord"];
|
|
982
|
-
/** Create getAllRecord mutation key */ readonly create: () => readonly ["mutation", "getallrecord", "create"];
|
|
983
|
-
/** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
|
|
984
|
-
/** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
|
|
985
|
-
};
|
|
986
984
|
readonly appPermission: {
|
|
987
985
|
/** All appPermission mutation keys */ readonly all: readonly ["mutation", "apppermission"];
|
|
988
986
|
/** Create appPermission mutation key */ readonly create: () => readonly ["mutation", "apppermission", "create"];
|
|
@@ -995,12 +993,6 @@ export declare const mutationKeys: {
|
|
|
995
993
|
/** Update orgPermission mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgpermission", "update", string | number];
|
|
996
994
|
/** Delete orgPermission mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgpermission", "delete", string | number];
|
|
997
995
|
};
|
|
998
|
-
readonly object: {
|
|
999
|
-
/** All object mutation keys */ readonly all: readonly ["mutation", "object"];
|
|
1000
|
-
/** Create object mutation key */ readonly create: () => readonly ["mutation", "object", "create"];
|
|
1001
|
-
/** Update object mutation key */ readonly update: (id: string | number) => readonly ["mutation", "object", "update", string | number];
|
|
1002
|
-
/** Delete object mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "object", "delete", string | number];
|
|
1003
|
-
};
|
|
1004
996
|
readonly database: {
|
|
1005
997
|
/** All database mutation keys */ readonly all: readonly ["mutation", "database"];
|
|
1006
998
|
/** Create database mutation key */ readonly create: () => readonly ["mutation", "database", "create"];
|
|
@@ -1145,6 +1137,12 @@ export declare const mutationKeys: {
|
|
|
1145
1137
|
/** Update realtimeModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "realtimemodule", "update", string | number];
|
|
1146
1138
|
/** Delete realtimeModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "realtimemodule", "delete", string | number];
|
|
1147
1139
|
};
|
|
1140
|
+
readonly configSecretsOrgModule: {
|
|
1141
|
+
/** All configSecretsOrgModule mutation keys */ readonly all: readonly ["mutation", "configsecretsorgmodule"];
|
|
1142
|
+
/** Create configSecretsOrgModule mutation key */ readonly create: () => readonly ["mutation", "configsecretsorgmodule", "create"];
|
|
1143
|
+
/** Update configSecretsOrgModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "configsecretsorgmodule", "update", string | number];
|
|
1144
|
+
/** Delete configSecretsOrgModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "configsecretsorgmodule", "delete", string | number];
|
|
1145
|
+
};
|
|
1148
1146
|
readonly schemaGrant: {
|
|
1149
1147
|
/** All schemaGrant mutation keys */ readonly all: readonly ["mutation", "schemagrant"];
|
|
1150
1148
|
/** Create schemaGrant mutation key */ readonly create: () => readonly ["mutation", "schemagrant", "create"];
|
|
@@ -1211,24 +1209,36 @@ export declare const mutationKeys: {
|
|
|
1211
1209
|
/** Update corsSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "corssetting", "update", string | number];
|
|
1212
1210
|
/** Delete corsSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "corssetting", "delete", string | number];
|
|
1213
1211
|
};
|
|
1212
|
+
readonly merkleStoreModule: {
|
|
1213
|
+
/** All merkleStoreModule mutation keys */ readonly all: readonly ["mutation", "merklestoremodule"];
|
|
1214
|
+
/** Create merkleStoreModule mutation key */ readonly create: () => readonly ["mutation", "merklestoremodule", "create"];
|
|
1215
|
+
/** Update merkleStoreModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "merklestoremodule", "update", string | number];
|
|
1216
|
+
/** Delete merkleStoreModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "merklestoremodule", "delete", string | number];
|
|
1217
|
+
};
|
|
1218
|
+
readonly graphModule: {
|
|
1219
|
+
/** All graphModule mutation keys */ readonly all: readonly ["mutation", "graphmodule"];
|
|
1220
|
+
/** Create graphModule mutation key */ readonly create: () => readonly ["mutation", "graphmodule", "create"];
|
|
1221
|
+
/** Update graphModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "graphmodule", "update", string | number];
|
|
1222
|
+
/** Delete graphModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "graphmodule", "delete", string | number];
|
|
1223
|
+
};
|
|
1214
1224
|
readonly triggerFunction: {
|
|
1215
1225
|
/** All triggerFunction mutation keys */ readonly all: readonly ["mutation", "triggerfunction"];
|
|
1216
1226
|
/** Create triggerFunction mutation key */ readonly create: () => readonly ["mutation", "triggerfunction", "create"];
|
|
1217
1227
|
/** Update triggerFunction mutation key */ readonly update: (id: string | number) => readonly ["mutation", "triggerfunction", "update", string | number];
|
|
1218
1228
|
/** Delete triggerFunction mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "triggerfunction", "delete", string | number];
|
|
1219
1229
|
};
|
|
1220
|
-
readonly databaseTransfer: {
|
|
1221
|
-
/** All databaseTransfer mutation keys */ readonly all: readonly ["mutation", "databasetransfer"];
|
|
1222
|
-
/** Create databaseTransfer mutation key */ readonly create: () => readonly ["mutation", "databasetransfer", "create"];
|
|
1223
|
-
/** Update databaseTransfer mutation key */ readonly update: (id: string | number) => readonly ["mutation", "databasetransfer", "update", string | number];
|
|
1224
|
-
/** Delete databaseTransfer mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "databasetransfer", "delete", string | number];
|
|
1225
|
-
};
|
|
1226
1230
|
readonly partition: {
|
|
1227
1231
|
/** All partition mutation keys */ readonly all: readonly ["mutation", "partition"];
|
|
1228
1232
|
/** Create partition mutation key */ readonly create: () => readonly ["mutation", "partition", "create"];
|
|
1229
1233
|
/** Update partition mutation key */ readonly update: (id: string | number) => readonly ["mutation", "partition", "update", string | number];
|
|
1230
1234
|
/** Delete partition mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "partition", "delete", string | number];
|
|
1231
1235
|
};
|
|
1236
|
+
readonly databaseTransfer: {
|
|
1237
|
+
/** All databaseTransfer mutation keys */ readonly all: readonly ["mutation", "databasetransfer"];
|
|
1238
|
+
/** Create databaseTransfer mutation key */ readonly create: () => readonly ["mutation", "databasetransfer", "create"];
|
|
1239
|
+
/** Update databaseTransfer mutation key */ readonly update: (id: string | number) => readonly ["mutation", "databasetransfer", "update", string | number];
|
|
1240
|
+
/** Delete databaseTransfer mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "databasetransfer", "delete", string | number];
|
|
1241
|
+
};
|
|
1232
1242
|
readonly api: {
|
|
1233
1243
|
/** All api mutation keys */ readonly all: readonly ["mutation", "api"];
|
|
1234
1244
|
/** Create api mutation key */ readonly create: () => readonly ["mutation", "api", "create"];
|
|
@@ -1289,11 +1299,11 @@ export declare const mutationKeys: {
|
|
|
1289
1299
|
/** Update emailsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "emailsmodule", "update", string | number];
|
|
1290
1300
|
/** Delete emailsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "emailsmodule", "delete", string | number];
|
|
1291
1301
|
};
|
|
1292
|
-
readonly
|
|
1293
|
-
/** All
|
|
1294
|
-
/** Create
|
|
1295
|
-
/** Update
|
|
1296
|
-
/** Delete
|
|
1302
|
+
readonly configSecretsUserModule: {
|
|
1303
|
+
/** All configSecretsUserModule mutation keys */ readonly all: readonly ["mutation", "configsecretsusermodule"];
|
|
1304
|
+
/** Create configSecretsUserModule mutation key */ readonly create: () => readonly ["mutation", "configsecretsusermodule", "create"];
|
|
1305
|
+
/** Update configSecretsUserModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "configsecretsusermodule", "update", string | number];
|
|
1306
|
+
/** Delete configSecretsUserModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "configsecretsusermodule", "delete", string | number];
|
|
1297
1307
|
};
|
|
1298
1308
|
readonly invitesModule: {
|
|
1299
1309
|
/** All invitesModule mutation keys */ readonly all: readonly ["mutation", "invitesmodule"];
|
|
@@ -1415,6 +1425,54 @@ export declare const mutationKeys: {
|
|
|
1415
1425
|
/** Update notificationsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "notificationsmodule", "update", string | number];
|
|
1416
1426
|
/** Delete notificationsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "notificationsmodule", "delete", string | number];
|
|
1417
1427
|
};
|
|
1428
|
+
readonly inferenceLogModule: {
|
|
1429
|
+
/** All inferenceLogModule mutation keys */ readonly all: readonly ["mutation", "inferencelogmodule"];
|
|
1430
|
+
/** Create inferenceLogModule mutation key */ readonly create: () => readonly ["mutation", "inferencelogmodule", "create"];
|
|
1431
|
+
/** Update inferenceLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "inferencelogmodule", "update", string | number];
|
|
1432
|
+
/** Delete inferenceLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "inferencelogmodule", "delete", string | number];
|
|
1433
|
+
};
|
|
1434
|
+
readonly computeLogModule: {
|
|
1435
|
+
/** All computeLogModule mutation keys */ readonly all: readonly ["mutation", "computelogmodule"];
|
|
1436
|
+
/** Create computeLogModule mutation key */ readonly create: () => readonly ["mutation", "computelogmodule", "create"];
|
|
1437
|
+
/** Update computeLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "computelogmodule", "update", string | number];
|
|
1438
|
+
/** Delete computeLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "computelogmodule", "delete", string | number];
|
|
1439
|
+
};
|
|
1440
|
+
readonly transferLogModule: {
|
|
1441
|
+
/** All transferLogModule mutation keys */ readonly all: readonly ["mutation", "transferlogmodule"];
|
|
1442
|
+
/** Create transferLogModule mutation key */ readonly create: () => readonly ["mutation", "transferlogmodule", "create"];
|
|
1443
|
+
/** Update transferLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "transferlogmodule", "update", string | number];
|
|
1444
|
+
/** Delete transferLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "transferlogmodule", "delete", string | number];
|
|
1445
|
+
};
|
|
1446
|
+
readonly storageLogModule: {
|
|
1447
|
+
/** All storageLogModule mutation keys */ readonly all: readonly ["mutation", "storagelogmodule"];
|
|
1448
|
+
/** Create storageLogModule mutation key */ readonly create: () => readonly ["mutation", "storagelogmodule", "create"];
|
|
1449
|
+
/** Update storageLogModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "storagelogmodule", "update", string | number];
|
|
1450
|
+
/** Delete storageLogModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "storagelogmodule", "delete", string | number];
|
|
1451
|
+
};
|
|
1452
|
+
readonly dbUsageModule: {
|
|
1453
|
+
/** All dbUsageModule mutation keys */ readonly all: readonly ["mutation", "dbusagemodule"];
|
|
1454
|
+
/** Create dbUsageModule mutation key */ readonly create: () => readonly ["mutation", "dbusagemodule", "create"];
|
|
1455
|
+
/** Update dbUsageModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "dbusagemodule", "update", string | number];
|
|
1456
|
+
/** Delete dbUsageModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "dbusagemodule", "delete", string | number];
|
|
1457
|
+
};
|
|
1458
|
+
readonly agentModule: {
|
|
1459
|
+
/** All agentModule mutation keys */ readonly all: readonly ["mutation", "agentmodule"];
|
|
1460
|
+
/** Create agentModule mutation key */ readonly create: () => readonly ["mutation", "agentmodule", "create"];
|
|
1461
|
+
/** Update agentModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentmodule", "update", string | number];
|
|
1462
|
+
/** Delete agentModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentmodule", "delete", string | number];
|
|
1463
|
+
};
|
|
1464
|
+
readonly namespaceModule: {
|
|
1465
|
+
/** All namespaceModule mutation keys */ readonly all: readonly ["mutation", "namespacemodule"];
|
|
1466
|
+
/** Create namespaceModule mutation key */ readonly create: () => readonly ["mutation", "namespacemodule", "create"];
|
|
1467
|
+
/** Update namespaceModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "namespacemodule", "update", string | number];
|
|
1468
|
+
/** Delete namespaceModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "namespacemodule", "delete", string | number];
|
|
1469
|
+
};
|
|
1470
|
+
readonly functionModule: {
|
|
1471
|
+
/** All functionModule mutation keys */ readonly all: readonly ["mutation", "functionmodule"];
|
|
1472
|
+
/** Create functionModule mutation key */ readonly create: () => readonly ["mutation", "functionmodule", "create"];
|
|
1473
|
+
/** Update functionModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functionmodule", "update", string | number];
|
|
1474
|
+
/** Delete functionModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functionmodule", "delete", string | number];
|
|
1475
|
+
};
|
|
1418
1476
|
readonly databaseProvisionModule: {
|
|
1419
1477
|
/** All databaseProvisionModule mutation keys */ readonly all: readonly ["mutation", "databaseprovisionmodule"];
|
|
1420
1478
|
/** Create databaseProvisionModule mutation key */ readonly create: () => readonly ["mutation", "databaseprovisionmodule", "create"];
|
|
@@ -1589,35 +1647,11 @@ export declare const mutationKeys: {
|
|
|
1589
1647
|
/** Update orgClaimedInvite mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "update", string | number];
|
|
1590
1648
|
/** Delete orgClaimedInvite mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgclaimedinvite", "delete", string | number];
|
|
1591
1649
|
};
|
|
1592
|
-
readonly
|
|
1593
|
-
/** All
|
|
1594
|
-
/** Create
|
|
1595
|
-
/** Update
|
|
1596
|
-
/** Delete
|
|
1597
|
-
};
|
|
1598
|
-
readonly agentThread: {
|
|
1599
|
-
/** All agentThread mutation keys */ readonly all: readonly ["mutation", "agentthread"];
|
|
1600
|
-
/** Create agentThread mutation key */ readonly create: () => readonly ["mutation", "agentthread", "create"];
|
|
1601
|
-
/** Update agentThread mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentthread", "update", string | number];
|
|
1602
|
-
/** Delete agentThread mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentthread", "delete", string | number];
|
|
1603
|
-
};
|
|
1604
|
-
readonly agentMessage: {
|
|
1605
|
-
/** All agentMessage mutation keys */ readonly all: readonly ["mutation", "agentmessage"];
|
|
1606
|
-
/** Create agentMessage mutation key */ readonly create: () => readonly ["mutation", "agentmessage", "create"];
|
|
1607
|
-
/** Update agentMessage mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agentmessage", "update", string | number];
|
|
1608
|
-
/** Delete agentMessage mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agentmessage", "delete", string | number];
|
|
1609
|
-
};
|
|
1610
|
-
readonly agentTask: {
|
|
1611
|
-
/** All agentTask mutation keys */ readonly all: readonly ["mutation", "agenttask"];
|
|
1612
|
-
/** Create agentTask mutation key */ readonly create: () => readonly ["mutation", "agenttask", "create"];
|
|
1613
|
-
/** Update agentTask mutation key */ readonly update: (id: string | number) => readonly ["mutation", "agenttask", "update", string | number];
|
|
1614
|
-
/** Delete agentTask mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "agenttask", "delete", string | number];
|
|
1615
|
-
};
|
|
1616
|
-
readonly roleType: {
|
|
1617
|
-
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
1618
|
-
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
1619
|
-
/** Update roleType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "roletype", "update", string | number];
|
|
1620
|
-
/** Delete roleType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "roletype", "delete", string | number];
|
|
1650
|
+
readonly auditLogAuth: {
|
|
1651
|
+
/** All auditLogAuth mutation keys */ readonly all: readonly ["mutation", "auditlogauth"];
|
|
1652
|
+
/** Create auditLogAuth mutation key */ readonly create: () => readonly ["mutation", "auditlogauth", "create"];
|
|
1653
|
+
/** Update auditLogAuth mutation key */ readonly update: (id: string | number) => readonly ["mutation", "auditlogauth", "update", string | number];
|
|
1654
|
+
/** Delete auditLogAuth mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "auditlogauth", "delete", string | number];
|
|
1621
1655
|
};
|
|
1622
1656
|
readonly identityProvider: {
|
|
1623
1657
|
/** All identityProvider mutation keys */ readonly all: readonly ["mutation", "identityprovider"];
|
|
@@ -1625,29 +1659,47 @@ export declare const mutationKeys: {
|
|
|
1625
1659
|
/** Update identityProvider mutation key */ readonly update: (id: string | number) => readonly ["mutation", "identityprovider", "update", string | number];
|
|
1626
1660
|
/** Delete identityProvider mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "identityprovider", "delete", string | number];
|
|
1627
1661
|
};
|
|
1628
|
-
readonly ref: {
|
|
1629
|
-
/** All ref mutation keys */ readonly all: readonly ["mutation", "ref"];
|
|
1630
|
-
/** Create ref mutation key */ readonly create: () => readonly ["mutation", "ref", "create"];
|
|
1631
|
-
/** Update ref mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ref", "update", string | number];
|
|
1632
|
-
/** Delete ref mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ref", "delete", string | number];
|
|
1633
|
-
};
|
|
1634
|
-
readonly store: {
|
|
1635
|
-
/** All store mutation keys */ readonly all: readonly ["mutation", "store"];
|
|
1636
|
-
/** Create store mutation key */ readonly create: () => readonly ["mutation", "store", "create"];
|
|
1637
|
-
/** Update store mutation key */ readonly update: (id: string | number) => readonly ["mutation", "store", "update", string | number];
|
|
1638
|
-
/** Delete store mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "store", "delete", string | number];
|
|
1639
|
-
};
|
|
1640
1662
|
readonly appPermissionDefault: {
|
|
1641
1663
|
/** All appPermissionDefault mutation keys */ readonly all: readonly ["mutation", "apppermissiondefault"];
|
|
1642
1664
|
/** Create appPermissionDefault mutation key */ readonly create: () => readonly ["mutation", "apppermissiondefault", "create"];
|
|
1643
1665
|
/** Update appPermissionDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "apppermissiondefault", "update", string | number];
|
|
1644
1666
|
/** Delete appPermissionDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "apppermissiondefault", "delete", string | number];
|
|
1645
1667
|
};
|
|
1646
|
-
readonly
|
|
1647
|
-
/** All
|
|
1648
|
-
/** Create
|
|
1649
|
-
/** Update
|
|
1650
|
-
/** Delete
|
|
1668
|
+
readonly roleType: {
|
|
1669
|
+
/** All roleType mutation keys */ readonly all: readonly ["mutation", "roletype"];
|
|
1670
|
+
/** Create roleType mutation key */ readonly create: () => readonly ["mutation", "roletype", "create"];
|
|
1671
|
+
/** Update roleType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "roletype", "update", string | number];
|
|
1672
|
+
/** Delete roleType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "roletype", "delete", string | number];
|
|
1673
|
+
};
|
|
1674
|
+
readonly migrateFile: {
|
|
1675
|
+
/** All migrateFile mutation keys */ readonly all: readonly ["mutation", "migratefile"];
|
|
1676
|
+
/** Create migrateFile mutation key */ readonly create: () => readonly ["mutation", "migratefile", "create"];
|
|
1677
|
+
/** Update migrateFile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "migratefile", "update", string | number];
|
|
1678
|
+
/** Delete migrateFile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "migratefile", "delete", string | number];
|
|
1679
|
+
};
|
|
1680
|
+
readonly devicesModule: {
|
|
1681
|
+
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
1682
|
+
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
1683
|
+
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
1684
|
+
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
1685
|
+
};
|
|
1686
|
+
readonly appMembershipDefault: {
|
|
1687
|
+
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
1688
|
+
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
1689
|
+
/** Update appMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembershipdefault", "update", string | number];
|
|
1690
|
+
/** Delete appMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembershipdefault", "delete", string | number];
|
|
1691
|
+
};
|
|
1692
|
+
readonly orgMembershipDefault: {
|
|
1693
|
+
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
1694
|
+
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
1695
|
+
/** Update orgMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "update", string | number];
|
|
1696
|
+
/** Delete orgMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "delete", string | number];
|
|
1697
|
+
};
|
|
1698
|
+
readonly nodeTypeRegistry: {
|
|
1699
|
+
/** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
|
|
1700
|
+
/** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
|
|
1701
|
+
/** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
|
|
1702
|
+
/** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
|
|
1651
1703
|
};
|
|
1652
1704
|
readonly appLimitCapsDefault: {
|
|
1653
1705
|
/** All appLimitCapsDefault mutation keys */ readonly all: readonly ["mutation", "applimitcapsdefault"];
|
|
@@ -1673,29 +1725,11 @@ export declare const mutationKeys: {
|
|
|
1673
1725
|
/** Update orgLimitCap mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitcap", "update", string | number];
|
|
1674
1726
|
/** Delete orgLimitCap mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitcap", "delete", string | number];
|
|
1675
1727
|
};
|
|
1676
|
-
readonly
|
|
1677
|
-
/** All
|
|
1678
|
-
/** Create
|
|
1679
|
-
/** Update
|
|
1680
|
-
/** Delete
|
|
1681
|
-
};
|
|
1682
|
-
readonly migrateFile: {
|
|
1683
|
-
/** All migrateFile mutation keys */ readonly all: readonly ["mutation", "migratefile"];
|
|
1684
|
-
/** Create migrateFile mutation key */ readonly create: () => readonly ["mutation", "migratefile", "create"];
|
|
1685
|
-
/** Update migrateFile mutation key */ readonly update: (id: string | number) => readonly ["mutation", "migratefile", "update", string | number];
|
|
1686
|
-
/** Delete migrateFile mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "migratefile", "delete", string | number];
|
|
1687
|
-
};
|
|
1688
|
-
readonly devicesModule: {
|
|
1689
|
-
/** All devicesModule mutation keys */ readonly all: readonly ["mutation", "devicesmodule"];
|
|
1690
|
-
/** Create devicesModule mutation key */ readonly create: () => readonly ["mutation", "devicesmodule", "create"];
|
|
1691
|
-
/** Update devicesModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "devicesmodule", "update", string | number];
|
|
1692
|
-
/** Delete devicesModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "devicesmodule", "delete", string | number];
|
|
1693
|
-
};
|
|
1694
|
-
readonly nodeTypeRegistry: {
|
|
1695
|
-
/** All nodeTypeRegistry mutation keys */ readonly all: readonly ["mutation", "nodetyperegistry"];
|
|
1696
|
-
/** Create nodeTypeRegistry mutation key */ readonly create: () => readonly ["mutation", "nodetyperegistry", "create"];
|
|
1697
|
-
/** Update nodeTypeRegistry mutation key */ readonly update: (id: string | number) => readonly ["mutation", "nodetyperegistry", "update", string | number];
|
|
1698
|
-
/** Delete nodeTypeRegistry mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "nodetyperegistry", "delete", string | number];
|
|
1728
|
+
readonly userConnectedAccount: {
|
|
1729
|
+
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
1730
|
+
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
1731
|
+
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
1732
|
+
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
1699
1733
|
};
|
|
1700
1734
|
readonly appLimitDefault: {
|
|
1701
1735
|
/** All appLimitDefault mutation keys */ readonly all: readonly ["mutation", "applimitdefault"];
|
|
@@ -1709,24 +1743,18 @@ export declare const mutationKeys: {
|
|
|
1709
1743
|
/** Update orgLimitDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitdefault", "update", string | number];
|
|
1710
1744
|
/** Delete orgLimitDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitdefault", "delete", string | number];
|
|
1711
1745
|
};
|
|
1746
|
+
readonly appLimitCreditCode: {
|
|
1747
|
+
/** All appLimitCreditCode mutation keys */ readonly all: readonly ["mutation", "applimitcreditcode"];
|
|
1748
|
+
/** Create appLimitCreditCode mutation key */ readonly create: () => readonly ["mutation", "applimitcreditcode", "create"];
|
|
1749
|
+
/** Update appLimitCreditCode mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitcreditcode", "update", string | number];
|
|
1750
|
+
/** Delete appLimitCreditCode mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitcreditcode", "delete", string | number];
|
|
1751
|
+
};
|
|
1712
1752
|
readonly appLimitWarning: {
|
|
1713
1753
|
/** All appLimitWarning mutation keys */ readonly all: readonly ["mutation", "applimitwarning"];
|
|
1714
1754
|
/** Create appLimitWarning mutation key */ readonly create: () => readonly ["mutation", "applimitwarning", "create"];
|
|
1715
1755
|
/** Update appLimitWarning mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitwarning", "update", string | number];
|
|
1716
1756
|
/** Delete appLimitWarning mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitwarning", "delete", string | number];
|
|
1717
1757
|
};
|
|
1718
|
-
readonly userConnectedAccount: {
|
|
1719
|
-
/** All userConnectedAccount mutation keys */ readonly all: readonly ["mutation", "userconnectedaccount"];
|
|
1720
|
-
/** Create userConnectedAccount mutation key */ readonly create: () => readonly ["mutation", "userconnectedaccount", "create"];
|
|
1721
|
-
/** Update userConnectedAccount mutation key */ readonly update: (id: string | number) => readonly ["mutation", "userconnectedaccount", "update", string | number];
|
|
1722
|
-
/** Delete userConnectedAccount mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "userconnectedaccount", "delete", string | number];
|
|
1723
|
-
};
|
|
1724
|
-
readonly commit: {
|
|
1725
|
-
/** All commit mutation keys */ readonly all: readonly ["mutation", "commit"];
|
|
1726
|
-
/** Create commit mutation key */ readonly create: () => readonly ["mutation", "commit", "create"];
|
|
1727
|
-
/** Update commit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "commit", "update", string | number];
|
|
1728
|
-
/** Delete commit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "commit", "delete", string | number];
|
|
1729
|
-
};
|
|
1730
1758
|
readonly pubkeySetting: {
|
|
1731
1759
|
/** All pubkeySetting mutation keys */ readonly all: readonly ["mutation", "pubkeysetting"];
|
|
1732
1760
|
/** Create pubkeySetting mutation key */ readonly create: () => readonly ["mutation", "pubkeysetting", "create"];
|
|
@@ -1739,23 +1767,11 @@ export declare const mutationKeys: {
|
|
|
1739
1767
|
/** Update rateLimitsModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "update", string | number];
|
|
1740
1768
|
/** Delete rateLimitsModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "ratelimitsmodule", "delete", string | number];
|
|
1741
1769
|
};
|
|
1742
|
-
readonly
|
|
1743
|
-
/** All
|
|
1744
|
-
/** Create
|
|
1745
|
-
/** Update
|
|
1746
|
-
/** Delete
|
|
1747
|
-
};
|
|
1748
|
-
readonly appMembershipDefault: {
|
|
1749
|
-
/** All appMembershipDefault mutation keys */ readonly all: readonly ["mutation", "appmembershipdefault"];
|
|
1750
|
-
/** Create appMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "appmembershipdefault", "create"];
|
|
1751
|
-
/** Update appMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembershipdefault", "update", string | number];
|
|
1752
|
-
/** Delete appMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembershipdefault", "delete", string | number];
|
|
1753
|
-
};
|
|
1754
|
-
readonly orgMembershipDefault: {
|
|
1755
|
-
/** All orgMembershipDefault mutation keys */ readonly all: readonly ["mutation", "orgmembershipdefault"];
|
|
1756
|
-
/** Create orgMembershipDefault mutation key */ readonly create: () => readonly ["mutation", "orgmembershipdefault", "create"];
|
|
1757
|
-
/** Update orgMembershipDefault mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "update", string | number];
|
|
1758
|
-
/** Delete orgMembershipDefault mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipdefault", "delete", string | number];
|
|
1770
|
+
readonly membershipType: {
|
|
1771
|
+
/** All membershipType mutation keys */ readonly all: readonly ["mutation", "membershiptype"];
|
|
1772
|
+
/** Create membershipType mutation key */ readonly create: () => readonly ["mutation", "membershiptype", "create"];
|
|
1773
|
+
/** Update membershipType mutation key */ readonly update: (id: string | number) => readonly ["mutation", "membershiptype", "update", string | number];
|
|
1774
|
+
/** Delete membershipType mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "membershiptype", "delete", string | number];
|
|
1759
1775
|
};
|
|
1760
1776
|
readonly rlsSetting: {
|
|
1761
1777
|
/** All rlsSetting mutation keys */ readonly all: readonly ["mutation", "rlssetting"];
|
|
@@ -1763,18 +1779,6 @@ export declare const mutationKeys: {
|
|
|
1763
1779
|
/** Update rlsSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "rlssetting", "update", string | number];
|
|
1764
1780
|
/** Delete rlsSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "rlssetting", "delete", string | number];
|
|
1765
1781
|
};
|
|
1766
|
-
readonly appLimitEvent: {
|
|
1767
|
-
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
1768
|
-
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
1769
|
-
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
1770
|
-
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
1771
|
-
};
|
|
1772
|
-
readonly orgLimitEvent: {
|
|
1773
|
-
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
1774
|
-
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
1775
|
-
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
1776
|
-
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
1777
|
-
};
|
|
1778
1782
|
readonly rlsModule: {
|
|
1779
1783
|
/** All rlsModule mutation keys */ readonly all: readonly ["mutation", "rlsmodule"];
|
|
1780
1784
|
/** Create rlsModule mutation key */ readonly create: () => readonly ["mutation", "rlsmodule", "create"];
|
|
@@ -1805,17 +1809,29 @@ export declare const mutationKeys: {
|
|
|
1805
1809
|
/** Update databaseSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "databasesetting", "update", string | number];
|
|
1806
1810
|
/** Delete databaseSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "databasesetting", "delete", string | number];
|
|
1807
1811
|
};
|
|
1808
|
-
readonly
|
|
1809
|
-
/** All
|
|
1810
|
-
/** Create
|
|
1811
|
-
/** Update
|
|
1812
|
-
/** Delete
|
|
1812
|
+
readonly orgMembershipSetting: {
|
|
1813
|
+
/** All orgMembershipSetting mutation keys */ readonly all: readonly ["mutation", "orgmembershipsetting"];
|
|
1814
|
+
/** Create orgMembershipSetting mutation key */ readonly create: () => readonly ["mutation", "orgmembershipsetting", "create"];
|
|
1815
|
+
/** Update orgMembershipSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "update", string | number];
|
|
1816
|
+
/** Delete orgMembershipSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orgmembershipsetting", "delete", string | number];
|
|
1813
1817
|
};
|
|
1814
|
-
readonly
|
|
1815
|
-
/** All
|
|
1816
|
-
/** Create
|
|
1817
|
-
/** Update
|
|
1818
|
-
/** Delete
|
|
1818
|
+
readonly appLimitEvent: {
|
|
1819
|
+
/** All appLimitEvent mutation keys */ readonly all: readonly ["mutation", "applimitevent"];
|
|
1820
|
+
/** Create appLimitEvent mutation key */ readonly create: () => readonly ["mutation", "applimitevent", "create"];
|
|
1821
|
+
/** Update appLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "applimitevent", "update", string | number];
|
|
1822
|
+
/** Delete appLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "applimitevent", "delete", string | number];
|
|
1823
|
+
};
|
|
1824
|
+
readonly orgLimitEvent: {
|
|
1825
|
+
/** All orgLimitEvent mutation keys */ readonly all: readonly ["mutation", "orglimitevent"];
|
|
1826
|
+
/** Create orgLimitEvent mutation key */ readonly create: () => readonly ["mutation", "orglimitevent", "create"];
|
|
1827
|
+
/** Update orgLimitEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "orglimitevent", "update", string | number];
|
|
1828
|
+
/** Delete orgLimitEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "orglimitevent", "delete", string | number];
|
|
1829
|
+
};
|
|
1830
|
+
readonly appMembership: {
|
|
1831
|
+
/** All appMembership mutation keys */ readonly all: readonly ["mutation", "appmembership"];
|
|
1832
|
+
/** Create appMembership mutation key */ readonly create: () => readonly ["mutation", "appmembership", "create"];
|
|
1833
|
+
/** Update appMembership mutation key */ readonly update: (id: string | number) => readonly ["mutation", "appmembership", "update", string | number];
|
|
1834
|
+
/** Delete appMembership mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "appmembership", "delete", string | number];
|
|
1819
1835
|
};
|
|
1820
1836
|
readonly user: {
|
|
1821
1837
|
/** All user mutation keys */ readonly all: readonly ["mutation", "user"];
|
|
@@ -1823,11 +1839,11 @@ export declare const mutationKeys: {
|
|
|
1823
1839
|
/** Update user mutation key */ readonly update: (id: string | number) => readonly ["mutation", "user", "update", string | number];
|
|
1824
1840
|
/** Delete user mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "user", "delete", string | number];
|
|
1825
1841
|
};
|
|
1826
|
-
readonly
|
|
1827
|
-
/** All
|
|
1828
|
-
/** Create
|
|
1829
|
-
/** Update
|
|
1830
|
-
/** Delete
|
|
1842
|
+
readonly astMigration: {
|
|
1843
|
+
/** All astMigration mutation keys */ readonly all: readonly ["mutation", "astmigration"];
|
|
1844
|
+
/** Create astMigration mutation key */ readonly create: () => readonly ["mutation", "astmigration", "create"];
|
|
1845
|
+
/** Update astMigration mutation key */ readonly update: (id: string | number) => readonly ["mutation", "astmigration", "update", string | number];
|
|
1846
|
+
/** Delete astMigration mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "astmigration", "delete", string | number];
|
|
1831
1847
|
};
|
|
1832
1848
|
readonly webauthnSetting: {
|
|
1833
1849
|
/** All webauthnSetting mutation keys */ readonly all: readonly ["mutation", "webauthnsetting"];
|
|
@@ -1835,11 +1851,11 @@ export declare const mutationKeys: {
|
|
|
1835
1851
|
/** Update webauthnSetting mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webauthnsetting", "update", string | number];
|
|
1836
1852
|
/** Delete webauthnSetting mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webauthnsetting", "delete", string | number];
|
|
1837
1853
|
};
|
|
1838
|
-
readonly
|
|
1839
|
-
/** All
|
|
1840
|
-
/** Create
|
|
1841
|
-
/** Update
|
|
1842
|
-
/** Delete
|
|
1854
|
+
readonly billingModule: {
|
|
1855
|
+
/** All billingModule mutation keys */ readonly all: readonly ["mutation", "billingmodule"];
|
|
1856
|
+
/** Create billingModule mutation key */ readonly create: () => readonly ["mutation", "billingmodule", "create"];
|
|
1857
|
+
/** Update billingModule mutation key */ readonly update: (id: string | number) => readonly ["mutation", "billingmodule", "update", string | number];
|
|
1858
|
+
/** Delete billingModule mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "billingmodule", "delete", string | number];
|
|
1843
1859
|
};
|
|
1844
1860
|
readonly billingProviderModule: {
|
|
1845
1861
|
/** All billingProviderModule mutation keys */ readonly all: readonly ["mutation", "billingprovidermodule"];
|
|
@@ -1870,38 +1886,30 @@ export declare const mutationKeys: {
|
|
|
1870
1886
|
/** Mutation key for confirmDeleteAccount */ readonly confirmDeleteAccount: (identifier?: string) => readonly ["mutation", "confirmDeleteAccount", string] | readonly ["mutation", "confirmDeleteAccount"];
|
|
1871
1887
|
/** Mutation key for setPassword */ readonly setPassword: (identifier?: string) => readonly ["mutation", "setPassword", string] | readonly ["mutation", "setPassword"];
|
|
1872
1888
|
/** Mutation key for verifyEmail */ readonly verifyEmail: (identifier?: string) => readonly ["mutation", "verifyEmail", string] | readonly ["mutation", "verifyEmail"];
|
|
1873
|
-
/** Mutation key for freezeObjects */ readonly freezeObjects: (identifier?: string) => readonly ["mutation", "freezeObjects", string] | readonly ["mutation", "freezeObjects"];
|
|
1874
|
-
/** Mutation key for initEmptyRepo */ readonly initEmptyRepo: (identifier?: string) => readonly ["mutation", "initEmptyRepo", string] | readonly ["mutation", "initEmptyRepo"];
|
|
1875
1889
|
/** Mutation key for constructBlueprint */ readonly constructBlueprint: (identifier?: string) => readonly ["mutation", "constructBlueprint", string] | readonly ["mutation", "constructBlueprint"];
|
|
1876
1890
|
/** Mutation key for provisionNewUser */ readonly provisionNewUser: (identifier?: string) => readonly ["mutation", "provisionNewUser", string] | readonly ["mutation", "provisionNewUser"];
|
|
1877
1891
|
/** Mutation key for resetPassword */ readonly resetPassword: (identifier?: string) => readonly ["mutation", "resetPassword", string] | readonly ["mutation", "resetPassword"];
|
|
1878
|
-
/** Mutation key for removeNodeAtPath */ readonly removeNodeAtPath: (identifier?: string) => readonly ["mutation", "removeNodeAtPath", string] | readonly ["mutation", "removeNodeAtPath"];
|
|
1879
|
-
/** Mutation key for copyTemplateToBlueprint */ readonly copyTemplateToBlueprint: (identifier?: string) => readonly ["mutation", "copyTemplateToBlueprint", string] | readonly ["mutation", "copyTemplateToBlueprint"];
|
|
1880
|
-
/** Mutation key for provisionSpatialRelation */ readonly provisionSpatialRelation: (identifier?: string) => readonly ["mutation", "provisionSpatialRelation", string] | readonly ["mutation", "provisionSpatialRelation"];
|
|
1881
|
-
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
1882
|
-
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
1883
1892
|
/** Mutation key for provisionCheckConstraint */ readonly provisionCheckConstraint: (identifier?: string) => readonly ["mutation", "provisionCheckConstraint", string] | readonly ["mutation", "provisionCheckConstraint"];
|
|
1884
1893
|
/** Mutation key for provisionUniqueConstraint */ readonly provisionUniqueConstraint: (identifier?: string) => readonly ["mutation", "provisionUniqueConstraint", string] | readonly ["mutation", "provisionUniqueConstraint"];
|
|
1885
1894
|
/** Mutation key for provisionFullTextSearch */ readonly provisionFullTextSearch: (identifier?: string) => readonly ["mutation", "provisionFullTextSearch", string] | readonly ["mutation", "provisionFullTextSearch"];
|
|
1886
1895
|
/** Mutation key for provisionIndex */ readonly provisionIndex: (identifier?: string) => readonly ["mutation", "provisionIndex", string] | readonly ["mutation", "provisionIndex"];
|
|
1887
|
-
/** Mutation key for
|
|
1888
|
-
/** Mutation key for
|
|
1889
|
-
/** Mutation key for
|
|
1890
|
-
/** Mutation key for
|
|
1891
|
-
/** Mutation key for
|
|
1892
|
-
/** Mutation key for
|
|
1896
|
+
/** Mutation key for copyTemplateToBlueprint */ readonly copyTemplateToBlueprint: (identifier?: string) => readonly ["mutation", "copyTemplateToBlueprint", string] | readonly ["mutation", "copyTemplateToBlueprint"];
|
|
1897
|
+
/** Mutation key for provisionSpatialRelation */ readonly provisionSpatialRelation: (identifier?: string) => readonly ["mutation", "provisionSpatialRelation", string] | readonly ["mutation", "provisionSpatialRelation"];
|
|
1898
|
+
/** Mutation key for signInCrossOrigin */ readonly signInCrossOrigin: (identifier?: string) => readonly ["mutation", "signInCrossOrigin", string] | readonly ["mutation", "signInCrossOrigin"];
|
|
1899
|
+
/** Mutation key for bootstrapUser */ readonly bootstrapUser: (identifier?: string) => readonly ["mutation", "bootstrapUser", string] | readonly ["mutation", "bootstrapUser"];
|
|
1900
|
+
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
1901
|
+
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
1893
1902
|
/** Mutation key for provisionRelation */ readonly provisionRelation: (identifier?: string) => readonly ["mutation", "provisionRelation", string] | readonly ["mutation", "provisionRelation"];
|
|
1903
|
+
/** Mutation key for setFieldOrder */ readonly setFieldOrder: (identifier?: string) => readonly ["mutation", "setFieldOrder", string] | readonly ["mutation", "setFieldOrder"];
|
|
1894
1904
|
/** Mutation key for applyRls */ readonly applyRls: (identifier?: string) => readonly ["mutation", "applyRls", string] | readonly ["mutation", "applyRls"];
|
|
1895
|
-
/** Mutation key for
|
|
1905
|
+
/** Mutation key for provisionDatabaseWithUser */ readonly provisionDatabaseWithUser: (identifier?: string) => readonly ["mutation", "provisionDatabaseWithUser", string] | readonly ["mutation", "provisionDatabaseWithUser"];
|
|
1896
1906
|
/** Mutation key for createUserDatabase */ readonly createUserDatabase: (identifier?: string) => readonly ["mutation", "createUserDatabase", string] | readonly ["mutation", "createUserDatabase"];
|
|
1897
1907
|
/** Mutation key for extendTokenExpires */ readonly extendTokenExpires: (identifier?: string) => readonly ["mutation", "extendTokenExpires", string] | readonly ["mutation", "extendTokenExpires"];
|
|
1898
1908
|
/** Mutation key for createApiKey */ readonly createApiKey: (identifier?: string) => readonly ["mutation", "createApiKey", string] | readonly ["mutation", "createApiKey"];
|
|
1899
|
-
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
1900
|
-
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
1901
|
-
/** Mutation key for signUp */ readonly signUp: (identifier?: string) => readonly ["mutation", "signUp", string] | readonly ["mutation", "signUp"];
|
|
1902
1909
|
/** Mutation key for requestCrossOriginToken */ readonly requestCrossOriginToken: (identifier?: string) => readonly ["mutation", "requestCrossOriginToken", string] | readonly ["mutation", "requestCrossOriginToken"];
|
|
1903
|
-
/** Mutation key for signIn */ readonly signIn: (identifier?: string) => readonly ["mutation", "signIn", string] | readonly ["mutation", "signIn"];
|
|
1904
1910
|
/** Mutation key for provisionTable */ readonly provisionTable: (identifier?: string) => readonly ["mutation", "provisionTable", string] | readonly ["mutation", "provisionTable"];
|
|
1911
|
+
/** Mutation key for sendVerificationEmail */ readonly sendVerificationEmail: (identifier?: string) => readonly ["mutation", "sendVerificationEmail", string] | readonly ["mutation", "sendVerificationEmail"];
|
|
1912
|
+
/** Mutation key for forgotPassword */ readonly forgotPassword: (identifier?: string) => readonly ["mutation", "forgotPassword", string] | readonly ["mutation", "forgotPassword"];
|
|
1905
1913
|
/** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
|
|
1906
1914
|
};
|
|
1907
1915
|
};
|