@constructive-io/react 0.23.15 → 0.23.17
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 +2 -0
- package/admin/orm/models/appAdminGrant.js +1 -1
- package/admin/orm/models/appClaimedInvite.js +1 -1
- package/admin/orm/models/appGrant.js +1 -1
- package/admin/orm/models/appInvite.js +1 -1
- package/admin/orm/models/appMembership.js +1 -1
- package/admin/orm/models/appMembershipDefault.js +1 -1
- package/admin/orm/models/appOwnerGrant.js +1 -1
- package/admin/orm/models/appPermission.js +1 -1
- package/admin/orm/models/appPermissionDefault.js +1 -1
- package/admin/orm/models/appPermissionDefaultGrant.js +1 -1
- package/admin/orm/models/appPermissionDefaultPermission.js +1 -1
- package/admin/orm/models/membershipType.js +1 -1
- package/admin/orm/models/orgAdminGrant.js +1 -1
- package/admin/orm/models/orgChartEdge.js +1 -1
- package/admin/orm/models/orgChartEdgeGrant.js +1 -1
- package/admin/orm/models/orgClaimedInvite.js +1 -1
- package/admin/orm/models/orgGrant.js +1 -1
- package/admin/orm/models/orgInvite.js +1 -1
- package/admin/orm/models/orgMember.js +1 -1
- package/admin/orm/models/orgMemberProfile.js +1 -1
- package/admin/orm/models/orgMembership.js +1 -1
- package/admin/orm/models/orgMembershipDefault.js +1 -1
- package/admin/orm/models/orgMembershipSetting.js +1 -1
- package/admin/orm/models/orgOwnerGrant.js +1 -1
- package/admin/orm/models/orgPermission.js +1 -1
- package/admin/orm/models/orgPermissionDefault.js +1 -1
- package/admin/orm/models/orgPermissionDefaultGrant.js +1 -1
- package/admin/orm/models/orgPermissionDefaultPermission.js +1 -1
- package/admin/orm/query-builder.d.ts +1 -1
- package/admin/orm/query-builder.js +2 -1
- package/admin/schema-types.d.ts +72 -0
- package/agent/orm/input-types.d.ts +14 -2
- package/agent/orm/models/agent.js +1 -1
- package/agent/orm/models/agentMessage.js +1 -1
- package/agent/orm/models/agentPersona.js +1 -1
- package/agent/orm/models/agentPlan.js +1 -1
- package/agent/orm/models/agentPrompt.js +1 -1
- package/agent/orm/models/agentResource.js +1 -1
- package/agent/orm/models/agentResourceChunk.js +1 -1
- package/agent/orm/models/agentTask.js +1 -1
- package/agent/orm/models/agentThread.js +1 -1
- package/agent/orm/query-builder.d.ts +1 -1
- package/agent/orm/query-builder.js +2 -1
- package/agent/schema-types.d.ts +84 -1
- package/api/orm/input-types.d.ts +36 -1
- package/api/orm/models/api.js +1 -1
- package/api/orm/models/apiModule.js +1 -1
- package/api/orm/models/apiSchema.js +1 -1
- package/api/orm/models/apiSetting.js +1 -1
- package/api/orm/models/app.js +1 -1
- package/api/orm/models/checkConstraint.js +1 -1
- package/api/orm/models/compositeType.js +1 -1
- package/api/orm/models/corsSetting.js +1 -1
- package/api/orm/models/database.js +1 -1
- package/api/orm/models/databaseSetting.js +1 -1
- package/api/orm/models/databaseTransfer.js +1 -1
- package/api/orm/models/defaultPrivilege.js +1 -1
- package/api/orm/models/domain.js +1 -1
- package/api/orm/models/embeddingChunk.js +1 -1
- package/api/orm/models/enum.js +1 -1
- package/api/orm/models/field.js +1 -1
- package/api/orm/models/foreignKeyConstraint.js +1 -1
- package/api/orm/models/fullTextSearch.js +1 -1
- package/api/orm/models/function.js +1 -1
- package/api/orm/models/indexModel.js +1 -1
- package/api/orm/models/nodeTypeRegistry.js +1 -1
- package/api/orm/models/partition.js +1 -1
- package/api/orm/models/policy.js +1 -1
- package/api/orm/models/primaryKeyConstraint.js +1 -1
- package/api/orm/models/pubkeySetting.js +1 -1
- package/api/orm/models/rlsSetting.js +1 -1
- package/api/orm/models/schema.js +1 -1
- package/api/orm/models/schemaGrant.js +1 -1
- package/api/orm/models/site.js +1 -1
- package/api/orm/models/siteMetadatum.js +1 -1
- package/api/orm/models/siteModule.js +1 -1
- package/api/orm/models/siteTheme.js +1 -1
- package/api/orm/models/spatialRelation.js +1 -1
- package/api/orm/models/table.js +1 -1
- package/api/orm/models/tableGrant.js +1 -1
- package/api/orm/models/trigger.js +1 -1
- package/api/orm/models/triggerFunction.js +1 -1
- package/api/orm/models/uniqueConstraint.js +1 -1
- package/api/orm/models/view.js +1 -1
- package/api/orm/models/viewGrant.js +1 -1
- package/api/orm/models/viewRule.js +1 -1
- package/api/orm/models/viewTable.js +1 -1
- package/api/orm/models/webauthnSetting.js +1 -1
- package/api/orm/query-builder.d.ts +1 -1
- package/api/orm/query-builder.js +2 -1
- package/api/schema-types.d.ts +181 -79
- package/api/types.d.ts +2 -1
- package/auth/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +2 -0
- package/auth/hooks/mutations/useDeleteAuditLogAuthMutation.js +2 -1
- package/auth/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +2 -0
- package/auth/hooks/mutations/useUpdateAuditLogAuthMutation.js +2 -1
- package/auth/orm/input-types.d.ts +4 -2
- package/auth/orm/models/auditLogAuth.d.ts +2 -0
- package/auth/orm/models/auditLogAuth.js +4 -1
- package/auth/orm/models/cryptoAddress.js +1 -1
- package/auth/orm/models/email.js +1 -1
- package/auth/orm/models/phoneNumber.js +1 -1
- package/auth/orm/models/roleType.js +1 -1
- package/auth/orm/models/user.js +1 -1
- package/auth/orm/models/webauthnCredential.js +1 -1
- package/auth/orm/query-builder.d.ts +1 -1
- package/auth/orm/query-builder.js +2 -1
- package/auth/schema-types.d.ts +74 -1
- package/compute/hooks/client.d.ts +30 -0
- package/compute/hooks/client.js +40 -0
- package/compute/hooks/index.d.ts +39 -0
- package/compute/hooks/index.js +55 -0
- package/compute/hooks/invalidation.d.ts +148 -0
- package/compute/hooks/invalidation.js +331 -0
- package/compute/hooks/mutation-keys.d.ts +277 -0
- package/compute/hooks/mutation-keys.js +236 -0
- package/compute/hooks/mutations/index.d.ts +71 -0
- package/compute/hooks/mutations/index.js +87 -0
- package/compute/hooks/mutations/useAddEdgeAndSaveMutation.d.ts +20 -0
- package/compute/hooks/mutations/useAddEdgeAndSaveMutation.js +26 -0
- package/compute/hooks/mutations/useAddEdgeMutation.d.ts +20 -0
- package/compute/hooks/mutations/useAddEdgeMutation.js +26 -0
- package/compute/hooks/mutations/useAddNodeAndSaveMutation.d.ts +20 -0
- package/compute/hooks/mutations/useAddNodeAndSaveMutation.js +26 -0
- package/compute/hooks/mutations/useAddNodeMutation.d.ts +20 -0
- package/compute/hooks/mutations/useAddNodeMutation.js +26 -0
- package/compute/hooks/mutations/useCopyGraphMutation.d.ts +20 -0
- package/compute/hooks/mutations/useCopyGraphMutation.js +26 -0
- package/compute/hooks/mutations/useCreateFunctionApiBindingMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionApiBindingMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionDefinitionMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionDefinitionMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionDeploymentEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionDeploymentEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionDeploymentMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionDeploymentMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionExecutionLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionExecutionLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphCommitMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphCommitMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphExecutionMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphExecutionMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphExecutionNodeStateMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphExecutionNodeStateMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphExecutionOutputMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphExecutionOutputMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphObjectMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphObjectMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphRefMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphRefMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphStoreMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionGraphStoreMutation.js +34 -0
- package/compute/hooks/mutations/useCreateFunctionInvocationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionInvocationMutation.js +34 -0
- package/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateGetAllRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreateOrgFunctionExecutionLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateOrgFunctionExecutionLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreateOrgFunctionInvocationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateOrgFunctionInvocationMutation.js +34 -0
- package/compute/hooks/mutations/useCreateSecretDefinitionMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateSecretDefinitionMutation.js +34 -0
- package/compute/hooks/mutations/useDeleteFunctionApiBindingMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteFunctionApiBindingMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteFunctionDefinitionMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteFunctionDefinitionMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteFunctionDeploymentEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionDeploymentEventMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionDeploymentMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteFunctionDeploymentMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteFunctionExecutionLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionExecutionLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphCommitMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphCommitMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphExecutionMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphExecutionMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphExecutionNodeStateMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphExecutionNodeStateMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphExecutionOutputMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphExecutionOutputMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphObjectMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphObjectMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphRefMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphRefMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphStoreMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteFunctionGraphStoreMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteFunctionInvocationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteFunctionInvocationMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteOrgFunctionExecutionLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteOrgFunctionExecutionLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteOrgFunctionInvocationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteOrgFunctionInvocationMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteSecretDefinitionMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteSecretDefinitionMutation.js +39 -0
- package/compute/hooks/mutations/useImportDefinitionsMutation.d.ts +20 -0
- package/compute/hooks/mutations/useImportDefinitionsMutation.js +26 -0
- package/compute/hooks/mutations/useImportGraphJsonMutation.d.ts +20 -0
- package/compute/hooks/mutations/useImportGraphJsonMutation.js +26 -0
- package/compute/hooks/mutations/useInitEmptyRepoMutation.d.ts +20 -0
- package/compute/hooks/mutations/useInitEmptyRepoMutation.js +26 -0
- package/compute/hooks/mutations/useInsertNodeAtPathMutation.d.ts +20 -0
- package/compute/hooks/mutations/useInsertNodeAtPathMutation.js +26 -0
- package/compute/hooks/mutations/useProvisionBucketMutation.d.ts +20 -0
- package/compute/hooks/mutations/useProvisionBucketMutation.js +26 -0
- package/compute/hooks/mutations/useSaveGraphMutation.d.ts +20 -0
- package/compute/hooks/mutations/useSaveGraphMutation.js +26 -0
- package/compute/hooks/mutations/useSetDataAtPathMutation.d.ts +20 -0
- package/compute/hooks/mutations/useSetDataAtPathMutation.js +26 -0
- package/compute/hooks/mutations/useStartExecutionMutation.d.ts +20 -0
- package/compute/hooks/mutations/useStartExecutionMutation.js +26 -0
- package/compute/hooks/mutations/useUpdateFunctionApiBindingMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateFunctionApiBindingMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateFunctionDefinitionMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateFunctionDefinitionMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateFunctionDeploymentEventMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionDeploymentEventMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionDeploymentMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateFunctionDeploymentMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateFunctionExecutionLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionExecutionLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphCommitMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphCommitMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphExecutionMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphExecutionMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphExecutionNodeStateMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphExecutionNodeStateMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphExecutionOutputMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphExecutionOutputMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphObjectMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphObjectMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphRefMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphRefMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphStoreMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateFunctionGraphStoreMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateFunctionInvocationMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateFunctionInvocationMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateOrgFunctionExecutionLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateOrgFunctionExecutionLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateOrgFunctionInvocationMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateOrgFunctionInvocationMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateSecretDefinitionMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateSecretDefinitionMutation.js +40 -0
- package/compute/hooks/mutations/useValidateFunctionGraphMutation.d.ts +20 -0
- package/compute/hooks/mutations/useValidateFunctionGraphMutation.js +26 -0
- package/compute/hooks/queries/index.d.ts +41 -0
- package/compute/hooks/queries/index.js +57 -0
- package/compute/hooks/queries/useFunctionApiBindingQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionApiBindingQuery.js +53 -0
- package/compute/hooks/queries/useFunctionApiBindingsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionApiBindingsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionDefinitionQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionDefinitionQuery.js +53 -0
- package/compute/hooks/queries/useFunctionDefinitionsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionDefinitionsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionDeploymentEventQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionDeploymentEventQuery.js +53 -0
- package/compute/hooks/queries/useFunctionDeploymentEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionDeploymentEventsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionDeploymentQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionDeploymentQuery.js +53 -0
- package/compute/hooks/queries/useFunctionDeploymentsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionDeploymentsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionExecutionLogQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionExecutionLogQuery.js +53 -0
- package/compute/hooks/queries/useFunctionExecutionLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionExecutionLogsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphCommitQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphCommitQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphCommitsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphCommitsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphExecutionNodeStateQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphExecutionNodeStateQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphExecutionNodeStatesQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphExecutionNodeStatesQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphExecutionOutputQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphExecutionOutputQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphExecutionOutputsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphExecutionOutputsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphExecutionQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphExecutionQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphExecutionsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphExecutionsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphObjectQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphObjectQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphObjectsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphObjectsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphRefQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphRefQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphRefsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphRefsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphStoreQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionGraphStoreQuery.js +53 -0
- package/compute/hooks/queries/useFunctionGraphStoresQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphStoresQuery.js +38 -0
- package/compute/hooks/queries/useFunctionGraphsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionGraphsQuery.js +38 -0
- package/compute/hooks/queries/useFunctionInvocationQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionInvocationQuery.js +53 -0
- package/compute/hooks/queries/useFunctionInvocationsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionInvocationsQuery.js +38 -0
- package/compute/hooks/queries/useGetAllQuery.d.ts +69 -0
- package/compute/hooks/queries/useGetAllQuery.js +38 -0
- package/compute/hooks/queries/useOrgFunctionExecutionLogQuery.d.ts +65 -0
- package/compute/hooks/queries/useOrgFunctionExecutionLogQuery.js +53 -0
- package/compute/hooks/queries/useOrgFunctionExecutionLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/useOrgFunctionExecutionLogsQuery.js +38 -0
- package/compute/hooks/queries/useOrgFunctionInvocationQuery.d.ts +65 -0
- package/compute/hooks/queries/useOrgFunctionInvocationQuery.js +53 -0
- package/compute/hooks/queries/useOrgFunctionInvocationsQuery.d.ts +69 -0
- package/compute/hooks/queries/useOrgFunctionInvocationsQuery.js +38 -0
- package/compute/hooks/queries/useReadFunctionGraphQuery.d.ts +53 -0
- package/compute/hooks/queries/useReadFunctionGraphQuery.js +53 -0
- package/compute/hooks/queries/useSecretDefinitionQuery.d.ts +65 -0
- package/compute/hooks/queries/useSecretDefinitionQuery.js +53 -0
- package/compute/hooks/queries/useSecretDefinitionsQuery.d.ts +69 -0
- package/compute/hooks/queries/useSecretDefinitionsQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +289 -0
- package/compute/hooks/query-keys.js +198 -0
- package/compute/hooks/selection.d.ts +30 -0
- package/compute/hooks/selection.js +26 -0
- package/compute/index.d.ts +7 -0
- package/compute/index.js +23 -0
- package/compute/orm/client.d.ts +97 -0
- package/compute/orm/client.js +152 -0
- package/compute/orm/index.d.ts +148 -0
- package/compute/orm/index.js +103 -0
- package/compute/orm/input-types.d.ts +4243 -0
- package/compute/orm/input-types.js +10 -0
- package/compute/orm/models/functionApiBinding.d.ts +54 -0
- package/compute/orm/models/functionApiBinding.js +104 -0
- package/compute/orm/models/functionDefinition.d.ts +54 -0
- package/compute/orm/models/functionDefinition.js +104 -0
- package/compute/orm/models/functionDeployment.d.ts +54 -0
- package/compute/orm/models/functionDeployment.js +104 -0
- package/compute/orm/models/functionDeploymentEvent.d.ts +56 -0
- package/compute/orm/models/functionDeploymentEvent.js +107 -0
- package/compute/orm/models/functionExecutionLog.d.ts +56 -0
- package/compute/orm/models/functionExecutionLog.js +107 -0
- package/compute/orm/models/functionGraph.d.ts +54 -0
- package/compute/orm/models/functionGraph.js +104 -0
- package/compute/orm/models/functionGraphCommit.d.ts +56 -0
- package/compute/orm/models/functionGraphCommit.js +107 -0
- package/compute/orm/models/functionGraphExecution.d.ts +56 -0
- package/compute/orm/models/functionGraphExecution.js +107 -0
- package/compute/orm/models/functionGraphExecutionNodeState.d.ts +56 -0
- package/compute/orm/models/functionGraphExecutionNodeState.js +107 -0
- package/compute/orm/models/functionGraphExecutionOutput.d.ts +56 -0
- package/compute/orm/models/functionGraphExecutionOutput.js +107 -0
- package/compute/orm/models/functionGraphObject.d.ts +56 -0
- package/compute/orm/models/functionGraphObject.js +97 -0
- package/compute/orm/models/functionGraphRef.d.ts +56 -0
- package/compute/orm/models/functionGraphRef.js +107 -0
- package/compute/orm/models/functionGraphStore.d.ts +54 -0
- package/compute/orm/models/functionGraphStore.js +104 -0
- package/compute/orm/models/functionInvocation.d.ts +56 -0
- package/compute/orm/models/functionInvocation.js +107 -0
- package/compute/orm/models/getAllRecord.d.ts +30 -0
- package/compute/orm/models/getAllRecord.js +59 -0
- package/compute/orm/models/index.d.ts +23 -0
- package/compute/orm/models/index.js +44 -0
- package/compute/orm/models/orgFunctionExecutionLog.d.ts +56 -0
- package/compute/orm/models/orgFunctionExecutionLog.js +107 -0
- package/compute/orm/models/orgFunctionInvocation.d.ts +56 -0
- package/compute/orm/models/orgFunctionInvocation.js +107 -0
- package/compute/orm/models/secretDefinition.d.ts +54 -0
- package/compute/orm/models/secretDefinition.js +104 -0
- package/compute/orm/mutation/index.d.ts +130 -0
- package/compute/orm/mutation/index.js +177 -0
- package/compute/orm/query/index.d.ts +17 -0
- package/compute/orm/query/index.js +21 -0
- package/compute/orm/query-builder.d.ts +110 -0
- package/compute/orm/query-builder.js +757 -0
- package/compute/orm/realtime.d.ts +142 -0
- package/compute/orm/realtime.js +104 -0
- package/compute/orm/select-types.d.ts +125 -0
- package/compute/orm/select-types.js +2 -0
- package/compute/orm/types.d.ts +6 -0
- package/compute/orm/types.js +23 -0
- package/compute/schema-types.d.ts +2763 -0
- package/compute/schema-types.js +7 -0
- package/compute/types.d.ts +466 -0
- package/compute/types.js +2 -0
- package/config/hooks/client.d.ts +30 -0
- package/config/hooks/client.js +40 -0
- package/config/hooks/index.d.ts +39 -0
- package/config/hooks/index.js +55 -0
- package/config/hooks/invalidation.d.ts +52 -0
- package/config/hooks/invalidation.js +75 -0
- package/config/hooks/mutation-keys.d.ts +75 -0
- package/config/hooks/mutation-keys.js +94 -0
- package/config/hooks/mutations/index.d.ts +20 -0
- package/config/hooks/mutations/index.js +36 -0
- package/config/hooks/mutations/useCreatePlatformConfigDefinitionMutation.d.ts +34 -0
- package/config/hooks/mutations/useCreatePlatformConfigDefinitionMutation.js +34 -0
- package/config/hooks/mutations/useCreatePlatformConfigMutation.d.ts +34 -0
- package/config/hooks/mutations/useCreatePlatformConfigMutation.js +34 -0
- package/config/hooks/mutations/useDeletePlatformConfigDefinitionMutation.d.ts +38 -0
- package/config/hooks/mutations/useDeletePlatformConfigDefinitionMutation.js +39 -0
- package/config/hooks/mutations/useDeletePlatformConfigMutation.d.ts +38 -0
- package/config/hooks/mutations/useDeletePlatformConfigMutation.js +39 -0
- package/config/hooks/mutations/useOrgSecretsDelMutation.d.ts +20 -0
- package/config/hooks/mutations/useOrgSecretsDelMutation.js +26 -0
- package/config/hooks/mutations/useOrgSecretsRemoveArrayMutation.d.ts +20 -0
- package/config/hooks/mutations/useOrgSecretsRemoveArrayMutation.js +26 -0
- package/config/hooks/mutations/useOrgSecretsRotateMutation.d.ts +20 -0
- package/config/hooks/mutations/useOrgSecretsRotateMutation.js +26 -0
- package/config/hooks/mutations/useOrgSecretsSetMutation.d.ts +20 -0
- package/config/hooks/mutations/useOrgSecretsSetMutation.js +26 -0
- package/config/hooks/mutations/usePlatformSecretsDelMutation.d.ts +20 -0
- package/config/hooks/mutations/usePlatformSecretsDelMutation.js +26 -0
- package/config/hooks/mutations/usePlatformSecretsRemoveArrayMutation.d.ts +20 -0
- package/config/hooks/mutations/usePlatformSecretsRemoveArrayMutation.js +26 -0
- package/config/hooks/mutations/usePlatformSecretsRotateMutation.d.ts +20 -0
- package/config/hooks/mutations/usePlatformSecretsRotateMutation.js +26 -0
- package/config/hooks/mutations/usePlatformSecretsSetMutation.d.ts +20 -0
- package/config/hooks/mutations/usePlatformSecretsSetMutation.js +26 -0
- package/config/hooks/mutations/useProvisionBucketMutation.d.ts +20 -0
- package/config/hooks/mutations/useProvisionBucketMutation.js +26 -0
- package/config/hooks/mutations/useUpdatePlatformConfigDefinitionMutation.d.ts +40 -0
- package/config/hooks/mutations/useUpdatePlatformConfigDefinitionMutation.js +40 -0
- package/config/hooks/mutations/useUpdatePlatformConfigMutation.d.ts +40 -0
- package/config/hooks/mutations/useUpdatePlatformConfigMutation.js +40 -0
- package/config/hooks/queries/index.d.ts +9 -0
- package/config/hooks/queries/index.js +25 -0
- package/config/hooks/queries/usePlatformConfigDefinitionQuery.d.ts +65 -0
- package/config/hooks/queries/usePlatformConfigDefinitionQuery.js +53 -0
- package/config/hooks/queries/usePlatformConfigDefinitionsQuery.d.ts +69 -0
- package/config/hooks/queries/usePlatformConfigDefinitionsQuery.js +38 -0
- package/config/hooks/queries/usePlatformConfigQuery.d.ts +65 -0
- package/config/hooks/queries/usePlatformConfigQuery.js +53 -0
- package/config/hooks/queries/usePlatformConfigsQuery.d.ts +69 -0
- package/config/hooks/queries/usePlatformConfigsQuery.js +38 -0
- package/config/hooks/query-keys.d.ts +59 -0
- package/config/hooks/query-keys.js +61 -0
- package/config/hooks/selection.d.ts +30 -0
- package/config/hooks/selection.js +26 -0
- package/config/index.d.ts +7 -0
- package/config/index.js +23 -0
- package/config/orm/client.d.ts +97 -0
- package/config/orm/client.js +152 -0
- package/config/orm/index.d.ts +83 -0
- package/config/orm/index.js +67 -0
- package/config/orm/input-types.d.ts +719 -0
- package/config/orm/input-types.js +5 -0
- package/config/orm/models/index.d.ts +7 -0
- package/config/orm/models/index.js +12 -0
- package/config/orm/models/platformConfig.d.ts +54 -0
- package/config/orm/models/platformConfig.js +104 -0
- package/config/orm/models/platformConfigDefinition.d.ts +54 -0
- package/config/orm/models/platformConfigDefinition.js +104 -0
- package/config/orm/mutation/index.d.ts +90 -0
- package/config/orm/mutation/index.js +117 -0
- package/config/orm/query-builder.d.ts +110 -0
- package/config/orm/query-builder.js +757 -0
- package/config/orm/realtime.d.ts +142 -0
- package/config/orm/realtime.js +104 -0
- package/config/orm/select-types.d.ts +125 -0
- package/config/orm/select-types.js +2 -0
- package/config/orm/types.d.ts +6 -0
- package/config/orm/types.js +23 -0
- package/config/schema-types.d.ts +562 -0
- package/config/schema-types.js +7 -0
- package/config/types.d.ts +252 -0
- package/config/types.js +2 -0
- package/esm/admin/orm/models/appAdminGrant.js +1 -1
- package/esm/admin/orm/models/appClaimedInvite.js +1 -1
- package/esm/admin/orm/models/appGrant.js +1 -1
- package/esm/admin/orm/models/appInvite.js +1 -1
- package/esm/admin/orm/models/appMembership.js +1 -1
- package/esm/admin/orm/models/appMembershipDefault.js +1 -1
- package/esm/admin/orm/models/appOwnerGrant.js +1 -1
- package/esm/admin/orm/models/appPermission.js +1 -1
- package/esm/admin/orm/models/appPermissionDefault.js +1 -1
- package/esm/admin/orm/models/appPermissionDefaultGrant.js +1 -1
- package/esm/admin/orm/models/appPermissionDefaultPermission.js +1 -1
- package/esm/admin/orm/models/membershipType.js +1 -1
- package/esm/admin/orm/models/orgAdminGrant.js +1 -1
- package/esm/admin/orm/models/orgChartEdge.js +1 -1
- package/esm/admin/orm/models/orgChartEdgeGrant.js +1 -1
- package/esm/admin/orm/models/orgClaimedInvite.js +1 -1
- package/esm/admin/orm/models/orgGrant.js +1 -1
- package/esm/admin/orm/models/orgInvite.js +1 -1
- package/esm/admin/orm/models/orgMember.js +1 -1
- package/esm/admin/orm/models/orgMemberProfile.js +1 -1
- package/esm/admin/orm/models/orgMembership.js +1 -1
- package/esm/admin/orm/models/orgMembershipDefault.js +1 -1
- package/esm/admin/orm/models/orgMembershipSetting.js +1 -1
- package/esm/admin/orm/models/orgOwnerGrant.js +1 -1
- package/esm/admin/orm/models/orgPermission.js +1 -1
- package/esm/admin/orm/models/orgPermissionDefault.js +1 -1
- package/esm/admin/orm/models/orgPermissionDefaultGrant.js +1 -1
- package/esm/admin/orm/models/orgPermissionDefaultPermission.js +1 -1
- package/esm/admin/orm/query-builder.d.ts +1 -1
- package/esm/admin/orm/query-builder.js +2 -1
- package/esm/admin/schema-types.d.ts +72 -0
- package/esm/agent/orm/input-types.d.ts +14 -2
- package/esm/agent/orm/models/agent.js +1 -1
- package/esm/agent/orm/models/agentMessage.js +1 -1
- package/esm/agent/orm/models/agentPersona.js +1 -1
- package/esm/agent/orm/models/agentPlan.js +1 -1
- package/esm/agent/orm/models/agentPrompt.js +1 -1
- package/esm/agent/orm/models/agentResource.js +1 -1
- package/esm/agent/orm/models/agentResourceChunk.js +1 -1
- package/esm/agent/orm/models/agentTask.js +1 -1
- package/esm/agent/orm/models/agentThread.js +1 -1
- package/esm/agent/orm/query-builder.d.ts +1 -1
- package/esm/agent/orm/query-builder.js +2 -1
- package/esm/agent/schema-types.d.ts +84 -1
- package/esm/api/orm/input-types.d.ts +36 -1
- package/esm/api/orm/models/api.js +1 -1
- package/esm/api/orm/models/apiModule.js +1 -1
- package/esm/api/orm/models/apiSchema.js +1 -1
- package/esm/api/orm/models/apiSetting.js +1 -1
- package/esm/api/orm/models/app.js +1 -1
- package/esm/api/orm/models/checkConstraint.js +1 -1
- package/esm/api/orm/models/compositeType.js +1 -1
- package/esm/api/orm/models/corsSetting.js +1 -1
- package/esm/api/orm/models/database.js +1 -1
- package/esm/api/orm/models/databaseSetting.js +1 -1
- package/esm/api/orm/models/databaseTransfer.js +1 -1
- package/esm/api/orm/models/defaultPrivilege.js +1 -1
- package/esm/api/orm/models/domain.js +1 -1
- package/esm/api/orm/models/embeddingChunk.js +1 -1
- package/esm/api/orm/models/enum.js +1 -1
- package/esm/api/orm/models/field.js +1 -1
- package/esm/api/orm/models/foreignKeyConstraint.js +1 -1
- package/esm/api/orm/models/fullTextSearch.js +1 -1
- package/esm/api/orm/models/function.js +1 -1
- package/esm/api/orm/models/indexModel.js +1 -1
- package/esm/api/orm/models/nodeTypeRegistry.js +1 -1
- package/esm/api/orm/models/partition.js +1 -1
- package/esm/api/orm/models/policy.js +1 -1
- package/esm/api/orm/models/primaryKeyConstraint.js +1 -1
- package/esm/api/orm/models/pubkeySetting.js +1 -1
- package/esm/api/orm/models/rlsSetting.js +1 -1
- package/esm/api/orm/models/schema.js +1 -1
- package/esm/api/orm/models/schemaGrant.js +1 -1
- package/esm/api/orm/models/site.js +1 -1
- package/esm/api/orm/models/siteMetadatum.js +1 -1
- package/esm/api/orm/models/siteModule.js +1 -1
- package/esm/api/orm/models/siteTheme.js +1 -1
- package/esm/api/orm/models/spatialRelation.js +1 -1
- package/esm/api/orm/models/table.js +1 -1
- package/esm/api/orm/models/tableGrant.js +1 -1
- package/esm/api/orm/models/trigger.js +1 -1
- package/esm/api/orm/models/triggerFunction.js +1 -1
- package/esm/api/orm/models/uniqueConstraint.js +1 -1
- package/esm/api/orm/models/view.js +1 -1
- package/esm/api/orm/models/viewGrant.js +1 -1
- package/esm/api/orm/models/viewRule.js +1 -1
- package/esm/api/orm/models/viewTable.js +1 -1
- package/esm/api/orm/models/webauthnSetting.js +1 -1
- package/esm/api/orm/query-builder.d.ts +1 -1
- package/esm/api/orm/query-builder.js +2 -1
- package/esm/api/schema-types.d.ts +181 -79
- package/esm/api/types.d.ts +2 -1
- package/esm/auth/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +2 -0
- package/esm/auth/hooks/mutations/useDeleteAuditLogAuthMutation.js +2 -1
- package/esm/auth/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +2 -0
- package/esm/auth/hooks/mutations/useUpdateAuditLogAuthMutation.js +2 -1
- package/esm/auth/orm/input-types.d.ts +4 -2
- package/esm/auth/orm/models/auditLogAuth.d.ts +2 -0
- package/esm/auth/orm/models/auditLogAuth.js +4 -1
- package/esm/auth/orm/models/cryptoAddress.js +1 -1
- package/esm/auth/orm/models/email.js +1 -1
- package/esm/auth/orm/models/phoneNumber.js +1 -1
- package/esm/auth/orm/models/roleType.js +1 -1
- package/esm/auth/orm/models/user.js +1 -1
- package/esm/auth/orm/models/webauthnCredential.js +1 -1
- package/esm/auth/orm/query-builder.d.ts +1 -1
- package/esm/auth/orm/query-builder.js +2 -1
- package/esm/auth/schema-types.d.ts +74 -1
- package/esm/compute/hooks/client.d.ts +30 -0
- package/esm/compute/hooks/client.js +34 -0
- package/esm/compute/hooks/index.d.ts +39 -0
- package/esm/compute/hooks/index.js +39 -0
- package/esm/compute/hooks/invalidation.d.ts +148 -0
- package/esm/compute/hooks/invalidation.js +328 -0
- package/esm/compute/hooks/mutation-keys.d.ts +277 -0
- package/esm/compute/hooks/mutation-keys.js +233 -0
- package/esm/compute/hooks/mutations/index.d.ts +71 -0
- package/esm/compute/hooks/mutations/index.js +71 -0
- package/esm/compute/hooks/mutations/useAddEdgeAndSaveMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useAddEdgeAndSaveMutation.js +23 -0
- package/esm/compute/hooks/mutations/useAddEdgeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useAddEdgeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useAddNodeAndSaveMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useAddNodeAndSaveMutation.js +23 -0
- package/esm/compute/hooks/mutations/useAddNodeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useAddNodeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useCopyGraphMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useCopyGraphMutation.js +23 -0
- package/esm/compute/hooks/mutations/useCreateFunctionApiBindingMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionApiBindingMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionDefinitionMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionDefinitionMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionDeploymentEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionDeploymentEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionDeploymentMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionDeploymentMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionExecutionLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionExecutionLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphCommitMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphCommitMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphExecutionMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphExecutionMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphExecutionNodeStateMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphExecutionNodeStateMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphExecutionOutputMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphExecutionOutputMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphObjectMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphObjectMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphRefMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphRefMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphStoreMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionGraphStoreMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateFunctionInvocationMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionInvocationMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateGetAllRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateOrgFunctionExecutionLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateOrgFunctionExecutionLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateOrgFunctionInvocationMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateOrgFunctionInvocationMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateSecretDefinitionMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateSecretDefinitionMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionApiBindingMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionApiBindingMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionDefinitionMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionDefinitionMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionDeploymentEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionDeploymentEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionDeploymentMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionDeploymentMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionExecutionLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionExecutionLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphCommitMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphCommitMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphExecutionMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphExecutionMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphExecutionNodeStateMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphExecutionNodeStateMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphExecutionOutputMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphExecutionOutputMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphObjectMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphObjectMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphRefMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphRefMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphStoreMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionGraphStoreMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionInvocationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionInvocationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteOrgFunctionExecutionLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteOrgFunctionExecutionLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteOrgFunctionInvocationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteOrgFunctionInvocationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteSecretDefinitionMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteSecretDefinitionMutation.js +36 -0
- package/esm/compute/hooks/mutations/useImportDefinitionsMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useImportDefinitionsMutation.js +23 -0
- package/esm/compute/hooks/mutations/useImportGraphJsonMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useImportGraphJsonMutation.js +23 -0
- package/esm/compute/hooks/mutations/useInitEmptyRepoMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useInitEmptyRepoMutation.js +23 -0
- package/esm/compute/hooks/mutations/useInsertNodeAtPathMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useInsertNodeAtPathMutation.js +23 -0
- package/esm/compute/hooks/mutations/useProvisionBucketMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useProvisionBucketMutation.js +23 -0
- package/esm/compute/hooks/mutations/useSaveGraphMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useSaveGraphMutation.js +23 -0
- package/esm/compute/hooks/mutations/useSetDataAtPathMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useSetDataAtPathMutation.js +23 -0
- package/esm/compute/hooks/mutations/useStartExecutionMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useStartExecutionMutation.js +23 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionApiBindingMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionApiBindingMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionDefinitionMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionDefinitionMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionDeploymentEventMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionDeploymentEventMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionDeploymentMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionDeploymentMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionExecutionLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionExecutionLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphCommitMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphCommitMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphExecutionMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphExecutionMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphExecutionNodeStateMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphExecutionNodeStateMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphExecutionOutputMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphExecutionOutputMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphObjectMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphObjectMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphRefMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphRefMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphStoreMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionGraphStoreMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionInvocationMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionInvocationMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateOrgFunctionExecutionLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateOrgFunctionExecutionLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateOrgFunctionInvocationMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateOrgFunctionInvocationMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateSecretDefinitionMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateSecretDefinitionMutation.js +37 -0
- package/esm/compute/hooks/mutations/useValidateFunctionGraphMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useValidateFunctionGraphMutation.js +23 -0
- package/esm/compute/hooks/queries/index.d.ts +41 -0
- package/esm/compute/hooks/queries/index.js +41 -0
- package/esm/compute/hooks/queries/useFunctionApiBindingQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionApiBindingQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionApiBindingsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionApiBindingsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionDefinitionQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionDefinitionQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionDefinitionsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionDefinitionsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentEventQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionDeploymentsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionExecutionLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionExecutionLogQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionExecutionLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionExecutionLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphCommitQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphCommitQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphCommitsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphCommitsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionNodeStateQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionNodeStateQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionNodeStatesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionNodeStatesQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionOutputQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionOutputQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionOutputsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionOutputsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphExecutionsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphObjectQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphObjectQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphObjectsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphObjectsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphRefQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphRefQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphRefsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphRefsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphStoreQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionGraphStoreQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionGraphStoresQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphStoresQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionGraphsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionGraphsQuery.js +32 -0
- package/esm/compute/hooks/queries/useFunctionInvocationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionInvocationQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionInvocationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionInvocationsQuery.js +32 -0
- package/esm/compute/hooks/queries/useGetAllQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useGetAllQuery.js +32 -0
- package/esm/compute/hooks/queries/useOrgFunctionExecutionLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useOrgFunctionExecutionLogQuery.js +47 -0
- package/esm/compute/hooks/queries/useOrgFunctionExecutionLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useOrgFunctionExecutionLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/useOrgFunctionInvocationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useOrgFunctionInvocationQuery.js +47 -0
- package/esm/compute/hooks/queries/useOrgFunctionInvocationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useOrgFunctionInvocationsQuery.js +32 -0
- package/esm/compute/hooks/queries/useReadFunctionGraphQuery.d.ts +53 -0
- package/esm/compute/hooks/queries/useReadFunctionGraphQuery.js +47 -0
- package/esm/compute/hooks/queries/useSecretDefinitionQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useSecretDefinitionQuery.js +47 -0
- package/esm/compute/hooks/queries/useSecretDefinitionsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useSecretDefinitionsQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +289 -0
- package/esm/compute/hooks/query-keys.js +195 -0
- package/esm/compute/hooks/selection.d.ts +30 -0
- package/esm/compute/hooks/selection.js +22 -0
- package/esm/compute/index.d.ts +7 -0
- package/esm/compute/index.js +7 -0
- package/esm/compute/orm/client.d.ts +97 -0
- package/esm/compute/orm/client.js +145 -0
- package/esm/compute/orm/index.d.ts +148 -0
- package/esm/compute/orm/index.js +80 -0
- package/esm/compute/orm/input-types.d.ts +4243 -0
- package/esm/compute/orm/input-types.js +7 -0
- package/esm/compute/orm/models/functionApiBinding.d.ts +54 -0
- package/esm/compute/orm/models/functionApiBinding.js +100 -0
- package/esm/compute/orm/models/functionDefinition.d.ts +54 -0
- package/esm/compute/orm/models/functionDefinition.js +100 -0
- package/esm/compute/orm/models/functionDeployment.d.ts +54 -0
- package/esm/compute/orm/models/functionDeployment.js +100 -0
- package/esm/compute/orm/models/functionDeploymentEvent.d.ts +56 -0
- package/esm/compute/orm/models/functionDeploymentEvent.js +103 -0
- package/esm/compute/orm/models/functionExecutionLog.d.ts +56 -0
- package/esm/compute/orm/models/functionExecutionLog.js +103 -0
- package/esm/compute/orm/models/functionGraph.d.ts +54 -0
- package/esm/compute/orm/models/functionGraph.js +100 -0
- package/esm/compute/orm/models/functionGraphCommit.d.ts +56 -0
- package/esm/compute/orm/models/functionGraphCommit.js +103 -0
- package/esm/compute/orm/models/functionGraphExecution.d.ts +56 -0
- package/esm/compute/orm/models/functionGraphExecution.js +103 -0
- package/esm/compute/orm/models/functionGraphExecutionNodeState.d.ts +56 -0
- package/esm/compute/orm/models/functionGraphExecutionNodeState.js +103 -0
- package/esm/compute/orm/models/functionGraphExecutionOutput.d.ts +56 -0
- package/esm/compute/orm/models/functionGraphExecutionOutput.js +103 -0
- package/esm/compute/orm/models/functionGraphObject.d.ts +56 -0
- package/esm/compute/orm/models/functionGraphObject.js +93 -0
- package/esm/compute/orm/models/functionGraphRef.d.ts +56 -0
- package/esm/compute/orm/models/functionGraphRef.js +103 -0
- package/esm/compute/orm/models/functionGraphStore.d.ts +54 -0
- package/esm/compute/orm/models/functionGraphStore.js +100 -0
- package/esm/compute/orm/models/functionInvocation.d.ts +56 -0
- package/esm/compute/orm/models/functionInvocation.js +103 -0
- package/esm/compute/orm/models/getAllRecord.d.ts +30 -0
- package/esm/compute/orm/models/getAllRecord.js +55 -0
- package/esm/compute/orm/models/index.d.ts +23 -0
- package/esm/compute/orm/models/index.js +23 -0
- package/esm/compute/orm/models/orgFunctionExecutionLog.d.ts +56 -0
- package/esm/compute/orm/models/orgFunctionExecutionLog.js +103 -0
- package/esm/compute/orm/models/orgFunctionInvocation.d.ts +56 -0
- package/esm/compute/orm/models/orgFunctionInvocation.js +103 -0
- package/esm/compute/orm/models/secretDefinition.d.ts +54 -0
- package/esm/compute/orm/models/secretDefinition.js +100 -0
- package/esm/compute/orm/mutation/index.d.ts +130 -0
- package/esm/compute/orm/mutation/index.js +174 -0
- package/esm/compute/orm/query/index.d.ts +17 -0
- package/esm/compute/orm/query/index.js +18 -0
- package/esm/compute/orm/query-builder.d.ts +110 -0
- package/esm/compute/orm/query-builder.js +705 -0
- package/esm/compute/orm/realtime.d.ts +142 -0
- package/esm/compute/orm/realtime.js +100 -0
- package/esm/compute/orm/select-types.d.ts +125 -0
- package/esm/compute/orm/select-types.js +1 -0
- package/esm/compute/orm/types.d.ts +6 -0
- package/esm/compute/orm/types.js +7 -0
- package/esm/compute/schema-types.d.ts +2763 -0
- package/esm/compute/schema-types.js +6 -0
- package/esm/compute/types.d.ts +466 -0
- package/esm/compute/types.js +1 -0
- package/esm/config/hooks/client.d.ts +30 -0
- package/esm/config/hooks/client.js +34 -0
- package/esm/config/hooks/index.d.ts +39 -0
- package/esm/config/hooks/index.js +39 -0
- package/esm/config/hooks/invalidation.d.ts +52 -0
- package/esm/config/hooks/invalidation.js +72 -0
- package/esm/config/hooks/mutation-keys.d.ts +75 -0
- package/esm/config/hooks/mutation-keys.js +91 -0
- package/esm/config/hooks/mutations/index.d.ts +20 -0
- package/esm/config/hooks/mutations/index.js +20 -0
- package/esm/config/hooks/mutations/useCreatePlatformConfigDefinitionMutation.d.ts +34 -0
- package/esm/config/hooks/mutations/useCreatePlatformConfigDefinitionMutation.js +31 -0
- package/esm/config/hooks/mutations/useCreatePlatformConfigMutation.d.ts +34 -0
- package/esm/config/hooks/mutations/useCreatePlatformConfigMutation.js +31 -0
- package/esm/config/hooks/mutations/useDeletePlatformConfigDefinitionMutation.d.ts +38 -0
- package/esm/config/hooks/mutations/useDeletePlatformConfigDefinitionMutation.js +36 -0
- package/esm/config/hooks/mutations/useDeletePlatformConfigMutation.d.ts +38 -0
- package/esm/config/hooks/mutations/useDeletePlatformConfigMutation.js +36 -0
- package/esm/config/hooks/mutations/useOrgSecretsDelMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/useOrgSecretsDelMutation.js +23 -0
- package/esm/config/hooks/mutations/useOrgSecretsRemoveArrayMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/useOrgSecretsRemoveArrayMutation.js +23 -0
- package/esm/config/hooks/mutations/useOrgSecretsRotateMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/useOrgSecretsRotateMutation.js +23 -0
- package/esm/config/hooks/mutations/useOrgSecretsSetMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/useOrgSecretsSetMutation.js +23 -0
- package/esm/config/hooks/mutations/usePlatformSecretsDelMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/usePlatformSecretsDelMutation.js +23 -0
- package/esm/config/hooks/mutations/usePlatformSecretsRemoveArrayMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/usePlatformSecretsRemoveArrayMutation.js +23 -0
- package/esm/config/hooks/mutations/usePlatformSecretsRotateMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/usePlatformSecretsRotateMutation.js +23 -0
- package/esm/config/hooks/mutations/usePlatformSecretsSetMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/usePlatformSecretsSetMutation.js +23 -0
- package/esm/config/hooks/mutations/useProvisionBucketMutation.d.ts +20 -0
- package/esm/config/hooks/mutations/useProvisionBucketMutation.js +23 -0
- package/esm/config/hooks/mutations/useUpdatePlatformConfigDefinitionMutation.d.ts +40 -0
- package/esm/config/hooks/mutations/useUpdatePlatformConfigDefinitionMutation.js +37 -0
- package/esm/config/hooks/mutations/useUpdatePlatformConfigMutation.d.ts +40 -0
- package/esm/config/hooks/mutations/useUpdatePlatformConfigMutation.js +37 -0
- package/esm/config/hooks/queries/index.d.ts +9 -0
- package/esm/config/hooks/queries/index.js +9 -0
- package/esm/config/hooks/queries/usePlatformConfigDefinitionQuery.d.ts +65 -0
- package/esm/config/hooks/queries/usePlatformConfigDefinitionQuery.js +47 -0
- package/esm/config/hooks/queries/usePlatformConfigDefinitionsQuery.d.ts +69 -0
- package/esm/config/hooks/queries/usePlatformConfigDefinitionsQuery.js +32 -0
- package/esm/config/hooks/queries/usePlatformConfigQuery.d.ts +65 -0
- package/esm/config/hooks/queries/usePlatformConfigQuery.js +47 -0
- package/esm/config/hooks/queries/usePlatformConfigsQuery.d.ts +69 -0
- package/esm/config/hooks/queries/usePlatformConfigsQuery.js +32 -0
- package/esm/config/hooks/query-keys.d.ts +59 -0
- package/esm/config/hooks/query-keys.js +58 -0
- package/esm/config/hooks/selection.d.ts +30 -0
- package/esm/config/hooks/selection.js +22 -0
- package/esm/config/index.d.ts +7 -0
- package/esm/config/index.js +7 -0
- package/esm/config/orm/client.d.ts +97 -0
- package/esm/config/orm/client.js +145 -0
- package/esm/config/orm/index.d.ts +83 -0
- package/esm/config/orm/index.js +45 -0
- package/esm/config/orm/input-types.d.ts +719 -0
- package/esm/config/orm/input-types.js +2 -0
- package/esm/config/orm/models/index.d.ts +7 -0
- package/esm/config/orm/models/index.js +7 -0
- package/esm/config/orm/models/platformConfig.d.ts +54 -0
- package/esm/config/orm/models/platformConfig.js +100 -0
- package/esm/config/orm/models/platformConfigDefinition.d.ts +54 -0
- package/esm/config/orm/models/platformConfigDefinition.js +100 -0
- package/esm/config/orm/mutation/index.d.ts +90 -0
- package/esm/config/orm/mutation/index.js +114 -0
- package/esm/config/orm/query-builder.d.ts +110 -0
- package/esm/config/orm/query-builder.js +705 -0
- package/esm/config/orm/realtime.d.ts +142 -0
- package/esm/config/orm/realtime.js +100 -0
- package/esm/config/orm/select-types.d.ts +125 -0
- package/esm/config/orm/select-types.js +1 -0
- package/esm/config/orm/types.d.ts +6 -0
- package/esm/config/orm/types.js +7 -0
- package/esm/config/schema-types.d.ts +562 -0
- package/esm/config/schema-types.js +6 -0
- package/esm/config/types.d.ts +252 -0
- package/esm/config/types.js +1 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.js +2 -0
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +18 -6
- package/esm/modules/hooks/invalidation.js +49 -17
- package/esm/modules/hooks/mutation-keys.d.ts +36 -12
- package/esm/modules/hooks/mutation-keys.js +24 -7
- package/esm/modules/hooks/mutations/index.d.ts +9 -3
- package/esm/modules/hooks/mutations/index.js +9 -3
- package/esm/modules/hooks/mutations/useCreateFunctionDeploymentModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreateFunctionDeploymentModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useCreateGraphExecutionModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreateGraphExecutionModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useDeleteFunctionDeploymentModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteFunctionDeploymentModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useDeleteGraphExecutionModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteGraphExecutionModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdateFunctionDeploymentModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateFunctionDeploymentModuleMutation.js +37 -0
- package/esm/modules/hooks/mutations/useUpdateGraphExecutionModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateGraphExecutionModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +6 -2
- package/esm/modules/hooks/queries/index.js +6 -2
- package/esm/modules/hooks/queries/useFunctionDeploymentModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useFunctionDeploymentModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useFunctionDeploymentModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/useFunctionDeploymentModulesQuery.js +32 -0
- package/esm/modules/hooks/queries/useGraphExecutionModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useGraphExecutionModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useGraphExecutionModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/useGraphExecutionModulesQuery.js +32 -0
- package/esm/modules/hooks/query-keys.d.ts +42 -14
- package/esm/modules/hooks/query-keys.js +24 -8
- package/esm/modules/orm/index.d.ts +6 -2
- package/esm/modules/orm/index.js +6 -2
- package/esm/modules/orm/input-types.d.ts +722 -239
- package/esm/modules/orm/models/agentModule.js +1 -1
- package/esm/modules/orm/models/billingModule.js +1 -1
- package/esm/modules/orm/models/billingProviderModule.js +1 -1
- package/esm/modules/orm/models/blueprint.js +1 -1
- package/esm/modules/orm/models/blueprintConstruction.js +1 -1
- package/esm/modules/orm/models/blueprintTemplate.js +1 -1
- package/esm/modules/orm/models/computeLogModule.js +1 -1
- package/esm/modules/orm/models/configSecretsModule.js +1 -1
- package/esm/modules/orm/models/configSecretsOrgModule.js +1 -1
- package/esm/modules/orm/models/configSecretsUserModule.js +1 -1
- package/esm/modules/orm/models/connectedAccountsModule.js +1 -1
- package/esm/modules/orm/models/cryptoAddressesModule.js +1 -1
- package/esm/modules/orm/models/cryptoAuthModule.js +1 -1
- package/esm/modules/orm/models/databaseProvisionModule.js +1 -1
- package/esm/modules/orm/models/dbUsageModule.js +1 -1
- package/esm/modules/orm/models/defaultIdsModule.js +1 -1
- package/esm/modules/orm/models/denormalizedTableField.js +1 -1
- package/esm/modules/orm/models/devicesModule.js +1 -1
- package/esm/modules/orm/models/emailsModule.js +1 -1
- package/esm/modules/orm/models/entityTypeProvision.js +1 -1
- package/esm/modules/orm/models/eventsModule.js +1 -1
- package/esm/modules/orm/models/functionDeploymentModule.d.ts +54 -0
- package/esm/modules/orm/models/functionDeploymentModule.js +100 -0
- package/esm/modules/orm/models/functionInvocationModule.js +1 -1
- package/esm/modules/orm/models/functionModule.js +1 -1
- package/esm/modules/orm/models/graphExecutionModule.d.ts +54 -0
- package/esm/modules/orm/models/graphExecutionModule.js +100 -0
- package/esm/modules/orm/models/graphModule.js +1 -1
- package/esm/modules/orm/models/hierarchyModule.js +1 -1
- package/esm/modules/orm/models/i18NModule.js +1 -1
- package/esm/modules/orm/models/identityProvidersModule.js +1 -1
- package/esm/modules/orm/models/index.d.ts +3 -1
- package/esm/modules/orm/models/index.js +3 -1
- package/esm/modules/orm/models/inferenceLogModule.js +1 -1
- package/esm/modules/orm/models/invitesModule.js +1 -1
- package/esm/modules/orm/models/limitsModule.js +1 -1
- package/esm/modules/orm/models/membershipTypesModule.js +1 -1
- package/esm/modules/orm/models/membershipsModule.js +1 -1
- package/esm/modules/orm/models/merkleStoreModule.js +1 -1
- package/esm/modules/orm/models/namespaceModule.js +1 -1
- package/esm/modules/orm/models/notificationsModule.js +1 -1
- package/esm/modules/orm/models/permissionsModule.js +1 -1
- package/esm/modules/orm/models/phoneNumbersModule.js +1 -1
- package/esm/modules/orm/models/plansModule.js +1 -1
- package/esm/modules/orm/models/profilesModule.js +1 -1
- package/esm/modules/orm/models/rateLimitMetersModule.js +1 -1
- package/esm/modules/orm/models/rateLimitsModule.js +1 -1
- package/esm/modules/orm/models/realtimeModule.js +1 -1
- package/esm/modules/orm/models/relationProvision.js +1 -1
- package/esm/modules/orm/models/rlsModule.js +1 -1
- package/esm/modules/orm/models/secureTableProvision.js +1 -1
- package/esm/modules/orm/models/sessionSecretsModule.js +1 -1
- package/esm/modules/orm/models/sessionsModule.js +1 -1
- package/esm/modules/orm/models/storageLogModule.js +1 -1
- package/esm/modules/orm/models/storageModule.js +1 -1
- package/esm/modules/orm/models/transferLogModule.js +1 -1
- package/esm/modules/orm/models/userAuthModule.js +1 -1
- package/esm/modules/orm/models/userCredentialsModule.js +1 -1
- package/esm/modules/orm/models/userSettingsModule.js +1 -1
- package/esm/modules/orm/models/userStateModule.js +1 -1
- package/esm/modules/orm/models/usersModule.js +1 -1
- package/esm/modules/orm/models/webauthnAuthModule.js +1 -1
- package/esm/modules/orm/models/webauthnCredentialsModule.js +1 -1
- package/esm/modules/orm/query-builder.d.ts +1 -1
- package/esm/modules/orm/query-builder.js +2 -1
- package/esm/modules/schema-types.d.ts +608 -236
- package/esm/modules/types.d.ts +67 -22
- package/esm/objects/hooks/mutations/useDeleteCommitMutation.d.ts +2 -0
- package/esm/objects/hooks/mutations/useDeleteCommitMutation.js +2 -1
- package/esm/objects/hooks/mutations/useDeleteObjectMutation.d.ts +2 -0
- package/esm/objects/hooks/mutations/useDeleteObjectMutation.js +2 -1
- package/esm/objects/hooks/mutations/useDeleteRefMutation.d.ts +2 -0
- package/esm/objects/hooks/mutations/useDeleteRefMutation.js +2 -1
- package/esm/objects/hooks/mutations/useUpdateCommitMutation.d.ts +2 -0
- package/esm/objects/hooks/mutations/useUpdateCommitMutation.js +2 -1
- package/esm/objects/hooks/mutations/useUpdateObjectMutation.d.ts +2 -0
- package/esm/objects/hooks/mutations/useUpdateObjectMutation.js +2 -1
- package/esm/objects/hooks/mutations/useUpdateRefMutation.d.ts +2 -0
- package/esm/objects/hooks/mutations/useUpdateRefMutation.js +2 -1
- package/esm/objects/orm/models/commit.d.ts +2 -0
- package/esm/objects/orm/models/commit.js +4 -1
- package/esm/objects/orm/models/object.d.ts +2 -0
- package/esm/objects/orm/models/object.js +4 -1
- package/esm/objects/orm/models/ref.d.ts +2 -0
- package/esm/objects/orm/models/ref.js +4 -1
- package/esm/objects/orm/models/store.js +1 -1
- package/esm/objects/orm/query-builder.d.ts +1 -1
- package/esm/objects/orm/query-builder.js +2 -1
- package/esm/objects/schema-types.d.ts +72 -0
- package/esm/usage/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +2 -0
- package/esm/usage/hooks/mutations/useDeleteAppLimitEventMutation.js +2 -1
- package/esm/usage/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +2 -0
- package/esm/usage/hooks/mutations/useDeleteOrgLimitEventMutation.js +2 -1
- package/esm/usage/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +2 -0
- package/esm/usage/hooks/mutations/useUpdateAppLimitEventMutation.js +2 -1
- package/esm/usage/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +2 -0
- package/esm/usage/hooks/mutations/useUpdateOrgLimitEventMutation.js +2 -1
- package/esm/usage/orm/models/appLimit.js +1 -1
- package/esm/usage/orm/models/appLimitCap.js +1 -1
- package/esm/usage/orm/models/appLimitCapsDefault.js +1 -1
- package/esm/usage/orm/models/appLimitCredit.js +1 -1
- package/esm/usage/orm/models/appLimitCreditCode.js +1 -1
- package/esm/usage/orm/models/appLimitCreditCodeItem.js +1 -1
- package/esm/usage/orm/models/appLimitCreditRedemption.js +1 -1
- package/esm/usage/orm/models/appLimitDefault.js +1 -1
- package/esm/usage/orm/models/appLimitEvent.d.ts +2 -0
- package/esm/usage/orm/models/appLimitEvent.js +4 -1
- package/esm/usage/orm/models/appLimitWarning.js +1 -1
- package/esm/usage/orm/models/orgLimit.js +1 -1
- package/esm/usage/orm/models/orgLimitAggregate.js +1 -1
- package/esm/usage/orm/models/orgLimitCap.js +1 -1
- package/esm/usage/orm/models/orgLimitCapsDefault.js +1 -1
- package/esm/usage/orm/models/orgLimitCredit.js +1 -1
- package/esm/usage/orm/models/orgLimitDefault.js +1 -1
- package/esm/usage/orm/models/orgLimitEvent.d.ts +2 -0
- package/esm/usage/orm/models/orgLimitEvent.js +4 -1
- package/esm/usage/orm/models/orgLimitWarning.js +1 -1
- package/esm/usage/orm/query-builder.d.ts +1 -1
- package/esm/usage/orm/query-builder.js +2 -1
- package/esm/usage/schema-types.d.ts +72 -0
- package/index.d.ts +2 -0
- package/index.js +3 -1
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +18 -6
- package/modules/hooks/invalidation.js +48 -16
- package/modules/hooks/mutation-keys.d.ts +36 -12
- package/modules/hooks/mutation-keys.js +26 -9
- package/modules/hooks/mutations/index.d.ts +9 -3
- package/modules/hooks/mutations/index.js +9 -3
- package/modules/hooks/mutations/useCreateFunctionDeploymentModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateFunctionDeploymentModuleMutation.js +34 -0
- package/modules/hooks/mutations/useCreateGraphExecutionModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateGraphExecutionModuleMutation.js +34 -0
- package/modules/hooks/mutations/useDeleteFunctionDeploymentModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteFunctionDeploymentModuleMutation.js +39 -0
- package/modules/hooks/mutations/useDeleteGraphExecutionModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteGraphExecutionModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdateFunctionDeploymentModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateFunctionDeploymentModuleMutation.js +40 -0
- package/modules/hooks/mutations/useUpdateGraphExecutionModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateGraphExecutionModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +6 -2
- package/modules/hooks/queries/index.js +6 -2
- package/modules/hooks/queries/useFunctionDeploymentModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useFunctionDeploymentModuleQuery.js +53 -0
- package/modules/hooks/queries/useFunctionDeploymentModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useFunctionDeploymentModulesQuery.js +38 -0
- package/modules/hooks/queries/useGraphExecutionModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useGraphExecutionModuleQuery.js +53 -0
- package/modules/hooks/queries/useGraphExecutionModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useGraphExecutionModulesQuery.js +38 -0
- package/modules/hooks/query-keys.d.ts +42 -14
- package/modules/hooks/query-keys.js +26 -10
- package/modules/orm/index.d.ts +6 -2
- package/modules/orm/index.js +6 -2
- package/modules/orm/input-types.d.ts +722 -239
- package/modules/orm/models/agentModule.js +1 -1
- package/modules/orm/models/billingModule.js +1 -1
- package/modules/orm/models/billingProviderModule.js +1 -1
- package/modules/orm/models/blueprint.js +1 -1
- package/modules/orm/models/blueprintConstruction.js +1 -1
- package/modules/orm/models/blueprintTemplate.js +1 -1
- package/modules/orm/models/computeLogModule.js +1 -1
- package/modules/orm/models/configSecretsModule.js +1 -1
- package/modules/orm/models/configSecretsOrgModule.js +1 -1
- package/modules/orm/models/configSecretsUserModule.js +1 -1
- package/modules/orm/models/connectedAccountsModule.js +1 -1
- package/modules/orm/models/cryptoAddressesModule.js +1 -1
- package/modules/orm/models/cryptoAuthModule.js +1 -1
- package/modules/orm/models/databaseProvisionModule.js +1 -1
- package/modules/orm/models/dbUsageModule.js +1 -1
- package/modules/orm/models/defaultIdsModule.js +1 -1
- package/modules/orm/models/denormalizedTableField.js +1 -1
- package/modules/orm/models/devicesModule.js +1 -1
- package/modules/orm/models/emailsModule.js +1 -1
- package/modules/orm/models/entityTypeProvision.js +1 -1
- package/modules/orm/models/eventsModule.js +1 -1
- package/modules/orm/models/functionDeploymentModule.d.ts +54 -0
- package/modules/orm/models/functionDeploymentModule.js +104 -0
- package/modules/orm/models/functionInvocationModule.js +1 -1
- package/modules/orm/models/functionModule.js +1 -1
- package/modules/orm/models/graphExecutionModule.d.ts +54 -0
- package/modules/orm/models/graphExecutionModule.js +104 -0
- package/modules/orm/models/graphModule.js +1 -1
- package/modules/orm/models/hierarchyModule.js +1 -1
- package/modules/orm/models/i18NModule.js +1 -1
- package/modules/orm/models/identityProvidersModule.js +1 -1
- package/modules/orm/models/index.d.ts +3 -1
- package/modules/orm/models/index.js +8 -4
- package/modules/orm/models/inferenceLogModule.js +1 -1
- package/modules/orm/models/invitesModule.js +1 -1
- package/modules/orm/models/limitsModule.js +1 -1
- package/modules/orm/models/membershipTypesModule.js +1 -1
- package/modules/orm/models/membershipsModule.js +1 -1
- package/modules/orm/models/merkleStoreModule.js +1 -1
- package/modules/orm/models/namespaceModule.js +1 -1
- package/modules/orm/models/notificationsModule.js +1 -1
- package/modules/orm/models/permissionsModule.js +1 -1
- package/modules/orm/models/phoneNumbersModule.js +1 -1
- package/modules/orm/models/plansModule.js +1 -1
- package/modules/orm/models/profilesModule.js +1 -1
- package/modules/orm/models/rateLimitMetersModule.js +1 -1
- package/modules/orm/models/rateLimitsModule.js +1 -1
- package/modules/orm/models/realtimeModule.js +1 -1
- package/modules/orm/models/relationProvision.js +1 -1
- package/modules/orm/models/rlsModule.js +1 -1
- package/modules/orm/models/secureTableProvision.js +1 -1
- package/modules/orm/models/sessionSecretsModule.js +1 -1
- package/modules/orm/models/sessionsModule.js +1 -1
- package/modules/orm/models/storageLogModule.js +1 -1
- package/modules/orm/models/storageModule.js +1 -1
- package/modules/orm/models/transferLogModule.js +1 -1
- package/modules/orm/models/userAuthModule.js +1 -1
- package/modules/orm/models/userCredentialsModule.js +1 -1
- package/modules/orm/models/userSettingsModule.js +1 -1
- package/modules/orm/models/userStateModule.js +1 -1
- package/modules/orm/models/usersModule.js +1 -1
- package/modules/orm/models/webauthnAuthModule.js +1 -1
- package/modules/orm/models/webauthnCredentialsModule.js +1 -1
- package/modules/orm/query-builder.d.ts +1 -1
- package/modules/orm/query-builder.js +2 -1
- package/modules/schema-types.d.ts +608 -236
- package/modules/types.d.ts +67 -22
- package/objects/hooks/mutations/useDeleteCommitMutation.d.ts +2 -0
- package/objects/hooks/mutations/useDeleteCommitMutation.js +2 -1
- package/objects/hooks/mutations/useDeleteObjectMutation.d.ts +2 -0
- package/objects/hooks/mutations/useDeleteObjectMutation.js +2 -1
- package/objects/hooks/mutations/useDeleteRefMutation.d.ts +2 -0
- package/objects/hooks/mutations/useDeleteRefMutation.js +2 -1
- package/objects/hooks/mutations/useUpdateCommitMutation.d.ts +2 -0
- package/objects/hooks/mutations/useUpdateCommitMutation.js +2 -1
- package/objects/hooks/mutations/useUpdateObjectMutation.d.ts +2 -0
- package/objects/hooks/mutations/useUpdateObjectMutation.js +2 -1
- package/objects/hooks/mutations/useUpdateRefMutation.d.ts +2 -0
- package/objects/hooks/mutations/useUpdateRefMutation.js +2 -1
- package/objects/orm/models/commit.d.ts +2 -0
- package/objects/orm/models/commit.js +4 -1
- package/objects/orm/models/object.d.ts +2 -0
- package/objects/orm/models/object.js +4 -1
- package/objects/orm/models/ref.d.ts +2 -0
- package/objects/orm/models/ref.js +4 -1
- package/objects/orm/models/store.js +1 -1
- package/objects/orm/query-builder.d.ts +1 -1
- package/objects/orm/query-builder.js +2 -1
- package/objects/schema-types.d.ts +72 -0
- package/package.json +5 -5
- package/usage/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +2 -0
- package/usage/hooks/mutations/useDeleteAppLimitEventMutation.js +2 -1
- package/usage/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +2 -0
- package/usage/hooks/mutations/useDeleteOrgLimitEventMutation.js +2 -1
- package/usage/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +2 -0
- package/usage/hooks/mutations/useUpdateAppLimitEventMutation.js +2 -1
- package/usage/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +2 -0
- package/usage/hooks/mutations/useUpdateOrgLimitEventMutation.js +2 -1
- package/usage/orm/models/appLimit.js +1 -1
- package/usage/orm/models/appLimitCap.js +1 -1
- package/usage/orm/models/appLimitCapsDefault.js +1 -1
- package/usage/orm/models/appLimitCredit.js +1 -1
- package/usage/orm/models/appLimitCreditCode.js +1 -1
- package/usage/orm/models/appLimitCreditCodeItem.js +1 -1
- package/usage/orm/models/appLimitCreditRedemption.js +1 -1
- package/usage/orm/models/appLimitDefault.js +1 -1
- package/usage/orm/models/appLimitEvent.d.ts +2 -0
- package/usage/orm/models/appLimitEvent.js +4 -1
- package/usage/orm/models/appLimitWarning.js +1 -1
- package/usage/orm/models/orgLimit.js +1 -1
- package/usage/orm/models/orgLimitAggregate.js +1 -1
- package/usage/orm/models/orgLimitCap.js +1 -1
- package/usage/orm/models/orgLimitCapsDefault.js +1 -1
- package/usage/orm/models/orgLimitCredit.js +1 -1
- package/usage/orm/models/orgLimitDefault.js +1 -1
- package/usage/orm/models/orgLimitEvent.d.ts +2 -0
- package/usage/orm/models/orgLimitEvent.js +4 -1
- package/usage/orm/models/orgLimitWarning.js +1 -1
- package/usage/orm/query-builder.d.ts +1 -1
- package/usage/orm/query-builder.js +2 -1
- package/usage/schema-types.d.ts +72 -0
|
@@ -633,8 +633,6 @@ export interface GraphModule {
|
|
|
633
633
|
prefix?: string | null;
|
|
634
634
|
merkleStoreModuleId?: string | null;
|
|
635
635
|
graphsTableId?: string | null;
|
|
636
|
-
executionsTableId?: string | null;
|
|
637
|
-
outputsTableId?: string | null;
|
|
638
636
|
apiName?: string | null;
|
|
639
637
|
privateApiName?: string | null;
|
|
640
638
|
entityTableId?: string | null;
|
|
@@ -806,26 +804,6 @@ export interface InvitesModule {
|
|
|
806
804
|
apiName?: string | null;
|
|
807
805
|
privateApiName?: string | null;
|
|
808
806
|
}
|
|
809
|
-
export interface NamespaceModule {
|
|
810
|
-
id: string;
|
|
811
|
-
databaseId?: string | null;
|
|
812
|
-
schemaId?: string | null;
|
|
813
|
-
privateSchemaId?: string | null;
|
|
814
|
-
publicSchemaName?: string | null;
|
|
815
|
-
privateSchemaName?: string | null;
|
|
816
|
-
namespacesTableId?: string | null;
|
|
817
|
-
namespaceEventsTableId?: string | null;
|
|
818
|
-
namespacesTableName?: string | null;
|
|
819
|
-
namespaceEventsTableName?: string | null;
|
|
820
|
-
apiName?: string | null;
|
|
821
|
-
privateApiName?: string | null;
|
|
822
|
-
scope?: string | null;
|
|
823
|
-
prefix?: string | null;
|
|
824
|
-
entityTableId?: string | null;
|
|
825
|
-
policies?: Record<string, unknown> | null;
|
|
826
|
-
provisions?: Record<string, unknown> | null;
|
|
827
|
-
defaultPermissions?: string[] | null;
|
|
828
|
-
}
|
|
829
807
|
export interface ComputeLogModule {
|
|
830
808
|
id: string;
|
|
831
809
|
databaseId?: string | null;
|
|
@@ -868,6 +846,27 @@ export interface InferenceLogModule {
|
|
|
868
846
|
apiName?: string | null;
|
|
869
847
|
privateApiName?: string | null;
|
|
870
848
|
}
|
|
849
|
+
export interface NamespaceModule {
|
|
850
|
+
id: string;
|
|
851
|
+
databaseId?: string | null;
|
|
852
|
+
schemaId?: string | null;
|
|
853
|
+
privateSchemaId?: string | null;
|
|
854
|
+
publicSchemaName?: string | null;
|
|
855
|
+
privateSchemaName?: string | null;
|
|
856
|
+
namespacesTableId?: string | null;
|
|
857
|
+
namespaceEventsTableId?: string | null;
|
|
858
|
+
namespacesTableName?: string | null;
|
|
859
|
+
namespaceEventsTableName?: string | null;
|
|
860
|
+
apiName?: string | null;
|
|
861
|
+
privateApiName?: string | null;
|
|
862
|
+
scope?: string | null;
|
|
863
|
+
prefix?: string | null;
|
|
864
|
+
entityTableId?: string | null;
|
|
865
|
+
platformNamespacesTableId?: string | null;
|
|
866
|
+
policies?: Record<string, unknown> | null;
|
|
867
|
+
provisions?: Record<string, unknown> | null;
|
|
868
|
+
defaultPermissions?: string[] | null;
|
|
869
|
+
}
|
|
871
870
|
export interface StorageLogModule {
|
|
872
871
|
id: string;
|
|
873
872
|
databaseId?: string | null;
|
|
@@ -910,6 +909,28 @@ export interface TransferLogModule {
|
|
|
910
909
|
apiName?: string | null;
|
|
911
910
|
privateApiName?: string | null;
|
|
912
911
|
}
|
|
912
|
+
export interface FunctionDeploymentModule {
|
|
913
|
+
id: string;
|
|
914
|
+
databaseId?: string | null;
|
|
915
|
+
schemaId?: string | null;
|
|
916
|
+
privateSchemaId?: string | null;
|
|
917
|
+
publicSchemaName?: string | null;
|
|
918
|
+
privateSchemaName?: string | null;
|
|
919
|
+
deploymentsTableId?: string | null;
|
|
920
|
+
deploymentEventsTableId?: string | null;
|
|
921
|
+
deploymentsTableName?: string | null;
|
|
922
|
+
deploymentEventsTableName?: string | null;
|
|
923
|
+
apiName?: string | null;
|
|
924
|
+
privateApiName?: string | null;
|
|
925
|
+
scope?: string | null;
|
|
926
|
+
prefix?: string | null;
|
|
927
|
+
entityTableId?: string | null;
|
|
928
|
+
functionModuleId?: string | null;
|
|
929
|
+
namespaceModuleId?: string | null;
|
|
930
|
+
policies?: Record<string, unknown> | null;
|
|
931
|
+
provisions?: Record<string, unknown> | null;
|
|
932
|
+
defaultPermissions?: string[] | null;
|
|
933
|
+
}
|
|
913
934
|
export interface PlansModule {
|
|
914
935
|
id: string;
|
|
915
936
|
databaseId?: string | null;
|
|
@@ -981,6 +1002,30 @@ export interface DbUsageModule {
|
|
|
981
1002
|
apiName?: string | null;
|
|
982
1003
|
privateApiName?: string | null;
|
|
983
1004
|
}
|
|
1005
|
+
export interface GraphExecutionModule {
|
|
1006
|
+
id: string;
|
|
1007
|
+
databaseId?: string | null;
|
|
1008
|
+
schemaId?: string | null;
|
|
1009
|
+
privateSchemaId?: string | null;
|
|
1010
|
+
publicSchemaName?: string | null;
|
|
1011
|
+
privateSchemaName?: string | null;
|
|
1012
|
+
graphModuleId?: string | null;
|
|
1013
|
+
scope?: string | null;
|
|
1014
|
+
prefix?: string | null;
|
|
1015
|
+
executionsTableId?: string | null;
|
|
1016
|
+
outputsTableId?: string | null;
|
|
1017
|
+
nodeStatesTableId?: string | null;
|
|
1018
|
+
executionsTableName?: string | null;
|
|
1019
|
+
outputsTableName?: string | null;
|
|
1020
|
+
nodeStatesTableName?: string | null;
|
|
1021
|
+
apiName?: string | null;
|
|
1022
|
+
privateApiName?: string | null;
|
|
1023
|
+
entityTableId?: string | null;
|
|
1024
|
+
policies?: Record<string, unknown> | null;
|
|
1025
|
+
provisions?: Record<string, unknown> | null;
|
|
1026
|
+
defaultPermissions?: string[] | null;
|
|
1027
|
+
createdAt?: string | null;
|
|
1028
|
+
}
|
|
984
1029
|
export interface HierarchyModule {
|
|
985
1030
|
id: string;
|
|
986
1031
|
databaseId?: string | null;
|
|
@@ -1827,22 +1872,29 @@ export interface FunctionModuleRelations {
|
|
|
1827
1872
|
}
|
|
1828
1873
|
export interface InvitesModuleRelations {
|
|
1829
1874
|
}
|
|
1830
|
-
export interface NamespaceModuleRelations {
|
|
1831
|
-
}
|
|
1832
1875
|
export interface ComputeLogModuleRelations {
|
|
1833
1876
|
}
|
|
1834
1877
|
export interface InferenceLogModuleRelations {
|
|
1835
1878
|
}
|
|
1879
|
+
export interface NamespaceModuleRelations {
|
|
1880
|
+
}
|
|
1836
1881
|
export interface StorageLogModuleRelations {
|
|
1837
1882
|
}
|
|
1838
1883
|
export interface TransferLogModuleRelations {
|
|
1839
1884
|
}
|
|
1885
|
+
export interface FunctionDeploymentModuleRelations {
|
|
1886
|
+
functionModule?: FunctionModule | null;
|
|
1887
|
+
namespaceModule?: NamespaceModule | null;
|
|
1888
|
+
}
|
|
1840
1889
|
export interface PlansModuleRelations {
|
|
1841
1890
|
}
|
|
1842
1891
|
export interface BillingProviderModuleRelations {
|
|
1843
1892
|
}
|
|
1844
1893
|
export interface DbUsageModuleRelations {
|
|
1845
1894
|
}
|
|
1895
|
+
export interface GraphExecutionModuleRelations {
|
|
1896
|
+
graphModule?: GraphModule | null;
|
|
1897
|
+
}
|
|
1846
1898
|
export interface HierarchyModuleRelations {
|
|
1847
1899
|
}
|
|
1848
1900
|
export interface PermissionsModuleRelations {
|
|
@@ -1905,14 +1957,16 @@ export type WebauthnAuthModuleWithRelations = WebauthnAuthModule & WebauthnAuthM
|
|
|
1905
1957
|
export type FunctionInvocationModuleWithRelations = FunctionInvocationModule & FunctionInvocationModuleRelations;
|
|
1906
1958
|
export type FunctionModuleWithRelations = FunctionModule & FunctionModuleRelations;
|
|
1907
1959
|
export type InvitesModuleWithRelations = InvitesModule & InvitesModuleRelations;
|
|
1908
|
-
export type NamespaceModuleWithRelations = NamespaceModule & NamespaceModuleRelations;
|
|
1909
1960
|
export type ComputeLogModuleWithRelations = ComputeLogModule & ComputeLogModuleRelations;
|
|
1910
1961
|
export type InferenceLogModuleWithRelations = InferenceLogModule & InferenceLogModuleRelations;
|
|
1962
|
+
export type NamespaceModuleWithRelations = NamespaceModule & NamespaceModuleRelations;
|
|
1911
1963
|
export type StorageLogModuleWithRelations = StorageLogModule & StorageLogModuleRelations;
|
|
1912
1964
|
export type TransferLogModuleWithRelations = TransferLogModule & TransferLogModuleRelations;
|
|
1965
|
+
export type FunctionDeploymentModuleWithRelations = FunctionDeploymentModule & FunctionDeploymentModuleRelations;
|
|
1913
1966
|
export type PlansModuleWithRelations = PlansModule & PlansModuleRelations;
|
|
1914
1967
|
export type BillingProviderModuleWithRelations = BillingProviderModule & BillingProviderModuleRelations;
|
|
1915
1968
|
export type DbUsageModuleWithRelations = DbUsageModule & DbUsageModuleRelations;
|
|
1969
|
+
export type GraphExecutionModuleWithRelations = GraphExecutionModule & GraphExecutionModuleRelations;
|
|
1916
1970
|
export type HierarchyModuleWithRelations = HierarchyModule & HierarchyModuleRelations;
|
|
1917
1971
|
export type PermissionsModuleWithRelations = PermissionsModule & PermissionsModuleRelations;
|
|
1918
1972
|
export type NotificationsModuleWithRelations = NotificationsModule & NotificationsModuleRelations;
|
|
@@ -2282,8 +2336,6 @@ export type GraphModuleSelect = {
|
|
|
2282
2336
|
prefix?: boolean;
|
|
2283
2337
|
merkleStoreModuleId?: boolean;
|
|
2284
2338
|
graphsTableId?: boolean;
|
|
2285
|
-
executionsTableId?: boolean;
|
|
2286
|
-
outputsTableId?: boolean;
|
|
2287
2339
|
apiName?: boolean;
|
|
2288
2340
|
privateApiName?: boolean;
|
|
2289
2341
|
entityTableId?: boolean;
|
|
@@ -2443,26 +2495,6 @@ export type InvitesModuleSelect = {
|
|
|
2443
2495
|
apiName?: boolean;
|
|
2444
2496
|
privateApiName?: boolean;
|
|
2445
2497
|
};
|
|
2446
|
-
export type NamespaceModuleSelect = {
|
|
2447
|
-
id?: boolean;
|
|
2448
|
-
databaseId?: boolean;
|
|
2449
|
-
schemaId?: boolean;
|
|
2450
|
-
privateSchemaId?: boolean;
|
|
2451
|
-
publicSchemaName?: boolean;
|
|
2452
|
-
privateSchemaName?: boolean;
|
|
2453
|
-
namespacesTableId?: boolean;
|
|
2454
|
-
namespaceEventsTableId?: boolean;
|
|
2455
|
-
namespacesTableName?: boolean;
|
|
2456
|
-
namespaceEventsTableName?: boolean;
|
|
2457
|
-
apiName?: boolean;
|
|
2458
|
-
privateApiName?: boolean;
|
|
2459
|
-
scope?: boolean;
|
|
2460
|
-
prefix?: boolean;
|
|
2461
|
-
entityTableId?: boolean;
|
|
2462
|
-
policies?: boolean;
|
|
2463
|
-
provisions?: boolean;
|
|
2464
|
-
defaultPermissions?: boolean;
|
|
2465
|
-
};
|
|
2466
2498
|
export type ComputeLogModuleSelect = {
|
|
2467
2499
|
id?: boolean;
|
|
2468
2500
|
databaseId?: boolean;
|
|
@@ -2505,6 +2537,27 @@ export type InferenceLogModuleSelect = {
|
|
|
2505
2537
|
apiName?: boolean;
|
|
2506
2538
|
privateApiName?: boolean;
|
|
2507
2539
|
};
|
|
2540
|
+
export type NamespaceModuleSelect = {
|
|
2541
|
+
id?: boolean;
|
|
2542
|
+
databaseId?: boolean;
|
|
2543
|
+
schemaId?: boolean;
|
|
2544
|
+
privateSchemaId?: boolean;
|
|
2545
|
+
publicSchemaName?: boolean;
|
|
2546
|
+
privateSchemaName?: boolean;
|
|
2547
|
+
namespacesTableId?: boolean;
|
|
2548
|
+
namespaceEventsTableId?: boolean;
|
|
2549
|
+
namespacesTableName?: boolean;
|
|
2550
|
+
namespaceEventsTableName?: boolean;
|
|
2551
|
+
apiName?: boolean;
|
|
2552
|
+
privateApiName?: boolean;
|
|
2553
|
+
scope?: boolean;
|
|
2554
|
+
prefix?: boolean;
|
|
2555
|
+
entityTableId?: boolean;
|
|
2556
|
+
platformNamespacesTableId?: boolean;
|
|
2557
|
+
policies?: boolean;
|
|
2558
|
+
provisions?: boolean;
|
|
2559
|
+
defaultPermissions?: boolean;
|
|
2560
|
+
};
|
|
2508
2561
|
export type StorageLogModuleSelect = {
|
|
2509
2562
|
id?: boolean;
|
|
2510
2563
|
databaseId?: boolean;
|
|
@@ -2547,6 +2600,34 @@ export type TransferLogModuleSelect = {
|
|
|
2547
2600
|
apiName?: boolean;
|
|
2548
2601
|
privateApiName?: boolean;
|
|
2549
2602
|
};
|
|
2603
|
+
export type FunctionDeploymentModuleSelect = {
|
|
2604
|
+
id?: boolean;
|
|
2605
|
+
databaseId?: boolean;
|
|
2606
|
+
schemaId?: boolean;
|
|
2607
|
+
privateSchemaId?: boolean;
|
|
2608
|
+
publicSchemaName?: boolean;
|
|
2609
|
+
privateSchemaName?: boolean;
|
|
2610
|
+
deploymentsTableId?: boolean;
|
|
2611
|
+
deploymentEventsTableId?: boolean;
|
|
2612
|
+
deploymentsTableName?: boolean;
|
|
2613
|
+
deploymentEventsTableName?: boolean;
|
|
2614
|
+
apiName?: boolean;
|
|
2615
|
+
privateApiName?: boolean;
|
|
2616
|
+
scope?: boolean;
|
|
2617
|
+
prefix?: boolean;
|
|
2618
|
+
entityTableId?: boolean;
|
|
2619
|
+
functionModuleId?: boolean;
|
|
2620
|
+
namespaceModuleId?: boolean;
|
|
2621
|
+
policies?: boolean;
|
|
2622
|
+
provisions?: boolean;
|
|
2623
|
+
defaultPermissions?: boolean;
|
|
2624
|
+
functionModule?: {
|
|
2625
|
+
select: FunctionModuleSelect;
|
|
2626
|
+
};
|
|
2627
|
+
namespaceModule?: {
|
|
2628
|
+
select: NamespaceModuleSelect;
|
|
2629
|
+
};
|
|
2630
|
+
};
|
|
2550
2631
|
export type PlansModuleSelect = {
|
|
2551
2632
|
id?: boolean;
|
|
2552
2633
|
databaseId?: boolean;
|
|
@@ -2618,6 +2699,33 @@ export type DbUsageModuleSelect = {
|
|
|
2618
2699
|
apiName?: boolean;
|
|
2619
2700
|
privateApiName?: boolean;
|
|
2620
2701
|
};
|
|
2702
|
+
export type GraphExecutionModuleSelect = {
|
|
2703
|
+
id?: boolean;
|
|
2704
|
+
databaseId?: boolean;
|
|
2705
|
+
schemaId?: boolean;
|
|
2706
|
+
privateSchemaId?: boolean;
|
|
2707
|
+
publicSchemaName?: boolean;
|
|
2708
|
+
privateSchemaName?: boolean;
|
|
2709
|
+
graphModuleId?: boolean;
|
|
2710
|
+
scope?: boolean;
|
|
2711
|
+
prefix?: boolean;
|
|
2712
|
+
executionsTableId?: boolean;
|
|
2713
|
+
outputsTableId?: boolean;
|
|
2714
|
+
nodeStatesTableId?: boolean;
|
|
2715
|
+
executionsTableName?: boolean;
|
|
2716
|
+
outputsTableName?: boolean;
|
|
2717
|
+
nodeStatesTableName?: boolean;
|
|
2718
|
+
apiName?: boolean;
|
|
2719
|
+
privateApiName?: boolean;
|
|
2720
|
+
entityTableId?: boolean;
|
|
2721
|
+
policies?: boolean;
|
|
2722
|
+
provisions?: boolean;
|
|
2723
|
+
defaultPermissions?: boolean;
|
|
2724
|
+
createdAt?: boolean;
|
|
2725
|
+
graphModule?: {
|
|
2726
|
+
select: GraphModuleSelect;
|
|
2727
|
+
};
|
|
2728
|
+
};
|
|
2621
2729
|
export type HierarchyModuleSelect = {
|
|
2622
2730
|
id?: boolean;
|
|
2623
2731
|
databaseId?: boolean;
|
|
@@ -3825,10 +3933,6 @@ export interface GraphModuleFilter {
|
|
|
3825
3933
|
merkleStoreModuleId?: UUIDFilter;
|
|
3826
3934
|
/** Filter by the object’s `graphsTableId` field. */
|
|
3827
3935
|
graphsTableId?: UUIDFilter;
|
|
3828
|
-
/** Filter by the object’s `executionsTableId` field. */
|
|
3829
|
-
executionsTableId?: UUIDFilter;
|
|
3830
|
-
/** Filter by the object’s `outputsTableId` field. */
|
|
3831
|
-
outputsTableId?: UUIDFilter;
|
|
3832
3936
|
/** Filter by the object’s `apiName` field. */
|
|
3833
3937
|
apiName?: StringFilter;
|
|
3834
3938
|
/** Filter by the object’s `privateApiName` field. */
|
|
@@ -4180,50 +4284,6 @@ export interface InvitesModuleFilter {
|
|
|
4180
4284
|
/** Negates the expression. */
|
|
4181
4285
|
not?: InvitesModuleFilter;
|
|
4182
4286
|
}
|
|
4183
|
-
export interface NamespaceModuleFilter {
|
|
4184
|
-
/** Filter by the object’s `id` field. */
|
|
4185
|
-
id?: UUIDFilter;
|
|
4186
|
-
/** Filter by the object’s `databaseId` field. */
|
|
4187
|
-
databaseId?: UUIDFilter;
|
|
4188
|
-
/** Filter by the object’s `schemaId` field. */
|
|
4189
|
-
schemaId?: UUIDFilter;
|
|
4190
|
-
/** Filter by the object’s `privateSchemaId` field. */
|
|
4191
|
-
privateSchemaId?: UUIDFilter;
|
|
4192
|
-
/** Filter by the object’s `publicSchemaName` field. */
|
|
4193
|
-
publicSchemaName?: StringFilter;
|
|
4194
|
-
/** Filter by the object’s `privateSchemaName` field. */
|
|
4195
|
-
privateSchemaName?: StringFilter;
|
|
4196
|
-
/** Filter by the object’s `namespacesTableId` field. */
|
|
4197
|
-
namespacesTableId?: UUIDFilter;
|
|
4198
|
-
/** Filter by the object’s `namespaceEventsTableId` field. */
|
|
4199
|
-
namespaceEventsTableId?: UUIDFilter;
|
|
4200
|
-
/** Filter by the object’s `namespacesTableName` field. */
|
|
4201
|
-
namespacesTableName?: StringFilter;
|
|
4202
|
-
/** Filter by the object’s `namespaceEventsTableName` field. */
|
|
4203
|
-
namespaceEventsTableName?: StringFilter;
|
|
4204
|
-
/** Filter by the object’s `apiName` field. */
|
|
4205
|
-
apiName?: StringFilter;
|
|
4206
|
-
/** Filter by the object’s `privateApiName` field. */
|
|
4207
|
-
privateApiName?: StringFilter;
|
|
4208
|
-
/** Filter by the object’s `scope` field. */
|
|
4209
|
-
scope?: StringFilter;
|
|
4210
|
-
/** Filter by the object’s `prefix` field. */
|
|
4211
|
-
prefix?: StringFilter;
|
|
4212
|
-
/** Filter by the object’s `entityTableId` field. */
|
|
4213
|
-
entityTableId?: UUIDFilter;
|
|
4214
|
-
/** Filter by the object’s `policies` field. */
|
|
4215
|
-
policies?: JSONFilter;
|
|
4216
|
-
/** Filter by the object’s `provisions` field. */
|
|
4217
|
-
provisions?: JSONFilter;
|
|
4218
|
-
/** Filter by the object’s `defaultPermissions` field. */
|
|
4219
|
-
defaultPermissions?: StringListFilter;
|
|
4220
|
-
/** Checks for all expressions in this list. */
|
|
4221
|
-
and?: NamespaceModuleFilter[];
|
|
4222
|
-
/** Checks for any expressions in this list. */
|
|
4223
|
-
or?: NamespaceModuleFilter[];
|
|
4224
|
-
/** Negates the expression. */
|
|
4225
|
-
not?: NamespaceModuleFilter;
|
|
4226
|
-
}
|
|
4227
4287
|
export interface ComputeLogModuleFilter {
|
|
4228
4288
|
/** Filter by the object’s `id` field. */
|
|
4229
4289
|
id?: UUIDFilter;
|
|
@@ -4316,6 +4376,52 @@ export interface InferenceLogModuleFilter {
|
|
|
4316
4376
|
/** Negates the expression. */
|
|
4317
4377
|
not?: InferenceLogModuleFilter;
|
|
4318
4378
|
}
|
|
4379
|
+
export interface NamespaceModuleFilter {
|
|
4380
|
+
/** Filter by the object’s `id` field. */
|
|
4381
|
+
id?: UUIDFilter;
|
|
4382
|
+
/** Filter by the object’s `databaseId` field. */
|
|
4383
|
+
databaseId?: UUIDFilter;
|
|
4384
|
+
/** Filter by the object’s `schemaId` field. */
|
|
4385
|
+
schemaId?: UUIDFilter;
|
|
4386
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
4387
|
+
privateSchemaId?: UUIDFilter;
|
|
4388
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
4389
|
+
publicSchemaName?: StringFilter;
|
|
4390
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
4391
|
+
privateSchemaName?: StringFilter;
|
|
4392
|
+
/** Filter by the object’s `namespacesTableId` field. */
|
|
4393
|
+
namespacesTableId?: UUIDFilter;
|
|
4394
|
+
/** Filter by the object’s `namespaceEventsTableId` field. */
|
|
4395
|
+
namespaceEventsTableId?: UUIDFilter;
|
|
4396
|
+
/** Filter by the object’s `namespacesTableName` field. */
|
|
4397
|
+
namespacesTableName?: StringFilter;
|
|
4398
|
+
/** Filter by the object’s `namespaceEventsTableName` field. */
|
|
4399
|
+
namespaceEventsTableName?: StringFilter;
|
|
4400
|
+
/** Filter by the object’s `apiName` field. */
|
|
4401
|
+
apiName?: StringFilter;
|
|
4402
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
4403
|
+
privateApiName?: StringFilter;
|
|
4404
|
+
/** Filter by the object’s `scope` field. */
|
|
4405
|
+
scope?: StringFilter;
|
|
4406
|
+
/** Filter by the object’s `prefix` field. */
|
|
4407
|
+
prefix?: StringFilter;
|
|
4408
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
4409
|
+
entityTableId?: UUIDFilter;
|
|
4410
|
+
/** Filter by the object’s `platformNamespacesTableId` field. */
|
|
4411
|
+
platformNamespacesTableId?: UUIDFilter;
|
|
4412
|
+
/** Filter by the object’s `policies` field. */
|
|
4413
|
+
policies?: JSONFilter;
|
|
4414
|
+
/** Filter by the object’s `provisions` field. */
|
|
4415
|
+
provisions?: JSONFilter;
|
|
4416
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
4417
|
+
defaultPermissions?: StringListFilter;
|
|
4418
|
+
/** Checks for all expressions in this list. */
|
|
4419
|
+
and?: NamespaceModuleFilter[];
|
|
4420
|
+
/** Checks for any expressions in this list. */
|
|
4421
|
+
or?: NamespaceModuleFilter[];
|
|
4422
|
+
/** Negates the expression. */
|
|
4423
|
+
not?: NamespaceModuleFilter;
|
|
4424
|
+
}
|
|
4319
4425
|
export interface StorageLogModuleFilter {
|
|
4320
4426
|
/** Filter by the object’s `id` field. */
|
|
4321
4427
|
id?: UUIDFilter;
|
|
@@ -4408,6 +4514,62 @@ export interface TransferLogModuleFilter {
|
|
|
4408
4514
|
/** Negates the expression. */
|
|
4409
4515
|
not?: TransferLogModuleFilter;
|
|
4410
4516
|
}
|
|
4517
|
+
export interface FunctionDeploymentModuleFilter {
|
|
4518
|
+
/** Filter by the object’s `id` field. */
|
|
4519
|
+
id?: UUIDFilter;
|
|
4520
|
+
/** Filter by the object’s `databaseId` field. */
|
|
4521
|
+
databaseId?: UUIDFilter;
|
|
4522
|
+
/** Filter by the object’s `schemaId` field. */
|
|
4523
|
+
schemaId?: UUIDFilter;
|
|
4524
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
4525
|
+
privateSchemaId?: UUIDFilter;
|
|
4526
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
4527
|
+
publicSchemaName?: StringFilter;
|
|
4528
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
4529
|
+
privateSchemaName?: StringFilter;
|
|
4530
|
+
/** Filter by the object’s `deploymentsTableId` field. */
|
|
4531
|
+
deploymentsTableId?: UUIDFilter;
|
|
4532
|
+
/** Filter by the object’s `deploymentEventsTableId` field. */
|
|
4533
|
+
deploymentEventsTableId?: UUIDFilter;
|
|
4534
|
+
/** Filter by the object’s `deploymentsTableName` field. */
|
|
4535
|
+
deploymentsTableName?: StringFilter;
|
|
4536
|
+
/** Filter by the object’s `deploymentEventsTableName` field. */
|
|
4537
|
+
deploymentEventsTableName?: StringFilter;
|
|
4538
|
+
/** Filter by the object’s `apiName` field. */
|
|
4539
|
+
apiName?: StringFilter;
|
|
4540
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
4541
|
+
privateApiName?: StringFilter;
|
|
4542
|
+
/** Filter by the object’s `scope` field. */
|
|
4543
|
+
scope?: StringFilter;
|
|
4544
|
+
/** Filter by the object’s `prefix` field. */
|
|
4545
|
+
prefix?: StringFilter;
|
|
4546
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
4547
|
+
entityTableId?: UUIDFilter;
|
|
4548
|
+
/** Filter by the object’s `functionModuleId` field. */
|
|
4549
|
+
functionModuleId?: UUIDFilter;
|
|
4550
|
+
/** Filter by the object’s `namespaceModuleId` field. */
|
|
4551
|
+
namespaceModuleId?: UUIDFilter;
|
|
4552
|
+
/** Filter by the object’s `policies` field. */
|
|
4553
|
+
policies?: JSONFilter;
|
|
4554
|
+
/** Filter by the object’s `provisions` field. */
|
|
4555
|
+
provisions?: JSONFilter;
|
|
4556
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
4557
|
+
defaultPermissions?: StringListFilter;
|
|
4558
|
+
/** Checks for all expressions in this list. */
|
|
4559
|
+
and?: FunctionDeploymentModuleFilter[];
|
|
4560
|
+
/** Checks for any expressions in this list. */
|
|
4561
|
+
or?: FunctionDeploymentModuleFilter[];
|
|
4562
|
+
/** Negates the expression. */
|
|
4563
|
+
not?: FunctionDeploymentModuleFilter;
|
|
4564
|
+
/** Filter by the object’s `functionModule` relation. */
|
|
4565
|
+
functionModule?: FunctionModuleFilter;
|
|
4566
|
+
/** A related `functionModule` exists. */
|
|
4567
|
+
functionModuleExists?: boolean;
|
|
4568
|
+
/** Filter by the object’s `namespaceModule` relation. */
|
|
4569
|
+
namespaceModule?: NamespaceModuleFilter;
|
|
4570
|
+
/** A related `namespaceModule` exists. */
|
|
4571
|
+
namespaceModuleExists?: boolean;
|
|
4572
|
+
}
|
|
4411
4573
|
export interface PlansModuleFilter {
|
|
4412
4574
|
/** Filter by the object’s `id` field. */
|
|
4413
4575
|
id?: UUIDFilter;
|
|
@@ -4562,6 +4724,60 @@ export interface DbUsageModuleFilter {
|
|
|
4562
4724
|
/** Negates the expression. */
|
|
4563
4725
|
not?: DbUsageModuleFilter;
|
|
4564
4726
|
}
|
|
4727
|
+
export interface GraphExecutionModuleFilter {
|
|
4728
|
+
/** Filter by the object’s `id` field. */
|
|
4729
|
+
id?: UUIDFilter;
|
|
4730
|
+
/** Filter by the object’s `databaseId` field. */
|
|
4731
|
+
databaseId?: UUIDFilter;
|
|
4732
|
+
/** Filter by the object’s `schemaId` field. */
|
|
4733
|
+
schemaId?: UUIDFilter;
|
|
4734
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
4735
|
+
privateSchemaId?: UUIDFilter;
|
|
4736
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
4737
|
+
publicSchemaName?: StringFilter;
|
|
4738
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
4739
|
+
privateSchemaName?: StringFilter;
|
|
4740
|
+
/** Filter by the object’s `graphModuleId` field. */
|
|
4741
|
+
graphModuleId?: UUIDFilter;
|
|
4742
|
+
/** Filter by the object’s `scope` field. */
|
|
4743
|
+
scope?: StringFilter;
|
|
4744
|
+
/** Filter by the object’s `prefix` field. */
|
|
4745
|
+
prefix?: StringFilter;
|
|
4746
|
+
/** Filter by the object’s `executionsTableId` field. */
|
|
4747
|
+
executionsTableId?: UUIDFilter;
|
|
4748
|
+
/** Filter by the object’s `outputsTableId` field. */
|
|
4749
|
+
outputsTableId?: UUIDFilter;
|
|
4750
|
+
/** Filter by the object’s `nodeStatesTableId` field. */
|
|
4751
|
+
nodeStatesTableId?: UUIDFilter;
|
|
4752
|
+
/** Filter by the object’s `executionsTableName` field. */
|
|
4753
|
+
executionsTableName?: StringFilter;
|
|
4754
|
+
/** Filter by the object’s `outputsTableName` field. */
|
|
4755
|
+
outputsTableName?: StringFilter;
|
|
4756
|
+
/** Filter by the object’s `nodeStatesTableName` field. */
|
|
4757
|
+
nodeStatesTableName?: StringFilter;
|
|
4758
|
+
/** Filter by the object’s `apiName` field. */
|
|
4759
|
+
apiName?: StringFilter;
|
|
4760
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
4761
|
+
privateApiName?: StringFilter;
|
|
4762
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
4763
|
+
entityTableId?: UUIDFilter;
|
|
4764
|
+
/** Filter by the object’s `policies` field. */
|
|
4765
|
+
policies?: JSONFilter;
|
|
4766
|
+
/** Filter by the object’s `provisions` field. */
|
|
4767
|
+
provisions?: JSONFilter;
|
|
4768
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
4769
|
+
defaultPermissions?: StringListFilter;
|
|
4770
|
+
/** Filter by the object’s `createdAt` field. */
|
|
4771
|
+
createdAt?: DatetimeFilter;
|
|
4772
|
+
/** Checks for all expressions in this list. */
|
|
4773
|
+
and?: GraphExecutionModuleFilter[];
|
|
4774
|
+
/** Checks for any expressions in this list. */
|
|
4775
|
+
or?: GraphExecutionModuleFilter[];
|
|
4776
|
+
/** Negates the expression. */
|
|
4777
|
+
not?: GraphExecutionModuleFilter;
|
|
4778
|
+
/** Filter by the object’s `graphModule` relation. */
|
|
4779
|
+
graphModule?: GraphModuleFilter;
|
|
4780
|
+
}
|
|
4565
4781
|
export interface HierarchyModuleFilter {
|
|
4566
4782
|
/** Filter by the object’s `id` field. */
|
|
4567
4783
|
id?: UUIDFilter;
|
|
@@ -5497,7 +5713,7 @@ export type CryptoAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_K
|
|
|
5497
5713
|
export type SessionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'SESSIONS_DEFAULT_EXPIRATION_ASC' | 'SESSIONS_DEFAULT_EXPIRATION_DESC' | 'SESSIONS_TABLE_ASC' | 'SESSIONS_TABLE_DESC' | 'SESSION_CREDENTIALS_TABLE_ASC' | 'SESSION_CREDENTIALS_TABLE_DESC' | 'AUTH_SETTINGS_TABLE_ASC' | 'AUTH_SETTINGS_TABLE_DESC';
|
|
5498
5714
|
export type SecureTableProvisionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'NODES_ASC' | 'NODES_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC' | 'FIELDS_ASC' | 'FIELDS_DESC' | 'GRANTS_ASC' | 'GRANTS_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'OUT_FIELDS_ASC' | 'OUT_FIELDS_DESC';
|
|
5499
5715
|
export type MerkleStoreModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'OBJECT_TABLE_ID_ASC' | 'OBJECT_TABLE_ID_DESC' | 'STORE_TABLE_ID_ASC' | 'STORE_TABLE_ID_DESC' | 'COMMIT_TABLE_ID_ASC' | 'COMMIT_TABLE_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'FUNCTION_PREFIX_ASC' | 'FUNCTION_PREFIX_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
5500
|
-
export type GraphModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'GRAPHS_TABLE_ID_ASC' | 'GRAPHS_TABLE_ID_DESC' | '
|
|
5716
|
+
export type GraphModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'GRAPHS_TABLE_ID_ASC' | 'GRAPHS_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
5501
5717
|
export type DatabaseProvisionModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_NAME_ASC' | 'DATABASE_NAME_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'SUBDOMAIN_ASC' | 'SUBDOMAIN_DESC' | 'DOMAIN_ASC' | 'DOMAIN_DESC' | 'MODULES_ASC' | 'MODULES_DESC' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'BOOTSTRAP_USER_ASC' | 'BOOTSTRAP_USER_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC';
|
|
5502
5718
|
export type ConfigSecretsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'CONFIG_DEFINITIONS_TABLE_ID_ASC' | 'CONFIG_DEFINITIONS_TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'HAS_CONFIG_ASC' | 'HAS_CONFIG_DESC';
|
|
5503
5719
|
export type RateLimitMetersModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'RATE_LIMIT_STATE_TABLE_ID_ASC' | 'RATE_LIMIT_STATE_TABLE_ID_DESC' | 'RATE_LIMIT_STATE_TABLE_NAME_ASC' | 'RATE_LIMIT_STATE_TABLE_NAME_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_DESC' | 'RATE_WINDOW_LIMITS_TABLE_ID_ASC' | 'RATE_WINDOW_LIMITS_TABLE_ID_DESC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_ASC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_DESC' | 'CHECK_RATE_LIMIT_FUNCTION_ASC' | 'CHECK_RATE_LIMIT_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
@@ -5506,14 +5722,16 @@ export type WebauthnAuthModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY
|
|
|
5506
5722
|
export type FunctionInvocationModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'INVOCATIONS_TABLE_ID_ASC' | 'INVOCATIONS_TABLE_ID_DESC' | 'EXECUTION_LOGS_TABLE_ID_ASC' | 'EXECUTION_LOGS_TABLE_ID_DESC' | 'INVOCATIONS_TABLE_NAME_ASC' | 'INVOCATIONS_TABLE_NAME_DESC' | 'EXECUTION_LOGS_TABLE_NAME_ASC' | 'EXECUTION_LOGS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
|
|
5507
5723
|
export type FunctionModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'SECRET_DEFINITIONS_TABLE_ID_ASC' | 'SECRET_DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'SECRET_DEFINITIONS_TABLE_NAME_ASC' | 'SECRET_DEFINITIONS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
|
|
5508
5724
|
export type InvitesModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'EMAILS_TABLE_ID_ASC' | 'EMAILS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'INVITES_TABLE_ID_ASC' | 'INVITES_TABLE_ID_DESC' | 'CLAIMED_INVITES_TABLE_ID_ASC' | 'CLAIMED_INVITES_TABLE_ID_DESC' | 'INVITES_TABLE_NAME_ASC' | 'INVITES_TABLE_NAME_DESC' | 'CLAIMED_INVITES_TABLE_NAME_ASC' | 'CLAIMED_INVITES_TABLE_NAME_DESC' | 'SUBMIT_INVITE_CODE_FUNCTION_ASC' | 'SUBMIT_INVITE_CODE_FUNCTION_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5509
|
-
export type NamespaceModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'NAMESPACES_TABLE_ID_ASC' | 'NAMESPACES_TABLE_ID_DESC' | 'NAMESPACE_EVENTS_TABLE_ID_ASC' | 'NAMESPACE_EVENTS_TABLE_ID_DESC' | 'NAMESPACES_TABLE_NAME_ASC' | 'NAMESPACES_TABLE_NAME_DESC' | 'NAMESPACE_EVENTS_TABLE_NAME_ASC' | 'NAMESPACE_EVENTS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
|
|
5510
5725
|
export type ComputeLogModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'COMPUTE_LOG_TABLE_ID_ASC' | 'COMPUTE_LOG_TABLE_ID_DESC' | 'COMPUTE_LOG_TABLE_NAME_ASC' | 'COMPUTE_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5511
5726
|
export type InferenceLogModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'INFERENCE_LOG_TABLE_ID_ASC' | 'INFERENCE_LOG_TABLE_ID_DESC' | 'INFERENCE_LOG_TABLE_NAME_ASC' | 'INFERENCE_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5727
|
+
export type NamespaceModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'NAMESPACES_TABLE_ID_ASC' | 'NAMESPACES_TABLE_ID_DESC' | 'NAMESPACE_EVENTS_TABLE_ID_ASC' | 'NAMESPACE_EVENTS_TABLE_ID_DESC' | 'NAMESPACES_TABLE_NAME_ASC' | 'NAMESPACES_TABLE_NAME_DESC' | 'NAMESPACE_EVENTS_TABLE_NAME_ASC' | 'NAMESPACE_EVENTS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'PLATFORM_NAMESPACES_TABLE_ID_ASC' | 'PLATFORM_NAMESPACES_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
|
|
5512
5728
|
export type StorageLogModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'STORAGE_LOG_TABLE_ID_ASC' | 'STORAGE_LOG_TABLE_ID_DESC' | 'STORAGE_LOG_TABLE_NAME_ASC' | 'STORAGE_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5513
5729
|
export type TransferLogModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'TRANSFER_LOG_TABLE_ID_ASC' | 'TRANSFER_LOG_TABLE_ID_DESC' | 'TRANSFER_LOG_TABLE_NAME_ASC' | 'TRANSFER_LOG_TABLE_NAME_DESC' | 'USAGE_DAILY_TABLE_ID_ASC' | 'USAGE_DAILY_TABLE_ID_DESC' | 'USAGE_DAILY_TABLE_NAME_ASC' | 'USAGE_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5730
|
+
export type FunctionDeploymentModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'DEPLOYMENTS_TABLE_ID_ASC' | 'DEPLOYMENTS_TABLE_ID_DESC' | 'DEPLOYMENT_EVENTS_TABLE_ID_ASC' | 'DEPLOYMENT_EVENTS_TABLE_ID_DESC' | 'DEPLOYMENTS_TABLE_NAME_ASC' | 'DEPLOYMENTS_TABLE_NAME_DESC' | 'DEPLOYMENT_EVENTS_TABLE_NAME_ASC' | 'DEPLOYMENT_EVENTS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTION_MODULE_ID_ASC' | 'FUNCTION_MODULE_ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC';
|
|
5514
5731
|
export type PlansModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PLANS_TABLE_ID_ASC' | 'PLANS_TABLE_ID_DESC' | 'PLANS_TABLE_NAME_ASC' | 'PLANS_TABLE_NAME_DESC' | 'PLAN_LIMITS_TABLE_ID_ASC' | 'PLAN_LIMITS_TABLE_ID_DESC' | 'PLAN_LIMITS_TABLE_NAME_ASC' | 'PLAN_LIMITS_TABLE_NAME_DESC' | 'PLAN_PRICING_TABLE_ID_ASC' | 'PLAN_PRICING_TABLE_ID_DESC' | 'PLAN_OVERRIDES_TABLE_ID_ASC' | 'PLAN_OVERRIDES_TABLE_ID_DESC' | 'PLAN_METER_LIMITS_TABLE_ID_ASC' | 'PLAN_METER_LIMITS_TABLE_ID_DESC' | 'PLAN_CAPS_TABLE_ID_ASC' | 'PLAN_CAPS_TABLE_ID_DESC' | 'APPLY_PLAN_FUNCTION_ASC' | 'APPLY_PLAN_FUNCTION_DESC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_ASC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_DESC' | 'APPLY_BILLING_PLAN_FUNCTION_ASC' | 'APPLY_BILLING_PLAN_FUNCTION_DESC' | 'APPLY_PLAN_CAPS_FUNCTION_ASC' | 'APPLY_PLAN_CAPS_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5515
5732
|
export type BillingProviderModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PRODUCTS_TABLE_ID_ASC' | 'PRODUCTS_TABLE_ID_DESC' | 'PRICES_TABLE_ID_ASC' | 'PRICES_TABLE_ID_DESC' | 'SUBSCRIPTIONS_TABLE_ID_ASC' | 'SUBSCRIPTIONS_TABLE_ID_DESC' | 'BILLING_CUSTOMERS_TABLE_ID_ASC' | 'BILLING_CUSTOMERS_TABLE_ID_DESC' | 'BILLING_CUSTOMERS_TABLE_NAME_ASC' | 'BILLING_CUSTOMERS_TABLE_NAME_DESC' | 'BILLING_PRODUCTS_TABLE_ID_ASC' | 'BILLING_PRODUCTS_TABLE_ID_DESC' | 'BILLING_PRODUCTS_TABLE_NAME_ASC' | 'BILLING_PRODUCTS_TABLE_NAME_DESC' | 'BILLING_PRICES_TABLE_ID_ASC' | 'BILLING_PRICES_TABLE_ID_DESC' | 'BILLING_PRICES_TABLE_NAME_ASC' | 'BILLING_PRICES_TABLE_NAME_DESC' | 'BILLING_SUBSCRIPTIONS_TABLE_ID_ASC' | 'BILLING_SUBSCRIPTIONS_TABLE_ID_DESC' | 'BILLING_SUBSCRIPTIONS_TABLE_NAME_ASC' | 'BILLING_SUBSCRIPTIONS_TABLE_NAME_DESC' | 'BILLING_WEBHOOK_EVENTS_TABLE_ID_ASC' | 'BILLING_WEBHOOK_EVENTS_TABLE_ID_DESC' | 'BILLING_WEBHOOK_EVENTS_TABLE_NAME_ASC' | 'BILLING_WEBHOOK_EVENTS_TABLE_NAME_DESC' | 'PROCESS_BILLING_EVENT_FUNCTION_ASC' | 'PROCESS_BILLING_EVENT_FUNCTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5516
5733
|
export type DbUsageModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'TABLE_STATS_LOG_TABLE_ID_ASC' | 'TABLE_STATS_LOG_TABLE_ID_DESC' | 'TABLE_STATS_LOG_TABLE_NAME_ASC' | 'TABLE_STATS_LOG_TABLE_NAME_DESC' | 'TABLE_STATS_DAILY_TABLE_ID_ASC' | 'TABLE_STATS_DAILY_TABLE_ID_DESC' | 'TABLE_STATS_DAILY_TABLE_NAME_ASC' | 'TABLE_STATS_DAILY_TABLE_NAME_DESC' | 'QUERY_STATS_LOG_TABLE_ID_ASC' | 'QUERY_STATS_LOG_TABLE_ID_DESC' | 'QUERY_STATS_LOG_TABLE_NAME_ASC' | 'QUERY_STATS_LOG_TABLE_NAME_DESC' | 'QUERY_STATS_DAILY_TABLE_ID_ASC' | 'QUERY_STATS_DAILY_TABLE_ID_DESC' | 'QUERY_STATS_DAILY_TABLE_NAME_ASC' | 'QUERY_STATS_DAILY_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5734
|
+
export type GraphExecutionModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'GRAPH_MODULE_ID_ASC' | 'GRAPH_MODULE_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'EXECUTIONS_TABLE_ID_ASC' | 'EXECUTIONS_TABLE_ID_DESC' | 'OUTPUTS_TABLE_ID_ASC' | 'OUTPUTS_TABLE_ID_DESC' | 'NODE_STATES_TABLE_ID_ASC' | 'NODE_STATES_TABLE_ID_DESC' | 'EXECUTIONS_TABLE_NAME_ASC' | 'EXECUTIONS_TABLE_NAME_DESC' | 'OUTPUTS_TABLE_NAME_ASC' | 'OUTPUTS_TABLE_NAME_DESC' | 'NODE_STATES_TABLE_NAME_ASC' | 'NODE_STATES_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
5517
5735
|
export type HierarchyModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'CHART_EDGES_TABLE_ID_ASC' | 'CHART_EDGES_TABLE_ID_DESC' | 'CHART_EDGES_TABLE_NAME_ASC' | 'CHART_EDGES_TABLE_NAME_DESC' | 'HIERARCHY_SPRT_TABLE_ID_ASC' | 'HIERARCHY_SPRT_TABLE_ID_DESC' | 'HIERARCHY_SPRT_TABLE_NAME_ASC' | 'HIERARCHY_SPRT_TABLE_NAME_DESC' | 'CHART_EDGE_GRANTS_TABLE_ID_ASC' | 'CHART_EDGE_GRANTS_TABLE_ID_DESC' | 'CHART_EDGE_GRANTS_TABLE_NAME_ASC' | 'CHART_EDGE_GRANTS_TABLE_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'SPRT_TABLE_NAME_ASC' | 'SPRT_TABLE_NAME_DESC' | 'REBUILD_HIERARCHY_FUNCTION_ASC' | 'REBUILD_HIERARCHY_FUNCTION_DESC' | 'GET_SUBORDINATES_FUNCTION_ASC' | 'GET_SUBORDINATES_FUNCTION_DESC' | 'GET_MANAGERS_FUNCTION_ASC' | 'GET_MANAGERS_FUNCTION_DESC' | 'IS_MANAGER_OF_FUNCTION_ASC' | 'IS_MANAGER_OF_FUNCTION_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC';
|
|
5518
5736
|
export type PermissionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'DEFAULT_TABLE_ID_ASC' | 'DEFAULT_TABLE_ID_DESC' | 'DEFAULT_TABLE_NAME_ASC' | 'DEFAULT_TABLE_NAME_DESC' | 'BITLEN_ASC' | 'BITLEN_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC' | 'GET_PADDED_MASK_ASC' | 'GET_PADDED_MASK_DESC' | 'GET_MASK_ASC' | 'GET_MASK_DESC' | 'GET_BY_MASK_ASC' | 'GET_BY_MASK_DESC' | 'GET_MASK_BY_NAME_ASC' | 'GET_MASK_BY_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
5519
5737
|
export type NotificationsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'NOTIFICATIONS_TABLE_ID_ASC' | 'NOTIFICATIONS_TABLE_ID_DESC' | 'READ_STATE_TABLE_ID_ASC' | 'READ_STATE_TABLE_ID_DESC' | 'PREFERENCES_TABLE_ID_ASC' | 'PREFERENCES_TABLE_ID_DESC' | 'CHANNELS_TABLE_ID_ASC' | 'CHANNELS_TABLE_ID_DESC' | 'DELIVERY_LOG_TABLE_ID_ASC' | 'DELIVERY_LOG_TABLE_ID_DESC' | 'SUPPRESSIONS_TABLE_ID_ASC' | 'SUPPRESSIONS_TABLE_ID_DESC' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'USER_SETTINGS_TABLE_ID_ASC' | 'USER_SETTINGS_TABLE_ID_DESC' | 'ORGANIZATION_SETTINGS_TABLE_ID_ASC' | 'ORGANIZATION_SETTINGS_TABLE_ID_DESC' | 'HAS_CHANNELS_ASC' | 'HAS_CHANNELS_DESC' | 'HAS_PREFERENCES_ASC' | 'HAS_PREFERENCES_DESC' | 'HAS_SETTINGS_EXTENSION_ASC' | 'HAS_SETTINGS_EXTENSION_DESC' | 'HAS_DIGEST_METADATA_ASC' | 'HAS_DIGEST_METADATA_DESC' | 'HAS_SUBSCRIPTIONS_ASC' | 'HAS_SUBSCRIPTIONS_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC';
|
|
@@ -6419,8 +6637,6 @@ export interface CreateGraphModuleInput {
|
|
|
6419
6637
|
prefix?: string;
|
|
6420
6638
|
merkleStoreModuleId: string;
|
|
6421
6639
|
graphsTableId?: string;
|
|
6422
|
-
executionsTableId?: string;
|
|
6423
|
-
outputsTableId?: string;
|
|
6424
6640
|
apiName?: string;
|
|
6425
6641
|
privateApiName?: string;
|
|
6426
6642
|
entityTableId?: string;
|
|
@@ -6439,8 +6655,6 @@ export interface GraphModulePatch {
|
|
|
6439
6655
|
prefix?: string | null;
|
|
6440
6656
|
merkleStoreModuleId?: string | null;
|
|
6441
6657
|
graphsTableId?: string | null;
|
|
6442
|
-
executionsTableId?: string | null;
|
|
6443
|
-
outputsTableId?: string | null;
|
|
6444
6658
|
apiName?: string | null;
|
|
6445
6659
|
privateApiName?: string | null;
|
|
6446
6660
|
entityTableId?: string | null;
|
|
@@ -6829,56 +7043,6 @@ export interface DeleteInvitesModuleInput {
|
|
|
6829
7043
|
clientMutationId?: string;
|
|
6830
7044
|
id: string;
|
|
6831
7045
|
}
|
|
6832
|
-
export interface CreateNamespaceModuleInput {
|
|
6833
|
-
clientMutationId?: string;
|
|
6834
|
-
namespaceModule: {
|
|
6835
|
-
databaseId: string;
|
|
6836
|
-
schemaId?: string;
|
|
6837
|
-
privateSchemaId?: string;
|
|
6838
|
-
publicSchemaName?: string;
|
|
6839
|
-
privateSchemaName?: string;
|
|
6840
|
-
namespacesTableId?: string;
|
|
6841
|
-
namespaceEventsTableId?: string;
|
|
6842
|
-
namespacesTableName?: string;
|
|
6843
|
-
namespaceEventsTableName?: string;
|
|
6844
|
-
apiName?: string;
|
|
6845
|
-
privateApiName?: string;
|
|
6846
|
-
scope?: string;
|
|
6847
|
-
prefix?: string;
|
|
6848
|
-
entityTableId?: string;
|
|
6849
|
-
policies?: Record<string, unknown>;
|
|
6850
|
-
provisions?: Record<string, unknown>;
|
|
6851
|
-
defaultPermissions?: string[];
|
|
6852
|
-
};
|
|
6853
|
-
}
|
|
6854
|
-
export interface NamespaceModulePatch {
|
|
6855
|
-
databaseId?: string | null;
|
|
6856
|
-
schemaId?: string | null;
|
|
6857
|
-
privateSchemaId?: string | null;
|
|
6858
|
-
publicSchemaName?: string | null;
|
|
6859
|
-
privateSchemaName?: string | null;
|
|
6860
|
-
namespacesTableId?: string | null;
|
|
6861
|
-
namespaceEventsTableId?: string | null;
|
|
6862
|
-
namespacesTableName?: string | null;
|
|
6863
|
-
namespaceEventsTableName?: string | null;
|
|
6864
|
-
apiName?: string | null;
|
|
6865
|
-
privateApiName?: string | null;
|
|
6866
|
-
scope?: string | null;
|
|
6867
|
-
prefix?: string | null;
|
|
6868
|
-
entityTableId?: string | null;
|
|
6869
|
-
policies?: Record<string, unknown> | null;
|
|
6870
|
-
provisions?: Record<string, unknown> | null;
|
|
6871
|
-
defaultPermissions?: string[] | null;
|
|
6872
|
-
}
|
|
6873
|
-
export interface UpdateNamespaceModuleInput {
|
|
6874
|
-
clientMutationId?: string;
|
|
6875
|
-
id: string;
|
|
6876
|
-
namespaceModulePatch: NamespaceModulePatch;
|
|
6877
|
-
}
|
|
6878
|
-
export interface DeleteNamespaceModuleInput {
|
|
6879
|
-
clientMutationId?: string;
|
|
6880
|
-
id: string;
|
|
6881
|
-
}
|
|
6882
7046
|
export interface CreateComputeLogModuleInput {
|
|
6883
7047
|
clientMutationId?: string;
|
|
6884
7048
|
computeLogModule: {
|
|
@@ -6983,6 +7147,58 @@ export interface DeleteInferenceLogModuleInput {
|
|
|
6983
7147
|
clientMutationId?: string;
|
|
6984
7148
|
id: string;
|
|
6985
7149
|
}
|
|
7150
|
+
export interface CreateNamespaceModuleInput {
|
|
7151
|
+
clientMutationId?: string;
|
|
7152
|
+
namespaceModule: {
|
|
7153
|
+
databaseId: string;
|
|
7154
|
+
schemaId?: string;
|
|
7155
|
+
privateSchemaId?: string;
|
|
7156
|
+
publicSchemaName?: string;
|
|
7157
|
+
privateSchemaName?: string;
|
|
7158
|
+
namespacesTableId?: string;
|
|
7159
|
+
namespaceEventsTableId?: string;
|
|
7160
|
+
namespacesTableName?: string;
|
|
7161
|
+
namespaceEventsTableName?: string;
|
|
7162
|
+
apiName?: string;
|
|
7163
|
+
privateApiName?: string;
|
|
7164
|
+
scope?: string;
|
|
7165
|
+
prefix?: string;
|
|
7166
|
+
entityTableId?: string;
|
|
7167
|
+
platformNamespacesTableId?: string;
|
|
7168
|
+
policies?: Record<string, unknown>;
|
|
7169
|
+
provisions?: Record<string, unknown>;
|
|
7170
|
+
defaultPermissions?: string[];
|
|
7171
|
+
};
|
|
7172
|
+
}
|
|
7173
|
+
export interface NamespaceModulePatch {
|
|
7174
|
+
databaseId?: string | null;
|
|
7175
|
+
schemaId?: string | null;
|
|
7176
|
+
privateSchemaId?: string | null;
|
|
7177
|
+
publicSchemaName?: string | null;
|
|
7178
|
+
privateSchemaName?: string | null;
|
|
7179
|
+
namespacesTableId?: string | null;
|
|
7180
|
+
namespaceEventsTableId?: string | null;
|
|
7181
|
+
namespacesTableName?: string | null;
|
|
7182
|
+
namespaceEventsTableName?: string | null;
|
|
7183
|
+
apiName?: string | null;
|
|
7184
|
+
privateApiName?: string | null;
|
|
7185
|
+
scope?: string | null;
|
|
7186
|
+
prefix?: string | null;
|
|
7187
|
+
entityTableId?: string | null;
|
|
7188
|
+
platformNamespacesTableId?: string | null;
|
|
7189
|
+
policies?: Record<string, unknown> | null;
|
|
7190
|
+
provisions?: Record<string, unknown> | null;
|
|
7191
|
+
defaultPermissions?: string[] | null;
|
|
7192
|
+
}
|
|
7193
|
+
export interface UpdateNamespaceModuleInput {
|
|
7194
|
+
clientMutationId?: string;
|
|
7195
|
+
id: string;
|
|
7196
|
+
namespaceModulePatch: NamespaceModulePatch;
|
|
7197
|
+
}
|
|
7198
|
+
export interface DeleteNamespaceModuleInput {
|
|
7199
|
+
clientMutationId?: string;
|
|
7200
|
+
id: string;
|
|
7201
|
+
}
|
|
6986
7202
|
export interface CreateStorageLogModuleInput {
|
|
6987
7203
|
clientMutationId?: string;
|
|
6988
7204
|
storageLogModule: {
|
|
@@ -7087,6 +7303,60 @@ export interface DeleteTransferLogModuleInput {
|
|
|
7087
7303
|
clientMutationId?: string;
|
|
7088
7304
|
id: string;
|
|
7089
7305
|
}
|
|
7306
|
+
export interface CreateFunctionDeploymentModuleInput {
|
|
7307
|
+
clientMutationId?: string;
|
|
7308
|
+
functionDeploymentModule: {
|
|
7309
|
+
databaseId: string;
|
|
7310
|
+
schemaId?: string;
|
|
7311
|
+
privateSchemaId?: string;
|
|
7312
|
+
publicSchemaName?: string;
|
|
7313
|
+
privateSchemaName?: string;
|
|
7314
|
+
deploymentsTableId?: string;
|
|
7315
|
+
deploymentEventsTableId?: string;
|
|
7316
|
+
deploymentsTableName?: string;
|
|
7317
|
+
deploymentEventsTableName?: string;
|
|
7318
|
+
apiName?: string;
|
|
7319
|
+
privateApiName?: string;
|
|
7320
|
+
scope?: string;
|
|
7321
|
+
prefix?: string;
|
|
7322
|
+
entityTableId?: string;
|
|
7323
|
+
functionModuleId?: string;
|
|
7324
|
+
namespaceModuleId?: string;
|
|
7325
|
+
policies?: Record<string, unknown>;
|
|
7326
|
+
provisions?: Record<string, unknown>;
|
|
7327
|
+
defaultPermissions?: string[];
|
|
7328
|
+
};
|
|
7329
|
+
}
|
|
7330
|
+
export interface FunctionDeploymentModulePatch {
|
|
7331
|
+
databaseId?: string | null;
|
|
7332
|
+
schemaId?: string | null;
|
|
7333
|
+
privateSchemaId?: string | null;
|
|
7334
|
+
publicSchemaName?: string | null;
|
|
7335
|
+
privateSchemaName?: string | null;
|
|
7336
|
+
deploymentsTableId?: string | null;
|
|
7337
|
+
deploymentEventsTableId?: string | null;
|
|
7338
|
+
deploymentsTableName?: string | null;
|
|
7339
|
+
deploymentEventsTableName?: string | null;
|
|
7340
|
+
apiName?: string | null;
|
|
7341
|
+
privateApiName?: string | null;
|
|
7342
|
+
scope?: string | null;
|
|
7343
|
+
prefix?: string | null;
|
|
7344
|
+
entityTableId?: string | null;
|
|
7345
|
+
functionModuleId?: string | null;
|
|
7346
|
+
namespaceModuleId?: string | null;
|
|
7347
|
+
policies?: Record<string, unknown> | null;
|
|
7348
|
+
provisions?: Record<string, unknown> | null;
|
|
7349
|
+
defaultPermissions?: string[] | null;
|
|
7350
|
+
}
|
|
7351
|
+
export interface UpdateFunctionDeploymentModuleInput {
|
|
7352
|
+
clientMutationId?: string;
|
|
7353
|
+
id: string;
|
|
7354
|
+
functionDeploymentModulePatch: FunctionDeploymentModulePatch;
|
|
7355
|
+
}
|
|
7356
|
+
export interface DeleteFunctionDeploymentModuleInput {
|
|
7357
|
+
clientMutationId?: string;
|
|
7358
|
+
id: string;
|
|
7359
|
+
}
|
|
7090
7360
|
export interface CreatePlansModuleInput {
|
|
7091
7361
|
clientMutationId?: string;
|
|
7092
7362
|
plansModule: {
|
|
@@ -7246,16 +7516,72 @@ export interface DbUsageModulePatch {
|
|
|
7246
7516
|
premake?: number | null;
|
|
7247
7517
|
scope?: string | null;
|
|
7248
7518
|
prefix?: string | null;
|
|
7249
|
-
defaultPermissions?: string[] | null;
|
|
7519
|
+
defaultPermissions?: string[] | null;
|
|
7520
|
+
apiName?: string | null;
|
|
7521
|
+
privateApiName?: string | null;
|
|
7522
|
+
}
|
|
7523
|
+
export interface UpdateDbUsageModuleInput {
|
|
7524
|
+
clientMutationId?: string;
|
|
7525
|
+
id: string;
|
|
7526
|
+
dbUsageModulePatch: DbUsageModulePatch;
|
|
7527
|
+
}
|
|
7528
|
+
export interface DeleteDbUsageModuleInput {
|
|
7529
|
+
clientMutationId?: string;
|
|
7530
|
+
id: string;
|
|
7531
|
+
}
|
|
7532
|
+
export interface CreateGraphExecutionModuleInput {
|
|
7533
|
+
clientMutationId?: string;
|
|
7534
|
+
graphExecutionModule: {
|
|
7535
|
+
databaseId: string;
|
|
7536
|
+
schemaId?: string;
|
|
7537
|
+
privateSchemaId?: string;
|
|
7538
|
+
publicSchemaName?: string;
|
|
7539
|
+
privateSchemaName?: string;
|
|
7540
|
+
graphModuleId: string;
|
|
7541
|
+
scope?: string;
|
|
7542
|
+
prefix?: string;
|
|
7543
|
+
executionsTableId?: string;
|
|
7544
|
+
outputsTableId?: string;
|
|
7545
|
+
nodeStatesTableId?: string;
|
|
7546
|
+
executionsTableName?: string;
|
|
7547
|
+
outputsTableName?: string;
|
|
7548
|
+
nodeStatesTableName?: string;
|
|
7549
|
+
apiName?: string;
|
|
7550
|
+
privateApiName?: string;
|
|
7551
|
+
entityTableId?: string;
|
|
7552
|
+
policies?: Record<string, unknown>;
|
|
7553
|
+
provisions?: Record<string, unknown>;
|
|
7554
|
+
defaultPermissions?: string[];
|
|
7555
|
+
};
|
|
7556
|
+
}
|
|
7557
|
+
export interface GraphExecutionModulePatch {
|
|
7558
|
+
databaseId?: string | null;
|
|
7559
|
+
schemaId?: string | null;
|
|
7560
|
+
privateSchemaId?: string | null;
|
|
7561
|
+
publicSchemaName?: string | null;
|
|
7562
|
+
privateSchemaName?: string | null;
|
|
7563
|
+
graphModuleId?: string | null;
|
|
7564
|
+
scope?: string | null;
|
|
7565
|
+
prefix?: string | null;
|
|
7566
|
+
executionsTableId?: string | null;
|
|
7567
|
+
outputsTableId?: string | null;
|
|
7568
|
+
nodeStatesTableId?: string | null;
|
|
7569
|
+
executionsTableName?: string | null;
|
|
7570
|
+
outputsTableName?: string | null;
|
|
7571
|
+
nodeStatesTableName?: string | null;
|
|
7250
7572
|
apiName?: string | null;
|
|
7251
7573
|
privateApiName?: string | null;
|
|
7574
|
+
entityTableId?: string | null;
|
|
7575
|
+
policies?: Record<string, unknown> | null;
|
|
7576
|
+
provisions?: Record<string, unknown> | null;
|
|
7577
|
+
defaultPermissions?: string[] | null;
|
|
7252
7578
|
}
|
|
7253
|
-
export interface
|
|
7579
|
+
export interface UpdateGraphExecutionModuleInput {
|
|
7254
7580
|
clientMutationId?: string;
|
|
7255
7581
|
id: string;
|
|
7256
|
-
|
|
7582
|
+
graphExecutionModulePatch: GraphExecutionModulePatch;
|
|
7257
7583
|
}
|
|
7258
|
-
export interface
|
|
7584
|
+
export interface DeleteGraphExecutionModuleInput {
|
|
7259
7585
|
clientMutationId?: string;
|
|
7260
7586
|
id: string;
|
|
7261
7587
|
}
|
|
@@ -8866,8 +9192,6 @@ export interface GraphModuleInput {
|
|
|
8866
9192
|
prefix?: string;
|
|
8867
9193
|
merkleStoreModuleId: string;
|
|
8868
9194
|
graphsTableId?: string;
|
|
8869
|
-
executionsTableId?: string;
|
|
8870
|
-
outputsTableId?: string;
|
|
8871
9195
|
apiName?: string;
|
|
8872
9196
|
privateApiName?: string;
|
|
8873
9197
|
entityTableId?: string;
|
|
@@ -9041,27 +9365,6 @@ export interface InvitesModuleInput {
|
|
|
9041
9365
|
apiName?: string;
|
|
9042
9366
|
privateApiName?: string;
|
|
9043
9367
|
}
|
|
9044
|
-
/** An input for mutations affecting `NamespaceModule` */
|
|
9045
|
-
export interface NamespaceModuleInput {
|
|
9046
|
-
id?: string;
|
|
9047
|
-
databaseId: string;
|
|
9048
|
-
schemaId?: string;
|
|
9049
|
-
privateSchemaId?: string;
|
|
9050
|
-
publicSchemaName?: string;
|
|
9051
|
-
privateSchemaName?: string;
|
|
9052
|
-
namespacesTableId?: string;
|
|
9053
|
-
namespaceEventsTableId?: string;
|
|
9054
|
-
namespacesTableName?: string;
|
|
9055
|
-
namespaceEventsTableName?: string;
|
|
9056
|
-
apiName?: string;
|
|
9057
|
-
privateApiName?: string;
|
|
9058
|
-
scope?: string;
|
|
9059
|
-
prefix?: string;
|
|
9060
|
-
entityTableId?: string;
|
|
9061
|
-
policies?: Record<string, unknown>;
|
|
9062
|
-
provisions?: Record<string, unknown>;
|
|
9063
|
-
defaultPermissions?: string[];
|
|
9064
|
-
}
|
|
9065
9368
|
/** An input for mutations affecting `ComputeLogModule` */
|
|
9066
9369
|
export interface ComputeLogModuleInput {
|
|
9067
9370
|
id?: string;
|
|
@@ -9106,6 +9409,28 @@ export interface InferenceLogModuleInput {
|
|
|
9106
9409
|
apiName?: string;
|
|
9107
9410
|
privateApiName?: string;
|
|
9108
9411
|
}
|
|
9412
|
+
/** An input for mutations affecting `NamespaceModule` */
|
|
9413
|
+
export interface NamespaceModuleInput {
|
|
9414
|
+
id?: string;
|
|
9415
|
+
databaseId: string;
|
|
9416
|
+
schemaId?: string;
|
|
9417
|
+
privateSchemaId?: string;
|
|
9418
|
+
publicSchemaName?: string;
|
|
9419
|
+
privateSchemaName?: string;
|
|
9420
|
+
namespacesTableId?: string;
|
|
9421
|
+
namespaceEventsTableId?: string;
|
|
9422
|
+
namespacesTableName?: string;
|
|
9423
|
+
namespaceEventsTableName?: string;
|
|
9424
|
+
apiName?: string;
|
|
9425
|
+
privateApiName?: string;
|
|
9426
|
+
scope?: string;
|
|
9427
|
+
prefix?: string;
|
|
9428
|
+
entityTableId?: string;
|
|
9429
|
+
platformNamespacesTableId?: string;
|
|
9430
|
+
policies?: Record<string, unknown>;
|
|
9431
|
+
provisions?: Record<string, unknown>;
|
|
9432
|
+
defaultPermissions?: string[];
|
|
9433
|
+
}
|
|
9109
9434
|
/** An input for mutations affecting `StorageLogModule` */
|
|
9110
9435
|
export interface StorageLogModuleInput {
|
|
9111
9436
|
id?: string;
|
|
@@ -9150,6 +9475,29 @@ export interface TransferLogModuleInput {
|
|
|
9150
9475
|
apiName?: string;
|
|
9151
9476
|
privateApiName?: string;
|
|
9152
9477
|
}
|
|
9478
|
+
/** An input for mutations affecting `FunctionDeploymentModule` */
|
|
9479
|
+
export interface FunctionDeploymentModuleInput {
|
|
9480
|
+
id?: string;
|
|
9481
|
+
databaseId: string;
|
|
9482
|
+
schemaId?: string;
|
|
9483
|
+
privateSchemaId?: string;
|
|
9484
|
+
publicSchemaName?: string;
|
|
9485
|
+
privateSchemaName?: string;
|
|
9486
|
+
deploymentsTableId?: string;
|
|
9487
|
+
deploymentEventsTableId?: string;
|
|
9488
|
+
deploymentsTableName?: string;
|
|
9489
|
+
deploymentEventsTableName?: string;
|
|
9490
|
+
apiName?: string;
|
|
9491
|
+
privateApiName?: string;
|
|
9492
|
+
scope?: string;
|
|
9493
|
+
prefix?: string;
|
|
9494
|
+
entityTableId?: string;
|
|
9495
|
+
functionModuleId?: string;
|
|
9496
|
+
namespaceModuleId?: string;
|
|
9497
|
+
policies?: Record<string, unknown>;
|
|
9498
|
+
provisions?: Record<string, unknown>;
|
|
9499
|
+
defaultPermissions?: string[];
|
|
9500
|
+
}
|
|
9153
9501
|
/** An input for mutations affecting `PlansModule` */
|
|
9154
9502
|
export interface PlansModuleInput {
|
|
9155
9503
|
id?: string;
|
|
@@ -9224,6 +9572,31 @@ export interface DbUsageModuleInput {
|
|
|
9224
9572
|
apiName?: string;
|
|
9225
9573
|
privateApiName?: string;
|
|
9226
9574
|
}
|
|
9575
|
+
/** An input for mutations affecting `GraphExecutionModule` */
|
|
9576
|
+
export interface GraphExecutionModuleInput {
|
|
9577
|
+
id?: string;
|
|
9578
|
+
databaseId: string;
|
|
9579
|
+
schemaId?: string;
|
|
9580
|
+
privateSchemaId?: string;
|
|
9581
|
+
publicSchemaName?: string;
|
|
9582
|
+
privateSchemaName?: string;
|
|
9583
|
+
graphModuleId: string;
|
|
9584
|
+
scope?: string;
|
|
9585
|
+
prefix?: string;
|
|
9586
|
+
executionsTableId?: string;
|
|
9587
|
+
outputsTableId?: string;
|
|
9588
|
+
nodeStatesTableId?: string;
|
|
9589
|
+
executionsTableName?: string;
|
|
9590
|
+
outputsTableName?: string;
|
|
9591
|
+
nodeStatesTableName?: string;
|
|
9592
|
+
apiName?: string;
|
|
9593
|
+
privateApiName?: string;
|
|
9594
|
+
entityTableId?: string;
|
|
9595
|
+
policies?: Record<string, unknown>;
|
|
9596
|
+
provisions?: Record<string, unknown>;
|
|
9597
|
+
defaultPermissions?: string[];
|
|
9598
|
+
createdAt?: string;
|
|
9599
|
+
}
|
|
9227
9600
|
/** An input for mutations affecting `HierarchyModule` */
|
|
9228
9601
|
export interface HierarchyModuleInput {
|
|
9229
9602
|
id?: string;
|
|
@@ -10129,10 +10502,6 @@ export interface GraphModuleFilter {
|
|
|
10129
10502
|
merkleStoreModuleId?: UUIDFilter;
|
|
10130
10503
|
/** Filter by the object’s `graphsTableId` field. */
|
|
10131
10504
|
graphsTableId?: UUIDFilter;
|
|
10132
|
-
/** Filter by the object’s `executionsTableId` field. */
|
|
10133
|
-
executionsTableId?: UUIDFilter;
|
|
10134
|
-
/** Filter by the object’s `outputsTableId` field. */
|
|
10135
|
-
outputsTableId?: UUIDFilter;
|
|
10136
10505
|
/** Filter by the object’s `apiName` field. */
|
|
10137
10506
|
apiName?: StringFilter;
|
|
10138
10507
|
/** Filter by the object’s `privateApiName` field. */
|
|
@@ -12141,51 +12510,6 @@ export type DeleteInvitesModulePayloadSelect = {
|
|
|
12141
12510
|
select: InvitesModuleEdgeSelect;
|
|
12142
12511
|
};
|
|
12143
12512
|
};
|
|
12144
|
-
export interface CreateNamespaceModulePayload {
|
|
12145
|
-
clientMutationId?: string | null;
|
|
12146
|
-
/** The `NamespaceModule` that was created by this mutation. */
|
|
12147
|
-
namespaceModule?: NamespaceModule | null;
|
|
12148
|
-
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
12149
|
-
}
|
|
12150
|
-
export type CreateNamespaceModulePayloadSelect = {
|
|
12151
|
-
clientMutationId?: boolean;
|
|
12152
|
-
namespaceModule?: {
|
|
12153
|
-
select: NamespaceModuleSelect;
|
|
12154
|
-
};
|
|
12155
|
-
namespaceModuleEdge?: {
|
|
12156
|
-
select: NamespaceModuleEdgeSelect;
|
|
12157
|
-
};
|
|
12158
|
-
};
|
|
12159
|
-
export interface UpdateNamespaceModulePayload {
|
|
12160
|
-
clientMutationId?: string | null;
|
|
12161
|
-
/** The `NamespaceModule` that was updated by this mutation. */
|
|
12162
|
-
namespaceModule?: NamespaceModule | null;
|
|
12163
|
-
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
12164
|
-
}
|
|
12165
|
-
export type UpdateNamespaceModulePayloadSelect = {
|
|
12166
|
-
clientMutationId?: boolean;
|
|
12167
|
-
namespaceModule?: {
|
|
12168
|
-
select: NamespaceModuleSelect;
|
|
12169
|
-
};
|
|
12170
|
-
namespaceModuleEdge?: {
|
|
12171
|
-
select: NamespaceModuleEdgeSelect;
|
|
12172
|
-
};
|
|
12173
|
-
};
|
|
12174
|
-
export interface DeleteNamespaceModulePayload {
|
|
12175
|
-
clientMutationId?: string | null;
|
|
12176
|
-
/** The `NamespaceModule` that was deleted by this mutation. */
|
|
12177
|
-
namespaceModule?: NamespaceModule | null;
|
|
12178
|
-
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
12179
|
-
}
|
|
12180
|
-
export type DeleteNamespaceModulePayloadSelect = {
|
|
12181
|
-
clientMutationId?: boolean;
|
|
12182
|
-
namespaceModule?: {
|
|
12183
|
-
select: NamespaceModuleSelect;
|
|
12184
|
-
};
|
|
12185
|
-
namespaceModuleEdge?: {
|
|
12186
|
-
select: NamespaceModuleEdgeSelect;
|
|
12187
|
-
};
|
|
12188
|
-
};
|
|
12189
12513
|
export interface CreateComputeLogModulePayload {
|
|
12190
12514
|
clientMutationId?: string | null;
|
|
12191
12515
|
/** The `ComputeLogModule` that was created by this mutation. */
|
|
@@ -12276,6 +12600,51 @@ export type DeleteInferenceLogModulePayloadSelect = {
|
|
|
12276
12600
|
select: InferenceLogModuleEdgeSelect;
|
|
12277
12601
|
};
|
|
12278
12602
|
};
|
|
12603
|
+
export interface CreateNamespaceModulePayload {
|
|
12604
|
+
clientMutationId?: string | null;
|
|
12605
|
+
/** The `NamespaceModule` that was created by this mutation. */
|
|
12606
|
+
namespaceModule?: NamespaceModule | null;
|
|
12607
|
+
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
12608
|
+
}
|
|
12609
|
+
export type CreateNamespaceModulePayloadSelect = {
|
|
12610
|
+
clientMutationId?: boolean;
|
|
12611
|
+
namespaceModule?: {
|
|
12612
|
+
select: NamespaceModuleSelect;
|
|
12613
|
+
};
|
|
12614
|
+
namespaceModuleEdge?: {
|
|
12615
|
+
select: NamespaceModuleEdgeSelect;
|
|
12616
|
+
};
|
|
12617
|
+
};
|
|
12618
|
+
export interface UpdateNamespaceModulePayload {
|
|
12619
|
+
clientMutationId?: string | null;
|
|
12620
|
+
/** The `NamespaceModule` that was updated by this mutation. */
|
|
12621
|
+
namespaceModule?: NamespaceModule | null;
|
|
12622
|
+
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
12623
|
+
}
|
|
12624
|
+
export type UpdateNamespaceModulePayloadSelect = {
|
|
12625
|
+
clientMutationId?: boolean;
|
|
12626
|
+
namespaceModule?: {
|
|
12627
|
+
select: NamespaceModuleSelect;
|
|
12628
|
+
};
|
|
12629
|
+
namespaceModuleEdge?: {
|
|
12630
|
+
select: NamespaceModuleEdgeSelect;
|
|
12631
|
+
};
|
|
12632
|
+
};
|
|
12633
|
+
export interface DeleteNamespaceModulePayload {
|
|
12634
|
+
clientMutationId?: string | null;
|
|
12635
|
+
/** The `NamespaceModule` that was deleted by this mutation. */
|
|
12636
|
+
namespaceModule?: NamespaceModule | null;
|
|
12637
|
+
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
12638
|
+
}
|
|
12639
|
+
export type DeleteNamespaceModulePayloadSelect = {
|
|
12640
|
+
clientMutationId?: boolean;
|
|
12641
|
+
namespaceModule?: {
|
|
12642
|
+
select: NamespaceModuleSelect;
|
|
12643
|
+
};
|
|
12644
|
+
namespaceModuleEdge?: {
|
|
12645
|
+
select: NamespaceModuleEdgeSelect;
|
|
12646
|
+
};
|
|
12647
|
+
};
|
|
12279
12648
|
export interface CreateStorageLogModulePayload {
|
|
12280
12649
|
clientMutationId?: string | null;
|
|
12281
12650
|
/** The `StorageLogModule` that was created by this mutation. */
|
|
@@ -12366,6 +12735,51 @@ export type DeleteTransferLogModulePayloadSelect = {
|
|
|
12366
12735
|
select: TransferLogModuleEdgeSelect;
|
|
12367
12736
|
};
|
|
12368
12737
|
};
|
|
12738
|
+
export interface CreateFunctionDeploymentModulePayload {
|
|
12739
|
+
clientMutationId?: string | null;
|
|
12740
|
+
/** The `FunctionDeploymentModule` that was created by this mutation. */
|
|
12741
|
+
functionDeploymentModule?: FunctionDeploymentModule | null;
|
|
12742
|
+
functionDeploymentModuleEdge?: FunctionDeploymentModuleEdge | null;
|
|
12743
|
+
}
|
|
12744
|
+
export type CreateFunctionDeploymentModulePayloadSelect = {
|
|
12745
|
+
clientMutationId?: boolean;
|
|
12746
|
+
functionDeploymentModule?: {
|
|
12747
|
+
select: FunctionDeploymentModuleSelect;
|
|
12748
|
+
};
|
|
12749
|
+
functionDeploymentModuleEdge?: {
|
|
12750
|
+
select: FunctionDeploymentModuleEdgeSelect;
|
|
12751
|
+
};
|
|
12752
|
+
};
|
|
12753
|
+
export interface UpdateFunctionDeploymentModulePayload {
|
|
12754
|
+
clientMutationId?: string | null;
|
|
12755
|
+
/** The `FunctionDeploymentModule` that was updated by this mutation. */
|
|
12756
|
+
functionDeploymentModule?: FunctionDeploymentModule | null;
|
|
12757
|
+
functionDeploymentModuleEdge?: FunctionDeploymentModuleEdge | null;
|
|
12758
|
+
}
|
|
12759
|
+
export type UpdateFunctionDeploymentModulePayloadSelect = {
|
|
12760
|
+
clientMutationId?: boolean;
|
|
12761
|
+
functionDeploymentModule?: {
|
|
12762
|
+
select: FunctionDeploymentModuleSelect;
|
|
12763
|
+
};
|
|
12764
|
+
functionDeploymentModuleEdge?: {
|
|
12765
|
+
select: FunctionDeploymentModuleEdgeSelect;
|
|
12766
|
+
};
|
|
12767
|
+
};
|
|
12768
|
+
export interface DeleteFunctionDeploymentModulePayload {
|
|
12769
|
+
clientMutationId?: string | null;
|
|
12770
|
+
/** The `FunctionDeploymentModule` that was deleted by this mutation. */
|
|
12771
|
+
functionDeploymentModule?: FunctionDeploymentModule | null;
|
|
12772
|
+
functionDeploymentModuleEdge?: FunctionDeploymentModuleEdge | null;
|
|
12773
|
+
}
|
|
12774
|
+
export type DeleteFunctionDeploymentModulePayloadSelect = {
|
|
12775
|
+
clientMutationId?: boolean;
|
|
12776
|
+
functionDeploymentModule?: {
|
|
12777
|
+
select: FunctionDeploymentModuleSelect;
|
|
12778
|
+
};
|
|
12779
|
+
functionDeploymentModuleEdge?: {
|
|
12780
|
+
select: FunctionDeploymentModuleEdgeSelect;
|
|
12781
|
+
};
|
|
12782
|
+
};
|
|
12369
12783
|
export interface CreatePlansModulePayload {
|
|
12370
12784
|
clientMutationId?: string | null;
|
|
12371
12785
|
/** The `PlansModule` that was created by this mutation. */
|
|
@@ -12501,6 +12915,51 @@ export type DeleteDbUsageModulePayloadSelect = {
|
|
|
12501
12915
|
select: DbUsageModuleEdgeSelect;
|
|
12502
12916
|
};
|
|
12503
12917
|
};
|
|
12918
|
+
export interface CreateGraphExecutionModulePayload {
|
|
12919
|
+
clientMutationId?: string | null;
|
|
12920
|
+
/** The `GraphExecutionModule` that was created by this mutation. */
|
|
12921
|
+
graphExecutionModule?: GraphExecutionModule | null;
|
|
12922
|
+
graphExecutionModuleEdge?: GraphExecutionModuleEdge | null;
|
|
12923
|
+
}
|
|
12924
|
+
export type CreateGraphExecutionModulePayloadSelect = {
|
|
12925
|
+
clientMutationId?: boolean;
|
|
12926
|
+
graphExecutionModule?: {
|
|
12927
|
+
select: GraphExecutionModuleSelect;
|
|
12928
|
+
};
|
|
12929
|
+
graphExecutionModuleEdge?: {
|
|
12930
|
+
select: GraphExecutionModuleEdgeSelect;
|
|
12931
|
+
};
|
|
12932
|
+
};
|
|
12933
|
+
export interface UpdateGraphExecutionModulePayload {
|
|
12934
|
+
clientMutationId?: string | null;
|
|
12935
|
+
/** The `GraphExecutionModule` that was updated by this mutation. */
|
|
12936
|
+
graphExecutionModule?: GraphExecutionModule | null;
|
|
12937
|
+
graphExecutionModuleEdge?: GraphExecutionModuleEdge | null;
|
|
12938
|
+
}
|
|
12939
|
+
export type UpdateGraphExecutionModulePayloadSelect = {
|
|
12940
|
+
clientMutationId?: boolean;
|
|
12941
|
+
graphExecutionModule?: {
|
|
12942
|
+
select: GraphExecutionModuleSelect;
|
|
12943
|
+
};
|
|
12944
|
+
graphExecutionModuleEdge?: {
|
|
12945
|
+
select: GraphExecutionModuleEdgeSelect;
|
|
12946
|
+
};
|
|
12947
|
+
};
|
|
12948
|
+
export interface DeleteGraphExecutionModulePayload {
|
|
12949
|
+
clientMutationId?: string | null;
|
|
12950
|
+
/** The `GraphExecutionModule` that was deleted by this mutation. */
|
|
12951
|
+
graphExecutionModule?: GraphExecutionModule | null;
|
|
12952
|
+
graphExecutionModuleEdge?: GraphExecutionModuleEdge | null;
|
|
12953
|
+
}
|
|
12954
|
+
export type DeleteGraphExecutionModulePayloadSelect = {
|
|
12955
|
+
clientMutationId?: boolean;
|
|
12956
|
+
graphExecutionModule?: {
|
|
12957
|
+
select: GraphExecutionModuleSelect;
|
|
12958
|
+
};
|
|
12959
|
+
graphExecutionModuleEdge?: {
|
|
12960
|
+
select: GraphExecutionModuleEdgeSelect;
|
|
12961
|
+
};
|
|
12962
|
+
};
|
|
12504
12963
|
export interface CreateHierarchyModulePayload {
|
|
12505
12964
|
clientMutationId?: string | null;
|
|
12506
12965
|
/** The `HierarchyModule` that was created by this mutation. */
|
|
@@ -13538,18 +13997,6 @@ export type InvitesModuleEdgeSelect = {
|
|
|
13538
13997
|
select: InvitesModuleSelect;
|
|
13539
13998
|
};
|
|
13540
13999
|
};
|
|
13541
|
-
/** A `NamespaceModule` edge in the connection. */
|
|
13542
|
-
export interface NamespaceModuleEdge {
|
|
13543
|
-
cursor?: string | null;
|
|
13544
|
-
/** The `NamespaceModule` at the end of the edge. */
|
|
13545
|
-
node?: NamespaceModule | null;
|
|
13546
|
-
}
|
|
13547
|
-
export type NamespaceModuleEdgeSelect = {
|
|
13548
|
-
cursor?: boolean;
|
|
13549
|
-
node?: {
|
|
13550
|
-
select: NamespaceModuleSelect;
|
|
13551
|
-
};
|
|
13552
|
-
};
|
|
13553
14000
|
/** A `ComputeLogModule` edge in the connection. */
|
|
13554
14001
|
export interface ComputeLogModuleEdge {
|
|
13555
14002
|
cursor?: string | null;
|
|
@@ -13574,6 +14021,18 @@ export type InferenceLogModuleEdgeSelect = {
|
|
|
13574
14021
|
select: InferenceLogModuleSelect;
|
|
13575
14022
|
};
|
|
13576
14023
|
};
|
|
14024
|
+
/** A `NamespaceModule` edge in the connection. */
|
|
14025
|
+
export interface NamespaceModuleEdge {
|
|
14026
|
+
cursor?: string | null;
|
|
14027
|
+
/** The `NamespaceModule` at the end of the edge. */
|
|
14028
|
+
node?: NamespaceModule | null;
|
|
14029
|
+
}
|
|
14030
|
+
export type NamespaceModuleEdgeSelect = {
|
|
14031
|
+
cursor?: boolean;
|
|
14032
|
+
node?: {
|
|
14033
|
+
select: NamespaceModuleSelect;
|
|
14034
|
+
};
|
|
14035
|
+
};
|
|
13577
14036
|
/** A `StorageLogModule` edge in the connection. */
|
|
13578
14037
|
export interface StorageLogModuleEdge {
|
|
13579
14038
|
cursor?: string | null;
|
|
@@ -13598,6 +14057,18 @@ export type TransferLogModuleEdgeSelect = {
|
|
|
13598
14057
|
select: TransferLogModuleSelect;
|
|
13599
14058
|
};
|
|
13600
14059
|
};
|
|
14060
|
+
/** A `FunctionDeploymentModule` edge in the connection. */
|
|
14061
|
+
export interface FunctionDeploymentModuleEdge {
|
|
14062
|
+
cursor?: string | null;
|
|
14063
|
+
/** The `FunctionDeploymentModule` at the end of the edge. */
|
|
14064
|
+
node?: FunctionDeploymentModule | null;
|
|
14065
|
+
}
|
|
14066
|
+
export type FunctionDeploymentModuleEdgeSelect = {
|
|
14067
|
+
cursor?: boolean;
|
|
14068
|
+
node?: {
|
|
14069
|
+
select: FunctionDeploymentModuleSelect;
|
|
14070
|
+
};
|
|
14071
|
+
};
|
|
13601
14072
|
/** A `PlansModule` edge in the connection. */
|
|
13602
14073
|
export interface PlansModuleEdge {
|
|
13603
14074
|
cursor?: string | null;
|
|
@@ -13634,6 +14105,18 @@ export type DbUsageModuleEdgeSelect = {
|
|
|
13634
14105
|
select: DbUsageModuleSelect;
|
|
13635
14106
|
};
|
|
13636
14107
|
};
|
|
14108
|
+
/** A `GraphExecutionModule` edge in the connection. */
|
|
14109
|
+
export interface GraphExecutionModuleEdge {
|
|
14110
|
+
cursor?: string | null;
|
|
14111
|
+
/** The `GraphExecutionModule` at the end of the edge. */
|
|
14112
|
+
node?: GraphExecutionModule | null;
|
|
14113
|
+
}
|
|
14114
|
+
export type GraphExecutionModuleEdgeSelect = {
|
|
14115
|
+
cursor?: boolean;
|
|
14116
|
+
node?: {
|
|
14117
|
+
select: GraphExecutionModuleSelect;
|
|
14118
|
+
};
|
|
14119
|
+
};
|
|
13637
14120
|
/** A `HierarchyModule` edge in the connection. */
|
|
13638
14121
|
export interface HierarchyModuleEdge {
|
|
13639
14122
|
cursor?: string | null;
|