@constructive-io/react 0.21.3 → 0.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- 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
package/public/types.d.ts
CHANGED
|
@@ -20,10 +20,6 @@ export interface OrgGetSubordinatesRecord {
|
|
|
20
20
|
userId: string | null;
|
|
21
21
|
depth: number | null;
|
|
22
22
|
}
|
|
23
|
-
export interface GetAllRecord {
|
|
24
|
-
path: string[] | null;
|
|
25
|
-
data: unknown | null;
|
|
26
|
-
}
|
|
27
23
|
export interface AppPermission {
|
|
28
24
|
id: string | null;
|
|
29
25
|
name: string | null;
|
|
@@ -38,16 +34,6 @@ export interface OrgPermission {
|
|
|
38
34
|
bitstr: string | null;
|
|
39
35
|
description: string | null;
|
|
40
36
|
}
|
|
41
|
-
export interface Object {
|
|
42
|
-
hashUuid: string | null;
|
|
43
|
-
id: string | null;
|
|
44
|
-
databaseId: string | null;
|
|
45
|
-
kids: string[] | null;
|
|
46
|
-
ktree: string[] | null;
|
|
47
|
-
data: unknown | null;
|
|
48
|
-
frzn: boolean | null;
|
|
49
|
-
createdAt: string | null;
|
|
50
|
-
}
|
|
51
37
|
export interface Database {
|
|
52
38
|
id: string | null;
|
|
53
39
|
ownerId: string | null;
|
|
@@ -125,9 +111,8 @@ export interface Field {
|
|
|
125
111
|
smartTags: unknown | null;
|
|
126
112
|
isRequired: boolean | null;
|
|
127
113
|
apiRequired: boolean | null;
|
|
128
|
-
defaultValue:
|
|
129
|
-
|
|
130
|
-
type: string | null;
|
|
114
|
+
defaultValue: unknown | null;
|
|
115
|
+
type: unknown | null;
|
|
131
116
|
fieldOrder: number | null;
|
|
132
117
|
regexp: string | null;
|
|
133
118
|
chk: unknown | null;
|
|
@@ -419,6 +404,13 @@ export interface RealtimeModule {
|
|
|
419
404
|
interval: string | null;
|
|
420
405
|
notifyChannel: string | null;
|
|
421
406
|
}
|
|
407
|
+
export interface ConfigSecretsOrgModule {
|
|
408
|
+
id: string | null;
|
|
409
|
+
databaseId: string | null;
|
|
410
|
+
schemaId: string | null;
|
|
411
|
+
tableId: string | null;
|
|
412
|
+
tableName: string | null;
|
|
413
|
+
}
|
|
422
414
|
export interface SchemaGrant {
|
|
423
415
|
id: string | null;
|
|
424
416
|
databaseId: string | null;
|
|
@@ -504,6 +496,44 @@ export interface CorsSetting {
|
|
|
504
496
|
apiId: string | null;
|
|
505
497
|
allowedOrigins: string[] | null;
|
|
506
498
|
}
|
|
499
|
+
export interface MerkleStoreModule {
|
|
500
|
+
id: string | null;
|
|
501
|
+
databaseId: string | null;
|
|
502
|
+
schemaId: string | null;
|
|
503
|
+
privateSchemaId: string | null;
|
|
504
|
+
publicSchemaName: string | null;
|
|
505
|
+
privateSchemaName: string | null;
|
|
506
|
+
objectTableId: string | null;
|
|
507
|
+
storeTableId: string | null;
|
|
508
|
+
commitTableId: string | null;
|
|
509
|
+
refTableId: string | null;
|
|
510
|
+
prefix: string | null;
|
|
511
|
+
apiName: string | null;
|
|
512
|
+
privateApiName: string | null;
|
|
513
|
+
scopeField: string | null;
|
|
514
|
+
createdAt: string | null;
|
|
515
|
+
}
|
|
516
|
+
export interface GraphModule {
|
|
517
|
+
id: string | null;
|
|
518
|
+
databaseId: string | null;
|
|
519
|
+
publicSchemaId: string | null;
|
|
520
|
+
privateSchemaId: string | null;
|
|
521
|
+
publicSchemaName: string | null;
|
|
522
|
+
privateSchemaName: string | null;
|
|
523
|
+
prefix: string | null;
|
|
524
|
+
merkleStoreModuleId: string | null;
|
|
525
|
+
graphsTableId: string | null;
|
|
526
|
+
executionsTableId: string | null;
|
|
527
|
+
outputsTableId: string | null;
|
|
528
|
+
apiName: string | null;
|
|
529
|
+
privateApiName: string | null;
|
|
530
|
+
scopeField: string | null;
|
|
531
|
+
membershipType: number | null;
|
|
532
|
+
entityTableId: string | null;
|
|
533
|
+
policies: unknown | null;
|
|
534
|
+
provisions: unknown | null;
|
|
535
|
+
createdAt: string | null;
|
|
536
|
+
}
|
|
507
537
|
export interface TriggerFunction {
|
|
508
538
|
id: string | null;
|
|
509
539
|
databaseId: string | null;
|
|
@@ -512,6 +542,21 @@ export interface TriggerFunction {
|
|
|
512
542
|
createdAt: string | null;
|
|
513
543
|
updatedAt: string | null;
|
|
514
544
|
}
|
|
545
|
+
export interface Partition {
|
|
546
|
+
id: string | null;
|
|
547
|
+
databaseId: string | null;
|
|
548
|
+
tableId: string | null;
|
|
549
|
+
strategy: string | null;
|
|
550
|
+
partitionKeyId: string | null;
|
|
551
|
+
interval: string | null;
|
|
552
|
+
retention: string | null;
|
|
553
|
+
retentionKeepTable: boolean | null;
|
|
554
|
+
premake: number | null;
|
|
555
|
+
namingPattern: string | null;
|
|
556
|
+
isParented: boolean | null;
|
|
557
|
+
createdAt: string | null;
|
|
558
|
+
updatedAt: string | null;
|
|
559
|
+
}
|
|
515
560
|
export interface DatabaseTransfer {
|
|
516
561
|
id: string | null;
|
|
517
562
|
databaseId: string | null;
|
|
@@ -528,19 +573,6 @@ export interface DatabaseTransfer {
|
|
|
528
573
|
updatedAt: string | null;
|
|
529
574
|
completedAt: string | null;
|
|
530
575
|
}
|
|
531
|
-
export interface Partition {
|
|
532
|
-
id: string | null;
|
|
533
|
-
databaseId: string | null;
|
|
534
|
-
tableId: string | null;
|
|
535
|
-
strategy: string | null;
|
|
536
|
-
partitionKeyId: string | null;
|
|
537
|
-
interval: string | null;
|
|
538
|
-
retention: string | null;
|
|
539
|
-
premake: number | null;
|
|
540
|
-
namingPattern: string | null;
|
|
541
|
-
createdAt: string | null;
|
|
542
|
-
updatedAt: string | null;
|
|
543
|
-
}
|
|
544
576
|
export interface Api {
|
|
545
577
|
id: string | null;
|
|
546
578
|
databaseId: string | null;
|
|
@@ -651,12 +683,13 @@ export interface EmailsModule {
|
|
|
651
683
|
ownerTableId: string | null;
|
|
652
684
|
tableName: string | null;
|
|
653
685
|
}
|
|
654
|
-
export interface
|
|
686
|
+
export interface ConfigSecretsUserModule {
|
|
655
687
|
id: string | null;
|
|
656
688
|
databaseId: string | null;
|
|
657
689
|
schemaId: string | null;
|
|
658
690
|
tableId: string | null;
|
|
659
691
|
tableName: string | null;
|
|
692
|
+
configDefinitionsTableId: string | null;
|
|
660
693
|
}
|
|
661
694
|
export interface InvitesModule {
|
|
662
695
|
id: string | null;
|
|
@@ -785,6 +818,7 @@ export interface MembershipsModule {
|
|
|
785
818
|
entityTableId: string | null;
|
|
786
819
|
entityTableOwnerId: string | null;
|
|
787
820
|
prefix: string | null;
|
|
821
|
+
getOrgFn: string | null;
|
|
788
822
|
actorMaskCheck: string | null;
|
|
789
823
|
actorPermCheck: string | null;
|
|
790
824
|
entityIdsByMask: string | null;
|
|
@@ -958,8 +992,9 @@ export interface StorageModule {
|
|
|
958
992
|
bucketsTableName: string | null;
|
|
959
993
|
filesTableName: string | null;
|
|
960
994
|
membershipType: number | null;
|
|
995
|
+
key: string | null;
|
|
961
996
|
policies: unknown | null;
|
|
962
|
-
|
|
997
|
+
provisions: unknown | null;
|
|
963
998
|
entityTableId: string | null;
|
|
964
999
|
endpoint: string | null;
|
|
965
1000
|
publicUrlPrefix: string | null;
|
|
@@ -995,10 +1030,13 @@ export interface EntityTypeProvision {
|
|
|
995
1030
|
hasLimits: boolean | null;
|
|
996
1031
|
hasProfiles: boolean | null;
|
|
997
1032
|
hasLevels: boolean | null;
|
|
998
|
-
hasStorage: boolean | null;
|
|
999
1033
|
hasInvites: boolean | null;
|
|
1000
1034
|
hasInviteAchievements: boolean | null;
|
|
1001
|
-
|
|
1035
|
+
storage: unknown | null;
|
|
1036
|
+
namespaces: unknown | null;
|
|
1037
|
+
functions: unknown | null;
|
|
1038
|
+
graphs: unknown | null;
|
|
1039
|
+
agents: unknown | null;
|
|
1002
1040
|
skipEntityPolicies: boolean | null;
|
|
1003
1041
|
tableProvision: unknown | null;
|
|
1004
1042
|
outMembershipType: number | null;
|
|
@@ -1010,6 +1048,19 @@ export interface EntityTypeProvision {
|
|
|
1010
1048
|
outFilesTableId: string | null;
|
|
1011
1049
|
outPathSharesTableId: string | null;
|
|
1012
1050
|
outInvitesModuleId: string | null;
|
|
1051
|
+
outNamespaceModuleId: string | null;
|
|
1052
|
+
outNamespacesTableId: string | null;
|
|
1053
|
+
outNamespaceEventsTableId: string | null;
|
|
1054
|
+
outFunctionModuleId: string | null;
|
|
1055
|
+
outDefinitionsTableId: string | null;
|
|
1056
|
+
outInvocationsTableId: string | null;
|
|
1057
|
+
outExecutionLogsTableId: string | null;
|
|
1058
|
+
outSecretDefinitionsTableId: string | null;
|
|
1059
|
+
outRequirementsTableId: string | null;
|
|
1060
|
+
outConfigRequirementsTableId: string | null;
|
|
1061
|
+
outGraphModuleId: string | null;
|
|
1062
|
+
outGraphsTableId: string | null;
|
|
1063
|
+
outAgentModuleId: string | null;
|
|
1013
1064
|
}
|
|
1014
1065
|
export interface WebauthnCredentialsModule {
|
|
1015
1066
|
id: string | null;
|
|
@@ -1057,6 +1108,166 @@ export interface NotificationsModule {
|
|
|
1057
1108
|
hasDigestMetadata: boolean | null;
|
|
1058
1109
|
hasSubscriptions: boolean | null;
|
|
1059
1110
|
}
|
|
1111
|
+
export interface InferenceLogModule {
|
|
1112
|
+
id: string | null;
|
|
1113
|
+
databaseId: string | null;
|
|
1114
|
+
schemaId: string | null;
|
|
1115
|
+
privateSchemaId: string | null;
|
|
1116
|
+
inferenceLogTableId: string | null;
|
|
1117
|
+
inferenceLogTableName: string | null;
|
|
1118
|
+
usageDailyTableId: string | null;
|
|
1119
|
+
usageDailyTableName: string | null;
|
|
1120
|
+
interval: string | null;
|
|
1121
|
+
retention: string | null;
|
|
1122
|
+
premake: number | null;
|
|
1123
|
+
scope: string | null;
|
|
1124
|
+
actorFkTableId: string | null;
|
|
1125
|
+
entityFkTableId: string | null;
|
|
1126
|
+
prefix: string | null;
|
|
1127
|
+
}
|
|
1128
|
+
export interface ComputeLogModule {
|
|
1129
|
+
id: string | null;
|
|
1130
|
+
databaseId: string | null;
|
|
1131
|
+
schemaId: string | null;
|
|
1132
|
+
privateSchemaId: string | null;
|
|
1133
|
+
computeLogTableId: string | null;
|
|
1134
|
+
computeLogTableName: string | null;
|
|
1135
|
+
usageDailyTableId: string | null;
|
|
1136
|
+
usageDailyTableName: string | null;
|
|
1137
|
+
interval: string | null;
|
|
1138
|
+
retention: string | null;
|
|
1139
|
+
premake: number | null;
|
|
1140
|
+
scope: string | null;
|
|
1141
|
+
actorFkTableId: string | null;
|
|
1142
|
+
entityFkTableId: string | null;
|
|
1143
|
+
prefix: string | null;
|
|
1144
|
+
}
|
|
1145
|
+
export interface TransferLogModule {
|
|
1146
|
+
id: string | null;
|
|
1147
|
+
databaseId: string | null;
|
|
1148
|
+
schemaId: string | null;
|
|
1149
|
+
privateSchemaId: string | null;
|
|
1150
|
+
transferLogTableId: string | null;
|
|
1151
|
+
transferLogTableName: string | null;
|
|
1152
|
+
usageDailyTableId: string | null;
|
|
1153
|
+
usageDailyTableName: string | null;
|
|
1154
|
+
interval: string | null;
|
|
1155
|
+
retention: string | null;
|
|
1156
|
+
premake: number | null;
|
|
1157
|
+
scope: string | null;
|
|
1158
|
+
actorFkTableId: string | null;
|
|
1159
|
+
entityFkTableId: string | null;
|
|
1160
|
+
prefix: string | null;
|
|
1161
|
+
}
|
|
1162
|
+
export interface StorageLogModule {
|
|
1163
|
+
id: string | null;
|
|
1164
|
+
databaseId: string | null;
|
|
1165
|
+
schemaId: string | null;
|
|
1166
|
+
privateSchemaId: string | null;
|
|
1167
|
+
storageLogTableId: string | null;
|
|
1168
|
+
storageLogTableName: string | null;
|
|
1169
|
+
usageDailyTableId: string | null;
|
|
1170
|
+
usageDailyTableName: string | null;
|
|
1171
|
+
interval: string | null;
|
|
1172
|
+
retention: string | null;
|
|
1173
|
+
premake: number | null;
|
|
1174
|
+
scope: string | null;
|
|
1175
|
+
actorFkTableId: string | null;
|
|
1176
|
+
entityFkTableId: string | null;
|
|
1177
|
+
prefix: string | null;
|
|
1178
|
+
}
|
|
1179
|
+
export interface DbUsageModule {
|
|
1180
|
+
id: string | null;
|
|
1181
|
+
databaseId: string | null;
|
|
1182
|
+
schemaId: string | null;
|
|
1183
|
+
privateSchemaId: string | null;
|
|
1184
|
+
tableStatsLogTableId: string | null;
|
|
1185
|
+
tableStatsLogTableName: string | null;
|
|
1186
|
+
tableStatsDailyTableId: string | null;
|
|
1187
|
+
tableStatsDailyTableName: string | null;
|
|
1188
|
+
queryStatsLogTableId: string | null;
|
|
1189
|
+
queryStatsLogTableName: string | null;
|
|
1190
|
+
queryStatsDailyTableId: string | null;
|
|
1191
|
+
queryStatsDailyTableName: string | null;
|
|
1192
|
+
interval: string | null;
|
|
1193
|
+
retention: string | null;
|
|
1194
|
+
premake: number | null;
|
|
1195
|
+
scope: string | null;
|
|
1196
|
+
prefix: string | null;
|
|
1197
|
+
}
|
|
1198
|
+
export interface AgentModule {
|
|
1199
|
+
id: string | null;
|
|
1200
|
+
databaseId: string | null;
|
|
1201
|
+
schemaId: string | null;
|
|
1202
|
+
privateSchemaId: string | null;
|
|
1203
|
+
threadTableId: string | null;
|
|
1204
|
+
messageTableId: string | null;
|
|
1205
|
+
taskTableId: string | null;
|
|
1206
|
+
promptsTableId: string | null;
|
|
1207
|
+
knowledgeTableId: string | null;
|
|
1208
|
+
threadTableName: string | null;
|
|
1209
|
+
messageTableName: string | null;
|
|
1210
|
+
taskTableName: string | null;
|
|
1211
|
+
promptsTableName: string | null;
|
|
1212
|
+
knowledgeTableName: string | null;
|
|
1213
|
+
hasKnowledge: boolean | null;
|
|
1214
|
+
apiName: string | null;
|
|
1215
|
+
membershipType: number | null;
|
|
1216
|
+
key: string | null;
|
|
1217
|
+
entityTableId: string | null;
|
|
1218
|
+
policies: unknown | null;
|
|
1219
|
+
knowledgeConfig: unknown | null;
|
|
1220
|
+
knowledgePolicies: unknown | null;
|
|
1221
|
+
provisions: unknown | null;
|
|
1222
|
+
}
|
|
1223
|
+
export interface NamespaceModule {
|
|
1224
|
+
id: string | null;
|
|
1225
|
+
databaseId: string | null;
|
|
1226
|
+
schemaId: string | null;
|
|
1227
|
+
privateSchemaId: string | null;
|
|
1228
|
+
publicSchemaName: string | null;
|
|
1229
|
+
privateSchemaName: string | null;
|
|
1230
|
+
namespacesTableId: string | null;
|
|
1231
|
+
namespaceEventsTableId: string | null;
|
|
1232
|
+
namespacesTableName: string | null;
|
|
1233
|
+
namespaceEventsTableName: string | null;
|
|
1234
|
+
apiName: string | null;
|
|
1235
|
+
privateApiName: string | null;
|
|
1236
|
+
membershipType: number | null;
|
|
1237
|
+
key: string | null;
|
|
1238
|
+
entityTableId: string | null;
|
|
1239
|
+
policies: unknown | null;
|
|
1240
|
+
provisions: unknown | null;
|
|
1241
|
+
}
|
|
1242
|
+
export interface FunctionModule {
|
|
1243
|
+
id: string | null;
|
|
1244
|
+
databaseId: string | null;
|
|
1245
|
+
schemaId: string | null;
|
|
1246
|
+
privateSchemaId: string | null;
|
|
1247
|
+
publicSchemaName: string | null;
|
|
1248
|
+
privateSchemaName: string | null;
|
|
1249
|
+
definitionsTableId: string | null;
|
|
1250
|
+
invocationsTableId: string | null;
|
|
1251
|
+
executionLogsTableId: string | null;
|
|
1252
|
+
secretDefinitionsTableId: string | null;
|
|
1253
|
+
requirementsTableId: string | null;
|
|
1254
|
+
configDefinitionsTableId: string | null;
|
|
1255
|
+
configRequirementsTableId: string | null;
|
|
1256
|
+
definitionsTableName: string | null;
|
|
1257
|
+
invocationsTableName: string | null;
|
|
1258
|
+
executionLogsTableName: string | null;
|
|
1259
|
+
secretDefinitionsTableName: string | null;
|
|
1260
|
+
requirementsTableName: string | null;
|
|
1261
|
+
configRequirementsTableName: string | null;
|
|
1262
|
+
apiName: string | null;
|
|
1263
|
+
privateApiName: string | null;
|
|
1264
|
+
membershipType: number | null;
|
|
1265
|
+
prefix: string | null;
|
|
1266
|
+
key: string | null;
|
|
1267
|
+
entityTableId: string | null;
|
|
1268
|
+
policies: unknown | null;
|
|
1269
|
+
provisions: unknown | null;
|
|
1270
|
+
}
|
|
1060
1271
|
export interface DatabaseProvisionModule {
|
|
1061
1272
|
id: string | null;
|
|
1062
1273
|
databaseName: string | null;
|
|
@@ -1203,6 +1414,8 @@ export interface AppLimit {
|
|
|
1203
1414
|
planMax: string | null;
|
|
1204
1415
|
purchasedCredits: string | null;
|
|
1205
1416
|
periodCredits: string | null;
|
|
1417
|
+
organizationId: string | null;
|
|
1418
|
+
entityType: string | null;
|
|
1206
1419
|
}
|
|
1207
1420
|
export interface AppLimitCredit {
|
|
1208
1421
|
id: string | null;
|
|
@@ -1237,6 +1450,8 @@ export interface OrgLimit {
|
|
|
1237
1450
|
purchasedCredits: string | null;
|
|
1238
1451
|
periodCredits: string | null;
|
|
1239
1452
|
entityId: string | null;
|
|
1453
|
+
organizationId: string | null;
|
|
1454
|
+
entityType: string | null;
|
|
1240
1455
|
}
|
|
1241
1456
|
export interface OrgLimitCredit {
|
|
1242
1457
|
id: string | null;
|
|
@@ -1260,6 +1475,8 @@ export interface OrgLimitAggregate {
|
|
|
1260
1475
|
purchasedCredits: string | null;
|
|
1261
1476
|
periodCredits: string | null;
|
|
1262
1477
|
reserved: string | null;
|
|
1478
|
+
organizationId: string | null;
|
|
1479
|
+
entityType: string | null;
|
|
1263
1480
|
}
|
|
1264
1481
|
export interface OrgLimitWarning {
|
|
1265
1482
|
id: string | null;
|
|
@@ -1366,7 +1583,8 @@ export interface OrgClaimedInvite {
|
|
|
1366
1583
|
updatedAt: string | null;
|
|
1367
1584
|
entityId: string | null;
|
|
1368
1585
|
}
|
|
1369
|
-
export interface
|
|
1586
|
+
export interface AuditLogAuth {
|
|
1587
|
+
createdAt: string | null;
|
|
1370
1588
|
id: string | null;
|
|
1371
1589
|
event: string | null;
|
|
1372
1590
|
actorId: string | null;
|
|
@@ -1374,45 +1592,6 @@ export interface AuditLog {
|
|
|
1374
1592
|
userAgent: string | null;
|
|
1375
1593
|
ipAddress: string | null;
|
|
1376
1594
|
success: boolean | null;
|
|
1377
|
-
createdAt: string | null;
|
|
1378
|
-
}
|
|
1379
|
-
export interface AgentThread {
|
|
1380
|
-
title: string | null;
|
|
1381
|
-
mode: string | null;
|
|
1382
|
-
model: string | null;
|
|
1383
|
-
systemPrompt: string | null;
|
|
1384
|
-
id: string | null;
|
|
1385
|
-
createdAt: string | null;
|
|
1386
|
-
updatedAt: string | null;
|
|
1387
|
-
ownerId: string | null;
|
|
1388
|
-
entityId: string | null;
|
|
1389
|
-
status: string | null;
|
|
1390
|
-
}
|
|
1391
|
-
export interface AgentMessage {
|
|
1392
|
-
threadId: string | null;
|
|
1393
|
-
entityId: string | null;
|
|
1394
|
-
authorRole: string | null;
|
|
1395
|
-
id: string | null;
|
|
1396
|
-
createdAt: string | null;
|
|
1397
|
-
updatedAt: string | null;
|
|
1398
|
-
ownerId: string | null;
|
|
1399
|
-
parts: unknown | null;
|
|
1400
|
-
}
|
|
1401
|
-
export interface AgentTask {
|
|
1402
|
-
threadId: string | null;
|
|
1403
|
-
entityId: string | null;
|
|
1404
|
-
description: string | null;
|
|
1405
|
-
source: string | null;
|
|
1406
|
-
error: string | null;
|
|
1407
|
-
id: string | null;
|
|
1408
|
-
createdAt: string | null;
|
|
1409
|
-
updatedAt: string | null;
|
|
1410
|
-
ownerId: string | null;
|
|
1411
|
-
status: string | null;
|
|
1412
|
-
}
|
|
1413
|
-
export interface RoleType {
|
|
1414
|
-
id: number | null;
|
|
1415
|
-
name: string | null;
|
|
1416
1595
|
}
|
|
1417
1596
|
export interface IdentityProvider {
|
|
1418
1597
|
slug: string | null;
|
|
@@ -1421,30 +1600,54 @@ export interface IdentityProvider {
|
|
|
1421
1600
|
enabled: boolean | null;
|
|
1422
1601
|
isBuiltIn: boolean | null;
|
|
1423
1602
|
}
|
|
1424
|
-
export interface
|
|
1603
|
+
export interface AppPermissionDefault {
|
|
1425
1604
|
id: string | null;
|
|
1605
|
+
permissions: string | null;
|
|
1606
|
+
}
|
|
1607
|
+
export interface RoleType {
|
|
1608
|
+
id: number | null;
|
|
1426
1609
|
name: string | null;
|
|
1610
|
+
}
|
|
1611
|
+
export interface MigrateFile {
|
|
1612
|
+
id: string | null;
|
|
1427
1613
|
databaseId: string | null;
|
|
1428
|
-
|
|
1429
|
-
commitId: string | null;
|
|
1614
|
+
upload: ConstructiveInternalTypeUpload | null;
|
|
1430
1615
|
}
|
|
1431
|
-
export interface
|
|
1616
|
+
export interface DevicesModule {
|
|
1432
1617
|
id: string | null;
|
|
1433
|
-
name: string | null;
|
|
1434
1618
|
databaseId: string | null;
|
|
1435
|
-
|
|
1436
|
-
|
|
1619
|
+
schemaId: string | null;
|
|
1620
|
+
userDevicesTableId: string | null;
|
|
1621
|
+
deviceSettingsTableId: string | null;
|
|
1622
|
+
userDevicesTable: string | null;
|
|
1623
|
+
deviceSettingsTable: string | null;
|
|
1437
1624
|
}
|
|
1438
|
-
export interface
|
|
1625
|
+
export interface AppMembershipDefault {
|
|
1439
1626
|
id: string | null;
|
|
1440
|
-
|
|
1627
|
+
createdAt: string | null;
|
|
1628
|
+
updatedAt: string | null;
|
|
1629
|
+
createdBy: string | null;
|
|
1630
|
+
updatedBy: string | null;
|
|
1631
|
+
isApproved: boolean | null;
|
|
1632
|
+
isVerified: boolean | null;
|
|
1441
1633
|
}
|
|
1442
|
-
export interface
|
|
1634
|
+
export interface OrgMembershipDefault {
|
|
1443
1635
|
id: string | null;
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1636
|
+
createdAt: string | null;
|
|
1637
|
+
updatedAt: string | null;
|
|
1638
|
+
createdBy: string | null;
|
|
1639
|
+
updatedBy: string | null;
|
|
1640
|
+
isApproved: boolean | null;
|
|
1641
|
+
entityId: string | null;
|
|
1642
|
+
}
|
|
1643
|
+
export interface NodeTypeRegistry {
|
|
1644
|
+
name: string | null;
|
|
1645
|
+
slug: string | null;
|
|
1646
|
+
category: string | null;
|
|
1647
|
+
displayName: string | null;
|
|
1648
|
+
description: string | null;
|
|
1649
|
+
parameterSchema: unknown | null;
|
|
1650
|
+
tags: string[] | null;
|
|
1448
1651
|
}
|
|
1449
1652
|
export interface AppLimitCapsDefault {
|
|
1450
1653
|
id: string | null;
|
|
@@ -1468,36 +1671,15 @@ export interface OrgLimitCap {
|
|
|
1468
1671
|
entityId: string | null;
|
|
1469
1672
|
max: string | null;
|
|
1470
1673
|
}
|
|
1471
|
-
export interface
|
|
1472
|
-
id: number | null;
|
|
1473
|
-
name: string | null;
|
|
1474
|
-
description: string | null;
|
|
1475
|
-
prefix: string | null;
|
|
1476
|
-
parentMembershipType: number | null;
|
|
1477
|
-
hasUsersTableEntry: boolean | null;
|
|
1478
|
-
}
|
|
1479
|
-
export interface MigrateFile {
|
|
1480
|
-
id: string | null;
|
|
1481
|
-
databaseId: string | null;
|
|
1482
|
-
upload: ConstructiveInternalTypeUpload | null;
|
|
1483
|
-
}
|
|
1484
|
-
export interface DevicesModule {
|
|
1674
|
+
export interface UserConnectedAccount {
|
|
1485
1675
|
id: string | null;
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
export interface NodeTypeRegistry {
|
|
1494
|
-
name: string | null;
|
|
1495
|
-
slug: string | null;
|
|
1496
|
-
category: string | null;
|
|
1497
|
-
displayName: string | null;
|
|
1498
|
-
description: string | null;
|
|
1499
|
-
parameterSchema: unknown | null;
|
|
1500
|
-
tags: string[] | null;
|
|
1676
|
+
ownerId: string | null;
|
|
1677
|
+
service: string | null;
|
|
1678
|
+
identifier: string | null;
|
|
1679
|
+
details: unknown | null;
|
|
1680
|
+
isVerified: boolean | null;
|
|
1681
|
+
createdAt: string | null;
|
|
1682
|
+
updatedAt: string | null;
|
|
1501
1683
|
}
|
|
1502
1684
|
export interface AppLimitDefault {
|
|
1503
1685
|
id: string | null;
|
|
@@ -1511,6 +1693,13 @@ export interface OrgLimitDefault {
|
|
|
1511
1693
|
max: string | null;
|
|
1512
1694
|
softMax: string | null;
|
|
1513
1695
|
}
|
|
1696
|
+
export interface AppLimitCreditCode {
|
|
1697
|
+
id: string | null;
|
|
1698
|
+
code: string | null;
|
|
1699
|
+
maxRedemptions: number | null;
|
|
1700
|
+
currentRedemptions: number | null;
|
|
1701
|
+
expiresAt: string | null;
|
|
1702
|
+
}
|
|
1514
1703
|
export interface AppLimitWarning {
|
|
1515
1704
|
id: string | null;
|
|
1516
1705
|
name: string | null;
|
|
@@ -1518,27 +1707,6 @@ export interface AppLimitWarning {
|
|
|
1518
1707
|
thresholdValue: string | null;
|
|
1519
1708
|
taskIdentifier: string | null;
|
|
1520
1709
|
}
|
|
1521
|
-
export interface UserConnectedAccount {
|
|
1522
|
-
id: string | null;
|
|
1523
|
-
ownerId: string | null;
|
|
1524
|
-
service: string | null;
|
|
1525
|
-
identifier: string | null;
|
|
1526
|
-
details: unknown | null;
|
|
1527
|
-
isVerified: boolean | null;
|
|
1528
|
-
createdAt: string | null;
|
|
1529
|
-
updatedAt: string | null;
|
|
1530
|
-
}
|
|
1531
|
-
export interface Commit {
|
|
1532
|
-
id: string | null;
|
|
1533
|
-
message: string | null;
|
|
1534
|
-
databaseId: string | null;
|
|
1535
|
-
storeId: string | null;
|
|
1536
|
-
parentIds: string[] | null;
|
|
1537
|
-
authorId: string | null;
|
|
1538
|
-
committerId: string | null;
|
|
1539
|
-
treeId: string | null;
|
|
1540
|
-
date: string | null;
|
|
1541
|
-
}
|
|
1542
1710
|
export interface PubkeySetting {
|
|
1543
1711
|
id: string | null;
|
|
1544
1712
|
databaseId: string | null;
|
|
@@ -1561,31 +1729,13 @@ export interface RateLimitsModule {
|
|
|
1561
1729
|
ipRateLimitsTable: string | null;
|
|
1562
1730
|
rateLimitsTable: string | null;
|
|
1563
1731
|
}
|
|
1564
|
-
export interface
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
}
|
|
1572
|
-
export interface AppMembershipDefault {
|
|
1573
|
-
id: string | null;
|
|
1574
|
-
createdAt: string | null;
|
|
1575
|
-
updatedAt: string | null;
|
|
1576
|
-
createdBy: string | null;
|
|
1577
|
-
updatedBy: string | null;
|
|
1578
|
-
isApproved: boolean | null;
|
|
1579
|
-
isVerified: boolean | null;
|
|
1580
|
-
}
|
|
1581
|
-
export interface OrgMembershipDefault {
|
|
1582
|
-
id: string | null;
|
|
1583
|
-
createdAt: string | null;
|
|
1584
|
-
updatedAt: string | null;
|
|
1585
|
-
createdBy: string | null;
|
|
1586
|
-
updatedBy: string | null;
|
|
1587
|
-
isApproved: boolean | null;
|
|
1588
|
-
entityId: string | null;
|
|
1732
|
+
export interface MembershipType {
|
|
1733
|
+
id: number | null;
|
|
1734
|
+
name: string | null;
|
|
1735
|
+
description: string | null;
|
|
1736
|
+
prefix: string | null;
|
|
1737
|
+
parentMembershipType: number | null;
|
|
1738
|
+
hasUsersTableEntry: boolean | null;
|
|
1589
1739
|
}
|
|
1590
1740
|
export interface RlsSetting {
|
|
1591
1741
|
id: string | null;
|
|
@@ -1599,28 +1749,6 @@ export interface RlsSetting {
|
|
|
1599
1749
|
currentUserAgentFunctionId: string | null;
|
|
1600
1750
|
currentIpAddressFunctionId: string | null;
|
|
1601
1751
|
}
|
|
1602
|
-
export interface AppLimitEvent {
|
|
1603
|
-
name: string | null;
|
|
1604
|
-
actorId: string | null;
|
|
1605
|
-
entityId: string | null;
|
|
1606
|
-
eventType: string | null;
|
|
1607
|
-
delta: string | null;
|
|
1608
|
-
numBefore: string | null;
|
|
1609
|
-
numAfter: string | null;
|
|
1610
|
-
maxAtEvent: string | null;
|
|
1611
|
-
reason: string | null;
|
|
1612
|
-
}
|
|
1613
|
-
export interface OrgLimitEvent {
|
|
1614
|
-
name: string | null;
|
|
1615
|
-
actorId: string | null;
|
|
1616
|
-
entityId: string | null;
|
|
1617
|
-
eventType: string | null;
|
|
1618
|
-
delta: string | null;
|
|
1619
|
-
numBefore: string | null;
|
|
1620
|
-
numAfter: string | null;
|
|
1621
|
-
maxAtEvent: string | null;
|
|
1622
|
-
reason: string | null;
|
|
1623
|
-
}
|
|
1624
1752
|
export interface RlsModule {
|
|
1625
1753
|
id: string | null;
|
|
1626
1754
|
databaseId: string | null;
|
|
@@ -1694,36 +1822,69 @@ export interface DatabaseSetting {
|
|
|
1694
1822
|
enableBulk: boolean | null;
|
|
1695
1823
|
options: unknown | null;
|
|
1696
1824
|
}
|
|
1697
|
-
export interface
|
|
1825
|
+
export interface OrgMembershipSetting {
|
|
1698
1826
|
id: string | null;
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1827
|
+
createdAt: string | null;
|
|
1828
|
+
updatedAt: string | null;
|
|
1829
|
+
createdBy: string | null;
|
|
1830
|
+
updatedBy: string | null;
|
|
1831
|
+
entityId: string | null;
|
|
1832
|
+
deleteMemberCascadeChildren: boolean | null;
|
|
1833
|
+
createChildCascadeOwners: boolean | null;
|
|
1834
|
+
createChildCascadeAdmins: boolean | null;
|
|
1835
|
+
createChildCascadeMembers: boolean | null;
|
|
1836
|
+
allowExternalMembers: boolean | null;
|
|
1837
|
+
inviteProfileAssignmentMode: string | null;
|
|
1838
|
+
populateMemberEmail: boolean | null;
|
|
1839
|
+
limitAllocationMode: string | null;
|
|
1712
1840
|
}
|
|
1713
|
-
export interface
|
|
1714
|
-
|
|
1715
|
-
|
|
1841
|
+
export interface AppLimitEvent {
|
|
1842
|
+
createdAt: string | null;
|
|
1843
|
+
id: string | null;
|
|
1716
1844
|
name: string | null;
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1845
|
+
actorId: string | null;
|
|
1846
|
+
entityId: string | null;
|
|
1847
|
+
organizationId: string | null;
|
|
1848
|
+
entityType: string | null;
|
|
1849
|
+
eventType: string | null;
|
|
1850
|
+
delta: string | null;
|
|
1851
|
+
numBefore: string | null;
|
|
1852
|
+
numAfter: string | null;
|
|
1853
|
+
maxAtEvent: string | null;
|
|
1854
|
+
reason: string | null;
|
|
1855
|
+
}
|
|
1856
|
+
export interface OrgLimitEvent {
|
|
1723
1857
|
createdAt: string | null;
|
|
1724
|
-
|
|
1725
|
-
|
|
1858
|
+
id: string | null;
|
|
1859
|
+
name: string | null;
|
|
1860
|
+
actorId: string | null;
|
|
1861
|
+
entityId: string | null;
|
|
1862
|
+
organizationId: string | null;
|
|
1863
|
+
entityType: string | null;
|
|
1864
|
+
eventType: string | null;
|
|
1865
|
+
delta: string | null;
|
|
1866
|
+
numBefore: string | null;
|
|
1867
|
+
numAfter: string | null;
|
|
1868
|
+
maxAtEvent: string | null;
|
|
1869
|
+
reason: string | null;
|
|
1870
|
+
}
|
|
1871
|
+
export interface AppMembership {
|
|
1872
|
+
id: string | null;
|
|
1873
|
+
createdAt: string | null;
|
|
1874
|
+
updatedAt: string | null;
|
|
1875
|
+
createdBy: string | null;
|
|
1876
|
+
updatedBy: string | null;
|
|
1877
|
+
isApproved: boolean | null;
|
|
1878
|
+
isBanned: boolean | null;
|
|
1879
|
+
isDisabled: boolean | null;
|
|
1880
|
+
isVerified: boolean | null;
|
|
1881
|
+
isActive: boolean | null;
|
|
1882
|
+
isOwner: boolean | null;
|
|
1883
|
+
isAdmin: boolean | null;
|
|
1884
|
+
permissions: string | null;
|
|
1885
|
+
granted: string | null;
|
|
1726
1886
|
actorId: string | null;
|
|
1887
|
+
profileId: string | null;
|
|
1727
1888
|
}
|
|
1728
1889
|
export interface User {
|
|
1729
1890
|
id: string | null;
|
|
@@ -1738,21 +1899,20 @@ export interface User {
|
|
|
1738
1899
|
displayNameTrgmSimilarity: number | null;
|
|
1739
1900
|
searchScore: number | null;
|
|
1740
1901
|
}
|
|
1741
|
-
export interface
|
|
1742
|
-
id:
|
|
1902
|
+
export interface AstMigration {
|
|
1903
|
+
id: number | null;
|
|
1904
|
+
databaseId: string | null;
|
|
1905
|
+
name: string | null;
|
|
1906
|
+
requires: string[] | null;
|
|
1907
|
+
payload: unknown | null;
|
|
1908
|
+
deploys: string | null;
|
|
1909
|
+
deploy: unknown | null;
|
|
1910
|
+
revert: unknown | null;
|
|
1911
|
+
verify: unknown | null;
|
|
1743
1912
|
createdAt: string | null;
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
entityId: string | null;
|
|
1748
|
-
deleteMemberCascadeChildren: boolean | null;
|
|
1749
|
-
createChildCascadeOwners: boolean | null;
|
|
1750
|
-
createChildCascadeAdmins: boolean | null;
|
|
1751
|
-
createChildCascadeMembers: boolean | null;
|
|
1752
|
-
allowExternalMembers: boolean | null;
|
|
1753
|
-
inviteProfileAssignmentMode: string | null;
|
|
1754
|
-
populateMemberEmail: boolean | null;
|
|
1755
|
-
limitAllocationMode: string | null;
|
|
1913
|
+
action: string | null;
|
|
1914
|
+
actionId: string | null;
|
|
1915
|
+
actorId: string | null;
|
|
1756
1916
|
}
|
|
1757
1917
|
export interface WebauthnSetting {
|
|
1758
1918
|
id: string | null;
|
|
@@ -1774,23 +1934,25 @@ export interface WebauthnSetting {
|
|
|
1774
1934
|
residentKey: string | null;
|
|
1775
1935
|
challengeExpirySeconds: string | null;
|
|
1776
1936
|
}
|
|
1777
|
-
export interface
|
|
1937
|
+
export interface BillingModule {
|
|
1778
1938
|
id: string | null;
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1939
|
+
databaseId: string | null;
|
|
1940
|
+
schemaId: string | null;
|
|
1941
|
+
privateSchemaId: string | null;
|
|
1942
|
+
metersTableId: string | null;
|
|
1943
|
+
metersTableName: string | null;
|
|
1944
|
+
planSubscriptionsTableId: string | null;
|
|
1945
|
+
planSubscriptionsTableName: string | null;
|
|
1946
|
+
ledgerTableId: string | null;
|
|
1947
|
+
ledgerTableName: string | null;
|
|
1948
|
+
balancesTableId: string | null;
|
|
1949
|
+
balancesTableName: string | null;
|
|
1950
|
+
meterCreditsTableId: string | null;
|
|
1951
|
+
meterCreditsTableName: string | null;
|
|
1952
|
+
meterSourcesTableId: string | null;
|
|
1953
|
+
meterSourcesTableName: string | null;
|
|
1954
|
+
recordUsageFunction: string | null;
|
|
1955
|
+
prefix: string | null;
|
|
1794
1956
|
}
|
|
1795
1957
|
export interface BillingProviderModule {
|
|
1796
1958
|
id: string | null;
|