@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
package/README.md
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
| agent | - | React Query, ORM | [./src/agent/README.md](./src/agent/README.md) |
|
|
15
15
|
| api | - | React Query, ORM | [./src/api/README.md](./src/api/README.md) |
|
|
16
16
|
| auth | - | React Query, ORM | [./src/auth/README.md](./src/auth/README.md) |
|
|
17
|
+
| compute | - | React Query, ORM | [./src/compute/README.md](./src/compute/README.md) |
|
|
18
|
+
| config | - | React Query, ORM | [./src/config/README.md](./src/config/README.md) |
|
|
17
19
|
| modules | - | React Query, ORM | [./src/modules/README.md](./src/modules/README.md) |
|
|
18
20
|
| objects | - | React Query, ORM | [./src/objects/README.md](./src/objects/README.md) |
|
|
19
21
|
| usage | - | React Query, ORM | [./src/usage/README.md](./src/usage/README.md) |
|
|
@@ -77,7 +77,7 @@ class AppAdminGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppAdminGrant', 'updateAppAdminGrant', 'appAdminGrant', args.select, args.where.id, args.data, 'UpdateAppAdminGrantInput', 'id', 'appAdminGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppAdminGrant', 'updateAppAdminGrant', 'appAdminGrant', args.select, args.where.id, args.data, 'UpdateAppAdminGrantInput', 'id', 'appAdminGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppClaimedInviteModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppClaimedInvite', 'updateAppClaimedInvite', 'appClaimedInvite', args.select, args.where.id, args.data, 'UpdateAppClaimedInviteInput', 'id', 'appClaimedInvitePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppClaimedInvite', 'updateAppClaimedInvite', 'appClaimedInvite', args.select, args.where.id, args.data, 'UpdateAppClaimedInviteInput', 'id', 'appClaimedInvitePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppGrant', 'updateAppGrant', 'appGrant', args.select, args.where.id, args.data, 'UpdateAppGrantInput', 'id', 'appGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppGrant', 'updateAppGrant', 'appGrant', args.select, args.where.id, args.data, 'UpdateAppGrantInput', 'id', 'appGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppInviteModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppInvite', 'updateAppInvite', 'appInvite', args.select, args.where.id, args.data, 'UpdateAppInviteInput', 'id', 'appInvitePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppInvite', 'updateAppInvite', 'appInvite', args.select, args.where.id, args.data, 'UpdateAppInviteInput', 'id', 'appInvitePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppMembershipModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppMembership', 'updateAppMembership', 'appMembership', args.select, args.where.id, args.data, 'UpdateAppMembershipInput', 'id', 'appMembershipPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppMembership', 'updateAppMembership', 'appMembership', args.select, args.where.id, args.data, 'UpdateAppMembershipInput', 'id', 'appMembershipPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppMembershipDefaultModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppMembershipDefault', 'updateAppMembershipDefault', 'appMembershipDefault', args.select, args.where.id, args.data, 'UpdateAppMembershipDefaultInput', 'id', 'appMembershipDefaultPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppMembershipDefault', 'updateAppMembershipDefault', 'appMembershipDefault', args.select, args.where.id, args.data, 'UpdateAppMembershipDefaultInput', 'id', 'appMembershipDefaultPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppOwnerGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppOwnerGrant', 'updateAppOwnerGrant', 'appOwnerGrant', args.select, args.where.id, args.data, 'UpdateAppOwnerGrantInput', 'id', 'appOwnerGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppOwnerGrant', 'updateAppOwnerGrant', 'appOwnerGrant', args.select, args.where.id, args.data, 'UpdateAppOwnerGrantInput', 'id', 'appOwnerGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppPermissionModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermission', 'updateAppPermission', 'appPermission', args.select, args.where.id, args.data, 'UpdateAppPermissionInput', 'id', 'appPermissionPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermission', 'updateAppPermission', 'appPermission', args.select, args.where.id, args.data, 'UpdateAppPermissionInput', 'id', 'appPermissionPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppPermissionDefaultModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermissionDefault', 'updateAppPermissionDefault', 'appPermissionDefault', args.select, args.where.id, args.data, 'UpdateAppPermissionDefaultInput', 'id', 'appPermissionDefaultPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermissionDefault', 'updateAppPermissionDefault', 'appPermissionDefault', args.select, args.where.id, args.data, 'UpdateAppPermissionDefaultInput', 'id', 'appPermissionDefaultPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppPermissionDefaultGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermissionDefaultGrant', 'updateAppPermissionDefaultGrant', 'appPermissionDefaultGrant', args.select, args.where.id, args.data, 'UpdateAppPermissionDefaultGrantInput', 'id', 'appPermissionDefaultGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermissionDefaultGrant', 'updateAppPermissionDefaultGrant', 'appPermissionDefaultGrant', args.select, args.where.id, args.data, 'UpdateAppPermissionDefaultGrantInput', 'id', 'appPermissionDefaultGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AppPermissionDefaultPermissionModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermissionDefaultPermission', 'updateAppPermissionDefaultPermission', 'appPermissionDefaultPermission', args.select, args.where.id, args.data, 'UpdateAppPermissionDefaultPermissionInput', 'id', 'appPermissionDefaultPermissionPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermissionDefaultPermission', 'updateAppPermissionDefaultPermission', 'appPermissionDefaultPermission', args.select, args.where.id, args.data, 'UpdateAppPermissionDefaultPermissionInput', 'id', 'appPermissionDefaultPermissionPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class MembershipTypeModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('MembershipType', 'updateMembershipType', 'membershipType', args.select, args.where.id, args.data, 'UpdateMembershipTypeInput', 'id', 'membershipTypePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('MembershipType', 'updateMembershipType', 'membershipType', args.select, args.where.id, args.data, 'UpdateMembershipTypeInput', 'id', 'membershipTypePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgAdminGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgAdminGrant', 'updateOrgAdminGrant', 'orgAdminGrant', args.select, args.where.id, args.data, 'UpdateOrgAdminGrantInput', 'id', 'orgAdminGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgAdminGrant', 'updateOrgAdminGrant', 'orgAdminGrant', args.select, args.where.id, args.data, 'UpdateOrgAdminGrantInput', 'id', 'orgAdminGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgChartEdgeModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgChartEdge', 'updateOrgChartEdge', 'orgChartEdge', args.select, args.where.id, args.data, 'UpdateOrgChartEdgeInput', 'id', 'orgChartEdgePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgChartEdge', 'updateOrgChartEdge', 'orgChartEdge', args.select, args.where.id, args.data, 'UpdateOrgChartEdgeInput', 'id', 'orgChartEdgePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgChartEdgeGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgChartEdgeGrant', 'updateOrgChartEdgeGrant', 'orgChartEdgeGrant', args.select, args.where.id, args.data, 'UpdateOrgChartEdgeGrantInput', 'id', 'orgChartEdgeGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgChartEdgeGrant', 'updateOrgChartEdgeGrant', 'orgChartEdgeGrant', args.select, args.where.id, args.data, 'UpdateOrgChartEdgeGrantInput', 'id', 'orgChartEdgeGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgClaimedInviteModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgClaimedInvite', 'updateOrgClaimedInvite', 'orgClaimedInvite', args.select, args.where.id, args.data, 'UpdateOrgClaimedInviteInput', 'id', 'orgClaimedInvitePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgClaimedInvite', 'updateOrgClaimedInvite', 'orgClaimedInvite', args.select, args.where.id, args.data, 'UpdateOrgClaimedInviteInput', 'id', 'orgClaimedInvitePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgGrant', 'updateOrgGrant', 'orgGrant', args.select, args.where.id, args.data, 'UpdateOrgGrantInput', 'id', 'orgGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgGrant', 'updateOrgGrant', 'orgGrant', args.select, args.where.id, args.data, 'UpdateOrgGrantInput', 'id', 'orgGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgInviteModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgInvite', 'updateOrgInvite', 'orgInvite', args.select, args.where.id, args.data, 'UpdateOrgInviteInput', 'id', 'orgInvitePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgInvite', 'updateOrgInvite', 'orgInvite', args.select, args.where.id, args.data, 'UpdateOrgInviteInput', 'id', 'orgInvitePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgMemberModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMember', 'updateOrgMember', 'orgMember', args.select, args.where.id, args.data, 'UpdateOrgMemberInput', 'id', 'orgMemberPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMember', 'updateOrgMember', 'orgMember', args.select, args.where.id, args.data, 'UpdateOrgMemberInput', 'id', 'orgMemberPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgMemberProfileModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMemberProfile', 'updateOrgMemberProfile', 'orgMemberProfile', args.select, args.where.id, args.data, 'UpdateOrgMemberProfileInput', 'id', 'orgMemberProfilePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMemberProfile', 'updateOrgMemberProfile', 'orgMemberProfile', args.select, args.where.id, args.data, 'UpdateOrgMemberProfileInput', 'id', 'orgMemberProfilePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgMembershipModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMembership', 'updateOrgMembership', 'orgMembership', args.select, args.where.id, args.data, 'UpdateOrgMembershipInput', 'id', 'orgMembershipPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMembership', 'updateOrgMembership', 'orgMembership', args.select, args.where.id, args.data, 'UpdateOrgMembershipInput', 'id', 'orgMembershipPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgMembershipDefaultModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMembershipDefault', 'updateOrgMembershipDefault', 'orgMembershipDefault', args.select, args.where.id, args.data, 'UpdateOrgMembershipDefaultInput', 'id', 'orgMembershipDefaultPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMembershipDefault', 'updateOrgMembershipDefault', 'orgMembershipDefault', args.select, args.where.id, args.data, 'UpdateOrgMembershipDefaultInput', 'id', 'orgMembershipDefaultPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgMembershipSettingModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMembershipSetting', 'updateOrgMembershipSetting', 'orgMembershipSetting', args.select, args.where.id, args.data, 'UpdateOrgMembershipSettingInput', 'id', 'orgMembershipSettingPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgMembershipSetting', 'updateOrgMembershipSetting', 'orgMembershipSetting', args.select, args.where.id, args.data, 'UpdateOrgMembershipSettingInput', 'id', 'orgMembershipSettingPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgOwnerGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgOwnerGrant', 'updateOrgOwnerGrant', 'orgOwnerGrant', args.select, args.where.id, args.data, 'UpdateOrgOwnerGrantInput', 'id', 'orgOwnerGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgOwnerGrant', 'updateOrgOwnerGrant', 'orgOwnerGrant', args.select, args.where.id, args.data, 'UpdateOrgOwnerGrantInput', 'id', 'orgOwnerGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgPermissionModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermission', 'updateOrgPermission', 'orgPermission', args.select, args.where.id, args.data, 'UpdateOrgPermissionInput', 'id', 'orgPermissionPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermission', 'updateOrgPermission', 'orgPermission', args.select, args.where.id, args.data, 'UpdateOrgPermissionInput', 'id', 'orgPermissionPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgPermissionDefaultModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermissionDefault', 'updateOrgPermissionDefault', 'orgPermissionDefault', args.select, args.where.id, args.data, 'UpdateOrgPermissionDefaultInput', 'id', 'orgPermissionDefaultPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermissionDefault', 'updateOrgPermissionDefault', 'orgPermissionDefault', args.select, args.where.id, args.data, 'UpdateOrgPermissionDefaultInput', 'id', 'orgPermissionDefaultPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgPermissionDefaultGrantModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermissionDefaultGrant', 'updateOrgPermissionDefaultGrant', 'orgPermissionDefaultGrant', args.select, args.where.id, args.data, 'UpdateOrgPermissionDefaultGrantInput', 'id', 'orgPermissionDefaultGrantPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermissionDefaultGrant', 'updateOrgPermissionDefaultGrant', 'orgPermissionDefaultGrant', args.select, args.where.id, args.data, 'UpdateOrgPermissionDefaultGrantInput', 'id', 'orgPermissionDefaultGrantPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class OrgPermissionDefaultPermissionModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermissionDefaultPermission', 'updateOrgPermissionDefaultPermission', 'orgPermissionDefaultPermission', args.select, args.where.id, args.data, 'UpdateOrgPermissionDefaultPermissionInput', 'id', 'orgPermissionDefaultPermissionPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('OrgPermissionDefaultPermission', 'updateOrgPermissionDefaultPermission', 'orgPermissionDefaultPermission', args.select, args.where.id, args.data, 'UpdateOrgPermissionDefaultPermissionInput', 'id', 'orgPermissionDefaultPermissionPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -63,7 +63,7 @@ export declare function buildUpdateDocument<TSelect, TWhere extends {
|
|
|
63
63
|
document: string;
|
|
64
64
|
variables: Record<string, unknown>;
|
|
65
65
|
};
|
|
66
|
-
export declare function buildUpdateByPkDocument<TSelect, TData>(operationName: string, mutationField: string, entityField: string, select: TSelect, id: string | number, data: TData, inputTypeName: string, idFieldName: string, patchFieldName: string, connectionFieldsMap?: Record<string, Record<string, string
|
|
66
|
+
export declare function buildUpdateByPkDocument<TSelect, TData>(operationName: string, mutationField: string, entityField: string, select: TSelect, id: string | number, data: TData, inputTypeName: string, idFieldName: string, patchFieldName: string, connectionFieldsMap?: Record<string, Record<string, string>>, extraKeys?: Record<string, unknown>): {
|
|
67
67
|
document: string;
|
|
68
68
|
variables: Record<string, unknown>;
|
|
69
69
|
};
|
|
@@ -344,7 +344,7 @@ function buildUpdateDocument(operationName, mutationField, entityField, select,
|
|
|
344
344
|
},
|
|
345
345
|
};
|
|
346
346
|
}
|
|
347
|
-
function buildUpdateByPkDocument(operationName, mutationField, entityField, select, id, data, inputTypeName, idFieldName, patchFieldName, connectionFieldsMap) {
|
|
347
|
+
function buildUpdateByPkDocument(operationName, mutationField, entityField, select, id, data, inputTypeName, idFieldName, patchFieldName, connectionFieldsMap, extraKeys) {
|
|
348
348
|
const selections = select
|
|
349
349
|
? buildSelections(select, connectionFieldsMap, operationName)
|
|
350
350
|
: [t.field({ name: 'id' })];
|
|
@@ -363,6 +363,7 @@ function buildUpdateByPkDocument(operationName, mutationField, entityField, sele
|
|
|
363
363
|
variables: {
|
|
364
364
|
input: {
|
|
365
365
|
[idFieldName]: id,
|
|
366
|
+
...extraKeys,
|
|
366
367
|
[patchFieldName]: data,
|
|
367
368
|
},
|
|
368
369
|
},
|
package/admin/schema-types.d.ts
CHANGED
|
@@ -3190,6 +3190,14 @@ export interface MetaTable {
|
|
|
3190
3190
|
relations: MetaRelations;
|
|
3191
3191
|
inflection: MetaInflection;
|
|
3192
3192
|
query: MetaQuery;
|
|
3193
|
+
/** Storage metadata (null if not a storage table) */
|
|
3194
|
+
storage?: MetaStorage | null;
|
|
3195
|
+
/** Search metadata (null if no search configured) */
|
|
3196
|
+
search?: MetaSearch | null;
|
|
3197
|
+
/** i18n metadata (null if no @i18n tag) */
|
|
3198
|
+
i18n?: MetaI18n | null;
|
|
3199
|
+
/** Realtime metadata (null if no @realtime tag) */
|
|
3200
|
+
realtime?: MetaRealtime | null;
|
|
3193
3201
|
}
|
|
3194
3202
|
/** Information about a table field/column */
|
|
3195
3203
|
export interface MetaField {
|
|
@@ -3200,6 +3208,8 @@ export interface MetaField {
|
|
|
3200
3208
|
isPrimaryKey: boolean;
|
|
3201
3209
|
isForeignKey: boolean;
|
|
3202
3210
|
description?: string | null;
|
|
3211
|
+
/** Enum metadata if this field has an enum type */
|
|
3212
|
+
enumValues?: MetaEnum | null;
|
|
3203
3213
|
}
|
|
3204
3214
|
/** Information about a database index */
|
|
3205
3215
|
export interface MetaIndex {
|
|
@@ -3265,6 +3275,36 @@ export interface MetaQuery {
|
|
|
3265
3275
|
update?: string | null;
|
|
3266
3276
|
delete?: string | null;
|
|
3267
3277
|
}
|
|
3278
|
+
/** Storage metadata for a table */
|
|
3279
|
+
export interface MetaStorage {
|
|
3280
|
+
/** Whether this table is a storage files table */
|
|
3281
|
+
isFilesTable: boolean;
|
|
3282
|
+
/** Whether this table is a storage buckets table */
|
|
3283
|
+
isBucketsTable: boolean;
|
|
3284
|
+
}
|
|
3285
|
+
/** Search metadata for a table */
|
|
3286
|
+
export interface MetaSearch {
|
|
3287
|
+
/** Active search algorithms on this table */
|
|
3288
|
+
algorithms: string[];
|
|
3289
|
+
/** Searchable columns with their algorithm */
|
|
3290
|
+
columns: MetaSearchColumn[];
|
|
3291
|
+
/** Whether unifiedSearch composite filter is available */
|
|
3292
|
+
hasUnifiedSearch: boolean;
|
|
3293
|
+
/** Per-table search configuration */
|
|
3294
|
+
config?: MetaSearchConfig | null;
|
|
3295
|
+
}
|
|
3296
|
+
/** i18n metadata for a table with @i18n tag */
|
|
3297
|
+
export interface MetaI18n {
|
|
3298
|
+
/** Name of the translation table */
|
|
3299
|
+
translationTable: string;
|
|
3300
|
+
/** Fields that are translatable */
|
|
3301
|
+
translatableFields: MetaI18nField[];
|
|
3302
|
+
}
|
|
3303
|
+
/** Realtime metadata for a table with @realtime tag */
|
|
3304
|
+
export interface MetaRealtime {
|
|
3305
|
+
/** The generated subscription field name (e.g. onPostChanged) */
|
|
3306
|
+
subscriptionFieldName: string;
|
|
3307
|
+
}
|
|
3268
3308
|
/** Information about a PostgreSQL type */
|
|
3269
3309
|
export interface MetaType {
|
|
3270
3310
|
pgType: string;
|
|
@@ -3274,6 +3314,13 @@ export interface MetaType {
|
|
|
3274
3314
|
hasDefault?: boolean | null;
|
|
3275
3315
|
subtype?: string | null;
|
|
3276
3316
|
}
|
|
3317
|
+
/** Information about a PostgreSQL enum type */
|
|
3318
|
+
export interface MetaEnum {
|
|
3319
|
+
/** The PostgreSQL enum type name */
|
|
3320
|
+
name: string;
|
|
3321
|
+
/** Allowed values for this enum */
|
|
3322
|
+
values: string[];
|
|
3323
|
+
}
|
|
3277
3324
|
/** Reference to a related table */
|
|
3278
3325
|
export interface MetaRefTable {
|
|
3279
3326
|
name: string;
|
|
@@ -3307,3 +3354,28 @@ export interface MetaManyToManyRelation {
|
|
|
3307
3354
|
rightKeyAttributes: MetaField[];
|
|
3308
3355
|
rightTable: MetaRefTable;
|
|
3309
3356
|
}
|
|
3357
|
+
/** A searchable column with its algorithm */
|
|
3358
|
+
export interface MetaSearchColumn {
|
|
3359
|
+
/** Column name (camelCase) */
|
|
3360
|
+
name: string;
|
|
3361
|
+
/** Search algorithm: tsvector, bm25, trgm, or vector */
|
|
3362
|
+
algorithm: string;
|
|
3363
|
+
}
|
|
3364
|
+
/** Per-table search configuration from @searchConfig smart tag */
|
|
3365
|
+
export interface MetaSearchConfig {
|
|
3366
|
+
/** JSON-encoded per-adapter score weights */
|
|
3367
|
+
weights?: string | null;
|
|
3368
|
+
/** Whether recency boosting is enabled */
|
|
3369
|
+
boostRecent: boolean;
|
|
3370
|
+
/** Field used for recency decay */
|
|
3371
|
+
boostRecencyField?: string | null;
|
|
3372
|
+
/** Exponential decay factor per day */
|
|
3373
|
+
boostRecencyDecay?: number | null;
|
|
3374
|
+
}
|
|
3375
|
+
/** A translatable field */
|
|
3376
|
+
export interface MetaI18nField {
|
|
3377
|
+
/** GraphQL field name */
|
|
3378
|
+
name: string;
|
|
3379
|
+
/** PostgreSQL column type (text, citext) */
|
|
3380
|
+
type: string;
|
|
3381
|
+
}
|
|
@@ -1086,7 +1086,8 @@ export interface AgentResourceFilter {
|
|
|
1086
1086
|
/**
|
|
1087
1087
|
* Composite unified search. Provide a search string and it will be dispatched to
|
|
1088
1088
|
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
1089
|
-
* simultaneously.
|
|
1089
|
+
* simultaneously. When the LLM plugin is active, pgvector also participates via
|
|
1090
|
+
* auto-embedding. Rows matching ANY algorithm are returned. All matching score
|
|
1090
1091
|
* fields are populated.
|
|
1091
1092
|
*/
|
|
1092
1093
|
unifiedSearch?: string;
|
|
@@ -1304,6 +1305,7 @@ export interface CreateAgentResourceChunkInput {
|
|
|
1304
1305
|
chunkIndex?: number;
|
|
1305
1306
|
embedding?: number[];
|
|
1306
1307
|
metadata?: Record<string, unknown>;
|
|
1308
|
+
embeddingText?: string;
|
|
1307
1309
|
};
|
|
1308
1310
|
}
|
|
1309
1311
|
export interface AgentResourceChunkPatch {
|
|
@@ -1312,6 +1314,7 @@ export interface AgentResourceChunkPatch {
|
|
|
1312
1314
|
chunkIndex?: number | null;
|
|
1313
1315
|
embedding?: number[] | null;
|
|
1314
1316
|
metadata?: Record<string, unknown> | null;
|
|
1317
|
+
embeddingText?: string | null;
|
|
1315
1318
|
}
|
|
1316
1319
|
export interface UpdateAgentResourceChunkInput {
|
|
1317
1320
|
clientMutationId?: string;
|
|
@@ -1373,6 +1376,7 @@ export interface CreateAgentResourceInput {
|
|
|
1373
1376
|
archivedAt?: string;
|
|
1374
1377
|
embedding?: number[];
|
|
1375
1378
|
embeddingUpdatedAt?: string;
|
|
1379
|
+
embeddingText?: string;
|
|
1376
1380
|
};
|
|
1377
1381
|
}
|
|
1378
1382
|
export interface AgentResourcePatch {
|
|
@@ -1390,6 +1394,7 @@ export interface AgentResourcePatch {
|
|
|
1390
1394
|
archivedAt?: string | null;
|
|
1391
1395
|
embedding?: number[] | null;
|
|
1392
1396
|
embeddingUpdatedAt?: string | null;
|
|
1397
|
+
embeddingText?: string | null;
|
|
1393
1398
|
}
|
|
1394
1399
|
export interface UpdateAgentResourceInput {
|
|
1395
1400
|
clientMutationId?: string;
|
|
@@ -1483,6 +1488,8 @@ export interface VectorNearbyInput {
|
|
|
1483
1488
|
distance?: number;
|
|
1484
1489
|
/** When true (default for tables with @hasChunks), transparently queries the chunks table and returns the minimum distance across parent + all chunks. Set to false to only search the parent embedding. */
|
|
1485
1490
|
includeChunks?: boolean;
|
|
1491
|
+
/** Natural language text to embed server-side for similarity search. Mutually exclusive with `vector` — provide one or the other. Requires the LLM plugin to be configured with an embedding provider. */
|
|
1492
|
+
text?: string;
|
|
1486
1493
|
}
|
|
1487
1494
|
/** A filter to be used against many `Agent` object types. All fields are combined with a logical ‘and.’ */
|
|
1488
1495
|
export interface AgentPersonaToManyAgentFilter {
|
|
@@ -1734,6 +1741,8 @@ export interface AgentResourceChunkInput {
|
|
|
1734
1741
|
metadata?: Record<string, unknown>;
|
|
1735
1742
|
createdAt?: string;
|
|
1736
1743
|
updatedAt?: string;
|
|
1744
|
+
/** Natural language text to embed server-side into the `embedding` vector column. Mutually exclusive with `embedding` — provide one or the other. Requires the LLM plugin to be configured with an embedding provider. */
|
|
1745
|
+
embeddingText?: string;
|
|
1737
1746
|
}
|
|
1738
1747
|
/** An input for mutations affecting `AgentPersona` */
|
|
1739
1748
|
export interface AgentPersonaInput {
|
|
@@ -1786,6 +1795,8 @@ export interface AgentResourceInput {
|
|
|
1786
1795
|
archivedAt?: string;
|
|
1787
1796
|
embedding?: number[];
|
|
1788
1797
|
embeddingUpdatedAt?: string;
|
|
1798
|
+
/** Natural language text to embed server-side into the `embedding` vector column. Mutually exclusive with `embedding` — provide one or the other. Requires the LLM plugin to be configured with an embedding provider. */
|
|
1799
|
+
embeddingText?: string;
|
|
1789
1800
|
}
|
|
1790
1801
|
/** A filter to be used against `AgentTask` object types. All fields are combined with a logical ‘and.’ */
|
|
1791
1802
|
export interface AgentTaskFilter {
|
|
@@ -2434,7 +2445,8 @@ export interface AgentResourceFilter {
|
|
|
2434
2445
|
/**
|
|
2435
2446
|
* Composite unified search. Provide a search string and it will be dispatched to
|
|
2436
2447
|
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
2437
|
-
* simultaneously.
|
|
2448
|
+
* simultaneously. When the LLM plugin is active, pgvector also participates via
|
|
2449
|
+
* auto-embedding. Rows matching ANY algorithm are returned. All matching score
|
|
2438
2450
|
* fields are populated.
|
|
2439
2451
|
*/
|
|
2440
2452
|
unifiedSearch?: string;
|
|
@@ -77,7 +77,7 @@ class AgentModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('Agent', 'updateAgent', 'agent', args.select, args.where.id, args.data, 'UpdateAgentInput', 'id', 'agentPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('Agent', 'updateAgent', 'agent', args.select, args.where.id, args.data, 'UpdateAgentInput', 'id', 'agentPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentMessageModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentMessage', 'updateAgentMessage', 'agentMessage', args.select, args.where.id, args.data, 'UpdateAgentMessageInput', 'id', 'agentMessagePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentMessage', 'updateAgentMessage', 'agentMessage', args.select, args.where.id, args.data, 'UpdateAgentMessageInput', 'id', 'agentMessagePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentPersonaModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentPersona', 'updateAgentPersona', 'agentPersona', args.select, args.where.id, args.data, 'UpdateAgentPersonaInput', 'id', 'agentPersonaPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentPersona', 'updateAgentPersona', 'agentPersona', args.select, args.where.id, args.data, 'UpdateAgentPersonaInput', 'id', 'agentPersonaPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentPlanModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentPlan', 'updateAgentPlan', 'agentPlan', args.select, args.where.id, args.data, 'UpdateAgentPlanInput', 'id', 'agentPlanPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentPlan', 'updateAgentPlan', 'agentPlan', args.select, args.where.id, args.data, 'UpdateAgentPlanInput', 'id', 'agentPlanPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentPromptModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentPrompt', 'updateAgentPrompt', 'agentPrompt', args.select, args.where.id, args.data, 'UpdateAgentPromptInput', 'id', 'agentPromptPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentPrompt', 'updateAgentPrompt', 'agentPrompt', args.select, args.where.id, args.data, 'UpdateAgentPromptInput', 'id', 'agentPromptPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentResourceModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentResource', 'updateAgentResource', 'agentResource', args.select, args.where.id, args.data, 'UpdateAgentResourceInput', 'id', 'agentResourcePatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentResource', 'updateAgentResource', 'agentResource', args.select, args.where.id, args.data, 'UpdateAgentResourceInput', 'id', 'agentResourcePatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentResourceChunkModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentResourceChunk', 'updateAgentResourceChunk', 'agentResourceChunk', args.select, args.where.id, args.data, 'UpdateAgentResourceChunkInput', 'id', 'agentResourceChunkPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentResourceChunk', 'updateAgentResourceChunk', 'agentResourceChunk', args.select, args.where.id, args.data, 'UpdateAgentResourceChunkInput', 'id', 'agentResourceChunkPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentTaskModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentTask', 'updateAgentTask', 'agentTask', args.select, args.where.id, args.data, 'UpdateAgentTaskInput', 'id', 'agentTaskPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentTask', 'updateAgentTask', 'agentTask', args.select, args.where.id, args.data, 'UpdateAgentTaskInput', 'id', 'agentTaskPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|
|
@@ -77,7 +77,7 @@ class AgentThreadModel {
|
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
update(args) {
|
|
80
|
-
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentThread', 'updateAgentThread', 'agentThread', args.select, args.where.id, args.data, 'UpdateAgentThreadInput', 'id', 'agentThreadPatch', input_types_1.connectionFieldsMap);
|
|
80
|
+
const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AgentThread', 'updateAgentThread', 'agentThread', args.select, args.where.id, args.data, 'UpdateAgentThreadInput', 'id', 'agentThreadPatch', input_types_1.connectionFieldsMap, undefined);
|
|
81
81
|
return new query_builder_1.QueryBuilder({
|
|
82
82
|
client: this.client,
|
|
83
83
|
operation: 'mutation',
|