@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/orm/input-types.d.ts
CHANGED
|
@@ -234,7 +234,6 @@ export type ObjectCategory = 'APP' | 'AUTH' | 'CORE' | 'MEMBERSHIPS' | 'MODULE'
|
|
|
234
234
|
export type ConstructiveInternalTypeAttachment = unknown;
|
|
235
235
|
export type ConstructiveInternalTypeHostname = unknown;
|
|
236
236
|
export type ConstructiveInternalTypeImage = unknown;
|
|
237
|
-
export type ConstructiveInternalTypeUpload = unknown;
|
|
238
237
|
export type ConstructiveInternalTypeUrl = unknown;
|
|
239
238
|
/** API endpoint configurations: each record defines a PostGraphile/PostgREST API with its database role and public access settings */
|
|
240
239
|
export interface Api {
|
|
@@ -338,8 +337,8 @@ export interface App {
|
|
|
338
337
|
siteId?: string | null;
|
|
339
338
|
}
|
|
340
339
|
export interface AstMigration {
|
|
341
|
-
action?: string | null;
|
|
342
340
|
actionId?: string | null;
|
|
341
|
+
actionName?: string | null;
|
|
343
342
|
actorId?: string | null;
|
|
344
343
|
createdAt?: string | null;
|
|
345
344
|
databaseId?: string | null;
|
|
@@ -579,6 +578,30 @@ export interface Function {
|
|
|
579
578
|
name?: string | null;
|
|
580
579
|
schemaId?: string | null;
|
|
581
580
|
}
|
|
581
|
+
/** Request-time HTTP routing authority: registered domain plus path prefix and optional method to a typed target */
|
|
582
|
+
export interface HttpRoute {
|
|
583
|
+
createdAt?: string | null;
|
|
584
|
+
createdBy?: string | null;
|
|
585
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
586
|
+
databaseId?: string | null;
|
|
587
|
+
/** Registered host in services_public.domains */
|
|
588
|
+
domainId?: string | null;
|
|
589
|
+
id: string;
|
|
590
|
+
/** Whether the resolver may select this route */
|
|
591
|
+
isActive?: boolean | null;
|
|
592
|
+
/** Optional uppercase HTTP method; NULL matches every method */
|
|
593
|
+
method?: string | null;
|
|
594
|
+
/** Normalized request path prefix; longest matching prefix wins */
|
|
595
|
+
path?: string | null;
|
|
596
|
+
/** Tie-break precedence after path length and method specificity */
|
|
597
|
+
priority?: number | null;
|
|
598
|
+
/** Target row of the type named by target_kind; existence enforced by trigger */
|
|
599
|
+
targetId?: string | null;
|
|
600
|
+
/** Discriminator selecting the type of target_id */
|
|
601
|
+
targetKind?: string | null;
|
|
602
|
+
updatedAt?: string | null;
|
|
603
|
+
updatedBy?: string | null;
|
|
604
|
+
}
|
|
582
605
|
export interface Index {
|
|
583
606
|
accessMethod?: string | null;
|
|
584
607
|
category?: ObjectCategory | null;
|
|
@@ -598,10 +621,26 @@ export interface Index {
|
|
|
598
621
|
updatedAt?: string | null;
|
|
599
622
|
whereClause?: Record<string, unknown> | null;
|
|
600
623
|
}
|
|
601
|
-
|
|
624
|
+
/** One row per cert-bearing host or wildcard; tracks domain verification and TLS provisioning independently of services_public.domains. Reconcilers match a route's root domain to a row here by string (no FK/coupling in v1) */
|
|
625
|
+
export interface ManagedDomain {
|
|
626
|
+
/** Freeform cert-manager detail (secret name, challenge, last error) and tooling metadata */
|
|
627
|
+
annotations?: Record<string, unknown> | null;
|
|
628
|
+
/** Database that owns this cert-bearing host; platform wildcards are owned by the platform database */
|
|
602
629
|
databaseId?: string | null;
|
|
603
|
-
|
|
604
|
-
|
|
630
|
+
/** Root hostname this row governs certs/verification for (e.g. launchql.dev, shop.acme.com) */
|
|
631
|
+
domain?: ConstructiveInternalTypeHostname | null;
|
|
632
|
+
/** Unique identifier for this managed domain record */
|
|
633
|
+
id: string;
|
|
634
|
+
/** Whether the cert covers the wildcard *.domain (one wildcard cert covers every subdomain row sharing this root) */
|
|
635
|
+
isWildcard?: boolean | null;
|
|
636
|
+
/** When tls_status last became active */
|
|
637
|
+
tlsReadyAt?: string | null;
|
|
638
|
+
/** TLS/SSL provisioning state: none | provisioning | active | failed */
|
|
639
|
+
tlsStatus?: string | null;
|
|
640
|
+
/** Domain ownership verification state: pending | verified | failed */
|
|
641
|
+
verificationStatus?: string | null;
|
|
642
|
+
/** When verification_status last became verified */
|
|
643
|
+
verifiedAt?: string | null;
|
|
605
644
|
}
|
|
606
645
|
export interface NodeTypeRegistry {
|
|
607
646
|
category?: string | null;
|
|
@@ -806,8 +845,8 @@ export interface SpatialRelation {
|
|
|
806
845
|
updatedAt?: string | null;
|
|
807
846
|
}
|
|
808
847
|
export interface SqlAction {
|
|
809
|
-
action?: string | null;
|
|
810
848
|
actionId?: string | null;
|
|
849
|
+
actionName?: string | null;
|
|
811
850
|
actorId?: string | null;
|
|
812
851
|
content?: string | null;
|
|
813
852
|
createdAt?: string | null;
|
|
@@ -1047,6 +1086,7 @@ export interface DatabaseRelations {
|
|
|
1047
1086
|
fullTextSearches?: ConnectionResult<FullTextSearch>;
|
|
1048
1087
|
functions?: ConnectionResult<Function>;
|
|
1049
1088
|
indices?: ConnectionResult<Index>;
|
|
1089
|
+
managedDomains?: ConnectionResult<ManagedDomain>;
|
|
1050
1090
|
partitions?: ConnectionResult<Partition>;
|
|
1051
1091
|
policies?: ConnectionResult<Policy>;
|
|
1052
1092
|
primaryKeyConstraints?: ConnectionResult<PrimaryKeyConstraint>;
|
|
@@ -1081,6 +1121,7 @@ export interface DomainRelations {
|
|
|
1081
1121
|
api?: Api | null;
|
|
1082
1122
|
database?: Database | null;
|
|
1083
1123
|
site?: Site | null;
|
|
1124
|
+
httpRoutes?: ConnectionResult<HttpRoute>;
|
|
1084
1125
|
}
|
|
1085
1126
|
export interface EmbeddingChunkRelations {
|
|
1086
1127
|
chunksTable?: Table | null;
|
|
@@ -1112,11 +1153,15 @@ export interface FunctionRelations {
|
|
|
1112
1153
|
database?: Database | null;
|
|
1113
1154
|
schema?: Schema | null;
|
|
1114
1155
|
}
|
|
1156
|
+
export interface HttpRouteRelations {
|
|
1157
|
+
domain?: Domain | null;
|
|
1158
|
+
}
|
|
1115
1159
|
export interface IndexRelations {
|
|
1116
1160
|
database?: Database | null;
|
|
1117
1161
|
table?: Table | null;
|
|
1118
1162
|
}
|
|
1119
|
-
export interface
|
|
1163
|
+
export interface ManagedDomainRelations {
|
|
1164
|
+
database?: Database | null;
|
|
1120
1165
|
}
|
|
1121
1166
|
export interface NodeTypeRegistryRelations {
|
|
1122
1167
|
}
|
|
@@ -1286,8 +1331,9 @@ export type FieldWithRelations = Field & FieldRelations;
|
|
|
1286
1331
|
export type ForeignKeyConstraintWithRelations = ForeignKeyConstraint & ForeignKeyConstraintRelations;
|
|
1287
1332
|
export type FullTextSearchWithRelations = FullTextSearch & FullTextSearchRelations;
|
|
1288
1333
|
export type FunctionWithRelations = Function & FunctionRelations;
|
|
1334
|
+
export type HttpRouteWithRelations = HttpRoute & HttpRouteRelations;
|
|
1289
1335
|
export type IndexWithRelations = Index & IndexRelations;
|
|
1290
|
-
export type
|
|
1336
|
+
export type ManagedDomainWithRelations = ManagedDomain & ManagedDomainRelations;
|
|
1291
1337
|
export type NodeTypeRegistryWithRelations = NodeTypeRegistry & NodeTypeRegistryRelations;
|
|
1292
1338
|
export type PartitionWithRelations = Partition & PartitionRelations;
|
|
1293
1339
|
export type PolicyWithRelations = Policy & PolicyRelations;
|
|
@@ -1423,8 +1469,8 @@ export type AppSelect = {
|
|
|
1423
1469
|
};
|
|
1424
1470
|
};
|
|
1425
1471
|
export type AstMigrationSelect = {
|
|
1426
|
-
action?: boolean;
|
|
1427
1472
|
actionId?: boolean;
|
|
1473
|
+
actionName?: boolean;
|
|
1428
1474
|
actorId?: boolean;
|
|
1429
1475
|
createdAt?: boolean;
|
|
1430
1476
|
databaseId?: boolean;
|
|
@@ -1617,6 +1663,12 @@ export type DatabaseSelect = {
|
|
|
1617
1663
|
filter?: IndexFilter;
|
|
1618
1664
|
orderBy?: IndexOrderBy[];
|
|
1619
1665
|
};
|
|
1666
|
+
managedDomains?: {
|
|
1667
|
+
select: ManagedDomainSelect;
|
|
1668
|
+
first?: number;
|
|
1669
|
+
filter?: ManagedDomainFilter;
|
|
1670
|
+
orderBy?: ManagedDomainOrderBy[];
|
|
1671
|
+
};
|
|
1620
1672
|
partitions?: {
|
|
1621
1673
|
select: PartitionSelect;
|
|
1622
1674
|
first?: number;
|
|
@@ -1807,6 +1859,12 @@ export type DomainSelect = {
|
|
|
1807
1859
|
site?: {
|
|
1808
1860
|
select: SiteSelect;
|
|
1809
1861
|
};
|
|
1862
|
+
httpRoutes?: {
|
|
1863
|
+
select: HttpRouteSelect;
|
|
1864
|
+
first?: number;
|
|
1865
|
+
filter?: HttpRouteFilter;
|
|
1866
|
+
orderBy?: HttpRouteOrderBy[];
|
|
1867
|
+
};
|
|
1810
1868
|
};
|
|
1811
1869
|
export type EmbeddingChunkSelect = {
|
|
1812
1870
|
chunkOverlap?: boolean;
|
|
@@ -1964,6 +2022,24 @@ export type FunctionSelect = {
|
|
|
1964
2022
|
select: SchemaSelect;
|
|
1965
2023
|
};
|
|
1966
2024
|
};
|
|
2025
|
+
export type HttpRouteSelect = {
|
|
2026
|
+
createdAt?: boolean;
|
|
2027
|
+
createdBy?: boolean;
|
|
2028
|
+
databaseId?: boolean;
|
|
2029
|
+
domainId?: boolean;
|
|
2030
|
+
id?: boolean;
|
|
2031
|
+
isActive?: boolean;
|
|
2032
|
+
method?: boolean;
|
|
2033
|
+
path?: boolean;
|
|
2034
|
+
priority?: boolean;
|
|
2035
|
+
targetId?: boolean;
|
|
2036
|
+
targetKind?: boolean;
|
|
2037
|
+
updatedAt?: boolean;
|
|
2038
|
+
updatedBy?: boolean;
|
|
2039
|
+
domain?: {
|
|
2040
|
+
select: DomainSelect;
|
|
2041
|
+
};
|
|
2042
|
+
};
|
|
1967
2043
|
export type IndexSelect = {
|
|
1968
2044
|
accessMethod?: boolean;
|
|
1969
2045
|
category?: boolean;
|
|
@@ -1989,10 +2065,19 @@ export type IndexSelect = {
|
|
|
1989
2065
|
select: TableSelect;
|
|
1990
2066
|
};
|
|
1991
2067
|
};
|
|
1992
|
-
export type
|
|
2068
|
+
export type ManagedDomainSelect = {
|
|
2069
|
+
annotations?: boolean;
|
|
1993
2070
|
databaseId?: boolean;
|
|
2071
|
+
domain?: boolean;
|
|
1994
2072
|
id?: boolean;
|
|
1995
|
-
|
|
2073
|
+
isWildcard?: boolean;
|
|
2074
|
+
tlsReadyAt?: boolean;
|
|
2075
|
+
tlsStatus?: boolean;
|
|
2076
|
+
verificationStatus?: boolean;
|
|
2077
|
+
verifiedAt?: boolean;
|
|
2078
|
+
database?: {
|
|
2079
|
+
select: DatabaseSelect;
|
|
2080
|
+
};
|
|
1996
2081
|
};
|
|
1997
2082
|
export type NodeTypeRegistrySelect = {
|
|
1998
2083
|
category?: boolean;
|
|
@@ -2331,8 +2416,8 @@ export type SpatialRelationSelect = {
|
|
|
2331
2416
|
};
|
|
2332
2417
|
};
|
|
2333
2418
|
export type SqlActionSelect = {
|
|
2334
|
-
action?: boolean;
|
|
2335
2419
|
actionId?: boolean;
|
|
2420
|
+
actionName?: boolean;
|
|
2336
2421
|
actorId?: boolean;
|
|
2337
2422
|
content?: boolean;
|
|
2338
2423
|
createdAt?: boolean;
|
|
@@ -2847,10 +2932,10 @@ export interface AppFilter {
|
|
|
2847
2932
|
siteId?: UUIDFilter;
|
|
2848
2933
|
}
|
|
2849
2934
|
export interface AstMigrationFilter {
|
|
2850
|
-
/** Filter by the object’s `action` field. */
|
|
2851
|
-
action?: StringFilter;
|
|
2852
2935
|
/** Filter by the object’s `actionId` field. */
|
|
2853
2936
|
actionId?: UUIDFilter;
|
|
2937
|
+
/** Filter by the object’s `actionName` field. */
|
|
2938
|
+
actionName?: StringFilter;
|
|
2854
2939
|
/** Filter by the object’s `actorId` field. */
|
|
2855
2940
|
actorId?: UUIDFilter;
|
|
2856
2941
|
/** Checks for all expressions in this list. */
|
|
@@ -3057,6 +3142,10 @@ export interface DatabaseFilter {
|
|
|
3057
3142
|
indicesExist?: boolean;
|
|
3058
3143
|
/** Filter by the object’s `label` field. */
|
|
3059
3144
|
label?: StringFilter;
|
|
3145
|
+
/** Filter by the object’s `managedDomains` relation. */
|
|
3146
|
+
managedDomains?: DatabaseToManyManagedDomainFilter;
|
|
3147
|
+
/** `managedDomains` exist. */
|
|
3148
|
+
managedDomainsExist?: boolean;
|
|
3060
3149
|
/** Filter by the object’s `name` field. */
|
|
3061
3150
|
name?: StringFilter;
|
|
3062
3151
|
/** Negates the expression. */
|
|
@@ -3285,6 +3374,10 @@ export interface DomainFilter {
|
|
|
3285
3374
|
databaseId?: UUIDFilter;
|
|
3286
3375
|
/** Filter by the object’s `domain` field. */
|
|
3287
3376
|
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
3377
|
+
/** Filter by the object’s `httpRoutes` relation. */
|
|
3378
|
+
httpRoutes?: DomainToManyHttpRouteFilter;
|
|
3379
|
+
/** `httpRoutes` exist. */
|
|
3380
|
+
httpRoutesExist?: boolean;
|
|
3288
3381
|
/** Filter by the object’s `id` field. */
|
|
3289
3382
|
id?: UUIDFilter;
|
|
3290
3383
|
/** Filter by the object’s `labels` field. */
|
|
@@ -3566,6 +3659,42 @@ export interface FunctionFilter {
|
|
|
3566
3659
|
/** Filter by the object’s `schemaId` field. */
|
|
3567
3660
|
schemaId?: UUIDFilter;
|
|
3568
3661
|
}
|
|
3662
|
+
export interface HttpRouteFilter {
|
|
3663
|
+
/** Checks for all expressions in this list. */
|
|
3664
|
+
and?: HttpRouteFilter[];
|
|
3665
|
+
/** Filter by the object’s `createdAt` field. */
|
|
3666
|
+
createdAt?: DatetimeFilter;
|
|
3667
|
+
/** Filter by the object’s `createdBy` field. */
|
|
3668
|
+
createdBy?: UUIDFilter;
|
|
3669
|
+
/** Filter by the object’s `databaseId` field. */
|
|
3670
|
+
databaseId?: UUIDFilter;
|
|
3671
|
+
/** Filter by the object’s `domain` relation. */
|
|
3672
|
+
domain?: DomainFilter;
|
|
3673
|
+
/** Filter by the object’s `domainId` field. */
|
|
3674
|
+
domainId?: UUIDFilter;
|
|
3675
|
+
/** Filter by the object’s `id` field. */
|
|
3676
|
+
id?: UUIDFilter;
|
|
3677
|
+
/** Filter by the object’s `isActive` field. */
|
|
3678
|
+
isActive?: BooleanFilter;
|
|
3679
|
+
/** Filter by the object’s `method` field. */
|
|
3680
|
+
method?: StringFilter;
|
|
3681
|
+
/** Negates the expression. */
|
|
3682
|
+
not?: HttpRouteFilter;
|
|
3683
|
+
/** Checks for any expressions in this list. */
|
|
3684
|
+
or?: HttpRouteFilter[];
|
|
3685
|
+
/** Filter by the object’s `path` field. */
|
|
3686
|
+
path?: StringFilter;
|
|
3687
|
+
/** Filter by the object’s `priority` field. */
|
|
3688
|
+
priority?: IntFilter;
|
|
3689
|
+
/** Filter by the object’s `targetId` field. */
|
|
3690
|
+
targetId?: UUIDFilter;
|
|
3691
|
+
/** Filter by the object’s `targetKind` field. */
|
|
3692
|
+
targetKind?: StringFilter;
|
|
3693
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
3694
|
+
updatedAt?: DatetimeFilter;
|
|
3695
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
3696
|
+
updatedBy?: UUIDFilter;
|
|
3697
|
+
}
|
|
3569
3698
|
export interface IndexFilter {
|
|
3570
3699
|
/** Filter by the object’s `accessMethod` field. */
|
|
3571
3700
|
accessMethod?: StringFilter;
|
|
@@ -3612,19 +3741,33 @@ export interface IndexFilter {
|
|
|
3612
3741
|
/** Filter by the object’s `whereClause` field. */
|
|
3613
3742
|
whereClause?: JSONFilter;
|
|
3614
3743
|
}
|
|
3615
|
-
export interface
|
|
3744
|
+
export interface ManagedDomainFilter {
|
|
3616
3745
|
/** Checks for all expressions in this list. */
|
|
3617
|
-
and?:
|
|
3746
|
+
and?: ManagedDomainFilter[];
|
|
3747
|
+
/** Filter by the object’s `annotations` field. */
|
|
3748
|
+
annotations?: JSONFilter;
|
|
3749
|
+
/** Filter by the object’s `database` relation. */
|
|
3750
|
+
database?: DatabaseFilter;
|
|
3618
3751
|
/** Filter by the object’s `databaseId` field. */
|
|
3619
3752
|
databaseId?: UUIDFilter;
|
|
3753
|
+
/** Filter by the object’s `domain` field. */
|
|
3754
|
+
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
3620
3755
|
/** Filter by the object’s `id` field. */
|
|
3621
3756
|
id?: UUIDFilter;
|
|
3757
|
+
/** Filter by the object’s `isWildcard` field. */
|
|
3758
|
+
isWildcard?: BooleanFilter;
|
|
3622
3759
|
/** Negates the expression. */
|
|
3623
|
-
not?:
|
|
3760
|
+
not?: ManagedDomainFilter;
|
|
3624
3761
|
/** Checks for any expressions in this list. */
|
|
3625
|
-
or?:
|
|
3626
|
-
/** Filter by the object’s `
|
|
3627
|
-
|
|
3762
|
+
or?: ManagedDomainFilter[];
|
|
3763
|
+
/** Filter by the object’s `tlsReadyAt` field. */
|
|
3764
|
+
tlsReadyAt?: DatetimeFilter;
|
|
3765
|
+
/** Filter by the object’s `tlsStatus` field. */
|
|
3766
|
+
tlsStatus?: StringFilter;
|
|
3767
|
+
/** Filter by the object’s `verificationStatus` field. */
|
|
3768
|
+
verificationStatus?: StringFilter;
|
|
3769
|
+
/** Filter by the object’s `verifiedAt` field. */
|
|
3770
|
+
verifiedAt?: DatetimeFilter;
|
|
3628
3771
|
}
|
|
3629
3772
|
export interface NodeTypeRegistryFilter {
|
|
3630
3773
|
/** Checks for all expressions in this list. */
|
|
@@ -4129,10 +4272,10 @@ export interface SpatialRelationFilter {
|
|
|
4129
4272
|
updatedAt?: DatetimeFilter;
|
|
4130
4273
|
}
|
|
4131
4274
|
export interface SqlActionFilter {
|
|
4132
|
-
/** Filter by the object’s `action` field. */
|
|
4133
|
-
action?: StringFilter;
|
|
4134
4275
|
/** Filter by the object’s `actionId` field. */
|
|
4135
4276
|
actionId?: UUIDFilter;
|
|
4277
|
+
/** Filter by the object’s `actionName` field. */
|
|
4278
|
+
actionName?: StringFilter;
|
|
4136
4279
|
/** Filter by the object’s `actorId` field. */
|
|
4137
4280
|
actorId?: UUIDFilter;
|
|
4138
4281
|
/** Checks for all expressions in this list. */
|
|
@@ -4627,7 +4770,7 @@ export type ApiModuleOrderBy = 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC'
|
|
|
4627
4770
|
export type ApiSchemaOrderBy = 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
|
|
4628
4771
|
export type ApiSettingOrderBy = 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENABLE_AGGREGATES_ASC' | 'ENABLE_AGGREGATES_DESC' | 'ENABLE_BULK_ASC' | 'ENABLE_BULK_DESC' | 'ENABLE_CONNECTION_FILTER_ASC' | 'ENABLE_CONNECTION_FILTER_DESC' | 'ENABLE_DIRECT_UPLOADS_ASC' | 'ENABLE_DIRECT_UPLOADS_DESC' | 'ENABLE_I18N_ASC' | 'ENABLE_I18N_DESC' | 'ENABLE_LLM_ASC' | 'ENABLE_LLM_DESC' | 'ENABLE_LTREE_ASC' | 'ENABLE_LTREE_DESC' | 'ENABLE_MANY_TO_MANY_ASC' | 'ENABLE_MANY_TO_MANY_DESC' | 'ENABLE_POSTGIS_ASC' | 'ENABLE_POSTGIS_DESC' | 'ENABLE_PRESIGNED_UPLOADS_ASC' | 'ENABLE_PRESIGNED_UPLOADS_DESC' | 'ENABLE_REALTIME_ASC' | 'ENABLE_REALTIME_DESC' | 'ENABLE_SEARCH_ASC' | 'ENABLE_SEARCH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OPTIONS_ASC' | 'OPTIONS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
4629
4772
|
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';
|
|
4630
|
-
export type AstMigrationOrderBy = '
|
|
4773
|
+
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';
|
|
4631
4774
|
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';
|
|
4632
4775
|
export type CompositeTypeOrderBy = 'ATTRIBUTES_ASC' | 'ATTRIBUTES_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TAGS_ASC' | 'TAGS_DESC';
|
|
4633
4776
|
export type CorsSettingOrderBy = 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
@@ -4642,8 +4785,9 @@ export type FieldOrderBy = 'API_REQUIRED_ASC' | 'API_REQUIRED_DESC' | 'CATEGORY_
|
|
|
4642
4785
|
export type ForeignKeyConstraintOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DELETE_ACTION_ASC' | 'DELETE_ACTION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FIELD_IDS_ASC' | 'FIELD_IDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REF_FIELD_IDS_ASC' | 'REF_FIELD_IDS_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_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' | 'UPDATE_ACTION_ASC' | 'UPDATE_ACTION_DESC';
|
|
4643
4786
|
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';
|
|
4644
4787
|
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';
|
|
4788
|
+
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';
|
|
4645
4789
|
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';
|
|
4646
|
-
export type
|
|
4790
|
+
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';
|
|
4647
4791
|
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';
|
|
4648
4792
|
export type PartitionOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'IS_PARENTED_ASC' | 'IS_PARENTED_DESC' | 'NAMING_PATTERN_ASC' | 'NAMING_PATTERN_DESC' | 'NATURAL' | 'PARTITION_KEY_ID_ASC' | 'PARTITION_KEY_ID_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'RETENTION_KEEP_TABLE_ASC' | 'RETENTION_KEEP_TABLE_DESC' | 'STRATEGY_ASC' | 'STRATEGY_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
4649
4793
|
export type PolicyOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'DISABLED_ASC' | 'DISABLED_DESC' | 'GRANTEE_NAME_ASC' | 'GRANTEE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PERMISSIVE_ASC' | 'PERMISSIVE_DESC' | 'POLICY_TYPE_ASC' | 'POLICY_TYPE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVILEGE_ASC' | 'PRIVILEGE_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'WITH_CHECK_ASC' | 'WITH_CHECK_DESC';
|
|
@@ -4657,7 +4801,7 @@ export type SiteMetadatumOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DES
|
|
|
4657
4801
|
export type SiteModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC';
|
|
4658
4802
|
export type SiteThemeOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SITE_ID_ASC' | 'SITE_ID_DESC' | 'THEME_ASC' | 'THEME_DESC';
|
|
4659
4803
|
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';
|
|
4660
|
-
export type SqlActionOrderBy = '
|
|
4804
|
+
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';
|
|
4661
4805
|
export type TableOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INHERITS_ID_ASC' | 'INHERITS_ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARTITIONED_ASC' | 'PARTITIONED_DESC' | 'PARTITION_KEY_NAMES_ASC' | 'PARTITION_KEY_NAMES_DESC' | 'PARTITION_KEY_TYPES_ASC' | 'PARTITION_KEY_TYPES_DESC' | 'PARTITION_STRATEGY_ASC' | 'PARTITION_STRATEGY_DESC' | 'PEOPLESTAMPS_ASC' | 'PEOPLESTAMPS_DESC' | 'PLURAL_NAME_ASC' | 'PLURAL_NAME_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SINGULAR_NAME_ASC' | 'SINGULAR_NAME_DESC' | 'SMART_TAGS_ASC' | 'SMART_TAGS_DESC' | 'STEP_UP_ASC' | 'STEP_UP_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'TIMESTAMPS_ASC' | 'TIMESTAMPS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC';
|
|
4662
4806
|
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';
|
|
4663
4807
|
export type TriggerOrderBy = 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_ASC' | 'EVENT_DESC' | 'FUNCTION_NAME_ASC' | 'FUNCTION_NAME_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' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
@@ -4828,10 +4972,10 @@ export interface DeleteAppInput {
|
|
|
4828
4972
|
export interface CreateAstMigrationInput {
|
|
4829
4973
|
clientMutationId?: string;
|
|
4830
4974
|
astMigration: {
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
actorId
|
|
4834
|
-
databaseId
|
|
4975
|
+
actionId: string;
|
|
4976
|
+
actionName?: string;
|
|
4977
|
+
actorId: string;
|
|
4978
|
+
databaseId: string;
|
|
4835
4979
|
deploy?: Record<string, unknown>;
|
|
4836
4980
|
deploys?: string;
|
|
4837
4981
|
name?: string;
|
|
@@ -4842,8 +4986,8 @@ export interface CreateAstMigrationInput {
|
|
|
4842
4986
|
};
|
|
4843
4987
|
}
|
|
4844
4988
|
export interface AstMigrationPatch {
|
|
4845
|
-
action?: string | null;
|
|
4846
4989
|
actionId?: string | null;
|
|
4990
|
+
actionName?: string | null;
|
|
4847
4991
|
actorId?: string | null;
|
|
4848
4992
|
databaseId?: string | null;
|
|
4849
4993
|
deploy?: Record<string, unknown> | null;
|
|
@@ -5363,6 +5507,42 @@ export interface DeleteFunctionInput {
|
|
|
5363
5507
|
clientMutationId?: string;
|
|
5364
5508
|
id: string;
|
|
5365
5509
|
}
|
|
5510
|
+
export interface CreateHttpRouteInput {
|
|
5511
|
+
clientMutationId?: string;
|
|
5512
|
+
httpRoute: {
|
|
5513
|
+
createdBy?: string;
|
|
5514
|
+
databaseId: string;
|
|
5515
|
+
domainId: string;
|
|
5516
|
+
isActive?: boolean;
|
|
5517
|
+
method?: string;
|
|
5518
|
+
path?: string;
|
|
5519
|
+
priority?: number;
|
|
5520
|
+
targetId: string;
|
|
5521
|
+
targetKind: string;
|
|
5522
|
+
updatedBy?: string;
|
|
5523
|
+
};
|
|
5524
|
+
}
|
|
5525
|
+
export interface HttpRoutePatch {
|
|
5526
|
+
createdBy?: string | null;
|
|
5527
|
+
databaseId?: string | null;
|
|
5528
|
+
domainId?: string | null;
|
|
5529
|
+
isActive?: boolean | null;
|
|
5530
|
+
method?: string | null;
|
|
5531
|
+
path?: string | null;
|
|
5532
|
+
priority?: number | null;
|
|
5533
|
+
targetId?: string | null;
|
|
5534
|
+
targetKind?: string | null;
|
|
5535
|
+
updatedBy?: string | null;
|
|
5536
|
+
}
|
|
5537
|
+
export interface UpdateHttpRouteInput {
|
|
5538
|
+
clientMutationId?: string;
|
|
5539
|
+
id: string;
|
|
5540
|
+
httpRoutePatch: HttpRoutePatch;
|
|
5541
|
+
}
|
|
5542
|
+
export interface DeleteHttpRouteInput {
|
|
5543
|
+
clientMutationId?: string;
|
|
5544
|
+
id: string;
|
|
5545
|
+
}
|
|
5366
5546
|
export interface CreateIndexInput {
|
|
5367
5547
|
clientMutationId?: string;
|
|
5368
5548
|
index: {
|
|
@@ -5407,23 +5587,35 @@ export interface DeleteIndexInput {
|
|
|
5407
5587
|
clientMutationId?: string;
|
|
5408
5588
|
id: string;
|
|
5409
5589
|
}
|
|
5410
|
-
export interface
|
|
5590
|
+
export interface CreateManagedDomainInput {
|
|
5411
5591
|
clientMutationId?: string;
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5592
|
+
managedDomain: {
|
|
5593
|
+
annotations?: Record<string, unknown>;
|
|
5594
|
+
databaseId: string;
|
|
5595
|
+
domain: ConstructiveInternalTypeHostname;
|
|
5596
|
+
isWildcard?: boolean;
|
|
5597
|
+
tlsReadyAt?: string;
|
|
5598
|
+
tlsStatus?: string;
|
|
5599
|
+
verificationStatus?: string;
|
|
5600
|
+
verifiedAt?: string;
|
|
5415
5601
|
};
|
|
5416
5602
|
}
|
|
5417
|
-
export interface
|
|
5603
|
+
export interface ManagedDomainPatch {
|
|
5604
|
+
annotations?: Record<string, unknown> | null;
|
|
5418
5605
|
databaseId?: string | null;
|
|
5419
|
-
|
|
5606
|
+
domain?: ConstructiveInternalTypeHostname | null;
|
|
5607
|
+
isWildcard?: boolean | null;
|
|
5608
|
+
tlsReadyAt?: string | null;
|
|
5609
|
+
tlsStatus?: string | null;
|
|
5610
|
+
verificationStatus?: string | null;
|
|
5611
|
+
verifiedAt?: string | null;
|
|
5420
5612
|
}
|
|
5421
|
-
export interface
|
|
5613
|
+
export interface UpdateManagedDomainInput {
|
|
5422
5614
|
clientMutationId?: string;
|
|
5423
5615
|
id: string;
|
|
5424
|
-
|
|
5616
|
+
managedDomainPatch: ManagedDomainPatch;
|
|
5425
5617
|
}
|
|
5426
|
-
export interface
|
|
5618
|
+
export interface DeleteManagedDomainInput {
|
|
5427
5619
|
clientMutationId?: string;
|
|
5428
5620
|
id: string;
|
|
5429
5621
|
}
|
|
@@ -5843,11 +6035,11 @@ export interface DeleteSpatialRelationInput {
|
|
|
5843
6035
|
export interface CreateSqlActionInput {
|
|
5844
6036
|
clientMutationId?: string;
|
|
5845
6037
|
sqlAction: {
|
|
5846
|
-
|
|
5847
|
-
|
|
5848
|
-
actorId
|
|
6038
|
+
actionId: string;
|
|
6039
|
+
actionName?: string;
|
|
6040
|
+
actorId: string;
|
|
5849
6041
|
content?: string;
|
|
5850
|
-
databaseId
|
|
6042
|
+
databaseId: string;
|
|
5851
6043
|
deploy?: string;
|
|
5852
6044
|
deps?: string[];
|
|
5853
6045
|
name?: string;
|
|
@@ -5857,8 +6049,8 @@ export interface CreateSqlActionInput {
|
|
|
5857
6049
|
};
|
|
5858
6050
|
}
|
|
5859
6051
|
export interface SqlActionPatch {
|
|
5860
|
-
action?: string | null;
|
|
5861
6052
|
actionId?: string | null;
|
|
6053
|
+
actionName?: string | null;
|
|
5862
6054
|
actorId?: string | null;
|
|
5863
6055
|
content?: string | null;
|
|
5864
6056
|
databaseId?: string | null;
|
|
@@ -6598,6 +6790,15 @@ export interface DatabaseToManyIndexFilter {
|
|
|
6598
6790
|
/** Filters to entities where at least one related entity matches. */
|
|
6599
6791
|
some?: IndexFilter;
|
|
6600
6792
|
}
|
|
6793
|
+
/** A filter to be used against many `ManagedDomain` object types. All fields are combined with a logical ‘and.’ */
|
|
6794
|
+
export interface DatabaseToManyManagedDomainFilter {
|
|
6795
|
+
/** Filters to entities where every related entity matches. */
|
|
6796
|
+
every?: ManagedDomainFilter;
|
|
6797
|
+
/** Filters to entities where no related entity matches. */
|
|
6798
|
+
none?: ManagedDomainFilter;
|
|
6799
|
+
/** Filters to entities where at least one related entity matches. */
|
|
6800
|
+
some?: ManagedDomainFilter;
|
|
6801
|
+
}
|
|
6601
6802
|
/** A filter to be used against many `Partition` object types. All fields are combined with a logical ‘and.’ */
|
|
6602
6803
|
export interface DatabaseToManyPartitionFilter {
|
|
6603
6804
|
/** Filters to entities where every related entity matches. */
|
|
@@ -6846,6 +7047,15 @@ export interface ConstructiveInternalTypeHostnameFilter {
|
|
|
6846
7047
|
/** Starts with the specified string (case-insensitive). */
|
|
6847
7048
|
startsWithInsensitive?: ConstructiveInternalTypeHostname;
|
|
6848
7049
|
}
|
|
7050
|
+
/** A filter to be used against many `HttpRoute` object types. All fields are combined with a logical ‘and.’ */
|
|
7051
|
+
export interface DomainToManyHttpRouteFilter {
|
|
7052
|
+
/** Filters to entities where every related entity matches. */
|
|
7053
|
+
every?: HttpRouteFilter;
|
|
7054
|
+
/** Filters to entities where no related entity matches. */
|
|
7055
|
+
none?: HttpRouteFilter;
|
|
7056
|
+
/** Filters to entities where at least one related entity matches. */
|
|
7057
|
+
some?: HttpRouteFilter;
|
|
7058
|
+
}
|
|
6849
7059
|
/** A filter to be used against many `SpatialRelation` object types. All fields are combined with a logical ‘and.’ */
|
|
6850
7060
|
export interface FieldToManySpatialRelationFilter {
|
|
6851
7061
|
/** Filters to entities where every related entity matches. */
|
|
@@ -6855,41 +7065,6 @@ export interface FieldToManySpatialRelationFilter {
|
|
|
6855
7065
|
/** Filters to entities where at least one related entity matches. */
|
|
6856
7066
|
some?: SpatialRelationFilter;
|
|
6857
7067
|
}
|
|
6858
|
-
/** A filter to be used against ConstructiveInternalTypeUpload fields. All fields are combined with a logical ‘and.’ */
|
|
6859
|
-
export interface ConstructiveInternalTypeUploadFilter {
|
|
6860
|
-
/** Contained by the specified JSON. */
|
|
6861
|
-
containedBy?: ConstructiveInternalTypeUpload;
|
|
6862
|
-
/** Contains the specified JSON. */
|
|
6863
|
-
contains?: ConstructiveInternalTypeUpload;
|
|
6864
|
-
/** Contains all of the specified keys. */
|
|
6865
|
-
containsAllKeys?: string[];
|
|
6866
|
-
/** Contains any of the specified keys. */
|
|
6867
|
-
containsAnyKeys?: string[];
|
|
6868
|
-
/** Contains the specified key. */
|
|
6869
|
-
containsKey?: string;
|
|
6870
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
6871
|
-
distinctFrom?: ConstructiveInternalTypeUpload;
|
|
6872
|
-
/** Equal to the specified value. */
|
|
6873
|
-
equalTo?: ConstructiveInternalTypeUpload;
|
|
6874
|
-
/** Greater than the specified value. */
|
|
6875
|
-
greaterThan?: ConstructiveInternalTypeUpload;
|
|
6876
|
-
/** Greater than or equal to the specified value. */
|
|
6877
|
-
greaterThanOrEqualTo?: ConstructiveInternalTypeUpload;
|
|
6878
|
-
/** Included in the specified list. */
|
|
6879
|
-
in?: ConstructiveInternalTypeUpload[];
|
|
6880
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
6881
|
-
isNull?: boolean;
|
|
6882
|
-
/** Less than the specified value. */
|
|
6883
|
-
lessThan?: ConstructiveInternalTypeUpload;
|
|
6884
|
-
/** Less than or equal to the specified value. */
|
|
6885
|
-
lessThanOrEqualTo?: ConstructiveInternalTypeUpload;
|
|
6886
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
6887
|
-
notDistinctFrom?: ConstructiveInternalTypeUpload;
|
|
6888
|
-
/** Not equal to the specified value. */
|
|
6889
|
-
notEqualTo?: ConstructiveInternalTypeUpload;
|
|
6890
|
-
/** Not included in the specified list. */
|
|
6891
|
-
notIn?: ConstructiveInternalTypeUpload[];
|
|
6892
|
-
}
|
|
6893
7068
|
/** A filter to be used against ApiExposureLevel fields. All fields are combined with a logical ‘and.’ */
|
|
6894
7069
|
export interface ApiExposureLevelFilter {
|
|
6895
7070
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -7354,22 +7529,6 @@ export interface AppInput {
|
|
|
7354
7529
|
/** Site this app is associated with (one app per site) */
|
|
7355
7530
|
siteId: string;
|
|
7356
7531
|
}
|
|
7357
|
-
/** An input for mutations affecting `AstMigration` */
|
|
7358
|
-
export interface AstMigrationInput {
|
|
7359
|
-
action?: string;
|
|
7360
|
-
actionId?: string;
|
|
7361
|
-
actorId?: string;
|
|
7362
|
-
createdAt?: string;
|
|
7363
|
-
databaseId?: string;
|
|
7364
|
-
deploy?: Record<string, unknown>;
|
|
7365
|
-
deploys?: string;
|
|
7366
|
-
id?: number;
|
|
7367
|
-
name?: string;
|
|
7368
|
-
payload?: Record<string, unknown>;
|
|
7369
|
-
requires?: string[];
|
|
7370
|
-
revert?: Record<string, unknown>;
|
|
7371
|
-
verify?: Record<string, unknown>;
|
|
7372
|
-
}
|
|
7373
7532
|
/** An input for mutations affecting `CheckConstraint` */
|
|
7374
7533
|
export interface CheckConstraintInput {
|
|
7375
7534
|
category?: ObjectCategory;
|
|
@@ -7608,6 +7767,30 @@ export interface FunctionInput {
|
|
|
7608
7767
|
name: string;
|
|
7609
7768
|
schemaId: string;
|
|
7610
7769
|
}
|
|
7770
|
+
/** An input for mutations affecting `HttpRoute` */
|
|
7771
|
+
export interface HttpRouteInput {
|
|
7772
|
+
createdAt?: string;
|
|
7773
|
+
createdBy?: string;
|
|
7774
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
7775
|
+
databaseId: string;
|
|
7776
|
+
/** Registered host in services_public.domains */
|
|
7777
|
+
domainId: string;
|
|
7778
|
+
id?: string;
|
|
7779
|
+
/** Whether the resolver may select this route */
|
|
7780
|
+
isActive?: boolean;
|
|
7781
|
+
/** Optional uppercase HTTP method; NULL matches every method */
|
|
7782
|
+
method?: string;
|
|
7783
|
+
/** Normalized request path prefix; longest matching prefix wins */
|
|
7784
|
+
path?: string;
|
|
7785
|
+
/** Tie-break precedence after path length and method specificity */
|
|
7786
|
+
priority?: number;
|
|
7787
|
+
/** Target row of the type named by target_kind; existence enforced by trigger */
|
|
7788
|
+
targetId: string;
|
|
7789
|
+
/** Discriminator selecting the type of target_id */
|
|
7790
|
+
targetKind: string;
|
|
7791
|
+
updatedAt?: string;
|
|
7792
|
+
updatedBy?: string;
|
|
7793
|
+
}
|
|
7611
7794
|
/** An input for mutations affecting `Index` */
|
|
7612
7795
|
export interface IndexInput {
|
|
7613
7796
|
accessMethod?: string;
|
|
@@ -7628,11 +7811,26 @@ export interface IndexInput {
|
|
|
7628
7811
|
updatedAt?: string;
|
|
7629
7812
|
whereClause?: Record<string, unknown>;
|
|
7630
7813
|
}
|
|
7631
|
-
/** An input for mutations affecting `
|
|
7632
|
-
export interface
|
|
7633
|
-
|
|
7814
|
+
/** An input for mutations affecting `ManagedDomain` */
|
|
7815
|
+
export interface ManagedDomainInput {
|
|
7816
|
+
/** Freeform cert-manager detail (secret name, challenge, last error) and tooling metadata */
|
|
7817
|
+
annotations?: Record<string, unknown>;
|
|
7818
|
+
/** Database that owns this cert-bearing host; platform wildcards are owned by the platform database */
|
|
7819
|
+
databaseId: string;
|
|
7820
|
+
/** Root hostname this row governs certs/verification for (e.g. launchql.dev, shop.acme.com) */
|
|
7821
|
+
domain: ConstructiveInternalTypeHostname;
|
|
7822
|
+
/** Unique identifier for this managed domain record */
|
|
7634
7823
|
id?: string;
|
|
7635
|
-
|
|
7824
|
+
/** Whether the cert covers the wildcard *.domain (one wildcard cert covers every subdomain row sharing this root) */
|
|
7825
|
+
isWildcard?: boolean;
|
|
7826
|
+
/** When tls_status last became active */
|
|
7827
|
+
tlsReadyAt?: string;
|
|
7828
|
+
/** TLS/SSL provisioning state: none | provisioning | active | failed */
|
|
7829
|
+
tlsStatus?: string;
|
|
7830
|
+
/** Domain ownership verification state: pending | verified | failed */
|
|
7831
|
+
verificationStatus?: string;
|
|
7832
|
+
/** When verification_status last became verified */
|
|
7833
|
+
verifiedAt?: string;
|
|
7636
7834
|
}
|
|
7637
7835
|
/** An input for mutations affecting `NodeTypeRegistry` */
|
|
7638
7836
|
export interface NodeTypeRegistryInput {
|
|
@@ -7843,22 +8041,6 @@ export interface SpatialRelationInput {
|
|
|
7843
8041
|
tags?: string[];
|
|
7844
8042
|
updatedAt?: string;
|
|
7845
8043
|
}
|
|
7846
|
-
/** An input for mutations affecting `SqlAction` */
|
|
7847
|
-
export interface SqlActionInput {
|
|
7848
|
-
action?: string;
|
|
7849
|
-
actionId?: string;
|
|
7850
|
-
actorId?: string;
|
|
7851
|
-
content?: string;
|
|
7852
|
-
createdAt?: string;
|
|
7853
|
-
databaseId?: string;
|
|
7854
|
-
deploy?: string;
|
|
7855
|
-
deps?: string[];
|
|
7856
|
-
id?: number;
|
|
7857
|
-
name?: string;
|
|
7858
|
-
payload?: Record<string, unknown>;
|
|
7859
|
-
revert?: string;
|
|
7860
|
-
verify?: string;
|
|
7861
|
-
}
|
|
7862
8044
|
/** An input for mutations affecting `Table` */
|
|
7863
8045
|
export interface TableInput {
|
|
7864
8046
|
category?: ObjectCategory;
|
|
@@ -8105,6 +8287,10 @@ export interface DomainFilter {
|
|
|
8105
8287
|
databaseId?: UUIDFilter;
|
|
8106
8288
|
/** Filter by the object’s `domain` field. */
|
|
8107
8289
|
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
8290
|
+
/** Filter by the object’s `httpRoutes` relation. */
|
|
8291
|
+
httpRoutes?: DomainToManyHttpRouteFilter;
|
|
8292
|
+
/** `httpRoutes` exist. */
|
|
8293
|
+
httpRoutesExist?: boolean;
|
|
8108
8294
|
/** Filter by the object’s `id` field. */
|
|
8109
8295
|
id?: UUIDFilter;
|
|
8110
8296
|
/** Filter by the object’s `labels` field. */
|
|
@@ -8700,6 +8886,35 @@ export interface IndexFilter {
|
|
|
8700
8886
|
/** Filter by the object’s `whereClause` field. */
|
|
8701
8887
|
whereClause?: JSONFilter;
|
|
8702
8888
|
}
|
|
8889
|
+
/** A filter to be used against `ManagedDomain` object types. All fields are combined with a logical ‘and.’ */
|
|
8890
|
+
export interface ManagedDomainFilter {
|
|
8891
|
+
/** Checks for all expressions in this list. */
|
|
8892
|
+
and?: ManagedDomainFilter[];
|
|
8893
|
+
/** Filter by the object’s `annotations` field. */
|
|
8894
|
+
annotations?: JSONFilter;
|
|
8895
|
+
/** Filter by the object’s `database` relation. */
|
|
8896
|
+
database?: DatabaseFilter;
|
|
8897
|
+
/** Filter by the object’s `databaseId` field. */
|
|
8898
|
+
databaseId?: UUIDFilter;
|
|
8899
|
+
/** Filter by the object’s `domain` field. */
|
|
8900
|
+
domain?: ConstructiveInternalTypeHostnameFilter;
|
|
8901
|
+
/** Filter by the object’s `id` field. */
|
|
8902
|
+
id?: UUIDFilter;
|
|
8903
|
+
/** Filter by the object’s `isWildcard` field. */
|
|
8904
|
+
isWildcard?: BooleanFilter;
|
|
8905
|
+
/** Negates the expression. */
|
|
8906
|
+
not?: ManagedDomainFilter;
|
|
8907
|
+
/** Checks for any expressions in this list. */
|
|
8908
|
+
or?: ManagedDomainFilter[];
|
|
8909
|
+
/** Filter by the object’s `tlsReadyAt` field. */
|
|
8910
|
+
tlsReadyAt?: DatetimeFilter;
|
|
8911
|
+
/** Filter by the object’s `tlsStatus` field. */
|
|
8912
|
+
tlsStatus?: StringFilter;
|
|
8913
|
+
/** Filter by the object’s `verificationStatus` field. */
|
|
8914
|
+
verificationStatus?: StringFilter;
|
|
8915
|
+
/** Filter by the object’s `verifiedAt` field. */
|
|
8916
|
+
verifiedAt?: DatetimeFilter;
|
|
8917
|
+
}
|
|
8703
8918
|
/** A filter to be used against `Partition` object types. All fields are combined with a logical ‘and.’ */
|
|
8704
8919
|
export interface PartitionFilter {
|
|
8705
8920
|
/** Checks for all expressions in this list. */
|
|
@@ -9469,6 +9684,43 @@ export interface ViewFilter {
|
|
|
9469
9684
|
/** Filter by the object’s `viewType` field. */
|
|
9470
9685
|
viewType?: StringFilter;
|
|
9471
9686
|
}
|
|
9687
|
+
/** A filter to be used against `HttpRoute` object types. All fields are combined with a logical ‘and.’ */
|
|
9688
|
+
export interface HttpRouteFilter {
|
|
9689
|
+
/** Checks for all expressions in this list. */
|
|
9690
|
+
and?: HttpRouteFilter[];
|
|
9691
|
+
/** Filter by the object’s `createdAt` field. */
|
|
9692
|
+
createdAt?: DatetimeFilter;
|
|
9693
|
+
/** Filter by the object’s `createdBy` field. */
|
|
9694
|
+
createdBy?: UUIDFilter;
|
|
9695
|
+
/** Filter by the object’s `databaseId` field. */
|
|
9696
|
+
databaseId?: UUIDFilter;
|
|
9697
|
+
/** Filter by the object’s `domain` relation. */
|
|
9698
|
+
domain?: DomainFilter;
|
|
9699
|
+
/** Filter by the object’s `domainId` field. */
|
|
9700
|
+
domainId?: UUIDFilter;
|
|
9701
|
+
/** Filter by the object’s `id` field. */
|
|
9702
|
+
id?: UUIDFilter;
|
|
9703
|
+
/** Filter by the object’s `isActive` field. */
|
|
9704
|
+
isActive?: BooleanFilter;
|
|
9705
|
+
/** Filter by the object’s `method` field. */
|
|
9706
|
+
method?: StringFilter;
|
|
9707
|
+
/** Negates the expression. */
|
|
9708
|
+
not?: HttpRouteFilter;
|
|
9709
|
+
/** Checks for any expressions in this list. */
|
|
9710
|
+
or?: HttpRouteFilter[];
|
|
9711
|
+
/** Filter by the object’s `path` field. */
|
|
9712
|
+
path?: StringFilter;
|
|
9713
|
+
/** Filter by the object’s `priority` field. */
|
|
9714
|
+
priority?: IntFilter;
|
|
9715
|
+
/** Filter by the object’s `targetId` field. */
|
|
9716
|
+
targetId?: UUIDFilter;
|
|
9717
|
+
/** Filter by the object’s `targetKind` field. */
|
|
9718
|
+
targetKind?: StringFilter;
|
|
9719
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
9720
|
+
updatedAt?: DatetimeFilter;
|
|
9721
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
9722
|
+
updatedBy?: UUIDFilter;
|
|
9723
|
+
}
|
|
9472
9724
|
/** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
|
|
9473
9725
|
export interface UUIDFilter {
|
|
9474
9726
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -9582,6 +9834,10 @@ export interface DatabaseFilter {
|
|
|
9582
9834
|
indicesExist?: boolean;
|
|
9583
9835
|
/** Filter by the object’s `label` field. */
|
|
9584
9836
|
label?: StringFilter;
|
|
9837
|
+
/** Filter by the object’s `managedDomains` relation. */
|
|
9838
|
+
managedDomains?: DatabaseToManyManagedDomainFilter;
|
|
9839
|
+
/** `managedDomains` exist. */
|
|
9840
|
+
managedDomainsExist?: boolean;
|
|
9585
9841
|
/** Filter by the object’s `name` field. */
|
|
9586
9842
|
name?: StringFilter;
|
|
9587
9843
|
/** Negates the expression. */
|
|
@@ -10240,6 +10496,24 @@ export interface BigIntFilter {
|
|
|
10240
10496
|
/** Not included in the specified list. */
|
|
10241
10497
|
notIn?: string[];
|
|
10242
10498
|
}
|
|
10499
|
+
export interface ResolveHttpRouteRecord {
|
|
10500
|
+
databaseId?: string | null;
|
|
10501
|
+
domainId?: string | null;
|
|
10502
|
+
matchedPath?: string | null;
|
|
10503
|
+
method?: string | null;
|
|
10504
|
+
routeId?: string | null;
|
|
10505
|
+
targetId?: string | null;
|
|
10506
|
+
targetKind?: string | null;
|
|
10507
|
+
}
|
|
10508
|
+
export type ResolveHttpRouteRecordSelect = {
|
|
10509
|
+
databaseId?: boolean;
|
|
10510
|
+
domainId?: boolean;
|
|
10511
|
+
matchedPath?: boolean;
|
|
10512
|
+
method?: boolean;
|
|
10513
|
+
routeId?: boolean;
|
|
10514
|
+
targetId?: boolean;
|
|
10515
|
+
targetKind?: boolean;
|
|
10516
|
+
};
|
|
10243
10517
|
export interface AcceptDatabaseTransferPayload {
|
|
10244
10518
|
clientMutationId?: string | null;
|
|
10245
10519
|
result?: boolean | null;
|
|
@@ -10533,17 +10807,6 @@ export type DeleteAppPayloadSelect = {
|
|
|
10533
10807
|
};
|
|
10534
10808
|
clientMutationId?: boolean;
|
|
10535
10809
|
};
|
|
10536
|
-
export interface CreateAstMigrationPayload {
|
|
10537
|
-
/** The `AstMigration` that was created by this mutation. */
|
|
10538
|
-
astMigration?: AstMigration | null;
|
|
10539
|
-
clientMutationId?: string | null;
|
|
10540
|
-
}
|
|
10541
|
-
export type CreateAstMigrationPayloadSelect = {
|
|
10542
|
-
astMigration?: {
|
|
10543
|
-
select: AstMigrationSelect;
|
|
10544
|
-
};
|
|
10545
|
-
clientMutationId?: boolean;
|
|
10546
|
-
};
|
|
10547
10810
|
export interface CreateCheckConstraintPayload {
|
|
10548
10811
|
/** The `CheckConstraint` that was created by this mutation. */
|
|
10549
10812
|
checkConstraint?: CheckConstraint | null;
|
|
@@ -11174,6 +11437,51 @@ export type DeleteFunctionPayloadSelect = {
|
|
|
11174
11437
|
select: FunctionEdgeSelect;
|
|
11175
11438
|
};
|
|
11176
11439
|
};
|
|
11440
|
+
export interface CreateHttpRoutePayload {
|
|
11441
|
+
clientMutationId?: string | null;
|
|
11442
|
+
/** The `HttpRoute` that was created by this mutation. */
|
|
11443
|
+
httpRoute?: HttpRoute | null;
|
|
11444
|
+
httpRouteEdge?: HttpRouteEdge | null;
|
|
11445
|
+
}
|
|
11446
|
+
export type CreateHttpRoutePayloadSelect = {
|
|
11447
|
+
clientMutationId?: boolean;
|
|
11448
|
+
httpRoute?: {
|
|
11449
|
+
select: HttpRouteSelect;
|
|
11450
|
+
};
|
|
11451
|
+
httpRouteEdge?: {
|
|
11452
|
+
select: HttpRouteEdgeSelect;
|
|
11453
|
+
};
|
|
11454
|
+
};
|
|
11455
|
+
export interface UpdateHttpRoutePayload {
|
|
11456
|
+
clientMutationId?: string | null;
|
|
11457
|
+
/** The `HttpRoute` that was updated by this mutation. */
|
|
11458
|
+
httpRoute?: HttpRoute | null;
|
|
11459
|
+
httpRouteEdge?: HttpRouteEdge | null;
|
|
11460
|
+
}
|
|
11461
|
+
export type UpdateHttpRoutePayloadSelect = {
|
|
11462
|
+
clientMutationId?: boolean;
|
|
11463
|
+
httpRoute?: {
|
|
11464
|
+
select: HttpRouteSelect;
|
|
11465
|
+
};
|
|
11466
|
+
httpRouteEdge?: {
|
|
11467
|
+
select: HttpRouteEdgeSelect;
|
|
11468
|
+
};
|
|
11469
|
+
};
|
|
11470
|
+
export interface DeleteHttpRoutePayload {
|
|
11471
|
+
clientMutationId?: string | null;
|
|
11472
|
+
/** The `HttpRoute` that was deleted by this mutation. */
|
|
11473
|
+
httpRoute?: HttpRoute | null;
|
|
11474
|
+
httpRouteEdge?: HttpRouteEdge | null;
|
|
11475
|
+
}
|
|
11476
|
+
export type DeleteHttpRoutePayloadSelect = {
|
|
11477
|
+
clientMutationId?: boolean;
|
|
11478
|
+
httpRoute?: {
|
|
11479
|
+
select: HttpRouteSelect;
|
|
11480
|
+
};
|
|
11481
|
+
httpRouteEdge?: {
|
|
11482
|
+
select: HttpRouteEdgeSelect;
|
|
11483
|
+
};
|
|
11484
|
+
};
|
|
11177
11485
|
export interface CreateIndexPayload {
|
|
11178
11486
|
clientMutationId?: string | null;
|
|
11179
11487
|
/** The `Index` that was created by this mutation. */
|
|
@@ -11219,15 +11527,49 @@ export type DeleteIndexPayloadSelect = {
|
|
|
11219
11527
|
select: IndexEdgeSelect;
|
|
11220
11528
|
};
|
|
11221
11529
|
};
|
|
11222
|
-
export interface
|
|
11530
|
+
export interface CreateManagedDomainPayload {
|
|
11223
11531
|
clientMutationId?: string | null;
|
|
11224
|
-
/** The `
|
|
11225
|
-
|
|
11532
|
+
/** The `ManagedDomain` that was created by this mutation. */
|
|
11533
|
+
managedDomain?: ManagedDomain | null;
|
|
11534
|
+
managedDomainEdge?: ManagedDomainEdge | null;
|
|
11226
11535
|
}
|
|
11227
|
-
export type
|
|
11536
|
+
export type CreateManagedDomainPayloadSelect = {
|
|
11228
11537
|
clientMutationId?: boolean;
|
|
11229
|
-
|
|
11230
|
-
select:
|
|
11538
|
+
managedDomain?: {
|
|
11539
|
+
select: ManagedDomainSelect;
|
|
11540
|
+
};
|
|
11541
|
+
managedDomainEdge?: {
|
|
11542
|
+
select: ManagedDomainEdgeSelect;
|
|
11543
|
+
};
|
|
11544
|
+
};
|
|
11545
|
+
export interface UpdateManagedDomainPayload {
|
|
11546
|
+
clientMutationId?: string | null;
|
|
11547
|
+
/** The `ManagedDomain` that was updated by this mutation. */
|
|
11548
|
+
managedDomain?: ManagedDomain | null;
|
|
11549
|
+
managedDomainEdge?: ManagedDomainEdge | null;
|
|
11550
|
+
}
|
|
11551
|
+
export type UpdateManagedDomainPayloadSelect = {
|
|
11552
|
+
clientMutationId?: boolean;
|
|
11553
|
+
managedDomain?: {
|
|
11554
|
+
select: ManagedDomainSelect;
|
|
11555
|
+
};
|
|
11556
|
+
managedDomainEdge?: {
|
|
11557
|
+
select: ManagedDomainEdgeSelect;
|
|
11558
|
+
};
|
|
11559
|
+
};
|
|
11560
|
+
export interface DeleteManagedDomainPayload {
|
|
11561
|
+
clientMutationId?: string | null;
|
|
11562
|
+
/** The `ManagedDomain` that was deleted by this mutation. */
|
|
11563
|
+
managedDomain?: ManagedDomain | null;
|
|
11564
|
+
managedDomainEdge?: ManagedDomainEdge | null;
|
|
11565
|
+
}
|
|
11566
|
+
export type DeleteManagedDomainPayloadSelect = {
|
|
11567
|
+
clientMutationId?: boolean;
|
|
11568
|
+
managedDomain?: {
|
|
11569
|
+
select: ManagedDomainSelect;
|
|
11570
|
+
};
|
|
11571
|
+
managedDomainEdge?: {
|
|
11572
|
+
select: ManagedDomainEdgeSelect;
|
|
11231
11573
|
};
|
|
11232
11574
|
};
|
|
11233
11575
|
export interface CreateNodeTypeRegistryPayload {
|
|
@@ -11815,17 +12157,6 @@ export type DeleteSpatialRelationPayloadSelect = {
|
|
|
11815
12157
|
select: SpatialRelationEdgeSelect;
|
|
11816
12158
|
};
|
|
11817
12159
|
};
|
|
11818
|
-
export interface CreateSqlActionPayload {
|
|
11819
|
-
clientMutationId?: string | null;
|
|
11820
|
-
/** The `SqlAction` that was created by this mutation. */
|
|
11821
|
-
sqlAction?: SqlAction | null;
|
|
11822
|
-
}
|
|
11823
|
-
export type CreateSqlActionPayloadSelect = {
|
|
11824
|
-
clientMutationId?: boolean;
|
|
11825
|
-
sqlAction?: {
|
|
11826
|
-
select: SqlActionSelect;
|
|
11827
|
-
};
|
|
11828
|
-
};
|
|
11829
12160
|
export interface CreateTablePayload {
|
|
11830
12161
|
clientMutationId?: string | null;
|
|
11831
12162
|
/** The `Table` that was created by this mutation. */
|
|
@@ -12558,6 +12889,18 @@ export type FunctionEdgeSelect = {
|
|
|
12558
12889
|
select: FunctionSelect;
|
|
12559
12890
|
};
|
|
12560
12891
|
};
|
|
12892
|
+
/** A `HttpRoute` edge in the connection. */
|
|
12893
|
+
export interface HttpRouteEdge {
|
|
12894
|
+
cursor?: string | null;
|
|
12895
|
+
/** The `HttpRoute` at the end of the edge. */
|
|
12896
|
+
node?: HttpRoute | null;
|
|
12897
|
+
}
|
|
12898
|
+
export type HttpRouteEdgeSelect = {
|
|
12899
|
+
cursor?: boolean;
|
|
12900
|
+
node?: {
|
|
12901
|
+
select: HttpRouteSelect;
|
|
12902
|
+
};
|
|
12903
|
+
};
|
|
12561
12904
|
/** A `Index` edge in the connection. */
|
|
12562
12905
|
export interface IndexEdge {
|
|
12563
12906
|
cursor?: string | null;
|
|
@@ -12570,6 +12913,18 @@ export type IndexEdgeSelect = {
|
|
|
12570
12913
|
select: IndexSelect;
|
|
12571
12914
|
};
|
|
12572
12915
|
};
|
|
12916
|
+
/** A `ManagedDomain` edge in the connection. */
|
|
12917
|
+
export interface ManagedDomainEdge {
|
|
12918
|
+
cursor?: string | null;
|
|
12919
|
+
/** The `ManagedDomain` at the end of the edge. */
|
|
12920
|
+
node?: ManagedDomain | null;
|
|
12921
|
+
}
|
|
12922
|
+
export type ManagedDomainEdgeSelect = {
|
|
12923
|
+
cursor?: boolean;
|
|
12924
|
+
node?: {
|
|
12925
|
+
select: ManagedDomainSelect;
|
|
12926
|
+
};
|
|
12927
|
+
};
|
|
12573
12928
|
/** A `NodeTypeRegistry` edge in the connection. */
|
|
12574
12929
|
export interface NodeTypeRegistryEdge {
|
|
12575
12930
|
cursor?: string | null;
|