@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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { AgentModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, ComputeLogModule, ConfigSecretsModule, ConfigSecretsOrgModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionInvocationModule, FunctionModule, GraphModule, HierarchyModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PermissionsModule, PhoneNumbersModule, PlansModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, RlsModule, SecureTableProvision, SessionSecretsModule, SessionsModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
6
|
+
import type { AgentModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, ComputeLogModule, ConfigSecretsModule, ConfigSecretsOrgModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PermissionsModule, PhoneNumbersModule, PlansModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, RlsModule, SecureTableProvision, SessionSecretsModule, SessionsModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
/** Methods to use when ordering `DefaultIdsModule`. */
|
|
8
8
|
export type DefaultIdsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
|
|
9
9
|
/** Methods to use when ordering `MembershipTypesModule`. */
|
|
@@ -57,7 +57,7 @@ export type SessionsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY
|
|
|
57
57
|
/** Methods to use when ordering `SecureTableProvision`. */
|
|
58
58
|
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';
|
|
59
59
|
/** Methods to use when ordering `GraphModule`. */
|
|
60
|
-
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' | '
|
|
60
|
+
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';
|
|
61
61
|
/** Methods to use when ordering `MerkleStoreModule`. */
|
|
62
62
|
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';
|
|
63
63
|
/** Methods to use when ordering `DatabaseProvisionModule`. */
|
|
@@ -76,22 +76,26 @@ export type FunctionInvocationModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'P
|
|
|
76
76
|
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';
|
|
77
77
|
/** Methods to use when ordering `InvitesModule`. */
|
|
78
78
|
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';
|
|
79
|
-
/** Methods to use when ordering `NamespaceModule`. */
|
|
80
|
-
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';
|
|
81
79
|
/** Methods to use when ordering `ComputeLogModule`. */
|
|
82
80
|
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';
|
|
83
81
|
/** Methods to use when ordering `InferenceLogModule`. */
|
|
84
82
|
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';
|
|
83
|
+
/** Methods to use when ordering `NamespaceModule`. */
|
|
84
|
+
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';
|
|
85
85
|
/** Methods to use when ordering `StorageLogModule`. */
|
|
86
86
|
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';
|
|
87
87
|
/** Methods to use when ordering `TransferLogModule`. */
|
|
88
88
|
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';
|
|
89
|
+
/** Methods to use when ordering `FunctionDeploymentModule`. */
|
|
90
|
+
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';
|
|
89
91
|
/** Methods to use when ordering `PlansModule`. */
|
|
90
92
|
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';
|
|
91
93
|
/** Methods to use when ordering `BillingProviderModule`. */
|
|
92
94
|
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';
|
|
93
95
|
/** Methods to use when ordering `DbUsageModule`. */
|
|
94
96
|
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';
|
|
97
|
+
/** Methods to use when ordering `GraphExecutionModule`. */
|
|
98
|
+
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';
|
|
95
99
|
/** Methods to use when ordering `HierarchyModule`. */
|
|
96
100
|
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';
|
|
97
101
|
/** Methods to use when ordering `PermissionsModule`. */
|
|
@@ -990,10 +994,6 @@ export interface GraphModuleFilter {
|
|
|
990
994
|
merkleStoreModuleId?: UUIDFilter;
|
|
991
995
|
/** Filter by the object’s `graphsTableId` field. */
|
|
992
996
|
graphsTableId?: UUIDFilter;
|
|
993
|
-
/** Filter by the object’s `executionsTableId` field. */
|
|
994
|
-
executionsTableId?: UUIDFilter;
|
|
995
|
-
/** Filter by the object’s `outputsTableId` field. */
|
|
996
|
-
outputsTableId?: UUIDFilter;
|
|
997
997
|
/** Filter by the object’s `apiName` field. */
|
|
998
998
|
apiName?: StringFilter;
|
|
999
999
|
/** Filter by the object’s `privateApiName` field. */
|
|
@@ -1407,51 +1407,6 @@ export interface InvitesModuleFilter {
|
|
|
1407
1407
|
/** Negates the expression. */
|
|
1408
1408
|
not?: InvitesModuleFilter;
|
|
1409
1409
|
}
|
|
1410
|
-
/** A filter to be used against `NamespaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1411
|
-
export interface NamespaceModuleFilter {
|
|
1412
|
-
/** Filter by the object’s `id` field. */
|
|
1413
|
-
id?: UUIDFilter;
|
|
1414
|
-
/** Filter by the object’s `databaseId` field. */
|
|
1415
|
-
databaseId?: UUIDFilter;
|
|
1416
|
-
/** Filter by the object’s `schemaId` field. */
|
|
1417
|
-
schemaId?: UUIDFilter;
|
|
1418
|
-
/** Filter by the object’s `privateSchemaId` field. */
|
|
1419
|
-
privateSchemaId?: UUIDFilter;
|
|
1420
|
-
/** Filter by the object’s `publicSchemaName` field. */
|
|
1421
|
-
publicSchemaName?: StringFilter;
|
|
1422
|
-
/** Filter by the object’s `privateSchemaName` field. */
|
|
1423
|
-
privateSchemaName?: StringFilter;
|
|
1424
|
-
/** Filter by the object’s `namespacesTableId` field. */
|
|
1425
|
-
namespacesTableId?: UUIDFilter;
|
|
1426
|
-
/** Filter by the object’s `namespaceEventsTableId` field. */
|
|
1427
|
-
namespaceEventsTableId?: UUIDFilter;
|
|
1428
|
-
/** Filter by the object’s `namespacesTableName` field. */
|
|
1429
|
-
namespacesTableName?: StringFilter;
|
|
1430
|
-
/** Filter by the object’s `namespaceEventsTableName` field. */
|
|
1431
|
-
namespaceEventsTableName?: StringFilter;
|
|
1432
|
-
/** Filter by the object’s `apiName` field. */
|
|
1433
|
-
apiName?: StringFilter;
|
|
1434
|
-
/** Filter by the object’s `privateApiName` field. */
|
|
1435
|
-
privateApiName?: StringFilter;
|
|
1436
|
-
/** Filter by the object’s `scope` field. */
|
|
1437
|
-
scope?: StringFilter;
|
|
1438
|
-
/** Filter by the object’s `prefix` field. */
|
|
1439
|
-
prefix?: StringFilter;
|
|
1440
|
-
/** Filter by the object’s `entityTableId` field. */
|
|
1441
|
-
entityTableId?: UUIDFilter;
|
|
1442
|
-
/** Filter by the object’s `policies` field. */
|
|
1443
|
-
policies?: JSONFilter;
|
|
1444
|
-
/** Filter by the object’s `provisions` field. */
|
|
1445
|
-
provisions?: JSONFilter;
|
|
1446
|
-
/** Filter by the object’s `defaultPermissions` field. */
|
|
1447
|
-
defaultPermissions?: StringListFilter;
|
|
1448
|
-
/** Checks for all expressions in this list. */
|
|
1449
|
-
and?: NamespaceModuleFilter[];
|
|
1450
|
-
/** Checks for any expressions in this list. */
|
|
1451
|
-
or?: NamespaceModuleFilter[];
|
|
1452
|
-
/** Negates the expression. */
|
|
1453
|
-
not?: NamespaceModuleFilter;
|
|
1454
|
-
}
|
|
1455
1410
|
/** A filter to be used against `ComputeLogModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1456
1411
|
export interface ComputeLogModuleFilter {
|
|
1457
1412
|
/** Filter by the object’s `id` field. */
|
|
@@ -1546,6 +1501,53 @@ export interface InferenceLogModuleFilter {
|
|
|
1546
1501
|
/** Negates the expression. */
|
|
1547
1502
|
not?: InferenceLogModuleFilter;
|
|
1548
1503
|
}
|
|
1504
|
+
/** A filter to be used against `NamespaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1505
|
+
export interface NamespaceModuleFilter {
|
|
1506
|
+
/** Filter by the object’s `id` field. */
|
|
1507
|
+
id?: UUIDFilter;
|
|
1508
|
+
/** Filter by the object’s `databaseId` field. */
|
|
1509
|
+
databaseId?: UUIDFilter;
|
|
1510
|
+
/** Filter by the object’s `schemaId` field. */
|
|
1511
|
+
schemaId?: UUIDFilter;
|
|
1512
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
1513
|
+
privateSchemaId?: UUIDFilter;
|
|
1514
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
1515
|
+
publicSchemaName?: StringFilter;
|
|
1516
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
1517
|
+
privateSchemaName?: StringFilter;
|
|
1518
|
+
/** Filter by the object’s `namespacesTableId` field. */
|
|
1519
|
+
namespacesTableId?: UUIDFilter;
|
|
1520
|
+
/** Filter by the object’s `namespaceEventsTableId` field. */
|
|
1521
|
+
namespaceEventsTableId?: UUIDFilter;
|
|
1522
|
+
/** Filter by the object’s `namespacesTableName` field. */
|
|
1523
|
+
namespacesTableName?: StringFilter;
|
|
1524
|
+
/** Filter by the object’s `namespaceEventsTableName` field. */
|
|
1525
|
+
namespaceEventsTableName?: StringFilter;
|
|
1526
|
+
/** Filter by the object’s `apiName` field. */
|
|
1527
|
+
apiName?: StringFilter;
|
|
1528
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
1529
|
+
privateApiName?: StringFilter;
|
|
1530
|
+
/** Filter by the object’s `scope` field. */
|
|
1531
|
+
scope?: StringFilter;
|
|
1532
|
+
/** Filter by the object’s `prefix` field. */
|
|
1533
|
+
prefix?: StringFilter;
|
|
1534
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
1535
|
+
entityTableId?: UUIDFilter;
|
|
1536
|
+
/** Filter by the object’s `platformNamespacesTableId` field. */
|
|
1537
|
+
platformNamespacesTableId?: UUIDFilter;
|
|
1538
|
+
/** Filter by the object’s `policies` field. */
|
|
1539
|
+
policies?: JSONFilter;
|
|
1540
|
+
/** Filter by the object’s `provisions` field. */
|
|
1541
|
+
provisions?: JSONFilter;
|
|
1542
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
1543
|
+
defaultPermissions?: StringListFilter;
|
|
1544
|
+
/** Checks for all expressions in this list. */
|
|
1545
|
+
and?: NamespaceModuleFilter[];
|
|
1546
|
+
/** Checks for any expressions in this list. */
|
|
1547
|
+
or?: NamespaceModuleFilter[];
|
|
1548
|
+
/** Negates the expression. */
|
|
1549
|
+
not?: NamespaceModuleFilter;
|
|
1550
|
+
}
|
|
1549
1551
|
/** A filter to be used against `StorageLogModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1550
1552
|
export interface StorageLogModuleFilter {
|
|
1551
1553
|
/** Filter by the object’s `id` field. */
|
|
@@ -1640,6 +1642,63 @@ export interface TransferLogModuleFilter {
|
|
|
1640
1642
|
/** Negates the expression. */
|
|
1641
1643
|
not?: TransferLogModuleFilter;
|
|
1642
1644
|
}
|
|
1645
|
+
/** A filter to be used against `FunctionDeploymentModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1646
|
+
export interface FunctionDeploymentModuleFilter {
|
|
1647
|
+
/** Filter by the object’s `id` field. */
|
|
1648
|
+
id?: UUIDFilter;
|
|
1649
|
+
/** Filter by the object’s `databaseId` field. */
|
|
1650
|
+
databaseId?: UUIDFilter;
|
|
1651
|
+
/** Filter by the object’s `schemaId` field. */
|
|
1652
|
+
schemaId?: UUIDFilter;
|
|
1653
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
1654
|
+
privateSchemaId?: UUIDFilter;
|
|
1655
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
1656
|
+
publicSchemaName?: StringFilter;
|
|
1657
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
1658
|
+
privateSchemaName?: StringFilter;
|
|
1659
|
+
/** Filter by the object’s `deploymentsTableId` field. */
|
|
1660
|
+
deploymentsTableId?: UUIDFilter;
|
|
1661
|
+
/** Filter by the object’s `deploymentEventsTableId` field. */
|
|
1662
|
+
deploymentEventsTableId?: UUIDFilter;
|
|
1663
|
+
/** Filter by the object’s `deploymentsTableName` field. */
|
|
1664
|
+
deploymentsTableName?: StringFilter;
|
|
1665
|
+
/** Filter by the object’s `deploymentEventsTableName` field. */
|
|
1666
|
+
deploymentEventsTableName?: StringFilter;
|
|
1667
|
+
/** Filter by the object’s `apiName` field. */
|
|
1668
|
+
apiName?: StringFilter;
|
|
1669
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
1670
|
+
privateApiName?: StringFilter;
|
|
1671
|
+
/** Filter by the object’s `scope` field. */
|
|
1672
|
+
scope?: StringFilter;
|
|
1673
|
+
/** Filter by the object’s `prefix` field. */
|
|
1674
|
+
prefix?: StringFilter;
|
|
1675
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
1676
|
+
entityTableId?: UUIDFilter;
|
|
1677
|
+
/** Filter by the object’s `functionModuleId` field. */
|
|
1678
|
+
functionModuleId?: UUIDFilter;
|
|
1679
|
+
/** Filter by the object’s `namespaceModuleId` field. */
|
|
1680
|
+
namespaceModuleId?: UUIDFilter;
|
|
1681
|
+
/** Filter by the object’s `policies` field. */
|
|
1682
|
+
policies?: JSONFilter;
|
|
1683
|
+
/** Filter by the object’s `provisions` field. */
|
|
1684
|
+
provisions?: JSONFilter;
|
|
1685
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
1686
|
+
defaultPermissions?: StringListFilter;
|
|
1687
|
+
/** Checks for all expressions in this list. */
|
|
1688
|
+
and?: FunctionDeploymentModuleFilter[];
|
|
1689
|
+
/** Checks for any expressions in this list. */
|
|
1690
|
+
or?: FunctionDeploymentModuleFilter[];
|
|
1691
|
+
/** Negates the expression. */
|
|
1692
|
+
not?: FunctionDeploymentModuleFilter;
|
|
1693
|
+
/** Filter by the object’s `functionModule` relation. */
|
|
1694
|
+
functionModule?: FunctionModuleFilter;
|
|
1695
|
+
/** A related `functionModule` exists. */
|
|
1696
|
+
functionModuleExists?: boolean;
|
|
1697
|
+
/** Filter by the object’s `namespaceModule` relation. */
|
|
1698
|
+
namespaceModule?: NamespaceModuleFilter;
|
|
1699
|
+
/** A related `namespaceModule` exists. */
|
|
1700
|
+
namespaceModuleExists?: boolean;
|
|
1701
|
+
}
|
|
1643
1702
|
/** A filter to be used against `PlansModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1644
1703
|
export interface PlansModuleFilter {
|
|
1645
1704
|
/** Filter by the object’s `id` field. */
|
|
@@ -1797,6 +1856,61 @@ export interface DbUsageModuleFilter {
|
|
|
1797
1856
|
/** Negates the expression. */
|
|
1798
1857
|
not?: DbUsageModuleFilter;
|
|
1799
1858
|
}
|
|
1859
|
+
/** A filter to be used against `GraphExecutionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1860
|
+
export interface GraphExecutionModuleFilter {
|
|
1861
|
+
/** Filter by the object’s `id` field. */
|
|
1862
|
+
id?: UUIDFilter;
|
|
1863
|
+
/** Filter by the object’s `databaseId` field. */
|
|
1864
|
+
databaseId?: UUIDFilter;
|
|
1865
|
+
/** Filter by the object’s `schemaId` field. */
|
|
1866
|
+
schemaId?: UUIDFilter;
|
|
1867
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
1868
|
+
privateSchemaId?: UUIDFilter;
|
|
1869
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
1870
|
+
publicSchemaName?: StringFilter;
|
|
1871
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
1872
|
+
privateSchemaName?: StringFilter;
|
|
1873
|
+
/** Filter by the object’s `graphModuleId` field. */
|
|
1874
|
+
graphModuleId?: UUIDFilter;
|
|
1875
|
+
/** Filter by the object’s `scope` field. */
|
|
1876
|
+
scope?: StringFilter;
|
|
1877
|
+
/** Filter by the object’s `prefix` field. */
|
|
1878
|
+
prefix?: StringFilter;
|
|
1879
|
+
/** Filter by the object’s `executionsTableId` field. */
|
|
1880
|
+
executionsTableId?: UUIDFilter;
|
|
1881
|
+
/** Filter by the object’s `outputsTableId` field. */
|
|
1882
|
+
outputsTableId?: UUIDFilter;
|
|
1883
|
+
/** Filter by the object’s `nodeStatesTableId` field. */
|
|
1884
|
+
nodeStatesTableId?: UUIDFilter;
|
|
1885
|
+
/** Filter by the object’s `executionsTableName` field. */
|
|
1886
|
+
executionsTableName?: StringFilter;
|
|
1887
|
+
/** Filter by the object’s `outputsTableName` field. */
|
|
1888
|
+
outputsTableName?: StringFilter;
|
|
1889
|
+
/** Filter by the object’s `nodeStatesTableName` field. */
|
|
1890
|
+
nodeStatesTableName?: StringFilter;
|
|
1891
|
+
/** Filter by the object’s `apiName` field. */
|
|
1892
|
+
apiName?: StringFilter;
|
|
1893
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
1894
|
+
privateApiName?: StringFilter;
|
|
1895
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
1896
|
+
entityTableId?: UUIDFilter;
|
|
1897
|
+
/** Filter by the object’s `policies` field. */
|
|
1898
|
+
policies?: JSONFilter;
|
|
1899
|
+
/** Filter by the object’s `provisions` field. */
|
|
1900
|
+
provisions?: JSONFilter;
|
|
1901
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
1902
|
+
defaultPermissions?: StringListFilter;
|
|
1903
|
+
/** Filter by the object’s `createdAt` field. */
|
|
1904
|
+
createdAt?: DatetimeFilter;
|
|
1905
|
+
/** Checks for all expressions in this list. */
|
|
1906
|
+
and?: GraphExecutionModuleFilter[];
|
|
1907
|
+
/** Checks for any expressions in this list. */
|
|
1908
|
+
or?: GraphExecutionModuleFilter[];
|
|
1909
|
+
/** Negates the expression. */
|
|
1910
|
+
not?: GraphExecutionModuleFilter;
|
|
1911
|
+
/** Filter by the object’s `graphModule` relation. */
|
|
1912
|
+
graphModule?: GraphModuleFilter;
|
|
1913
|
+
}
|
|
1800
1914
|
/** A filter to be used against `HierarchyModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1801
1915
|
export interface HierarchyModuleFilter {
|
|
1802
1916
|
/** Filter by the object’s `id` field. */
|
|
@@ -3343,6 +3457,31 @@ export interface ConfigSecretsModuleInput {
|
|
|
3343
3457
|
provisions?: unknown;
|
|
3344
3458
|
hasConfig?: boolean;
|
|
3345
3459
|
}
|
|
3460
|
+
export interface CreateGraphModuleInput {
|
|
3461
|
+
clientMutationId?: string;
|
|
3462
|
+
/** The `GraphModule` to be created by this mutation. */
|
|
3463
|
+
graphModule: GraphModuleInput;
|
|
3464
|
+
}
|
|
3465
|
+
/** An input for mutations affecting `GraphModule` */
|
|
3466
|
+
export interface GraphModuleInput {
|
|
3467
|
+
id?: string;
|
|
3468
|
+
databaseId: string;
|
|
3469
|
+
publicSchemaId?: string;
|
|
3470
|
+
privateSchemaId?: string;
|
|
3471
|
+
publicSchemaName?: string;
|
|
3472
|
+
privateSchemaName?: string;
|
|
3473
|
+
scope?: string;
|
|
3474
|
+
prefix?: string;
|
|
3475
|
+
merkleStoreModuleId: string;
|
|
3476
|
+
graphsTableId?: string;
|
|
3477
|
+
apiName?: string;
|
|
3478
|
+
privateApiName?: string;
|
|
3479
|
+
entityTableId?: string;
|
|
3480
|
+
policies?: unknown;
|
|
3481
|
+
provisions?: unknown;
|
|
3482
|
+
defaultPermissions?: string[];
|
|
3483
|
+
createdAt?: string;
|
|
3484
|
+
}
|
|
3346
3485
|
export interface CreateRateLimitMetersModuleInput {
|
|
3347
3486
|
clientMutationId?: string;
|
|
3348
3487
|
/** The `RateLimitMetersModule` to be created by this mutation. */
|
|
@@ -3492,32 +3631,6 @@ export interface InvitesModuleInput {
|
|
|
3492
3631
|
apiName?: string;
|
|
3493
3632
|
privateApiName?: string;
|
|
3494
3633
|
}
|
|
3495
|
-
export interface CreateNamespaceModuleInput {
|
|
3496
|
-
clientMutationId?: string;
|
|
3497
|
-
/** The `NamespaceModule` to be created by this mutation. */
|
|
3498
|
-
namespaceModule: NamespaceModuleInput;
|
|
3499
|
-
}
|
|
3500
|
-
/** An input for mutations affecting `NamespaceModule` */
|
|
3501
|
-
export interface NamespaceModuleInput {
|
|
3502
|
-
id?: string;
|
|
3503
|
-
databaseId: string;
|
|
3504
|
-
schemaId?: string;
|
|
3505
|
-
privateSchemaId?: string;
|
|
3506
|
-
publicSchemaName?: string;
|
|
3507
|
-
privateSchemaName?: string;
|
|
3508
|
-
namespacesTableId?: string;
|
|
3509
|
-
namespaceEventsTableId?: string;
|
|
3510
|
-
namespacesTableName?: string;
|
|
3511
|
-
namespaceEventsTableName?: string;
|
|
3512
|
-
apiName?: string;
|
|
3513
|
-
privateApiName?: string;
|
|
3514
|
-
scope?: string;
|
|
3515
|
-
prefix?: string;
|
|
3516
|
-
entityTableId?: string;
|
|
3517
|
-
policies?: unknown;
|
|
3518
|
-
provisions?: unknown;
|
|
3519
|
-
defaultPermissions?: string[];
|
|
3520
|
-
}
|
|
3521
3634
|
export interface CreateComputeLogModuleInput {
|
|
3522
3635
|
clientMutationId?: string;
|
|
3523
3636
|
/** The `ComputeLogModule` to be created by this mutation. */
|
|
@@ -3545,33 +3658,6 @@ export interface ComputeLogModuleInput {
|
|
|
3545
3658
|
apiName?: string;
|
|
3546
3659
|
privateApiName?: string;
|
|
3547
3660
|
}
|
|
3548
|
-
export interface CreateGraphModuleInput {
|
|
3549
|
-
clientMutationId?: string;
|
|
3550
|
-
/** The `GraphModule` to be created by this mutation. */
|
|
3551
|
-
graphModule: GraphModuleInput;
|
|
3552
|
-
}
|
|
3553
|
-
/** An input for mutations affecting `GraphModule` */
|
|
3554
|
-
export interface GraphModuleInput {
|
|
3555
|
-
id?: string;
|
|
3556
|
-
databaseId: string;
|
|
3557
|
-
publicSchemaId?: string;
|
|
3558
|
-
privateSchemaId?: string;
|
|
3559
|
-
publicSchemaName?: string;
|
|
3560
|
-
privateSchemaName?: string;
|
|
3561
|
-
scope?: string;
|
|
3562
|
-
prefix?: string;
|
|
3563
|
-
merkleStoreModuleId: string;
|
|
3564
|
-
graphsTableId?: string;
|
|
3565
|
-
executionsTableId?: string;
|
|
3566
|
-
outputsTableId?: string;
|
|
3567
|
-
apiName?: string;
|
|
3568
|
-
privateApiName?: string;
|
|
3569
|
-
entityTableId?: string;
|
|
3570
|
-
policies?: unknown;
|
|
3571
|
-
provisions?: unknown;
|
|
3572
|
-
defaultPermissions?: string[];
|
|
3573
|
-
createdAt?: string;
|
|
3574
|
-
}
|
|
3575
3661
|
export interface CreateInferenceLogModuleInput {
|
|
3576
3662
|
clientMutationId?: string;
|
|
3577
3663
|
/** The `InferenceLogModule` to be created by this mutation. */
|
|
@@ -3599,21 +3685,48 @@ export interface InferenceLogModuleInput {
|
|
|
3599
3685
|
apiName?: string;
|
|
3600
3686
|
privateApiName?: string;
|
|
3601
3687
|
}
|
|
3602
|
-
export interface
|
|
3688
|
+
export interface CreateNamespaceModuleInput {
|
|
3603
3689
|
clientMutationId?: string;
|
|
3604
|
-
/** The `
|
|
3605
|
-
|
|
3690
|
+
/** The `NamespaceModule` to be created by this mutation. */
|
|
3691
|
+
namespaceModule: NamespaceModuleInput;
|
|
3606
3692
|
}
|
|
3607
|
-
/** An input for mutations affecting `
|
|
3608
|
-
export interface
|
|
3693
|
+
/** An input for mutations affecting `NamespaceModule` */
|
|
3694
|
+
export interface NamespaceModuleInput {
|
|
3609
3695
|
id?: string;
|
|
3610
3696
|
databaseId: string;
|
|
3611
3697
|
schemaId?: string;
|
|
3612
3698
|
privateSchemaId?: string;
|
|
3613
3699
|
publicSchemaName?: string;
|
|
3614
3700
|
privateSchemaName?: string;
|
|
3615
|
-
|
|
3616
|
-
|
|
3701
|
+
namespacesTableId?: string;
|
|
3702
|
+
namespaceEventsTableId?: string;
|
|
3703
|
+
namespacesTableName?: string;
|
|
3704
|
+
namespaceEventsTableName?: string;
|
|
3705
|
+
apiName?: string;
|
|
3706
|
+
privateApiName?: string;
|
|
3707
|
+
scope?: string;
|
|
3708
|
+
prefix?: string;
|
|
3709
|
+
entityTableId?: string;
|
|
3710
|
+
platformNamespacesTableId?: string;
|
|
3711
|
+
policies?: unknown;
|
|
3712
|
+
provisions?: unknown;
|
|
3713
|
+
defaultPermissions?: string[];
|
|
3714
|
+
}
|
|
3715
|
+
export interface CreateStorageLogModuleInput {
|
|
3716
|
+
clientMutationId?: string;
|
|
3717
|
+
/** The `StorageLogModule` to be created by this mutation. */
|
|
3718
|
+
storageLogModule: StorageLogModuleInput;
|
|
3719
|
+
}
|
|
3720
|
+
/** An input for mutations affecting `StorageLogModule` */
|
|
3721
|
+
export interface StorageLogModuleInput {
|
|
3722
|
+
id?: string;
|
|
3723
|
+
databaseId: string;
|
|
3724
|
+
schemaId?: string;
|
|
3725
|
+
privateSchemaId?: string;
|
|
3726
|
+
publicSchemaName?: string;
|
|
3727
|
+
privateSchemaName?: string;
|
|
3728
|
+
storageLogTableId?: string;
|
|
3729
|
+
storageLogTableName?: string;
|
|
3617
3730
|
usageDailyTableId?: string;
|
|
3618
3731
|
usageDailyTableName?: string;
|
|
3619
3732
|
interval?: string;
|
|
@@ -3653,6 +3766,34 @@ export interface TransferLogModuleInput {
|
|
|
3653
3766
|
apiName?: string;
|
|
3654
3767
|
privateApiName?: string;
|
|
3655
3768
|
}
|
|
3769
|
+
export interface CreateFunctionDeploymentModuleInput {
|
|
3770
|
+
clientMutationId?: string;
|
|
3771
|
+
/** The `FunctionDeploymentModule` to be created by this mutation. */
|
|
3772
|
+
functionDeploymentModule: FunctionDeploymentModuleInput;
|
|
3773
|
+
}
|
|
3774
|
+
/** An input for mutations affecting `FunctionDeploymentModule` */
|
|
3775
|
+
export interface FunctionDeploymentModuleInput {
|
|
3776
|
+
id?: string;
|
|
3777
|
+
databaseId: string;
|
|
3778
|
+
schemaId?: string;
|
|
3779
|
+
privateSchemaId?: string;
|
|
3780
|
+
publicSchemaName?: string;
|
|
3781
|
+
privateSchemaName?: string;
|
|
3782
|
+
deploymentsTableId?: string;
|
|
3783
|
+
deploymentEventsTableId?: string;
|
|
3784
|
+
deploymentsTableName?: string;
|
|
3785
|
+
deploymentEventsTableName?: string;
|
|
3786
|
+
apiName?: string;
|
|
3787
|
+
privateApiName?: string;
|
|
3788
|
+
scope?: string;
|
|
3789
|
+
prefix?: string;
|
|
3790
|
+
entityTableId?: string;
|
|
3791
|
+
functionModuleId?: string;
|
|
3792
|
+
namespaceModuleId?: string;
|
|
3793
|
+
policies?: unknown;
|
|
3794
|
+
provisions?: unknown;
|
|
3795
|
+
defaultPermissions?: string[];
|
|
3796
|
+
}
|
|
3656
3797
|
export interface CreatePlansModuleInput {
|
|
3657
3798
|
clientMutationId?: string;
|
|
3658
3799
|
/** The `PlansModule` to be created by this mutation. */
|
|
@@ -3742,6 +3883,36 @@ export interface DbUsageModuleInput {
|
|
|
3742
3883
|
apiName?: string;
|
|
3743
3884
|
privateApiName?: string;
|
|
3744
3885
|
}
|
|
3886
|
+
export interface CreateGraphExecutionModuleInput {
|
|
3887
|
+
clientMutationId?: string;
|
|
3888
|
+
/** The `GraphExecutionModule` to be created by this mutation. */
|
|
3889
|
+
graphExecutionModule: GraphExecutionModuleInput;
|
|
3890
|
+
}
|
|
3891
|
+
/** An input for mutations affecting `GraphExecutionModule` */
|
|
3892
|
+
export interface GraphExecutionModuleInput {
|
|
3893
|
+
id?: string;
|
|
3894
|
+
databaseId: string;
|
|
3895
|
+
schemaId?: string;
|
|
3896
|
+
privateSchemaId?: string;
|
|
3897
|
+
publicSchemaName?: string;
|
|
3898
|
+
privateSchemaName?: string;
|
|
3899
|
+
graphModuleId: string;
|
|
3900
|
+
scope?: string;
|
|
3901
|
+
prefix?: string;
|
|
3902
|
+
executionsTableId?: string;
|
|
3903
|
+
outputsTableId?: string;
|
|
3904
|
+
nodeStatesTableId?: string;
|
|
3905
|
+
executionsTableName?: string;
|
|
3906
|
+
outputsTableName?: string;
|
|
3907
|
+
nodeStatesTableName?: string;
|
|
3908
|
+
apiName?: string;
|
|
3909
|
+
privateApiName?: string;
|
|
3910
|
+
entityTableId?: string;
|
|
3911
|
+
policies?: unknown;
|
|
3912
|
+
provisions?: unknown;
|
|
3913
|
+
defaultPermissions?: string[];
|
|
3914
|
+
createdAt?: string;
|
|
3915
|
+
}
|
|
3745
3916
|
export interface CreateHierarchyModuleInput {
|
|
3746
3917
|
clientMutationId?: string;
|
|
3747
3918
|
/** The `HierarchyModule` to be created by this mutation. */
|
|
@@ -5173,6 +5344,32 @@ export interface ConfigSecretsModulePatch {
|
|
|
5173
5344
|
provisions?: unknown;
|
|
5174
5345
|
hasConfig?: boolean;
|
|
5175
5346
|
}
|
|
5347
|
+
export interface UpdateGraphModuleInput {
|
|
5348
|
+
clientMutationId?: string;
|
|
5349
|
+
id: string;
|
|
5350
|
+
/** An object where the defined keys will be set on the `GraphModule` being updated. */
|
|
5351
|
+
graphModulePatch: GraphModulePatch;
|
|
5352
|
+
}
|
|
5353
|
+
/** Represents an update to a `GraphModule`. Fields that are set will be updated. */
|
|
5354
|
+
export interface GraphModulePatch {
|
|
5355
|
+
id?: string;
|
|
5356
|
+
databaseId?: string;
|
|
5357
|
+
publicSchemaId?: string;
|
|
5358
|
+
privateSchemaId?: string;
|
|
5359
|
+
publicSchemaName?: string;
|
|
5360
|
+
privateSchemaName?: string;
|
|
5361
|
+
scope?: string;
|
|
5362
|
+
prefix?: string;
|
|
5363
|
+
merkleStoreModuleId?: string;
|
|
5364
|
+
graphsTableId?: string;
|
|
5365
|
+
apiName?: string;
|
|
5366
|
+
privateApiName?: string;
|
|
5367
|
+
entityTableId?: string;
|
|
5368
|
+
policies?: unknown;
|
|
5369
|
+
provisions?: unknown;
|
|
5370
|
+
defaultPermissions?: string[];
|
|
5371
|
+
createdAt?: string;
|
|
5372
|
+
}
|
|
5176
5373
|
export interface UpdateRateLimitMetersModuleInput {
|
|
5177
5374
|
clientMutationId?: string;
|
|
5178
5375
|
id: string;
|
|
@@ -5328,33 +5525,6 @@ export interface InvitesModulePatch {
|
|
|
5328
5525
|
apiName?: string;
|
|
5329
5526
|
privateApiName?: string;
|
|
5330
5527
|
}
|
|
5331
|
-
export interface UpdateNamespaceModuleInput {
|
|
5332
|
-
clientMutationId?: string;
|
|
5333
|
-
id: string;
|
|
5334
|
-
/** An object where the defined keys will be set on the `NamespaceModule` being updated. */
|
|
5335
|
-
namespaceModulePatch: NamespaceModulePatch;
|
|
5336
|
-
}
|
|
5337
|
-
/** Represents an update to a `NamespaceModule`. Fields that are set will be updated. */
|
|
5338
|
-
export interface NamespaceModulePatch {
|
|
5339
|
-
id?: string;
|
|
5340
|
-
databaseId?: string;
|
|
5341
|
-
schemaId?: string;
|
|
5342
|
-
privateSchemaId?: string;
|
|
5343
|
-
publicSchemaName?: string;
|
|
5344
|
-
privateSchemaName?: string;
|
|
5345
|
-
namespacesTableId?: string;
|
|
5346
|
-
namespaceEventsTableId?: string;
|
|
5347
|
-
namespacesTableName?: string;
|
|
5348
|
-
namespaceEventsTableName?: string;
|
|
5349
|
-
apiName?: string;
|
|
5350
|
-
privateApiName?: string;
|
|
5351
|
-
scope?: string;
|
|
5352
|
-
prefix?: string;
|
|
5353
|
-
entityTableId?: string;
|
|
5354
|
-
policies?: unknown;
|
|
5355
|
-
provisions?: unknown;
|
|
5356
|
-
defaultPermissions?: string[];
|
|
5357
|
-
}
|
|
5358
5528
|
export interface UpdateComputeLogModuleInput {
|
|
5359
5529
|
clientMutationId?: string;
|
|
5360
5530
|
id: string;
|
|
@@ -5383,34 +5553,6 @@ export interface ComputeLogModulePatch {
|
|
|
5383
5553
|
apiName?: string;
|
|
5384
5554
|
privateApiName?: string;
|
|
5385
5555
|
}
|
|
5386
|
-
export interface UpdateGraphModuleInput {
|
|
5387
|
-
clientMutationId?: string;
|
|
5388
|
-
id: string;
|
|
5389
|
-
/** An object where the defined keys will be set on the `GraphModule` being updated. */
|
|
5390
|
-
graphModulePatch: GraphModulePatch;
|
|
5391
|
-
}
|
|
5392
|
-
/** Represents an update to a `GraphModule`. Fields that are set will be updated. */
|
|
5393
|
-
export interface GraphModulePatch {
|
|
5394
|
-
id?: string;
|
|
5395
|
-
databaseId?: string;
|
|
5396
|
-
publicSchemaId?: string;
|
|
5397
|
-
privateSchemaId?: string;
|
|
5398
|
-
publicSchemaName?: string;
|
|
5399
|
-
privateSchemaName?: string;
|
|
5400
|
-
scope?: string;
|
|
5401
|
-
prefix?: string;
|
|
5402
|
-
merkleStoreModuleId?: string;
|
|
5403
|
-
graphsTableId?: string;
|
|
5404
|
-
executionsTableId?: string;
|
|
5405
|
-
outputsTableId?: string;
|
|
5406
|
-
apiName?: string;
|
|
5407
|
-
privateApiName?: string;
|
|
5408
|
-
entityTableId?: string;
|
|
5409
|
-
policies?: unknown;
|
|
5410
|
-
provisions?: unknown;
|
|
5411
|
-
defaultPermissions?: string[];
|
|
5412
|
-
createdAt?: string;
|
|
5413
|
-
}
|
|
5414
5556
|
export interface UpdateInferenceLogModuleInput {
|
|
5415
5557
|
clientMutationId?: string;
|
|
5416
5558
|
id: string;
|
|
@@ -5439,6 +5581,34 @@ export interface InferenceLogModulePatch {
|
|
|
5439
5581
|
apiName?: string;
|
|
5440
5582
|
privateApiName?: string;
|
|
5441
5583
|
}
|
|
5584
|
+
export interface UpdateNamespaceModuleInput {
|
|
5585
|
+
clientMutationId?: string;
|
|
5586
|
+
id: string;
|
|
5587
|
+
/** An object where the defined keys will be set on the `NamespaceModule` being updated. */
|
|
5588
|
+
namespaceModulePatch: NamespaceModulePatch;
|
|
5589
|
+
}
|
|
5590
|
+
/** Represents an update to a `NamespaceModule`. Fields that are set will be updated. */
|
|
5591
|
+
export interface NamespaceModulePatch {
|
|
5592
|
+
id?: string;
|
|
5593
|
+
databaseId?: string;
|
|
5594
|
+
schemaId?: string;
|
|
5595
|
+
privateSchemaId?: string;
|
|
5596
|
+
publicSchemaName?: string;
|
|
5597
|
+
privateSchemaName?: string;
|
|
5598
|
+
namespacesTableId?: string;
|
|
5599
|
+
namespaceEventsTableId?: string;
|
|
5600
|
+
namespacesTableName?: string;
|
|
5601
|
+
namespaceEventsTableName?: string;
|
|
5602
|
+
apiName?: string;
|
|
5603
|
+
privateApiName?: string;
|
|
5604
|
+
scope?: string;
|
|
5605
|
+
prefix?: string;
|
|
5606
|
+
entityTableId?: string;
|
|
5607
|
+
platformNamespacesTableId?: string;
|
|
5608
|
+
policies?: unknown;
|
|
5609
|
+
provisions?: unknown;
|
|
5610
|
+
defaultPermissions?: string[];
|
|
5611
|
+
}
|
|
5442
5612
|
export interface UpdateStorageLogModuleInput {
|
|
5443
5613
|
clientMutationId?: string;
|
|
5444
5614
|
id: string;
|
|
@@ -5495,6 +5665,35 @@ export interface TransferLogModulePatch {
|
|
|
5495
5665
|
apiName?: string;
|
|
5496
5666
|
privateApiName?: string;
|
|
5497
5667
|
}
|
|
5668
|
+
export interface UpdateFunctionDeploymentModuleInput {
|
|
5669
|
+
clientMutationId?: string;
|
|
5670
|
+
id: string;
|
|
5671
|
+
/** An object where the defined keys will be set on the `FunctionDeploymentModule` being updated. */
|
|
5672
|
+
functionDeploymentModulePatch: FunctionDeploymentModulePatch;
|
|
5673
|
+
}
|
|
5674
|
+
/** Represents an update to a `FunctionDeploymentModule`. Fields that are set will be updated. */
|
|
5675
|
+
export interface FunctionDeploymentModulePatch {
|
|
5676
|
+
id?: string;
|
|
5677
|
+
databaseId?: string;
|
|
5678
|
+
schemaId?: string;
|
|
5679
|
+
privateSchemaId?: string;
|
|
5680
|
+
publicSchemaName?: string;
|
|
5681
|
+
privateSchemaName?: string;
|
|
5682
|
+
deploymentsTableId?: string;
|
|
5683
|
+
deploymentEventsTableId?: string;
|
|
5684
|
+
deploymentsTableName?: string;
|
|
5685
|
+
deploymentEventsTableName?: string;
|
|
5686
|
+
apiName?: string;
|
|
5687
|
+
privateApiName?: string;
|
|
5688
|
+
scope?: string;
|
|
5689
|
+
prefix?: string;
|
|
5690
|
+
entityTableId?: string;
|
|
5691
|
+
functionModuleId?: string;
|
|
5692
|
+
namespaceModuleId?: string;
|
|
5693
|
+
policies?: unknown;
|
|
5694
|
+
provisions?: unknown;
|
|
5695
|
+
defaultPermissions?: string[];
|
|
5696
|
+
}
|
|
5498
5697
|
export interface UpdatePlansModuleInput {
|
|
5499
5698
|
clientMutationId?: string;
|
|
5500
5699
|
id: string;
|
|
@@ -5587,6 +5786,37 @@ export interface DbUsageModulePatch {
|
|
|
5587
5786
|
apiName?: string;
|
|
5588
5787
|
privateApiName?: string;
|
|
5589
5788
|
}
|
|
5789
|
+
export interface UpdateGraphExecutionModuleInput {
|
|
5790
|
+
clientMutationId?: string;
|
|
5791
|
+
id: string;
|
|
5792
|
+
/** An object where the defined keys will be set on the `GraphExecutionModule` being updated. */
|
|
5793
|
+
graphExecutionModulePatch: GraphExecutionModulePatch;
|
|
5794
|
+
}
|
|
5795
|
+
/** Represents an update to a `GraphExecutionModule`. Fields that are set will be updated. */
|
|
5796
|
+
export interface GraphExecutionModulePatch {
|
|
5797
|
+
id?: string;
|
|
5798
|
+
databaseId?: string;
|
|
5799
|
+
schemaId?: string;
|
|
5800
|
+
privateSchemaId?: string;
|
|
5801
|
+
publicSchemaName?: string;
|
|
5802
|
+
privateSchemaName?: string;
|
|
5803
|
+
graphModuleId?: string;
|
|
5804
|
+
scope?: string;
|
|
5805
|
+
prefix?: string;
|
|
5806
|
+
executionsTableId?: string;
|
|
5807
|
+
outputsTableId?: string;
|
|
5808
|
+
nodeStatesTableId?: string;
|
|
5809
|
+
executionsTableName?: string;
|
|
5810
|
+
outputsTableName?: string;
|
|
5811
|
+
nodeStatesTableName?: string;
|
|
5812
|
+
apiName?: string;
|
|
5813
|
+
privateApiName?: string;
|
|
5814
|
+
entityTableId?: string;
|
|
5815
|
+
policies?: unknown;
|
|
5816
|
+
provisions?: unknown;
|
|
5817
|
+
defaultPermissions?: string[];
|
|
5818
|
+
createdAt?: string;
|
|
5819
|
+
}
|
|
5590
5820
|
export interface UpdateHierarchyModuleInput {
|
|
5591
5821
|
clientMutationId?: string;
|
|
5592
5822
|
id: string;
|
|
@@ -6580,6 +6810,10 @@ export interface DeleteConfigSecretsModuleInput {
|
|
|
6580
6810
|
clientMutationId?: string;
|
|
6581
6811
|
id: string;
|
|
6582
6812
|
}
|
|
6813
|
+
export interface DeleteGraphModuleInput {
|
|
6814
|
+
clientMutationId?: string;
|
|
6815
|
+
id: string;
|
|
6816
|
+
}
|
|
6583
6817
|
export interface DeleteRateLimitMetersModuleInput {
|
|
6584
6818
|
clientMutationId?: string;
|
|
6585
6819
|
id: string;
|
|
@@ -6604,19 +6838,15 @@ export interface DeleteInvitesModuleInput {
|
|
|
6604
6838
|
clientMutationId?: string;
|
|
6605
6839
|
id: string;
|
|
6606
6840
|
}
|
|
6607
|
-
export interface DeleteNamespaceModuleInput {
|
|
6608
|
-
clientMutationId?: string;
|
|
6609
|
-
id: string;
|
|
6610
|
-
}
|
|
6611
6841
|
export interface DeleteComputeLogModuleInput {
|
|
6612
6842
|
clientMutationId?: string;
|
|
6613
6843
|
id: string;
|
|
6614
6844
|
}
|
|
6615
|
-
export interface
|
|
6845
|
+
export interface DeleteInferenceLogModuleInput {
|
|
6616
6846
|
clientMutationId?: string;
|
|
6617
6847
|
id: string;
|
|
6618
6848
|
}
|
|
6619
|
-
export interface
|
|
6849
|
+
export interface DeleteNamespaceModuleInput {
|
|
6620
6850
|
clientMutationId?: string;
|
|
6621
6851
|
id: string;
|
|
6622
6852
|
}
|
|
@@ -6628,6 +6858,10 @@ export interface DeleteTransferLogModuleInput {
|
|
|
6628
6858
|
clientMutationId?: string;
|
|
6629
6859
|
id: string;
|
|
6630
6860
|
}
|
|
6861
|
+
export interface DeleteFunctionDeploymentModuleInput {
|
|
6862
|
+
clientMutationId?: string;
|
|
6863
|
+
id: string;
|
|
6864
|
+
}
|
|
6631
6865
|
export interface DeletePlansModuleInput {
|
|
6632
6866
|
clientMutationId?: string;
|
|
6633
6867
|
id: string;
|
|
@@ -6640,6 +6874,10 @@ export interface DeleteDbUsageModuleInput {
|
|
|
6640
6874
|
clientMutationId?: string;
|
|
6641
6875
|
id: string;
|
|
6642
6876
|
}
|
|
6877
|
+
export interface DeleteGraphExecutionModuleInput {
|
|
6878
|
+
clientMutationId?: string;
|
|
6879
|
+
id: string;
|
|
6880
|
+
}
|
|
6643
6881
|
export interface DeleteHierarchyModuleInput {
|
|
6644
6882
|
clientMutationId?: string;
|
|
6645
6883
|
id: string;
|
|
@@ -6904,6 +7142,13 @@ export interface ConfigSecretsModuleConnection {
|
|
|
6904
7142
|
pageInfo: PageInfo;
|
|
6905
7143
|
totalCount: number;
|
|
6906
7144
|
}
|
|
7145
|
+
/** A connection to a list of `GraphModule` values. */
|
|
7146
|
+
export interface GraphModuleConnection {
|
|
7147
|
+
nodes: GraphModule[];
|
|
7148
|
+
edges: GraphModuleEdge[];
|
|
7149
|
+
pageInfo: PageInfo;
|
|
7150
|
+
totalCount: number;
|
|
7151
|
+
}
|
|
6907
7152
|
/** A connection to a list of `RateLimitMetersModule` values. */
|
|
6908
7153
|
export interface RateLimitMetersModuleConnection {
|
|
6909
7154
|
nodes: RateLimitMetersModule[];
|
|
@@ -6946,13 +7191,6 @@ export interface InvitesModuleConnection {
|
|
|
6946
7191
|
pageInfo: PageInfo;
|
|
6947
7192
|
totalCount: number;
|
|
6948
7193
|
}
|
|
6949
|
-
/** A connection to a list of `NamespaceModule` values. */
|
|
6950
|
-
export interface NamespaceModuleConnection {
|
|
6951
|
-
nodes: NamespaceModule[];
|
|
6952
|
-
edges: NamespaceModuleEdge[];
|
|
6953
|
-
pageInfo: PageInfo;
|
|
6954
|
-
totalCount: number;
|
|
6955
|
-
}
|
|
6956
7194
|
/** A connection to a list of `ComputeLogModule` values. */
|
|
6957
7195
|
export interface ComputeLogModuleConnection {
|
|
6958
7196
|
nodes: ComputeLogModule[];
|
|
@@ -6960,13 +7198,6 @@ export interface ComputeLogModuleConnection {
|
|
|
6960
7198
|
pageInfo: PageInfo;
|
|
6961
7199
|
totalCount: number;
|
|
6962
7200
|
}
|
|
6963
|
-
/** A connection to a list of `GraphModule` values. */
|
|
6964
|
-
export interface GraphModuleConnection {
|
|
6965
|
-
nodes: GraphModule[];
|
|
6966
|
-
edges: GraphModuleEdge[];
|
|
6967
|
-
pageInfo: PageInfo;
|
|
6968
|
-
totalCount: number;
|
|
6969
|
-
}
|
|
6970
7201
|
/** A connection to a list of `InferenceLogModule` values. */
|
|
6971
7202
|
export interface InferenceLogModuleConnection {
|
|
6972
7203
|
nodes: InferenceLogModule[];
|
|
@@ -6974,6 +7205,13 @@ export interface InferenceLogModuleConnection {
|
|
|
6974
7205
|
pageInfo: PageInfo;
|
|
6975
7206
|
totalCount: number;
|
|
6976
7207
|
}
|
|
7208
|
+
/** A connection to a list of `NamespaceModule` values. */
|
|
7209
|
+
export interface NamespaceModuleConnection {
|
|
7210
|
+
nodes: NamespaceModule[];
|
|
7211
|
+
edges: NamespaceModuleEdge[];
|
|
7212
|
+
pageInfo: PageInfo;
|
|
7213
|
+
totalCount: number;
|
|
7214
|
+
}
|
|
6977
7215
|
/** A connection to a list of `StorageLogModule` values. */
|
|
6978
7216
|
export interface StorageLogModuleConnection {
|
|
6979
7217
|
nodes: StorageLogModule[];
|
|
@@ -6988,6 +7226,13 @@ export interface TransferLogModuleConnection {
|
|
|
6988
7226
|
pageInfo: PageInfo;
|
|
6989
7227
|
totalCount: number;
|
|
6990
7228
|
}
|
|
7229
|
+
/** A connection to a list of `FunctionDeploymentModule` values. */
|
|
7230
|
+
export interface FunctionDeploymentModuleConnection {
|
|
7231
|
+
nodes: FunctionDeploymentModule[];
|
|
7232
|
+
edges: FunctionDeploymentModuleEdge[];
|
|
7233
|
+
pageInfo: PageInfo;
|
|
7234
|
+
totalCount: number;
|
|
7235
|
+
}
|
|
6991
7236
|
/** A connection to a list of `PlansModule` values. */
|
|
6992
7237
|
export interface PlansModuleConnection {
|
|
6993
7238
|
nodes: PlansModule[];
|
|
@@ -7009,6 +7254,13 @@ export interface DbUsageModuleConnection {
|
|
|
7009
7254
|
pageInfo: PageInfo;
|
|
7010
7255
|
totalCount: number;
|
|
7011
7256
|
}
|
|
7257
|
+
/** A connection to a list of `GraphExecutionModule` values. */
|
|
7258
|
+
export interface GraphExecutionModuleConnection {
|
|
7259
|
+
nodes: GraphExecutionModule[];
|
|
7260
|
+
edges: GraphExecutionModuleEdge[];
|
|
7261
|
+
pageInfo: PageInfo;
|
|
7262
|
+
totalCount: number;
|
|
7263
|
+
}
|
|
7012
7264
|
/** A connection to a list of `HierarchyModule` values. */
|
|
7013
7265
|
export interface HierarchyModuleConnection {
|
|
7014
7266
|
nodes: HierarchyModule[];
|
|
@@ -7313,6 +7565,12 @@ export interface CreateConfigSecretsModulePayload {
|
|
|
7313
7565
|
configSecretsModule?: ConfigSecretsModule | null;
|
|
7314
7566
|
configSecretsModuleEdge?: ConfigSecretsModuleEdge | null;
|
|
7315
7567
|
}
|
|
7568
|
+
export interface CreateGraphModulePayload {
|
|
7569
|
+
clientMutationId?: string | null;
|
|
7570
|
+
/** The `GraphModule` that was created by this mutation. */
|
|
7571
|
+
graphModule?: GraphModule | null;
|
|
7572
|
+
graphModuleEdge?: GraphModuleEdge | null;
|
|
7573
|
+
}
|
|
7316
7574
|
export interface CreateRateLimitMetersModulePayload {
|
|
7317
7575
|
clientMutationId?: string | null;
|
|
7318
7576
|
/** The `RateLimitMetersModule` that was created by this mutation. */
|
|
@@ -7349,30 +7607,24 @@ export interface CreateInvitesModulePayload {
|
|
|
7349
7607
|
invitesModule?: InvitesModule | null;
|
|
7350
7608
|
invitesModuleEdge?: InvitesModuleEdge | null;
|
|
7351
7609
|
}
|
|
7352
|
-
export interface CreateNamespaceModulePayload {
|
|
7353
|
-
clientMutationId?: string | null;
|
|
7354
|
-
/** The `NamespaceModule` that was created by this mutation. */
|
|
7355
|
-
namespaceModule?: NamespaceModule | null;
|
|
7356
|
-
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
7357
|
-
}
|
|
7358
7610
|
export interface CreateComputeLogModulePayload {
|
|
7359
7611
|
clientMutationId?: string | null;
|
|
7360
7612
|
/** The `ComputeLogModule` that was created by this mutation. */
|
|
7361
7613
|
computeLogModule?: ComputeLogModule | null;
|
|
7362
7614
|
computeLogModuleEdge?: ComputeLogModuleEdge | null;
|
|
7363
7615
|
}
|
|
7364
|
-
export interface CreateGraphModulePayload {
|
|
7365
|
-
clientMutationId?: string | null;
|
|
7366
|
-
/** The `GraphModule` that was created by this mutation. */
|
|
7367
|
-
graphModule?: GraphModule | null;
|
|
7368
|
-
graphModuleEdge?: GraphModuleEdge | null;
|
|
7369
|
-
}
|
|
7370
7616
|
export interface CreateInferenceLogModulePayload {
|
|
7371
7617
|
clientMutationId?: string | null;
|
|
7372
7618
|
/** The `InferenceLogModule` that was created by this mutation. */
|
|
7373
7619
|
inferenceLogModule?: InferenceLogModule | null;
|
|
7374
7620
|
inferenceLogModuleEdge?: InferenceLogModuleEdge | null;
|
|
7375
7621
|
}
|
|
7622
|
+
export interface CreateNamespaceModulePayload {
|
|
7623
|
+
clientMutationId?: string | null;
|
|
7624
|
+
/** The `NamespaceModule` that was created by this mutation. */
|
|
7625
|
+
namespaceModule?: NamespaceModule | null;
|
|
7626
|
+
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
7627
|
+
}
|
|
7376
7628
|
export interface CreateStorageLogModulePayload {
|
|
7377
7629
|
clientMutationId?: string | null;
|
|
7378
7630
|
/** The `StorageLogModule` that was created by this mutation. */
|
|
@@ -7385,6 +7637,12 @@ export interface CreateTransferLogModulePayload {
|
|
|
7385
7637
|
transferLogModule?: TransferLogModule | null;
|
|
7386
7638
|
transferLogModuleEdge?: TransferLogModuleEdge | null;
|
|
7387
7639
|
}
|
|
7640
|
+
export interface CreateFunctionDeploymentModulePayload {
|
|
7641
|
+
clientMutationId?: string | null;
|
|
7642
|
+
/** The `FunctionDeploymentModule` that was created by this mutation. */
|
|
7643
|
+
functionDeploymentModule?: FunctionDeploymentModule | null;
|
|
7644
|
+
functionDeploymentModuleEdge?: FunctionDeploymentModuleEdge | null;
|
|
7645
|
+
}
|
|
7388
7646
|
export interface CreatePlansModulePayload {
|
|
7389
7647
|
clientMutationId?: string | null;
|
|
7390
7648
|
/** The `PlansModule` that was created by this mutation. */
|
|
@@ -7403,6 +7661,12 @@ export interface CreateDbUsageModulePayload {
|
|
|
7403
7661
|
dbUsageModule?: DbUsageModule | null;
|
|
7404
7662
|
dbUsageModuleEdge?: DbUsageModuleEdge | null;
|
|
7405
7663
|
}
|
|
7664
|
+
export interface CreateGraphExecutionModulePayload {
|
|
7665
|
+
clientMutationId?: string | null;
|
|
7666
|
+
/** The `GraphExecutionModule` that was created by this mutation. */
|
|
7667
|
+
graphExecutionModule?: GraphExecutionModule | null;
|
|
7668
|
+
graphExecutionModuleEdge?: GraphExecutionModuleEdge | null;
|
|
7669
|
+
}
|
|
7406
7670
|
export interface CreateHierarchyModulePayload {
|
|
7407
7671
|
clientMutationId?: string | null;
|
|
7408
7672
|
/** The `HierarchyModule` that was created by this mutation. */
|
|
@@ -7655,6 +7919,12 @@ export interface UpdateConfigSecretsModulePayload {
|
|
|
7655
7919
|
configSecretsModule?: ConfigSecretsModule | null;
|
|
7656
7920
|
configSecretsModuleEdge?: ConfigSecretsModuleEdge | null;
|
|
7657
7921
|
}
|
|
7922
|
+
export interface UpdateGraphModulePayload {
|
|
7923
|
+
clientMutationId?: string | null;
|
|
7924
|
+
/** The `GraphModule` that was updated by this mutation. */
|
|
7925
|
+
graphModule?: GraphModule | null;
|
|
7926
|
+
graphModuleEdge?: GraphModuleEdge | null;
|
|
7927
|
+
}
|
|
7658
7928
|
export interface UpdateRateLimitMetersModulePayload {
|
|
7659
7929
|
clientMutationId?: string | null;
|
|
7660
7930
|
/** The `RateLimitMetersModule` that was updated by this mutation. */
|
|
@@ -7691,30 +7961,24 @@ export interface UpdateInvitesModulePayload {
|
|
|
7691
7961
|
invitesModule?: InvitesModule | null;
|
|
7692
7962
|
invitesModuleEdge?: InvitesModuleEdge | null;
|
|
7693
7963
|
}
|
|
7694
|
-
export interface UpdateNamespaceModulePayload {
|
|
7695
|
-
clientMutationId?: string | null;
|
|
7696
|
-
/** The `NamespaceModule` that was updated by this mutation. */
|
|
7697
|
-
namespaceModule?: NamespaceModule | null;
|
|
7698
|
-
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
7699
|
-
}
|
|
7700
7964
|
export interface UpdateComputeLogModulePayload {
|
|
7701
7965
|
clientMutationId?: string | null;
|
|
7702
7966
|
/** The `ComputeLogModule` that was updated by this mutation. */
|
|
7703
7967
|
computeLogModule?: ComputeLogModule | null;
|
|
7704
7968
|
computeLogModuleEdge?: ComputeLogModuleEdge | null;
|
|
7705
7969
|
}
|
|
7706
|
-
export interface UpdateGraphModulePayload {
|
|
7707
|
-
clientMutationId?: string | null;
|
|
7708
|
-
/** The `GraphModule` that was updated by this mutation. */
|
|
7709
|
-
graphModule?: GraphModule | null;
|
|
7710
|
-
graphModuleEdge?: GraphModuleEdge | null;
|
|
7711
|
-
}
|
|
7712
7970
|
export interface UpdateInferenceLogModulePayload {
|
|
7713
7971
|
clientMutationId?: string | null;
|
|
7714
7972
|
/** The `InferenceLogModule` that was updated by this mutation. */
|
|
7715
7973
|
inferenceLogModule?: InferenceLogModule | null;
|
|
7716
7974
|
inferenceLogModuleEdge?: InferenceLogModuleEdge | null;
|
|
7717
7975
|
}
|
|
7976
|
+
export interface UpdateNamespaceModulePayload {
|
|
7977
|
+
clientMutationId?: string | null;
|
|
7978
|
+
/** The `NamespaceModule` that was updated by this mutation. */
|
|
7979
|
+
namespaceModule?: NamespaceModule | null;
|
|
7980
|
+
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
7981
|
+
}
|
|
7718
7982
|
export interface UpdateStorageLogModulePayload {
|
|
7719
7983
|
clientMutationId?: string | null;
|
|
7720
7984
|
/** The `StorageLogModule` that was updated by this mutation. */
|
|
@@ -7727,6 +7991,12 @@ export interface UpdateTransferLogModulePayload {
|
|
|
7727
7991
|
transferLogModule?: TransferLogModule | null;
|
|
7728
7992
|
transferLogModuleEdge?: TransferLogModuleEdge | null;
|
|
7729
7993
|
}
|
|
7994
|
+
export interface UpdateFunctionDeploymentModulePayload {
|
|
7995
|
+
clientMutationId?: string | null;
|
|
7996
|
+
/** The `FunctionDeploymentModule` that was updated by this mutation. */
|
|
7997
|
+
functionDeploymentModule?: FunctionDeploymentModule | null;
|
|
7998
|
+
functionDeploymentModuleEdge?: FunctionDeploymentModuleEdge | null;
|
|
7999
|
+
}
|
|
7730
8000
|
export interface UpdatePlansModulePayload {
|
|
7731
8001
|
clientMutationId?: string | null;
|
|
7732
8002
|
/** The `PlansModule` that was updated by this mutation. */
|
|
@@ -7745,6 +8015,12 @@ export interface UpdateDbUsageModulePayload {
|
|
|
7745
8015
|
dbUsageModule?: DbUsageModule | null;
|
|
7746
8016
|
dbUsageModuleEdge?: DbUsageModuleEdge | null;
|
|
7747
8017
|
}
|
|
8018
|
+
export interface UpdateGraphExecutionModulePayload {
|
|
8019
|
+
clientMutationId?: string | null;
|
|
8020
|
+
/** The `GraphExecutionModule` that was updated by this mutation. */
|
|
8021
|
+
graphExecutionModule?: GraphExecutionModule | null;
|
|
8022
|
+
graphExecutionModuleEdge?: GraphExecutionModuleEdge | null;
|
|
8023
|
+
}
|
|
7748
8024
|
export interface UpdateHierarchyModulePayload {
|
|
7749
8025
|
clientMutationId?: string | null;
|
|
7750
8026
|
/** The `HierarchyModule` that was updated by this mutation. */
|
|
@@ -7997,6 +8273,12 @@ export interface DeleteConfigSecretsModulePayload {
|
|
|
7997
8273
|
configSecretsModule?: ConfigSecretsModule | null;
|
|
7998
8274
|
configSecretsModuleEdge?: ConfigSecretsModuleEdge | null;
|
|
7999
8275
|
}
|
|
8276
|
+
export interface DeleteGraphModulePayload {
|
|
8277
|
+
clientMutationId?: string | null;
|
|
8278
|
+
/** The `GraphModule` that was deleted by this mutation. */
|
|
8279
|
+
graphModule?: GraphModule | null;
|
|
8280
|
+
graphModuleEdge?: GraphModuleEdge | null;
|
|
8281
|
+
}
|
|
8000
8282
|
export interface DeleteRateLimitMetersModulePayload {
|
|
8001
8283
|
clientMutationId?: string | null;
|
|
8002
8284
|
/** The `RateLimitMetersModule` that was deleted by this mutation. */
|
|
@@ -8033,30 +8315,24 @@ export interface DeleteInvitesModulePayload {
|
|
|
8033
8315
|
invitesModule?: InvitesModule | null;
|
|
8034
8316
|
invitesModuleEdge?: InvitesModuleEdge | null;
|
|
8035
8317
|
}
|
|
8036
|
-
export interface DeleteNamespaceModulePayload {
|
|
8037
|
-
clientMutationId?: string | null;
|
|
8038
|
-
/** The `NamespaceModule` that was deleted by this mutation. */
|
|
8039
|
-
namespaceModule?: NamespaceModule | null;
|
|
8040
|
-
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
8041
|
-
}
|
|
8042
8318
|
export interface DeleteComputeLogModulePayload {
|
|
8043
8319
|
clientMutationId?: string | null;
|
|
8044
8320
|
/** The `ComputeLogModule` that was deleted by this mutation. */
|
|
8045
8321
|
computeLogModule?: ComputeLogModule | null;
|
|
8046
8322
|
computeLogModuleEdge?: ComputeLogModuleEdge | null;
|
|
8047
8323
|
}
|
|
8048
|
-
export interface DeleteGraphModulePayload {
|
|
8049
|
-
clientMutationId?: string | null;
|
|
8050
|
-
/** The `GraphModule` that was deleted by this mutation. */
|
|
8051
|
-
graphModule?: GraphModule | null;
|
|
8052
|
-
graphModuleEdge?: GraphModuleEdge | null;
|
|
8053
|
-
}
|
|
8054
8324
|
export interface DeleteInferenceLogModulePayload {
|
|
8055
8325
|
clientMutationId?: string | null;
|
|
8056
8326
|
/** The `InferenceLogModule` that was deleted by this mutation. */
|
|
8057
8327
|
inferenceLogModule?: InferenceLogModule | null;
|
|
8058
8328
|
inferenceLogModuleEdge?: InferenceLogModuleEdge | null;
|
|
8059
8329
|
}
|
|
8330
|
+
export interface DeleteNamespaceModulePayload {
|
|
8331
|
+
clientMutationId?: string | null;
|
|
8332
|
+
/** The `NamespaceModule` that was deleted by this mutation. */
|
|
8333
|
+
namespaceModule?: NamespaceModule | null;
|
|
8334
|
+
namespaceModuleEdge?: NamespaceModuleEdge | null;
|
|
8335
|
+
}
|
|
8060
8336
|
export interface DeleteStorageLogModulePayload {
|
|
8061
8337
|
clientMutationId?: string | null;
|
|
8062
8338
|
/** The `StorageLogModule` that was deleted by this mutation. */
|
|
@@ -8069,6 +8345,12 @@ export interface DeleteTransferLogModulePayload {
|
|
|
8069
8345
|
transferLogModule?: TransferLogModule | null;
|
|
8070
8346
|
transferLogModuleEdge?: TransferLogModuleEdge | null;
|
|
8071
8347
|
}
|
|
8348
|
+
export interface DeleteFunctionDeploymentModulePayload {
|
|
8349
|
+
clientMutationId?: string | null;
|
|
8350
|
+
/** The `FunctionDeploymentModule` that was deleted by this mutation. */
|
|
8351
|
+
functionDeploymentModule?: FunctionDeploymentModule | null;
|
|
8352
|
+
functionDeploymentModuleEdge?: FunctionDeploymentModuleEdge | null;
|
|
8353
|
+
}
|
|
8072
8354
|
export interface DeletePlansModulePayload {
|
|
8073
8355
|
clientMutationId?: string | null;
|
|
8074
8356
|
/** The `PlansModule` that was deleted by this mutation. */
|
|
@@ -8087,6 +8369,12 @@ export interface DeleteDbUsageModulePayload {
|
|
|
8087
8369
|
dbUsageModule?: DbUsageModule | null;
|
|
8088
8370
|
dbUsageModuleEdge?: DbUsageModuleEdge | null;
|
|
8089
8371
|
}
|
|
8372
|
+
export interface DeleteGraphExecutionModulePayload {
|
|
8373
|
+
clientMutationId?: string | null;
|
|
8374
|
+
/** The `GraphExecutionModule` that was deleted by this mutation. */
|
|
8375
|
+
graphExecutionModule?: GraphExecutionModule | null;
|
|
8376
|
+
graphExecutionModuleEdge?: GraphExecutionModuleEdge | null;
|
|
8377
|
+
}
|
|
8090
8378
|
export interface DeleteHierarchyModulePayload {
|
|
8091
8379
|
clientMutationId?: string | null;
|
|
8092
8380
|
/** The `HierarchyModule` that was deleted by this mutation. */
|
|
@@ -8364,6 +8652,12 @@ export interface ConfigSecretsModuleEdge {
|
|
|
8364
8652
|
/** The `ConfigSecretsModule` at the end of the edge. */
|
|
8365
8653
|
node?: ConfigSecretsModule | null;
|
|
8366
8654
|
}
|
|
8655
|
+
/** A `GraphModule` edge in the connection. */
|
|
8656
|
+
export interface GraphModuleEdge {
|
|
8657
|
+
cursor?: string | null;
|
|
8658
|
+
/** The `GraphModule` at the end of the edge. */
|
|
8659
|
+
node?: GraphModule | null;
|
|
8660
|
+
}
|
|
8367
8661
|
/** A `RateLimitMetersModule` edge in the connection. */
|
|
8368
8662
|
export interface RateLimitMetersModuleEdge {
|
|
8369
8663
|
cursor?: string | null;
|
|
@@ -8400,30 +8694,24 @@ export interface InvitesModuleEdge {
|
|
|
8400
8694
|
/** The `InvitesModule` at the end of the edge. */
|
|
8401
8695
|
node?: InvitesModule | null;
|
|
8402
8696
|
}
|
|
8403
|
-
/** A `NamespaceModule` edge in the connection. */
|
|
8404
|
-
export interface NamespaceModuleEdge {
|
|
8405
|
-
cursor?: string | null;
|
|
8406
|
-
/** The `NamespaceModule` at the end of the edge. */
|
|
8407
|
-
node?: NamespaceModule | null;
|
|
8408
|
-
}
|
|
8409
8697
|
/** A `ComputeLogModule` edge in the connection. */
|
|
8410
8698
|
export interface ComputeLogModuleEdge {
|
|
8411
8699
|
cursor?: string | null;
|
|
8412
8700
|
/** The `ComputeLogModule` at the end of the edge. */
|
|
8413
8701
|
node?: ComputeLogModule | null;
|
|
8414
8702
|
}
|
|
8415
|
-
/** A `GraphModule` edge in the connection. */
|
|
8416
|
-
export interface GraphModuleEdge {
|
|
8417
|
-
cursor?: string | null;
|
|
8418
|
-
/** The `GraphModule` at the end of the edge. */
|
|
8419
|
-
node?: GraphModule | null;
|
|
8420
|
-
}
|
|
8421
8703
|
/** A `InferenceLogModule` edge in the connection. */
|
|
8422
8704
|
export interface InferenceLogModuleEdge {
|
|
8423
8705
|
cursor?: string | null;
|
|
8424
8706
|
/** The `InferenceLogModule` at the end of the edge. */
|
|
8425
8707
|
node?: InferenceLogModule | null;
|
|
8426
8708
|
}
|
|
8709
|
+
/** A `NamespaceModule` edge in the connection. */
|
|
8710
|
+
export interface NamespaceModuleEdge {
|
|
8711
|
+
cursor?: string | null;
|
|
8712
|
+
/** The `NamespaceModule` at the end of the edge. */
|
|
8713
|
+
node?: NamespaceModule | null;
|
|
8714
|
+
}
|
|
8427
8715
|
/** A `StorageLogModule` edge in the connection. */
|
|
8428
8716
|
export interface StorageLogModuleEdge {
|
|
8429
8717
|
cursor?: string | null;
|
|
@@ -8436,6 +8724,12 @@ export interface TransferLogModuleEdge {
|
|
|
8436
8724
|
/** The `TransferLogModule` at the end of the edge. */
|
|
8437
8725
|
node?: TransferLogModule | null;
|
|
8438
8726
|
}
|
|
8727
|
+
/** A `FunctionDeploymentModule` edge in the connection. */
|
|
8728
|
+
export interface FunctionDeploymentModuleEdge {
|
|
8729
|
+
cursor?: string | null;
|
|
8730
|
+
/** The `FunctionDeploymentModule` at the end of the edge. */
|
|
8731
|
+
node?: FunctionDeploymentModule | null;
|
|
8732
|
+
}
|
|
8439
8733
|
/** A `PlansModule` edge in the connection. */
|
|
8440
8734
|
export interface PlansModuleEdge {
|
|
8441
8735
|
cursor?: string | null;
|
|
@@ -8454,6 +8748,12 @@ export interface DbUsageModuleEdge {
|
|
|
8454
8748
|
/** The `DbUsageModule` at the end of the edge. */
|
|
8455
8749
|
node?: DbUsageModule | null;
|
|
8456
8750
|
}
|
|
8751
|
+
/** A `GraphExecutionModule` edge in the connection. */
|
|
8752
|
+
export interface GraphExecutionModuleEdge {
|
|
8753
|
+
cursor?: string | null;
|
|
8754
|
+
/** The `GraphExecutionModule` at the end of the edge. */
|
|
8755
|
+
node?: GraphExecutionModule | null;
|
|
8756
|
+
}
|
|
8457
8757
|
/** A `HierarchyModule` edge in the connection. */
|
|
8458
8758
|
export interface HierarchyModuleEdge {
|
|
8459
8759
|
cursor?: string | null;
|
|
@@ -8551,6 +8851,14 @@ export interface MetaTable {
|
|
|
8551
8851
|
relations: MetaRelations;
|
|
8552
8852
|
inflection: MetaInflection;
|
|
8553
8853
|
query: MetaQuery;
|
|
8854
|
+
/** Storage metadata (null if not a storage table) */
|
|
8855
|
+
storage?: MetaStorage | null;
|
|
8856
|
+
/** Search metadata (null if no search configured) */
|
|
8857
|
+
search?: MetaSearch | null;
|
|
8858
|
+
/** i18n metadata (null if no @i18n tag) */
|
|
8859
|
+
i18n?: MetaI18n | null;
|
|
8860
|
+
/** Realtime metadata (null if no @realtime tag) */
|
|
8861
|
+
realtime?: MetaRealtime | null;
|
|
8554
8862
|
}
|
|
8555
8863
|
export interface ProvisionTableRecord {
|
|
8556
8864
|
outTableId?: string | null;
|
|
@@ -8571,6 +8879,8 @@ export interface MetaField {
|
|
|
8571
8879
|
isPrimaryKey: boolean;
|
|
8572
8880
|
isForeignKey: boolean;
|
|
8573
8881
|
description?: string | null;
|
|
8882
|
+
/** Enum metadata if this field has an enum type */
|
|
8883
|
+
enumValues?: MetaEnum | null;
|
|
8574
8884
|
}
|
|
8575
8885
|
/** Information about a database index */
|
|
8576
8886
|
export interface MetaIndex {
|
|
@@ -8636,6 +8946,36 @@ export interface MetaQuery {
|
|
|
8636
8946
|
update?: string | null;
|
|
8637
8947
|
delete?: string | null;
|
|
8638
8948
|
}
|
|
8949
|
+
/** Storage metadata for a table */
|
|
8950
|
+
export interface MetaStorage {
|
|
8951
|
+
/** Whether this table is a storage files table */
|
|
8952
|
+
isFilesTable: boolean;
|
|
8953
|
+
/** Whether this table is a storage buckets table */
|
|
8954
|
+
isBucketsTable: boolean;
|
|
8955
|
+
}
|
|
8956
|
+
/** Search metadata for a table */
|
|
8957
|
+
export interface MetaSearch {
|
|
8958
|
+
/** Active search algorithms on this table */
|
|
8959
|
+
algorithms: string[];
|
|
8960
|
+
/** Searchable columns with their algorithm */
|
|
8961
|
+
columns: MetaSearchColumn[];
|
|
8962
|
+
/** Whether unifiedSearch composite filter is available */
|
|
8963
|
+
hasUnifiedSearch: boolean;
|
|
8964
|
+
/** Per-table search configuration */
|
|
8965
|
+
config?: MetaSearchConfig | null;
|
|
8966
|
+
}
|
|
8967
|
+
/** i18n metadata for a table with @i18n tag */
|
|
8968
|
+
export interface MetaI18n {
|
|
8969
|
+
/** Name of the translation table */
|
|
8970
|
+
translationTable: string;
|
|
8971
|
+
/** Fields that are translatable */
|
|
8972
|
+
translatableFields: MetaI18nField[];
|
|
8973
|
+
}
|
|
8974
|
+
/** Realtime metadata for a table with @realtime tag */
|
|
8975
|
+
export interface MetaRealtime {
|
|
8976
|
+
/** The generated subscription field name (e.g. onPostChanged) */
|
|
8977
|
+
subscriptionFieldName: string;
|
|
8978
|
+
}
|
|
8639
8979
|
/** Information about a PostgreSQL type */
|
|
8640
8980
|
export interface MetaType {
|
|
8641
8981
|
pgType: string;
|
|
@@ -8645,6 +8985,13 @@ export interface MetaType {
|
|
|
8645
8985
|
hasDefault?: boolean | null;
|
|
8646
8986
|
subtype?: string | null;
|
|
8647
8987
|
}
|
|
8988
|
+
/** Information about a PostgreSQL enum type */
|
|
8989
|
+
export interface MetaEnum {
|
|
8990
|
+
/** The PostgreSQL enum type name */
|
|
8991
|
+
name: string;
|
|
8992
|
+
/** Allowed values for this enum */
|
|
8993
|
+
values: string[];
|
|
8994
|
+
}
|
|
8648
8995
|
/** Reference to a related table */
|
|
8649
8996
|
export interface MetaRefTable {
|
|
8650
8997
|
name: string;
|
|
@@ -8678,3 +9025,28 @@ export interface MetaManyToManyRelation {
|
|
|
8678
9025
|
rightKeyAttributes: MetaField[];
|
|
8679
9026
|
rightTable: MetaRefTable;
|
|
8680
9027
|
}
|
|
9028
|
+
/** A searchable column with its algorithm */
|
|
9029
|
+
export interface MetaSearchColumn {
|
|
9030
|
+
/** Column name (camelCase) */
|
|
9031
|
+
name: string;
|
|
9032
|
+
/** Search algorithm: tsvector, bm25, trgm, or vector */
|
|
9033
|
+
algorithm: string;
|
|
9034
|
+
}
|
|
9035
|
+
/** Per-table search configuration from @searchConfig smart tag */
|
|
9036
|
+
export interface MetaSearchConfig {
|
|
9037
|
+
/** JSON-encoded per-adapter score weights */
|
|
9038
|
+
weights?: string | null;
|
|
9039
|
+
/** Whether recency boosting is enabled */
|
|
9040
|
+
boostRecent: boolean;
|
|
9041
|
+
/** Field used for recency decay */
|
|
9042
|
+
boostRecencyField?: string | null;
|
|
9043
|
+
/** Exponential decay factor per day */
|
|
9044
|
+
boostRecencyDecay?: number | null;
|
|
9045
|
+
}
|
|
9046
|
+
/** A translatable field */
|
|
9047
|
+
export interface MetaI18nField {
|
|
9048
|
+
/** GraphQL field name */
|
|
9049
|
+
name: string;
|
|
9050
|
+
/** PostgreSQL column type (text, citext) */
|
|
9051
|
+
type: string;
|
|
9052
|
+
}
|