@constructive-io/react 0.30.2 → 0.30.4
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 +5 -5
- 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
|
@@ -3,15 +3,17 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { DbPreset, FunctionApiBinding, FunctionDefinition, FunctionDeployment, FunctionDeploymentEvent, FunctionExecutionLog, FunctionGraph, FunctionGraphCommit, FunctionGraphExecution, FunctionGraphExecutionNodeState, FunctionGraphExecutionOutput, FunctionGraphObject, FunctionGraphRef, FunctionGraphStore, FunctionInvocation,
|
|
6
|
+
import type { DbPreset, DeclaredCapacity, FunctionApiBinding, FunctionDefinition, FunctionDeployment, FunctionDeploymentEvent, FunctionExecutionLog, FunctionGraph, FunctionGraphCommit, FunctionGraphExecution, FunctionGraphExecutionNodeState, FunctionGraphExecutionOutput, FunctionGraphObject, FunctionGraphRef, FunctionGraphStore, FunctionInvocation, GetAllTreeNodesRecord, InfraCommit, InfraGetAllTreeNodesRecord, InfraObject, InfraRef, InfraStore, IntegrationProvider, Namespace, NamespaceEvent, PlatformDeclaredCapacity, PlatformFunctionApiBinding, PlatformFunctionDefinition, PlatformFunctionDeployment, PlatformFunctionDeploymentEvent, PlatformFunctionExecutionLog, PlatformFunctionInvocation, PlatformInfraCommit, PlatformInfraGetAllTreeNodesRecord, PlatformInfraObject, PlatformInfraRef, PlatformInfraStore, PlatformNamespace, PlatformNamespaceEvent, PlatformResource, PlatformResourceDefinition, PlatformResourceEvent, PlatformResourceInstallation, PlatformResourceStatusCheck, PlatformResourceUsageLog, PlatformResourceUsageSummary, PlatformResourceUtilizationDaily, PlatformResourcesHealth, PlatformResourcesRequirementsState, PlatformResourcesResolvedRequirement, PlatformWebhookEndpoint, PlatformWebhookEvent, Resource, ResourceDefinition, ResourceEvent, ResourceInstallation, ResourceStatusCheck, ResourceUsageLog, ResourceUsageSummary, ResourceUtilizationDaily, ResourcesHealth, ResourcesRequirementsState, ResourcesResolvedRequirement, WebhookEndpoint, WebhookEvent, BigFloatFilter, BigIntFilter, BooleanFilter, DateFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
export type Base64EncodedBinary = unknown;
|
|
8
8
|
export type ConstructiveInternalTypeImage = unknown;
|
|
9
9
|
/** Methods to use when ordering `DbPreset`. */
|
|
10
10
|
export type DbPresetOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'MODULES_HASH_ASC' | 'MODULES_HASH_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
11
|
+
/** Methods to use when ordering `DeclaredCapacity`. */
|
|
12
|
+
export type DeclaredCapacityOrderBy = 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'IS_TRANSIENT_ASC' | 'IS_TRANSIENT_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'POD_COUNT_MAX_ASC' | 'POD_COUNT_MAX_DESC' | 'POD_COUNT_MIN_ASC' | 'POD_COUNT_MIN_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'SOURCE_ID_ASC' | 'SOURCE_ID_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC';
|
|
11
13
|
/** Methods to use when ordering `FunctionApiBinding`. */
|
|
12
14
|
export type FunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
13
15
|
/** Methods to use when ordering `FunctionDefinition`. */
|
|
14
|
-
export type FunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
16
|
+
export type FunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
15
17
|
/** Methods to use when ordering `FunctionDeploymentEvent`. */
|
|
16
18
|
export type FunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
17
19
|
/** Methods to use when ordering `FunctionDeployment`. */
|
|
@@ -21,9 +23,9 @@ export type FunctionExecutionLogOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CR
|
|
|
21
23
|
/** Methods to use when ordering `FunctionGraphCommit`. */
|
|
22
24
|
export type FunctionGraphCommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
23
25
|
/** Methods to use when ordering `FunctionGraphExecutionNodeState`. */
|
|
24
|
-
export type FunctionGraphExecutionNodeStateOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ERROR_CODE_ASC' | 'ERROR_CODE_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC' | 'EXECUTION_ID_ASC' | 'EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'NODE_NAME_ASC' | 'NODE_NAME_DESC' | 'NODE_PATH_ASC' | 'NODE_PATH_DESC' | 'OUTPUT_ID_ASC' | 'OUTPUT_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
|
|
26
|
+
export type FunctionGraphExecutionNodeStateOrderBy = 'CALLBACK_INPUTS_ASC' | 'CALLBACK_INPUTS_DESC' | 'CALLBACK_META_ASC' | 'CALLBACK_META_DESC' | 'CALLBACK_TOKEN_HASH_ASC' | 'CALLBACK_TOKEN_HASH_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ERROR_CODE_ASC' | 'ERROR_CODE_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC' | 'EXECUTION_ID_ASC' | 'EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'NODE_NAME_ASC' | 'NODE_NAME_DESC' | 'NODE_PATH_ASC' | 'NODE_PATH_DESC' | 'OUTPUT_ID_ASC' | 'OUTPUT_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
|
|
25
27
|
/** Methods to use when ordering `FunctionGraphExecution`. */
|
|
26
|
-
export type FunctionGraphExecutionOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CURRENT_WAVE_ASC' | 'CURRENT_WAVE_DESC' | 'DEFINITIONS_COMMIT_ID_ASC' | 'DEFINITIONS_COMMIT_ID_DESC' | 'ERROR_CODE_ASC' | 'ERROR_CODE_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC' | 'EXECUTION_PLAN_ASC' | 'EXECUTION_PLAN_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INPUT_PAYLOAD_ASC' | 'INPUT_PAYLOAD_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'LAST_PROGRESS_AT_ASC' | 'LAST_PROGRESS_AT_DESC' | 'MAX_PENDING_JOBS_ASC' | 'MAX_PENDING_JOBS_DESC' | 'MAX_TICKS_ASC' | 'MAX_TICKS_DESC' | 'NATURAL' | 'NODE_OUTPUTS_ASC' | 'NODE_OUTPUTS_DESC' | 'OUTPUT_NODE_ASC' | 'OUTPUT_NODE_DESC' | 'OUTPUT_PAYLOAD_ASC' | 'OUTPUT_PAYLOAD_DESC' | 'OUTPUT_PORT_ASC' | 'OUTPUT_PORT_DESC' | 'PARENT_EXECUTION_ID_ASC' | 'PARENT_EXECUTION_ID_DESC' | 'PARENT_NODE_NAME_ASC' | 'PARENT_NODE_NAME_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TICK_COUNT_ASC' | 'TICK_COUNT_DESC' | 'TIMEOUT_AT_ASC' | 'TIMEOUT_AT_DESC';
|
|
28
|
+
export type FunctionGraphExecutionOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CURRENT_WAVE_ASC' | 'CURRENT_WAVE_DESC' | 'DEFINITIONS_COMMIT_ID_ASC' | 'DEFINITIONS_COMMIT_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ENTITY_TYPE_ASC' | 'ENTITY_TYPE_DESC' | 'ERROR_CODE_ASC' | 'ERROR_CODE_DESC' | 'ERROR_MESSAGE_ASC' | 'ERROR_MESSAGE_DESC' | 'EXECUTION_PLAN_ASC' | 'EXECUTION_PLAN_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INPUT_PAYLOAD_ASC' | 'INPUT_PAYLOAD_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'LAST_PROGRESS_AT_ASC' | 'LAST_PROGRESS_AT_DESC' | 'MAX_PENDING_JOBS_ASC' | 'MAX_PENDING_JOBS_DESC' | 'MAX_TICKS_ASC' | 'MAX_TICKS_DESC' | 'NATURAL' | 'NODE_OUTPUTS_ASC' | 'NODE_OUTPUTS_DESC' | 'ORGANIZATION_ID_ASC' | 'ORGANIZATION_ID_DESC' | 'OUTPUT_NAMES_ASC' | 'OUTPUT_NAMES_DESC' | 'OUTPUT_NODE_ASC' | 'OUTPUT_NODE_DESC' | 'OUTPUT_PAYLOAD_ASC' | 'OUTPUT_PAYLOAD_DESC' | 'OUTPUT_PORT_ASC' | 'OUTPUT_PORT_DESC' | 'PARENT_EXECUTION_ID_ASC' | 'PARENT_EXECUTION_ID_DESC' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'PARENT_NODE_NAME_ASC' | 'PARENT_NODE_NAME_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRINCIPAL_ID_ASC' | 'PRINCIPAL_ID_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TICK_COUNT_ASC' | 'TICK_COUNT_DESC' | 'TIMEOUT_AT_ASC' | 'TIMEOUT_AT_DESC';
|
|
27
29
|
/** Methods to use when ordering `FunctionGraphExecutionOutput`. */
|
|
28
30
|
export type FunctionGraphExecutionOutputOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC';
|
|
29
31
|
/** Methods to use when ordering `FunctionGraphObject`. */
|
|
@@ -35,25 +37,27 @@ export type FunctionGraphRefOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'ID_A
|
|
|
35
37
|
/** Methods to use when ordering `FunctionGraphStore`. */
|
|
36
38
|
export type FunctionGraphStoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC';
|
|
37
39
|
/** Methods to use when ordering `FunctionInvocation`. */
|
|
38
|
-
export type FunctionInvocationOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'API_BINDING_ID_ASC' | 'API_BINDING_ID_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'NATURAL' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
40
|
+
export type FunctionInvocationOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'API_BINDING_ID_ASC' | 'API_BINDING_ID_DESC' | 'CHANNEL_ASC' | 'CHANNEL_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFINITION_SCOPE_ASC' | 'DEFINITION_SCOPE_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'NATURAL' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVENANCE_ASC' | 'PROVENANCE_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
39
41
|
/** Methods to use when ordering `InfraCommit`. */
|
|
40
|
-
export type InfraCommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '
|
|
42
|
+
export type InfraCommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
41
43
|
/** Methods to use when ordering `InfraObject`. */
|
|
42
|
-
export type InfraObjectOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
|
|
44
|
+
export type InfraObjectOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
43
45
|
/** Methods to use when ordering `InfraRef`. */
|
|
44
|
-
export type InfraRefOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | '
|
|
46
|
+
export type InfraRefOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC';
|
|
45
47
|
/** Methods to use when ordering `InfraStore`. */
|
|
46
|
-
export type InfraStoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | '
|
|
48
|
+
export type InfraStoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
47
49
|
/** Methods to use when ordering `IntegrationProvider`. */
|
|
48
50
|
export type IntegrationProviderOrderBy = 'BRAND_ASC' | 'BRAND_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'LOGO_ASC' | 'LOGO_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
49
51
|
/** Methods to use when ordering `NamespaceEvent`. */
|
|
50
|
-
export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | '
|
|
52
|
+
export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
51
53
|
/** Methods to use when ordering `Namespace`. */
|
|
52
54
|
export type NamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_MANAGED_ASC' | 'IS_MANAGED_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_NAME_ASC' | 'NAMESPACE_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
55
|
+
/** Methods to use when ordering `PlatformDeclaredCapacity`. */
|
|
56
|
+
export type PlatformDeclaredCapacityOrderBy = 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'IS_TRANSIENT_ASC' | 'IS_TRANSIENT_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'POD_COUNT_MAX_ASC' | 'POD_COUNT_MAX_DESC' | 'POD_COUNT_MIN_ASC' | 'POD_COUNT_MIN_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'SOURCE_ID_ASC' | 'SOURCE_ID_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC';
|
|
53
57
|
/** Methods to use when ordering `PlatformFunctionApiBinding`. */
|
|
54
58
|
export type PlatformFunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
55
59
|
/** Methods to use when ordering `PlatformFunctionDefinition`. */
|
|
56
|
-
export type PlatformFunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
60
|
+
export type PlatformFunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
57
61
|
/** Methods to use when ordering `PlatformFunctionDeploymentEvent`. */
|
|
58
62
|
export type PlatformFunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
59
63
|
/** Methods to use when ordering `PlatformFunctionDeployment`. */
|
|
@@ -61,35 +65,71 @@ export type PlatformFunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS
|
|
|
61
65
|
/** Methods to use when ordering `PlatformFunctionExecutionLog`. */
|
|
62
66
|
export type PlatformFunctionExecutionLogOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'LOG_LEVEL_ASC' | 'LOG_LEVEL_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
63
67
|
/** Methods to use when ordering `PlatformFunctionInvocation`. */
|
|
64
|
-
export type PlatformFunctionInvocationOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'API_BINDING_ID_ASC' | 'API_BINDING_ID_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'NATURAL' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
68
|
+
export type PlatformFunctionInvocationOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'API_BINDING_ID_ASC' | 'API_BINDING_ID_DESC' | 'CHANNEL_ASC' | 'CHANNEL_DESC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_SCOPE_ASC' | 'DEFINITION_SCOPE_DESC' | 'DURATION_MS_ASC' | 'DURATION_MS_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'GRAPH_EXECUTION_ID_ASC' | 'GRAPH_EXECUTION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'JOB_ID_ASC' | 'JOB_ID_DESC' | 'NATURAL' | 'PARENT_INVOCATION_ID_ASC' | 'PARENT_INVOCATION_ID_DESC' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVENANCE_ASC' | 'PROVENANCE_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STARTED_AT_ASC' | 'STARTED_AT_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC';
|
|
69
|
+
/** Methods to use when ordering `PlatformInfraCommit`. */
|
|
70
|
+
export type PlatformInfraCommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
71
|
+
/** Methods to use when ordering `PlatformInfraObject`. */
|
|
72
|
+
export type PlatformInfraObjectOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC';
|
|
73
|
+
/** Methods to use when ordering `PlatformInfraRef`. */
|
|
74
|
+
export type PlatformInfraRefOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC';
|
|
75
|
+
/** Methods to use when ordering `PlatformInfraStore`. */
|
|
76
|
+
export type PlatformInfraStoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC';
|
|
65
77
|
/** Methods to use when ordering `PlatformNamespaceEvent`. */
|
|
66
|
-
export type PlatformNamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | '
|
|
78
|
+
export type PlatformNamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
67
79
|
/** Methods to use when ordering `PlatformNamespace`. */
|
|
68
80
|
export type PlatformNamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_MANAGED_ASC' | 'IS_MANAGED_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_NAME_ASC' | 'NAMESPACE_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
69
81
|
/** Methods to use when ordering `PlatformResourceDefinition`. */
|
|
70
82
|
export type PlatformResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
71
83
|
/** Methods to use when ordering `PlatformResourceEvent`. */
|
|
72
84
|
export type PlatformResourceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC';
|
|
85
|
+
/** Methods to use when ordering `PlatformResourceInstallation`. */
|
|
86
|
+
export type PlatformResourceInstallationOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_ASC' | 'PARAMS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
73
87
|
/** Methods to use when ordering `PlatformResource`. */
|
|
74
|
-
export type PlatformResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
88
|
+
export type PlatformResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
75
89
|
/** Methods to use when ordering `PlatformResourceStatusCheck`. */
|
|
76
90
|
export type PlatformResourceStatusCheckOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUESTED_AT_ASC' | 'REQUESTED_AT_DESC' | 'REQUESTED_BY_ASC' | 'REQUESTED_BY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
|
|
91
|
+
/** Methods to use when ordering `PlatformResourceUsageLog`. */
|
|
92
|
+
export type PlatformResourceUsageLogOrderBy = 'CPU_MILLICORES_ASC' | 'CPU_MILLICORES_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_SECONDS_ASC' | 'INTERVAL_SECONDS_DESC' | 'MEMORY_BYTES_ASC' | 'MEMORY_BYTES_DESC' | 'METRICS_ASC' | 'METRICS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SAMPLED_AT_ASC' | 'SAMPLED_AT_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC';
|
|
93
|
+
/** Methods to use when ordering `PlatformResourceUsageSummary`. */
|
|
94
|
+
export type PlatformResourceUsageSummaryOrderBy = 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
95
|
+
/** Methods to use when ordering `PlatformResourceUtilizationDaily`. */
|
|
96
|
+
export type PlatformResourceUtilizationDailyOrderBy = 'AVG_MEMORY_BYTES_ASC' | 'AVG_MEMORY_BYTES_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_PEAK_UTILIZATION_ASC' | 'CPU_PEAK_UTILIZATION_DESC' | 'CPU_REQUEST_HEADROOM_MILLICORES_ASC' | 'CPU_REQUEST_HEADROOM_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_PEAK_UTILIZATION_ASC' | 'MEMORY_PEAK_UTILIZATION_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MEMORY_REQUEST_HEADROOM_BYTES_ASC' | 'MEMORY_REQUEST_HEADROOM_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
97
|
+
/** Methods to use when ordering `PlatformResourcesHealth`. */
|
|
98
|
+
export type PlatformResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
77
99
|
/** Methods to use when ordering `PlatformResourcesRequirementsState`. */
|
|
78
100
|
export type PlatformResourcesRequirementsStateOrderBy = 'CONFIG_HASH_ASC' | 'CONFIG_HASH_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NATURAL' | 'REQUIREMENTS_HASH_ASC' | 'REQUIREMENTS_HASH_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_HASH_ASC' | 'SECRETS_HASH_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
79
101
|
/** Methods to use when ordering `PlatformResourcesResolvedRequirement`. */
|
|
80
102
|
export type PlatformResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
103
|
+
/** Methods to use when ordering `PlatformWebhookEndpoint`. */
|
|
104
|
+
export type PlatformWebhookEndpointOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'HOST_ASC' | 'HOST_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REPLAY_WINDOW_SECONDS_ASC' | 'REPLAY_WINDOW_SECONDS_DESC' | 'SIGNING_SECRET_NAME_ASC' | 'SIGNING_SECRET_NAME_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
105
|
+
/** Methods to use when ordering `PlatformWebhookEvent`. */
|
|
106
|
+
export type PlatformWebhookEventOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ENDPOINT_ID_ASC' | 'ENDPOINT_ID_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'EXTERNAL_EVENT_ID_ASC' | 'EXTERNAL_EVENT_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVIDER_TIMESTAMP_ASC' | 'PROVIDER_TIMESTAMP_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
81
107
|
/** Methods to use when ordering `ResourceDefinition`. */
|
|
82
108
|
export type ResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
83
109
|
/** Methods to use when ordering `ResourceEvent`. */
|
|
84
110
|
export type ResourceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC';
|
|
111
|
+
/** Methods to use when ordering `ResourceInstallation`. */
|
|
112
|
+
export type ResourceInstallationOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_ASC' | 'PARAMS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
85
113
|
/** Methods to use when ordering `Resource`. */
|
|
86
|
-
export type ResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
114
|
+
export type ResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
87
115
|
/** Methods to use when ordering `ResourceStatusCheck`. */
|
|
88
116
|
export type ResourceStatusCheckOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUESTED_AT_ASC' | 'REQUESTED_AT_DESC' | 'REQUESTED_BY_ASC' | 'REQUESTED_BY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
|
|
117
|
+
/** Methods to use when ordering `ResourceUsageLog`. */
|
|
118
|
+
export type ResourceUsageLogOrderBy = 'CPU_MILLICORES_ASC' | 'CPU_MILLICORES_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_SECONDS_ASC' | 'INTERVAL_SECONDS_DESC' | 'MEMORY_BYTES_ASC' | 'MEMORY_BYTES_DESC' | 'METRICS_ASC' | 'METRICS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SAMPLED_AT_ASC' | 'SAMPLED_AT_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC';
|
|
119
|
+
/** Methods to use when ordering `ResourceUsageSummary`. */
|
|
120
|
+
export type ResourceUsageSummaryOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
121
|
+
/** Methods to use when ordering `ResourceUtilizationDaily`. */
|
|
122
|
+
export type ResourceUtilizationDailyOrderBy = 'AVG_MEMORY_BYTES_ASC' | 'AVG_MEMORY_BYTES_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_PEAK_UTILIZATION_ASC' | 'CPU_PEAK_UTILIZATION_DESC' | 'CPU_REQUEST_HEADROOM_MILLICORES_ASC' | 'CPU_REQUEST_HEADROOM_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_PEAK_UTILIZATION_ASC' | 'MEMORY_PEAK_UTILIZATION_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MEMORY_REQUEST_HEADROOM_BYTES_ASC' | 'MEMORY_REQUEST_HEADROOM_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
123
|
+
/** Methods to use when ordering `ResourcesHealth`. */
|
|
124
|
+
export type ResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
89
125
|
/** Methods to use when ordering `ResourcesRequirementsState`. */
|
|
90
126
|
export type ResourcesRequirementsStateOrderBy = 'CONFIG_HASH_ASC' | 'CONFIG_HASH_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NATURAL' | 'REQUIREMENTS_HASH_ASC' | 'REQUIREMENTS_HASH_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_HASH_ASC' | 'SECRETS_HASH_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
91
127
|
/** Methods to use when ordering `ResourcesResolvedRequirement`. */
|
|
92
128
|
export type ResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
129
|
+
/** Methods to use when ordering `WebhookEndpoint`. */
|
|
130
|
+
export type WebhookEndpointOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'HOST_ASC' | 'HOST_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REPLAY_WINDOW_SECONDS_ASC' | 'REPLAY_WINDOW_SECONDS_DESC' | 'SIGNING_SECRET_NAME_ASC' | 'SIGNING_SECRET_NAME_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
131
|
+
/** Methods to use when ordering `WebhookEvent`. */
|
|
132
|
+
export type WebhookEventOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENDPOINT_ID_ASC' | 'ENDPOINT_ID_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'EXTERNAL_EVENT_ID_ASC' | 'EXTERNAL_EVENT_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVIDER_TIMESTAMP_ASC' | 'PROVIDER_TIMESTAMP_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
93
133
|
export interface AddEdgeAndSaveInput {
|
|
94
134
|
clientMutationId?: string;
|
|
95
135
|
dstNode?: string;
|
|
@@ -332,6 +372,26 @@ export interface CreatePlatformFunctionInvocationInput {
|
|
|
332
372
|
/** The `PlatformFunctionInvocation` to be created by this mutation. */
|
|
333
373
|
platformFunctionInvocation: PlatformFunctionInvocationInput;
|
|
334
374
|
}
|
|
375
|
+
export interface CreatePlatformInfraCommitInput {
|
|
376
|
+
clientMutationId?: string;
|
|
377
|
+
/** The `PlatformInfraCommit` to be created by this mutation. */
|
|
378
|
+
platformInfraCommit: PlatformInfraCommitInput;
|
|
379
|
+
}
|
|
380
|
+
export interface CreatePlatformInfraObjectInput {
|
|
381
|
+
clientMutationId?: string;
|
|
382
|
+
/** The `PlatformInfraObject` to be created by this mutation. */
|
|
383
|
+
platformInfraObject: PlatformInfraObjectInput;
|
|
384
|
+
}
|
|
385
|
+
export interface CreatePlatformInfraRefInput {
|
|
386
|
+
clientMutationId?: string;
|
|
387
|
+
/** The `PlatformInfraRef` to be created by this mutation. */
|
|
388
|
+
platformInfraRef: PlatformInfraRefInput;
|
|
389
|
+
}
|
|
390
|
+
export interface CreatePlatformInfraStoreInput {
|
|
391
|
+
clientMutationId?: string;
|
|
392
|
+
/** The `PlatformInfraStore` to be created by this mutation. */
|
|
393
|
+
platformInfraStore: PlatformInfraStoreInput;
|
|
394
|
+
}
|
|
335
395
|
export interface CreatePlatformNamespaceEventInput {
|
|
336
396
|
clientMutationId?: string;
|
|
337
397
|
/** The `PlatformNamespaceEvent` to be created by this mutation. */
|
|
@@ -357,11 +417,36 @@ export interface CreatePlatformResourceInput {
|
|
|
357
417
|
/** The `PlatformResource` to be created by this mutation. */
|
|
358
418
|
platformResource: PlatformResourceInput;
|
|
359
419
|
}
|
|
420
|
+
export interface CreatePlatformResourceInstallationInput {
|
|
421
|
+
clientMutationId?: string;
|
|
422
|
+
/** The `PlatformResourceInstallation` to be created by this mutation. */
|
|
423
|
+
platformResourceInstallation: PlatformResourceInstallationInput;
|
|
424
|
+
}
|
|
360
425
|
export interface CreatePlatformResourceStatusCheckInput {
|
|
361
426
|
clientMutationId?: string;
|
|
362
427
|
/** The `PlatformResourceStatusCheck` to be created by this mutation. */
|
|
363
428
|
platformResourceStatusCheck: PlatformResourceStatusCheckInput;
|
|
364
429
|
}
|
|
430
|
+
export interface CreatePlatformResourceUsageLogInput {
|
|
431
|
+
clientMutationId?: string;
|
|
432
|
+
/** The `PlatformResourceUsageLog` to be created by this mutation. */
|
|
433
|
+
platformResourceUsageLog: PlatformResourceUsageLogInput;
|
|
434
|
+
}
|
|
435
|
+
export interface CreatePlatformResourceUsageSummaryInput {
|
|
436
|
+
clientMutationId?: string;
|
|
437
|
+
/** The `PlatformResourceUsageSummary` to be created by this mutation. */
|
|
438
|
+
platformResourceUsageSummary: PlatformResourceUsageSummaryInput;
|
|
439
|
+
}
|
|
440
|
+
export interface CreatePlatformWebhookEndpointInput {
|
|
441
|
+
clientMutationId?: string;
|
|
442
|
+
/** The `PlatformWebhookEndpoint` to be created by this mutation. */
|
|
443
|
+
platformWebhookEndpoint: PlatformWebhookEndpointInput;
|
|
444
|
+
}
|
|
445
|
+
export interface CreatePlatformWebhookEventInput {
|
|
446
|
+
clientMutationId?: string;
|
|
447
|
+
/** The `PlatformWebhookEvent` to be created by this mutation. */
|
|
448
|
+
platformWebhookEvent: PlatformWebhookEventInput;
|
|
449
|
+
}
|
|
365
450
|
export interface CreateResourceDefinitionInput {
|
|
366
451
|
clientMutationId?: string;
|
|
367
452
|
/** The `ResourceDefinition` to be created by this mutation. */
|
|
@@ -377,11 +462,36 @@ export interface CreateResourceInput {
|
|
|
377
462
|
/** The `Resource` to be created by this mutation. */
|
|
378
463
|
resource: ResourceInput;
|
|
379
464
|
}
|
|
465
|
+
export interface CreateResourceInstallationInput {
|
|
466
|
+
clientMutationId?: string;
|
|
467
|
+
/** The `ResourceInstallation` to be created by this mutation. */
|
|
468
|
+
resourceInstallation: ResourceInstallationInput;
|
|
469
|
+
}
|
|
380
470
|
export interface CreateResourceStatusCheckInput {
|
|
381
471
|
clientMutationId?: string;
|
|
382
472
|
/** The `ResourceStatusCheck` to be created by this mutation. */
|
|
383
473
|
resourceStatusCheck: ResourceStatusCheckInput;
|
|
384
474
|
}
|
|
475
|
+
export interface CreateResourceUsageLogInput {
|
|
476
|
+
clientMutationId?: string;
|
|
477
|
+
/** The `ResourceUsageLog` to be created by this mutation. */
|
|
478
|
+
resourceUsageLog: ResourceUsageLogInput;
|
|
479
|
+
}
|
|
480
|
+
export interface CreateResourceUsageSummaryInput {
|
|
481
|
+
clientMutationId?: string;
|
|
482
|
+
/** The `ResourceUsageSummary` to be created by this mutation. */
|
|
483
|
+
resourceUsageSummary: ResourceUsageSummaryInput;
|
|
484
|
+
}
|
|
485
|
+
export interface CreateWebhookEndpointInput {
|
|
486
|
+
clientMutationId?: string;
|
|
487
|
+
/** The `WebhookEndpoint` to be created by this mutation. */
|
|
488
|
+
webhookEndpoint: WebhookEndpointInput;
|
|
489
|
+
}
|
|
490
|
+
export interface CreateWebhookEventInput {
|
|
491
|
+
clientMutationId?: string;
|
|
492
|
+
/** The `WebhookEvent` to be created by this mutation. */
|
|
493
|
+
webhookEvent: WebhookEventInput;
|
|
494
|
+
}
|
|
385
495
|
/** A filter to be used against `DbPreset` object types. All fields are combined with a logical ‘and.’ */
|
|
386
496
|
export interface DbPresetFilter {
|
|
387
497
|
/** Filter by the object’s `active` field. */
|
|
@@ -463,6 +573,41 @@ export interface DbPresetPatch {
|
|
|
463
573
|
/** Timestamp of last modification */
|
|
464
574
|
updatedAt?: string;
|
|
465
575
|
}
|
|
576
|
+
/** A filter to be used against `DeclaredCapacity` object types. All fields are combined with a logical ‘and.’ */
|
|
577
|
+
export interface DeclaredCapacityFilter {
|
|
578
|
+
/** Checks for all expressions in this list. */
|
|
579
|
+
and?: DeclaredCapacityFilter[];
|
|
580
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
581
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
582
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
583
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
584
|
+
/** Filter by the object’s `installationId` field. */
|
|
585
|
+
installationId?: UUIDFilter;
|
|
586
|
+
/** Filter by the object’s `isTransient` field. */
|
|
587
|
+
isTransient?: BooleanFilter;
|
|
588
|
+
/** Filter by the object’s `kind` field. */
|
|
589
|
+
kind?: StringFilter;
|
|
590
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
591
|
+
memoryLimitBytes?: BigIntFilter;
|
|
592
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
593
|
+
memoryRequestBytes?: BigIntFilter;
|
|
594
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
595
|
+
namespaceId?: UUIDFilter;
|
|
596
|
+
/** Negates the expression. */
|
|
597
|
+
not?: DeclaredCapacityFilter;
|
|
598
|
+
/** Checks for any expressions in this list. */
|
|
599
|
+
or?: DeclaredCapacityFilter[];
|
|
600
|
+
/** Filter by the object’s `podCountMax` field. */
|
|
601
|
+
podCountMax?: IntFilter;
|
|
602
|
+
/** Filter by the object’s `podCountMin` field. */
|
|
603
|
+
podCountMin?: IntFilter;
|
|
604
|
+
/** Filter by the object’s `source` field. */
|
|
605
|
+
source?: StringFilter;
|
|
606
|
+
/** Filter by the object’s `sourceId` field. */
|
|
607
|
+
sourceId?: UUIDFilter;
|
|
608
|
+
/** Filter by the object’s `storageSizeBytes` field. */
|
|
609
|
+
storageSizeBytes?: BigIntFilter;
|
|
610
|
+
}
|
|
466
611
|
export interface DeleteDbPresetInput {
|
|
467
612
|
clientMutationId?: string;
|
|
468
613
|
/** Unique preset identifier */
|
|
@@ -555,24 +700,24 @@ export interface DeleteFunctionInvocationInput {
|
|
|
555
700
|
}
|
|
556
701
|
export interface DeleteInfraCommitInput {
|
|
557
702
|
clientMutationId?: string;
|
|
703
|
+
/** Database scope for multi-tenant isolation */
|
|
704
|
+
databaseId: string;
|
|
558
705
|
/** Unique commit identifier */
|
|
559
706
|
id: string;
|
|
560
|
-
/** Opaque store partition key for the global tier */
|
|
561
|
-
scopeId: string;
|
|
562
707
|
}
|
|
563
708
|
export interface DeleteInfraObjectInput {
|
|
564
709
|
clientMutationId?: string;
|
|
710
|
+
/** Database scope for multi-tenant isolation */
|
|
711
|
+
databaseId: string;
|
|
565
712
|
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
566
713
|
id: string;
|
|
567
|
-
/** Opaque store partition key for the global tier */
|
|
568
|
-
scopeId: string;
|
|
569
714
|
}
|
|
570
715
|
export interface DeleteInfraRefInput {
|
|
571
716
|
clientMutationId?: string;
|
|
717
|
+
/** Database scope for multi-tenant isolation */
|
|
718
|
+
databaseId: string;
|
|
572
719
|
/** Unique ref identifier */
|
|
573
720
|
id: string;
|
|
574
|
-
/** Opaque store partition key for the global tier */
|
|
575
|
-
scopeId: string;
|
|
576
721
|
}
|
|
577
722
|
export interface DeleteInfraStoreInput {
|
|
578
723
|
clientMutationId?: string;
|
|
@@ -627,6 +772,32 @@ export interface DeletePlatformFunctionInvocationInput {
|
|
|
627
772
|
/** Unique invocation identifier */
|
|
628
773
|
id: string;
|
|
629
774
|
}
|
|
775
|
+
export interface DeletePlatformInfraCommitInput {
|
|
776
|
+
clientMutationId?: string;
|
|
777
|
+
/** Unique commit identifier */
|
|
778
|
+
id: string;
|
|
779
|
+
/** Opaque store partition key for the global tier */
|
|
780
|
+
scopeId: string;
|
|
781
|
+
}
|
|
782
|
+
export interface DeletePlatformInfraObjectInput {
|
|
783
|
+
clientMutationId?: string;
|
|
784
|
+
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
785
|
+
id: string;
|
|
786
|
+
/** Opaque store partition key for the global tier */
|
|
787
|
+
scopeId: string;
|
|
788
|
+
}
|
|
789
|
+
export interface DeletePlatformInfraRefInput {
|
|
790
|
+
clientMutationId?: string;
|
|
791
|
+
/** Unique ref identifier */
|
|
792
|
+
id: string;
|
|
793
|
+
/** Opaque store partition key for the global tier */
|
|
794
|
+
scopeId: string;
|
|
795
|
+
}
|
|
796
|
+
export interface DeletePlatformInfraStoreInput {
|
|
797
|
+
clientMutationId?: string;
|
|
798
|
+
/** Unique store identifier */
|
|
799
|
+
id: string;
|
|
800
|
+
}
|
|
630
801
|
export interface DeletePlatformNamespaceEventInput {
|
|
631
802
|
clientMutationId?: string;
|
|
632
803
|
/** Event timestamp (partition key) */
|
|
@@ -653,11 +824,37 @@ export interface DeletePlatformResourceInput {
|
|
|
653
824
|
clientMutationId?: string;
|
|
654
825
|
id: string;
|
|
655
826
|
}
|
|
827
|
+
export interface DeletePlatformResourceInstallationInput {
|
|
828
|
+
clientMutationId?: string;
|
|
829
|
+
id: string;
|
|
830
|
+
}
|
|
656
831
|
export interface DeletePlatformResourceStatusCheckInput {
|
|
657
832
|
clientMutationId?: string;
|
|
658
833
|
/** Unique status check identifier */
|
|
659
834
|
id: string;
|
|
660
835
|
}
|
|
836
|
+
export interface DeletePlatformResourceUsageLogInput {
|
|
837
|
+
clientMutationId?: string;
|
|
838
|
+
/** Unique sample identifier */
|
|
839
|
+
id: string;
|
|
840
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
841
|
+
sampledAt: string;
|
|
842
|
+
}
|
|
843
|
+
export interface DeletePlatformResourceUsageSummaryInput {
|
|
844
|
+
clientMutationId?: string;
|
|
845
|
+
/** Day this summary covers (partition key) */
|
|
846
|
+
date: string;
|
|
847
|
+
/** Unique usage summary identifier */
|
|
848
|
+
id: string;
|
|
849
|
+
}
|
|
850
|
+
export interface DeletePlatformWebhookEndpointInput {
|
|
851
|
+
clientMutationId?: string;
|
|
852
|
+
id: string;
|
|
853
|
+
}
|
|
854
|
+
export interface DeletePlatformWebhookEventInput {
|
|
855
|
+
clientMutationId?: string;
|
|
856
|
+
id: string;
|
|
857
|
+
}
|
|
661
858
|
export interface DeleteResourceDefinitionInput {
|
|
662
859
|
clientMutationId?: string;
|
|
663
860
|
id: string;
|
|
@@ -673,11 +870,37 @@ export interface DeleteResourceInput {
|
|
|
673
870
|
clientMutationId?: string;
|
|
674
871
|
id: string;
|
|
675
872
|
}
|
|
873
|
+
export interface DeleteResourceInstallationInput {
|
|
874
|
+
clientMutationId?: string;
|
|
875
|
+
id: string;
|
|
876
|
+
}
|
|
676
877
|
export interface DeleteResourceStatusCheckInput {
|
|
677
878
|
clientMutationId?: string;
|
|
678
879
|
/** Unique status check identifier */
|
|
679
880
|
id: string;
|
|
680
881
|
}
|
|
882
|
+
export interface DeleteResourceUsageLogInput {
|
|
883
|
+
clientMutationId?: string;
|
|
884
|
+
/** Unique sample identifier */
|
|
885
|
+
id: string;
|
|
886
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
887
|
+
sampledAt: string;
|
|
888
|
+
}
|
|
889
|
+
export interface DeleteResourceUsageSummaryInput {
|
|
890
|
+
clientMutationId?: string;
|
|
891
|
+
/** Day this summary covers (partition key) */
|
|
892
|
+
date: string;
|
|
893
|
+
/** Unique usage summary identifier */
|
|
894
|
+
id: string;
|
|
895
|
+
}
|
|
896
|
+
export interface DeleteWebhookEndpointInput {
|
|
897
|
+
clientMutationId?: string;
|
|
898
|
+
id: string;
|
|
899
|
+
}
|
|
900
|
+
export interface DeleteWebhookEventInput {
|
|
901
|
+
clientMutationId?: string;
|
|
902
|
+
id: string;
|
|
903
|
+
}
|
|
681
904
|
/** A filter to be used against `FunctionApiBinding` object types. All fields are combined with a logical ‘and.’ */
|
|
682
905
|
export interface FunctionApiBindingFilter {
|
|
683
906
|
/** Filter by the object’s `alias` field. */
|
|
@@ -692,6 +915,10 @@ export interface FunctionApiBindingFilter {
|
|
|
692
915
|
functionDefinition?: FunctionDefinitionFilter;
|
|
693
916
|
/** Filter by the object’s `functionDefinitionId` field. */
|
|
694
917
|
functionDefinitionId?: UUIDFilter;
|
|
918
|
+
/** Filter by the object’s `functionInvocationsByApiBindingId` relation. */
|
|
919
|
+
functionInvocationsByApiBindingId?: FunctionApiBindingToManyFunctionInvocationFilter;
|
|
920
|
+
/** `functionInvocationsByApiBindingId` exist. */
|
|
921
|
+
functionInvocationsByApiBindingIdExist?: boolean;
|
|
695
922
|
/** Filter by the object’s `id` field. */
|
|
696
923
|
id?: UUIDFilter;
|
|
697
924
|
/** Negates the expression. */
|
|
@@ -723,6 +950,15 @@ export interface FunctionApiBindingPatch {
|
|
|
723
950
|
functionDefinitionId?: string;
|
|
724
951
|
id?: string;
|
|
725
952
|
}
|
|
953
|
+
/** A filter to be used against many `FunctionInvocation` object types. All fields are combined with a logical ‘and.’ */
|
|
954
|
+
export interface FunctionApiBindingToManyFunctionInvocationFilter {
|
|
955
|
+
/** Filters to entities where every related entity matches. */
|
|
956
|
+
every?: FunctionInvocationFilter;
|
|
957
|
+
/** Filters to entities where no related entity matches. */
|
|
958
|
+
none?: FunctionInvocationFilter;
|
|
959
|
+
/** Filters to entities where at least one related entity matches. */
|
|
960
|
+
some?: FunctionInvocationFilter;
|
|
961
|
+
}
|
|
726
962
|
/** A filter to be used against `FunctionDefinition` object types. All fields are combined with a logical ‘and.’ */
|
|
727
963
|
export interface FunctionDefinitionFilter {
|
|
728
964
|
/** Filter by the object’s `accessChannels` field. */
|
|
@@ -733,6 +969,10 @@ export interface FunctionDefinitionFilter {
|
|
|
733
969
|
category?: StringFilter;
|
|
734
970
|
/** Filter by the object’s `concurrency` field. */
|
|
735
971
|
concurrency?: IntFilter;
|
|
972
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
973
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
974
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
975
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
736
976
|
/** Filter by the object’s `createdAt` field. */
|
|
737
977
|
createdAt?: DatetimeFilter;
|
|
738
978
|
/** Filter by the object’s `databaseId` field. */
|
|
@@ -747,10 +987,8 @@ export interface FunctionDefinitionFilter {
|
|
|
747
987
|
functionApiBindingsExist?: boolean;
|
|
748
988
|
/** Filter by the object’s `functionColumns` field. */
|
|
749
989
|
functionColumns?: JSONFilter;
|
|
750
|
-
/** Filter by the object’s `
|
|
751
|
-
|
|
752
|
-
/** `functionInvocations` exist. */
|
|
753
|
-
functionInvocationsExist?: boolean;
|
|
990
|
+
/** Filter by the object’s `graphId` field. */
|
|
991
|
+
graphId?: UUIDFilter;
|
|
754
992
|
/** Filter by the object’s `icon` field. */
|
|
755
993
|
icon?: StringFilter;
|
|
756
994
|
/** Filter by the object’s `id` field. */
|
|
@@ -765,6 +1003,10 @@ export interface FunctionDefinitionFilter {
|
|
|
765
1003
|
isPublished?: BooleanFilter;
|
|
766
1004
|
/** Filter by the object’s `maxAttempts` field. */
|
|
767
1005
|
maxAttempts?: IntFilter;
|
|
1006
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
1007
|
+
memoryLimitBytes?: BigIntFilter;
|
|
1008
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
1009
|
+
memoryRequestBytes?: BigIntFilter;
|
|
768
1010
|
/** Filter by the object’s `moduleTable` field. */
|
|
769
1011
|
moduleTable?: StringFilter;
|
|
770
1012
|
/** Filter by the object’s `name` field. */
|
|
@@ -781,6 +1023,8 @@ export interface FunctionDefinitionFilter {
|
|
|
781
1023
|
priority?: IntFilter;
|
|
782
1024
|
/** Filter by the object’s `props` field. */
|
|
783
1025
|
props?: JSONFilter;
|
|
1026
|
+
/** Filter by the object’s `protected` field. */
|
|
1027
|
+
protected?: BooleanFilter;
|
|
784
1028
|
/** Filter by the object’s `publishedAt` field. */
|
|
785
1029
|
publishedAt?: DatetimeFilter;
|
|
786
1030
|
/** Filter by the object’s `queueName` field. */
|
|
@@ -809,10 +1053,14 @@ export interface FunctionDefinitionFilter {
|
|
|
809
1053
|
updatedAt?: DatetimeFilter;
|
|
810
1054
|
/** Filter by the object’s `volatile` field. */
|
|
811
1055
|
volatile?: BooleanFilter;
|
|
1056
|
+
/** Filter by the object’s `webhookEndpoints` relation. */
|
|
1057
|
+
webhookEndpoints?: FunctionDefinitionToManyWebhookEndpointFilter;
|
|
1058
|
+
/** `webhookEndpoints` exist. */
|
|
1059
|
+
webhookEndpointsExist?: boolean;
|
|
812
1060
|
}
|
|
813
1061
|
/** An input for mutations affecting `FunctionDefinition` */
|
|
814
1062
|
export interface FunctionDefinitionInput {
|
|
815
|
-
/**
|
|
1063
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
816
1064
|
accessChannels?: string[];
|
|
817
1065
|
/** Function task category (e.g. email, embed, chunk, custom) */
|
|
818
1066
|
category: string;
|
|
@@ -827,10 +1075,12 @@ export interface FunctionDefinitionInput {
|
|
|
827
1075
|
fnCategory?: string;
|
|
828
1076
|
/** Ordered array of module_table column names holding the generated function names to invoke when runtime=sql (module mode). NULL for direct mode and other runtimes. */
|
|
829
1077
|
functionColumns?: unknown;
|
|
1078
|
+
/** Existing flow graph invoked when runtime=graph. Required for graph runtime and forbidden for all other runtimes. */
|
|
1079
|
+
graphId?: string;
|
|
830
1080
|
/** Icon identifier for UI palette rendering (e.g. mail, database, code) */
|
|
831
1081
|
icon?: string;
|
|
832
1082
|
id?: string;
|
|
833
|
-
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http. NULL for inline functions. */
|
|
1083
|
+
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http or runtime=resource. NULL for inline functions. */
|
|
834
1084
|
image?: string;
|
|
835
1085
|
/** Data input ports: [{name, type, description?, optional?, multi?, schema?}] */
|
|
836
1086
|
inputs?: unknown;
|
|
@@ -852,6 +1102,8 @@ export interface FunctionDefinitionInput {
|
|
|
852
1102
|
priority?: number;
|
|
853
1103
|
/** Configuration properties: [{name, type, default?, description?, required?, schema?}] */
|
|
854
1104
|
props?: unknown;
|
|
1105
|
+
/** Protected platform definition: narrower scopes cannot register the same task_identifier */
|
|
1106
|
+
protected?: boolean;
|
|
855
1107
|
/** Timestamp when this function was published. NULL means immediately published when is_published is true; future timestamps delay public visibility */
|
|
856
1108
|
publishedAt?: string;
|
|
857
1109
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
@@ -866,7 +1118,7 @@ export interface FunctionDefinitionInput {
|
|
|
866
1118
|
requiredSecrets?: ResourceRequirementInput[];
|
|
867
1119
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
868
1120
|
resources?: unknown;
|
|
869
|
-
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler),
|
|
1121
|
+
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler), sql (generic SQL dispatch via a trusted direct target or module-resolved function names), resource (Kubernetes Job via the resource module with node-gateway callbacks), or graph (existing flow graph referenced by graph_id) */
|
|
870
1122
|
runtime?: string;
|
|
871
1123
|
/** Maximum pod count for Knative autoscaling (maxScale) */
|
|
872
1124
|
scaleMax?: number;
|
|
@@ -886,7 +1138,7 @@ export interface FunctionDefinitionInput {
|
|
|
886
1138
|
}
|
|
887
1139
|
/** Represents an update to a `FunctionDefinition`. Fields that are set will be updated. */
|
|
888
1140
|
export interface FunctionDefinitionPatch {
|
|
889
|
-
/**
|
|
1141
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
890
1142
|
accessChannels?: string[];
|
|
891
1143
|
/** Function task category (e.g. email, embed, chunk, custom) */
|
|
892
1144
|
category?: string;
|
|
@@ -901,10 +1153,12 @@ export interface FunctionDefinitionPatch {
|
|
|
901
1153
|
fnCategory?: string;
|
|
902
1154
|
/** Ordered array of module_table column names holding the generated function names to invoke when runtime=sql (module mode). NULL for direct mode and other runtimes. */
|
|
903
1155
|
functionColumns?: unknown;
|
|
1156
|
+
/** Existing flow graph invoked when runtime=graph. Required for graph runtime and forbidden for all other runtimes. */
|
|
1157
|
+
graphId?: string;
|
|
904
1158
|
/** Icon identifier for UI palette rendering (e.g. mail, database, code) */
|
|
905
1159
|
icon?: string;
|
|
906
1160
|
id?: string;
|
|
907
|
-
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http. NULL for inline functions. */
|
|
1161
|
+
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http or runtime=resource. NULL for inline functions. */
|
|
908
1162
|
image?: string;
|
|
909
1163
|
/** Data input ports: [{name, type, description?, optional?, multi?, schema?}] */
|
|
910
1164
|
inputs?: unknown;
|
|
@@ -926,6 +1180,8 @@ export interface FunctionDefinitionPatch {
|
|
|
926
1180
|
priority?: number;
|
|
927
1181
|
/** Configuration properties: [{name, type, default?, description?, required?, schema?}] */
|
|
928
1182
|
props?: unknown;
|
|
1183
|
+
/** Protected platform definition: narrower scopes cannot register the same task_identifier */
|
|
1184
|
+
protected?: boolean;
|
|
929
1185
|
/** Timestamp when this function was published. NULL means immediately published when is_published is true; future timestamps delay public visibility */
|
|
930
1186
|
publishedAt?: string;
|
|
931
1187
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
@@ -940,7 +1196,7 @@ export interface FunctionDefinitionPatch {
|
|
|
940
1196
|
requiredSecrets?: ResourceRequirementInput[];
|
|
941
1197
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
942
1198
|
resources?: unknown;
|
|
943
|
-
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler),
|
|
1199
|
+
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler), sql (generic SQL dispatch via a trusted direct target or module-resolved function names), resource (Kubernetes Job via the resource module with node-gateway callbacks), or graph (existing flow graph referenced by graph_id) */
|
|
944
1200
|
runtime?: string;
|
|
945
1201
|
/** Maximum pod count for Knative autoscaling (maxScale) */
|
|
946
1202
|
scaleMax?: number;
|
|
@@ -967,14 +1223,14 @@ export interface FunctionDefinitionToManyFunctionApiBindingFilter {
|
|
|
967
1223
|
/** Filters to entities where at least one related entity matches. */
|
|
968
1224
|
some?: FunctionApiBindingFilter;
|
|
969
1225
|
}
|
|
970
|
-
/** A filter to be used against many `
|
|
971
|
-
export interface
|
|
1226
|
+
/** A filter to be used against many `WebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
1227
|
+
export interface FunctionDefinitionToManyWebhookEndpointFilter {
|
|
972
1228
|
/** Filters to entities where every related entity matches. */
|
|
973
|
-
every?:
|
|
1229
|
+
every?: WebhookEndpointFilter;
|
|
974
1230
|
/** Filters to entities where no related entity matches. */
|
|
975
|
-
none?:
|
|
1231
|
+
none?: WebhookEndpointFilter;
|
|
976
1232
|
/** Filters to entities where at least one related entity matches. */
|
|
977
|
-
some?:
|
|
1233
|
+
some?: WebhookEndpointFilter;
|
|
978
1234
|
}
|
|
979
1235
|
/** A filter to be used against `FunctionDeploymentEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
980
1236
|
export interface FunctionDeploymentEventFilter {
|
|
@@ -1322,6 +1578,8 @@ export interface FunctionGraphCommitPatch {
|
|
|
1322
1578
|
}
|
|
1323
1579
|
/** A filter to be used against `FunctionGraphExecution` object types. All fields are combined with a logical ‘and.’ */
|
|
1324
1580
|
export interface FunctionGraphExecutionFilter {
|
|
1581
|
+
/** Filter by the object’s `actorId` field. */
|
|
1582
|
+
actorId?: UUIDFilter;
|
|
1325
1583
|
/** Checks for all expressions in this list. */
|
|
1326
1584
|
and?: FunctionGraphExecutionFilter[];
|
|
1327
1585
|
/** Filter by the object’s `completedAt` field. */
|
|
@@ -1330,6 +1588,10 @@ export interface FunctionGraphExecutionFilter {
|
|
|
1330
1588
|
currentWave?: IntFilter;
|
|
1331
1589
|
/** Filter by the object’s `definitionsCommitId` field. */
|
|
1332
1590
|
definitionsCommitId?: UUIDFilter;
|
|
1591
|
+
/** Filter by the object’s `entityId` field. */
|
|
1592
|
+
entityId?: UUIDFilter;
|
|
1593
|
+
/** Filter by the object’s `entityType` field. */
|
|
1594
|
+
entityType?: StringFilter;
|
|
1333
1595
|
/** Filter by the object’s `errorCode` field. */
|
|
1334
1596
|
errorCode?: StringFilter;
|
|
1335
1597
|
/** Filter by the object’s `errorMessage` field. */
|
|
@@ -1344,6 +1606,8 @@ export interface FunctionGraphExecutionFilter {
|
|
|
1344
1606
|
id?: UUIDFilter;
|
|
1345
1607
|
/** Filter by the object’s `inputPayload` field. */
|
|
1346
1608
|
inputPayload?: JSONFilter;
|
|
1609
|
+
/** Filter by the object’s `invocationCreatedAt` field. */
|
|
1610
|
+
invocationCreatedAt?: DatetimeFilter;
|
|
1347
1611
|
/** Filter by the object’s `invocationId` field. */
|
|
1348
1612
|
invocationId?: UUIDFilter;
|
|
1349
1613
|
/** Filter by the object’s `lastProgressAt` field. */
|
|
@@ -1358,6 +1622,10 @@ export interface FunctionGraphExecutionFilter {
|
|
|
1358
1622
|
not?: FunctionGraphExecutionFilter;
|
|
1359
1623
|
/** Checks for any expressions in this list. */
|
|
1360
1624
|
or?: FunctionGraphExecutionFilter[];
|
|
1625
|
+
/** Filter by the object’s `organizationId` field. */
|
|
1626
|
+
organizationId?: UUIDFilter;
|
|
1627
|
+
/** Filter by the object’s `outputNames` field. */
|
|
1628
|
+
outputNames?: StringListFilter;
|
|
1361
1629
|
/** Filter by the object’s `outputNode` field. */
|
|
1362
1630
|
outputNode?: StringFilter;
|
|
1363
1631
|
/** Filter by the object’s `outputPayload` field. */
|
|
@@ -1366,8 +1634,12 @@ export interface FunctionGraphExecutionFilter {
|
|
|
1366
1634
|
outputPort?: StringFilter;
|
|
1367
1635
|
/** Filter by the object’s `parentExecutionId` field. */
|
|
1368
1636
|
parentExecutionId?: UUIDFilter;
|
|
1637
|
+
/** Filter by the object’s `parentInvocationId` field. */
|
|
1638
|
+
parentInvocationId?: UUIDFilter;
|
|
1369
1639
|
/** Filter by the object’s `parentNodeName` field. */
|
|
1370
1640
|
parentNodeName?: StringFilter;
|
|
1641
|
+
/** Filter by the object’s `principalId` field. */
|
|
1642
|
+
principalId?: UUIDFilter;
|
|
1371
1643
|
/** Filter by the object’s `scopeId` field. */
|
|
1372
1644
|
scopeId?: UUIDFilter;
|
|
1373
1645
|
/** Filter by the object’s `startedAt` field. */
|
|
@@ -1381,12 +1653,18 @@ export interface FunctionGraphExecutionFilter {
|
|
|
1381
1653
|
}
|
|
1382
1654
|
/** An input for mutations affecting `FunctionGraphExecution` */
|
|
1383
1655
|
export interface FunctionGraphExecutionInput {
|
|
1656
|
+
/** User actor propagated to asynchronous graph jobs */
|
|
1657
|
+
actorId?: string;
|
|
1384
1658
|
/** Execution completion timestamp */
|
|
1385
1659
|
completedAt?: string;
|
|
1386
1660
|
/** Index into execution_plan — tick only processes this wave */
|
|
1387
1661
|
currentWave?: number;
|
|
1388
1662
|
/** Pinned definitions store commit for deterministic evaluation */
|
|
1389
1663
|
definitionsCommitId?: string;
|
|
1664
|
+
/** Entity context propagated to asynchronous graph jobs */
|
|
1665
|
+
entityId?: string;
|
|
1666
|
+
/** Scope discriminator propagated to asynchronous graph jobs */
|
|
1667
|
+
entityType?: string;
|
|
1390
1668
|
/** Machine-readable error code when status = failed */
|
|
1391
1669
|
errorCode?: string;
|
|
1392
1670
|
/** Human-readable error description when status = failed */
|
|
@@ -1399,7 +1677,9 @@ export interface FunctionGraphExecutionInput {
|
|
|
1399
1677
|
id?: string;
|
|
1400
1678
|
/** Initial inputs provided at invocation time */
|
|
1401
1679
|
inputPayload?: unknown;
|
|
1402
|
-
/**
|
|
1680
|
+
/** Partition coordinate for the function invocation that launched this graph execution */
|
|
1681
|
+
invocationCreatedAt?: string;
|
|
1682
|
+
/** Function invocation that launched this top-level graph execution */
|
|
1403
1683
|
invocationId?: string;
|
|
1404
1684
|
/** Timestamp of the last real progress (node enqueue, node output, completion) — drives the activity-debounced watchdog */
|
|
1405
1685
|
lastProgressAt?: string;
|
|
@@ -1409,6 +1689,10 @@ export interface FunctionGraphExecutionInput {
|
|
|
1409
1689
|
maxTicks?: number;
|
|
1410
1690
|
/** Map of node_name → execution output id (content-addressed hash reference) */
|
|
1411
1691
|
nodeOutputs?: unknown;
|
|
1692
|
+
/** Organization context propagated to asynchronous graph jobs */
|
|
1693
|
+
organizationId?: string;
|
|
1694
|
+
/** Selected graphOutput portName values; NULL or empty returns all graph outputs */
|
|
1695
|
+
outputNames?: string[];
|
|
1412
1696
|
/** Target output boundary node name to resolve; NULL derives completion from the graph's graphOutput nodes */
|
|
1413
1697
|
outputNode?: string;
|
|
1414
1698
|
/** Final result extracted from terminal output node */
|
|
@@ -1417,8 +1701,12 @@ export interface FunctionGraphExecutionInput {
|
|
|
1417
1701
|
outputPort?: string;
|
|
1418
1702
|
/** Parent execution when this is a sub-execution */
|
|
1419
1703
|
parentExecutionId?: string;
|
|
1704
|
+
/** Function invocation parent assigned to node invocations spawned by this execution */
|
|
1705
|
+
parentInvocationId?: string;
|
|
1420
1706
|
/** Node name in parent execution that spawned this sub-execution */
|
|
1421
1707
|
parentNodeName?: string;
|
|
1708
|
+
/** Principal identity propagated to asynchronous graph jobs */
|
|
1709
|
+
principalId?: string;
|
|
1422
1710
|
/** Opaque store partition key for the global tier */
|
|
1423
1711
|
scopeId: string;
|
|
1424
1712
|
/** Execution start timestamp */
|
|
@@ -1434,6 +1722,12 @@ export interface FunctionGraphExecutionInput {
|
|
|
1434
1722
|
export interface FunctionGraphExecutionNodeStateFilter {
|
|
1435
1723
|
/** Checks for all expressions in this list. */
|
|
1436
1724
|
and?: FunctionGraphExecutionNodeStateFilter[];
|
|
1725
|
+
/** Filter by the object’s `callbackInputs` field. */
|
|
1726
|
+
callbackInputs?: JSONFilter;
|
|
1727
|
+
/** Filter by the object’s `callbackMeta` field. */
|
|
1728
|
+
callbackMeta?: JSONFilter;
|
|
1729
|
+
/** Filter by the object’s `callbackTokenHash` field. */
|
|
1730
|
+
callbackTokenHash?: StringFilter;
|
|
1437
1731
|
/** Filter by the object’s `completedAt` field. */
|
|
1438
1732
|
completedAt?: DatetimeFilter;
|
|
1439
1733
|
/** Filter by the object’s `createdAt` field. */
|
|
@@ -1465,6 +1759,12 @@ export interface FunctionGraphExecutionNodeStateFilter {
|
|
|
1465
1759
|
}
|
|
1466
1760
|
/** An input for mutations affecting `FunctionGraphExecutionNodeState` */
|
|
1467
1761
|
export interface FunctionGraphExecutionNodeStateInput {
|
|
1762
|
+
/** Snapshot of the node's resolved inputs for resource-runtime nodes — served by the node gateway GET /inputs endpoint */
|
|
1763
|
+
callbackInputs?: unknown;
|
|
1764
|
+
/** Metering/attribution context stamped at resource dispatch (namespace_id, task_identifier, entity_id, scope, resource identity, dispatched_at, attempt) — lets the node gateway settle and attribute without extra lookups */
|
|
1765
|
+
callbackMeta?: unknown;
|
|
1766
|
+
/** SHA-256 hex digest of the node callback token — set for resource-runtime nodes so the node gateway can authenticate result/error/heartbeat callbacks */
|
|
1767
|
+
callbackTokenHash?: string;
|
|
1468
1768
|
/** Timestamp when the node finished (success or failure) */
|
|
1469
1769
|
completedAt?: string;
|
|
1470
1770
|
/** Timestamp of node state creation (partition key) */
|
|
@@ -1492,6 +1792,12 @@ export interface FunctionGraphExecutionNodeStateInput {
|
|
|
1492
1792
|
}
|
|
1493
1793
|
/** Represents an update to a `FunctionGraphExecutionNodeState`. Fields that are set will be updated. */
|
|
1494
1794
|
export interface FunctionGraphExecutionNodeStatePatch {
|
|
1795
|
+
/** Snapshot of the node's resolved inputs for resource-runtime nodes — served by the node gateway GET /inputs endpoint */
|
|
1796
|
+
callbackInputs?: unknown;
|
|
1797
|
+
/** Metering/attribution context stamped at resource dispatch (namespace_id, task_identifier, entity_id, scope, resource identity, dispatched_at, attempt) — lets the node gateway settle and attribute without extra lookups */
|
|
1798
|
+
callbackMeta?: unknown;
|
|
1799
|
+
/** SHA-256 hex digest of the node callback token — set for resource-runtime nodes so the node gateway can authenticate result/error/heartbeat callbacks */
|
|
1800
|
+
callbackTokenHash?: string;
|
|
1495
1801
|
/** Timestamp when the node finished (success or failure) */
|
|
1496
1802
|
completedAt?: string;
|
|
1497
1803
|
/** Timestamp of node state creation (partition key) */
|
|
@@ -1564,12 +1870,18 @@ export interface FunctionGraphExecutionOutputPatch {
|
|
|
1564
1870
|
}
|
|
1565
1871
|
/** Represents an update to a `FunctionGraphExecution`. Fields that are set will be updated. */
|
|
1566
1872
|
export interface FunctionGraphExecutionPatch {
|
|
1873
|
+
/** User actor propagated to asynchronous graph jobs */
|
|
1874
|
+
actorId?: string;
|
|
1567
1875
|
/** Execution completion timestamp */
|
|
1568
1876
|
completedAt?: string;
|
|
1569
1877
|
/** Index into execution_plan — tick only processes this wave */
|
|
1570
1878
|
currentWave?: number;
|
|
1571
1879
|
/** Pinned definitions store commit for deterministic evaluation */
|
|
1572
1880
|
definitionsCommitId?: string;
|
|
1881
|
+
/** Entity context propagated to asynchronous graph jobs */
|
|
1882
|
+
entityId?: string;
|
|
1883
|
+
/** Scope discriminator propagated to asynchronous graph jobs */
|
|
1884
|
+
entityType?: string;
|
|
1573
1885
|
/** Machine-readable error code when status = failed */
|
|
1574
1886
|
errorCode?: string;
|
|
1575
1887
|
/** Human-readable error description when status = failed */
|
|
@@ -1582,7 +1894,9 @@ export interface FunctionGraphExecutionPatch {
|
|
|
1582
1894
|
id?: string;
|
|
1583
1895
|
/** Initial inputs provided at invocation time */
|
|
1584
1896
|
inputPayload?: unknown;
|
|
1585
|
-
/**
|
|
1897
|
+
/** Partition coordinate for the function invocation that launched this graph execution */
|
|
1898
|
+
invocationCreatedAt?: string;
|
|
1899
|
+
/** Function invocation that launched this top-level graph execution */
|
|
1586
1900
|
invocationId?: string;
|
|
1587
1901
|
/** Timestamp of the last real progress (node enqueue, node output, completion) — drives the activity-debounced watchdog */
|
|
1588
1902
|
lastProgressAt?: string;
|
|
@@ -1592,6 +1906,10 @@ export interface FunctionGraphExecutionPatch {
|
|
|
1592
1906
|
maxTicks?: number;
|
|
1593
1907
|
/** Map of node_name → execution output id (content-addressed hash reference) */
|
|
1594
1908
|
nodeOutputs?: unknown;
|
|
1909
|
+
/** Organization context propagated to asynchronous graph jobs */
|
|
1910
|
+
organizationId?: string;
|
|
1911
|
+
/** Selected graphOutput portName values; NULL or empty returns all graph outputs */
|
|
1912
|
+
outputNames?: string[];
|
|
1595
1913
|
/** Target output boundary node name to resolve; NULL derives completion from the graph's graphOutput nodes */
|
|
1596
1914
|
outputNode?: string;
|
|
1597
1915
|
/** Final result extracted from terminal output node */
|
|
@@ -1600,8 +1918,12 @@ export interface FunctionGraphExecutionPatch {
|
|
|
1600
1918
|
outputPort?: string;
|
|
1601
1919
|
/** Parent execution when this is a sub-execution */
|
|
1602
1920
|
parentExecutionId?: string;
|
|
1921
|
+
/** Function invocation parent assigned to node invocations spawned by this execution */
|
|
1922
|
+
parentInvocationId?: string;
|
|
1603
1923
|
/** Node name in parent execution that spawned this sub-execution */
|
|
1604
1924
|
parentNodeName?: string;
|
|
1925
|
+
/** Principal identity propagated to asynchronous graph jobs */
|
|
1926
|
+
principalId?: string;
|
|
1605
1927
|
/** Opaque store partition key for the global tier */
|
|
1606
1928
|
scopeId?: string;
|
|
1607
1929
|
/** Execution start timestamp */
|
|
@@ -1627,6 +1949,10 @@ export interface FunctionGraphFilter {
|
|
|
1627
1949
|
definitionsCommitId?: UUIDFilter;
|
|
1628
1950
|
/** Filter by the object’s `description` field. */
|
|
1629
1951
|
description?: StringFilter;
|
|
1952
|
+
/** Filter by the object’s `functionGraphExecutionsByGraphId` relation. */
|
|
1953
|
+
functionGraphExecutionsByGraphId?: FunctionGraphToManyFunctionGraphExecutionFilter;
|
|
1954
|
+
/** `functionGraphExecutionsByGraphId` exist. */
|
|
1955
|
+
functionGraphExecutionsByGraphIdExist?: boolean;
|
|
1630
1956
|
/** Filter by the object’s `id` field. */
|
|
1631
1957
|
id?: UUIDFilter;
|
|
1632
1958
|
/** Filter by the object’s `isValid` field. */
|
|
@@ -1637,6 +1963,10 @@ export interface FunctionGraphFilter {
|
|
|
1637
1963
|
not?: FunctionGraphFilter;
|
|
1638
1964
|
/** Checks for any expressions in this list. */
|
|
1639
1965
|
or?: FunctionGraphFilter[];
|
|
1966
|
+
/** Filter by the object’s `platformFunctionDefinitionsByGraphId` relation. */
|
|
1967
|
+
platformFunctionDefinitionsByGraphId?: FunctionGraphToManyPlatformFunctionDefinitionFilter;
|
|
1968
|
+
/** `platformFunctionDefinitionsByGraphId` exist. */
|
|
1969
|
+
platformFunctionDefinitionsByGraphIdExist?: boolean;
|
|
1640
1970
|
/** Filter by the object’s `scopeId` field. */
|
|
1641
1971
|
scopeId?: UUIDFilter;
|
|
1642
1972
|
/** Filter by the object’s `storeId` field. */
|
|
@@ -1814,6 +2144,24 @@ export interface FunctionGraphStorePatch {
|
|
|
1814
2144
|
/** Opaque store partition key for the global tier */
|
|
1815
2145
|
scopeId?: string;
|
|
1816
2146
|
}
|
|
2147
|
+
/** A filter to be used against many `FunctionGraphExecution` object types. All fields are combined with a logical ‘and.’ */
|
|
2148
|
+
export interface FunctionGraphToManyFunctionGraphExecutionFilter {
|
|
2149
|
+
/** Filters to entities where every related entity matches. */
|
|
2150
|
+
every?: FunctionGraphExecutionFilter;
|
|
2151
|
+
/** Filters to entities where no related entity matches. */
|
|
2152
|
+
none?: FunctionGraphExecutionFilter;
|
|
2153
|
+
/** Filters to entities where at least one related entity matches. */
|
|
2154
|
+
some?: FunctionGraphExecutionFilter;
|
|
2155
|
+
}
|
|
2156
|
+
/** A filter to be used against many `PlatformFunctionDefinition` object types. All fields are combined with a logical ‘and.’ */
|
|
2157
|
+
export interface FunctionGraphToManyPlatformFunctionDefinitionFilter {
|
|
2158
|
+
/** Filters to entities where every related entity matches. */
|
|
2159
|
+
every?: PlatformFunctionDefinitionFilter;
|
|
2160
|
+
/** Filters to entities where no related entity matches. */
|
|
2161
|
+
none?: PlatformFunctionDefinitionFilter;
|
|
2162
|
+
/** Filters to entities where at least one related entity matches. */
|
|
2163
|
+
some?: PlatformFunctionDefinitionFilter;
|
|
2164
|
+
}
|
|
1817
2165
|
/** A filter to be used against `FunctionInvocation` object types. All fields are combined with a logical ‘and.’ */
|
|
1818
2166
|
export interface FunctionInvocationFilter {
|
|
1819
2167
|
/** Filter by the object’s `actorId` field. */
|
|
@@ -1826,20 +2174,20 @@ export interface FunctionInvocationFilter {
|
|
|
1826
2174
|
apiBindingExists?: boolean;
|
|
1827
2175
|
/** Filter by the object’s `apiBindingId` field. */
|
|
1828
2176
|
apiBindingId?: UUIDFilter;
|
|
2177
|
+
/** Filter by the object’s `channel` field. */
|
|
2178
|
+
channel?: StringFilter;
|
|
1829
2179
|
/** Filter by the object’s `completedAt` field. */
|
|
1830
2180
|
completedAt?: DatetimeFilter;
|
|
1831
2181
|
/** Filter by the object’s `createdAt` field. */
|
|
1832
2182
|
createdAt?: DatetimeFilter;
|
|
1833
2183
|
/** Filter by the object’s `databaseId` field. */
|
|
1834
2184
|
databaseId?: UUIDFilter;
|
|
2185
|
+
/** Filter by the object’s `definitionScope` field. */
|
|
2186
|
+
definitionScope?: StringFilter;
|
|
1835
2187
|
/** Filter by the object’s `durationMs` field. */
|
|
1836
2188
|
durationMs?: IntFilter;
|
|
1837
2189
|
/** Filter by the object’s `error` field. */
|
|
1838
2190
|
error?: StringFilter;
|
|
1839
|
-
/** Filter by the object’s `functionDefinition` relation. */
|
|
1840
|
-
functionDefinition?: FunctionDefinitionFilter;
|
|
1841
|
-
/** A related `functionDefinition` exists. */
|
|
1842
|
-
functionDefinitionExists?: boolean;
|
|
1843
2191
|
/** Filter by the object’s `functionDefinitionId` field. */
|
|
1844
2192
|
functionDefinitionId?: UUIDFilter;
|
|
1845
2193
|
/** Filter by the object’s `graphExecutionId` field. */
|
|
@@ -1856,6 +2204,8 @@ export interface FunctionInvocationFilter {
|
|
|
1856
2204
|
parentInvocationId?: UUIDFilter;
|
|
1857
2205
|
/** Filter by the object’s `payload` field. */
|
|
1858
2206
|
payload?: JSONFilter;
|
|
2207
|
+
/** Filter by the object’s `provenance` field. */
|
|
2208
|
+
provenance?: JSONFilter;
|
|
1859
2209
|
/** Filter by the object’s `result` field. */
|
|
1860
2210
|
result?: JSONFilter;
|
|
1861
2211
|
/** Filter by the object’s `startedAt` field. */
|
|
@@ -1871,17 +2221,21 @@ export interface FunctionInvocationInput {
|
|
|
1871
2221
|
actorId?: string;
|
|
1872
2222
|
/** API binding this invocation arrived through (NULL for cron/graph/system/worker paths) */
|
|
1873
2223
|
apiBindingId?: string;
|
|
2224
|
+
/** Invocation trigger channel: api, graph, cron, sync, webhook, or worker */
|
|
2225
|
+
channel?: string;
|
|
1874
2226
|
/** When execution completed */
|
|
1875
2227
|
completedAt?: string;
|
|
1876
2228
|
/** Invocation creation timestamp (partition key) */
|
|
1877
2229
|
createdAt?: string;
|
|
1878
2230
|
/** Database that owns this resource (database-scoped isolation) */
|
|
1879
2231
|
databaseId: string;
|
|
2232
|
+
/** Scope that owns function_definition_id (e.g. app/org/database/platform) — the per-scope definitions table the resolver selected */
|
|
2233
|
+
definitionScope?: string;
|
|
1880
2234
|
/** Wall-clock execution time in milliseconds */
|
|
1881
2235
|
durationMs?: number;
|
|
1882
2236
|
/** Error message when status is failed */
|
|
1883
2237
|
error?: string;
|
|
1884
|
-
/** Function definition this invocation ran (
|
|
2238
|
+
/** Function definition this invocation ran (soft cross-scope ref; paired with definition_scope). task_identifier stays as the audit slug. */
|
|
1885
2239
|
functionDefinitionId?: string;
|
|
1886
2240
|
/** Groups all node invocations from a single flow graph execution */
|
|
1887
2241
|
graphExecutionId?: string;
|
|
@@ -1893,6 +2247,8 @@ export interface FunctionInvocationInput {
|
|
|
1893
2247
|
parentInvocationId?: string;
|
|
1894
2248
|
/** Function input payload */
|
|
1895
2249
|
payload?: unknown;
|
|
2250
|
+
/** Non-secret channel-specific invocation provenance (route/binding/event identifiers only) */
|
|
2251
|
+
provenance?: unknown;
|
|
1896
2252
|
/** Function return value (success) or structured error (failure) */
|
|
1897
2253
|
result?: unknown;
|
|
1898
2254
|
/** When execution started */
|
|
@@ -1908,17 +2264,21 @@ export interface FunctionInvocationPatch {
|
|
|
1908
2264
|
actorId?: string;
|
|
1909
2265
|
/** API binding this invocation arrived through (NULL for cron/graph/system/worker paths) */
|
|
1910
2266
|
apiBindingId?: string;
|
|
2267
|
+
/** Invocation trigger channel: api, graph, cron, sync, webhook, or worker */
|
|
2268
|
+
channel?: string;
|
|
1911
2269
|
/** When execution completed */
|
|
1912
2270
|
completedAt?: string;
|
|
1913
2271
|
/** Invocation creation timestamp (partition key) */
|
|
1914
2272
|
createdAt?: string;
|
|
1915
2273
|
/** Database that owns this resource (database-scoped isolation) */
|
|
1916
2274
|
databaseId?: string;
|
|
2275
|
+
/** Scope that owns function_definition_id (e.g. app/org/database/platform) — the per-scope definitions table the resolver selected */
|
|
2276
|
+
definitionScope?: string;
|
|
1917
2277
|
/** Wall-clock execution time in milliseconds */
|
|
1918
2278
|
durationMs?: number;
|
|
1919
2279
|
/** Error message when status is failed */
|
|
1920
2280
|
error?: string;
|
|
1921
|
-
/** Function definition this invocation ran (
|
|
2281
|
+
/** Function definition this invocation ran (soft cross-scope ref; paired with definition_scope). task_identifier stays as the audit slug. */
|
|
1922
2282
|
functionDefinitionId?: string;
|
|
1923
2283
|
/** Groups all node invocations from a single flow graph execution */
|
|
1924
2284
|
graphExecutionId?: string;
|
|
@@ -1930,6 +2290,8 @@ export interface FunctionInvocationPatch {
|
|
|
1930
2290
|
parentInvocationId?: string;
|
|
1931
2291
|
/** Function input payload */
|
|
1932
2292
|
payload?: unknown;
|
|
2293
|
+
/** Non-secret channel-specific invocation provenance (route/binding/event identifiers only) */
|
|
2294
|
+
provenance?: unknown;
|
|
1933
2295
|
/** Function return value (success) or structured error (failure) */
|
|
1934
2296
|
result?: unknown;
|
|
1935
2297
|
/** When execution started */
|
|
@@ -1964,6 +2326,8 @@ export interface InfraCommitFilter {
|
|
|
1964
2326
|
authorId?: UUIDFilter;
|
|
1965
2327
|
/** Filter by the object’s `committerId` field. */
|
|
1966
2328
|
committerId?: UUIDFilter;
|
|
2329
|
+
/** Filter by the object’s `databaseId` field. */
|
|
2330
|
+
databaseId?: UUIDFilter;
|
|
1967
2331
|
/** Filter by the object’s `date` field. */
|
|
1968
2332
|
date?: DatetimeFilter;
|
|
1969
2333
|
/** Filter by the object’s `id` field. */
|
|
@@ -1976,8 +2340,6 @@ export interface InfraCommitFilter {
|
|
|
1976
2340
|
or?: InfraCommitFilter[];
|
|
1977
2341
|
/** Filter by the object’s `parentIds` field. */
|
|
1978
2342
|
parentIds?: UUIDListFilter;
|
|
1979
|
-
/** Filter by the object’s `scopeId` field. */
|
|
1980
|
-
scopeId?: UUIDFilter;
|
|
1981
2343
|
/** Filter by the object’s `storeId` field. */
|
|
1982
2344
|
storeId?: UUIDFilter;
|
|
1983
2345
|
/** Filter by the object’s `treeId` field. */
|
|
@@ -1989,6 +2351,8 @@ export interface InfraCommitInput {
|
|
|
1989
2351
|
authorId?: string;
|
|
1990
2352
|
/** User who committed (may differ from author) */
|
|
1991
2353
|
committerId?: string;
|
|
2354
|
+
/** Database scope for multi-tenant isolation */
|
|
2355
|
+
databaseId: string;
|
|
1992
2356
|
/** Commit timestamp */
|
|
1993
2357
|
date?: string;
|
|
1994
2358
|
/** Unique commit identifier */
|
|
@@ -1997,8 +2361,6 @@ export interface InfraCommitInput {
|
|
|
1997
2361
|
message?: string;
|
|
1998
2362
|
/** Parent commit IDs (supports merge commits) */
|
|
1999
2363
|
parentIds?: string[];
|
|
2000
|
-
/** Opaque store partition key for the global tier */
|
|
2001
|
-
scopeId: string;
|
|
2002
2364
|
/** Store this commit belongs to */
|
|
2003
2365
|
storeId: string;
|
|
2004
2366
|
/** Root object ID of the tree snapshot at this commit */
|
|
@@ -2010,6 +2372,8 @@ export interface InfraCommitPatch {
|
|
|
2010
2372
|
authorId?: string;
|
|
2011
2373
|
/** User who committed (may differ from author) */
|
|
2012
2374
|
committerId?: string;
|
|
2375
|
+
/** Database scope for multi-tenant isolation */
|
|
2376
|
+
databaseId?: string;
|
|
2013
2377
|
/** Commit timestamp */
|
|
2014
2378
|
date?: string;
|
|
2015
2379
|
/** Unique commit identifier */
|
|
@@ -2018,8 +2382,6 @@ export interface InfraCommitPatch {
|
|
|
2018
2382
|
message?: string;
|
|
2019
2383
|
/** Parent commit IDs (supports merge commits) */
|
|
2020
2384
|
parentIds?: string[];
|
|
2021
|
-
/** Opaque store partition key for the global tier */
|
|
2022
|
-
scopeId?: string;
|
|
2023
2385
|
/** Store this commit belongs to */
|
|
2024
2386
|
storeId?: string;
|
|
2025
2387
|
/** Root object ID of the tree snapshot at this commit */
|
|
@@ -2047,6 +2409,8 @@ export interface InfraObjectFilter {
|
|
|
2047
2409
|
createdAt?: DatetimeFilter;
|
|
2048
2410
|
/** Filter by the object’s `data` field. */
|
|
2049
2411
|
data?: JSONFilter;
|
|
2412
|
+
/** Filter by the object’s `databaseId` field. */
|
|
2413
|
+
databaseId?: UUIDFilter;
|
|
2050
2414
|
/** Filter by the object’s `id` field. */
|
|
2051
2415
|
id?: UUIDFilter;
|
|
2052
2416
|
/** Filter by the object’s `kids` field. */
|
|
@@ -2057,8 +2421,6 @@ export interface InfraObjectFilter {
|
|
|
2057
2421
|
not?: InfraObjectFilter;
|
|
2058
2422
|
/** Checks for any expressions in this list. */
|
|
2059
2423
|
or?: InfraObjectFilter[];
|
|
2060
|
-
/** Filter by the object’s `scopeId` field. */
|
|
2061
|
-
scopeId?: UUIDFilter;
|
|
2062
2424
|
}
|
|
2063
2425
|
/** An input for mutations affecting `InfraObject` */
|
|
2064
2426
|
export interface InfraObjectInput {
|
|
@@ -2066,14 +2428,14 @@ export interface InfraObjectInput {
|
|
|
2066
2428
|
createdAt?: string;
|
|
2067
2429
|
/** Payload data for this object node */
|
|
2068
2430
|
data?: unknown;
|
|
2431
|
+
/** Database scope for multi-tenant isolation */
|
|
2432
|
+
databaseId: string;
|
|
2069
2433
|
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
2070
2434
|
id: string;
|
|
2071
2435
|
/** Ordered array of child object IDs */
|
|
2072
2436
|
kids?: string[];
|
|
2073
2437
|
/** Ordered array of child path names (parallel to kids) */
|
|
2074
2438
|
ktree?: string[];
|
|
2075
|
-
/** Opaque store partition key for the global tier */
|
|
2076
|
-
scopeId: string;
|
|
2077
2439
|
}
|
|
2078
2440
|
/** Represents an update to a `InfraObject`. Fields that are set will be updated. */
|
|
2079
2441
|
export interface InfraObjectPatch {
|
|
@@ -2081,14 +2443,14 @@ export interface InfraObjectPatch {
|
|
|
2081
2443
|
createdAt?: string;
|
|
2082
2444
|
/** Payload data for this object node */
|
|
2083
2445
|
data?: unknown;
|
|
2446
|
+
/** Database scope for multi-tenant isolation */
|
|
2447
|
+
databaseId?: string;
|
|
2084
2448
|
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
2085
2449
|
id?: string;
|
|
2086
2450
|
/** Ordered array of child object IDs */
|
|
2087
2451
|
kids?: string[];
|
|
2088
2452
|
/** Ordered array of child path names (parallel to kids) */
|
|
2089
2453
|
ktree?: string[];
|
|
2090
|
-
/** Opaque store partition key for the global tier */
|
|
2091
|
-
scopeId?: string;
|
|
2092
2454
|
}
|
|
2093
2455
|
/** A filter to be used against `InfraRef` object types. All fields are combined with a logical ‘and.’ */
|
|
2094
2456
|
export interface InfraRefFilter {
|
|
@@ -2096,6 +2458,8 @@ export interface InfraRefFilter {
|
|
|
2096
2458
|
and?: InfraRefFilter[];
|
|
2097
2459
|
/** Filter by the object’s `commitId` field. */
|
|
2098
2460
|
commitId?: UUIDFilter;
|
|
2461
|
+
/** Filter by the object’s `databaseId` field. */
|
|
2462
|
+
databaseId?: UUIDFilter;
|
|
2099
2463
|
/** Filter by the object’s `id` field. */
|
|
2100
2464
|
id?: UUIDFilter;
|
|
2101
2465
|
/** Filter by the object’s `name` field. */
|
|
@@ -2104,8 +2468,6 @@ export interface InfraRefFilter {
|
|
|
2104
2468
|
not?: InfraRefFilter;
|
|
2105
2469
|
/** Checks for any expressions in this list. */
|
|
2106
2470
|
or?: InfraRefFilter[];
|
|
2107
|
-
/** Filter by the object’s `scopeId` field. */
|
|
2108
|
-
scopeId?: UUIDFilter;
|
|
2109
2471
|
/** Filter by the object’s `storeId` field. */
|
|
2110
2472
|
storeId?: UUIDFilter;
|
|
2111
2473
|
}
|
|
@@ -2113,12 +2475,12 @@ export interface InfraRefFilter {
|
|
|
2113
2475
|
export interface InfraRefInput {
|
|
2114
2476
|
/** Commit this ref points to */
|
|
2115
2477
|
commitId?: string;
|
|
2478
|
+
/** Database scope for multi-tenant isolation */
|
|
2479
|
+
databaseId: string;
|
|
2116
2480
|
/** Unique ref identifier */
|
|
2117
2481
|
id?: string;
|
|
2118
2482
|
/** Ref name (e.g. HEAD, main) */
|
|
2119
2483
|
name: string;
|
|
2120
|
-
/** Opaque store partition key for the global tier */
|
|
2121
|
-
scopeId: string;
|
|
2122
2484
|
/** Store this ref belongs to */
|
|
2123
2485
|
storeId: string;
|
|
2124
2486
|
}
|
|
@@ -2126,12 +2488,12 @@ export interface InfraRefInput {
|
|
|
2126
2488
|
export interface InfraRefPatch {
|
|
2127
2489
|
/** Commit this ref points to */
|
|
2128
2490
|
commitId?: string;
|
|
2491
|
+
/** Database scope for multi-tenant isolation */
|
|
2492
|
+
databaseId?: string;
|
|
2129
2493
|
/** Unique ref identifier */
|
|
2130
2494
|
id?: string;
|
|
2131
2495
|
/** Ref name (e.g. HEAD, main) */
|
|
2132
2496
|
name?: string;
|
|
2133
|
-
/** Opaque store partition key for the global tier */
|
|
2134
|
-
scopeId?: string;
|
|
2135
2497
|
/** Store this ref belongs to */
|
|
2136
2498
|
storeId?: string;
|
|
2137
2499
|
}
|
|
@@ -2148,6 +2510,8 @@ export interface InfraStoreFilter {
|
|
|
2148
2510
|
and?: InfraStoreFilter[];
|
|
2149
2511
|
/** Filter by the object’s `createdAt` field. */
|
|
2150
2512
|
createdAt?: DatetimeFilter;
|
|
2513
|
+
/** Filter by the object’s `databaseId` field. */
|
|
2514
|
+
databaseId?: UUIDFilter;
|
|
2151
2515
|
/** Filter by the object’s `hash` field. */
|
|
2152
2516
|
hash?: UUIDFilter;
|
|
2153
2517
|
/** Filter by the object’s `id` field. */
|
|
@@ -2158,34 +2522,32 @@ export interface InfraStoreFilter {
|
|
|
2158
2522
|
not?: InfraStoreFilter;
|
|
2159
2523
|
/** Checks for any expressions in this list. */
|
|
2160
2524
|
or?: InfraStoreFilter[];
|
|
2161
|
-
/** Filter by the object’s `scopeId` field. */
|
|
2162
|
-
scopeId?: UUIDFilter;
|
|
2163
2525
|
}
|
|
2164
2526
|
/** An input for mutations affecting `InfraStore` */
|
|
2165
2527
|
export interface InfraStoreInput {
|
|
2166
2528
|
/** Timestamp of store creation */
|
|
2167
2529
|
createdAt?: string;
|
|
2530
|
+
/** Database scope for multi-tenant isolation */
|
|
2531
|
+
databaseId: string;
|
|
2168
2532
|
/** Current root object hash of this store */
|
|
2169
2533
|
hash?: string;
|
|
2170
2534
|
/** Unique store identifier */
|
|
2171
2535
|
id?: string;
|
|
2172
2536
|
/** Human-readable store name */
|
|
2173
2537
|
name: string;
|
|
2174
|
-
/** Opaque store partition key for the global tier */
|
|
2175
|
-
scopeId: string;
|
|
2176
2538
|
}
|
|
2177
2539
|
/** Represents an update to a `InfraStore`. Fields that are set will be updated. */
|
|
2178
2540
|
export interface InfraStorePatch {
|
|
2179
2541
|
/** Timestamp of store creation */
|
|
2180
2542
|
createdAt?: string;
|
|
2543
|
+
/** Database scope for multi-tenant isolation */
|
|
2544
|
+
databaseId?: string;
|
|
2181
2545
|
/** Current root object hash of this store */
|
|
2182
2546
|
hash?: string;
|
|
2183
2547
|
/** Unique store identifier */
|
|
2184
2548
|
id?: string;
|
|
2185
2549
|
/** Human-readable store name */
|
|
2186
2550
|
name?: string;
|
|
2187
|
-
/** Opaque store partition key for the global tier */
|
|
2188
|
-
scopeId?: string;
|
|
2189
2551
|
}
|
|
2190
2552
|
export interface InitEmptyRepoInput {
|
|
2191
2553
|
clientMutationId?: string;
|
|
@@ -2330,8 +2692,6 @@ export interface NamespaceEventFilter {
|
|
|
2330
2692
|
actorId?: UUIDFilter;
|
|
2331
2693
|
/** Checks for all expressions in this list. */
|
|
2332
2694
|
and?: NamespaceEventFilter[];
|
|
2333
|
-
/** Filter by the object’s `cpuMillicores` field. */
|
|
2334
|
-
cpuMillicores?: IntFilter;
|
|
2335
2695
|
/** Filter by the object’s `createdAt` field. */
|
|
2336
2696
|
createdAt?: DatetimeFilter;
|
|
2337
2697
|
/** Filter by the object’s `databaseId` field. */
|
|
@@ -2340,35 +2700,21 @@ export interface NamespaceEventFilter {
|
|
|
2340
2700
|
eventType?: StringFilter;
|
|
2341
2701
|
/** Filter by the object’s `id` field. */
|
|
2342
2702
|
id?: UUIDFilter;
|
|
2343
|
-
/** Filter by the object’s `memoryBytes` field. */
|
|
2344
|
-
memoryBytes?: BigIntFilter;
|
|
2345
2703
|
/** Filter by the object’s `message` field. */
|
|
2346
2704
|
message?: StringFilter;
|
|
2347
2705
|
/** Filter by the object’s `metadata` field. */
|
|
2348
2706
|
metadata?: JSONFilter;
|
|
2349
|
-
/** Filter by the object’s `metrics` field. */
|
|
2350
|
-
metrics?: JSONFilter;
|
|
2351
2707
|
/** Filter by the object’s `namespaceId` field. */
|
|
2352
2708
|
namespaceId?: UUIDFilter;
|
|
2353
|
-
/** Filter by the object’s `networkEgressBytes` field. */
|
|
2354
|
-
networkEgressBytes?: BigIntFilter;
|
|
2355
|
-
/** Filter by the object’s `networkIngressBytes` field. */
|
|
2356
|
-
networkIngressBytes?: BigIntFilter;
|
|
2357
2709
|
/** Negates the expression. */
|
|
2358
2710
|
not?: NamespaceEventFilter;
|
|
2359
2711
|
/** Checks for any expressions in this list. */
|
|
2360
2712
|
or?: NamespaceEventFilter[];
|
|
2361
|
-
/** Filter by the object’s `podCount` field. */
|
|
2362
|
-
podCount?: IntFilter;
|
|
2363
|
-
/** Filter by the object’s `storageBytes` field. */
|
|
2364
|
-
storageBytes?: BigIntFilter;
|
|
2365
2713
|
}
|
|
2366
2714
|
/** An input for mutations affecting `NamespaceEvent` */
|
|
2367
2715
|
export interface NamespaceEventInput {
|
|
2368
2716
|
/** User who triggered this event (NULL for system/automated) */
|
|
2369
2717
|
actorId?: string;
|
|
2370
|
-
/** CPU usage in millicores at time of event */
|
|
2371
|
-
cpuMillicores?: number;
|
|
2372
2718
|
/** Event timestamp (partition key) */
|
|
2373
2719
|
createdAt?: string;
|
|
2374
2720
|
/** Database that owns this resource (database-scoped isolation) */
|
|
@@ -2377,31 +2723,17 @@ export interface NamespaceEventInput {
|
|
|
2377
2723
|
eventType: string;
|
|
2378
2724
|
/** Unique event identifier */
|
|
2379
2725
|
id?: string;
|
|
2380
|
-
/** Memory usage in bytes at time of event */
|
|
2381
|
-
memoryBytes?: string;
|
|
2382
2726
|
/** Human-readable description of the event */
|
|
2383
2727
|
message?: string;
|
|
2384
2728
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
2385
2729
|
metadata?: unknown;
|
|
2386
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
2387
|
-
metrics?: unknown;
|
|
2388
2730
|
/** Namespace this event belongs to */
|
|
2389
2731
|
namespaceId: string;
|
|
2390
|
-
/** Network egress in bytes during event window */
|
|
2391
|
-
networkEgressBytes?: string;
|
|
2392
|
-
/** Network ingress in bytes during event window */
|
|
2393
|
-
networkIngressBytes?: string;
|
|
2394
|
-
/** Number of active pods in the namespace at time of event */
|
|
2395
|
-
podCount?: number;
|
|
2396
|
-
/** Storage usage in bytes at time of event */
|
|
2397
|
-
storageBytes?: string;
|
|
2398
2732
|
}
|
|
2399
2733
|
/** Represents an update to a `NamespaceEvent`. Fields that are set will be updated. */
|
|
2400
2734
|
export interface NamespaceEventPatch {
|
|
2401
2735
|
/** User who triggered this event (NULL for system/automated) */
|
|
2402
2736
|
actorId?: string;
|
|
2403
|
-
/** CPU usage in millicores at time of event */
|
|
2404
|
-
cpuMillicores?: number;
|
|
2405
2737
|
/** Event timestamp (partition key) */
|
|
2406
2738
|
createdAt?: string;
|
|
2407
2739
|
/** Database that owns this resource (database-scoped isolation) */
|
|
@@ -2410,24 +2742,12 @@ export interface NamespaceEventPatch {
|
|
|
2410
2742
|
eventType?: string;
|
|
2411
2743
|
/** Unique event identifier */
|
|
2412
2744
|
id?: string;
|
|
2413
|
-
/** Memory usage in bytes at time of event */
|
|
2414
|
-
memoryBytes?: string;
|
|
2415
2745
|
/** Human-readable description of the event */
|
|
2416
2746
|
message?: string;
|
|
2417
2747
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
2418
2748
|
metadata?: unknown;
|
|
2419
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
2420
|
-
metrics?: unknown;
|
|
2421
2749
|
/** Namespace this event belongs to */
|
|
2422
2750
|
namespaceId?: string;
|
|
2423
|
-
/** Network egress in bytes during event window */
|
|
2424
|
-
networkEgressBytes?: string;
|
|
2425
|
-
/** Network ingress in bytes during event window */
|
|
2426
|
-
networkIngressBytes?: string;
|
|
2427
|
-
/** Number of active pods in the namespace at time of event */
|
|
2428
|
-
podCount?: number;
|
|
2429
|
-
/** Storage usage in bytes at time of event */
|
|
2430
|
-
storageBytes?: string;
|
|
2431
2751
|
}
|
|
2432
2752
|
/** A filter to be used against `Namespace` object types. All fields are combined with a logical ‘and.’ */
|
|
2433
2753
|
export interface NamespaceFilter {
|
|
@@ -2467,6 +2787,10 @@ export interface NamespaceFilter {
|
|
|
2467
2787
|
resourceDefinitions?: NamespaceToManyResourceDefinitionFilter;
|
|
2468
2788
|
/** `resourceDefinitions` exist. */
|
|
2469
2789
|
resourceDefinitionsExist?: boolean;
|
|
2790
|
+
/** Filter by the object’s `resourceInstallations` relation. */
|
|
2791
|
+
resourceInstallations?: NamespaceToManyResourceInstallationFilter;
|
|
2792
|
+
/** `resourceInstallations` exist. */
|
|
2793
|
+
resourceInstallationsExist?: boolean;
|
|
2470
2794
|
/** Filter by the object’s `resources` relation. */
|
|
2471
2795
|
resources?: NamespaceToManyResourceFilter;
|
|
2472
2796
|
/** `resources` exist. */
|
|
@@ -2475,6 +2799,10 @@ export interface NamespaceFilter {
|
|
|
2475
2799
|
status?: StringFilter;
|
|
2476
2800
|
/** Filter by the object’s `updatedAt` field. */
|
|
2477
2801
|
updatedAt?: DatetimeFilter;
|
|
2802
|
+
/** Filter by the object’s `webhookEndpoints` relation. */
|
|
2803
|
+
webhookEndpoints?: NamespaceToManyWebhookEndpointFilter;
|
|
2804
|
+
/** `webhookEndpoints` exist. */
|
|
2805
|
+
webhookEndpointsExist?: boolean;
|
|
2478
2806
|
}
|
|
2479
2807
|
/** An input for mutations affecting `Namespace` */
|
|
2480
2808
|
export interface NamespaceInput {
|
|
@@ -2555,6 +2883,59 @@ export interface NamespaceToManyResourceFilter {
|
|
|
2555
2883
|
/** Filters to entities where at least one related entity matches. */
|
|
2556
2884
|
some?: ResourceFilter;
|
|
2557
2885
|
}
|
|
2886
|
+
/** A filter to be used against many `ResourceInstallation` object types. All fields are combined with a logical ‘and.’ */
|
|
2887
|
+
export interface NamespaceToManyResourceInstallationFilter {
|
|
2888
|
+
/** Filters to entities where every related entity matches. */
|
|
2889
|
+
every?: ResourceInstallationFilter;
|
|
2890
|
+
/** Filters to entities where no related entity matches. */
|
|
2891
|
+
none?: ResourceInstallationFilter;
|
|
2892
|
+
/** Filters to entities where at least one related entity matches. */
|
|
2893
|
+
some?: ResourceInstallationFilter;
|
|
2894
|
+
}
|
|
2895
|
+
/** A filter to be used against many `WebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
2896
|
+
export interface NamespaceToManyWebhookEndpointFilter {
|
|
2897
|
+
/** Filters to entities where every related entity matches. */
|
|
2898
|
+
every?: WebhookEndpointFilter;
|
|
2899
|
+
/** Filters to entities where no related entity matches. */
|
|
2900
|
+
none?: WebhookEndpointFilter;
|
|
2901
|
+
/** Filters to entities where at least one related entity matches. */
|
|
2902
|
+
some?: WebhookEndpointFilter;
|
|
2903
|
+
}
|
|
2904
|
+
/** A filter to be used against `PlatformDeclaredCapacity` object types. All fields are combined with a logical ‘and.’ */
|
|
2905
|
+
export interface PlatformDeclaredCapacityFilter {
|
|
2906
|
+
/** Checks for all expressions in this list. */
|
|
2907
|
+
and?: PlatformDeclaredCapacityFilter[];
|
|
2908
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
2909
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
2910
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
2911
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
2912
|
+
/** Filter by the object’s `installationId` field. */
|
|
2913
|
+
installationId?: UUIDFilter;
|
|
2914
|
+
/** Filter by the object’s `isTransient` field. */
|
|
2915
|
+
isTransient?: BooleanFilter;
|
|
2916
|
+
/** Filter by the object’s `kind` field. */
|
|
2917
|
+
kind?: StringFilter;
|
|
2918
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
2919
|
+
memoryLimitBytes?: BigIntFilter;
|
|
2920
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
2921
|
+
memoryRequestBytes?: BigIntFilter;
|
|
2922
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
2923
|
+
namespaceId?: UUIDFilter;
|
|
2924
|
+
/** Negates the expression. */
|
|
2925
|
+
not?: PlatformDeclaredCapacityFilter;
|
|
2926
|
+
/** Checks for any expressions in this list. */
|
|
2927
|
+
or?: PlatformDeclaredCapacityFilter[];
|
|
2928
|
+
/** Filter by the object’s `podCountMax` field. */
|
|
2929
|
+
podCountMax?: IntFilter;
|
|
2930
|
+
/** Filter by the object’s `podCountMin` field. */
|
|
2931
|
+
podCountMin?: IntFilter;
|
|
2932
|
+
/** Filter by the object’s `source` field. */
|
|
2933
|
+
source?: StringFilter;
|
|
2934
|
+
/** Filter by the object’s `sourceId` field. */
|
|
2935
|
+
sourceId?: UUIDFilter;
|
|
2936
|
+
/** Filter by the object’s `storageSizeBytes` field. */
|
|
2937
|
+
storageSizeBytes?: BigIntFilter;
|
|
2938
|
+
}
|
|
2558
2939
|
/** A filter to be used against `PlatformFunctionApiBinding` object types. All fields are combined with a logical ‘and.’ */
|
|
2559
2940
|
export interface PlatformFunctionApiBindingFilter {
|
|
2560
2941
|
/** Filter by the object’s `alias` field. */
|
|
@@ -2575,6 +2956,10 @@ export interface PlatformFunctionApiBindingFilter {
|
|
|
2575
2956
|
not?: PlatformFunctionApiBindingFilter;
|
|
2576
2957
|
/** Checks for any expressions in this list. */
|
|
2577
2958
|
or?: PlatformFunctionApiBindingFilter[];
|
|
2959
|
+
/** Filter by the object’s `platformFunctionInvocationsByApiBindingId` relation. */
|
|
2960
|
+
platformFunctionInvocationsByApiBindingId?: PlatformFunctionApiBindingToManyPlatformFunctionInvocationFilter;
|
|
2961
|
+
/** `platformFunctionInvocationsByApiBindingId` exist. */
|
|
2962
|
+
platformFunctionInvocationsByApiBindingIdExist?: boolean;
|
|
2578
2963
|
}
|
|
2579
2964
|
/** An input for mutations affecting `PlatformFunctionApiBinding` */
|
|
2580
2965
|
export interface PlatformFunctionApiBindingInput {
|
|
@@ -2600,6 +2985,15 @@ export interface PlatformFunctionApiBindingPatch {
|
|
|
2600
2985
|
functionDefinitionId?: string;
|
|
2601
2986
|
id?: string;
|
|
2602
2987
|
}
|
|
2988
|
+
/** A filter to be used against many `PlatformFunctionInvocation` object types. All fields are combined with a logical ‘and.’ */
|
|
2989
|
+
export interface PlatformFunctionApiBindingToManyPlatformFunctionInvocationFilter {
|
|
2990
|
+
/** Filters to entities where every related entity matches. */
|
|
2991
|
+
every?: PlatformFunctionInvocationFilter;
|
|
2992
|
+
/** Filters to entities where no related entity matches. */
|
|
2993
|
+
none?: PlatformFunctionInvocationFilter;
|
|
2994
|
+
/** Filters to entities where at least one related entity matches. */
|
|
2995
|
+
some?: PlatformFunctionInvocationFilter;
|
|
2996
|
+
}
|
|
2603
2997
|
/** A filter to be used against `PlatformFunctionDefinition` object types. All fields are combined with a logical ‘and.’ */
|
|
2604
2998
|
export interface PlatformFunctionDefinitionFilter {
|
|
2605
2999
|
/** Filter by the object’s `accessChannels` field. */
|
|
@@ -2610,6 +3004,10 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
2610
3004
|
category?: StringFilter;
|
|
2611
3005
|
/** Filter by the object’s `concurrency` field. */
|
|
2612
3006
|
concurrency?: IntFilter;
|
|
3007
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
3008
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
3009
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
3010
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
2613
3011
|
/** Filter by the object’s `createdAt` field. */
|
|
2614
3012
|
createdAt?: DatetimeFilter;
|
|
2615
3013
|
/** Filter by the object’s `description` field. */
|
|
@@ -2618,6 +3016,12 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
2618
3016
|
fnCategory?: StringFilter;
|
|
2619
3017
|
/** Filter by the object’s `functionColumns` field. */
|
|
2620
3018
|
functionColumns?: JSONFilter;
|
|
3019
|
+
/** Filter by the object’s `graph` relation. */
|
|
3020
|
+
graph?: FunctionGraphFilter;
|
|
3021
|
+
/** A related `graph` exists. */
|
|
3022
|
+
graphExists?: boolean;
|
|
3023
|
+
/** Filter by the object’s `graphId` field. */
|
|
3024
|
+
graphId?: UUIDFilter;
|
|
2621
3025
|
/** Filter by the object’s `icon` field. */
|
|
2622
3026
|
icon?: StringFilter;
|
|
2623
3027
|
/** Filter by the object’s `id` field. */
|
|
@@ -2632,6 +3036,10 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
2632
3036
|
isPublished?: BooleanFilter;
|
|
2633
3037
|
/** Filter by the object’s `maxAttempts` field. */
|
|
2634
3038
|
maxAttempts?: IntFilter;
|
|
3039
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
3040
|
+
memoryLimitBytes?: BigIntFilter;
|
|
3041
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
3042
|
+
memoryRequestBytes?: BigIntFilter;
|
|
2635
3043
|
/** Filter by the object’s `moduleTable` field. */
|
|
2636
3044
|
moduleTable?: StringFilter;
|
|
2637
3045
|
/** Filter by the object’s `name` field. */
|
|
@@ -2648,14 +3056,16 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
2648
3056
|
platformFunctionApiBindingsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformFunctionApiBindingFilter;
|
|
2649
3057
|
/** `platformFunctionApiBindingsByFunctionDefinitionId` exist. */
|
|
2650
3058
|
platformFunctionApiBindingsByFunctionDefinitionIdExist?: boolean;
|
|
2651
|
-
/** Filter by the object’s `
|
|
2652
|
-
|
|
2653
|
-
/** `
|
|
2654
|
-
|
|
3059
|
+
/** Filter by the object’s `platformWebhookEndpointsByFunctionDefinitionId` relation. */
|
|
3060
|
+
platformWebhookEndpointsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformWebhookEndpointFilter;
|
|
3061
|
+
/** `platformWebhookEndpointsByFunctionDefinitionId` exist. */
|
|
3062
|
+
platformWebhookEndpointsByFunctionDefinitionIdExist?: boolean;
|
|
2655
3063
|
/** Filter by the object’s `priority` field. */
|
|
2656
3064
|
priority?: IntFilter;
|
|
2657
3065
|
/** Filter by the object’s `props` field. */
|
|
2658
3066
|
props?: JSONFilter;
|
|
3067
|
+
/** Filter by the object’s `protected` field. */
|
|
3068
|
+
protected?: BooleanFilter;
|
|
2659
3069
|
/** Filter by the object’s `publishedAt` field. */
|
|
2660
3070
|
publishedAt?: DatetimeFilter;
|
|
2661
3071
|
/** Filter by the object’s `queueName` field. */
|
|
@@ -2687,7 +3097,7 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
2687
3097
|
}
|
|
2688
3098
|
/** An input for mutations affecting `PlatformFunctionDefinition` */
|
|
2689
3099
|
export interface PlatformFunctionDefinitionInput {
|
|
2690
|
-
/**
|
|
3100
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
2691
3101
|
accessChannels?: string[];
|
|
2692
3102
|
/** Function task category (e.g. email, embed, chunk, custom) */
|
|
2693
3103
|
category: string;
|
|
@@ -2700,10 +3110,12 @@ export interface PlatformFunctionDefinitionInput {
|
|
|
2700
3110
|
fnCategory?: string;
|
|
2701
3111
|
/** Ordered array of module_table column names holding the generated function names to invoke when runtime=sql (module mode). NULL for direct mode and other runtimes. */
|
|
2702
3112
|
functionColumns?: unknown;
|
|
3113
|
+
/** Existing flow graph invoked when runtime=graph. Required for graph runtime and forbidden for all other runtimes. */
|
|
3114
|
+
graphId?: string;
|
|
2703
3115
|
/** Icon identifier for UI palette rendering (e.g. mail, database, code) */
|
|
2704
3116
|
icon?: string;
|
|
2705
3117
|
id?: string;
|
|
2706
|
-
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http. NULL for inline functions. */
|
|
3118
|
+
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http or runtime=resource. NULL for inline functions. */
|
|
2707
3119
|
image?: string;
|
|
2708
3120
|
/** Data input ports: [{name, type, description?, optional?, multi?, schema?}] */
|
|
2709
3121
|
inputs?: unknown;
|
|
@@ -2725,6 +3137,8 @@ export interface PlatformFunctionDefinitionInput {
|
|
|
2725
3137
|
priority?: number;
|
|
2726
3138
|
/** Configuration properties: [{name, type, default?, description?, required?, schema?}] */
|
|
2727
3139
|
props?: unknown;
|
|
3140
|
+
/** Protected platform definition: narrower scopes cannot register the same task_identifier */
|
|
3141
|
+
protected?: boolean;
|
|
2728
3142
|
/** Timestamp when this function was published. NULL means immediately published when is_published is true; future timestamps delay public visibility */
|
|
2729
3143
|
publishedAt?: string;
|
|
2730
3144
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
@@ -2739,7 +3153,7 @@ export interface PlatformFunctionDefinitionInput {
|
|
|
2739
3153
|
requiredSecrets?: ResourceRequirementInput[];
|
|
2740
3154
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
2741
3155
|
resources?: unknown;
|
|
2742
|
-
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler),
|
|
3156
|
+
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler), sql (generic SQL dispatch via a trusted direct target or module-resolved function names), resource (Kubernetes Job via the resource module with node-gateway callbacks), or graph (existing flow graph referenced by graph_id) */
|
|
2743
3157
|
runtime?: string;
|
|
2744
3158
|
/** Maximum pod count for Knative autoscaling (maxScale) */
|
|
2745
3159
|
scaleMax?: number;
|
|
@@ -2759,7 +3173,7 @@ export interface PlatformFunctionDefinitionInput {
|
|
|
2759
3173
|
}
|
|
2760
3174
|
/** Represents an update to a `PlatformFunctionDefinition`. Fields that are set will be updated. */
|
|
2761
3175
|
export interface PlatformFunctionDefinitionPatch {
|
|
2762
|
-
/**
|
|
3176
|
+
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
2763
3177
|
accessChannels?: string[];
|
|
2764
3178
|
/** Function task category (e.g. email, embed, chunk, custom) */
|
|
2765
3179
|
category?: string;
|
|
@@ -2772,10 +3186,12 @@ export interface PlatformFunctionDefinitionPatch {
|
|
|
2772
3186
|
fnCategory?: string;
|
|
2773
3187
|
/** Ordered array of module_table column names holding the generated function names to invoke when runtime=sql (module mode). NULL for direct mode and other runtimes. */
|
|
2774
3188
|
functionColumns?: unknown;
|
|
3189
|
+
/** Existing flow graph invoked when runtime=graph. Required for graph runtime and forbidden for all other runtimes. */
|
|
3190
|
+
graphId?: string;
|
|
2775
3191
|
/** Icon identifier for UI palette rendering (e.g. mail, database, code) */
|
|
2776
3192
|
icon?: string;
|
|
2777
3193
|
id?: string;
|
|
2778
|
-
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http. NULL for inline functions. */
|
|
3194
|
+
/** Docker image reference (e.g. ghcr.io/constructive-io/email-send-fn:latest). Required when runtime=http or runtime=resource. NULL for inline functions. */
|
|
2779
3195
|
image?: string;
|
|
2780
3196
|
/** Data input ports: [{name, type, description?, optional?, multi?, schema?}] */
|
|
2781
3197
|
inputs?: unknown;
|
|
@@ -2797,6 +3213,8 @@ export interface PlatformFunctionDefinitionPatch {
|
|
|
2797
3213
|
priority?: number;
|
|
2798
3214
|
/** Configuration properties: [{name, type, default?, description?, required?, schema?}] */
|
|
2799
3215
|
props?: unknown;
|
|
3216
|
+
/** Protected platform definition: narrower scopes cannot register the same task_identifier */
|
|
3217
|
+
protected?: boolean;
|
|
2800
3218
|
/** Timestamp when this function was published. NULL means immediately published when is_published is true; future timestamps delay public visibility */
|
|
2801
3219
|
publishedAt?: string;
|
|
2802
3220
|
/** Job queue name for serialization (e.g. email, ai, default) */
|
|
@@ -2811,7 +3229,7 @@ export interface PlatformFunctionDefinitionPatch {
|
|
|
2811
3229
|
requiredSecrets?: ResourceRequirementInput[];
|
|
2812
3230
|
/** Container resource requests and limits: {requests: {memory, cpu}, limits: {memory, cpu}} */
|
|
2813
3231
|
resources?: unknown;
|
|
2814
|
-
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler),
|
|
3232
|
+
/** Execution mode: http (Knative Service dispatch), inline (in-process in compute worker), handler (registered infrastructure handler), sql (generic SQL dispatch via a trusted direct target or module-resolved function names), resource (Kubernetes Job via the resource module with node-gateway callbacks), or graph (existing flow graph referenced by graph_id) */
|
|
2815
3233
|
runtime?: string;
|
|
2816
3234
|
/** Maximum pod count for Knative autoscaling (maxScale) */
|
|
2817
3235
|
scaleMax?: number;
|
|
@@ -2838,14 +3256,14 @@ export interface PlatformFunctionDefinitionToManyPlatformFunctionApiBindingFilte
|
|
|
2838
3256
|
/** Filters to entities where at least one related entity matches. */
|
|
2839
3257
|
some?: PlatformFunctionApiBindingFilter;
|
|
2840
3258
|
}
|
|
2841
|
-
/** A filter to be used against many `
|
|
2842
|
-
export interface
|
|
3259
|
+
/** A filter to be used against many `PlatformWebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
3260
|
+
export interface PlatformFunctionDefinitionToManyPlatformWebhookEndpointFilter {
|
|
2843
3261
|
/** Filters to entities where every related entity matches. */
|
|
2844
|
-
every?:
|
|
3262
|
+
every?: PlatformWebhookEndpointFilter;
|
|
2845
3263
|
/** Filters to entities where no related entity matches. */
|
|
2846
|
-
none?:
|
|
3264
|
+
none?: PlatformWebhookEndpointFilter;
|
|
2847
3265
|
/** Filters to entities where at least one related entity matches. */
|
|
2848
|
-
some?:
|
|
3266
|
+
some?: PlatformWebhookEndpointFilter;
|
|
2849
3267
|
}
|
|
2850
3268
|
/** A filter to be used against `PlatformFunctionDeploymentEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
2851
3269
|
export interface PlatformFunctionDeploymentEventFilter {
|
|
@@ -3116,18 +3534,18 @@ export interface PlatformFunctionInvocationFilter {
|
|
|
3116
3534
|
apiBindingExists?: boolean;
|
|
3117
3535
|
/** Filter by the object’s `apiBindingId` field. */
|
|
3118
3536
|
apiBindingId?: UUIDFilter;
|
|
3537
|
+
/** Filter by the object’s `channel` field. */
|
|
3538
|
+
channel?: StringFilter;
|
|
3119
3539
|
/** Filter by the object’s `completedAt` field. */
|
|
3120
3540
|
completedAt?: DatetimeFilter;
|
|
3121
3541
|
/** Filter by the object’s `createdAt` field. */
|
|
3122
3542
|
createdAt?: DatetimeFilter;
|
|
3543
|
+
/** Filter by the object’s `definitionScope` field. */
|
|
3544
|
+
definitionScope?: StringFilter;
|
|
3123
3545
|
/** Filter by the object’s `durationMs` field. */
|
|
3124
3546
|
durationMs?: IntFilter;
|
|
3125
3547
|
/** Filter by the object’s `error` field. */
|
|
3126
3548
|
error?: StringFilter;
|
|
3127
|
-
/** Filter by the object’s `functionDefinition` relation. */
|
|
3128
|
-
functionDefinition?: PlatformFunctionDefinitionFilter;
|
|
3129
|
-
/** A related `functionDefinition` exists. */
|
|
3130
|
-
functionDefinitionExists?: boolean;
|
|
3131
3549
|
/** Filter by the object’s `functionDefinitionId` field. */
|
|
3132
3550
|
functionDefinitionId?: UUIDFilter;
|
|
3133
3551
|
/** Filter by the object’s `graphExecutionId` field. */
|
|
@@ -3144,6 +3562,8 @@ export interface PlatformFunctionInvocationFilter {
|
|
|
3144
3562
|
parentInvocationId?: UUIDFilter;
|
|
3145
3563
|
/** Filter by the object’s `payload` field. */
|
|
3146
3564
|
payload?: JSONFilter;
|
|
3565
|
+
/** Filter by the object’s `provenance` field. */
|
|
3566
|
+
provenance?: JSONFilter;
|
|
3147
3567
|
/** Filter by the object’s `result` field. */
|
|
3148
3568
|
result?: JSONFilter;
|
|
3149
3569
|
/** Filter by the object’s `startedAt` field. */
|
|
@@ -3159,15 +3579,19 @@ export interface PlatformFunctionInvocationInput {
|
|
|
3159
3579
|
actorId?: string;
|
|
3160
3580
|
/** API binding this invocation arrived through (NULL for cron/graph/system/worker paths) */
|
|
3161
3581
|
apiBindingId?: string;
|
|
3582
|
+
/** Invocation trigger channel: api, graph, cron, sync, webhook, or worker */
|
|
3583
|
+
channel?: string;
|
|
3162
3584
|
/** When execution completed */
|
|
3163
3585
|
completedAt?: string;
|
|
3164
3586
|
/** Invocation creation timestamp (partition key) */
|
|
3165
3587
|
createdAt?: string;
|
|
3588
|
+
/** Scope that owns function_definition_id (e.g. app/org/database/platform) — the per-scope definitions table the resolver selected */
|
|
3589
|
+
definitionScope?: string;
|
|
3166
3590
|
/** Wall-clock execution time in milliseconds */
|
|
3167
3591
|
durationMs?: number;
|
|
3168
3592
|
/** Error message when status is failed */
|
|
3169
3593
|
error?: string;
|
|
3170
|
-
/** Function definition this invocation ran (
|
|
3594
|
+
/** Function definition this invocation ran (soft cross-scope ref; paired with definition_scope). task_identifier stays as the audit slug. */
|
|
3171
3595
|
functionDefinitionId?: string;
|
|
3172
3596
|
/** Groups all node invocations from a single flow graph execution */
|
|
3173
3597
|
graphExecutionId?: string;
|
|
@@ -3179,6 +3603,8 @@ export interface PlatformFunctionInvocationInput {
|
|
|
3179
3603
|
parentInvocationId?: string;
|
|
3180
3604
|
/** Function input payload */
|
|
3181
3605
|
payload?: unknown;
|
|
3606
|
+
/** Non-secret channel-specific invocation provenance (route/binding/event identifiers only) */
|
|
3607
|
+
provenance?: unknown;
|
|
3182
3608
|
/** Function return value (success) or structured error (failure) */
|
|
3183
3609
|
result?: unknown;
|
|
3184
3610
|
/** When execution started */
|
|
@@ -3194,15 +3620,19 @@ export interface PlatformFunctionInvocationPatch {
|
|
|
3194
3620
|
actorId?: string;
|
|
3195
3621
|
/** API binding this invocation arrived through (NULL for cron/graph/system/worker paths) */
|
|
3196
3622
|
apiBindingId?: string;
|
|
3623
|
+
/** Invocation trigger channel: api, graph, cron, sync, webhook, or worker */
|
|
3624
|
+
channel?: string;
|
|
3197
3625
|
/** When execution completed */
|
|
3198
3626
|
completedAt?: string;
|
|
3199
3627
|
/** Invocation creation timestamp (partition key) */
|
|
3200
3628
|
createdAt?: string;
|
|
3629
|
+
/** Scope that owns function_definition_id (e.g. app/org/database/platform) — the per-scope definitions table the resolver selected */
|
|
3630
|
+
definitionScope?: string;
|
|
3201
3631
|
/** Wall-clock execution time in milliseconds */
|
|
3202
3632
|
durationMs?: number;
|
|
3203
3633
|
/** Error message when status is failed */
|
|
3204
3634
|
error?: string;
|
|
3205
|
-
/** Function definition this invocation ran (
|
|
3635
|
+
/** Function definition this invocation ran (soft cross-scope ref; paired with definition_scope). task_identifier stays as the audit slug. */
|
|
3206
3636
|
functionDefinitionId?: string;
|
|
3207
3637
|
/** Groups all node invocations from a single flow graph execution */
|
|
3208
3638
|
graphExecutionId?: string;
|
|
@@ -3214,6 +3644,8 @@ export interface PlatformFunctionInvocationPatch {
|
|
|
3214
3644
|
parentInvocationId?: string;
|
|
3215
3645
|
/** Function input payload */
|
|
3216
3646
|
payload?: unknown;
|
|
3647
|
+
/** Non-secret channel-specific invocation provenance (route/binding/event identifiers only) */
|
|
3648
|
+
provenance?: unknown;
|
|
3217
3649
|
/** Function return value (success) or structured error (failure) */
|
|
3218
3650
|
result?: unknown;
|
|
3219
3651
|
/** When execution started */
|
|
@@ -3223,104 +3655,293 @@ export interface PlatformFunctionInvocationPatch {
|
|
|
3223
3655
|
/** Function routing slug (category:name). Denormalized from the definition — must match the row referenced by function_definition_id when that is set. */
|
|
3224
3656
|
taskIdentifier?: string;
|
|
3225
3657
|
}
|
|
3226
|
-
/** A filter to be used against `
|
|
3227
|
-
export interface
|
|
3228
|
-
/** Filter by the object’s `actorId` field. */
|
|
3229
|
-
actorId?: UUIDFilter;
|
|
3658
|
+
/** A filter to be used against `PlatformInfraCommit` object types. All fields are combined with a logical ‘and.’ */
|
|
3659
|
+
export interface PlatformInfraCommitFilter {
|
|
3230
3660
|
/** Checks for all expressions in this list. */
|
|
3231
|
-
and?:
|
|
3232
|
-
/** Filter by the object’s `
|
|
3233
|
-
|
|
3234
|
-
/** Filter by the object’s `
|
|
3235
|
-
|
|
3236
|
-
/** Filter by the object’s `
|
|
3237
|
-
|
|
3661
|
+
and?: PlatformInfraCommitFilter[];
|
|
3662
|
+
/** Filter by the object’s `authorId` field. */
|
|
3663
|
+
authorId?: UUIDFilter;
|
|
3664
|
+
/** Filter by the object’s `committerId` field. */
|
|
3665
|
+
committerId?: UUIDFilter;
|
|
3666
|
+
/** Filter by the object’s `date` field. */
|
|
3667
|
+
date?: DatetimeFilter;
|
|
3238
3668
|
/** Filter by the object’s `id` field. */
|
|
3239
3669
|
id?: UUIDFilter;
|
|
3240
|
-
/** Filter by the object’s `memoryBytes` field. */
|
|
3241
|
-
memoryBytes?: BigIntFilter;
|
|
3242
3670
|
/** Filter by the object’s `message` field. */
|
|
3243
3671
|
message?: StringFilter;
|
|
3244
|
-
/** Filter by the object’s `metadata` field. */
|
|
3245
|
-
metadata?: JSONFilter;
|
|
3246
|
-
/** Filter by the object’s `metrics` field. */
|
|
3247
|
-
metrics?: JSONFilter;
|
|
3248
|
-
/** Filter by the object’s `namespaceId` field. */
|
|
3249
|
-
namespaceId?: UUIDFilter;
|
|
3250
|
-
/** Filter by the object’s `networkEgressBytes` field. */
|
|
3251
|
-
networkEgressBytes?: BigIntFilter;
|
|
3252
|
-
/** Filter by the object’s `networkIngressBytes` field. */
|
|
3253
|
-
networkIngressBytes?: BigIntFilter;
|
|
3254
3672
|
/** Negates the expression. */
|
|
3255
|
-
not?:
|
|
3673
|
+
not?: PlatformInfraCommitFilter;
|
|
3256
3674
|
/** Checks for any expressions in this list. */
|
|
3257
|
-
or?:
|
|
3258
|
-
/** Filter by the object’s `
|
|
3259
|
-
|
|
3260
|
-
/** Filter by the object’s `
|
|
3261
|
-
|
|
3675
|
+
or?: PlatformInfraCommitFilter[];
|
|
3676
|
+
/** Filter by the object’s `parentIds` field. */
|
|
3677
|
+
parentIds?: UUIDListFilter;
|
|
3678
|
+
/** Filter by the object’s `scopeId` field. */
|
|
3679
|
+
scopeId?: UUIDFilter;
|
|
3680
|
+
/** Filter by the object’s `storeId` field. */
|
|
3681
|
+
storeId?: UUIDFilter;
|
|
3682
|
+
/** Filter by the object’s `treeId` field. */
|
|
3683
|
+
treeId?: UUIDFilter;
|
|
3262
3684
|
}
|
|
3263
|
-
/** An input for mutations affecting `
|
|
3264
|
-
export interface
|
|
3265
|
-
/** User who
|
|
3266
|
-
|
|
3267
|
-
/**
|
|
3268
|
-
|
|
3269
|
-
/**
|
|
3270
|
-
|
|
3685
|
+
/** An input for mutations affecting `PlatformInfraCommit` */
|
|
3686
|
+
export interface PlatformInfraCommitInput {
|
|
3687
|
+
/** User who authored the changes */
|
|
3688
|
+
authorId?: string;
|
|
3689
|
+
/** User who committed (may differ from author) */
|
|
3690
|
+
committerId?: string;
|
|
3691
|
+
/** Commit timestamp */
|
|
3692
|
+
date?: string;
|
|
3693
|
+
/** Unique commit identifier */
|
|
3694
|
+
id?: string;
|
|
3695
|
+
/** Optional commit message */
|
|
3696
|
+
message?: string;
|
|
3697
|
+
/** Parent commit IDs (supports merge commits) */
|
|
3698
|
+
parentIds?: string[];
|
|
3699
|
+
/** Opaque store partition key for the global tier */
|
|
3700
|
+
scopeId: string;
|
|
3701
|
+
/** Store this commit belongs to */
|
|
3702
|
+
storeId: string;
|
|
3703
|
+
/** Root object ID of the tree snapshot at this commit */
|
|
3704
|
+
treeId?: string;
|
|
3705
|
+
}
|
|
3706
|
+
/** Represents an update to a `PlatformInfraCommit`. Fields that are set will be updated. */
|
|
3707
|
+
export interface PlatformInfraCommitPatch {
|
|
3708
|
+
/** User who authored the changes */
|
|
3709
|
+
authorId?: string;
|
|
3710
|
+
/** User who committed (may differ from author) */
|
|
3711
|
+
committerId?: string;
|
|
3712
|
+
/** Commit timestamp */
|
|
3713
|
+
date?: string;
|
|
3714
|
+
/** Unique commit identifier */
|
|
3715
|
+
id?: string;
|
|
3716
|
+
/** Optional commit message */
|
|
3717
|
+
message?: string;
|
|
3718
|
+
/** Parent commit IDs (supports merge commits) */
|
|
3719
|
+
parentIds?: string[];
|
|
3720
|
+
/** Opaque store partition key for the global tier */
|
|
3721
|
+
scopeId?: string;
|
|
3722
|
+
/** Store this commit belongs to */
|
|
3723
|
+
storeId?: string;
|
|
3724
|
+
/** Root object ID of the tree snapshot at this commit */
|
|
3725
|
+
treeId?: string;
|
|
3726
|
+
}
|
|
3727
|
+
export interface PlatformInfraInitEmptyRepoInput {
|
|
3728
|
+
clientMutationId?: string;
|
|
3729
|
+
sId?: string;
|
|
3730
|
+
storeId?: string;
|
|
3731
|
+
}
|
|
3732
|
+
export interface PlatformInfraInsertNodeAtPathInput {
|
|
3733
|
+
clientMutationId?: string;
|
|
3734
|
+
data?: unknown;
|
|
3735
|
+
kids?: string[];
|
|
3736
|
+
ktree?: string[];
|
|
3737
|
+
path?: string[];
|
|
3738
|
+
root?: string;
|
|
3739
|
+
sId?: string;
|
|
3740
|
+
}
|
|
3741
|
+
/** A filter to be used against `PlatformInfraObject` object types. All fields are combined with a logical ‘and.’ */
|
|
3742
|
+
export interface PlatformInfraObjectFilter {
|
|
3743
|
+
/** Checks for all expressions in this list. */
|
|
3744
|
+
and?: PlatformInfraObjectFilter[];
|
|
3745
|
+
/** Filter by the object’s `createdAt` field. */
|
|
3746
|
+
createdAt?: DatetimeFilter;
|
|
3747
|
+
/** Filter by the object’s `data` field. */
|
|
3748
|
+
data?: JSONFilter;
|
|
3749
|
+
/** Filter by the object’s `id` field. */
|
|
3750
|
+
id?: UUIDFilter;
|
|
3751
|
+
/** Filter by the object’s `kids` field. */
|
|
3752
|
+
kids?: UUIDListFilter;
|
|
3753
|
+
/** Filter by the object’s `ktree` field. */
|
|
3754
|
+
ktree?: StringListFilter;
|
|
3755
|
+
/** Negates the expression. */
|
|
3756
|
+
not?: PlatformInfraObjectFilter;
|
|
3757
|
+
/** Checks for any expressions in this list. */
|
|
3758
|
+
or?: PlatformInfraObjectFilter[];
|
|
3759
|
+
/** Filter by the object’s `scopeId` field. */
|
|
3760
|
+
scopeId?: UUIDFilter;
|
|
3761
|
+
}
|
|
3762
|
+
/** An input for mutations affecting `PlatformInfraObject` */
|
|
3763
|
+
export interface PlatformInfraObjectInput {
|
|
3764
|
+
/** Timestamp of object creation */
|
|
3765
|
+
createdAt?: string;
|
|
3766
|
+
/** Payload data for this object node */
|
|
3767
|
+
data?: unknown;
|
|
3768
|
+
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
3769
|
+
id: string;
|
|
3770
|
+
/** Ordered array of child object IDs */
|
|
3771
|
+
kids?: string[];
|
|
3772
|
+
/** Ordered array of child path names (parallel to kids) */
|
|
3773
|
+
ktree?: string[];
|
|
3774
|
+
/** Opaque store partition key for the global tier */
|
|
3775
|
+
scopeId: string;
|
|
3776
|
+
}
|
|
3777
|
+
/** Represents an update to a `PlatformInfraObject`. Fields that are set will be updated. */
|
|
3778
|
+
export interface PlatformInfraObjectPatch {
|
|
3779
|
+
/** Timestamp of object creation */
|
|
3780
|
+
createdAt?: string;
|
|
3781
|
+
/** Payload data for this object node */
|
|
3782
|
+
data?: unknown;
|
|
3783
|
+
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
3784
|
+
id?: string;
|
|
3785
|
+
/** Ordered array of child object IDs */
|
|
3786
|
+
kids?: string[];
|
|
3787
|
+
/** Ordered array of child path names (parallel to kids) */
|
|
3788
|
+
ktree?: string[];
|
|
3789
|
+
/** Opaque store partition key for the global tier */
|
|
3790
|
+
scopeId?: string;
|
|
3791
|
+
}
|
|
3792
|
+
/** A filter to be used against `PlatformInfraRef` object types. All fields are combined with a logical ‘and.’ */
|
|
3793
|
+
export interface PlatformInfraRefFilter {
|
|
3794
|
+
/** Checks for all expressions in this list. */
|
|
3795
|
+
and?: PlatformInfraRefFilter[];
|
|
3796
|
+
/** Filter by the object’s `commitId` field. */
|
|
3797
|
+
commitId?: UUIDFilter;
|
|
3798
|
+
/** Filter by the object’s `id` field. */
|
|
3799
|
+
id?: UUIDFilter;
|
|
3800
|
+
/** Filter by the object’s `name` field. */
|
|
3801
|
+
name?: StringFilter;
|
|
3802
|
+
/** Negates the expression. */
|
|
3803
|
+
not?: PlatformInfraRefFilter;
|
|
3804
|
+
/** Checks for any expressions in this list. */
|
|
3805
|
+
or?: PlatformInfraRefFilter[];
|
|
3806
|
+
/** Filter by the object’s `scopeId` field. */
|
|
3807
|
+
scopeId?: UUIDFilter;
|
|
3808
|
+
/** Filter by the object’s `storeId` field. */
|
|
3809
|
+
storeId?: UUIDFilter;
|
|
3810
|
+
}
|
|
3811
|
+
/** An input for mutations affecting `PlatformInfraRef` */
|
|
3812
|
+
export interface PlatformInfraRefInput {
|
|
3813
|
+
/** Commit this ref points to */
|
|
3814
|
+
commitId?: string;
|
|
3815
|
+
/** Unique ref identifier */
|
|
3816
|
+
id?: string;
|
|
3817
|
+
/** Ref name (e.g. HEAD, main) */
|
|
3818
|
+
name: string;
|
|
3819
|
+
/** Opaque store partition key for the global tier */
|
|
3820
|
+
scopeId: string;
|
|
3821
|
+
/** Store this ref belongs to */
|
|
3822
|
+
storeId: string;
|
|
3823
|
+
}
|
|
3824
|
+
/** Represents an update to a `PlatformInfraRef`. Fields that are set will be updated. */
|
|
3825
|
+
export interface PlatformInfraRefPatch {
|
|
3826
|
+
/** Commit this ref points to */
|
|
3827
|
+
commitId?: string;
|
|
3828
|
+
/** Unique ref identifier */
|
|
3829
|
+
id?: string;
|
|
3830
|
+
/** Ref name (e.g. HEAD, main) */
|
|
3831
|
+
name?: string;
|
|
3832
|
+
/** Opaque store partition key for the global tier */
|
|
3833
|
+
scopeId?: string;
|
|
3834
|
+
/** Store this ref belongs to */
|
|
3835
|
+
storeId?: string;
|
|
3836
|
+
}
|
|
3837
|
+
export interface PlatformInfraSetDataAtPathInput {
|
|
3838
|
+
clientMutationId?: string;
|
|
3839
|
+
data?: unknown;
|
|
3840
|
+
path?: string[];
|
|
3841
|
+
root?: string;
|
|
3842
|
+
sId?: string;
|
|
3843
|
+
}
|
|
3844
|
+
/** A filter to be used against `PlatformInfraStore` object types. All fields are combined with a logical ‘and.’ */
|
|
3845
|
+
export interface PlatformInfraStoreFilter {
|
|
3846
|
+
/** Checks for all expressions in this list. */
|
|
3847
|
+
and?: PlatformInfraStoreFilter[];
|
|
3848
|
+
/** Filter by the object’s `createdAt` field. */
|
|
3849
|
+
createdAt?: DatetimeFilter;
|
|
3850
|
+
/** Filter by the object’s `hash` field. */
|
|
3851
|
+
hash?: UUIDFilter;
|
|
3852
|
+
/** Filter by the object’s `id` field. */
|
|
3853
|
+
id?: UUIDFilter;
|
|
3854
|
+
/** Filter by the object’s `name` field. */
|
|
3855
|
+
name?: StringFilter;
|
|
3856
|
+
/** Negates the expression. */
|
|
3857
|
+
not?: PlatformInfraStoreFilter;
|
|
3858
|
+
/** Checks for any expressions in this list. */
|
|
3859
|
+
or?: PlatformInfraStoreFilter[];
|
|
3860
|
+
/** Filter by the object’s `scopeId` field. */
|
|
3861
|
+
scopeId?: UUIDFilter;
|
|
3862
|
+
}
|
|
3863
|
+
/** An input for mutations affecting `PlatformInfraStore` */
|
|
3864
|
+
export interface PlatformInfraStoreInput {
|
|
3865
|
+
/** Timestamp of store creation */
|
|
3866
|
+
createdAt?: string;
|
|
3867
|
+
/** Current root object hash of this store */
|
|
3868
|
+
hash?: string;
|
|
3869
|
+
/** Unique store identifier */
|
|
3870
|
+
id?: string;
|
|
3871
|
+
/** Human-readable store name */
|
|
3872
|
+
name: string;
|
|
3873
|
+
/** Opaque store partition key for the global tier */
|
|
3874
|
+
scopeId: string;
|
|
3875
|
+
}
|
|
3876
|
+
/** Represents an update to a `PlatformInfraStore`. Fields that are set will be updated. */
|
|
3877
|
+
export interface PlatformInfraStorePatch {
|
|
3878
|
+
/** Timestamp of store creation */
|
|
3879
|
+
createdAt?: string;
|
|
3880
|
+
/** Current root object hash of this store */
|
|
3881
|
+
hash?: string;
|
|
3882
|
+
/** Unique store identifier */
|
|
3883
|
+
id?: string;
|
|
3884
|
+
/** Human-readable store name */
|
|
3885
|
+
name?: string;
|
|
3886
|
+
/** Opaque store partition key for the global tier */
|
|
3887
|
+
scopeId?: string;
|
|
3888
|
+
}
|
|
3889
|
+
/** A filter to be used against `PlatformNamespaceEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
3890
|
+
export interface PlatformNamespaceEventFilter {
|
|
3891
|
+
/** Filter by the object’s `actorId` field. */
|
|
3892
|
+
actorId?: UUIDFilter;
|
|
3893
|
+
/** Checks for all expressions in this list. */
|
|
3894
|
+
and?: PlatformNamespaceEventFilter[];
|
|
3895
|
+
/** Filter by the object’s `createdAt` field. */
|
|
3896
|
+
createdAt?: DatetimeFilter;
|
|
3897
|
+
/** Filter by the object’s `eventType` field. */
|
|
3898
|
+
eventType?: StringFilter;
|
|
3899
|
+
/** Filter by the object’s `id` field. */
|
|
3900
|
+
id?: UUIDFilter;
|
|
3901
|
+
/** Filter by the object’s `message` field. */
|
|
3902
|
+
message?: StringFilter;
|
|
3903
|
+
/** Filter by the object’s `metadata` field. */
|
|
3904
|
+
metadata?: JSONFilter;
|
|
3905
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
3906
|
+
namespaceId?: UUIDFilter;
|
|
3907
|
+
/** Negates the expression. */
|
|
3908
|
+
not?: PlatformNamespaceEventFilter;
|
|
3909
|
+
/** Checks for any expressions in this list. */
|
|
3910
|
+
or?: PlatformNamespaceEventFilter[];
|
|
3911
|
+
}
|
|
3912
|
+
/** An input for mutations affecting `PlatformNamespaceEvent` */
|
|
3913
|
+
export interface PlatformNamespaceEventInput {
|
|
3914
|
+
/** User who triggered this event (NULL for system/automated) */
|
|
3915
|
+
actorId?: string;
|
|
3916
|
+
/** Event timestamp (partition key) */
|
|
3917
|
+
createdAt?: string;
|
|
3271
3918
|
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
3272
3919
|
eventType: string;
|
|
3273
3920
|
/** Unique event identifier */
|
|
3274
3921
|
id?: string;
|
|
3275
|
-
/** Memory usage in bytes at time of event */
|
|
3276
|
-
memoryBytes?: string;
|
|
3277
3922
|
/** Human-readable description of the event */
|
|
3278
3923
|
message?: string;
|
|
3279
3924
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
3280
3925
|
metadata?: unknown;
|
|
3281
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
3282
|
-
metrics?: unknown;
|
|
3283
3926
|
/** Namespace this event belongs to */
|
|
3284
3927
|
namespaceId: string;
|
|
3285
|
-
/** Network egress in bytes during event window */
|
|
3286
|
-
networkEgressBytes?: string;
|
|
3287
|
-
/** Network ingress in bytes during event window */
|
|
3288
|
-
networkIngressBytes?: string;
|
|
3289
|
-
/** Number of active pods in the namespace at time of event */
|
|
3290
|
-
podCount?: number;
|
|
3291
|
-
/** Storage usage in bytes at time of event */
|
|
3292
|
-
storageBytes?: string;
|
|
3293
3928
|
}
|
|
3294
3929
|
/** Represents an update to a `PlatformNamespaceEvent`. Fields that are set will be updated. */
|
|
3295
3930
|
export interface PlatformNamespaceEventPatch {
|
|
3296
3931
|
/** User who triggered this event (NULL for system/automated) */
|
|
3297
3932
|
actorId?: string;
|
|
3298
|
-
/** CPU usage in millicores at time of event */
|
|
3299
|
-
cpuMillicores?: number;
|
|
3300
3933
|
/** Event timestamp (partition key) */
|
|
3301
3934
|
createdAt?: string;
|
|
3302
3935
|
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
3303
3936
|
eventType?: string;
|
|
3304
3937
|
/** Unique event identifier */
|
|
3305
3938
|
id?: string;
|
|
3306
|
-
/** Memory usage in bytes at time of event */
|
|
3307
|
-
memoryBytes?: string;
|
|
3308
3939
|
/** Human-readable description of the event */
|
|
3309
3940
|
message?: string;
|
|
3310
3941
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
3311
3942
|
metadata?: unknown;
|
|
3312
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
3313
|
-
metrics?: unknown;
|
|
3314
3943
|
/** Namespace this event belongs to */
|
|
3315
3944
|
namespaceId?: string;
|
|
3316
|
-
/** Network egress in bytes during event window */
|
|
3317
|
-
networkEgressBytes?: string;
|
|
3318
|
-
/** Network ingress in bytes during event window */
|
|
3319
|
-
networkIngressBytes?: string;
|
|
3320
|
-
/** Number of active pods in the namespace at time of event */
|
|
3321
|
-
podCount?: number;
|
|
3322
|
-
/** Storage usage in bytes at time of event */
|
|
3323
|
-
storageBytes?: string;
|
|
3324
3945
|
}
|
|
3325
3946
|
/** A filter to be used against `PlatformNamespace` object types. All fields are combined with a logical ‘and.’ */
|
|
3326
3947
|
export interface PlatformNamespaceFilter {
|
|
@@ -3358,10 +3979,18 @@ export interface PlatformNamespaceFilter {
|
|
|
3358
3979
|
platformResourceDefinitionsByNamespaceId?: PlatformNamespaceToManyPlatformResourceDefinitionFilter;
|
|
3359
3980
|
/** `platformResourceDefinitionsByNamespaceId` exist. */
|
|
3360
3981
|
platformResourceDefinitionsByNamespaceIdExist?: boolean;
|
|
3982
|
+
/** Filter by the object’s `platformResourceInstallationsByNamespaceId` relation. */
|
|
3983
|
+
platformResourceInstallationsByNamespaceId?: PlatformNamespaceToManyPlatformResourceInstallationFilter;
|
|
3984
|
+
/** `platformResourceInstallationsByNamespaceId` exist. */
|
|
3985
|
+
platformResourceInstallationsByNamespaceIdExist?: boolean;
|
|
3361
3986
|
/** Filter by the object’s `platformResourcesByNamespaceId` relation. */
|
|
3362
3987
|
platformResourcesByNamespaceId?: PlatformNamespaceToManyPlatformResourceFilter;
|
|
3363
3988
|
/** `platformResourcesByNamespaceId` exist. */
|
|
3364
3989
|
platformResourcesByNamespaceIdExist?: boolean;
|
|
3990
|
+
/** Filter by the object’s `platformWebhookEndpointsByNamespaceId` relation. */
|
|
3991
|
+
platformWebhookEndpointsByNamespaceId?: PlatformNamespaceToManyPlatformWebhookEndpointFilter;
|
|
3992
|
+
/** `platformWebhookEndpointsByNamespaceId` exist. */
|
|
3993
|
+
platformWebhookEndpointsByNamespaceIdExist?: boolean;
|
|
3365
3994
|
/** Filter by the object’s `status` field. */
|
|
3366
3995
|
status?: StringFilter;
|
|
3367
3996
|
/** Filter by the object’s `updatedAt` field. */
|
|
@@ -3442,6 +4071,24 @@ export interface PlatformNamespaceToManyPlatformResourceFilter {
|
|
|
3442
4071
|
/** Filters to entities where at least one related entity matches. */
|
|
3443
4072
|
some?: PlatformResourceFilter;
|
|
3444
4073
|
}
|
|
4074
|
+
/** A filter to be used against many `PlatformResourceInstallation` object types. All fields are combined with a logical ‘and.’ */
|
|
4075
|
+
export interface PlatformNamespaceToManyPlatformResourceInstallationFilter {
|
|
4076
|
+
/** Filters to entities where every related entity matches. */
|
|
4077
|
+
every?: PlatformResourceInstallationFilter;
|
|
4078
|
+
/** Filters to entities where no related entity matches. */
|
|
4079
|
+
none?: PlatformResourceInstallationFilter;
|
|
4080
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4081
|
+
some?: PlatformResourceInstallationFilter;
|
|
4082
|
+
}
|
|
4083
|
+
/** A filter to be used against many `PlatformWebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
4084
|
+
export interface PlatformNamespaceToManyPlatformWebhookEndpointFilter {
|
|
4085
|
+
/** Filters to entities where every related entity matches. */
|
|
4086
|
+
every?: PlatformWebhookEndpointFilter;
|
|
4087
|
+
/** Filters to entities where no related entity matches. */
|
|
4088
|
+
none?: PlatformWebhookEndpointFilter;
|
|
4089
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4090
|
+
some?: PlatformWebhookEndpointFilter;
|
|
4091
|
+
}
|
|
3445
4092
|
/** A filter to be used against `PlatformResourceDefinition` object types. All fields are combined with a logical ‘and.’ */
|
|
3446
4093
|
export interface PlatformResourceDefinitionFilter {
|
|
3447
4094
|
/** Checks for all expressions in this list. */
|
|
@@ -3474,6 +4121,10 @@ export interface PlatformResourceDefinitionFilter {
|
|
|
3474
4121
|
not?: PlatformResourceDefinitionFilter;
|
|
3475
4122
|
/** Checks for any expressions in this list. */
|
|
3476
4123
|
or?: PlatformResourceDefinitionFilter[];
|
|
4124
|
+
/** Filter by the object’s `platformResourcesByResourceDefinitionId` relation. */
|
|
4125
|
+
platformResourcesByResourceDefinitionId?: PlatformResourceDefinitionToManyPlatformResourceFilter;
|
|
4126
|
+
/** `platformResourcesByResourceDefinitionId` exist. */
|
|
4127
|
+
platformResourcesByResourceDefinitionIdExist?: boolean;
|
|
3477
4128
|
/** Filter by the object’s `slug` field. */
|
|
3478
4129
|
slug?: StringFilter;
|
|
3479
4130
|
/** Filter by the object’s `stepUpMinAge` field. */
|
|
@@ -3496,7 +4147,7 @@ export interface PlatformResourceDefinitionInput {
|
|
|
3496
4147
|
id?: string;
|
|
3497
4148
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource definition. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
3498
4149
|
integrations?: string[];
|
|
3499
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate, or custom kinds */
|
|
4150
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate, or custom kinds */
|
|
3500
4151
|
kind: string;
|
|
3501
4152
|
/** Key/value pairs for selecting and filtering definitions */
|
|
3502
4153
|
labels?: unknown;
|
|
@@ -3528,7 +4179,7 @@ export interface PlatformResourceDefinitionPatch {
|
|
|
3528
4179
|
id?: string;
|
|
3529
4180
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource definition. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
3530
4181
|
integrations?: string[];
|
|
3531
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate, or custom kinds */
|
|
4182
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate, or custom kinds */
|
|
3532
4183
|
kind?: string;
|
|
3533
4184
|
/** Key/value pairs for selecting and filtering definitions */
|
|
3534
4185
|
labels?: unknown;
|
|
@@ -3547,6 +4198,15 @@ export interface PlatformResourceDefinitionPatch {
|
|
|
3547
4198
|
updatedAt?: string;
|
|
3548
4199
|
updatedBy?: string;
|
|
3549
4200
|
}
|
|
4201
|
+
/** A filter to be used against many `PlatformResource` object types. All fields are combined with a logical ‘and.’ */
|
|
4202
|
+
export interface PlatformResourceDefinitionToManyPlatformResourceFilter {
|
|
4203
|
+
/** Filters to entities where every related entity matches. */
|
|
4204
|
+
every?: PlatformResourceFilter;
|
|
4205
|
+
/** Filters to entities where no related entity matches. */
|
|
4206
|
+
none?: PlatformResourceFilter;
|
|
4207
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4208
|
+
some?: PlatformResourceFilter;
|
|
4209
|
+
}
|
|
3550
4210
|
/** A filter to be used against `PlatformResourceEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
3551
4211
|
export interface PlatformResourceEventFilter {
|
|
3552
4212
|
/** Filter by the object’s `actorId` field. */
|
|
@@ -3610,6 +4270,10 @@ export interface PlatformResourceFilter {
|
|
|
3610
4270
|
and?: PlatformResourceFilter[];
|
|
3611
4271
|
/** Filter by the object’s `annotations` field. */
|
|
3612
4272
|
annotations?: JSONFilter;
|
|
4273
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
4274
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
4275
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
4276
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
3613
4277
|
/** Filter by the object’s `createdAt` field. */
|
|
3614
4278
|
createdAt?: DatetimeFilter;
|
|
3615
4279
|
/** Filter by the object’s `createdBy` field. */
|
|
@@ -3618,6 +4282,12 @@ export interface PlatformResourceFilter {
|
|
|
3618
4282
|
errorCount?: IntFilter;
|
|
3619
4283
|
/** Filter by the object’s `id` field. */
|
|
3620
4284
|
id?: UUIDFilter;
|
|
4285
|
+
/** Filter by the object’s `installation` relation. */
|
|
4286
|
+
installation?: PlatformResourceInstallationFilter;
|
|
4287
|
+
/** A related `installation` exists. */
|
|
4288
|
+
installationExists?: boolean;
|
|
4289
|
+
/** Filter by the object’s `installationId` field. */
|
|
4290
|
+
installationId?: UUIDFilter;
|
|
3621
4291
|
/** Filter by the object’s `integrations` field. */
|
|
3622
4292
|
integrations?: StringListFilter;
|
|
3623
4293
|
/** Filter by the object’s `kind` field. */
|
|
@@ -3626,6 +4296,12 @@ export interface PlatformResourceFilter {
|
|
|
3626
4296
|
labels?: JSONFilter;
|
|
3627
4297
|
/** Filter by the object’s `lastError` field. */
|
|
3628
4298
|
lastError?: StringFilter;
|
|
4299
|
+
/** Filter by the object’s `lastHeartbeatAt` field. */
|
|
4300
|
+
lastHeartbeatAt?: DatetimeFilter;
|
|
4301
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
4302
|
+
memoryLimitBytes?: BigIntFilter;
|
|
4303
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
4304
|
+
memoryRequestBytes?: BigIntFilter;
|
|
3629
4305
|
/** Filter by the object’s `name` field. */
|
|
3630
4306
|
name?: StringFilter;
|
|
3631
4307
|
/** Filter by the object’s `namespace` relation. */
|
|
@@ -3640,6 +4316,8 @@ export interface PlatformResourceFilter {
|
|
|
3640
4316
|
platformResourceStatusChecksByResourceId?: PlatformResourceToManyPlatformResourceStatusCheckFilter;
|
|
3641
4317
|
/** `platformResourceStatusChecksByResourceId` exist. */
|
|
3642
4318
|
platformResourceStatusChecksByResourceIdExist?: boolean;
|
|
4319
|
+
/** Filter by the object’s `replicas` field. */
|
|
4320
|
+
replicas?: IntFilter;
|
|
3643
4321
|
/** Filter by the object’s `resourceDefinition` relation. */
|
|
3644
4322
|
resourceDefinition?: PlatformResourceDefinitionFilter;
|
|
3645
4323
|
/** A related `resourceDefinition` exists. */
|
|
@@ -3654,6 +4332,10 @@ export interface PlatformResourceFilter {
|
|
|
3654
4332
|
status?: StringFilter;
|
|
3655
4333
|
/** Filter by the object’s `statusObserved` field. */
|
|
3656
4334
|
statusObserved?: JSONFilter;
|
|
4335
|
+
/** Filter by the object’s `storageClass` field. */
|
|
4336
|
+
storageClass?: StringFilter;
|
|
4337
|
+
/** Filter by the object’s `storageSizeBytes` field. */
|
|
4338
|
+
storageSizeBytes?: BigIntFilter;
|
|
3657
4339
|
/** Filter by the object’s `updatedAt` field. */
|
|
3658
4340
|
updatedAt?: DatetimeFilter;
|
|
3659
4341
|
/** Filter by the object’s `updatedBy` field. */
|
|
@@ -3668,14 +4350,18 @@ export interface PlatformResourceInput {
|
|
|
3668
4350
|
/** Cumulative error count for this resource */
|
|
3669
4351
|
errorCount?: number;
|
|
3670
4352
|
id?: string;
|
|
4353
|
+
/** Installation ("release") this resource belongs to (NULL for standalone resources) */
|
|
4354
|
+
installationId?: string;
|
|
3671
4355
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
3672
4356
|
integrations?: string[];
|
|
3673
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate */
|
|
4357
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate */
|
|
3674
4358
|
kind: string;
|
|
3675
4359
|
/** Key/value pairs for selecting and filtering resources */
|
|
3676
4360
|
labels?: unknown;
|
|
3677
4361
|
/** Most recent provisioning or runtime error message */
|
|
3678
4362
|
lastError?: string;
|
|
4363
|
+
/** Last time a usage heartbeat was received for this resource (NULL until first heartbeat) */
|
|
4364
|
+
lastHeartbeatAt?: string;
|
|
3679
4365
|
/** Human-readable resource name */
|
|
3680
4366
|
name: string;
|
|
3681
4367
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
@@ -3690,13 +4376,132 @@ export interface PlatformResourceInput {
|
|
|
3690
4376
|
slug: string;
|
|
3691
4377
|
/** Desired state — kind-specific configuration (image, ports, resources, etc.). Opaque to DB; validated by K8s. */
|
|
3692
4378
|
spec?: unknown;
|
|
3693
|
-
/** Resource lifecycle status: pending, provisioning, active, failed, draining, deleting */
|
|
4379
|
+
/** Resource lifecycle status: pending, provisioning, active, completed, failed, draining, deleting */
|
|
3694
4380
|
status?: string;
|
|
3695
4381
|
/** Observed state from K8s — populated by handlers after reconciliation (service_url, clone_url, replicas, etc.) */
|
|
3696
4382
|
statusObserved?: unknown;
|
|
3697
4383
|
updatedAt?: string;
|
|
3698
4384
|
updatedBy?: string;
|
|
3699
4385
|
}
|
|
4386
|
+
/** A filter to be used against `PlatformResourceInstallation` object types. All fields are combined with a logical ‘and.’ */
|
|
4387
|
+
export interface PlatformResourceInstallationFilter {
|
|
4388
|
+
/** Checks for all expressions in this list. */
|
|
4389
|
+
and?: PlatformResourceInstallationFilter[];
|
|
4390
|
+
/** Filter by the object’s `commitId` field. */
|
|
4391
|
+
commitId?: UUIDFilter;
|
|
4392
|
+
/** Filter by the object’s `createdAt` field. */
|
|
4393
|
+
createdAt?: DatetimeFilter;
|
|
4394
|
+
/** Filter by the object’s `createdBy` field. */
|
|
4395
|
+
createdBy?: UUIDFilter;
|
|
4396
|
+
/** Filter by the object’s `id` field. */
|
|
4397
|
+
id?: UUIDFilter;
|
|
4398
|
+
/** Filter by the object’s `name` field. */
|
|
4399
|
+
name?: StringFilter;
|
|
4400
|
+
/** Filter by the object’s `namespace` relation. */
|
|
4401
|
+
namespace?: PlatformNamespaceFilter;
|
|
4402
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
4403
|
+
namespaceId?: UUIDFilter;
|
|
4404
|
+
/** Negates the expression. */
|
|
4405
|
+
not?: PlatformResourceInstallationFilter;
|
|
4406
|
+
/** Checks for any expressions in this list. */
|
|
4407
|
+
or?: PlatformResourceInstallationFilter[];
|
|
4408
|
+
/** Filter by the object’s `params` field. */
|
|
4409
|
+
params?: JSONFilter;
|
|
4410
|
+
/** Filter by the object’s `platformResourcesByInstallationId` relation. */
|
|
4411
|
+
platformResourcesByInstallationId?: PlatformResourceInstallationToManyPlatformResourceFilter;
|
|
4412
|
+
/** `platformResourcesByInstallationId` exist. */
|
|
4413
|
+
platformResourcesByInstallationIdExist?: boolean;
|
|
4414
|
+
/** Filter by the object’s `revision` field. */
|
|
4415
|
+
revision?: IntFilter;
|
|
4416
|
+
/** Filter by the object’s `slug` field. */
|
|
4417
|
+
slug?: StringFilter;
|
|
4418
|
+
/** Filter by the object’s `status` field. */
|
|
4419
|
+
status?: StringFilter;
|
|
4420
|
+
/** Filter by the object’s `storeId` field. */
|
|
4421
|
+
storeId?: UUIDFilter;
|
|
4422
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
4423
|
+
updatedAt?: DatetimeFilter;
|
|
4424
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
4425
|
+
updatedBy?: UUIDFilter;
|
|
4426
|
+
}
|
|
4427
|
+
/** An input for mutations affecting `PlatformResourceInstallation` */
|
|
4428
|
+
export interface PlatformResourceInstallationInput {
|
|
4429
|
+
/** Infra store commit for the current params (stamped by the versioned trigger on every write) */
|
|
4430
|
+
commitId?: string;
|
|
4431
|
+
createdAt?: string;
|
|
4432
|
+
createdBy?: string;
|
|
4433
|
+
id?: string;
|
|
4434
|
+
/** Human-readable release name */
|
|
4435
|
+
name: string;
|
|
4436
|
+
/** Namespace this installation belongs to (security boundary) */
|
|
4437
|
+
namespaceId: string;
|
|
4438
|
+
/** Release parameters — the readily-cached head; history lives in the infra store. Never contains secret/config literals. */
|
|
4439
|
+
params?: unknown;
|
|
4440
|
+
/** Monotonic release revision counter: install starts at 1, bumped on every upgrade/rollback */
|
|
4441
|
+
revision?: number;
|
|
4442
|
+
/** URL-safe release identifier, unique within the namespace; the release's path in the infra tree is [resource_installation, slug] */
|
|
4443
|
+
slug: string;
|
|
4444
|
+
/** Installation lifecycle status: pending, installed, uninstalled, failed */
|
|
4445
|
+
status?: string;
|
|
4446
|
+
/** Infra merkle store holding this installation's history (stamped by the versioned trigger) */
|
|
4447
|
+
storeId?: string;
|
|
4448
|
+
updatedAt?: string;
|
|
4449
|
+
updatedBy?: string;
|
|
4450
|
+
}
|
|
4451
|
+
/** Represents an update to a `PlatformResourceInstallation`. Fields that are set will be updated. */
|
|
4452
|
+
export interface PlatformResourceInstallationPatch {
|
|
4453
|
+
/** Infra store commit for the current params (stamped by the versioned trigger on every write) */
|
|
4454
|
+
commitId?: string;
|
|
4455
|
+
createdAt?: string;
|
|
4456
|
+
createdBy?: string;
|
|
4457
|
+
id?: string;
|
|
4458
|
+
/** Human-readable release name */
|
|
4459
|
+
name?: string;
|
|
4460
|
+
/** Namespace this installation belongs to (security boundary) */
|
|
4461
|
+
namespaceId?: string;
|
|
4462
|
+
/** Release parameters — the readily-cached head; history lives in the infra store. Never contains secret/config literals. */
|
|
4463
|
+
params?: unknown;
|
|
4464
|
+
/** Monotonic release revision counter: install starts at 1, bumped on every upgrade/rollback */
|
|
4465
|
+
revision?: number;
|
|
4466
|
+
/** URL-safe release identifier, unique within the namespace; the release's path in the infra tree is [resource_installation, slug] */
|
|
4467
|
+
slug?: string;
|
|
4468
|
+
/** Installation lifecycle status: pending, installed, uninstalled, failed */
|
|
4469
|
+
status?: string;
|
|
4470
|
+
/** Infra merkle store holding this installation's history (stamped by the versioned trigger) */
|
|
4471
|
+
storeId?: string;
|
|
4472
|
+
updatedAt?: string;
|
|
4473
|
+
updatedBy?: string;
|
|
4474
|
+
}
|
|
4475
|
+
/** A filter to be used against many `PlatformResource` object types. All fields are combined with a logical ‘and.’ */
|
|
4476
|
+
export interface PlatformResourceInstallationToManyPlatformResourceFilter {
|
|
4477
|
+
/** Filters to entities where every related entity matches. */
|
|
4478
|
+
every?: PlatformResourceFilter;
|
|
4479
|
+
/** Filters to entities where no related entity matches. */
|
|
4480
|
+
none?: PlatformResourceFilter;
|
|
4481
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4482
|
+
some?: PlatformResourceFilter;
|
|
4483
|
+
}
|
|
4484
|
+
export interface PlatformResourceInstallationsInstallInput {
|
|
4485
|
+
clientMutationId?: string;
|
|
4486
|
+
pName?: string;
|
|
4487
|
+
pNamespaceId?: string;
|
|
4488
|
+
pParams?: unknown;
|
|
4489
|
+
pSlug?: string;
|
|
4490
|
+
}
|
|
4491
|
+
export interface PlatformResourceInstallationsRollbackInput {
|
|
4492
|
+
clientMutationId?: string;
|
|
4493
|
+
pCommitId?: string;
|
|
4494
|
+
pInstallationId?: string;
|
|
4495
|
+
}
|
|
4496
|
+
export interface PlatformResourceInstallationsUninstallInput {
|
|
4497
|
+
clientMutationId?: string;
|
|
4498
|
+
pInstallationId?: string;
|
|
4499
|
+
}
|
|
4500
|
+
export interface PlatformResourceInstallationsUpgradeInput {
|
|
4501
|
+
clientMutationId?: string;
|
|
4502
|
+
pInstallationId?: string;
|
|
4503
|
+
pParams?: unknown;
|
|
4504
|
+
}
|
|
3700
4505
|
/** Represents an update to a `PlatformResource`. Fields that are set will be updated. */
|
|
3701
4506
|
export interface PlatformResourcePatch {
|
|
3702
4507
|
/** Freeform metadata for tooling and operational notes */
|
|
@@ -3706,14 +4511,18 @@ export interface PlatformResourcePatch {
|
|
|
3706
4511
|
/** Cumulative error count for this resource */
|
|
3707
4512
|
errorCount?: number;
|
|
3708
4513
|
id?: string;
|
|
4514
|
+
/** Installation ("release") this resource belongs to (NULL for standalone resources) */
|
|
4515
|
+
installationId?: string;
|
|
3709
4516
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
3710
4517
|
integrations?: string[];
|
|
3711
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate */
|
|
4518
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate */
|
|
3712
4519
|
kind?: string;
|
|
3713
4520
|
/** Key/value pairs for selecting and filtering resources */
|
|
3714
4521
|
labels?: unknown;
|
|
3715
4522
|
/** Most recent provisioning or runtime error message */
|
|
3716
4523
|
lastError?: string;
|
|
4524
|
+
/** Last time a usage heartbeat was received for this resource (NULL until first heartbeat) */
|
|
4525
|
+
lastHeartbeatAt?: string;
|
|
3717
4526
|
/** Human-readable resource name */
|
|
3718
4527
|
name?: string;
|
|
3719
4528
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
@@ -3728,7 +4537,7 @@ export interface PlatformResourcePatch {
|
|
|
3728
4537
|
slug?: string;
|
|
3729
4538
|
/** Desired state — kind-specific configuration (image, ports, resources, etc.). Opaque to DB; validated by K8s. */
|
|
3730
4539
|
spec?: unknown;
|
|
3731
|
-
/** Resource lifecycle status: pending, provisioning, active, failed, draining, deleting */
|
|
4540
|
+
/** Resource lifecycle status: pending, provisioning, active, completed, failed, draining, deleting */
|
|
3732
4541
|
status?: string;
|
|
3733
4542
|
/** Observed state from K8s — populated by handlers after reconciliation (service_url, clone_url, replicas, etc.) */
|
|
3734
4543
|
statusObserved?: unknown;
|
|
@@ -3803,6 +4612,256 @@ export interface PlatformResourceToManyPlatformResourceStatusCheckFilter {
|
|
|
3803
4612
|
/** Filters to entities where at least one related entity matches. */
|
|
3804
4613
|
some?: PlatformResourceStatusCheckFilter;
|
|
3805
4614
|
}
|
|
4615
|
+
/** A filter to be used against `PlatformResourceUsageLog` object types. All fields are combined with a logical ‘and.’ */
|
|
4616
|
+
export interface PlatformResourceUsageLogFilter {
|
|
4617
|
+
/** Checks for all expressions in this list. */
|
|
4618
|
+
and?: PlatformResourceUsageLogFilter[];
|
|
4619
|
+
/** Filter by the object’s `cpuMillicores` field. */
|
|
4620
|
+
cpuMillicores?: BigIntFilter;
|
|
4621
|
+
/** Filter by the object’s `id` field. */
|
|
4622
|
+
id?: UUIDFilter;
|
|
4623
|
+
/** Filter by the object’s `intervalSeconds` field. */
|
|
4624
|
+
intervalSeconds?: IntFilter;
|
|
4625
|
+
/** Filter by the object’s `memoryBytes` field. */
|
|
4626
|
+
memoryBytes?: BigIntFilter;
|
|
4627
|
+
/** Filter by the object’s `metrics` field. */
|
|
4628
|
+
metrics?: JSONFilter;
|
|
4629
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
4630
|
+
namespaceId?: UUIDFilter;
|
|
4631
|
+
/** Negates the expression. */
|
|
4632
|
+
not?: PlatformResourceUsageLogFilter;
|
|
4633
|
+
/** Checks for any expressions in this list. */
|
|
4634
|
+
or?: PlatformResourceUsageLogFilter[];
|
|
4635
|
+
/** Filter by the object’s `resourceId` field. */
|
|
4636
|
+
resourceId?: UUIDFilter;
|
|
4637
|
+
/** Filter by the object’s `sampledAt` field. */
|
|
4638
|
+
sampledAt?: DatetimeFilter;
|
|
4639
|
+
/** Filter by the object’s `source` field. */
|
|
4640
|
+
source?: StringFilter;
|
|
4641
|
+
}
|
|
4642
|
+
/** An input for mutations affecting `PlatformResourceUsageLog` */
|
|
4643
|
+
export interface PlatformResourceUsageLogInput {
|
|
4644
|
+
/** CPU gauge in millicores at sample time (NULL when unknown) */
|
|
4645
|
+
cpuMillicores?: string;
|
|
4646
|
+
/** Unique sample identifier */
|
|
4647
|
+
id?: string;
|
|
4648
|
+
/** Seconds covered by this sample — runtime is SUM(interval_seconds) */
|
|
4649
|
+
intervalSeconds: number;
|
|
4650
|
+
/** Memory gauge in bytes at sample time (NULL when unknown) */
|
|
4651
|
+
memoryBytes?: string;
|
|
4652
|
+
/** Structured gauges: replicas, pod counts, phases, and other producer-specific metrics */
|
|
4653
|
+
metrics?: unknown;
|
|
4654
|
+
/** Namespace the measured workload runs in */
|
|
4655
|
+
namespaceId: string;
|
|
4656
|
+
/** Resource this sample measures (NULL for namespace-grain catch-all rows) */
|
|
4657
|
+
resourceId?: string;
|
|
4658
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
4659
|
+
sampledAt?: string;
|
|
4660
|
+
/** Sample producer: self (workload heartbeat) or observer (reconciler) */
|
|
4661
|
+
source: string;
|
|
4662
|
+
}
|
|
4663
|
+
/** Represents an update to a `PlatformResourceUsageLog`. Fields that are set will be updated. */
|
|
4664
|
+
export interface PlatformResourceUsageLogPatch {
|
|
4665
|
+
/** CPU gauge in millicores at sample time (NULL when unknown) */
|
|
4666
|
+
cpuMillicores?: string;
|
|
4667
|
+
/** Unique sample identifier */
|
|
4668
|
+
id?: string;
|
|
4669
|
+
/** Seconds covered by this sample — runtime is SUM(interval_seconds) */
|
|
4670
|
+
intervalSeconds?: number;
|
|
4671
|
+
/** Memory gauge in bytes at sample time (NULL when unknown) */
|
|
4672
|
+
memoryBytes?: string;
|
|
4673
|
+
/** Structured gauges: replicas, pod counts, phases, and other producer-specific metrics */
|
|
4674
|
+
metrics?: unknown;
|
|
4675
|
+
/** Namespace the measured workload runs in */
|
|
4676
|
+
namespaceId?: string;
|
|
4677
|
+
/** Resource this sample measures (NULL for namespace-grain catch-all rows) */
|
|
4678
|
+
resourceId?: string;
|
|
4679
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
4680
|
+
sampledAt?: string;
|
|
4681
|
+
/** Sample producer: self (workload heartbeat) or observer (reconciler) */
|
|
4682
|
+
source?: string;
|
|
4683
|
+
}
|
|
4684
|
+
/** A filter to be used against `PlatformResourceUsageSummary` object types. All fields are combined with a logical ‘and.’ */
|
|
4685
|
+
export interface PlatformResourceUsageSummaryFilter {
|
|
4686
|
+
/** Checks for all expressions in this list. */
|
|
4687
|
+
and?: PlatformResourceUsageSummaryFilter[];
|
|
4688
|
+
/** Filter by the object’s `date` field. */
|
|
4689
|
+
date?: DateFilter;
|
|
4690
|
+
/** Filter by the object’s `gbSeconds` field. */
|
|
4691
|
+
gbSeconds?: BigFloatFilter;
|
|
4692
|
+
/** Filter by the object’s `id` field. */
|
|
4693
|
+
id?: UUIDFilter;
|
|
4694
|
+
/** Filter by the object’s `maxCpuMillicores` field. */
|
|
4695
|
+
maxCpuMillicores?: BigIntFilter;
|
|
4696
|
+
/** Filter by the object’s `maxMemoryBytes` field. */
|
|
4697
|
+
maxMemoryBytes?: BigIntFilter;
|
|
4698
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
4699
|
+
namespaceId?: UUIDFilter;
|
|
4700
|
+
/** Negates the expression. */
|
|
4701
|
+
not?: PlatformResourceUsageSummaryFilter;
|
|
4702
|
+
/** Checks for any expressions in this list. */
|
|
4703
|
+
or?: PlatformResourceUsageSummaryFilter[];
|
|
4704
|
+
/** Filter by the object’s `resourceId` field. */
|
|
4705
|
+
resourceId?: UUIDFilter;
|
|
4706
|
+
/** Filter by the object’s `runtimeSeconds` field. */
|
|
4707
|
+
runtimeSeconds?: BigIntFilter;
|
|
4708
|
+
/** Filter by the object’s `sampleCount` field. */
|
|
4709
|
+
sampleCount?: IntFilter;
|
|
4710
|
+
}
|
|
4711
|
+
/** An input for mutations affecting `PlatformResourceUsageSummary` */
|
|
4712
|
+
export interface PlatformResourceUsageSummaryInput {
|
|
4713
|
+
/** Day this summary covers (partition key) */
|
|
4714
|
+
date: string;
|
|
4715
|
+
/** Memory usage for the day — SUM(memory_bytes * interval_seconds) normalized to GB-seconds */
|
|
4716
|
+
gbSeconds?: string;
|
|
4717
|
+
/** Unique usage summary identifier */
|
|
4718
|
+
id?: string;
|
|
4719
|
+
/** Maximum CPU gauge observed during the day (NULL when never reported) */
|
|
4720
|
+
maxCpuMillicores?: string;
|
|
4721
|
+
/** Maximum memory gauge observed during the day (NULL when never reported) */
|
|
4722
|
+
maxMemoryBytes?: string;
|
|
4723
|
+
/** Namespace the resource runs in */
|
|
4724
|
+
namespaceId: string;
|
|
4725
|
+
/** Resource this summary covers (NULL for namespace-grain catch-all summaries) */
|
|
4726
|
+
resourceId?: string;
|
|
4727
|
+
/** Total measured runtime for the day — SUM(interval_seconds) */
|
|
4728
|
+
runtimeSeconds?: string;
|
|
4729
|
+
/** Number of raw samples aggregated into this summary */
|
|
4730
|
+
sampleCount?: number;
|
|
4731
|
+
}
|
|
4732
|
+
/** Represents an update to a `PlatformResourceUsageSummary`. Fields that are set will be updated. */
|
|
4733
|
+
export interface PlatformResourceUsageSummaryPatch {
|
|
4734
|
+
/** Day this summary covers (partition key) */
|
|
4735
|
+
date?: string;
|
|
4736
|
+
/** Memory usage for the day — SUM(memory_bytes * interval_seconds) normalized to GB-seconds */
|
|
4737
|
+
gbSeconds?: string;
|
|
4738
|
+
/** Unique usage summary identifier */
|
|
4739
|
+
id?: string;
|
|
4740
|
+
/** Maximum CPU gauge observed during the day (NULL when never reported) */
|
|
4741
|
+
maxCpuMillicores?: string;
|
|
4742
|
+
/** Maximum memory gauge observed during the day (NULL when never reported) */
|
|
4743
|
+
maxMemoryBytes?: string;
|
|
4744
|
+
/** Namespace the resource runs in */
|
|
4745
|
+
namespaceId?: string;
|
|
4746
|
+
/** Resource this summary covers (NULL for namespace-grain catch-all summaries) */
|
|
4747
|
+
resourceId?: string;
|
|
4748
|
+
/** Total measured runtime for the day — SUM(interval_seconds) */
|
|
4749
|
+
runtimeSeconds?: string;
|
|
4750
|
+
/** Number of raw samples aggregated into this summary */
|
|
4751
|
+
sampleCount?: number;
|
|
4752
|
+
}
|
|
4753
|
+
/** A filter to be used against `PlatformResourceUtilizationDaily` object types. All fields are combined with a logical ‘and.’ */
|
|
4754
|
+
export interface PlatformResourceUtilizationDailyFilter {
|
|
4755
|
+
/** Checks for all expressions in this list. */
|
|
4756
|
+
and?: PlatformResourceUtilizationDailyFilter[];
|
|
4757
|
+
/** Filter by the object’s `avgMemoryBytes` field. */
|
|
4758
|
+
avgMemoryBytes?: BigIntFilter;
|
|
4759
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
4760
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
4761
|
+
/** Filter by the object’s `cpuPeakUtilization` field. */
|
|
4762
|
+
cpuPeakUtilization?: BigFloatFilter;
|
|
4763
|
+
/** Filter by the object’s `cpuRequestHeadroomMillicores` field. */
|
|
4764
|
+
cpuRequestHeadroomMillicores?: BigIntFilter;
|
|
4765
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
4766
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
4767
|
+
/** Filter by the object’s `date` field. */
|
|
4768
|
+
date?: DateFilter;
|
|
4769
|
+
/** Filter by the object’s `gbSeconds` field. */
|
|
4770
|
+
gbSeconds?: BigFloatFilter;
|
|
4771
|
+
/** Filter by the object’s `kind` field. */
|
|
4772
|
+
kind?: StringFilter;
|
|
4773
|
+
/** Filter by the object’s `maxCpuMillicores` field. */
|
|
4774
|
+
maxCpuMillicores?: BigIntFilter;
|
|
4775
|
+
/** Filter by the object’s `maxMemoryBytes` field. */
|
|
4776
|
+
maxMemoryBytes?: BigIntFilter;
|
|
4777
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
4778
|
+
memoryLimitBytes?: BigIntFilter;
|
|
4779
|
+
/** Filter by the object’s `memoryPeakUtilization` field. */
|
|
4780
|
+
memoryPeakUtilization?: BigFloatFilter;
|
|
4781
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
4782
|
+
memoryRequestBytes?: BigIntFilter;
|
|
4783
|
+
/** Filter by the object’s `memoryRequestHeadroomBytes` field. */
|
|
4784
|
+
memoryRequestHeadroomBytes?: BigIntFilter;
|
|
4785
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
4786
|
+
namespaceId?: UUIDFilter;
|
|
4787
|
+
/** Negates the expression. */
|
|
4788
|
+
not?: PlatformResourceUtilizationDailyFilter;
|
|
4789
|
+
/** Checks for any expressions in this list. */
|
|
4790
|
+
or?: PlatformResourceUtilizationDailyFilter[];
|
|
4791
|
+
/** Filter by the object’s `replicas` field. */
|
|
4792
|
+
replicas?: IntFilter;
|
|
4793
|
+
/** Filter by the object’s `resourceId` field. */
|
|
4794
|
+
resourceId?: UUIDFilter;
|
|
4795
|
+
/** Filter by the object’s `runtimeSeconds` field. */
|
|
4796
|
+
runtimeSeconds?: BigIntFilter;
|
|
4797
|
+
/** Filter by the object’s `sampleCount` field. */
|
|
4798
|
+
sampleCount?: IntFilter;
|
|
4799
|
+
}
|
|
4800
|
+
/** A filter to be used against `PlatformResourcesHealth` object types. All fields are combined with a logical ‘and.’ */
|
|
4801
|
+
export interface PlatformResourcesHealthFilter {
|
|
4802
|
+
/** Checks for all expressions in this list. */
|
|
4803
|
+
and?: PlatformResourcesHealthFilter[];
|
|
4804
|
+
/** Filter by the object’s `annotations` field. */
|
|
4805
|
+
annotations?: JSONFilter;
|
|
4806
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
4807
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
4808
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
4809
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
4810
|
+
/** Filter by the object’s `createdAt` field. */
|
|
4811
|
+
createdAt?: DatetimeFilter;
|
|
4812
|
+
/** Filter by the object’s `createdBy` field. */
|
|
4813
|
+
createdBy?: UUIDFilter;
|
|
4814
|
+
/** Filter by the object’s `errorCount` field. */
|
|
4815
|
+
errorCount?: IntFilter;
|
|
4816
|
+
/** Filter by the object’s `id` field. */
|
|
4817
|
+
id?: UUIDFilter;
|
|
4818
|
+
/** Filter by the object’s `installationId` field. */
|
|
4819
|
+
installationId?: UUIDFilter;
|
|
4820
|
+
/** Filter by the object’s `integrations` field. */
|
|
4821
|
+
integrations?: StringListFilter;
|
|
4822
|
+
/** Filter by the object’s `kind` field. */
|
|
4823
|
+
kind?: StringFilter;
|
|
4824
|
+
/** Filter by the object’s `labels` field. */
|
|
4825
|
+
labels?: JSONFilter;
|
|
4826
|
+
/** Filter by the object’s `lastError` field. */
|
|
4827
|
+
lastError?: StringFilter;
|
|
4828
|
+
/** Filter by the object’s `lastHeartbeatAt` field. */
|
|
4829
|
+
lastHeartbeatAt?: DatetimeFilter;
|
|
4830
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
4831
|
+
memoryLimitBytes?: BigIntFilter;
|
|
4832
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
4833
|
+
memoryRequestBytes?: BigIntFilter;
|
|
4834
|
+
/** Filter by the object’s `name` field. */
|
|
4835
|
+
name?: StringFilter;
|
|
4836
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
4837
|
+
namespaceId?: UUIDFilter;
|
|
4838
|
+
/** Negates the expression. */
|
|
4839
|
+
not?: PlatformResourcesHealthFilter;
|
|
4840
|
+
/** Checks for any expressions in this list. */
|
|
4841
|
+
or?: PlatformResourcesHealthFilter[];
|
|
4842
|
+
/** Filter by the object’s `replicas` field. */
|
|
4843
|
+
replicas?: IntFilter;
|
|
4844
|
+
/** Filter by the object’s `resourceDefinitionId` field. */
|
|
4845
|
+
resourceDefinitionId?: UUIDFilter;
|
|
4846
|
+
/** Filter by the object’s `slug` field. */
|
|
4847
|
+
slug?: StringFilter;
|
|
4848
|
+
/** Filter by the object’s `spec` field. */
|
|
4849
|
+
spec?: JSONFilter;
|
|
4850
|
+
/** Filter by the object’s `status` field. */
|
|
4851
|
+
status?: StringFilter;
|
|
4852
|
+
/** Filter by the object’s `statusDetail` field. */
|
|
4853
|
+
statusDetail?: StringFilter;
|
|
4854
|
+
/** Filter by the object’s `statusObserved` field. */
|
|
4855
|
+
statusObserved?: JSONFilter;
|
|
4856
|
+
/** Filter by the object’s `storageClass` field. */
|
|
4857
|
+
storageClass?: StringFilter;
|
|
4858
|
+
/** Filter by the object’s `storageSizeBytes` field. */
|
|
4859
|
+
storageSizeBytes?: BigIntFilter;
|
|
4860
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
4861
|
+
updatedAt?: DatetimeFilter;
|
|
4862
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
4863
|
+
updatedBy?: UUIDFilter;
|
|
4864
|
+
}
|
|
3806
4865
|
/** A filter to be used against `PlatformResourcesRequirementsState` object types. All fields are combined with a logical ‘and.’ */
|
|
3807
4866
|
export interface PlatformResourcesRequirementsStateFilter {
|
|
3808
4867
|
/** Checks for all expressions in this list. */
|
|
@@ -3855,6 +4914,189 @@ export interface PlatformResourcesResolvedRequirementFilter {
|
|
|
3855
4914
|
/** Filter by the object’s `slug` field. */
|
|
3856
4915
|
slug?: StringFilter;
|
|
3857
4916
|
}
|
|
4917
|
+
/** A filter to be used against `PlatformWebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
4918
|
+
export interface PlatformWebhookEndpointFilter {
|
|
4919
|
+
/** Filter by the object’s `active` field. */
|
|
4920
|
+
active?: BooleanFilter;
|
|
4921
|
+
/** Checks for all expressions in this list. */
|
|
4922
|
+
and?: PlatformWebhookEndpointFilter[];
|
|
4923
|
+
/** Filter by the object’s `createdAt` field. */
|
|
4924
|
+
createdAt?: DatetimeFilter;
|
|
4925
|
+
/** Filter by the object’s `createdBy` field. */
|
|
4926
|
+
createdBy?: UUIDFilter;
|
|
4927
|
+
/** Filter by the object’s `functionDefinition` relation. */
|
|
4928
|
+
functionDefinition?: PlatformFunctionDefinitionFilter;
|
|
4929
|
+
/** Filter by the object’s `functionDefinitionId` field. */
|
|
4930
|
+
functionDefinitionId?: UUIDFilter;
|
|
4931
|
+
/** Filter by the object’s `host` field. */
|
|
4932
|
+
host?: StringFilter;
|
|
4933
|
+
/** Filter by the object’s `id` field. */
|
|
4934
|
+
id?: UUIDFilter;
|
|
4935
|
+
/** Filter by the object’s `namespace` relation. */
|
|
4936
|
+
namespace?: PlatformNamespaceFilter;
|
|
4937
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
4938
|
+
namespaceId?: UUIDFilter;
|
|
4939
|
+
/** Negates the expression. */
|
|
4940
|
+
not?: PlatformWebhookEndpointFilter;
|
|
4941
|
+
/** Checks for any expressions in this list. */
|
|
4942
|
+
or?: PlatformWebhookEndpointFilter[];
|
|
4943
|
+
/** Filter by the object’s `path` field. */
|
|
4944
|
+
path?: StringFilter;
|
|
4945
|
+
/** Filter by the object’s `platformWebhookEventsByEndpointId` relation. */
|
|
4946
|
+
platformWebhookEventsByEndpointId?: PlatformWebhookEndpointToManyPlatformWebhookEventFilter;
|
|
4947
|
+
/** `platformWebhookEventsByEndpointId` exist. */
|
|
4948
|
+
platformWebhookEventsByEndpointIdExist?: boolean;
|
|
4949
|
+
/** Filter by the object’s `provider` field. */
|
|
4950
|
+
provider?: StringFilter;
|
|
4951
|
+
/** Filter by the object’s `replayWindowSeconds` field. */
|
|
4952
|
+
replayWindowSeconds?: IntFilter;
|
|
4953
|
+
/** Filter by the object’s `signingSecretName` field. */
|
|
4954
|
+
signingSecretName?: StringFilter;
|
|
4955
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
4956
|
+
updatedAt?: DatetimeFilter;
|
|
4957
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
4958
|
+
updatedBy?: UUIDFilter;
|
|
4959
|
+
}
|
|
4960
|
+
/** An input for mutations affecting `PlatformWebhookEndpoint` */
|
|
4961
|
+
export interface PlatformWebhookEndpointInput {
|
|
4962
|
+
/** Whether this endpoint currently accepts deliveries */
|
|
4963
|
+
active?: boolean;
|
|
4964
|
+
createdAt?: string;
|
|
4965
|
+
createdBy?: string;
|
|
4966
|
+
/** Same-scope function definition invoked on delivery. The function must list the webhook channel in access_channels. */
|
|
4967
|
+
functionDefinitionId: string;
|
|
4968
|
+
/** Inbound Host header this endpoint matches (normalized lower-case, no port) */
|
|
4969
|
+
host: string;
|
|
4970
|
+
id?: string;
|
|
4971
|
+
/** Namespace that owns this endpoint and contains its signing secret */
|
|
4972
|
+
namespaceId: string;
|
|
4973
|
+
/** Exact request path this endpoint matches (e.g. /webhooks/stripe) */
|
|
4974
|
+
path: string;
|
|
4975
|
+
/** Verification scheme: generic (HMAC), stripe, or github */
|
|
4976
|
+
provider?: string;
|
|
4977
|
+
/** Maximum age (seconds) of a signed provider timestamp before the delivery is rejected as a replay */
|
|
4978
|
+
replayWindowSeconds?: number;
|
|
4979
|
+
/** Name of the signing secret in the infra secrets store. The gateway resolves the value through the generated secrets getter — the plaintext secret is never stored here. */
|
|
4980
|
+
signingSecretName: string;
|
|
4981
|
+
updatedAt?: string;
|
|
4982
|
+
updatedBy?: string;
|
|
4983
|
+
}
|
|
4984
|
+
/** Represents an update to a `PlatformWebhookEndpoint`. Fields that are set will be updated. */
|
|
4985
|
+
export interface PlatformWebhookEndpointPatch {
|
|
4986
|
+
/** Whether this endpoint currently accepts deliveries */
|
|
4987
|
+
active?: boolean;
|
|
4988
|
+
createdAt?: string;
|
|
4989
|
+
createdBy?: string;
|
|
4990
|
+
/** Same-scope function definition invoked on delivery. The function must list the webhook channel in access_channels. */
|
|
4991
|
+
functionDefinitionId?: string;
|
|
4992
|
+
/** Inbound Host header this endpoint matches (normalized lower-case, no port) */
|
|
4993
|
+
host?: string;
|
|
4994
|
+
id?: string;
|
|
4995
|
+
/** Namespace that owns this endpoint and contains its signing secret */
|
|
4996
|
+
namespaceId?: string;
|
|
4997
|
+
/** Exact request path this endpoint matches (e.g. /webhooks/stripe) */
|
|
4998
|
+
path?: string;
|
|
4999
|
+
/** Verification scheme: generic (HMAC), stripe, or github */
|
|
5000
|
+
provider?: string;
|
|
5001
|
+
/** Maximum age (seconds) of a signed provider timestamp before the delivery is rejected as a replay */
|
|
5002
|
+
replayWindowSeconds?: number;
|
|
5003
|
+
/** Name of the signing secret in the infra secrets store. The gateway resolves the value through the generated secrets getter — the plaintext secret is never stored here. */
|
|
5004
|
+
signingSecretName?: string;
|
|
5005
|
+
updatedAt?: string;
|
|
5006
|
+
updatedBy?: string;
|
|
5007
|
+
}
|
|
5008
|
+
/** A filter to be used against many `PlatformWebhookEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
5009
|
+
export interface PlatformWebhookEndpointToManyPlatformWebhookEventFilter {
|
|
5010
|
+
/** Filters to entities where every related entity matches. */
|
|
5011
|
+
every?: PlatformWebhookEventFilter;
|
|
5012
|
+
/** Filters to entities where no related entity matches. */
|
|
5013
|
+
none?: PlatformWebhookEventFilter;
|
|
5014
|
+
/** Filters to entities where at least one related entity matches. */
|
|
5015
|
+
some?: PlatformWebhookEventFilter;
|
|
5016
|
+
}
|
|
5017
|
+
/** A filter to be used against `PlatformWebhookEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
5018
|
+
export interface PlatformWebhookEventFilter {
|
|
5019
|
+
/** Checks for all expressions in this list. */
|
|
5020
|
+
and?: PlatformWebhookEventFilter[];
|
|
5021
|
+
/** Filter by the object’s `createdAt` field. */
|
|
5022
|
+
createdAt?: DatetimeFilter;
|
|
5023
|
+
/** Filter by the object’s `endpoint` relation. */
|
|
5024
|
+
endpoint?: PlatformWebhookEndpointFilter;
|
|
5025
|
+
/** Filter by the object’s `endpointId` field. */
|
|
5026
|
+
endpointId?: UUIDFilter;
|
|
5027
|
+
/** Filter by the object’s `error` field. */
|
|
5028
|
+
error?: StringFilter;
|
|
5029
|
+
/** Filter by the object’s `externalEventId` field. */
|
|
5030
|
+
externalEventId?: StringFilter;
|
|
5031
|
+
/** Filter by the object’s `id` field. */
|
|
5032
|
+
id?: UUIDFilter;
|
|
5033
|
+
/** Filter by the object’s `invocationCreatedAt` field. */
|
|
5034
|
+
invocationCreatedAt?: DatetimeFilter;
|
|
5035
|
+
/** Filter by the object’s `invocationId` field. */
|
|
5036
|
+
invocationId?: UUIDFilter;
|
|
5037
|
+
/** Negates the expression. */
|
|
5038
|
+
not?: PlatformWebhookEventFilter;
|
|
5039
|
+
/** Checks for any expressions in this list. */
|
|
5040
|
+
or?: PlatformWebhookEventFilter[];
|
|
5041
|
+
/** Filter by the object’s `payload` field. */
|
|
5042
|
+
payload?: JSONFilter;
|
|
5043
|
+
/** Filter by the object’s `provider` field. */
|
|
5044
|
+
provider?: StringFilter;
|
|
5045
|
+
/** Filter by the object’s `providerTimestamp` field. */
|
|
5046
|
+
providerTimestamp?: DatetimeFilter;
|
|
5047
|
+
/** Filter by the object’s `status` field. */
|
|
5048
|
+
status?: StringFilter;
|
|
5049
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
5050
|
+
updatedAt?: DatetimeFilter;
|
|
5051
|
+
}
|
|
5052
|
+
/** An input for mutations affecting `PlatformWebhookEvent` */
|
|
5053
|
+
export interface PlatformWebhookEventInput {
|
|
5054
|
+
createdAt?: string;
|
|
5055
|
+
/** Endpoint that accepted this delivery */
|
|
5056
|
+
endpointId: string;
|
|
5057
|
+
/** Failure detail when status = failed */
|
|
5058
|
+
error?: string;
|
|
5059
|
+
/** Provider-supplied delivery/event id used for idempotent dedup */
|
|
5060
|
+
externalEventId: string;
|
|
5061
|
+
id?: string;
|
|
5062
|
+
/** created_at of the enqueued invocation (partition key companion to invocation_id) */
|
|
5063
|
+
invocationCreatedAt?: string;
|
|
5064
|
+
/** Pending function invocation enqueued for this delivery (NULL until enqueued) */
|
|
5065
|
+
invocationId?: string;
|
|
5066
|
+
/** Parsed delivery payload (parsed only after signature verification over the exact raw bytes) */
|
|
5067
|
+
payload?: unknown;
|
|
5068
|
+
/** Provider that produced this delivery (copied from the endpoint at acceptance) */
|
|
5069
|
+
provider: string;
|
|
5070
|
+
/** Signed provider timestamp used for replay-window validation (NULL when the provider supplies none) */
|
|
5071
|
+
providerTimestamp?: string;
|
|
5072
|
+
/** Acceptance lifecycle: accepted, processed, failed */
|
|
5073
|
+
status?: string;
|
|
5074
|
+
updatedAt?: string;
|
|
5075
|
+
}
|
|
5076
|
+
/** Represents an update to a `PlatformWebhookEvent`. Fields that are set will be updated. */
|
|
5077
|
+
export interface PlatformWebhookEventPatch {
|
|
5078
|
+
createdAt?: string;
|
|
5079
|
+
/** Endpoint that accepted this delivery */
|
|
5080
|
+
endpointId?: string;
|
|
5081
|
+
/** Failure detail when status = failed */
|
|
5082
|
+
error?: string;
|
|
5083
|
+
/** Provider-supplied delivery/event id used for idempotent dedup */
|
|
5084
|
+
externalEventId?: string;
|
|
5085
|
+
id?: string;
|
|
5086
|
+
/** created_at of the enqueued invocation (partition key companion to invocation_id) */
|
|
5087
|
+
invocationCreatedAt?: string;
|
|
5088
|
+
/** Pending function invocation enqueued for this delivery (NULL until enqueued) */
|
|
5089
|
+
invocationId?: string;
|
|
5090
|
+
/** Parsed delivery payload (parsed only after signature verification over the exact raw bytes) */
|
|
5091
|
+
payload?: unknown;
|
|
5092
|
+
/** Provider that produced this delivery (copied from the endpoint at acceptance) */
|
|
5093
|
+
provider?: string;
|
|
5094
|
+
/** Signed provider timestamp used for replay-window validation (NULL when the provider supplies none) */
|
|
5095
|
+
providerTimestamp?: string;
|
|
5096
|
+
/** Acceptance lifecycle: accepted, processed, failed */
|
|
5097
|
+
status?: string;
|
|
5098
|
+
updatedAt?: string;
|
|
5099
|
+
}
|
|
3858
5100
|
export interface ProvisionBucketInput {
|
|
3859
5101
|
/** The logical bucket key (e.g., "public", "private") */
|
|
3860
5102
|
bucketKey: string;
|
|
@@ -3898,6 +5140,10 @@ export interface ResourceDefinitionFilter {
|
|
|
3898
5140
|
not?: ResourceDefinitionFilter;
|
|
3899
5141
|
/** Checks for any expressions in this list. */
|
|
3900
5142
|
or?: ResourceDefinitionFilter[];
|
|
5143
|
+
/** Filter by the object’s `resources` relation. */
|
|
5144
|
+
resources?: ResourceDefinitionToManyResourceFilter;
|
|
5145
|
+
/** `resources` exist. */
|
|
5146
|
+
resourcesExist?: boolean;
|
|
3901
5147
|
/** Filter by the object’s `slug` field. */
|
|
3902
5148
|
slug?: StringFilter;
|
|
3903
5149
|
/** Filter by the object’s `stepUpMinAge` field. */
|
|
@@ -3922,7 +5168,7 @@ export interface ResourceDefinitionInput {
|
|
|
3922
5168
|
id?: string;
|
|
3923
5169
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource definition. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
3924
5170
|
integrations?: string[];
|
|
3925
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate, or custom kinds */
|
|
5171
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate, or custom kinds */
|
|
3926
5172
|
kind: string;
|
|
3927
5173
|
/** Key/value pairs for selecting and filtering definitions */
|
|
3928
5174
|
labels?: unknown;
|
|
@@ -3956,7 +5202,7 @@ export interface ResourceDefinitionPatch {
|
|
|
3956
5202
|
id?: string;
|
|
3957
5203
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource definition. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
3958
5204
|
integrations?: string[];
|
|
3959
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate, or custom kinds */
|
|
5205
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate, or custom kinds */
|
|
3960
5206
|
kind?: string;
|
|
3961
5207
|
/** Key/value pairs for selecting and filtering definitions */
|
|
3962
5208
|
labels?: unknown;
|
|
@@ -3975,6 +5221,15 @@ export interface ResourceDefinitionPatch {
|
|
|
3975
5221
|
updatedAt?: string;
|
|
3976
5222
|
updatedBy?: string;
|
|
3977
5223
|
}
|
|
5224
|
+
/** A filter to be used against many `Resource` object types. All fields are combined with a logical ‘and.’ */
|
|
5225
|
+
export interface ResourceDefinitionToManyResourceFilter {
|
|
5226
|
+
/** Filters to entities where every related entity matches. */
|
|
5227
|
+
every?: ResourceFilter;
|
|
5228
|
+
/** Filters to entities where no related entity matches. */
|
|
5229
|
+
none?: ResourceFilter;
|
|
5230
|
+
/** Filters to entities where at least one related entity matches. */
|
|
5231
|
+
some?: ResourceFilter;
|
|
5232
|
+
}
|
|
3978
5233
|
/** A filter to be used against `ResourceEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
3979
5234
|
export interface ResourceEventFilter {
|
|
3980
5235
|
/** Filter by the object’s `actorId` field. */
|
|
@@ -4044,6 +5299,10 @@ export interface ResourceFilter {
|
|
|
4044
5299
|
and?: ResourceFilter[];
|
|
4045
5300
|
/** Filter by the object’s `annotations` field. */
|
|
4046
5301
|
annotations?: JSONFilter;
|
|
5302
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
5303
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
5304
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
5305
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
4047
5306
|
/** Filter by the object’s `createdAt` field. */
|
|
4048
5307
|
createdAt?: DatetimeFilter;
|
|
4049
5308
|
/** Filter by the object’s `createdBy` field. */
|
|
@@ -4054,6 +5313,12 @@ export interface ResourceFilter {
|
|
|
4054
5313
|
errorCount?: IntFilter;
|
|
4055
5314
|
/** Filter by the object’s `id` field. */
|
|
4056
5315
|
id?: UUIDFilter;
|
|
5316
|
+
/** Filter by the object’s `installation` relation. */
|
|
5317
|
+
installation?: ResourceInstallationFilter;
|
|
5318
|
+
/** A related `installation` exists. */
|
|
5319
|
+
installationExists?: boolean;
|
|
5320
|
+
/** Filter by the object’s `installationId` field. */
|
|
5321
|
+
installationId?: UUIDFilter;
|
|
4057
5322
|
/** Filter by the object’s `integrations` field. */
|
|
4058
5323
|
integrations?: StringListFilter;
|
|
4059
5324
|
/** Filter by the object’s `kind` field. */
|
|
@@ -4062,6 +5327,12 @@ export interface ResourceFilter {
|
|
|
4062
5327
|
labels?: JSONFilter;
|
|
4063
5328
|
/** Filter by the object’s `lastError` field. */
|
|
4064
5329
|
lastError?: StringFilter;
|
|
5330
|
+
/** Filter by the object’s `lastHeartbeatAt` field. */
|
|
5331
|
+
lastHeartbeatAt?: DatetimeFilter;
|
|
5332
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
5333
|
+
memoryLimitBytes?: BigIntFilter;
|
|
5334
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
5335
|
+
memoryRequestBytes?: BigIntFilter;
|
|
4065
5336
|
/** Filter by the object’s `name` field. */
|
|
4066
5337
|
name?: StringFilter;
|
|
4067
5338
|
/** Filter by the object’s `namespace` relation. */
|
|
@@ -4072,6 +5343,8 @@ export interface ResourceFilter {
|
|
|
4072
5343
|
not?: ResourceFilter;
|
|
4073
5344
|
/** Checks for any expressions in this list. */
|
|
4074
5345
|
or?: ResourceFilter[];
|
|
5346
|
+
/** Filter by the object’s `replicas` field. */
|
|
5347
|
+
replicas?: IntFilter;
|
|
4075
5348
|
/** Filter by the object’s `resourceDefinition` relation. */
|
|
4076
5349
|
resourceDefinition?: ResourceDefinitionFilter;
|
|
4077
5350
|
/** A related `resourceDefinition` exists. */
|
|
@@ -4090,6 +5363,10 @@ export interface ResourceFilter {
|
|
|
4090
5363
|
status?: StringFilter;
|
|
4091
5364
|
/** Filter by the object’s `statusObserved` field. */
|
|
4092
5365
|
statusObserved?: JSONFilter;
|
|
5366
|
+
/** Filter by the object’s `storageClass` field. */
|
|
5367
|
+
storageClass?: StringFilter;
|
|
5368
|
+
/** Filter by the object’s `storageSizeBytes` field. */
|
|
5369
|
+
storageSizeBytes?: BigIntFilter;
|
|
4093
5370
|
/** Filter by the object’s `updatedAt` field. */
|
|
4094
5371
|
updatedAt?: DatetimeFilter;
|
|
4095
5372
|
/** Filter by the object’s `updatedBy` field. */
|
|
@@ -4106,14 +5383,18 @@ export interface ResourceInput {
|
|
|
4106
5383
|
/** Cumulative error count for this resource */
|
|
4107
5384
|
errorCount?: number;
|
|
4108
5385
|
id?: string;
|
|
5386
|
+
/** Installation ("release") this resource belongs to (NULL for standalone resources) */
|
|
5387
|
+
installationId?: string;
|
|
4109
5388
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
4110
5389
|
integrations?: string[];
|
|
4111
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate */
|
|
5390
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate */
|
|
4112
5391
|
kind: string;
|
|
4113
5392
|
/** Key/value pairs for selecting and filtering resources */
|
|
4114
5393
|
labels?: unknown;
|
|
4115
5394
|
/** Most recent provisioning or runtime error message */
|
|
4116
5395
|
lastError?: string;
|
|
5396
|
+
/** Last time a usage heartbeat was received for this resource (NULL until first heartbeat) */
|
|
5397
|
+
lastHeartbeatAt?: string;
|
|
4117
5398
|
/** Human-readable resource name */
|
|
4118
5399
|
name: string;
|
|
4119
5400
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
@@ -4128,13 +5409,138 @@ export interface ResourceInput {
|
|
|
4128
5409
|
slug: string;
|
|
4129
5410
|
/** Desired state — kind-specific configuration (image, ports, resources, etc.). Opaque to DB; validated by K8s. */
|
|
4130
5411
|
spec?: unknown;
|
|
4131
|
-
/** Resource lifecycle status: pending, provisioning, active, failed, draining, deleting */
|
|
5412
|
+
/** Resource lifecycle status: pending, provisioning, active, completed, failed, draining, deleting */
|
|
4132
5413
|
status?: string;
|
|
4133
5414
|
/** Observed state from K8s — populated by handlers after reconciliation (service_url, clone_url, replicas, etc.) */
|
|
4134
5415
|
statusObserved?: unknown;
|
|
4135
5416
|
updatedAt?: string;
|
|
4136
5417
|
updatedBy?: string;
|
|
4137
5418
|
}
|
|
5419
|
+
/** A filter to be used against `ResourceInstallation` object types. All fields are combined with a logical ‘and.’ */
|
|
5420
|
+
export interface ResourceInstallationFilter {
|
|
5421
|
+
/** Checks for all expressions in this list. */
|
|
5422
|
+
and?: ResourceInstallationFilter[];
|
|
5423
|
+
/** Filter by the object’s `commitId` field. */
|
|
5424
|
+
commitId?: UUIDFilter;
|
|
5425
|
+
/** Filter by the object’s `createdAt` field. */
|
|
5426
|
+
createdAt?: DatetimeFilter;
|
|
5427
|
+
/** Filter by the object’s `createdBy` field. */
|
|
5428
|
+
createdBy?: UUIDFilter;
|
|
5429
|
+
/** Filter by the object’s `databaseId` field. */
|
|
5430
|
+
databaseId?: UUIDFilter;
|
|
5431
|
+
/** Filter by the object’s `id` field. */
|
|
5432
|
+
id?: UUIDFilter;
|
|
5433
|
+
/** Filter by the object’s `name` field. */
|
|
5434
|
+
name?: StringFilter;
|
|
5435
|
+
/** Filter by the object’s `namespace` relation. */
|
|
5436
|
+
namespace?: NamespaceFilter;
|
|
5437
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
5438
|
+
namespaceId?: UUIDFilter;
|
|
5439
|
+
/** Negates the expression. */
|
|
5440
|
+
not?: ResourceInstallationFilter;
|
|
5441
|
+
/** Checks for any expressions in this list. */
|
|
5442
|
+
or?: ResourceInstallationFilter[];
|
|
5443
|
+
/** Filter by the object’s `params` field. */
|
|
5444
|
+
params?: JSONFilter;
|
|
5445
|
+
/** Filter by the object’s `resourcesByInstallationId` relation. */
|
|
5446
|
+
resourcesByInstallationId?: ResourceInstallationToManyResourceFilter;
|
|
5447
|
+
/** `resourcesByInstallationId` exist. */
|
|
5448
|
+
resourcesByInstallationIdExist?: boolean;
|
|
5449
|
+
/** Filter by the object’s `revision` field. */
|
|
5450
|
+
revision?: IntFilter;
|
|
5451
|
+
/** Filter by the object’s `slug` field. */
|
|
5452
|
+
slug?: StringFilter;
|
|
5453
|
+
/** Filter by the object’s `status` field. */
|
|
5454
|
+
status?: StringFilter;
|
|
5455
|
+
/** Filter by the object’s `storeId` field. */
|
|
5456
|
+
storeId?: UUIDFilter;
|
|
5457
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
5458
|
+
updatedAt?: DatetimeFilter;
|
|
5459
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
5460
|
+
updatedBy?: UUIDFilter;
|
|
5461
|
+
}
|
|
5462
|
+
/** An input for mutations affecting `ResourceInstallation` */
|
|
5463
|
+
export interface ResourceInstallationInput {
|
|
5464
|
+
/** Infra store commit for the current params (stamped by the versioned trigger on every write) */
|
|
5465
|
+
commitId?: string;
|
|
5466
|
+
createdAt?: string;
|
|
5467
|
+
createdBy?: string;
|
|
5468
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
5469
|
+
databaseId: string;
|
|
5470
|
+
id?: string;
|
|
5471
|
+
/** Human-readable release name */
|
|
5472
|
+
name: string;
|
|
5473
|
+
/** Namespace this installation belongs to (security boundary) */
|
|
5474
|
+
namespaceId: string;
|
|
5475
|
+
/** Release parameters — the readily-cached head; history lives in the infra store. Never contains secret/config literals. */
|
|
5476
|
+
params?: unknown;
|
|
5477
|
+
/** Monotonic release revision counter: install starts at 1, bumped on every upgrade/rollback */
|
|
5478
|
+
revision?: number;
|
|
5479
|
+
/** URL-safe release identifier, unique within the namespace; the release's path in the infra tree is [resource_installation, slug] */
|
|
5480
|
+
slug: string;
|
|
5481
|
+
/** Installation lifecycle status: pending, installed, uninstalled, failed */
|
|
5482
|
+
status?: string;
|
|
5483
|
+
/** Infra merkle store holding this installation's history (stamped by the versioned trigger) */
|
|
5484
|
+
storeId?: string;
|
|
5485
|
+
updatedAt?: string;
|
|
5486
|
+
updatedBy?: string;
|
|
5487
|
+
}
|
|
5488
|
+
/** Represents an update to a `ResourceInstallation`. Fields that are set will be updated. */
|
|
5489
|
+
export interface ResourceInstallationPatch {
|
|
5490
|
+
/** Infra store commit for the current params (stamped by the versioned trigger on every write) */
|
|
5491
|
+
commitId?: string;
|
|
5492
|
+
createdAt?: string;
|
|
5493
|
+
createdBy?: string;
|
|
5494
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
5495
|
+
databaseId?: string;
|
|
5496
|
+
id?: string;
|
|
5497
|
+
/** Human-readable release name */
|
|
5498
|
+
name?: string;
|
|
5499
|
+
/** Namespace this installation belongs to (security boundary) */
|
|
5500
|
+
namespaceId?: string;
|
|
5501
|
+
/** Release parameters — the readily-cached head; history lives in the infra store. Never contains secret/config literals. */
|
|
5502
|
+
params?: unknown;
|
|
5503
|
+
/** Monotonic release revision counter: install starts at 1, bumped on every upgrade/rollback */
|
|
5504
|
+
revision?: number;
|
|
5505
|
+
/** URL-safe release identifier, unique within the namespace; the release's path in the infra tree is [resource_installation, slug] */
|
|
5506
|
+
slug?: string;
|
|
5507
|
+
/** Installation lifecycle status: pending, installed, uninstalled, failed */
|
|
5508
|
+
status?: string;
|
|
5509
|
+
/** Infra merkle store holding this installation's history (stamped by the versioned trigger) */
|
|
5510
|
+
storeId?: string;
|
|
5511
|
+
updatedAt?: string;
|
|
5512
|
+
updatedBy?: string;
|
|
5513
|
+
}
|
|
5514
|
+
/** A filter to be used against many `Resource` object types. All fields are combined with a logical ‘and.’ */
|
|
5515
|
+
export interface ResourceInstallationToManyResourceFilter {
|
|
5516
|
+
/** Filters to entities where every related entity matches. */
|
|
5517
|
+
every?: ResourceFilter;
|
|
5518
|
+
/** Filters to entities where no related entity matches. */
|
|
5519
|
+
none?: ResourceFilter;
|
|
5520
|
+
/** Filters to entities where at least one related entity matches. */
|
|
5521
|
+
some?: ResourceFilter;
|
|
5522
|
+
}
|
|
5523
|
+
export interface ResourceInstallationsInstallInput {
|
|
5524
|
+
clientMutationId?: string;
|
|
5525
|
+
pName?: string;
|
|
5526
|
+
pNamespaceId?: string;
|
|
5527
|
+
pParams?: unknown;
|
|
5528
|
+
pSlug?: string;
|
|
5529
|
+
}
|
|
5530
|
+
export interface ResourceInstallationsRollbackInput {
|
|
5531
|
+
clientMutationId?: string;
|
|
5532
|
+
pCommitId?: string;
|
|
5533
|
+
pInstallationId?: string;
|
|
5534
|
+
}
|
|
5535
|
+
export interface ResourceInstallationsUninstallInput {
|
|
5536
|
+
clientMutationId?: string;
|
|
5537
|
+
pInstallationId?: string;
|
|
5538
|
+
}
|
|
5539
|
+
export interface ResourceInstallationsUpgradeInput {
|
|
5540
|
+
clientMutationId?: string;
|
|
5541
|
+
pInstallationId?: string;
|
|
5542
|
+
pParams?: unknown;
|
|
5543
|
+
}
|
|
4138
5544
|
/** Represents an update to a `Resource`. Fields that are set will be updated. */
|
|
4139
5545
|
export interface ResourcePatch {
|
|
4140
5546
|
/** Freeform metadata for tooling and operational notes */
|
|
@@ -4146,14 +5552,18 @@ export interface ResourcePatch {
|
|
|
4146
5552
|
/** Cumulative error count for this resource */
|
|
4147
5553
|
errorCount?: number;
|
|
4148
5554
|
id?: string;
|
|
5555
|
+
/** Installation ("release") this resource belongs to (NULL for standalone resources) */
|
|
5556
|
+
installationId?: string;
|
|
4149
5557
|
/** Provider slugs (e.g. mailgun, postgres) associated with this resource. The UI uses this to auto-fill required_secrets and required_configs from integration_providers. */
|
|
4150
5558
|
integrations?: string[];
|
|
4151
|
-
/** Resource kind: Deployment, StatefulSet, Service, Ingress, Certificate */
|
|
5559
|
+
/** Resource kind: Deployment, StatefulSet, Job, Service, Ingress, Certificate */
|
|
4152
5560
|
kind?: string;
|
|
4153
5561
|
/** Key/value pairs for selecting and filtering resources */
|
|
4154
5562
|
labels?: unknown;
|
|
4155
5563
|
/** Most recent provisioning or runtime error message */
|
|
4156
5564
|
lastError?: string;
|
|
5565
|
+
/** Last time a usage heartbeat was received for this resource (NULL until first heartbeat) */
|
|
5566
|
+
lastHeartbeatAt?: string;
|
|
4157
5567
|
/** Human-readable resource name */
|
|
4158
5568
|
name?: string;
|
|
4159
5569
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
@@ -4168,7 +5578,7 @@ export interface ResourcePatch {
|
|
|
4168
5578
|
slug?: string;
|
|
4169
5579
|
/** Desired state — kind-specific configuration (image, ports, resources, etc.). Opaque to DB; validated by K8s. */
|
|
4170
5580
|
spec?: unknown;
|
|
4171
|
-
/** Resource lifecycle status: pending, provisioning, active, failed, draining, deleting */
|
|
5581
|
+
/** Resource lifecycle status: pending, provisioning, active, completed, failed, draining, deleting */
|
|
4172
5582
|
status?: string;
|
|
4173
5583
|
/** Observed state from K8s — populated by handlers after reconciliation (service_url, clone_url, replicas, etc.) */
|
|
4174
5584
|
statusObserved?: unknown;
|
|
@@ -4255,6 +5665,270 @@ export interface ResourceToManyResourceStatusCheckFilter {
|
|
|
4255
5665
|
/** Filters to entities where at least one related entity matches. */
|
|
4256
5666
|
some?: ResourceStatusCheckFilter;
|
|
4257
5667
|
}
|
|
5668
|
+
/** A filter to be used against `ResourceUsageLog` object types. All fields are combined with a logical ‘and.’ */
|
|
5669
|
+
export interface ResourceUsageLogFilter {
|
|
5670
|
+
/** Checks for all expressions in this list. */
|
|
5671
|
+
and?: ResourceUsageLogFilter[];
|
|
5672
|
+
/** Filter by the object’s `cpuMillicores` field. */
|
|
5673
|
+
cpuMillicores?: BigIntFilter;
|
|
5674
|
+
/** Filter by the object’s `databaseId` field. */
|
|
5675
|
+
databaseId?: UUIDFilter;
|
|
5676
|
+
/** Filter by the object’s `id` field. */
|
|
5677
|
+
id?: UUIDFilter;
|
|
5678
|
+
/** Filter by the object’s `intervalSeconds` field. */
|
|
5679
|
+
intervalSeconds?: IntFilter;
|
|
5680
|
+
/** Filter by the object’s `memoryBytes` field. */
|
|
5681
|
+
memoryBytes?: BigIntFilter;
|
|
5682
|
+
/** Filter by the object’s `metrics` field. */
|
|
5683
|
+
metrics?: JSONFilter;
|
|
5684
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
5685
|
+
namespaceId?: UUIDFilter;
|
|
5686
|
+
/** Negates the expression. */
|
|
5687
|
+
not?: ResourceUsageLogFilter;
|
|
5688
|
+
/** Checks for any expressions in this list. */
|
|
5689
|
+
or?: ResourceUsageLogFilter[];
|
|
5690
|
+
/** Filter by the object’s `resourceId` field. */
|
|
5691
|
+
resourceId?: UUIDFilter;
|
|
5692
|
+
/** Filter by the object’s `sampledAt` field. */
|
|
5693
|
+
sampledAt?: DatetimeFilter;
|
|
5694
|
+
/** Filter by the object’s `source` field. */
|
|
5695
|
+
source?: StringFilter;
|
|
5696
|
+
}
|
|
5697
|
+
/** An input for mutations affecting `ResourceUsageLog` */
|
|
5698
|
+
export interface ResourceUsageLogInput {
|
|
5699
|
+
/** CPU gauge in millicores at sample time (NULL when unknown) */
|
|
5700
|
+
cpuMillicores?: string;
|
|
5701
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
5702
|
+
databaseId: string;
|
|
5703
|
+
/** Unique sample identifier */
|
|
5704
|
+
id?: string;
|
|
5705
|
+
/** Seconds covered by this sample — runtime is SUM(interval_seconds) */
|
|
5706
|
+
intervalSeconds: number;
|
|
5707
|
+
/** Memory gauge in bytes at sample time (NULL when unknown) */
|
|
5708
|
+
memoryBytes?: string;
|
|
5709
|
+
/** Structured gauges: replicas, pod counts, phases, and other producer-specific metrics */
|
|
5710
|
+
metrics?: unknown;
|
|
5711
|
+
/** Namespace the measured workload runs in */
|
|
5712
|
+
namespaceId: string;
|
|
5713
|
+
/** Resource this sample measures (NULL for namespace-grain catch-all rows) */
|
|
5714
|
+
resourceId?: string;
|
|
5715
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
5716
|
+
sampledAt?: string;
|
|
5717
|
+
/** Sample producer: self (workload heartbeat) or observer (reconciler) */
|
|
5718
|
+
source: string;
|
|
5719
|
+
}
|
|
5720
|
+
/** Represents an update to a `ResourceUsageLog`. Fields that are set will be updated. */
|
|
5721
|
+
export interface ResourceUsageLogPatch {
|
|
5722
|
+
/** CPU gauge in millicores at sample time (NULL when unknown) */
|
|
5723
|
+
cpuMillicores?: string;
|
|
5724
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
5725
|
+
databaseId?: string;
|
|
5726
|
+
/** Unique sample identifier */
|
|
5727
|
+
id?: string;
|
|
5728
|
+
/** Seconds covered by this sample — runtime is SUM(interval_seconds) */
|
|
5729
|
+
intervalSeconds?: number;
|
|
5730
|
+
/** Memory gauge in bytes at sample time (NULL when unknown) */
|
|
5731
|
+
memoryBytes?: string;
|
|
5732
|
+
/** Structured gauges: replicas, pod counts, phases, and other producer-specific metrics */
|
|
5733
|
+
metrics?: unknown;
|
|
5734
|
+
/** Namespace the measured workload runs in */
|
|
5735
|
+
namespaceId?: string;
|
|
5736
|
+
/** Resource this sample measures (NULL for namespace-grain catch-all rows) */
|
|
5737
|
+
resourceId?: string;
|
|
5738
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
5739
|
+
sampledAt?: string;
|
|
5740
|
+
/** Sample producer: self (workload heartbeat) or observer (reconciler) */
|
|
5741
|
+
source?: string;
|
|
5742
|
+
}
|
|
5743
|
+
/** A filter to be used against `ResourceUsageSummary` object types. All fields are combined with a logical ‘and.’ */
|
|
5744
|
+
export interface ResourceUsageSummaryFilter {
|
|
5745
|
+
/** Checks for all expressions in this list. */
|
|
5746
|
+
and?: ResourceUsageSummaryFilter[];
|
|
5747
|
+
/** Filter by the object’s `databaseId` field. */
|
|
5748
|
+
databaseId?: UUIDFilter;
|
|
5749
|
+
/** Filter by the object’s `date` field. */
|
|
5750
|
+
date?: DateFilter;
|
|
5751
|
+
/** Filter by the object’s `gbSeconds` field. */
|
|
5752
|
+
gbSeconds?: BigFloatFilter;
|
|
5753
|
+
/** Filter by the object’s `id` field. */
|
|
5754
|
+
id?: UUIDFilter;
|
|
5755
|
+
/** Filter by the object’s `maxCpuMillicores` field. */
|
|
5756
|
+
maxCpuMillicores?: BigIntFilter;
|
|
5757
|
+
/** Filter by the object’s `maxMemoryBytes` field. */
|
|
5758
|
+
maxMemoryBytes?: BigIntFilter;
|
|
5759
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
5760
|
+
namespaceId?: UUIDFilter;
|
|
5761
|
+
/** Negates the expression. */
|
|
5762
|
+
not?: ResourceUsageSummaryFilter;
|
|
5763
|
+
/** Checks for any expressions in this list. */
|
|
5764
|
+
or?: ResourceUsageSummaryFilter[];
|
|
5765
|
+
/** Filter by the object’s `resourceId` field. */
|
|
5766
|
+
resourceId?: UUIDFilter;
|
|
5767
|
+
/** Filter by the object’s `runtimeSeconds` field. */
|
|
5768
|
+
runtimeSeconds?: BigIntFilter;
|
|
5769
|
+
/** Filter by the object’s `sampleCount` field. */
|
|
5770
|
+
sampleCount?: IntFilter;
|
|
5771
|
+
}
|
|
5772
|
+
/** An input for mutations affecting `ResourceUsageSummary` */
|
|
5773
|
+
export interface ResourceUsageSummaryInput {
|
|
5774
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
5775
|
+
databaseId: string;
|
|
5776
|
+
/** Day this summary covers (partition key) */
|
|
5777
|
+
date: string;
|
|
5778
|
+
/** Memory usage for the day — SUM(memory_bytes * interval_seconds) normalized to GB-seconds */
|
|
5779
|
+
gbSeconds?: string;
|
|
5780
|
+
/** Unique usage summary identifier */
|
|
5781
|
+
id?: string;
|
|
5782
|
+
/** Maximum CPU gauge observed during the day (NULL when never reported) */
|
|
5783
|
+
maxCpuMillicores?: string;
|
|
5784
|
+
/** Maximum memory gauge observed during the day (NULL when never reported) */
|
|
5785
|
+
maxMemoryBytes?: string;
|
|
5786
|
+
/** Namespace the resource runs in */
|
|
5787
|
+
namespaceId: string;
|
|
5788
|
+
/** Resource this summary covers (NULL for namespace-grain catch-all summaries) */
|
|
5789
|
+
resourceId?: string;
|
|
5790
|
+
/** Total measured runtime for the day — SUM(interval_seconds) */
|
|
5791
|
+
runtimeSeconds?: string;
|
|
5792
|
+
/** Number of raw samples aggregated into this summary */
|
|
5793
|
+
sampleCount?: number;
|
|
5794
|
+
}
|
|
5795
|
+
/** Represents an update to a `ResourceUsageSummary`. Fields that are set will be updated. */
|
|
5796
|
+
export interface ResourceUsageSummaryPatch {
|
|
5797
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
5798
|
+
databaseId?: string;
|
|
5799
|
+
/** Day this summary covers (partition key) */
|
|
5800
|
+
date?: string;
|
|
5801
|
+
/** Memory usage for the day — SUM(memory_bytes * interval_seconds) normalized to GB-seconds */
|
|
5802
|
+
gbSeconds?: string;
|
|
5803
|
+
/** Unique usage summary identifier */
|
|
5804
|
+
id?: string;
|
|
5805
|
+
/** Maximum CPU gauge observed during the day (NULL when never reported) */
|
|
5806
|
+
maxCpuMillicores?: string;
|
|
5807
|
+
/** Maximum memory gauge observed during the day (NULL when never reported) */
|
|
5808
|
+
maxMemoryBytes?: string;
|
|
5809
|
+
/** Namespace the resource runs in */
|
|
5810
|
+
namespaceId?: string;
|
|
5811
|
+
/** Resource this summary covers (NULL for namespace-grain catch-all summaries) */
|
|
5812
|
+
resourceId?: string;
|
|
5813
|
+
/** Total measured runtime for the day — SUM(interval_seconds) */
|
|
5814
|
+
runtimeSeconds?: string;
|
|
5815
|
+
/** Number of raw samples aggregated into this summary */
|
|
5816
|
+
sampleCount?: number;
|
|
5817
|
+
}
|
|
5818
|
+
/** A filter to be used against `ResourceUtilizationDaily` object types. All fields are combined with a logical ‘and.’ */
|
|
5819
|
+
export interface ResourceUtilizationDailyFilter {
|
|
5820
|
+
/** Checks for all expressions in this list. */
|
|
5821
|
+
and?: ResourceUtilizationDailyFilter[];
|
|
5822
|
+
/** Filter by the object’s `avgMemoryBytes` field. */
|
|
5823
|
+
avgMemoryBytes?: BigIntFilter;
|
|
5824
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
5825
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
5826
|
+
/** Filter by the object’s `cpuPeakUtilization` field. */
|
|
5827
|
+
cpuPeakUtilization?: BigFloatFilter;
|
|
5828
|
+
/** Filter by the object’s `cpuRequestHeadroomMillicores` field. */
|
|
5829
|
+
cpuRequestHeadroomMillicores?: BigIntFilter;
|
|
5830
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
5831
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
5832
|
+
/** Filter by the object’s `date` field. */
|
|
5833
|
+
date?: DateFilter;
|
|
5834
|
+
/** Filter by the object’s `gbSeconds` field. */
|
|
5835
|
+
gbSeconds?: BigFloatFilter;
|
|
5836
|
+
/** Filter by the object’s `kind` field. */
|
|
5837
|
+
kind?: StringFilter;
|
|
5838
|
+
/** Filter by the object’s `maxCpuMillicores` field. */
|
|
5839
|
+
maxCpuMillicores?: BigIntFilter;
|
|
5840
|
+
/** Filter by the object’s `maxMemoryBytes` field. */
|
|
5841
|
+
maxMemoryBytes?: BigIntFilter;
|
|
5842
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
5843
|
+
memoryLimitBytes?: BigIntFilter;
|
|
5844
|
+
/** Filter by the object’s `memoryPeakUtilization` field. */
|
|
5845
|
+
memoryPeakUtilization?: BigFloatFilter;
|
|
5846
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
5847
|
+
memoryRequestBytes?: BigIntFilter;
|
|
5848
|
+
/** Filter by the object’s `memoryRequestHeadroomBytes` field. */
|
|
5849
|
+
memoryRequestHeadroomBytes?: BigIntFilter;
|
|
5850
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
5851
|
+
namespaceId?: UUIDFilter;
|
|
5852
|
+
/** Negates the expression. */
|
|
5853
|
+
not?: ResourceUtilizationDailyFilter;
|
|
5854
|
+
/** Checks for any expressions in this list. */
|
|
5855
|
+
or?: ResourceUtilizationDailyFilter[];
|
|
5856
|
+
/** Filter by the object’s `replicas` field. */
|
|
5857
|
+
replicas?: IntFilter;
|
|
5858
|
+
/** Filter by the object’s `resourceId` field. */
|
|
5859
|
+
resourceId?: UUIDFilter;
|
|
5860
|
+
/** Filter by the object’s `runtimeSeconds` field. */
|
|
5861
|
+
runtimeSeconds?: BigIntFilter;
|
|
5862
|
+
/** Filter by the object’s `sampleCount` field. */
|
|
5863
|
+
sampleCount?: IntFilter;
|
|
5864
|
+
}
|
|
5865
|
+
/** A filter to be used against `ResourcesHealth` object types. All fields are combined with a logical ‘and.’ */
|
|
5866
|
+
export interface ResourcesHealthFilter {
|
|
5867
|
+
/** Checks for all expressions in this list. */
|
|
5868
|
+
and?: ResourcesHealthFilter[];
|
|
5869
|
+
/** Filter by the object’s `annotations` field. */
|
|
5870
|
+
annotations?: JSONFilter;
|
|
5871
|
+
/** Filter by the object’s `cpuLimitMillicores` field. */
|
|
5872
|
+
cpuLimitMillicores?: BigIntFilter;
|
|
5873
|
+
/** Filter by the object’s `cpuRequestMillicores` field. */
|
|
5874
|
+
cpuRequestMillicores?: BigIntFilter;
|
|
5875
|
+
/** Filter by the object’s `createdAt` field. */
|
|
5876
|
+
createdAt?: DatetimeFilter;
|
|
5877
|
+
/** Filter by the object’s `createdBy` field. */
|
|
5878
|
+
createdBy?: UUIDFilter;
|
|
5879
|
+
/** Filter by the object’s `databaseId` field. */
|
|
5880
|
+
databaseId?: UUIDFilter;
|
|
5881
|
+
/** Filter by the object’s `errorCount` field. */
|
|
5882
|
+
errorCount?: IntFilter;
|
|
5883
|
+
/** Filter by the object’s `id` field. */
|
|
5884
|
+
id?: UUIDFilter;
|
|
5885
|
+
/** Filter by the object’s `installationId` field. */
|
|
5886
|
+
installationId?: UUIDFilter;
|
|
5887
|
+
/** Filter by the object’s `integrations` field. */
|
|
5888
|
+
integrations?: StringListFilter;
|
|
5889
|
+
/** Filter by the object’s `kind` field. */
|
|
5890
|
+
kind?: StringFilter;
|
|
5891
|
+
/** Filter by the object’s `labels` field. */
|
|
5892
|
+
labels?: JSONFilter;
|
|
5893
|
+
/** Filter by the object’s `lastError` field. */
|
|
5894
|
+
lastError?: StringFilter;
|
|
5895
|
+
/** Filter by the object’s `lastHeartbeatAt` field. */
|
|
5896
|
+
lastHeartbeatAt?: DatetimeFilter;
|
|
5897
|
+
/** Filter by the object’s `memoryLimitBytes` field. */
|
|
5898
|
+
memoryLimitBytes?: BigIntFilter;
|
|
5899
|
+
/** Filter by the object’s `memoryRequestBytes` field. */
|
|
5900
|
+
memoryRequestBytes?: BigIntFilter;
|
|
5901
|
+
/** Filter by the object’s `name` field. */
|
|
5902
|
+
name?: StringFilter;
|
|
5903
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
5904
|
+
namespaceId?: UUIDFilter;
|
|
5905
|
+
/** Negates the expression. */
|
|
5906
|
+
not?: ResourcesHealthFilter;
|
|
5907
|
+
/** Checks for any expressions in this list. */
|
|
5908
|
+
or?: ResourcesHealthFilter[];
|
|
5909
|
+
/** Filter by the object’s `replicas` field. */
|
|
5910
|
+
replicas?: IntFilter;
|
|
5911
|
+
/** Filter by the object’s `resourceDefinitionId` field. */
|
|
5912
|
+
resourceDefinitionId?: UUIDFilter;
|
|
5913
|
+
/** Filter by the object’s `slug` field. */
|
|
5914
|
+
slug?: StringFilter;
|
|
5915
|
+
/** Filter by the object’s `spec` field. */
|
|
5916
|
+
spec?: JSONFilter;
|
|
5917
|
+
/** Filter by the object’s `status` field. */
|
|
5918
|
+
status?: StringFilter;
|
|
5919
|
+
/** Filter by the object’s `statusDetail` field. */
|
|
5920
|
+
statusDetail?: StringFilter;
|
|
5921
|
+
/** Filter by the object’s `statusObserved` field. */
|
|
5922
|
+
statusObserved?: JSONFilter;
|
|
5923
|
+
/** Filter by the object’s `storageClass` field. */
|
|
5924
|
+
storageClass?: StringFilter;
|
|
5925
|
+
/** Filter by the object’s `storageSizeBytes` field. */
|
|
5926
|
+
storageSizeBytes?: BigIntFilter;
|
|
5927
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
5928
|
+
updatedAt?: DatetimeFilter;
|
|
5929
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
5930
|
+
updatedBy?: UUIDFilter;
|
|
5931
|
+
}
|
|
4258
5932
|
/** A filter to be used against `ResourcesRequirementsState` object types. All fields are combined with a logical ‘and.’ */
|
|
4259
5933
|
export interface ResourcesRequirementsStateFilter {
|
|
4260
5934
|
/** Checks for all expressions in this list. */
|
|
@@ -4326,6 +6000,7 @@ export interface StartExecutionInput {
|
|
|
4326
6000
|
inputPayload?: unknown;
|
|
4327
6001
|
maxPendingJobs?: number;
|
|
4328
6002
|
maxTicks?: number;
|
|
6003
|
+
outputNames?: string[];
|
|
4329
6004
|
outputNode?: string;
|
|
4330
6005
|
outputPort?: string;
|
|
4331
6006
|
parentExecutionId?: string;
|
|
@@ -4454,30 +6129,30 @@ export interface UpdateFunctionInvocationInput {
|
|
|
4454
6129
|
}
|
|
4455
6130
|
export interface UpdateInfraCommitInput {
|
|
4456
6131
|
clientMutationId?: string;
|
|
6132
|
+
/** Database scope for multi-tenant isolation */
|
|
6133
|
+
databaseId: string;
|
|
4457
6134
|
/** Unique commit identifier */
|
|
4458
6135
|
id: string;
|
|
4459
6136
|
/** An object where the defined keys will be set on the `InfraCommit` being updated. */
|
|
4460
6137
|
infraCommitPatch: InfraCommitPatch;
|
|
4461
|
-
/** Opaque store partition key for the global tier */
|
|
4462
|
-
scopeId: string;
|
|
4463
6138
|
}
|
|
4464
6139
|
export interface UpdateInfraObjectInput {
|
|
4465
6140
|
clientMutationId?: string;
|
|
6141
|
+
/** Database scope for multi-tenant isolation */
|
|
6142
|
+
databaseId: string;
|
|
4466
6143
|
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
4467
6144
|
id: string;
|
|
4468
6145
|
/** An object where the defined keys will be set on the `InfraObject` being updated. */
|
|
4469
6146
|
infraObjectPatch: InfraObjectPatch;
|
|
4470
|
-
/** Opaque store partition key for the global tier */
|
|
4471
|
-
scopeId: string;
|
|
4472
6147
|
}
|
|
4473
6148
|
export interface UpdateInfraRefInput {
|
|
4474
6149
|
clientMutationId?: string;
|
|
6150
|
+
/** Database scope for multi-tenant isolation */
|
|
6151
|
+
databaseId: string;
|
|
4475
6152
|
/** Unique ref identifier */
|
|
4476
6153
|
id: string;
|
|
4477
6154
|
/** An object where the defined keys will be set on the `InfraRef` being updated. */
|
|
4478
6155
|
infraRefPatch: InfraRefPatch;
|
|
4479
|
-
/** Opaque store partition key for the global tier */
|
|
4480
|
-
scopeId: string;
|
|
4481
6156
|
}
|
|
4482
6157
|
export interface UpdateInfraStoreInput {
|
|
4483
6158
|
clientMutationId?: string;
|
|
@@ -4552,6 +6227,40 @@ export interface UpdatePlatformFunctionInvocationInput {
|
|
|
4552
6227
|
/** An object where the defined keys will be set on the `PlatformFunctionInvocation` being updated. */
|
|
4553
6228
|
platformFunctionInvocationPatch: PlatformFunctionInvocationPatch;
|
|
4554
6229
|
}
|
|
6230
|
+
export interface UpdatePlatformInfraCommitInput {
|
|
6231
|
+
clientMutationId?: string;
|
|
6232
|
+
/** Unique commit identifier */
|
|
6233
|
+
id: string;
|
|
6234
|
+
/** An object where the defined keys will be set on the `PlatformInfraCommit` being updated. */
|
|
6235
|
+
platformInfraCommitPatch: PlatformInfraCommitPatch;
|
|
6236
|
+
/** Opaque store partition key for the global tier */
|
|
6237
|
+
scopeId: string;
|
|
6238
|
+
}
|
|
6239
|
+
export interface UpdatePlatformInfraObjectInput {
|
|
6240
|
+
clientMutationId?: string;
|
|
6241
|
+
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
6242
|
+
id: string;
|
|
6243
|
+
/** An object where the defined keys will be set on the `PlatformInfraObject` being updated. */
|
|
6244
|
+
platformInfraObjectPatch: PlatformInfraObjectPatch;
|
|
6245
|
+
/** Opaque store partition key for the global tier */
|
|
6246
|
+
scopeId: string;
|
|
6247
|
+
}
|
|
6248
|
+
export interface UpdatePlatformInfraRefInput {
|
|
6249
|
+
clientMutationId?: string;
|
|
6250
|
+
/** Unique ref identifier */
|
|
6251
|
+
id: string;
|
|
6252
|
+
/** An object where the defined keys will be set on the `PlatformInfraRef` being updated. */
|
|
6253
|
+
platformInfraRefPatch: PlatformInfraRefPatch;
|
|
6254
|
+
/** Opaque store partition key for the global tier */
|
|
6255
|
+
scopeId: string;
|
|
6256
|
+
}
|
|
6257
|
+
export interface UpdatePlatformInfraStoreInput {
|
|
6258
|
+
clientMutationId?: string;
|
|
6259
|
+
/** Unique store identifier */
|
|
6260
|
+
id: string;
|
|
6261
|
+
/** An object where the defined keys will be set on the `PlatformInfraStore` being updated. */
|
|
6262
|
+
platformInfraStorePatch: PlatformInfraStorePatch;
|
|
6263
|
+
}
|
|
4555
6264
|
export interface UpdatePlatformNamespaceEventInput {
|
|
4556
6265
|
clientMutationId?: string;
|
|
4557
6266
|
/** Event timestamp (partition key) */
|
|
@@ -4588,6 +6297,12 @@ export interface UpdatePlatformResourceInput {
|
|
|
4588
6297
|
/** An object where the defined keys will be set on the `PlatformResource` being updated. */
|
|
4589
6298
|
platformResourcePatch: PlatformResourcePatch;
|
|
4590
6299
|
}
|
|
6300
|
+
export interface UpdatePlatformResourceInstallationInput {
|
|
6301
|
+
clientMutationId?: string;
|
|
6302
|
+
id: string;
|
|
6303
|
+
/** An object where the defined keys will be set on the `PlatformResourceInstallation` being updated. */
|
|
6304
|
+
platformResourceInstallationPatch: PlatformResourceInstallationPatch;
|
|
6305
|
+
}
|
|
4591
6306
|
export interface UpdatePlatformResourceStatusCheckInput {
|
|
4592
6307
|
clientMutationId?: string;
|
|
4593
6308
|
/** Unique status check identifier */
|
|
@@ -4595,6 +6310,36 @@ export interface UpdatePlatformResourceStatusCheckInput {
|
|
|
4595
6310
|
/** An object where the defined keys will be set on the `PlatformResourceStatusCheck` being updated. */
|
|
4596
6311
|
platformResourceStatusCheckPatch: PlatformResourceStatusCheckPatch;
|
|
4597
6312
|
}
|
|
6313
|
+
export interface UpdatePlatformResourceUsageLogInput {
|
|
6314
|
+
clientMutationId?: string;
|
|
6315
|
+
/** Unique sample identifier */
|
|
6316
|
+
id: string;
|
|
6317
|
+
/** An object where the defined keys will be set on the `PlatformResourceUsageLog` being updated. */
|
|
6318
|
+
platformResourceUsageLogPatch: PlatformResourceUsageLogPatch;
|
|
6319
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
6320
|
+
sampledAt: string;
|
|
6321
|
+
}
|
|
6322
|
+
export interface UpdatePlatformResourceUsageSummaryInput {
|
|
6323
|
+
clientMutationId?: string;
|
|
6324
|
+
/** Day this summary covers (partition key) */
|
|
6325
|
+
date: string;
|
|
6326
|
+
/** Unique usage summary identifier */
|
|
6327
|
+
id: string;
|
|
6328
|
+
/** An object where the defined keys will be set on the `PlatformResourceUsageSummary` being updated. */
|
|
6329
|
+
platformResourceUsageSummaryPatch: PlatformResourceUsageSummaryPatch;
|
|
6330
|
+
}
|
|
6331
|
+
export interface UpdatePlatformWebhookEndpointInput {
|
|
6332
|
+
clientMutationId?: string;
|
|
6333
|
+
id: string;
|
|
6334
|
+
/** An object where the defined keys will be set on the `PlatformWebhookEndpoint` being updated. */
|
|
6335
|
+
platformWebhookEndpointPatch: PlatformWebhookEndpointPatch;
|
|
6336
|
+
}
|
|
6337
|
+
export interface UpdatePlatformWebhookEventInput {
|
|
6338
|
+
clientMutationId?: string;
|
|
6339
|
+
id: string;
|
|
6340
|
+
/** An object where the defined keys will be set on the `PlatformWebhookEvent` being updated. */
|
|
6341
|
+
platformWebhookEventPatch: PlatformWebhookEventPatch;
|
|
6342
|
+
}
|
|
4598
6343
|
export interface UpdateResourceDefinitionInput {
|
|
4599
6344
|
clientMutationId?: string;
|
|
4600
6345
|
id: string;
|
|
@@ -4616,16 +6361,247 @@ export interface UpdateResourceInput {
|
|
|
4616
6361
|
/** An object where the defined keys will be set on the `Resource` being updated. */
|
|
4617
6362
|
resourcePatch: ResourcePatch;
|
|
4618
6363
|
}
|
|
4619
|
-
export interface
|
|
4620
|
-
clientMutationId?: string;
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
6364
|
+
export interface UpdateResourceInstallationInput {
|
|
6365
|
+
clientMutationId?: string;
|
|
6366
|
+
id: string;
|
|
6367
|
+
/** An object where the defined keys will be set on the `ResourceInstallation` being updated. */
|
|
6368
|
+
resourceInstallationPatch: ResourceInstallationPatch;
|
|
6369
|
+
}
|
|
6370
|
+
export interface UpdateResourceStatusCheckInput {
|
|
6371
|
+
clientMutationId?: string;
|
|
6372
|
+
/** Unique status check identifier */
|
|
6373
|
+
id: string;
|
|
6374
|
+
/** An object where the defined keys will be set on the `ResourceStatusCheck` being updated. */
|
|
6375
|
+
resourceStatusCheckPatch: ResourceStatusCheckPatch;
|
|
6376
|
+
}
|
|
6377
|
+
export interface UpdateResourceUsageLogInput {
|
|
6378
|
+
clientMutationId?: string;
|
|
6379
|
+
/** Unique sample identifier */
|
|
6380
|
+
id: string;
|
|
6381
|
+
/** An object where the defined keys will be set on the `ResourceUsageLog` being updated. */
|
|
6382
|
+
resourceUsageLogPatch: ResourceUsageLogPatch;
|
|
6383
|
+
/** Sample timestamp (partition key) — end of the measured interval */
|
|
6384
|
+
sampledAt: string;
|
|
6385
|
+
}
|
|
6386
|
+
export interface UpdateResourceUsageSummaryInput {
|
|
6387
|
+
clientMutationId?: string;
|
|
6388
|
+
/** Day this summary covers (partition key) */
|
|
6389
|
+
date: string;
|
|
6390
|
+
/** Unique usage summary identifier */
|
|
6391
|
+
id: string;
|
|
6392
|
+
/** An object where the defined keys will be set on the `ResourceUsageSummary` being updated. */
|
|
6393
|
+
resourceUsageSummaryPatch: ResourceUsageSummaryPatch;
|
|
6394
|
+
}
|
|
6395
|
+
export interface UpdateWebhookEndpointInput {
|
|
6396
|
+
clientMutationId?: string;
|
|
6397
|
+
id: string;
|
|
6398
|
+
/** An object where the defined keys will be set on the `WebhookEndpoint` being updated. */
|
|
6399
|
+
webhookEndpointPatch: WebhookEndpointPatch;
|
|
6400
|
+
}
|
|
6401
|
+
export interface UpdateWebhookEventInput {
|
|
6402
|
+
clientMutationId?: string;
|
|
6403
|
+
id: string;
|
|
6404
|
+
/** An object where the defined keys will be set on the `WebhookEvent` being updated. */
|
|
6405
|
+
webhookEventPatch: WebhookEventPatch;
|
|
6406
|
+
}
|
|
6407
|
+
export interface ValidateFunctionGraphInput {
|
|
6408
|
+
clientMutationId?: string;
|
|
6409
|
+
graphId?: string;
|
|
6410
|
+
}
|
|
6411
|
+
/** A filter to be used against `WebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
6412
|
+
export interface WebhookEndpointFilter {
|
|
6413
|
+
/** Filter by the object’s `active` field. */
|
|
6414
|
+
active?: BooleanFilter;
|
|
6415
|
+
/** Checks for all expressions in this list. */
|
|
6416
|
+
and?: WebhookEndpointFilter[];
|
|
6417
|
+
/** Filter by the object’s `createdAt` field. */
|
|
6418
|
+
createdAt?: DatetimeFilter;
|
|
6419
|
+
/** Filter by the object’s `createdBy` field. */
|
|
6420
|
+
createdBy?: UUIDFilter;
|
|
6421
|
+
/** Filter by the object’s `databaseId` field. */
|
|
6422
|
+
databaseId?: UUIDFilter;
|
|
6423
|
+
/** Filter by the object’s `functionDefinition` relation. */
|
|
6424
|
+
functionDefinition?: FunctionDefinitionFilter;
|
|
6425
|
+
/** Filter by the object’s `functionDefinitionId` field. */
|
|
6426
|
+
functionDefinitionId?: UUIDFilter;
|
|
6427
|
+
/** Filter by the object’s `host` field. */
|
|
6428
|
+
host?: StringFilter;
|
|
6429
|
+
/** Filter by the object’s `id` field. */
|
|
6430
|
+
id?: UUIDFilter;
|
|
6431
|
+
/** Filter by the object’s `namespace` relation. */
|
|
6432
|
+
namespace?: NamespaceFilter;
|
|
6433
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
6434
|
+
namespaceId?: UUIDFilter;
|
|
6435
|
+
/** Negates the expression. */
|
|
6436
|
+
not?: WebhookEndpointFilter;
|
|
6437
|
+
/** Checks for any expressions in this list. */
|
|
6438
|
+
or?: WebhookEndpointFilter[];
|
|
6439
|
+
/** Filter by the object’s `path` field. */
|
|
6440
|
+
path?: StringFilter;
|
|
6441
|
+
/** Filter by the object’s `provider` field. */
|
|
6442
|
+
provider?: StringFilter;
|
|
6443
|
+
/** Filter by the object’s `replayWindowSeconds` field. */
|
|
6444
|
+
replayWindowSeconds?: IntFilter;
|
|
6445
|
+
/** Filter by the object’s `signingSecretName` field. */
|
|
6446
|
+
signingSecretName?: StringFilter;
|
|
6447
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
6448
|
+
updatedAt?: DatetimeFilter;
|
|
6449
|
+
/** Filter by the object’s `updatedBy` field. */
|
|
6450
|
+
updatedBy?: UUIDFilter;
|
|
6451
|
+
/** Filter by the object’s `webhookEventsByEndpointId` relation. */
|
|
6452
|
+
webhookEventsByEndpointId?: WebhookEndpointToManyWebhookEventFilter;
|
|
6453
|
+
/** `webhookEventsByEndpointId` exist. */
|
|
6454
|
+
webhookEventsByEndpointIdExist?: boolean;
|
|
6455
|
+
}
|
|
6456
|
+
/** An input for mutations affecting `WebhookEndpoint` */
|
|
6457
|
+
export interface WebhookEndpointInput {
|
|
6458
|
+
/** Whether this endpoint currently accepts deliveries */
|
|
6459
|
+
active?: boolean;
|
|
6460
|
+
createdAt?: string;
|
|
6461
|
+
createdBy?: string;
|
|
6462
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
6463
|
+
databaseId: string;
|
|
6464
|
+
/** Same-scope function definition invoked on delivery. The function must list the webhook channel in access_channels. */
|
|
6465
|
+
functionDefinitionId: string;
|
|
6466
|
+
/** Inbound Host header this endpoint matches (normalized lower-case, no port) */
|
|
6467
|
+
host: string;
|
|
6468
|
+
id?: string;
|
|
6469
|
+
/** Namespace that owns this endpoint and contains its signing secret */
|
|
6470
|
+
namespaceId: string;
|
|
6471
|
+
/** Exact request path this endpoint matches (e.g. /webhooks/stripe) */
|
|
6472
|
+
path: string;
|
|
6473
|
+
/** Verification scheme: generic (HMAC), stripe, or github */
|
|
6474
|
+
provider?: string;
|
|
6475
|
+
/** Maximum age (seconds) of a signed provider timestamp before the delivery is rejected as a replay */
|
|
6476
|
+
replayWindowSeconds?: number;
|
|
6477
|
+
/** Name of the signing secret in the infra secrets store. The gateway resolves the value through the generated secrets getter — the plaintext secret is never stored here. */
|
|
6478
|
+
signingSecretName: string;
|
|
6479
|
+
updatedAt?: string;
|
|
6480
|
+
updatedBy?: string;
|
|
6481
|
+
}
|
|
6482
|
+
/** Represents an update to a `WebhookEndpoint`. Fields that are set will be updated. */
|
|
6483
|
+
export interface WebhookEndpointPatch {
|
|
6484
|
+
/** Whether this endpoint currently accepts deliveries */
|
|
6485
|
+
active?: boolean;
|
|
6486
|
+
createdAt?: string;
|
|
6487
|
+
createdBy?: string;
|
|
6488
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
6489
|
+
databaseId?: string;
|
|
6490
|
+
/** Same-scope function definition invoked on delivery. The function must list the webhook channel in access_channels. */
|
|
6491
|
+
functionDefinitionId?: string;
|
|
6492
|
+
/** Inbound Host header this endpoint matches (normalized lower-case, no port) */
|
|
6493
|
+
host?: string;
|
|
6494
|
+
id?: string;
|
|
6495
|
+
/** Namespace that owns this endpoint and contains its signing secret */
|
|
6496
|
+
namespaceId?: string;
|
|
6497
|
+
/** Exact request path this endpoint matches (e.g. /webhooks/stripe) */
|
|
6498
|
+
path?: string;
|
|
6499
|
+
/** Verification scheme: generic (HMAC), stripe, or github */
|
|
6500
|
+
provider?: string;
|
|
6501
|
+
/** Maximum age (seconds) of a signed provider timestamp before the delivery is rejected as a replay */
|
|
6502
|
+
replayWindowSeconds?: number;
|
|
6503
|
+
/** Name of the signing secret in the infra secrets store. The gateway resolves the value through the generated secrets getter — the plaintext secret is never stored here. */
|
|
6504
|
+
signingSecretName?: string;
|
|
6505
|
+
updatedAt?: string;
|
|
6506
|
+
updatedBy?: string;
|
|
6507
|
+
}
|
|
6508
|
+
/** A filter to be used against many `WebhookEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
6509
|
+
export interface WebhookEndpointToManyWebhookEventFilter {
|
|
6510
|
+
/** Filters to entities where every related entity matches. */
|
|
6511
|
+
every?: WebhookEventFilter;
|
|
6512
|
+
/** Filters to entities where no related entity matches. */
|
|
6513
|
+
none?: WebhookEventFilter;
|
|
6514
|
+
/** Filters to entities where at least one related entity matches. */
|
|
6515
|
+
some?: WebhookEventFilter;
|
|
6516
|
+
}
|
|
6517
|
+
/** A filter to be used against `WebhookEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
6518
|
+
export interface WebhookEventFilter {
|
|
6519
|
+
/** Checks for all expressions in this list. */
|
|
6520
|
+
and?: WebhookEventFilter[];
|
|
6521
|
+
/** Filter by the object’s `createdAt` field. */
|
|
6522
|
+
createdAt?: DatetimeFilter;
|
|
6523
|
+
/** Filter by the object’s `databaseId` field. */
|
|
6524
|
+
databaseId?: UUIDFilter;
|
|
6525
|
+
/** Filter by the object’s `endpoint` relation. */
|
|
6526
|
+
endpoint?: WebhookEndpointFilter;
|
|
6527
|
+
/** Filter by the object’s `endpointId` field. */
|
|
6528
|
+
endpointId?: UUIDFilter;
|
|
6529
|
+
/** Filter by the object’s `error` field. */
|
|
6530
|
+
error?: StringFilter;
|
|
6531
|
+
/** Filter by the object’s `externalEventId` field. */
|
|
6532
|
+
externalEventId?: StringFilter;
|
|
6533
|
+
/** Filter by the object’s `id` field. */
|
|
6534
|
+
id?: UUIDFilter;
|
|
6535
|
+
/** Filter by the object’s `invocationCreatedAt` field. */
|
|
6536
|
+
invocationCreatedAt?: DatetimeFilter;
|
|
6537
|
+
/** Filter by the object’s `invocationId` field. */
|
|
6538
|
+
invocationId?: UUIDFilter;
|
|
6539
|
+
/** Negates the expression. */
|
|
6540
|
+
not?: WebhookEventFilter;
|
|
6541
|
+
/** Checks for any expressions in this list. */
|
|
6542
|
+
or?: WebhookEventFilter[];
|
|
6543
|
+
/** Filter by the object’s `payload` field. */
|
|
6544
|
+
payload?: JSONFilter;
|
|
6545
|
+
/** Filter by the object’s `provider` field. */
|
|
6546
|
+
provider?: StringFilter;
|
|
6547
|
+
/** Filter by the object’s `providerTimestamp` field. */
|
|
6548
|
+
providerTimestamp?: DatetimeFilter;
|
|
6549
|
+
/** Filter by the object’s `status` field. */
|
|
6550
|
+
status?: StringFilter;
|
|
6551
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
6552
|
+
updatedAt?: DatetimeFilter;
|
|
6553
|
+
}
|
|
6554
|
+
/** An input for mutations affecting `WebhookEvent` */
|
|
6555
|
+
export interface WebhookEventInput {
|
|
6556
|
+
createdAt?: string;
|
|
6557
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
6558
|
+
databaseId: string;
|
|
6559
|
+
/** Endpoint that accepted this delivery */
|
|
6560
|
+
endpointId: string;
|
|
6561
|
+
/** Failure detail when status = failed */
|
|
6562
|
+
error?: string;
|
|
6563
|
+
/** Provider-supplied delivery/event id used for idempotent dedup */
|
|
6564
|
+
externalEventId: string;
|
|
6565
|
+
id?: string;
|
|
6566
|
+
/** created_at of the enqueued invocation (partition key companion to invocation_id) */
|
|
6567
|
+
invocationCreatedAt?: string;
|
|
6568
|
+
/** Pending function invocation enqueued for this delivery (NULL until enqueued) */
|
|
6569
|
+
invocationId?: string;
|
|
6570
|
+
/** Parsed delivery payload (parsed only after signature verification over the exact raw bytes) */
|
|
6571
|
+
payload?: unknown;
|
|
6572
|
+
/** Provider that produced this delivery (copied from the endpoint at acceptance) */
|
|
6573
|
+
provider: string;
|
|
6574
|
+
/** Signed provider timestamp used for replay-window validation (NULL when the provider supplies none) */
|
|
6575
|
+
providerTimestamp?: string;
|
|
6576
|
+
/** Acceptance lifecycle: accepted, processed, failed */
|
|
6577
|
+
status?: string;
|
|
6578
|
+
updatedAt?: string;
|
|
4625
6579
|
}
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
6580
|
+
/** Represents an update to a `WebhookEvent`. Fields that are set will be updated. */
|
|
6581
|
+
export interface WebhookEventPatch {
|
|
6582
|
+
createdAt?: string;
|
|
6583
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
6584
|
+
databaseId?: string;
|
|
6585
|
+
/** Endpoint that accepted this delivery */
|
|
6586
|
+
endpointId?: string;
|
|
6587
|
+
/** Failure detail when status = failed */
|
|
6588
|
+
error?: string;
|
|
6589
|
+
/** Provider-supplied delivery/event id used for idempotent dedup */
|
|
6590
|
+
externalEventId?: string;
|
|
6591
|
+
id?: string;
|
|
6592
|
+
/** created_at of the enqueued invocation (partition key companion to invocation_id) */
|
|
6593
|
+
invocationCreatedAt?: string;
|
|
6594
|
+
/** Pending function invocation enqueued for this delivery (NULL until enqueued) */
|
|
6595
|
+
invocationId?: string;
|
|
6596
|
+
/** Parsed delivery payload (parsed only after signature verification over the exact raw bytes) */
|
|
6597
|
+
payload?: unknown;
|
|
6598
|
+
/** Provider that produced this delivery (copied from the endpoint at acceptance) */
|
|
6599
|
+
provider?: string;
|
|
6600
|
+
/** Signed provider timestamp used for replay-window validation (NULL when the provider supplies none) */
|
|
6601
|
+
providerTimestamp?: string;
|
|
6602
|
+
/** Acceptance lifecycle: accepted, processed, failed */
|
|
6603
|
+
status?: string;
|
|
6604
|
+
updatedAt?: string;
|
|
4629
6605
|
}
|
|
4630
6606
|
/** Root meta schema type */
|
|
4631
6607
|
export interface MetaSchema {
|
|
@@ -4638,6 +6614,13 @@ export interface DbPresetConnection {
|
|
|
4638
6614
|
pageInfo: PageInfo;
|
|
4639
6615
|
totalCount: number;
|
|
4640
6616
|
}
|
|
6617
|
+
/** A connection to a list of `DeclaredCapacity` values. */
|
|
6618
|
+
export interface DeclaredCapacityConnection {
|
|
6619
|
+
edges: DeclaredCapacityEdge[];
|
|
6620
|
+
nodes: DeclaredCapacity[];
|
|
6621
|
+
pageInfo: PageInfo;
|
|
6622
|
+
totalCount: number;
|
|
6623
|
+
}
|
|
4641
6624
|
/** A connection to a list of `FunctionApiBinding` values. */
|
|
4642
6625
|
export interface FunctionApiBindingConnection {
|
|
4643
6626
|
edges: FunctionApiBindingEdge[];
|
|
@@ -4736,10 +6719,10 @@ export interface FunctionInvocationConnection {
|
|
|
4736
6719
|
pageInfo: PageInfo;
|
|
4737
6720
|
totalCount: number;
|
|
4738
6721
|
}
|
|
4739
|
-
/** A connection to a list of `
|
|
4740
|
-
export interface
|
|
4741
|
-
edges:
|
|
4742
|
-
nodes:
|
|
6722
|
+
/** A connection to a list of `GetAllTreeNodesRecord` values. */
|
|
6723
|
+
export interface GetAllTreeNodesConnection {
|
|
6724
|
+
edges: GetAllTreeNodesEdge[];
|
|
6725
|
+
nodes: GetAllTreeNodesRecord[];
|
|
4743
6726
|
pageInfo: PageInfo;
|
|
4744
6727
|
totalCount: number;
|
|
4745
6728
|
}
|
|
@@ -4750,10 +6733,10 @@ export interface InfraCommitConnection {
|
|
|
4750
6733
|
pageInfo: PageInfo;
|
|
4751
6734
|
totalCount: number;
|
|
4752
6735
|
}
|
|
4753
|
-
/** A connection to a list of `
|
|
4754
|
-
export interface
|
|
4755
|
-
edges:
|
|
4756
|
-
nodes:
|
|
6736
|
+
/** A connection to a list of `InfraGetAllTreeNodesRecord` values. */
|
|
6737
|
+
export interface InfraGetAllTreeNodesConnection {
|
|
6738
|
+
edges: InfraGetAllTreeNodesEdge[];
|
|
6739
|
+
nodes: InfraGetAllTreeNodesRecord[];
|
|
4757
6740
|
pageInfo: PageInfo;
|
|
4758
6741
|
totalCount: number;
|
|
4759
6742
|
}
|
|
@@ -4799,6 +6782,13 @@ export interface NamespaceConnection {
|
|
|
4799
6782
|
pageInfo: PageInfo;
|
|
4800
6783
|
totalCount: number;
|
|
4801
6784
|
}
|
|
6785
|
+
/** A connection to a list of `PlatformDeclaredCapacity` values. */
|
|
6786
|
+
export interface PlatformDeclaredCapacityConnection {
|
|
6787
|
+
edges: PlatformDeclaredCapacityEdge[];
|
|
6788
|
+
nodes: PlatformDeclaredCapacity[];
|
|
6789
|
+
pageInfo: PageInfo;
|
|
6790
|
+
totalCount: number;
|
|
6791
|
+
}
|
|
4802
6792
|
/** A connection to a list of `PlatformFunctionApiBinding` values. */
|
|
4803
6793
|
export interface PlatformFunctionApiBindingConnection {
|
|
4804
6794
|
edges: PlatformFunctionApiBindingEdge[];
|
|
@@ -4841,6 +6831,41 @@ export interface PlatformFunctionInvocationConnection {
|
|
|
4841
6831
|
pageInfo: PageInfo;
|
|
4842
6832
|
totalCount: number;
|
|
4843
6833
|
}
|
|
6834
|
+
/** A connection to a list of `PlatformInfraCommit` values. */
|
|
6835
|
+
export interface PlatformInfraCommitConnection {
|
|
6836
|
+
edges: PlatformInfraCommitEdge[];
|
|
6837
|
+
nodes: PlatformInfraCommit[];
|
|
6838
|
+
pageInfo: PageInfo;
|
|
6839
|
+
totalCount: number;
|
|
6840
|
+
}
|
|
6841
|
+
/** A connection to a list of `PlatformInfraGetAllTreeNodesRecord` values. */
|
|
6842
|
+
export interface PlatformInfraGetAllTreeNodesConnection {
|
|
6843
|
+
edges: PlatformInfraGetAllTreeNodesEdge[];
|
|
6844
|
+
nodes: PlatformInfraGetAllTreeNodesRecord[];
|
|
6845
|
+
pageInfo: PageInfo;
|
|
6846
|
+
totalCount: number;
|
|
6847
|
+
}
|
|
6848
|
+
/** A connection to a list of `PlatformInfraObject` values. */
|
|
6849
|
+
export interface PlatformInfraObjectConnection {
|
|
6850
|
+
edges: PlatformInfraObjectEdge[];
|
|
6851
|
+
nodes: PlatformInfraObject[];
|
|
6852
|
+
pageInfo: PageInfo;
|
|
6853
|
+
totalCount: number;
|
|
6854
|
+
}
|
|
6855
|
+
/** A connection to a list of `PlatformInfraRef` values. */
|
|
6856
|
+
export interface PlatformInfraRefConnection {
|
|
6857
|
+
edges: PlatformInfraRefEdge[];
|
|
6858
|
+
nodes: PlatformInfraRef[];
|
|
6859
|
+
pageInfo: PageInfo;
|
|
6860
|
+
totalCount: number;
|
|
6861
|
+
}
|
|
6862
|
+
/** A connection to a list of `PlatformInfraStore` values. */
|
|
6863
|
+
export interface PlatformInfraStoreConnection {
|
|
6864
|
+
edges: PlatformInfraStoreEdge[];
|
|
6865
|
+
nodes: PlatformInfraStore[];
|
|
6866
|
+
pageInfo: PageInfo;
|
|
6867
|
+
totalCount: number;
|
|
6868
|
+
}
|
|
4844
6869
|
/** A connection to a list of `PlatformNamespaceEvent` values. */
|
|
4845
6870
|
export interface PlatformNamespaceEventConnection {
|
|
4846
6871
|
edges: PlatformNamespaceEventEdge[];
|
|
@@ -4869,6 +6894,13 @@ export interface PlatformResourceEventConnection {
|
|
|
4869
6894
|
pageInfo: PageInfo;
|
|
4870
6895
|
totalCount: number;
|
|
4871
6896
|
}
|
|
6897
|
+
/** A connection to a list of `PlatformResourceInstallation` values. */
|
|
6898
|
+
export interface PlatformResourceInstallationConnection {
|
|
6899
|
+
edges: PlatformResourceInstallationEdge[];
|
|
6900
|
+
nodes: PlatformResourceInstallation[];
|
|
6901
|
+
pageInfo: PageInfo;
|
|
6902
|
+
totalCount: number;
|
|
6903
|
+
}
|
|
4872
6904
|
/** A connection to a list of `PlatformResourceStatusCheck` values. */
|
|
4873
6905
|
export interface PlatformResourceStatusCheckConnection {
|
|
4874
6906
|
edges: PlatformResourceStatusCheckEdge[];
|
|
@@ -4876,6 +6908,27 @@ export interface PlatformResourceStatusCheckConnection {
|
|
|
4876
6908
|
pageInfo: PageInfo;
|
|
4877
6909
|
totalCount: number;
|
|
4878
6910
|
}
|
|
6911
|
+
/** A connection to a list of `PlatformResourceUsageLog` values. */
|
|
6912
|
+
export interface PlatformResourceUsageLogConnection {
|
|
6913
|
+
edges: PlatformResourceUsageLogEdge[];
|
|
6914
|
+
nodes: PlatformResourceUsageLog[];
|
|
6915
|
+
pageInfo: PageInfo;
|
|
6916
|
+
totalCount: number;
|
|
6917
|
+
}
|
|
6918
|
+
/** A connection to a list of `PlatformResourceUsageSummary` values. */
|
|
6919
|
+
export interface PlatformResourceUsageSummaryConnection {
|
|
6920
|
+
edges: PlatformResourceUsageSummaryEdge[];
|
|
6921
|
+
nodes: PlatformResourceUsageSummary[];
|
|
6922
|
+
pageInfo: PageInfo;
|
|
6923
|
+
totalCount: number;
|
|
6924
|
+
}
|
|
6925
|
+
/** A connection to a list of `PlatformResourceUtilizationDaily` values. */
|
|
6926
|
+
export interface PlatformResourceUtilizationDailyConnection {
|
|
6927
|
+
edges: PlatformResourceUtilizationDailyEdge[];
|
|
6928
|
+
nodes: PlatformResourceUtilizationDaily[];
|
|
6929
|
+
pageInfo: PageInfo;
|
|
6930
|
+
totalCount: number;
|
|
6931
|
+
}
|
|
4879
6932
|
/** A connection to a list of `PlatformResource` values. */
|
|
4880
6933
|
export interface PlatformResourceConnection {
|
|
4881
6934
|
edges: PlatformResourceEdge[];
|
|
@@ -4883,6 +6936,13 @@ export interface PlatformResourceConnection {
|
|
|
4883
6936
|
pageInfo: PageInfo;
|
|
4884
6937
|
totalCount: number;
|
|
4885
6938
|
}
|
|
6939
|
+
/** A connection to a list of `PlatformResourcesHealth` values. */
|
|
6940
|
+
export interface PlatformResourcesHealthConnection {
|
|
6941
|
+
edges: PlatformResourcesHealthEdge[];
|
|
6942
|
+
nodes: PlatformResourcesHealth[];
|
|
6943
|
+
pageInfo: PageInfo;
|
|
6944
|
+
totalCount: number;
|
|
6945
|
+
}
|
|
4886
6946
|
/** A connection to a list of `PlatformResourcesRequirementsState` values. */
|
|
4887
6947
|
export interface PlatformResourcesRequirementsStateConnection {
|
|
4888
6948
|
edges: PlatformResourcesRequirementsStateEdge[];
|
|
@@ -4897,6 +6957,20 @@ export interface PlatformResourcesResolvedRequirementConnection {
|
|
|
4897
6957
|
pageInfo: PageInfo;
|
|
4898
6958
|
totalCount: number;
|
|
4899
6959
|
}
|
|
6960
|
+
/** A connection to a list of `PlatformWebhookEndpoint` values. */
|
|
6961
|
+
export interface PlatformWebhookEndpointConnection {
|
|
6962
|
+
edges: PlatformWebhookEndpointEdge[];
|
|
6963
|
+
nodes: PlatformWebhookEndpoint[];
|
|
6964
|
+
pageInfo: PageInfo;
|
|
6965
|
+
totalCount: number;
|
|
6966
|
+
}
|
|
6967
|
+
/** A connection to a list of `PlatformWebhookEvent` values. */
|
|
6968
|
+
export interface PlatformWebhookEventConnection {
|
|
6969
|
+
edges: PlatformWebhookEventEdge[];
|
|
6970
|
+
nodes: PlatformWebhookEvent[];
|
|
6971
|
+
pageInfo: PageInfo;
|
|
6972
|
+
totalCount: number;
|
|
6973
|
+
}
|
|
4900
6974
|
/** A connection to a list of `ResourceDefinition` values. */
|
|
4901
6975
|
export interface ResourceDefinitionConnection {
|
|
4902
6976
|
edges: ResourceDefinitionEdge[];
|
|
@@ -4911,6 +6985,13 @@ export interface ResourceEventConnection {
|
|
|
4911
6985
|
pageInfo: PageInfo;
|
|
4912
6986
|
totalCount: number;
|
|
4913
6987
|
}
|
|
6988
|
+
/** A connection to a list of `ResourceInstallation` values. */
|
|
6989
|
+
export interface ResourceInstallationConnection {
|
|
6990
|
+
edges: ResourceInstallationEdge[];
|
|
6991
|
+
nodes: ResourceInstallation[];
|
|
6992
|
+
pageInfo: PageInfo;
|
|
6993
|
+
totalCount: number;
|
|
6994
|
+
}
|
|
4914
6995
|
/** A connection to a list of `ResourceStatusCheck` values. */
|
|
4915
6996
|
export interface ResourceStatusCheckConnection {
|
|
4916
6997
|
edges: ResourceStatusCheckEdge[];
|
|
@@ -4918,6 +6999,27 @@ export interface ResourceStatusCheckConnection {
|
|
|
4918
6999
|
pageInfo: PageInfo;
|
|
4919
7000
|
totalCount: number;
|
|
4920
7001
|
}
|
|
7002
|
+
/** A connection to a list of `ResourceUsageLog` values. */
|
|
7003
|
+
export interface ResourceUsageLogConnection {
|
|
7004
|
+
edges: ResourceUsageLogEdge[];
|
|
7005
|
+
nodes: ResourceUsageLog[];
|
|
7006
|
+
pageInfo: PageInfo;
|
|
7007
|
+
totalCount: number;
|
|
7008
|
+
}
|
|
7009
|
+
/** A connection to a list of `ResourceUsageSummary` values. */
|
|
7010
|
+
export interface ResourceUsageSummaryConnection {
|
|
7011
|
+
edges: ResourceUsageSummaryEdge[];
|
|
7012
|
+
nodes: ResourceUsageSummary[];
|
|
7013
|
+
pageInfo: PageInfo;
|
|
7014
|
+
totalCount: number;
|
|
7015
|
+
}
|
|
7016
|
+
/** A connection to a list of `ResourceUtilizationDaily` values. */
|
|
7017
|
+
export interface ResourceUtilizationDailyConnection {
|
|
7018
|
+
edges: ResourceUtilizationDailyEdge[];
|
|
7019
|
+
nodes: ResourceUtilizationDaily[];
|
|
7020
|
+
pageInfo: PageInfo;
|
|
7021
|
+
totalCount: number;
|
|
7022
|
+
}
|
|
4921
7023
|
/** A connection to a list of `Resource` values. */
|
|
4922
7024
|
export interface ResourceConnection {
|
|
4923
7025
|
edges: ResourceEdge[];
|
|
@@ -4925,6 +7027,13 @@ export interface ResourceConnection {
|
|
|
4925
7027
|
pageInfo: PageInfo;
|
|
4926
7028
|
totalCount: number;
|
|
4927
7029
|
}
|
|
7030
|
+
/** A connection to a list of `ResourcesHealth` values. */
|
|
7031
|
+
export interface ResourcesHealthConnection {
|
|
7032
|
+
edges: ResourcesHealthEdge[];
|
|
7033
|
+
nodes: ResourcesHealth[];
|
|
7034
|
+
pageInfo: PageInfo;
|
|
7035
|
+
totalCount: number;
|
|
7036
|
+
}
|
|
4928
7037
|
/** A connection to a list of `ResourcesRequirementsState` values. */
|
|
4929
7038
|
export interface ResourcesRequirementsStateConnection {
|
|
4930
7039
|
edges: ResourcesRequirementsStateEdge[];
|
|
@@ -4939,6 +7048,20 @@ export interface ResourcesResolvedRequirementConnection {
|
|
|
4939
7048
|
pageInfo: PageInfo;
|
|
4940
7049
|
totalCount: number;
|
|
4941
7050
|
}
|
|
7051
|
+
/** A connection to a list of `WebhookEndpoint` values. */
|
|
7052
|
+
export interface WebhookEndpointConnection {
|
|
7053
|
+
edges: WebhookEndpointEdge[];
|
|
7054
|
+
nodes: WebhookEndpoint[];
|
|
7055
|
+
pageInfo: PageInfo;
|
|
7056
|
+
totalCount: number;
|
|
7057
|
+
}
|
|
7058
|
+
/** A connection to a list of `WebhookEvent` values. */
|
|
7059
|
+
export interface WebhookEventConnection {
|
|
7060
|
+
edges: WebhookEventEdge[];
|
|
7061
|
+
nodes: WebhookEvent[];
|
|
7062
|
+
pageInfo: PageInfo;
|
|
7063
|
+
totalCount: number;
|
|
7064
|
+
}
|
|
4942
7065
|
export interface AddEdgePayload {
|
|
4943
7066
|
clientMutationId?: string | null;
|
|
4944
7067
|
result?: string | null;
|
|
@@ -5125,6 +7248,30 @@ export interface CreatePlatformFunctionInvocationPayload {
|
|
|
5125
7248
|
platformFunctionInvocation?: PlatformFunctionInvocation | null;
|
|
5126
7249
|
platformFunctionInvocationEdge?: PlatformFunctionInvocationEdge | null;
|
|
5127
7250
|
}
|
|
7251
|
+
export interface CreatePlatformInfraCommitPayload {
|
|
7252
|
+
clientMutationId?: string | null;
|
|
7253
|
+
/** The `PlatformInfraCommit` that was created by this mutation. */
|
|
7254
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
7255
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
7256
|
+
}
|
|
7257
|
+
export interface CreatePlatformInfraObjectPayload {
|
|
7258
|
+
clientMutationId?: string | null;
|
|
7259
|
+
/** The `PlatformInfraObject` that was created by this mutation. */
|
|
7260
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
7261
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
7262
|
+
}
|
|
7263
|
+
export interface CreatePlatformInfraRefPayload {
|
|
7264
|
+
clientMutationId?: string | null;
|
|
7265
|
+
/** The `PlatformInfraRef` that was created by this mutation. */
|
|
7266
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
7267
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
7268
|
+
}
|
|
7269
|
+
export interface CreatePlatformInfraStorePayload {
|
|
7270
|
+
clientMutationId?: string | null;
|
|
7271
|
+
/** The `PlatformInfraStore` that was created by this mutation. */
|
|
7272
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
7273
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
7274
|
+
}
|
|
5128
7275
|
export interface CreatePlatformNamespacePayload {
|
|
5129
7276
|
clientMutationId?: string | null;
|
|
5130
7277
|
/** The `PlatformNamespace` that was created by this mutation. */
|
|
@@ -5155,12 +7302,42 @@ export interface CreatePlatformResourceEventPayload {
|
|
|
5155
7302
|
platformResourceEvent?: PlatformResourceEvent | null;
|
|
5156
7303
|
platformResourceEventEdge?: PlatformResourceEventEdge | null;
|
|
5157
7304
|
}
|
|
7305
|
+
export interface CreatePlatformResourceInstallationPayload {
|
|
7306
|
+
clientMutationId?: string | null;
|
|
7307
|
+
/** The `PlatformResourceInstallation` that was created by this mutation. */
|
|
7308
|
+
platformResourceInstallation?: PlatformResourceInstallation | null;
|
|
7309
|
+
platformResourceInstallationEdge?: PlatformResourceInstallationEdge | null;
|
|
7310
|
+
}
|
|
5158
7311
|
export interface CreatePlatformResourceStatusCheckPayload {
|
|
5159
7312
|
clientMutationId?: string | null;
|
|
5160
7313
|
/** The `PlatformResourceStatusCheck` that was created by this mutation. */
|
|
5161
7314
|
platformResourceStatusCheck?: PlatformResourceStatusCheck | null;
|
|
5162
7315
|
platformResourceStatusCheckEdge?: PlatformResourceStatusCheckEdge | null;
|
|
5163
7316
|
}
|
|
7317
|
+
export interface CreatePlatformResourceUsageLogPayload {
|
|
7318
|
+
clientMutationId?: string | null;
|
|
7319
|
+
/** The `PlatformResourceUsageLog` that was created by this mutation. */
|
|
7320
|
+
platformResourceUsageLog?: PlatformResourceUsageLog | null;
|
|
7321
|
+
platformResourceUsageLogEdge?: PlatformResourceUsageLogEdge | null;
|
|
7322
|
+
}
|
|
7323
|
+
export interface CreatePlatformResourceUsageSummaryPayload {
|
|
7324
|
+
clientMutationId?: string | null;
|
|
7325
|
+
/** The `PlatformResourceUsageSummary` that was created by this mutation. */
|
|
7326
|
+
platformResourceUsageSummary?: PlatformResourceUsageSummary | null;
|
|
7327
|
+
platformResourceUsageSummaryEdge?: PlatformResourceUsageSummaryEdge | null;
|
|
7328
|
+
}
|
|
7329
|
+
export interface CreatePlatformWebhookEndpointPayload {
|
|
7330
|
+
clientMutationId?: string | null;
|
|
7331
|
+
/** The `PlatformWebhookEndpoint` that was created by this mutation. */
|
|
7332
|
+
platformWebhookEndpoint?: PlatformWebhookEndpoint | null;
|
|
7333
|
+
platformWebhookEndpointEdge?: PlatformWebhookEndpointEdge | null;
|
|
7334
|
+
}
|
|
7335
|
+
export interface CreatePlatformWebhookEventPayload {
|
|
7336
|
+
clientMutationId?: string | null;
|
|
7337
|
+
/** The `PlatformWebhookEvent` that was created by this mutation. */
|
|
7338
|
+
platformWebhookEvent?: PlatformWebhookEvent | null;
|
|
7339
|
+
platformWebhookEventEdge?: PlatformWebhookEventEdge | null;
|
|
7340
|
+
}
|
|
5164
7341
|
export interface CreateResourcePayload {
|
|
5165
7342
|
clientMutationId?: string | null;
|
|
5166
7343
|
/** The `Resource` that was created by this mutation. */
|
|
@@ -5179,12 +7356,42 @@ export interface CreateResourceEventPayload {
|
|
|
5179
7356
|
resourceEvent?: ResourceEvent | null;
|
|
5180
7357
|
resourceEventEdge?: ResourceEventEdge | null;
|
|
5181
7358
|
}
|
|
7359
|
+
export interface CreateResourceInstallationPayload {
|
|
7360
|
+
clientMutationId?: string | null;
|
|
7361
|
+
/** The `ResourceInstallation` that was created by this mutation. */
|
|
7362
|
+
resourceInstallation?: ResourceInstallation | null;
|
|
7363
|
+
resourceInstallationEdge?: ResourceInstallationEdge | null;
|
|
7364
|
+
}
|
|
5182
7365
|
export interface CreateResourceStatusCheckPayload {
|
|
5183
7366
|
clientMutationId?: string | null;
|
|
5184
7367
|
/** The `ResourceStatusCheck` that was created by this mutation. */
|
|
5185
7368
|
resourceStatusCheck?: ResourceStatusCheck | null;
|
|
5186
7369
|
resourceStatusCheckEdge?: ResourceStatusCheckEdge | null;
|
|
5187
7370
|
}
|
|
7371
|
+
export interface CreateResourceUsageLogPayload {
|
|
7372
|
+
clientMutationId?: string | null;
|
|
7373
|
+
/** The `ResourceUsageLog` that was created by this mutation. */
|
|
7374
|
+
resourceUsageLog?: ResourceUsageLog | null;
|
|
7375
|
+
resourceUsageLogEdge?: ResourceUsageLogEdge | null;
|
|
7376
|
+
}
|
|
7377
|
+
export interface CreateResourceUsageSummaryPayload {
|
|
7378
|
+
clientMutationId?: string | null;
|
|
7379
|
+
/** The `ResourceUsageSummary` that was created by this mutation. */
|
|
7380
|
+
resourceUsageSummary?: ResourceUsageSummary | null;
|
|
7381
|
+
resourceUsageSummaryEdge?: ResourceUsageSummaryEdge | null;
|
|
7382
|
+
}
|
|
7383
|
+
export interface CreateWebhookEndpointPayload {
|
|
7384
|
+
clientMutationId?: string | null;
|
|
7385
|
+
/** The `WebhookEndpoint` that was created by this mutation. */
|
|
7386
|
+
webhookEndpoint?: WebhookEndpoint | null;
|
|
7387
|
+
webhookEndpointEdge?: WebhookEndpointEdge | null;
|
|
7388
|
+
}
|
|
7389
|
+
export interface CreateWebhookEventPayload {
|
|
7390
|
+
clientMutationId?: string | null;
|
|
7391
|
+
/** The `WebhookEvent` that was created by this mutation. */
|
|
7392
|
+
webhookEvent?: WebhookEvent | null;
|
|
7393
|
+
webhookEventEdge?: WebhookEventEdge | null;
|
|
7394
|
+
}
|
|
5188
7395
|
export interface DeleteDbPresetPayload {
|
|
5189
7396
|
clientMutationId?: string | null;
|
|
5190
7397
|
/** The `DbPreset` that was deleted by this mutation. */
|
|
@@ -5353,6 +7560,30 @@ export interface DeletePlatformFunctionInvocationPayload {
|
|
|
5353
7560
|
platformFunctionInvocation?: PlatformFunctionInvocation | null;
|
|
5354
7561
|
platformFunctionInvocationEdge?: PlatformFunctionInvocationEdge | null;
|
|
5355
7562
|
}
|
|
7563
|
+
export interface DeletePlatformInfraCommitPayload {
|
|
7564
|
+
clientMutationId?: string | null;
|
|
7565
|
+
/** The `PlatformInfraCommit` that was deleted by this mutation. */
|
|
7566
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
7567
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
7568
|
+
}
|
|
7569
|
+
export interface DeletePlatformInfraObjectPayload {
|
|
7570
|
+
clientMutationId?: string | null;
|
|
7571
|
+
/** The `PlatformInfraObject` that was deleted by this mutation. */
|
|
7572
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
7573
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
7574
|
+
}
|
|
7575
|
+
export interface DeletePlatformInfraRefPayload {
|
|
7576
|
+
clientMutationId?: string | null;
|
|
7577
|
+
/** The `PlatformInfraRef` that was deleted by this mutation. */
|
|
7578
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
7579
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
7580
|
+
}
|
|
7581
|
+
export interface DeletePlatformInfraStorePayload {
|
|
7582
|
+
clientMutationId?: string | null;
|
|
7583
|
+
/** The `PlatformInfraStore` that was deleted by this mutation. */
|
|
7584
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
7585
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
7586
|
+
}
|
|
5356
7587
|
export interface DeletePlatformNamespacePayload {
|
|
5357
7588
|
clientMutationId?: string | null;
|
|
5358
7589
|
/** The `PlatformNamespace` that was deleted by this mutation. */
|
|
@@ -5383,12 +7614,42 @@ export interface DeletePlatformResourceEventPayload {
|
|
|
5383
7614
|
platformResourceEvent?: PlatformResourceEvent | null;
|
|
5384
7615
|
platformResourceEventEdge?: PlatformResourceEventEdge | null;
|
|
5385
7616
|
}
|
|
7617
|
+
export interface DeletePlatformResourceInstallationPayload {
|
|
7618
|
+
clientMutationId?: string | null;
|
|
7619
|
+
/** The `PlatformResourceInstallation` that was deleted by this mutation. */
|
|
7620
|
+
platformResourceInstallation?: PlatformResourceInstallation | null;
|
|
7621
|
+
platformResourceInstallationEdge?: PlatformResourceInstallationEdge | null;
|
|
7622
|
+
}
|
|
5386
7623
|
export interface DeletePlatformResourceStatusCheckPayload {
|
|
5387
7624
|
clientMutationId?: string | null;
|
|
5388
7625
|
/** The `PlatformResourceStatusCheck` that was deleted by this mutation. */
|
|
5389
7626
|
platformResourceStatusCheck?: PlatformResourceStatusCheck | null;
|
|
5390
7627
|
platformResourceStatusCheckEdge?: PlatformResourceStatusCheckEdge | null;
|
|
5391
7628
|
}
|
|
7629
|
+
export interface DeletePlatformResourceUsageLogPayload {
|
|
7630
|
+
clientMutationId?: string | null;
|
|
7631
|
+
/** The `PlatformResourceUsageLog` that was deleted by this mutation. */
|
|
7632
|
+
platformResourceUsageLog?: PlatformResourceUsageLog | null;
|
|
7633
|
+
platformResourceUsageLogEdge?: PlatformResourceUsageLogEdge | null;
|
|
7634
|
+
}
|
|
7635
|
+
export interface DeletePlatformResourceUsageSummaryPayload {
|
|
7636
|
+
clientMutationId?: string | null;
|
|
7637
|
+
/** The `PlatformResourceUsageSummary` that was deleted by this mutation. */
|
|
7638
|
+
platformResourceUsageSummary?: PlatformResourceUsageSummary | null;
|
|
7639
|
+
platformResourceUsageSummaryEdge?: PlatformResourceUsageSummaryEdge | null;
|
|
7640
|
+
}
|
|
7641
|
+
export interface DeletePlatformWebhookEndpointPayload {
|
|
7642
|
+
clientMutationId?: string | null;
|
|
7643
|
+
/** The `PlatformWebhookEndpoint` that was deleted by this mutation. */
|
|
7644
|
+
platformWebhookEndpoint?: PlatformWebhookEndpoint | null;
|
|
7645
|
+
platformWebhookEndpointEdge?: PlatformWebhookEndpointEdge | null;
|
|
7646
|
+
}
|
|
7647
|
+
export interface DeletePlatformWebhookEventPayload {
|
|
7648
|
+
clientMutationId?: string | null;
|
|
7649
|
+
/** The `PlatformWebhookEvent` that was deleted by this mutation. */
|
|
7650
|
+
platformWebhookEvent?: PlatformWebhookEvent | null;
|
|
7651
|
+
platformWebhookEventEdge?: PlatformWebhookEventEdge | null;
|
|
7652
|
+
}
|
|
5392
7653
|
export interface DeleteResourcePayload {
|
|
5393
7654
|
clientMutationId?: string | null;
|
|
5394
7655
|
/** The `Resource` that was deleted by this mutation. */
|
|
@@ -5407,12 +7668,42 @@ export interface DeleteResourceEventPayload {
|
|
|
5407
7668
|
resourceEvent?: ResourceEvent | null;
|
|
5408
7669
|
resourceEventEdge?: ResourceEventEdge | null;
|
|
5409
7670
|
}
|
|
7671
|
+
export interface DeleteResourceInstallationPayload {
|
|
7672
|
+
clientMutationId?: string | null;
|
|
7673
|
+
/** The `ResourceInstallation` that was deleted by this mutation. */
|
|
7674
|
+
resourceInstallation?: ResourceInstallation | null;
|
|
7675
|
+
resourceInstallationEdge?: ResourceInstallationEdge | null;
|
|
7676
|
+
}
|
|
5410
7677
|
export interface DeleteResourceStatusCheckPayload {
|
|
5411
7678
|
clientMutationId?: string | null;
|
|
5412
7679
|
/** The `ResourceStatusCheck` that was deleted by this mutation. */
|
|
5413
7680
|
resourceStatusCheck?: ResourceStatusCheck | null;
|
|
5414
7681
|
resourceStatusCheckEdge?: ResourceStatusCheckEdge | null;
|
|
5415
7682
|
}
|
|
7683
|
+
export interface DeleteResourceUsageLogPayload {
|
|
7684
|
+
clientMutationId?: string | null;
|
|
7685
|
+
/** The `ResourceUsageLog` that was deleted by this mutation. */
|
|
7686
|
+
resourceUsageLog?: ResourceUsageLog | null;
|
|
7687
|
+
resourceUsageLogEdge?: ResourceUsageLogEdge | null;
|
|
7688
|
+
}
|
|
7689
|
+
export interface DeleteResourceUsageSummaryPayload {
|
|
7690
|
+
clientMutationId?: string | null;
|
|
7691
|
+
/** The `ResourceUsageSummary` that was deleted by this mutation. */
|
|
7692
|
+
resourceUsageSummary?: ResourceUsageSummary | null;
|
|
7693
|
+
resourceUsageSummaryEdge?: ResourceUsageSummaryEdge | null;
|
|
7694
|
+
}
|
|
7695
|
+
export interface DeleteWebhookEndpointPayload {
|
|
7696
|
+
clientMutationId?: string | null;
|
|
7697
|
+
/** The `WebhookEndpoint` that was deleted by this mutation. */
|
|
7698
|
+
webhookEndpoint?: WebhookEndpoint | null;
|
|
7699
|
+
webhookEndpointEdge?: WebhookEndpointEdge | null;
|
|
7700
|
+
}
|
|
7701
|
+
export interface DeleteWebhookEventPayload {
|
|
7702
|
+
clientMutationId?: string | null;
|
|
7703
|
+
/** The `WebhookEvent` that was deleted by this mutation. */
|
|
7704
|
+
webhookEvent?: WebhookEvent | null;
|
|
7705
|
+
webhookEventEdge?: WebhookEventEdge | null;
|
|
7706
|
+
}
|
|
5416
7707
|
export interface ImportDefinitionsPayload {
|
|
5417
7708
|
clientMutationId?: string | null;
|
|
5418
7709
|
}
|
|
@@ -5438,6 +7729,30 @@ export interface InsertNodeAtPathPayload {
|
|
|
5438
7729
|
clientMutationId?: string | null;
|
|
5439
7730
|
result?: string | null;
|
|
5440
7731
|
}
|
|
7732
|
+
export interface PlatformInfraInitEmptyRepoPayload {
|
|
7733
|
+
clientMutationId?: string | null;
|
|
7734
|
+
}
|
|
7735
|
+
export interface PlatformInfraInsertNodeAtPathPayload {
|
|
7736
|
+
clientMutationId?: string | null;
|
|
7737
|
+
result?: string | null;
|
|
7738
|
+
}
|
|
7739
|
+
export interface PlatformInfraSetDataAtPathPayload {
|
|
7740
|
+
clientMutationId?: string | null;
|
|
7741
|
+
result?: string | null;
|
|
7742
|
+
}
|
|
7743
|
+
export interface PlatformResourceInstallationsInstallPayload {
|
|
7744
|
+
clientMutationId?: string | null;
|
|
7745
|
+
result?: string | null;
|
|
7746
|
+
}
|
|
7747
|
+
export interface PlatformResourceInstallationsRollbackPayload {
|
|
7748
|
+
clientMutationId?: string | null;
|
|
7749
|
+
}
|
|
7750
|
+
export interface PlatformResourceInstallationsUninstallPayload {
|
|
7751
|
+
clientMutationId?: string | null;
|
|
7752
|
+
}
|
|
7753
|
+
export interface PlatformResourceInstallationsUpgradePayload {
|
|
7754
|
+
clientMutationId?: string | null;
|
|
7755
|
+
}
|
|
5441
7756
|
export interface ProvisionBucketPayload {
|
|
5442
7757
|
/** The access type applied */
|
|
5443
7758
|
accessType: string;
|
|
@@ -5452,6 +7767,19 @@ export interface ProvisionBucketPayload {
|
|
|
5452
7767
|
/** Whether provisioning succeeded */
|
|
5453
7768
|
success: boolean;
|
|
5454
7769
|
}
|
|
7770
|
+
export interface ResourceInstallationsInstallPayload {
|
|
7771
|
+
clientMutationId?: string | null;
|
|
7772
|
+
result?: string | null;
|
|
7773
|
+
}
|
|
7774
|
+
export interface ResourceInstallationsRollbackPayload {
|
|
7775
|
+
clientMutationId?: string | null;
|
|
7776
|
+
}
|
|
7777
|
+
export interface ResourceInstallationsUninstallPayload {
|
|
7778
|
+
clientMutationId?: string | null;
|
|
7779
|
+
}
|
|
7780
|
+
export interface ResourceInstallationsUpgradePayload {
|
|
7781
|
+
clientMutationId?: string | null;
|
|
7782
|
+
}
|
|
5455
7783
|
export interface SaveGraphPayload {
|
|
5456
7784
|
clientMutationId?: string | null;
|
|
5457
7785
|
result?: string | null;
|
|
@@ -5632,6 +7960,30 @@ export interface UpdatePlatformFunctionInvocationPayload {
|
|
|
5632
7960
|
platformFunctionInvocation?: PlatformFunctionInvocation | null;
|
|
5633
7961
|
platformFunctionInvocationEdge?: PlatformFunctionInvocationEdge | null;
|
|
5634
7962
|
}
|
|
7963
|
+
export interface UpdatePlatformInfraCommitPayload {
|
|
7964
|
+
clientMutationId?: string | null;
|
|
7965
|
+
/** The `PlatformInfraCommit` that was updated by this mutation. */
|
|
7966
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
7967
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
7968
|
+
}
|
|
7969
|
+
export interface UpdatePlatformInfraObjectPayload {
|
|
7970
|
+
clientMutationId?: string | null;
|
|
7971
|
+
/** The `PlatformInfraObject` that was updated by this mutation. */
|
|
7972
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
7973
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
7974
|
+
}
|
|
7975
|
+
export interface UpdatePlatformInfraRefPayload {
|
|
7976
|
+
clientMutationId?: string | null;
|
|
7977
|
+
/** The `PlatformInfraRef` that was updated by this mutation. */
|
|
7978
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
7979
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
7980
|
+
}
|
|
7981
|
+
export interface UpdatePlatformInfraStorePayload {
|
|
7982
|
+
clientMutationId?: string | null;
|
|
7983
|
+
/** The `PlatformInfraStore` that was updated by this mutation. */
|
|
7984
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
7985
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
7986
|
+
}
|
|
5635
7987
|
export interface UpdatePlatformNamespacePayload {
|
|
5636
7988
|
clientMutationId?: string | null;
|
|
5637
7989
|
/** The `PlatformNamespace` that was updated by this mutation. */
|
|
@@ -5662,12 +8014,42 @@ export interface UpdatePlatformResourceEventPayload {
|
|
|
5662
8014
|
platformResourceEvent?: PlatformResourceEvent | null;
|
|
5663
8015
|
platformResourceEventEdge?: PlatformResourceEventEdge | null;
|
|
5664
8016
|
}
|
|
8017
|
+
export interface UpdatePlatformResourceInstallationPayload {
|
|
8018
|
+
clientMutationId?: string | null;
|
|
8019
|
+
/** The `PlatformResourceInstallation` that was updated by this mutation. */
|
|
8020
|
+
platformResourceInstallation?: PlatformResourceInstallation | null;
|
|
8021
|
+
platformResourceInstallationEdge?: PlatformResourceInstallationEdge | null;
|
|
8022
|
+
}
|
|
5665
8023
|
export interface UpdatePlatformResourceStatusCheckPayload {
|
|
5666
8024
|
clientMutationId?: string | null;
|
|
5667
8025
|
/** The `PlatformResourceStatusCheck` that was updated by this mutation. */
|
|
5668
8026
|
platformResourceStatusCheck?: PlatformResourceStatusCheck | null;
|
|
5669
8027
|
platformResourceStatusCheckEdge?: PlatformResourceStatusCheckEdge | null;
|
|
5670
8028
|
}
|
|
8029
|
+
export interface UpdatePlatformResourceUsageLogPayload {
|
|
8030
|
+
clientMutationId?: string | null;
|
|
8031
|
+
/** The `PlatformResourceUsageLog` that was updated by this mutation. */
|
|
8032
|
+
platformResourceUsageLog?: PlatformResourceUsageLog | null;
|
|
8033
|
+
platformResourceUsageLogEdge?: PlatformResourceUsageLogEdge | null;
|
|
8034
|
+
}
|
|
8035
|
+
export interface UpdatePlatformResourceUsageSummaryPayload {
|
|
8036
|
+
clientMutationId?: string | null;
|
|
8037
|
+
/** The `PlatformResourceUsageSummary` that was updated by this mutation. */
|
|
8038
|
+
platformResourceUsageSummary?: PlatformResourceUsageSummary | null;
|
|
8039
|
+
platformResourceUsageSummaryEdge?: PlatformResourceUsageSummaryEdge | null;
|
|
8040
|
+
}
|
|
8041
|
+
export interface UpdatePlatformWebhookEndpointPayload {
|
|
8042
|
+
clientMutationId?: string | null;
|
|
8043
|
+
/** The `PlatformWebhookEndpoint` that was updated by this mutation. */
|
|
8044
|
+
platformWebhookEndpoint?: PlatformWebhookEndpoint | null;
|
|
8045
|
+
platformWebhookEndpointEdge?: PlatformWebhookEndpointEdge | null;
|
|
8046
|
+
}
|
|
8047
|
+
export interface UpdatePlatformWebhookEventPayload {
|
|
8048
|
+
clientMutationId?: string | null;
|
|
8049
|
+
/** The `PlatformWebhookEvent` that was updated by this mutation. */
|
|
8050
|
+
platformWebhookEvent?: PlatformWebhookEvent | null;
|
|
8051
|
+
platformWebhookEventEdge?: PlatformWebhookEventEdge | null;
|
|
8052
|
+
}
|
|
5671
8053
|
export interface UpdateResourcePayload {
|
|
5672
8054
|
clientMutationId?: string | null;
|
|
5673
8055
|
/** The `Resource` that was updated by this mutation. */
|
|
@@ -5686,12 +8068,42 @@ export interface UpdateResourceEventPayload {
|
|
|
5686
8068
|
resourceEvent?: ResourceEvent | null;
|
|
5687
8069
|
resourceEventEdge?: ResourceEventEdge | null;
|
|
5688
8070
|
}
|
|
8071
|
+
export interface UpdateResourceInstallationPayload {
|
|
8072
|
+
clientMutationId?: string | null;
|
|
8073
|
+
/** The `ResourceInstallation` that was updated by this mutation. */
|
|
8074
|
+
resourceInstallation?: ResourceInstallation | null;
|
|
8075
|
+
resourceInstallationEdge?: ResourceInstallationEdge | null;
|
|
8076
|
+
}
|
|
5689
8077
|
export interface UpdateResourceStatusCheckPayload {
|
|
5690
8078
|
clientMutationId?: string | null;
|
|
5691
8079
|
/** The `ResourceStatusCheck` that was updated by this mutation. */
|
|
5692
8080
|
resourceStatusCheck?: ResourceStatusCheck | null;
|
|
5693
8081
|
resourceStatusCheckEdge?: ResourceStatusCheckEdge | null;
|
|
5694
8082
|
}
|
|
8083
|
+
export interface UpdateResourceUsageLogPayload {
|
|
8084
|
+
clientMutationId?: string | null;
|
|
8085
|
+
/** The `ResourceUsageLog` that was updated by this mutation. */
|
|
8086
|
+
resourceUsageLog?: ResourceUsageLog | null;
|
|
8087
|
+
resourceUsageLogEdge?: ResourceUsageLogEdge | null;
|
|
8088
|
+
}
|
|
8089
|
+
export interface UpdateResourceUsageSummaryPayload {
|
|
8090
|
+
clientMutationId?: string | null;
|
|
8091
|
+
/** The `ResourceUsageSummary` that was updated by this mutation. */
|
|
8092
|
+
resourceUsageSummary?: ResourceUsageSummary | null;
|
|
8093
|
+
resourceUsageSummaryEdge?: ResourceUsageSummaryEdge | null;
|
|
8094
|
+
}
|
|
8095
|
+
export interface UpdateWebhookEndpointPayload {
|
|
8096
|
+
clientMutationId?: string | null;
|
|
8097
|
+
/** The `WebhookEndpoint` that was updated by this mutation. */
|
|
8098
|
+
webhookEndpoint?: WebhookEndpoint | null;
|
|
8099
|
+
webhookEndpointEdge?: WebhookEndpointEdge | null;
|
|
8100
|
+
}
|
|
8101
|
+
export interface UpdateWebhookEventPayload {
|
|
8102
|
+
clientMutationId?: string | null;
|
|
8103
|
+
/** The `WebhookEvent` that was updated by this mutation. */
|
|
8104
|
+
webhookEvent?: WebhookEvent | null;
|
|
8105
|
+
webhookEventEdge?: WebhookEventEdge | null;
|
|
8106
|
+
}
|
|
5695
8107
|
export interface ValidateFunctionGraphPayload {
|
|
5696
8108
|
clientMutationId?: string | null;
|
|
5697
8109
|
result?: boolean | null;
|
|
@@ -5735,6 +8147,12 @@ export interface PageInfo {
|
|
|
5735
8147
|
/** When paginating backwards, the cursor to continue. */
|
|
5736
8148
|
startCursor?: string | null;
|
|
5737
8149
|
}
|
|
8150
|
+
/** A `DeclaredCapacity` edge in the connection. */
|
|
8151
|
+
export interface DeclaredCapacityEdge {
|
|
8152
|
+
cursor?: string | null;
|
|
8153
|
+
/** The `DeclaredCapacity` at the end of the edge. */
|
|
8154
|
+
node?: DeclaredCapacity | null;
|
|
8155
|
+
}
|
|
5738
8156
|
/** A `FunctionApiBinding` edge in the connection. */
|
|
5739
8157
|
export interface FunctionApiBindingEdge {
|
|
5740
8158
|
cursor?: string | null;
|
|
@@ -5819,11 +8237,11 @@ export interface FunctionInvocationEdge {
|
|
|
5819
8237
|
/** The `FunctionInvocation` at the end of the edge. */
|
|
5820
8238
|
node?: FunctionInvocation | null;
|
|
5821
8239
|
}
|
|
5822
|
-
/** A `
|
|
5823
|
-
export interface
|
|
8240
|
+
/** A `GetAllTreeNodesRecord` edge in the connection. */
|
|
8241
|
+
export interface GetAllTreeNodesEdge {
|
|
5824
8242
|
cursor?: string | null;
|
|
5825
|
-
/** The `
|
|
5826
|
-
node?:
|
|
8243
|
+
/** The `GetAllTreeNodesRecord` at the end of the edge. */
|
|
8244
|
+
node?: GetAllTreeNodesRecord | null;
|
|
5827
8245
|
}
|
|
5828
8246
|
/** A `InfraCommit` edge in the connection. */
|
|
5829
8247
|
export interface InfraCommitEdge {
|
|
@@ -5831,11 +8249,11 @@ export interface InfraCommitEdge {
|
|
|
5831
8249
|
/** The `InfraCommit` at the end of the edge. */
|
|
5832
8250
|
node?: InfraCommit | null;
|
|
5833
8251
|
}
|
|
5834
|
-
/** A `
|
|
5835
|
-
export interface
|
|
8252
|
+
/** A `InfraGetAllTreeNodesRecord` edge in the connection. */
|
|
8253
|
+
export interface InfraGetAllTreeNodesEdge {
|
|
5836
8254
|
cursor?: string | null;
|
|
5837
|
-
/** The `
|
|
5838
|
-
node?:
|
|
8255
|
+
/** The `InfraGetAllTreeNodesRecord` at the end of the edge. */
|
|
8256
|
+
node?: InfraGetAllTreeNodesRecord | null;
|
|
5839
8257
|
}
|
|
5840
8258
|
/** A `InfraObject` edge in the connection. */
|
|
5841
8259
|
export interface InfraObjectEdge {
|
|
@@ -5873,6 +8291,12 @@ export interface NamespaceEdge {
|
|
|
5873
8291
|
/** The `Namespace` at the end of the edge. */
|
|
5874
8292
|
node?: Namespace | null;
|
|
5875
8293
|
}
|
|
8294
|
+
/** A `PlatformDeclaredCapacity` edge in the connection. */
|
|
8295
|
+
export interface PlatformDeclaredCapacityEdge {
|
|
8296
|
+
cursor?: string | null;
|
|
8297
|
+
/** The `PlatformDeclaredCapacity` at the end of the edge. */
|
|
8298
|
+
node?: PlatformDeclaredCapacity | null;
|
|
8299
|
+
}
|
|
5876
8300
|
/** A `PlatformFunctionApiBinding` edge in the connection. */
|
|
5877
8301
|
export interface PlatformFunctionApiBindingEdge {
|
|
5878
8302
|
cursor?: string | null;
|
|
@@ -5909,6 +8333,36 @@ export interface PlatformFunctionInvocationEdge {
|
|
|
5909
8333
|
/** The `PlatformFunctionInvocation` at the end of the edge. */
|
|
5910
8334
|
node?: PlatformFunctionInvocation | null;
|
|
5911
8335
|
}
|
|
8336
|
+
/** A `PlatformInfraCommit` edge in the connection. */
|
|
8337
|
+
export interface PlatformInfraCommitEdge {
|
|
8338
|
+
cursor?: string | null;
|
|
8339
|
+
/** The `PlatformInfraCommit` at the end of the edge. */
|
|
8340
|
+
node?: PlatformInfraCommit | null;
|
|
8341
|
+
}
|
|
8342
|
+
/** A `PlatformInfraGetAllTreeNodesRecord` edge in the connection. */
|
|
8343
|
+
export interface PlatformInfraGetAllTreeNodesEdge {
|
|
8344
|
+
cursor?: string | null;
|
|
8345
|
+
/** The `PlatformInfraGetAllTreeNodesRecord` at the end of the edge. */
|
|
8346
|
+
node?: PlatformInfraGetAllTreeNodesRecord | null;
|
|
8347
|
+
}
|
|
8348
|
+
/** A `PlatformInfraObject` edge in the connection. */
|
|
8349
|
+
export interface PlatformInfraObjectEdge {
|
|
8350
|
+
cursor?: string | null;
|
|
8351
|
+
/** The `PlatformInfraObject` at the end of the edge. */
|
|
8352
|
+
node?: PlatformInfraObject | null;
|
|
8353
|
+
}
|
|
8354
|
+
/** A `PlatformInfraRef` edge in the connection. */
|
|
8355
|
+
export interface PlatformInfraRefEdge {
|
|
8356
|
+
cursor?: string | null;
|
|
8357
|
+
/** The `PlatformInfraRef` at the end of the edge. */
|
|
8358
|
+
node?: PlatformInfraRef | null;
|
|
8359
|
+
}
|
|
8360
|
+
/** A `PlatformInfraStore` edge in the connection. */
|
|
8361
|
+
export interface PlatformInfraStoreEdge {
|
|
8362
|
+
cursor?: string | null;
|
|
8363
|
+
/** The `PlatformInfraStore` at the end of the edge. */
|
|
8364
|
+
node?: PlatformInfraStore | null;
|
|
8365
|
+
}
|
|
5912
8366
|
/** A `PlatformNamespaceEvent` edge in the connection. */
|
|
5913
8367
|
export interface PlatformNamespaceEventEdge {
|
|
5914
8368
|
cursor?: string | null;
|
|
@@ -5933,18 +8387,48 @@ export interface PlatformResourceEventEdge {
|
|
|
5933
8387
|
/** The `PlatformResourceEvent` at the end of the edge. */
|
|
5934
8388
|
node?: PlatformResourceEvent | null;
|
|
5935
8389
|
}
|
|
8390
|
+
/** A `PlatformResourceInstallation` edge in the connection. */
|
|
8391
|
+
export interface PlatformResourceInstallationEdge {
|
|
8392
|
+
cursor?: string | null;
|
|
8393
|
+
/** The `PlatformResourceInstallation` at the end of the edge. */
|
|
8394
|
+
node?: PlatformResourceInstallation | null;
|
|
8395
|
+
}
|
|
5936
8396
|
/** A `PlatformResourceStatusCheck` edge in the connection. */
|
|
5937
8397
|
export interface PlatformResourceStatusCheckEdge {
|
|
5938
8398
|
cursor?: string | null;
|
|
5939
8399
|
/** The `PlatformResourceStatusCheck` at the end of the edge. */
|
|
5940
8400
|
node?: PlatformResourceStatusCheck | null;
|
|
5941
8401
|
}
|
|
8402
|
+
/** A `PlatformResourceUsageLog` edge in the connection. */
|
|
8403
|
+
export interface PlatformResourceUsageLogEdge {
|
|
8404
|
+
cursor?: string | null;
|
|
8405
|
+
/** The `PlatformResourceUsageLog` at the end of the edge. */
|
|
8406
|
+
node?: PlatformResourceUsageLog | null;
|
|
8407
|
+
}
|
|
8408
|
+
/** A `PlatformResourceUsageSummary` edge in the connection. */
|
|
8409
|
+
export interface PlatformResourceUsageSummaryEdge {
|
|
8410
|
+
cursor?: string | null;
|
|
8411
|
+
/** The `PlatformResourceUsageSummary` at the end of the edge. */
|
|
8412
|
+
node?: PlatformResourceUsageSummary | null;
|
|
8413
|
+
}
|
|
8414
|
+
/** A `PlatformResourceUtilizationDaily` edge in the connection. */
|
|
8415
|
+
export interface PlatformResourceUtilizationDailyEdge {
|
|
8416
|
+
cursor?: string | null;
|
|
8417
|
+
/** The `PlatformResourceUtilizationDaily` at the end of the edge. */
|
|
8418
|
+
node?: PlatformResourceUtilizationDaily | null;
|
|
8419
|
+
}
|
|
5942
8420
|
/** A `PlatformResource` edge in the connection. */
|
|
5943
8421
|
export interface PlatformResourceEdge {
|
|
5944
8422
|
cursor?: string | null;
|
|
5945
8423
|
/** The `PlatformResource` at the end of the edge. */
|
|
5946
8424
|
node?: PlatformResource | null;
|
|
5947
8425
|
}
|
|
8426
|
+
/** A `PlatformResourcesHealth` edge in the connection. */
|
|
8427
|
+
export interface PlatformResourcesHealthEdge {
|
|
8428
|
+
cursor?: string | null;
|
|
8429
|
+
/** The `PlatformResourcesHealth` at the end of the edge. */
|
|
8430
|
+
node?: PlatformResourcesHealth | null;
|
|
8431
|
+
}
|
|
5948
8432
|
/** A `PlatformResourcesRequirementsState` edge in the connection. */
|
|
5949
8433
|
export interface PlatformResourcesRequirementsStateEdge {
|
|
5950
8434
|
cursor?: string | null;
|
|
@@ -5957,6 +8441,18 @@ export interface PlatformResourcesResolvedRequirementEdge {
|
|
|
5957
8441
|
/** The `PlatformResourcesResolvedRequirement` at the end of the edge. */
|
|
5958
8442
|
node?: PlatformResourcesResolvedRequirement | null;
|
|
5959
8443
|
}
|
|
8444
|
+
/** A `PlatformWebhookEndpoint` edge in the connection. */
|
|
8445
|
+
export interface PlatformWebhookEndpointEdge {
|
|
8446
|
+
cursor?: string | null;
|
|
8447
|
+
/** The `PlatformWebhookEndpoint` at the end of the edge. */
|
|
8448
|
+
node?: PlatformWebhookEndpoint | null;
|
|
8449
|
+
}
|
|
8450
|
+
/** A `PlatformWebhookEvent` edge in the connection. */
|
|
8451
|
+
export interface PlatformWebhookEventEdge {
|
|
8452
|
+
cursor?: string | null;
|
|
8453
|
+
/** The `PlatformWebhookEvent` at the end of the edge. */
|
|
8454
|
+
node?: PlatformWebhookEvent | null;
|
|
8455
|
+
}
|
|
5960
8456
|
/** A `ResourceDefinition` edge in the connection. */
|
|
5961
8457
|
export interface ResourceDefinitionEdge {
|
|
5962
8458
|
cursor?: string | null;
|
|
@@ -5969,18 +8465,48 @@ export interface ResourceEventEdge {
|
|
|
5969
8465
|
/** The `ResourceEvent` at the end of the edge. */
|
|
5970
8466
|
node?: ResourceEvent | null;
|
|
5971
8467
|
}
|
|
8468
|
+
/** A `ResourceInstallation` edge in the connection. */
|
|
8469
|
+
export interface ResourceInstallationEdge {
|
|
8470
|
+
cursor?: string | null;
|
|
8471
|
+
/** The `ResourceInstallation` at the end of the edge. */
|
|
8472
|
+
node?: ResourceInstallation | null;
|
|
8473
|
+
}
|
|
5972
8474
|
/** A `ResourceStatusCheck` edge in the connection. */
|
|
5973
8475
|
export interface ResourceStatusCheckEdge {
|
|
5974
8476
|
cursor?: string | null;
|
|
5975
8477
|
/** The `ResourceStatusCheck` at the end of the edge. */
|
|
5976
8478
|
node?: ResourceStatusCheck | null;
|
|
5977
8479
|
}
|
|
8480
|
+
/** A `ResourceUsageLog` edge in the connection. */
|
|
8481
|
+
export interface ResourceUsageLogEdge {
|
|
8482
|
+
cursor?: string | null;
|
|
8483
|
+
/** The `ResourceUsageLog` at the end of the edge. */
|
|
8484
|
+
node?: ResourceUsageLog | null;
|
|
8485
|
+
}
|
|
8486
|
+
/** A `ResourceUsageSummary` edge in the connection. */
|
|
8487
|
+
export interface ResourceUsageSummaryEdge {
|
|
8488
|
+
cursor?: string | null;
|
|
8489
|
+
/** The `ResourceUsageSummary` at the end of the edge. */
|
|
8490
|
+
node?: ResourceUsageSummary | null;
|
|
8491
|
+
}
|
|
8492
|
+
/** A `ResourceUtilizationDaily` edge in the connection. */
|
|
8493
|
+
export interface ResourceUtilizationDailyEdge {
|
|
8494
|
+
cursor?: string | null;
|
|
8495
|
+
/** The `ResourceUtilizationDaily` at the end of the edge. */
|
|
8496
|
+
node?: ResourceUtilizationDaily | null;
|
|
8497
|
+
}
|
|
5978
8498
|
/** A `Resource` edge in the connection. */
|
|
5979
8499
|
export interface ResourceEdge {
|
|
5980
8500
|
cursor?: string | null;
|
|
5981
8501
|
/** The `Resource` at the end of the edge. */
|
|
5982
8502
|
node?: Resource | null;
|
|
5983
8503
|
}
|
|
8504
|
+
/** A `ResourcesHealth` edge in the connection. */
|
|
8505
|
+
export interface ResourcesHealthEdge {
|
|
8506
|
+
cursor?: string | null;
|
|
8507
|
+
/** The `ResourcesHealth` at the end of the edge. */
|
|
8508
|
+
node?: ResourcesHealth | null;
|
|
8509
|
+
}
|
|
5984
8510
|
/** A `ResourcesRequirementsState` edge in the connection. */
|
|
5985
8511
|
export interface ResourcesRequirementsStateEdge {
|
|
5986
8512
|
cursor?: string | null;
|
|
@@ -5993,6 +8519,18 @@ export interface ResourcesResolvedRequirementEdge {
|
|
|
5993
8519
|
/** The `ResourcesResolvedRequirement` at the end of the edge. */
|
|
5994
8520
|
node?: ResourcesResolvedRequirement | null;
|
|
5995
8521
|
}
|
|
8522
|
+
/** A `WebhookEndpoint` edge in the connection. */
|
|
8523
|
+
export interface WebhookEndpointEdge {
|
|
8524
|
+
cursor?: string | null;
|
|
8525
|
+
/** The `WebhookEndpoint` at the end of the edge. */
|
|
8526
|
+
node?: WebhookEndpoint | null;
|
|
8527
|
+
}
|
|
8528
|
+
/** A `WebhookEvent` edge in the connection. */
|
|
8529
|
+
export interface WebhookEventEdge {
|
|
8530
|
+
cursor?: string | null;
|
|
8531
|
+
/** The `WebhookEvent` at the end of the edge. */
|
|
8532
|
+
node?: WebhookEvent | null;
|
|
8533
|
+
}
|
|
5996
8534
|
/** Table constraints */
|
|
5997
8535
|
export interface MetaConstraints {
|
|
5998
8536
|
foreignKey: MetaForeignKeyConstraint[];
|