@constructive-io/react 0.30.1 → 0.30.3
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/agent/orm/input-types.d.ts +24 -0
- package/agent/orm/input-types.js +3 -0
- package/agent/schema-types.d.ts +13 -0
- package/api/hooks/index.d.ts +1 -1
- package/api/hooks/index.js +1 -1
- package/api/hooks/invalidation.d.ts +11 -5
- package/api/hooks/invalidation.js +25 -9
- package/api/hooks/mutation-keys.d.ts +22 -10
- package/api/hooks/mutation-keys.js +14 -7
- package/api/hooks/mutations/index.d.ts +6 -1
- package/api/hooks/mutations/index.js +6 -1
- package/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
- package/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +6 -6
- package/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateManagedDomainMutation.js +34 -0
- package/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteHttpRouteMutation.js +39 -0
- package/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteManagedDomainMutation.js +39 -0
- package/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateHttpRouteMutation.js +40 -0
- package/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateManagedDomainMutation.js +40 -0
- package/api/hooks/queries/index.d.ts +5 -2
- package/api/hooks/queries/index.js +5 -2
- package/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
- package/api/hooks/queries/{useMigrateFileQuery.js → useHttpRouteQuery.js} +14 -14
- package/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
- package/api/hooks/queries/useHttpRoutesQuery.js +38 -0
- package/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
- package/api/hooks/queries/useManagedDomainQuery.js +53 -0
- package/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
- package/api/hooks/queries/useManagedDomainsQuery.js +38 -0
- package/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
- package/api/hooks/queries/useResolveHttpRouteQuery.js +54 -0
- package/api/hooks/query-keys.d.ts +28 -12
- package/api/hooks/query-keys.js +17 -8
- package/api/orm/index.d.ts +9 -2
- package/api/orm/index.js +4 -2
- package/api/orm/input-types.d.ts +498 -143
- package/api/orm/input-types.js +4 -0
- package/api/orm/models/httpRoute.d.ts +54 -0
- package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
- package/api/orm/models/index.d.ts +2 -1
- package/api/orm/models/index.js +5 -3
- package/api/orm/models/managedDomain.d.ts +54 -0
- package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
- package/api/orm/query/index.d.ts +12 -0
- package/api/orm/query/index.js +20 -0
- package/api/schema-types.d.ts +277 -122
- package/api/types.d.ts +25 -5
- package/auth/orm/input-types.d.ts +155 -182
- package/auth/orm/input-types.js +4 -0
- package/auth/schema-types.d.ts +17 -63
- package/compute/hooks/index.d.ts +1 -1
- package/compute/hooks/index.js +1 -1
- package/compute/hooks/invalidation.d.ts +136 -10
- package/compute/hooks/invalidation.js +354 -18
- package/compute/hooks/mutation-keys.d.ts +294 -20
- package/compute/hooks/mutation-keys.js +227 -13
- package/compute/hooks/mutations/index.d.ts +62 -2
- package/compute/hooks/mutations/index.js +62 -2
- package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +34 -0
- package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceInstallationMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
- package/{api/hooks/mutations/useCreateMigrateFileMutation.js → compute/hooks/mutations/useCreateResourcesHealthMutation.js} +6 -6
- package/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +34 -0
- package/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateWebhookEventMutation.js +34 -0
- package/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
- package/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
- package/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
- package/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +6 -6
- package/{esm/infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +6 -6
- package/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +6 -6
- package/{esm/infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +6 -6
- package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +39 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +39 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteWebhookEventMutation.js +39 -0
- package/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +5 -5
- package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/{infra/hooks/mutations/useInfraSetDataAtPathMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +5 -5
- package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +26 -0
- package/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
- package/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
- package/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
- package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEventMutation.js +40 -0
- package/compute/hooks/queries/index.d.ts +39 -2
- package/compute/hooks/queries/index.js +39 -2
- package/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
- package/compute/hooks/queries/useDeclaredCapacitiesQuery.js +38 -0
- package/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
- package/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceInstallationQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourcesHealthQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +53 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformWebhookEventQuery.js +53 -0
- package/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformWebhookEventsQuery.js +38 -0
- package/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceInstallationQuery.js +53 -0
- package/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceInstallationsQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceUsageLogQuery.js +53 -0
- package/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUsageLogsQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUsageSummariesQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceUsageSummaryQuery.js +53 -0
- package/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +38 -0
- package/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourcesHealthQuery.js +53 -0
- package/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourcesHealthsQuery.js +38 -0
- package/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
- package/compute/hooks/queries/useWebhookEndpointQuery.js +53 -0
- package/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
- package/compute/hooks/queries/useWebhookEndpointsQuery.js +38 -0
- package/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
- package/compute/hooks/queries/useWebhookEventQuery.js +53 -0
- package/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/useWebhookEventsQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +318 -24
- package/compute/hooks/query-keys.js +188 -15
- package/compute/orm/index.d.ts +101 -4
- package/compute/orm/index.js +46 -4
- package/compute/orm/input-types.d.ts +5356 -772
- package/compute/orm/input-types.js +34 -2
- package/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/compute/orm/models/{getAllRecord.js → declaredCapacity.js} +15 -15
- package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/compute/orm/models/index.d.ts +23 -2
- package/compute/orm/models/index.js +48 -5
- package/compute/orm/models/infraCommit.d.ts +2 -2
- package/compute/orm/models/infraCommit.js +2 -2
- package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/infraObject.d.ts +2 -2
- package/compute/orm/models/infraObject.js +2 -2
- package/compute/orm/models/infraRef.d.ts +2 -2
- package/compute/orm/models/infraRef.js +2 -2
- package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/compute/orm/models/{infraGetAllRecord.js → platformDeclaredCapacity.js} +15 -15
- package/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/compute/orm/models/platformInfraCommit.js +107 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
- package/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/compute/orm/models/platformInfraRef.js +107 -0
- package/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/compute/orm/models/platformInfraStore.js +104 -0
- package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/compute/orm/models/platformResourceInstallation.js +104 -0
- package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageLog.js +107 -0
- package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageSummary.js +107 -0
- package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
- package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/compute/orm/models/platformResourcesHealth.js +80 -0
- package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/compute/orm/models/platformWebhookEndpoint.js +104 -0
- package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/compute/orm/models/platformWebhookEvent.js +104 -0
- package/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/compute/orm/models/resourceInstallation.js +104 -0
- package/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/compute/orm/models/resourceUsageLog.js +107 -0
- package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/resourceUsageSummary.js +107 -0
- package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/resourceUtilizationDaily.js +59 -0
- package/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
- package/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/compute/orm/models/webhookEndpoint.js +104 -0
- package/compute/orm/models/webhookEvent.d.ts +54 -0
- package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
- package/compute/orm/mutation/index.d.ts +89 -1
- package/compute/orm/mutation/index.js +132 -0
- package/compute/schema-types.d.ts +2775 -237
- package/compute/types.d.ts +364 -20
- package/config/orm/input-types.d.ts +4 -79
- package/config/schema-types.d.ts +0 -72
- package/esm/agent/orm/input-types.d.ts +24 -0
- package/esm/agent/orm/input-types.js +3 -0
- package/esm/agent/schema-types.d.ts +13 -0
- package/esm/api/hooks/index.d.ts +1 -1
- package/esm/api/hooks/index.js +1 -1
- package/esm/api/hooks/invalidation.d.ts +11 -5
- package/esm/api/hooks/invalidation.js +26 -10
- package/esm/api/hooks/mutation-keys.d.ts +22 -10
- package/esm/api/hooks/mutation-keys.js +13 -6
- package/esm/api/hooks/mutations/index.d.ts +6 -1
- package/esm/api/hooks/mutations/index.js +6 -1
- package/esm/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
- package/esm/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +7 -7
- package/esm/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateManagedDomainMutation.js +31 -0
- package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.js +36 -0
- package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.js +37 -0
- package/esm/api/hooks/queries/index.d.ts +5 -2
- package/esm/api/hooks/queries/index.js +5 -2
- package/esm/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useHttpRouteQuery.js +47 -0
- package/esm/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
- package/esm/{compute/hooks/queries/useGetAllQuery.js → api/hooks/queries/useHttpRoutesQuery.js} +11 -11
- package/esm/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useManagedDomainQuery.js +47 -0
- package/esm/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useManagedDomainsQuery.js +32 -0
- package/esm/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useResolveHttpRouteQuery.js +48 -0
- package/esm/api/hooks/query-keys.d.ts +28 -12
- package/esm/api/hooks/query-keys.js +16 -7
- package/esm/api/orm/index.d.ts +9 -2
- package/esm/api/orm/index.js +4 -2
- package/esm/api/orm/input-types.d.ts +498 -143
- package/esm/api/orm/input-types.js +4 -0
- package/esm/api/orm/models/httpRoute.d.ts +54 -0
- package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
- package/esm/api/orm/models/index.d.ts +2 -1
- package/esm/api/orm/models/index.js +2 -1
- package/esm/api/orm/models/managedDomain.d.ts +54 -0
- package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
- package/esm/api/orm/query/index.d.ts +12 -0
- package/esm/api/orm/query/index.js +20 -0
- package/esm/api/schema-types.d.ts +277 -122
- package/esm/api/types.d.ts +25 -5
- package/esm/auth/orm/input-types.d.ts +155 -182
- package/esm/auth/orm/input-types.js +4 -0
- package/esm/auth/schema-types.d.ts +17 -63
- package/esm/compute/hooks/index.d.ts +1 -1
- package/esm/compute/hooks/index.js +1 -1
- package/esm/compute/hooks/invalidation.d.ts +136 -10
- package/esm/compute/hooks/invalidation.js +355 -19
- package/esm/compute/hooks/mutation-keys.d.ts +294 -20
- package/esm/compute/hooks/mutation-keys.js +225 -12
- package/esm/compute/hooks/mutations/index.d.ts +62 -2
- package/esm/compute/hooks/mutations/index.js +62 -2
- package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js → compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateResourcesHealthMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/esm/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +7 -7
- package/{infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +7 -7
- package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +7 -7
- package/{infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.js +36 -0
- package/esm/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/esm/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +4 -4
- package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/esm/{infra/hooks/mutations/useInfraInitEmptyRepoMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +4 -4
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/esm/{infra/hooks/mutations/useUpdateInfraRefMutation.js → compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js} +9 -9
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.js +37 -0
- package/esm/compute/hooks/queries/index.d.ts +39 -2
- package/esm/compute/hooks/queries/index.js +39 -2
- package/esm/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
- package/esm/{objects/hooks/queries/useGetAllQuery.js → compute/hooks/queries/useDeclaredCapacitiesQuery.js} +11 -11
- package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraCommitQuery.js → compute/hooks/queries/usePlatformInfraCommitQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceInstallationQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceInstallationsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceUsageLogQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUsageLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourcesHealthQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/{useInfraGetAllQuery.js → useResourcesHealthsQuery.js} +11 -11
- package/esm/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useWebhookEndpointQuery.js +47 -0
- package/esm/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useWebhookEndpointsQuery.js +32 -0
- package/esm/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useWebhookEventQuery.js +47 -0
- package/esm/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useWebhookEventsQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +318 -24
- package/esm/compute/hooks/query-keys.js +186 -14
- package/esm/compute/orm/index.d.ts +101 -4
- package/esm/compute/orm/index.js +46 -4
- package/esm/compute/orm/input-types.d.ts +5356 -772
- package/esm/compute/orm/input-types.js +34 -2
- package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +13 -13
- package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/index.d.ts +23 -2
- package/esm/compute/orm/models/index.js +23 -2
- package/esm/compute/orm/models/infraCommit.d.ts +2 -2
- package/esm/compute/orm/models/infraCommit.js +2 -2
- package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/infraGetAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/infraObject.d.ts +2 -2
- package/esm/compute/orm/models/infraObject.js +2 -2
- package/esm/compute/orm/models/infraRef.d.ts +2 -2
- package/esm/compute/orm/models/infraRef.js +2 -2
- package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
- package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraCommit.js +103 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
- package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraRef.js +103 -0
- package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/compute/orm/models/platformInfraStore.js +100 -0
- package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
- package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
- package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
- package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/resourceInstallation.js +100 -0
- package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageLog.js +103 -0
- package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
- package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/webhookEndpoint.js +100 -0
- package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
- package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
- package/esm/compute/orm/mutation/index.d.ts +89 -1
- package/esm/compute/orm/mutation/index.js +132 -0
- package/esm/compute/schema-types.d.ts +2775 -237
- package/esm/compute/types.d.ts +364 -20
- package/esm/config/orm/input-types.d.ts +4 -79
- package/esm/config/schema-types.d.ts +0 -72
- package/esm/infra/hooks/index.d.ts +1 -1
- package/esm/infra/hooks/index.js +1 -1
- package/esm/infra/hooks/invalidation.d.ts +30 -30
- package/esm/infra/hooks/invalidation.js +64 -64
- package/esm/infra/hooks/mutation-keys.d.ts +66 -66
- package/esm/infra/hooks/mutation-keys.js +47 -44
- package/esm/infra/hooks/mutations/index.d.ts +16 -16
- package/esm/infra/hooks/mutations/index.js +16 -16
- package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +31 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +9 -10
- package/esm/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +9 -10
- package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.js +37 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +9 -10
- package/esm/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/{useInfraSetDataAtPathMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +4 -4
- package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
- package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +23 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
- package/esm/infra/hooks/queries/index.d.ts +9 -9
- package/esm/infra/hooks/queries/index.js +9 -9
- package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.js +32 -0
- package/esm/infra/hooks/query-keys.d.ts +70 -70
- package/esm/infra/hooks/query-keys.js +42 -40
- package/esm/infra/orm/index.d.ts +19 -19
- package/esm/infra/orm/index.js +10 -10
- package/esm/infra/orm/input-types.d.ts +542 -668
- package/esm/infra/orm/models/index.d.ts +5 -5
- package/esm/infra/orm/models/index.js +5 -5
- package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraCommit.js +103 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraObject.js +93 -0
- package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraRef.js +103 -0
- package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/infra/orm/models/platformInfraStore.js +100 -0
- package/esm/infra/orm/mutation/index.d.ts +16 -16
- package/esm/infra/orm/mutation/index.js +18 -18
- package/esm/infra/schema-types.d.ts +389 -473
- package/esm/infra/types.d.ts +30 -44
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +12 -0
- package/esm/modules/hooks/invalidation.js +33 -1
- package/esm/modules/hooks/mutation-keys.d.ts +24 -0
- package/esm/modules/hooks/mutation-keys.js +14 -0
- package/esm/modules/hooks/mutations/index.d.ts +6 -0
- package/esm/modules/hooks/mutations/index.js +6 -0
- package/esm/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
- package/esm/{api/hooks/mutations/useCreateMigrateFileMutation.js → modules/hooks/mutations/useCreateHttpRouteModuleMutation.js} +7 -7
- package/esm/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
- package/esm/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +7 -7
- package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +37 -0
- package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +4 -0
- package/esm/modules/hooks/queries/index.js +4 -0
- package/esm/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useHttpRouteModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraGetAllQuery.js → modules/hooks/queries/useHttpRouteModulesQuery.js} +11 -11
- package/esm/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
- package/esm/{api/hooks/queries/useMigrateFileQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +11 -11
- package/esm/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
- package/esm/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +11 -11
- package/esm/modules/hooks/query-keys.d.ts +28 -0
- package/esm/modules/hooks/query-keys.js +16 -0
- package/esm/modules/orm/index.d.ts +4 -0
- package/esm/modules/orm/index.js +4 -0
- package/esm/modules/orm/input-types.d.ts +802 -166
- package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/esm/modules/orm/models/httpRouteModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +2 -0
- package/esm/modules/orm/models/index.js +2 -0
- package/esm/modules/orm/models/webhookModule.d.ts +54 -0
- package/esm/modules/orm/models/webhookModule.js +100 -0
- package/esm/modules/schema-types.d.ts +483 -101
- package/esm/modules/types.d.ts +82 -22
- package/esm/objects/hooks/index.d.ts +1 -1
- package/esm/objects/hooks/index.js +1 -1
- package/esm/objects/hooks/invalidation.d.ts +5 -5
- package/esm/objects/hooks/invalidation.js +10 -10
- package/esm/objects/hooks/mutation-keys.d.ts +10 -10
- package/esm/objects/hooks/mutation-keys.js +9 -6
- package/esm/objects/hooks/mutations/index.d.ts +1 -1
- package/esm/objects/hooks/mutations/index.js +1 -1
- package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/objects/hooks/queries/index.d.ts +1 -1
- package/esm/objects/hooks/queries/index.js +1 -1
- package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
- package/esm/objects/hooks/query-keys.d.ts +12 -12
- package/esm/objects/hooks/query-keys.js +7 -7
- package/esm/objects/orm/index.d.ts +2 -2
- package/esm/objects/orm/index.js +2 -2
- package/esm/objects/orm/input-types.d.ts +15 -15
- package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/objects/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
- package/esm/objects/orm/models/index.d.ts +1 -1
- package/esm/objects/orm/models/index.js +1 -1
- package/esm/objects/schema-types.d.ts +9 -9
- package/esm/objects/types.d.ts +1 -1
- package/infra/hooks/index.d.ts +1 -1
- package/infra/hooks/index.js +1 -1
- package/infra/hooks/invalidation.d.ts +30 -30
- package/infra/hooks/invalidation.js +63 -63
- package/infra/hooks/mutation-keys.d.ts +66 -66
- package/infra/hooks/mutation-keys.js +48 -45
- package/infra/hooks/mutations/index.d.ts +16 -16
- package/infra/hooks/mutations/index.js +16 -16
- package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → infra/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
- package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +34 -0
- package/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraRefMutation.js → useDeletePlatformInfraRefMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
- package/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +8 -9
- package/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/infra/hooks/mutations/{useInfraInitEmptyRepoMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +5 -5
- package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
- package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +26 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
- package/infra/hooks/queries/index.d.ts +9 -9
- package/infra/hooks/queries/index.js +9 -9
- package/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraCommitsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraObjectQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraObjectsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraRefQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraRefsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraStoreQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraStoresQuery.js +38 -0
- package/infra/hooks/query-keys.d.ts +70 -70
- package/infra/hooks/query-keys.js +43 -41
- package/infra/orm/index.d.ts +19 -19
- package/infra/orm/index.js +10 -10
- package/infra/orm/input-types.d.ts +542 -668
- package/infra/orm/models/index.d.ts +5 -5
- package/infra/orm/models/index.js +11 -11
- package/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/infra/orm/models/platformInfraCommit.js +107 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/infra/orm/models/platformInfraObject.js +97 -0
- package/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/infra/orm/models/platformInfraRef.js +107 -0
- package/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/infra/orm/models/platformInfraStore.js +104 -0
- package/infra/orm/mutation/index.d.ts +16 -16
- package/infra/orm/mutation/index.js +18 -18
- package/infra/schema-types.d.ts +389 -473
- package/infra/types.d.ts +30 -44
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +12 -0
- package/modules/hooks/invalidation.js +32 -0
- package/modules/hooks/mutation-keys.d.ts +24 -0
- package/modules/hooks/mutation-keys.js +16 -2
- package/modules/hooks/mutations/index.d.ts +6 -0
- package/modules/hooks/mutations/index.js +6 -0
- package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.js +34 -0
- package/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
- package/{compute/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +6 -6
- package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +39 -0
- package/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +40 -0
- package/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +4 -0
- package/modules/hooks/queries/index.js +4 -0
- package/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useHttpRouteModuleQuery.js +53 -0
- package/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useHttpRouteModulesQuery.js +38 -0
- package/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraCommitQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +14 -14
- package/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
- package/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +14 -14
- package/modules/hooks/query-keys.d.ts +28 -0
- package/modules/hooks/query-keys.js +18 -2
- package/modules/orm/index.d.ts +4 -0
- package/modules/orm/index.js +4 -0
- package/modules/orm/input-types.d.ts +802 -166
- package/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/modules/orm/models/httpRouteModule.js +104 -0
- package/modules/orm/models/index.d.ts +2 -0
- package/modules/orm/models/index.js +6 -2
- package/modules/orm/models/webhookModule.d.ts +54 -0
- package/modules/orm/models/webhookModule.js +104 -0
- package/modules/schema-types.d.ts +483 -101
- package/modules/types.d.ts +82 -22
- package/objects/hooks/index.d.ts +1 -1
- package/objects/hooks/index.js +1 -1
- package/objects/hooks/invalidation.d.ts +5 -5
- package/objects/hooks/invalidation.js +9 -9
- package/objects/hooks/mutation-keys.d.ts +10 -10
- package/objects/hooks/mutation-keys.js +10 -7
- package/objects/hooks/mutations/index.d.ts +1 -1
- package/objects/hooks/mutations/index.js +1 -1
- package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
- package/objects/hooks/queries/index.d.ts +1 -1
- package/objects/hooks/queries/index.js +1 -1
- package/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/objects/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
- package/objects/hooks/query-keys.d.ts +12 -12
- package/objects/hooks/query-keys.js +8 -8
- package/objects/orm/index.d.ts +2 -2
- package/objects/orm/index.js +2 -2
- package/objects/orm/input-types.d.ts +15 -15
- package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/objects/orm/models/index.d.ts +1 -1
- package/objects/orm/models/index.js +3 -3
- package/objects/schema-types.d.ts +9 -9
- package/objects/types.d.ts +1 -1
- package/package.json +3 -3
- package/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
- package/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
- package/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
- package/api/orm/models/migrateFile.d.ts +0 -36
- package/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/compute/hooks/queries/useGetAllQuery.js +0 -38
- package/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/compute/hooks/queries/useInfraGetAllQuery.js +0 -38
- package/compute/orm/models/getAllRecord.d.ts +0 -30
- package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
- package/esm/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
- package/esm/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
- package/esm/api/orm/models/migrateFile.d.ts +0 -36
- package/esm/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/esm/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/esm/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/esm/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
- package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
- package/esm/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
- package/esm/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
- package/esm/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
- package/esm/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
- package/esm/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
- package/esm/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
- package/esm/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
- package/esm/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
- package/esm/infra/orm/models/infraCommit.d.ts +0 -56
- package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/orm/models/infraObject.d.ts +0 -56
- package/esm/infra/orm/models/infraRef.d.ts +0 -56
- package/esm/infra/orm/models/infraStore.d.ts +0 -54
- package/esm/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/esm/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
- package/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js +0 -34
- package/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
- package/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
- package/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
- package/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
- package/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
- package/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
- package/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
- package/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
- package/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
- package/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraGetAllQuery.js +0 -38
- package/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
- package/infra/orm/models/infraCommit.d.ts +0 -56
- package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/infra/orm/models/infraObject.d.ts +0 -56
- package/infra/orm/models/infraRef.d.ts +0 -56
- package/infra/orm/models/infraStore.d.ts +0 -54
- package/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/objects/hooks/queries/useGetAllQuery.js +0 -38
- package/objects/orm/models/getAllRecord.d.ts +0 -30
package/api/schema-types.d.ts
CHANGED
|
@@ -3,11 +3,10 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { Api, ApiModule, ApiSchema, ApiSetting, App, AstMigration, CheckConstraint, CompositeType, CorsSetting, Database, DatabaseSetting, DatabaseTransfer, DefaultPrivilege, Domain, EmbeddingChunk, Enum, Field, ForeignKeyConstraint, FullTextSearch, Function, Index,
|
|
6
|
+
import type { Api, ApiModule, ApiSchema, ApiSetting, App, AstMigration, CheckConstraint, CompositeType, CorsSetting, Database, DatabaseSetting, DatabaseTransfer, DefaultPrivilege, Domain, EmbeddingChunk, Enum, Field, ForeignKeyConstraint, FullTextSearch, Function, HttpRoute, Index, ManagedDomain, NodeTypeRegistry, Partition, Policy, PrimaryKeyConstraint, PubkeySetting, RlsSetting, Schema, SchemaGrant, Site, SiteMetadatum, SiteModule, SiteTheme, SpatialRelation, SqlAction, Table, TableGrant, Trigger, TriggerFunction, UniqueConstraint, View, ViewGrant, ViewRule, ViewTable, WebauthnSetting, BigIntFilter, BooleanFilter, DatetimeFilter, FloatFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
export type ConstructiveInternalTypeAttachment = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeHostname = unknown;
|
|
9
9
|
export type ConstructiveInternalTypeImage = unknown;
|
|
10
|
-
export type ConstructiveInternalTypeUpload = unknown;
|
|
11
10
|
export type ConstructiveInternalTypeUrl = unknown;
|
|
12
11
|
export type ApiExposureLevel = 'EXPOSABLE' | 'INTERNAL_ONLY' | 'NEVER_EXPOSE';
|
|
13
12
|
/** Methods to use when ordering `ApiModule`. */
|
|
@@ -21,7 +20,7 @@ export type ApiSettingOrderBy = 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC'
|
|
|
21
20
|
/** Methods to use when ordering `App`. */
|
|
22
21
|
export type AppOrderBy = 'APP_ID_PREFIX_ASC' | 'APP_ID_PREFIX_DESC' | 'APP_IMAGE_ASC' | 'APP_IMAGE_DESC' | 'APP_STORE_ID_ASC' | 'APP_STORE_ID_DESC' | 'APP_STORE_LINK_ASC' | 'APP_STORE_LINK_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PLAY_STORE_LINK_ASC' | 'PLAY_STORE_LINK_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC';
|
|
23
22
|
/** Methods to use when ordering `AstMigration`. */
|
|
24
|
-
export type AstMigrationOrderBy = '
|
|
23
|
+
export type AstMigrationOrderBy = 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTION_NAME_ASC' | 'ACTION_NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOYS_ASC' | 'DEPLOYS_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'REQUIRES_ASC' | 'REQUIRES_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC';
|
|
25
24
|
/** Methods to use when ordering `CheckConstraint`. */
|
|
26
25
|
export type CheckConstraintOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EXPR_ASC' | 'EXPR_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'TYPE_ASC' | 'TYPE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
27
26
|
/** Methods to use when ordering `CompositeType`. */
|
|
@@ -50,10 +49,12 @@ export type ForeignKeyConstraintOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CR
|
|
|
50
49
|
export type FullTextSearchOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'LANGS_ASC' | 'LANGS_DESC' | 'LANG_COLUMN_ASC' | 'LANG_COLUMN_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'WEIGHTS_ASC' | 'WEIGHTS_DESC';
|
|
51
50
|
/** Methods to use when ordering `Function`. */
|
|
52
51
|
export type FunctionOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
|
|
52
|
+
/** Methods to use when ordering `HttpRoute`. */
|
|
53
|
+
export type HttpRouteOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DOMAIN_ID_ASC' | 'DOMAIN_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'METHOD_ASC' | 'METHOD_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'TARGET_ID_ASC' | 'TARGET_ID_DESC' | 'TARGET_KIND_ASC' | 'TARGET_KIND_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
53
54
|
/** Methods to use when ordering `Index`. */
|
|
54
55
|
export type IndexOrderBy = 'ACCESS_METHOD_ASC' | 'ACCESS_METHOD_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'INCLUDE_FIELD_IDS_ASC' | 'INCLUDE_FIELD_IDS_DESC' | 'INDEX_PARAMS_ASC' | 'INDEX_PARAMS_DESC' | 'IS_UNIQUE_ASC' | 'IS_UNIQUE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'OP_CLASSES_ASC' | 'OP_CLASSES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'WHERE_CLAUSE_ASC' | 'WHERE_CLAUSE_DESC';
|
|
55
|
-
/** Methods to use when ordering `
|
|
56
|
-
export type
|
|
56
|
+
/** Methods to use when ordering `ManagedDomain`. */
|
|
57
|
+
export type ManagedDomainOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DOMAIN_ASC' | 'DOMAIN_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_WILDCARD_ASC' | 'IS_WILDCARD_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TLS_READY_AT_ASC' | 'TLS_READY_AT_DESC' | 'TLS_STATUS_ASC' | 'TLS_STATUS_DESC' | 'VERIFICATION_STATUS_ASC' | 'VERIFICATION_STATUS_DESC' | 'VERIFIED_AT_ASC' | 'VERIFIED_AT_DESC';
|
|
57
58
|
/** Methods to use when ordering `NodeTypeRegistry`. */
|
|
58
59
|
export type NodeTypeRegistryOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMETER_SCHEMA_ASC' | 'PARAMETER_SCHEMA_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
|
|
59
60
|
export type ObjectCategory = 'APP' | 'AUTH' | 'CORE' | 'MEMBERSHIPS' | 'MODULE' | 'PERMISSIONS';
|
|
@@ -82,7 +83,7 @@ export type SiteThemeOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC'
|
|
|
82
83
|
/** Methods to use when ordering `SpatialRelation`. */
|
|
83
84
|
export type SpatialRelationOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OPERATOR_ASC' | 'OPERATOR_DESC' | 'PARAM_NAME_ASC' | 'PARAM_NAME_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REF_FIELD_ID_ASC' | 'REF_FIELD_ID_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
84
85
|
/** Methods to use when ordering `SqlAction`. */
|
|
85
|
-
export type SqlActionOrderBy = '
|
|
86
|
+
export type SqlActionOrderBy = 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTION_NAME_ASC' | 'ACTION_NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'DEPS_ASC' | 'DEPS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC';
|
|
86
87
|
/** Methods to use when ordering `TableGrant`. */
|
|
87
88
|
export type TableGrantOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
88
89
|
/** Methods to use when ordering `Table`. */
|
|
@@ -553,10 +554,10 @@ export interface ApplyRlsInput {
|
|
|
553
554
|
}
|
|
554
555
|
/** A filter to be used against `AstMigration` object types. All fields are combined with a logical ‘and.’ */
|
|
555
556
|
export interface AstMigrationFilter {
|
|
556
|
-
/** Filter by the object’s `action` field. */
|
|
557
|
-
action?: StringFilter;
|
|
558
557
|
/** Filter by the object’s `actionId` field. */
|
|
559
558
|
actionId?: UUIDFilter;
|
|
559
|
+
/** Filter by the object’s `actionName` field. */
|
|
560
|
+
actionName?: StringFilter;
|
|
560
561
|
/** Filter by the object’s `actorId` field. */
|
|
561
562
|
actorId?: UUIDFilter;
|
|
562
563
|
/** Checks for all expressions in this list. */
|
|
@@ -586,22 +587,6 @@ export interface AstMigrationFilter {
|
|
|
586
587
|
/** Filter by the object’s `verify` field. */
|
|
587
588
|
verify?: JSONFilter;
|
|
588
589
|
}
|
|
589
|
-
/** An input for mutations affecting `AstMigration` */
|
|
590
|
-
export interface AstMigrationInput {
|
|
591
|
-
action?: string;
|
|
592
|
-
actionId?: string;
|
|
593
|
-
actorId?: string;
|
|
594
|
-
createdAt?: string;
|
|
595
|
-
databaseId?: string;
|
|
596
|
-
deploy?: unknown;
|
|
597
|
-
deploys?: string;
|
|
598
|
-
id?: number;
|
|
599
|
-
name?: string;
|
|
600
|
-
payload?: unknown;
|
|
601
|
-
requires?: string[];
|
|
602
|
-
revert?: unknown;
|
|
603
|
-
verify?: unknown;
|
|
604
|
-
}
|
|
605
590
|
export interface CancelDatabaseTransferInput {
|
|
606
591
|
clientMutationId?: string;
|
|
607
592
|
transferId?: string;
|
|
@@ -921,41 +906,6 @@ export interface ConstructiveInternalTypeImageFilter {
|
|
|
921
906
|
/** Not included in the specified list. */
|
|
922
907
|
notIn?: ConstructiveInternalTypeImage[];
|
|
923
908
|
}
|
|
924
|
-
/** A filter to be used against ConstructiveInternalTypeUpload fields. All fields are combined with a logical ‘and.’ */
|
|
925
|
-
export interface ConstructiveInternalTypeUploadFilter {
|
|
926
|
-
/** Contained by the specified JSON. */
|
|
927
|
-
containedBy?: ConstructiveInternalTypeUpload;
|
|
928
|
-
/** Contains the specified JSON. */
|
|
929
|
-
contains?: ConstructiveInternalTypeUpload;
|
|
930
|
-
/** Contains all of the specified keys. */
|
|
931
|
-
containsAllKeys?: string[];
|
|
932
|
-
/** Contains any of the specified keys. */
|
|
933
|
-
containsAnyKeys?: string[];
|
|
934
|
-
/** Contains the specified key. */
|
|
935
|
-
containsKey?: string;
|
|
936
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
937
|
-
distinctFrom?: ConstructiveInternalTypeUpload;
|
|
938
|
-
/** Equal to the specified value. */
|
|
939
|
-
equalTo?: ConstructiveInternalTypeUpload;
|
|
940
|
-
/** Greater than the specified value. */
|
|
941
|
-
greaterThan?: ConstructiveInternalTypeUpload;
|
|
942
|
-
/** Greater than or equal to the specified value. */
|
|
943
|
-
greaterThanOrEqualTo?: ConstructiveInternalTypeUpload;
|
|
944
|
-
/** Included in the specified list. */
|
|
945
|
-
in?: ConstructiveInternalTypeUpload[];
|
|
946
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
947
|
-
isNull?: boolean;
|
|
948
|
-
/** Less than the specified value. */
|
|
949
|
-
lessThan?: ConstructiveInternalTypeUpload;
|
|
950
|
-
/** Less than or equal to the specified value. */
|
|
951
|
-
lessThanOrEqualTo?: ConstructiveInternalTypeUpload;
|
|
952
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
953
|
-
notDistinctFrom?: ConstructiveInternalTypeUpload;
|
|
954
|
-
/** Not equal to the specified value. */
|
|
955
|
-
notEqualTo?: ConstructiveInternalTypeUpload;
|
|
956
|
-
/** Not included in the specified list. */
|
|
957
|
-
notIn?: ConstructiveInternalTypeUpload[];
|
|
958
|
-
}
|
|
959
909
|
/** A filter to be used against ConstructiveInternalTypeUrl fields. All fields are combined with a logical ‘and.’ */
|
|
960
910
|
export interface ConstructiveInternalTypeUrlFilter {
|
|
961
911
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -1103,11 +1053,6 @@ export interface CreateAppInput {
|
|
|
1103
1053
|
app: AppInput;
|
|
1104
1054
|
clientMutationId?: string;
|
|
1105
1055
|
}
|
|
1106
|
-
export interface CreateAstMigrationInput {
|
|
1107
|
-
/** The `AstMigration` to be created by this mutation. */
|
|
1108
|
-
astMigration: AstMigrationInput;
|
|
1109
|
-
clientMutationId?: string;
|
|
1110
|
-
}
|
|
1111
1056
|
export interface CreateCheckConstraintInput {
|
|
1112
1057
|
/** The `CheckConstraint` to be created by this mutation. */
|
|
1113
1058
|
checkConstraint: CheckConstraintInput;
|
|
@@ -1178,15 +1123,20 @@ export interface CreateFunctionInput {
|
|
|
1178
1123
|
/** The `Function` to be created by this mutation. */
|
|
1179
1124
|
function: FunctionInput;
|
|
1180
1125
|
}
|
|
1126
|
+
export interface CreateHttpRouteInput {
|
|
1127
|
+
clientMutationId?: string;
|
|
1128
|
+
/** The `HttpRoute` to be created by this mutation. */
|
|
1129
|
+
httpRoute: HttpRouteInput;
|
|
1130
|
+
}
|
|
1181
1131
|
export interface CreateIndexInput {
|
|
1182
1132
|
clientMutationId?: string;
|
|
1183
1133
|
/** The `Index` to be created by this mutation. */
|
|
1184
1134
|
index: IndexInput;
|
|
1185
1135
|
}
|
|
1186
|
-
export interface
|
|
1136
|
+
export interface CreateManagedDomainInput {
|
|
1187
1137
|
clientMutationId?: string;
|
|
1188
|
-
/** The `
|
|
1189
|
-
|
|
1138
|
+
/** The `ManagedDomain` to be created by this mutation. */
|
|
1139
|
+
managedDomain: ManagedDomainInput;
|
|
1190
1140
|
}
|
|
1191
1141
|
export interface CreateNodeTypeRegistryInput {
|
|
1192
1142
|
clientMutationId?: string;
|
|
@@ -1253,11 +1203,6 @@ export interface CreateSpatialRelationInput {
|
|
|
1253
1203
|
/** The `SpatialRelation` to be created by this mutation. */
|
|
1254
1204
|
spatialRelation: SpatialRelationInput;
|
|
1255
1205
|
}
|
|
1256
|
-
export interface CreateSqlActionInput {
|
|
1257
|
-
clientMutationId?: string;
|
|
1258
|
-
/** The `SqlAction` to be created by this mutation. */
|
|
1259
|
-
sqlAction: SqlActionInput;
|
|
1260
|
-
}
|
|
1261
1206
|
export interface CreateTableGrantInput {
|
|
1262
1207
|
clientMutationId?: string;
|
|
1263
1208
|
/** The `TableGrant` to be created by this mutation. */
|
|
@@ -1396,6 +1341,10 @@ export interface DatabaseFilter {
|
|
|
1396
1341
|
indicesExist?: boolean;
|
|
1397
1342
|
/** Filter by the object’s `label` field. */
|
|
1398
1343
|
label?: StringFilter;
|
|
1344
|
+
/** Filter by the object’s `managedDomains` relation. */
|
|
1345
|
+
managedDomains?: DatabaseToManyManagedDomainFilter;
|
|
1346
|
+
/** `managedDomains` exist. */
|
|
1347
|
+
managedDomainsExist?: boolean;
|
|
1399
1348
|
/** Filter by the object’s `name` field. */
|
|
1400
1349
|
name?: StringFilter;
|
|
1401
1350
|
/** Negates the expression. */
|
|
@@ -1804,6 +1753,15 @@ export interface DatabaseToManyIndexFilter {
|
|
|
1804
1753
|
/** Filters to entities where at least one related entity matches. */
|
|
1805
1754
|
some?: IndexFilter;
|
|
1806
1755
|
}
|
|
1756
|
+
/** A filter to be used against many `ManagedDomain` object types. All fields are combined with a logical ‘and.’ */
|
|
1757
|
+
export interface DatabaseToManyManagedDomainFilter {
|
|
1758
|
+
/** Filters to entities where every related entity matches. */
|
|
1759
|
+
every?: ManagedDomainFilter;
|
|
1760
|
+
/** Filters to entities where no related entity matches. */
|
|
1761
|
+
none?: ManagedDomainFilter;
|
|
1762
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1763
|
+
some?: ManagedDomainFilter;
|
|
1764
|
+
}
|
|
1807
1765
|
/** A filter to be used against many `Partition` object types. All fields are combined with a logical ‘and.’ */
|
|
1808
1766
|
export interface DatabaseToManyPartitionFilter {
|
|
1809
1767
|
/** Filters to entities where every related entity matches. */
|
|
@@ -2179,10 +2137,19 @@ export interface DeleteFunctionInput {
|
|
|
2179
2137
|
clientMutationId?: string;
|
|
2180
2138
|
id: string;
|
|
2181
2139
|
}
|
|
2140
|
+
export interface DeleteHttpRouteInput {
|
|
2141
|
+
clientMutationId?: string;
|
|
2142
|
+
id: string;
|
|
2143
|
+
}
|
|
2182
2144
|
export interface DeleteIndexInput {
|
|
2183
2145
|
clientMutationId?: string;
|
|
2184
2146
|
id: string;
|
|
2185
2147
|
}
|
|
2148
|
+
export interface DeleteManagedDomainInput {
|
|
2149
|
+
clientMutationId?: string;
|
|
2150
|
+
/** Unique identifier for this managed domain record */
|
|
2151
|
+
id: string;
|
|
2152
|
+
}
|
|
2186
2153
|
export interface DeleteNodeTypeRegistryInput {
|
|
2187
2154
|
clientMutationId?: string;
|
|
2188
2155
|
name: string;
|
|
@@ -2300,6 +2267,10 @@ export interface DomainFilter {
|
|
|
2300
2267
|
databaseId?: UUIDFilter;
|
|
2301
2268
|
/** Filter by the object’s `domain` field. */
|
|
2302
2269
|
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
2270
|
+
/** Filter by the object’s `httpRoutes` relation. */
|
|
2271
|
+
httpRoutes?: DomainToManyHttpRouteFilter;
|
|
2272
|
+
/** `httpRoutes` exist. */
|
|
2273
|
+
httpRoutesExist?: boolean;
|
|
2303
2274
|
/** Filter by the object’s `id` field. */
|
|
2304
2275
|
id?: UUIDFilter;
|
|
2305
2276
|
/** Filter by the object’s `labels` field. */
|
|
@@ -2361,6 +2332,15 @@ export interface DomainPatch {
|
|
|
2361
2332
|
/** Subdomain portion of the hostname */
|
|
2362
2333
|
subdomain?: ConstructiveInternalTypeHostname;
|
|
2363
2334
|
}
|
|
2335
|
+
/** A filter to be used against many `HttpRoute` object types. All fields are combined with a logical ‘and.’ */
|
|
2336
|
+
export interface DomainToManyHttpRouteFilter {
|
|
2337
|
+
/** Filters to entities where every related entity matches. */
|
|
2338
|
+
every?: HttpRouteFilter;
|
|
2339
|
+
/** Filters to entities where no related entity matches. */
|
|
2340
|
+
none?: HttpRouteFilter;
|
|
2341
|
+
/** Filters to entities where at least one related entity matches. */
|
|
2342
|
+
some?: HttpRouteFilter;
|
|
2343
|
+
}
|
|
2364
2344
|
/** A filter to be used against `EmbeddingChunk` object types. All fields are combined with a logical ‘and.’ */
|
|
2365
2345
|
export interface EmbeddingChunkFilter {
|
|
2366
2346
|
/** Checks for all expressions in this list. */
|
|
@@ -2842,6 +2822,91 @@ export interface FunctionPatch {
|
|
|
2842
2822
|
name?: string;
|
|
2843
2823
|
schemaId?: string;
|
|
2844
2824
|
}
|
|
2825
|
+
/** A filter to be used against `HttpRoute` object types. All fields are combined with a logical ‘and.’ */
|
|
2826
|
+
export interface HttpRouteFilter {
|
|
2827
|
+
/** Checks for all expressions in this list. */
|
|
2828
|
+
and?: HttpRouteFilter[];
|
|
2829
|
+
/** Filter by the object’s `createdAt` field. */
|
|
2830
|
+
createdAt?: DatetimeFilter;
|
|
2831
|
+
/** Filter by the object’s `createdBy` field. */
|
|
2832
|
+
createdBy?: UUIDFilter;
|
|
2833
|
+
/** Filter by the object’s `databaseId` field. */
|
|
2834
|
+
databaseId?: UUIDFilter;
|
|
2835
|
+
/** Filter by the object’s `domain` relation. */
|
|
2836
|
+
domain?: DomainFilter;
|
|
2837
|
+
/** Filter by the object’s `domainId` field. */
|
|
2838
|
+
domainId?: UUIDFilter;
|
|
2839
|
+
/** Filter by the object’s `id` field. */
|
|
2840
|
+
id?: UUIDFilter;
|
|
2841
|
+
/** Filter by the object’s `isActive` field. */
|
|
2842
|
+
isActive?: BooleanFilter;
|
|
2843
|
+
/** Filter by the object’s `method` field. */
|
|
2844
|
+
method?: StringFilter;
|
|
2845
|
+
/** Negates the expression. */
|
|
2846
|
+
not?: HttpRouteFilter;
|
|
2847
|
+
/** Checks for any expressions in this list. */
|
|
2848
|
+
or?: HttpRouteFilter[];
|
|
2849
|
+
/** Filter by the object’s `path` field. */
|
|
2850
|
+
path?: StringFilter;
|
|
2851
|
+
/** Filter by the object’s `priority` field. */
|
|
2852
|
+
priority?: IntFilter;
|
|
2853
|
+
/** Filter by the object’s `targetId` field. */
|
|
2854
|
+
targetId?: UUIDFilter;
|
|
2855
|
+
/** Filter by the object’s `targetKind` field. */
|
|
2856
|
+
targetKind?: StringFilter;
|
|
2857
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
2858
|
+
updatedAt?: DatetimeFilter;
|
|
2859
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
2860
|
+
updatedBy?: UUIDFilter;
|
|
2861
|
+
}
|
|
2862
|
+
/** An input for mutations affecting `HttpRoute` */
|
|
2863
|
+
export interface HttpRouteInput {
|
|
2864
|
+
createdAt?: string;
|
|
2865
|
+
createdBy?: string;
|
|
2866
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
2867
|
+
databaseId: string;
|
|
2868
|
+
/** Registered host in services_public.domains */
|
|
2869
|
+
domainId: string;
|
|
2870
|
+
id?: string;
|
|
2871
|
+
/** Whether the resolver may select this route */
|
|
2872
|
+
isActive?: boolean;
|
|
2873
|
+
/** Optional uppercase HTTP method; NULL matches every method */
|
|
2874
|
+
method?: string;
|
|
2875
|
+
/** Normalized request path prefix; longest matching prefix wins */
|
|
2876
|
+
path?: string;
|
|
2877
|
+
/** Tie-break precedence after path length and method specificity */
|
|
2878
|
+
priority?: number;
|
|
2879
|
+
/** Target row of the type named by target_kind; existence enforced by trigger */
|
|
2880
|
+
targetId: string;
|
|
2881
|
+
/** Discriminator selecting the type of target_id */
|
|
2882
|
+
targetKind: string;
|
|
2883
|
+
updatedAt?: string;
|
|
2884
|
+
updatedBy?: string;
|
|
2885
|
+
}
|
|
2886
|
+
/** Represents an update to a `HttpRoute`. Fields that are set will be updated. */
|
|
2887
|
+
export interface HttpRoutePatch {
|
|
2888
|
+
createdAt?: string;
|
|
2889
|
+
createdBy?: string;
|
|
2890
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
2891
|
+
databaseId?: string;
|
|
2892
|
+
/** Registered host in services_public.domains */
|
|
2893
|
+
domainId?: string;
|
|
2894
|
+
id?: string;
|
|
2895
|
+
/** Whether the resolver may select this route */
|
|
2896
|
+
isActive?: boolean;
|
|
2897
|
+
/** Optional uppercase HTTP method; NULL matches every method */
|
|
2898
|
+
method?: string;
|
|
2899
|
+
/** Normalized request path prefix; longest matching prefix wins */
|
|
2900
|
+
path?: string;
|
|
2901
|
+
/** Tie-break precedence after path length and method specificity */
|
|
2902
|
+
priority?: number;
|
|
2903
|
+
/** Target row of the type named by target_kind; existence enforced by trigger */
|
|
2904
|
+
targetId?: string;
|
|
2905
|
+
/** Discriminator selecting the type of target_id */
|
|
2906
|
+
targetKind?: string;
|
|
2907
|
+
updatedAt?: string;
|
|
2908
|
+
updatedBy?: string;
|
|
2909
|
+
}
|
|
2845
2910
|
/** A filter to be used against `Index` object types. All fields are combined with a logical ‘and.’ */
|
|
2846
2911
|
export interface IndexFilter {
|
|
2847
2912
|
/** Filter by the object’s `accessMethod` field. */
|
|
@@ -2929,26 +2994,76 @@ export interface IndexPatch {
|
|
|
2929
2994
|
updatedAt?: string;
|
|
2930
2995
|
whereClause?: unknown;
|
|
2931
2996
|
}
|
|
2932
|
-
/** A filter to be used against `
|
|
2933
|
-
export interface
|
|
2997
|
+
/** A filter to be used against `ManagedDomain` object types. All fields are combined with a logical ‘and.’ */
|
|
2998
|
+
export interface ManagedDomainFilter {
|
|
2934
2999
|
/** Checks for all expressions in this list. */
|
|
2935
|
-
and?:
|
|
3000
|
+
and?: ManagedDomainFilter[];
|
|
3001
|
+
/** Filter by the object’s `annotations` field. */
|
|
3002
|
+
annotations?: JSONFilter;
|
|
3003
|
+
/** Filter by the object’s `database` relation. */
|
|
3004
|
+
database?: DatabaseFilter;
|
|
2936
3005
|
/** Filter by the object’s `databaseId` field. */
|
|
2937
3006
|
databaseId?: UUIDFilter;
|
|
3007
|
+
/** Filter by the object’s `domain` field. */
|
|
3008
|
+
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
2938
3009
|
/** Filter by the object’s `id` field. */
|
|
2939
3010
|
id?: UUIDFilter;
|
|
3011
|
+
/** Filter by the object’s `isWildcard` field. */
|
|
3012
|
+
isWildcard?: BooleanFilter;
|
|
2940
3013
|
/** Negates the expression. */
|
|
2941
|
-
not?:
|
|
3014
|
+
not?: ManagedDomainFilter;
|
|
2942
3015
|
/** Checks for any expressions in this list. */
|
|
2943
|
-
or?:
|
|
2944
|
-
/** Filter by the object’s `
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
3016
|
+
or?: ManagedDomainFilter[];
|
|
3017
|
+
/** Filter by the object’s `tlsReadyAt` field. */
|
|
3018
|
+
tlsReadyAt?: DatetimeFilter;
|
|
3019
|
+
/** Filter by the object’s `tlsStatus` field. */
|
|
3020
|
+
tlsStatus?: StringFilter;
|
|
3021
|
+
/** Filter by the object’s `verificationStatus` field. */
|
|
3022
|
+
verificationStatus?: StringFilter;
|
|
3023
|
+
/** Filter by the object’s `verifiedAt` field. */
|
|
3024
|
+
verifiedAt?: DatetimeFilter;
|
|
3025
|
+
}
|
|
3026
|
+
/** An input for mutations affecting `ManagedDomain` */
|
|
3027
|
+
export interface ManagedDomainInput {
|
|
3028
|
+
/** Freeform cert-manager detail (secret name, challenge, last error) and tooling metadata */
|
|
3029
|
+
annotations?: unknown;
|
|
3030
|
+
/** Database that owns this cert-bearing host; platform wildcards are owned by the platform database */
|
|
3031
|
+
databaseId: string;
|
|
3032
|
+
/** Root hostname this row governs certs/verification for (e.g. launchql.dev, shop.acme.com) */
|
|
3033
|
+
domain: ConstructiveInternalTypeHostname;
|
|
3034
|
+
/** Unique identifier for this managed domain record */
|
|
3035
|
+
id?: string;
|
|
3036
|
+
/** Whether the cert covers the wildcard *.domain (one wildcard cert covers every subdomain row sharing this root) */
|
|
3037
|
+
isWildcard?: boolean;
|
|
3038
|
+
/** When tls_status last became active */
|
|
3039
|
+
tlsReadyAt?: string;
|
|
3040
|
+
/** TLS/SSL provisioning state: none | provisioning | active | failed */
|
|
3041
|
+
tlsStatus?: string;
|
|
3042
|
+
/** Domain ownership verification state: pending | verified | failed */
|
|
3043
|
+
verificationStatus?: string;
|
|
3044
|
+
/** When verification_status last became verified */
|
|
3045
|
+
verifiedAt?: string;
|
|
3046
|
+
}
|
|
3047
|
+
/** Represents an update to a `ManagedDomain`. Fields that are set will be updated. */
|
|
3048
|
+
export interface ManagedDomainPatch {
|
|
3049
|
+
/** Freeform cert-manager detail (secret name, challenge, last error) and tooling metadata */
|
|
3050
|
+
annotations?: unknown;
|
|
3051
|
+
/** Database that owns this cert-bearing host; platform wildcards are owned by the platform database */
|
|
2949
3052
|
databaseId?: string;
|
|
3053
|
+
/** Root hostname this row governs certs/verification for (e.g. launchql.dev, shop.acme.com) */
|
|
3054
|
+
domain?: ConstructiveInternalTypeHostname;
|
|
3055
|
+
/** Unique identifier for this managed domain record */
|
|
2950
3056
|
id?: string;
|
|
2951
|
-
|
|
3057
|
+
/** Whether the cert covers the wildcard *.domain (one wildcard cert covers every subdomain row sharing this root) */
|
|
3058
|
+
isWildcard?: boolean;
|
|
3059
|
+
/** When tls_status last became active */
|
|
3060
|
+
tlsReadyAt?: string;
|
|
3061
|
+
/** TLS/SSL provisioning state: none | provisioning | active | failed */
|
|
3062
|
+
tlsStatus?: string;
|
|
3063
|
+
/** Domain ownership verification state: pending | verified | failed */
|
|
3064
|
+
verificationStatus?: string;
|
|
3065
|
+
/** When verification_status last became verified */
|
|
3066
|
+
verifiedAt?: string;
|
|
2952
3067
|
}
|
|
2953
3068
|
/** A filter to be used against `NodeTypeRegistry` object types. All fields are combined with a logical ‘and.’ */
|
|
2954
3069
|
export interface NodeTypeRegistryFilter {
|
|
@@ -4054,10 +4169,10 @@ export interface SpatialRelationPatch {
|
|
|
4054
4169
|
}
|
|
4055
4170
|
/** A filter to be used against `SqlAction` object types. All fields are combined with a logical ‘and.’ */
|
|
4056
4171
|
export interface SqlActionFilter {
|
|
4057
|
-
/** Filter by the object’s `action` field. */
|
|
4058
|
-
action?: StringFilter;
|
|
4059
4172
|
/** Filter by the object’s `actionId` field. */
|
|
4060
4173
|
actionId?: UUIDFilter;
|
|
4174
|
+
/** Filter by the object’s `actionName` field. */
|
|
4175
|
+
actionName?: StringFilter;
|
|
4061
4176
|
/** Filter by the object’s `actorId` field. */
|
|
4062
4177
|
actorId?: UUIDFilter;
|
|
4063
4178
|
/** Checks for all expressions in this list. */
|
|
@@ -4085,22 +4200,6 @@ export interface SqlActionFilter {
|
|
|
4085
4200
|
/** Filter by the object’s `verify` field. */
|
|
4086
4201
|
verify?: StringFilter;
|
|
4087
4202
|
}
|
|
4088
|
-
/** An input for mutations affecting `SqlAction` */
|
|
4089
|
-
export interface SqlActionInput {
|
|
4090
|
-
action?: string;
|
|
4091
|
-
actionId?: string;
|
|
4092
|
-
actorId?: string;
|
|
4093
|
-
content?: string;
|
|
4094
|
-
createdAt?: string;
|
|
4095
|
-
databaseId?: string;
|
|
4096
|
-
deploy?: string;
|
|
4097
|
-
deps?: string[];
|
|
4098
|
-
id?: number;
|
|
4099
|
-
name?: string;
|
|
4100
|
-
payload?: unknown;
|
|
4101
|
-
revert?: string;
|
|
4102
|
-
verify?: string;
|
|
4103
|
-
}
|
|
4104
4203
|
/** A filter to be used against `Table` object types. All fields are combined with a logical ‘and.’ */
|
|
4105
4204
|
export interface TableFilter {
|
|
4106
4205
|
/** Checks for all expressions in this list. */
|
|
@@ -4756,12 +4855,25 @@ export interface UpdateFunctionInput {
|
|
|
4756
4855
|
functionPatch: FunctionPatch;
|
|
4757
4856
|
id: string;
|
|
4758
4857
|
}
|
|
4858
|
+
export interface UpdateHttpRouteInput {
|
|
4859
|
+
clientMutationId?: string;
|
|
4860
|
+
/** An object where the defined keys will be set on the `HttpRoute` being updated. */
|
|
4861
|
+
httpRoutePatch: HttpRoutePatch;
|
|
4862
|
+
id: string;
|
|
4863
|
+
}
|
|
4759
4864
|
export interface UpdateIndexInput {
|
|
4760
4865
|
clientMutationId?: string;
|
|
4761
4866
|
id: string;
|
|
4762
4867
|
/** An object where the defined keys will be set on the `Index` being updated. */
|
|
4763
4868
|
indexPatch: IndexPatch;
|
|
4764
4869
|
}
|
|
4870
|
+
export interface UpdateManagedDomainInput {
|
|
4871
|
+
clientMutationId?: string;
|
|
4872
|
+
/** Unique identifier for this managed domain record */
|
|
4873
|
+
id: string;
|
|
4874
|
+
/** An object where the defined keys will be set on the `ManagedDomain` being updated. */
|
|
4875
|
+
managedDomainPatch: ManagedDomainPatch;
|
|
4876
|
+
}
|
|
4765
4877
|
export interface UpdateNodeTypeRegistryInput {
|
|
4766
4878
|
clientMutationId?: string;
|
|
4767
4879
|
name: string;
|
|
@@ -5465,6 +5577,13 @@ export interface FunctionConnection {
|
|
|
5465
5577
|
pageInfo: PageInfo;
|
|
5466
5578
|
totalCount: number;
|
|
5467
5579
|
}
|
|
5580
|
+
/** A connection to a list of `HttpRoute` values. */
|
|
5581
|
+
export interface HttpRouteConnection {
|
|
5582
|
+
edges: HttpRouteEdge[];
|
|
5583
|
+
nodes: HttpRoute[];
|
|
5584
|
+
pageInfo: PageInfo;
|
|
5585
|
+
totalCount: number;
|
|
5586
|
+
}
|
|
5468
5587
|
/** A connection to a list of `Index` values. */
|
|
5469
5588
|
export interface IndexConnection {
|
|
5470
5589
|
edges: IndexEdge[];
|
|
@@ -5472,10 +5591,10 @@ export interface IndexConnection {
|
|
|
5472
5591
|
pageInfo: PageInfo;
|
|
5473
5592
|
totalCount: number;
|
|
5474
5593
|
}
|
|
5475
|
-
/** A connection to a list of `
|
|
5476
|
-
export interface
|
|
5477
|
-
edges:
|
|
5478
|
-
nodes:
|
|
5594
|
+
/** A connection to a list of `ManagedDomain` values. */
|
|
5595
|
+
export interface ManagedDomainConnection {
|
|
5596
|
+
edges: ManagedDomainEdge[];
|
|
5597
|
+
nodes: ManagedDomain[];
|
|
5479
5598
|
pageInfo: PageInfo;
|
|
5480
5599
|
totalCount: number;
|
|
5481
5600
|
}
|
|
@@ -5514,6 +5633,15 @@ export interface PubkeySettingConnection {
|
|
|
5514
5633
|
pageInfo: PageInfo;
|
|
5515
5634
|
totalCount: number;
|
|
5516
5635
|
}
|
|
5636
|
+
export interface ResolveHttpRouteRecord {
|
|
5637
|
+
databaseId?: string | null;
|
|
5638
|
+
domainId?: string | null;
|
|
5639
|
+
matchedPath?: string | null;
|
|
5640
|
+
method?: string | null;
|
|
5641
|
+
routeId?: string | null;
|
|
5642
|
+
targetId?: string | null;
|
|
5643
|
+
targetKind?: string | null;
|
|
5644
|
+
}
|
|
5517
5645
|
/** A connection to a list of `RlsSetting` values. */
|
|
5518
5646
|
export interface RlsSettingConnection {
|
|
5519
5647
|
edges: RlsSettingEdge[];
|
|
@@ -5688,11 +5816,6 @@ export interface CreateAppPayload {
|
|
|
5688
5816
|
appEdge?: AppEdge | null;
|
|
5689
5817
|
clientMutationId?: string | null;
|
|
5690
5818
|
}
|
|
5691
|
-
export interface CreateAstMigrationPayload {
|
|
5692
|
-
/** The `AstMigration` that was created by this mutation. */
|
|
5693
|
-
astMigration?: AstMigration | null;
|
|
5694
|
-
clientMutationId?: string | null;
|
|
5695
|
-
}
|
|
5696
5819
|
export interface CreateCheckConstraintPayload {
|
|
5697
5820
|
/** The `CheckConstraint` that was created by this mutation. */
|
|
5698
5821
|
checkConstraint?: CheckConstraint | null;
|
|
@@ -5777,16 +5900,23 @@ export interface CreateFunctionPayload {
|
|
|
5777
5900
|
function?: Function | null;
|
|
5778
5901
|
functionEdge?: FunctionEdge | null;
|
|
5779
5902
|
}
|
|
5903
|
+
export interface CreateHttpRoutePayload {
|
|
5904
|
+
clientMutationId?: string | null;
|
|
5905
|
+
/** The `HttpRoute` that was created by this mutation. */
|
|
5906
|
+
httpRoute?: HttpRoute | null;
|
|
5907
|
+
httpRouteEdge?: HttpRouteEdge | null;
|
|
5908
|
+
}
|
|
5780
5909
|
export interface CreateIndexPayload {
|
|
5781
5910
|
clientMutationId?: string | null;
|
|
5782
5911
|
/** The `Index` that was created by this mutation. */
|
|
5783
5912
|
index?: Index | null;
|
|
5784
5913
|
indexEdge?: IndexEdge | null;
|
|
5785
5914
|
}
|
|
5786
|
-
export interface
|
|
5915
|
+
export interface CreateManagedDomainPayload {
|
|
5787
5916
|
clientMutationId?: string | null;
|
|
5788
|
-
/** The `
|
|
5789
|
-
|
|
5917
|
+
/** The `ManagedDomain` that was created by this mutation. */
|
|
5918
|
+
managedDomain?: ManagedDomain | null;
|
|
5919
|
+
managedDomainEdge?: ManagedDomainEdge | null;
|
|
5790
5920
|
}
|
|
5791
5921
|
export interface CreateNodeTypeRegistryPayload {
|
|
5792
5922
|
clientMutationId?: string | null;
|
|
@@ -5866,11 +5996,6 @@ export interface CreateSpatialRelationPayload {
|
|
|
5866
5996
|
spatialRelation?: SpatialRelation | null;
|
|
5867
5997
|
spatialRelationEdge?: SpatialRelationEdge | null;
|
|
5868
5998
|
}
|
|
5869
|
-
export interface CreateSqlActionPayload {
|
|
5870
|
-
clientMutationId?: string | null;
|
|
5871
|
-
/** The `SqlAction` that was created by this mutation. */
|
|
5872
|
-
sqlAction?: SqlAction | null;
|
|
5873
|
-
}
|
|
5874
5999
|
export interface CreateTablePayload {
|
|
5875
6000
|
clientMutationId?: string | null;
|
|
5876
6001
|
/** The `Table` that was created by this mutation. */
|
|
@@ -6045,12 +6170,24 @@ export interface DeleteFunctionPayload {
|
|
|
6045
6170
|
function?: Function | null;
|
|
6046
6171
|
functionEdge?: FunctionEdge | null;
|
|
6047
6172
|
}
|
|
6173
|
+
export interface DeleteHttpRoutePayload {
|
|
6174
|
+
clientMutationId?: string | null;
|
|
6175
|
+
/** The `HttpRoute` that was deleted by this mutation. */
|
|
6176
|
+
httpRoute?: HttpRoute | null;
|
|
6177
|
+
httpRouteEdge?: HttpRouteEdge | null;
|
|
6178
|
+
}
|
|
6048
6179
|
export interface DeleteIndexPayload {
|
|
6049
6180
|
clientMutationId?: string | null;
|
|
6050
6181
|
/** The `Index` that was deleted by this mutation. */
|
|
6051
6182
|
index?: Index | null;
|
|
6052
6183
|
indexEdge?: IndexEdge | null;
|
|
6053
6184
|
}
|
|
6185
|
+
export interface DeleteManagedDomainPayload {
|
|
6186
|
+
clientMutationId?: string | null;
|
|
6187
|
+
/** The `ManagedDomain` that was deleted by this mutation. */
|
|
6188
|
+
managedDomain?: ManagedDomain | null;
|
|
6189
|
+
managedDomainEdge?: ManagedDomainEdge | null;
|
|
6190
|
+
}
|
|
6054
6191
|
export interface DeleteNodeTypeRegistryPayload {
|
|
6055
6192
|
clientMutationId?: string | null;
|
|
6056
6193
|
/** The `NodeTypeRegistry` that was deleted by this mutation. */
|
|
@@ -6328,12 +6465,24 @@ export interface UpdateFunctionPayload {
|
|
|
6328
6465
|
function?: Function | null;
|
|
6329
6466
|
functionEdge?: FunctionEdge | null;
|
|
6330
6467
|
}
|
|
6468
|
+
export interface UpdateHttpRoutePayload {
|
|
6469
|
+
clientMutationId?: string | null;
|
|
6470
|
+
/** The `HttpRoute` that was updated by this mutation. */
|
|
6471
|
+
httpRoute?: HttpRoute | null;
|
|
6472
|
+
httpRouteEdge?: HttpRouteEdge | null;
|
|
6473
|
+
}
|
|
6331
6474
|
export interface UpdateIndexPayload {
|
|
6332
6475
|
clientMutationId?: string | null;
|
|
6333
6476
|
/** The `Index` that was updated by this mutation. */
|
|
6334
6477
|
index?: Index | null;
|
|
6335
6478
|
indexEdge?: IndexEdge | null;
|
|
6336
6479
|
}
|
|
6480
|
+
export interface UpdateManagedDomainPayload {
|
|
6481
|
+
clientMutationId?: string | null;
|
|
6482
|
+
/** The `ManagedDomain` that was updated by this mutation. */
|
|
6483
|
+
managedDomain?: ManagedDomain | null;
|
|
6484
|
+
managedDomainEdge?: ManagedDomainEdge | null;
|
|
6485
|
+
}
|
|
6337
6486
|
export interface UpdateNodeTypeRegistryPayload {
|
|
6338
6487
|
clientMutationId?: string | null;
|
|
6339
6488
|
/** The `NodeTypeRegistry` that was updated by this mutation. */
|
|
@@ -6625,17 +6774,23 @@ export interface FunctionEdge {
|
|
|
6625
6774
|
/** The `Function` at the end of the edge. */
|
|
6626
6775
|
node?: Function | null;
|
|
6627
6776
|
}
|
|
6777
|
+
/** A `HttpRoute` edge in the connection. */
|
|
6778
|
+
export interface HttpRouteEdge {
|
|
6779
|
+
cursor?: string | null;
|
|
6780
|
+
/** The `HttpRoute` at the end of the edge. */
|
|
6781
|
+
node?: HttpRoute | null;
|
|
6782
|
+
}
|
|
6628
6783
|
/** A `Index` edge in the connection. */
|
|
6629
6784
|
export interface IndexEdge {
|
|
6630
6785
|
cursor?: string | null;
|
|
6631
6786
|
/** The `Index` at the end of the edge. */
|
|
6632
6787
|
node?: Index | null;
|
|
6633
6788
|
}
|
|
6634
|
-
/** A `
|
|
6635
|
-
export interface
|
|
6789
|
+
/** A `ManagedDomain` edge in the connection. */
|
|
6790
|
+
export interface ManagedDomainEdge {
|
|
6636
6791
|
cursor?: string | null;
|
|
6637
|
-
/** The `
|
|
6638
|
-
node?:
|
|
6792
|
+
/** The `ManagedDomain` at the end of the edge. */
|
|
6793
|
+
node?: ManagedDomain | null;
|
|
6639
6794
|
}
|
|
6640
6795
|
/** A `NodeTypeRegistry` edge in the connection. */
|
|
6641
6796
|
export interface NodeTypeRegistryEdge {
|