@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
package/infra/schema-types.d.ts
CHANGED
|
@@ -3,23 +3,23 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { DbPreset,
|
|
6
|
+
import type { DbPreset, Namespace, NamespaceEvent, PlatformInfraCommit, PlatformInfraGetAllTreeNodesRecord, PlatformInfraObject, PlatformInfraRef, PlatformInfraStore, PlatformNamespace, PlatformNamespaceEvent, BooleanFilter, DatetimeFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
/** Methods to use when ordering `DbPreset`. */
|
|
8
8
|
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';
|
|
9
|
-
/** Methods to use when ordering `InfraCommit`. */
|
|
10
|
-
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' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
11
|
-
/** Methods to use when ordering `InfraObject`. */
|
|
12
|
-
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' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC';
|
|
13
|
-
/** Methods to use when ordering `InfraRef`. */
|
|
14
|
-
export type InfraRefOrderBy = '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';
|
|
15
|
-
/** Methods to use when ordering `InfraStore`. */
|
|
16
|
-
export type InfraStoreOrderBy = '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';
|
|
17
9
|
/** Methods to use when ordering `NamespaceEvent`. */
|
|
18
|
-
export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | '
|
|
10
|
+
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';
|
|
19
11
|
/** Methods to use when ordering `Namespace`. */
|
|
20
12
|
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';
|
|
13
|
+
/** Methods to use when ordering `PlatformInfraCommit`. */
|
|
14
|
+
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';
|
|
15
|
+
/** Methods to use when ordering `PlatformInfraObject`. */
|
|
16
|
+
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';
|
|
17
|
+
/** Methods to use when ordering `PlatformInfraRef`. */
|
|
18
|
+
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';
|
|
19
|
+
/** Methods to use when ordering `PlatformInfraStore`. */
|
|
20
|
+
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';
|
|
21
21
|
/** Methods to use when ordering `PlatformNamespaceEvent`. */
|
|
22
|
-
export type PlatformNamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | '
|
|
22
|
+
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';
|
|
23
23
|
/** Methods to use when ordering `PlatformNamespace`. */
|
|
24
24
|
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';
|
|
25
25
|
export interface CreateDbPresetInput {
|
|
@@ -27,35 +27,35 @@ export interface CreateDbPresetInput {
|
|
|
27
27
|
/** The `DbPreset` to be created by this mutation. */
|
|
28
28
|
dbPreset: DbPresetInput;
|
|
29
29
|
}
|
|
30
|
-
export interface
|
|
30
|
+
export interface CreateNamespaceEventInput {
|
|
31
31
|
clientMutationId?: string;
|
|
32
|
-
/** The `
|
|
33
|
-
|
|
32
|
+
/** The `NamespaceEvent` to be created by this mutation. */
|
|
33
|
+
namespaceEvent: NamespaceEventInput;
|
|
34
34
|
}
|
|
35
|
-
export interface
|
|
35
|
+
export interface CreateNamespaceInput {
|
|
36
36
|
clientMutationId?: string;
|
|
37
|
-
/** The `
|
|
38
|
-
|
|
37
|
+
/** The `Namespace` to be created by this mutation. */
|
|
38
|
+
namespace: NamespaceInput;
|
|
39
39
|
}
|
|
40
|
-
export interface
|
|
40
|
+
export interface CreatePlatformInfraCommitInput {
|
|
41
41
|
clientMutationId?: string;
|
|
42
|
-
/** The `
|
|
43
|
-
|
|
42
|
+
/** The `PlatformInfraCommit` to be created by this mutation. */
|
|
43
|
+
platformInfraCommit: PlatformInfraCommitInput;
|
|
44
44
|
}
|
|
45
|
-
export interface
|
|
45
|
+
export interface CreatePlatformInfraObjectInput {
|
|
46
46
|
clientMutationId?: string;
|
|
47
|
-
/** The `
|
|
48
|
-
|
|
47
|
+
/** The `PlatformInfraObject` to be created by this mutation. */
|
|
48
|
+
platformInfraObject: PlatformInfraObjectInput;
|
|
49
49
|
}
|
|
50
|
-
export interface
|
|
50
|
+
export interface CreatePlatformInfraRefInput {
|
|
51
51
|
clientMutationId?: string;
|
|
52
|
-
/** The `
|
|
53
|
-
|
|
52
|
+
/** The `PlatformInfraRef` to be created by this mutation. */
|
|
53
|
+
platformInfraRef: PlatformInfraRefInput;
|
|
54
54
|
}
|
|
55
|
-
export interface
|
|
55
|
+
export interface CreatePlatformInfraStoreInput {
|
|
56
56
|
clientMutationId?: string;
|
|
57
|
-
/** The `
|
|
58
|
-
|
|
57
|
+
/** The `PlatformInfraStore` to be created by this mutation. */
|
|
58
|
+
platformInfraStore: PlatformInfraStoreInput;
|
|
59
59
|
}
|
|
60
60
|
export interface CreatePlatformNamespaceEventInput {
|
|
61
61
|
clientMutationId?: string;
|
|
@@ -153,58 +153,208 @@ export interface DeleteDbPresetInput {
|
|
|
153
153
|
/** Unique preset identifier */
|
|
154
154
|
id: string;
|
|
155
155
|
}
|
|
156
|
-
export interface
|
|
156
|
+
export interface DeleteNamespaceEventInput {
|
|
157
|
+
clientMutationId?: string;
|
|
158
|
+
/** Event timestamp (partition key) */
|
|
159
|
+
createdAt: string;
|
|
160
|
+
/** Unique event identifier */
|
|
161
|
+
id: string;
|
|
162
|
+
}
|
|
163
|
+
export interface DeleteNamespaceInput {
|
|
164
|
+
clientMutationId?: string;
|
|
165
|
+
id: string;
|
|
166
|
+
}
|
|
167
|
+
export interface DeletePlatformInfraCommitInput {
|
|
157
168
|
clientMutationId?: string;
|
|
158
169
|
/** Unique commit identifier */
|
|
159
170
|
id: string;
|
|
160
171
|
/** Opaque store partition key for the global tier */
|
|
161
172
|
scopeId: string;
|
|
162
173
|
}
|
|
163
|
-
export interface
|
|
174
|
+
export interface DeletePlatformInfraObjectInput {
|
|
164
175
|
clientMutationId?: string;
|
|
165
176
|
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
166
177
|
id: string;
|
|
167
178
|
/** Opaque store partition key for the global tier */
|
|
168
179
|
scopeId: string;
|
|
169
180
|
}
|
|
170
|
-
export interface
|
|
181
|
+
export interface DeletePlatformInfraRefInput {
|
|
171
182
|
clientMutationId?: string;
|
|
172
183
|
/** Unique ref identifier */
|
|
173
184
|
id: string;
|
|
174
185
|
/** Opaque store partition key for the global tier */
|
|
175
186
|
scopeId: string;
|
|
176
187
|
}
|
|
177
|
-
export interface
|
|
188
|
+
export interface DeletePlatformInfraStoreInput {
|
|
178
189
|
clientMutationId?: string;
|
|
179
190
|
/** Unique store identifier */
|
|
180
191
|
id: string;
|
|
181
192
|
}
|
|
182
|
-
export interface
|
|
193
|
+
export interface DeletePlatformNamespaceEventInput {
|
|
183
194
|
clientMutationId?: string;
|
|
184
195
|
/** Event timestamp (partition key) */
|
|
185
196
|
createdAt: string;
|
|
186
197
|
/** Unique event identifier */
|
|
187
198
|
id: string;
|
|
188
199
|
}
|
|
189
|
-
export interface
|
|
200
|
+
export interface DeletePlatformNamespaceInput {
|
|
190
201
|
clientMutationId?: string;
|
|
191
202
|
id: string;
|
|
192
203
|
}
|
|
193
|
-
|
|
194
|
-
|
|
204
|
+
/** A filter to be used against `NamespaceEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
205
|
+
export interface NamespaceEventFilter {
|
|
206
|
+
/** Filter by the object’s `actorId` field. */
|
|
207
|
+
actorId?: UUIDFilter;
|
|
208
|
+
/** Checks for all expressions in this list. */
|
|
209
|
+
and?: NamespaceEventFilter[];
|
|
210
|
+
/** Filter by the object’s `createdAt` field. */
|
|
211
|
+
createdAt?: DatetimeFilter;
|
|
212
|
+
/** Filter by the object’s `databaseId` field. */
|
|
213
|
+
databaseId?: UUIDFilter;
|
|
214
|
+
/** Filter by the object’s `eventType` field. */
|
|
215
|
+
eventType?: StringFilter;
|
|
216
|
+
/** Filter by the object’s `id` field. */
|
|
217
|
+
id?: UUIDFilter;
|
|
218
|
+
/** Filter by the object’s `message` field. */
|
|
219
|
+
message?: StringFilter;
|
|
220
|
+
/** Filter by the object’s `metadata` field. */
|
|
221
|
+
metadata?: JSONFilter;
|
|
222
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
223
|
+
namespaceId?: UUIDFilter;
|
|
224
|
+
/** Negates the expression. */
|
|
225
|
+
not?: NamespaceEventFilter;
|
|
226
|
+
/** Checks for any expressions in this list. */
|
|
227
|
+
or?: NamespaceEventFilter[];
|
|
228
|
+
}
|
|
229
|
+
/** An input for mutations affecting `NamespaceEvent` */
|
|
230
|
+
export interface NamespaceEventInput {
|
|
231
|
+
/** User who triggered this event (NULL for system/automated) */
|
|
232
|
+
actorId?: string;
|
|
195
233
|
/** Event timestamp (partition key) */
|
|
196
|
-
createdAt
|
|
234
|
+
createdAt?: string;
|
|
235
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
236
|
+
databaseId: string;
|
|
237
|
+
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
238
|
+
eventType: string;
|
|
197
239
|
/** Unique event identifier */
|
|
198
|
-
id
|
|
240
|
+
id?: string;
|
|
241
|
+
/** Human-readable description of the event */
|
|
242
|
+
message?: string;
|
|
243
|
+
/** Structured context (old/new values, labels diff, etc.) */
|
|
244
|
+
metadata?: unknown;
|
|
245
|
+
/** Namespace this event belongs to */
|
|
246
|
+
namespaceId: string;
|
|
199
247
|
}
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
248
|
+
/** Represents an update to a `NamespaceEvent`. Fields that are set will be updated. */
|
|
249
|
+
export interface NamespaceEventPatch {
|
|
250
|
+
/** User who triggered this event (NULL for system/automated) */
|
|
251
|
+
actorId?: string;
|
|
252
|
+
/** Event timestamp (partition key) */
|
|
253
|
+
createdAt?: string;
|
|
254
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
255
|
+
databaseId?: string;
|
|
256
|
+
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
257
|
+
eventType?: string;
|
|
258
|
+
/** Unique event identifier */
|
|
259
|
+
id?: string;
|
|
260
|
+
/** Human-readable description of the event */
|
|
261
|
+
message?: string;
|
|
262
|
+
/** Structured context (old/new values, labels diff, etc.) */
|
|
263
|
+
metadata?: unknown;
|
|
264
|
+
/** Namespace this event belongs to */
|
|
265
|
+
namespaceId?: string;
|
|
266
|
+
}
|
|
267
|
+
/** A filter to be used against `Namespace` object types. All fields are combined with a logical ‘and.’ */
|
|
268
|
+
export interface NamespaceFilter {
|
|
269
|
+
/** Checks for all expressions in this list. */
|
|
270
|
+
and?: NamespaceFilter[];
|
|
271
|
+
/** Filter by the object’s `annotations` field. */
|
|
272
|
+
annotations?: JSONFilter;
|
|
273
|
+
/** Filter by the object’s `createdAt` field. */
|
|
274
|
+
createdAt?: DatetimeFilter;
|
|
275
|
+
/** Filter by the object’s `databaseId` field. */
|
|
276
|
+
databaseId?: UUIDFilter;
|
|
277
|
+
/** Filter by the object’s `description` field. */
|
|
278
|
+
description?: StringFilter;
|
|
279
|
+
/** Filter by the object’s `id` field. */
|
|
280
|
+
id?: UUIDFilter;
|
|
281
|
+
/** Filter by the object’s `isActive` field. */
|
|
282
|
+
isActive?: BooleanFilter;
|
|
283
|
+
/** Filter by the object’s `isManaged` field. */
|
|
284
|
+
isManaged?: BooleanFilter;
|
|
285
|
+
/** Filter by the object’s `labels` field. */
|
|
286
|
+
labels?: JSONFilter;
|
|
287
|
+
/** Filter by the object’s `lastError` field. */
|
|
288
|
+
lastError?: StringFilter;
|
|
289
|
+
/** Filter by the object’s `name` field. */
|
|
290
|
+
name?: StringFilter;
|
|
291
|
+
/** Filter by the object’s `namespaceName` field. */
|
|
292
|
+
namespaceName?: StringFilter;
|
|
293
|
+
/** Negates the expression. */
|
|
294
|
+
not?: NamespaceFilter;
|
|
295
|
+
/** Checks for any expressions in this list. */
|
|
296
|
+
or?: NamespaceFilter[];
|
|
297
|
+
/** Filter by the object’s `status` field. */
|
|
298
|
+
status?: StringFilter;
|
|
299
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
300
|
+
updatedAt?: DatetimeFilter;
|
|
301
|
+
}
|
|
302
|
+
/** An input for mutations affecting `Namespace` */
|
|
303
|
+
export interface NamespaceInput {
|
|
304
|
+
/** Freeform metadata for tooling and operational notes */
|
|
305
|
+
annotations?: unknown;
|
|
306
|
+
createdAt?: string;
|
|
307
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
308
|
+
databaseId: string;
|
|
309
|
+
/** Optional human-readable description of this namespace */
|
|
310
|
+
description?: string;
|
|
311
|
+
id?: string;
|
|
312
|
+
/** Whether this namespace is active (soft-disable for filtering) */
|
|
313
|
+
isActive?: boolean;
|
|
314
|
+
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
315
|
+
isManaged?: boolean;
|
|
316
|
+
/** Key/value pairs for selecting and filtering namespaces */
|
|
317
|
+
labels?: unknown;
|
|
318
|
+
/** Most recent provisioning or reconcile error message */
|
|
319
|
+
lastError?: string;
|
|
320
|
+
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
321
|
+
name: string;
|
|
322
|
+
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
323
|
+
namespaceName: string;
|
|
324
|
+
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
325
|
+
status?: string;
|
|
326
|
+
updatedAt?: string;
|
|
327
|
+
}
|
|
328
|
+
/** Represents an update to a `Namespace`. Fields that are set will be updated. */
|
|
329
|
+
export interface NamespacePatch {
|
|
330
|
+
/** Freeform metadata for tooling and operational notes */
|
|
331
|
+
annotations?: unknown;
|
|
332
|
+
createdAt?: string;
|
|
333
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
334
|
+
databaseId?: string;
|
|
335
|
+
/** Optional human-readable description of this namespace */
|
|
336
|
+
description?: string;
|
|
337
|
+
id?: string;
|
|
338
|
+
/** Whether this namespace is active (soft-disable for filtering) */
|
|
339
|
+
isActive?: boolean;
|
|
340
|
+
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
341
|
+
isManaged?: boolean;
|
|
342
|
+
/** Key/value pairs for selecting and filtering namespaces */
|
|
343
|
+
labels?: unknown;
|
|
344
|
+
/** Most recent provisioning or reconcile error message */
|
|
345
|
+
lastError?: string;
|
|
346
|
+
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
347
|
+
name?: string;
|
|
348
|
+
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
349
|
+
namespaceName?: string;
|
|
350
|
+
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
351
|
+
status?: string;
|
|
352
|
+
updatedAt?: string;
|
|
203
353
|
}
|
|
204
|
-
/** A filter to be used against `
|
|
205
|
-
export interface
|
|
354
|
+
/** A filter to be used against `PlatformInfraCommit` object types. All fields are combined with a logical ‘and.’ */
|
|
355
|
+
export interface PlatformInfraCommitFilter {
|
|
206
356
|
/** Checks for all expressions in this list. */
|
|
207
|
-
and?:
|
|
357
|
+
and?: PlatformInfraCommitFilter[];
|
|
208
358
|
/** Filter by the object’s `authorId` field. */
|
|
209
359
|
authorId?: UUIDFilter;
|
|
210
360
|
/** Filter by the object’s `committerId` field. */
|
|
@@ -216,9 +366,9 @@ export interface InfraCommitFilter {
|
|
|
216
366
|
/** Filter by the object’s `message` field. */
|
|
217
367
|
message?: StringFilter;
|
|
218
368
|
/** Negates the expression. */
|
|
219
|
-
not?:
|
|
369
|
+
not?: PlatformInfraCommitFilter;
|
|
220
370
|
/** Checks for any expressions in this list. */
|
|
221
|
-
or?:
|
|
371
|
+
or?: PlatformInfraCommitFilter[];
|
|
222
372
|
/** Filter by the object’s `parentIds` field. */
|
|
223
373
|
parentIds?: UUIDListFilter;
|
|
224
374
|
/** Filter by the object’s `scopeId` field. */
|
|
@@ -228,8 +378,8 @@ export interface InfraCommitFilter {
|
|
|
228
378
|
/** Filter by the object’s `treeId` field. */
|
|
229
379
|
treeId?: UUIDFilter;
|
|
230
380
|
}
|
|
231
|
-
/** An input for mutations affecting `
|
|
232
|
-
export interface
|
|
381
|
+
/** An input for mutations affecting `PlatformInfraCommit` */
|
|
382
|
+
export interface PlatformInfraCommitInput {
|
|
233
383
|
/** User who authored the changes */
|
|
234
384
|
authorId?: string;
|
|
235
385
|
/** User who committed (may differ from author) */
|
|
@@ -249,8 +399,8 @@ export interface InfraCommitInput {
|
|
|
249
399
|
/** Root object ID of the tree snapshot at this commit */
|
|
250
400
|
treeId?: string;
|
|
251
401
|
}
|
|
252
|
-
/** Represents an update to a `
|
|
253
|
-
export interface
|
|
402
|
+
/** Represents an update to a `PlatformInfraCommit`. Fields that are set will be updated. */
|
|
403
|
+
export interface PlatformInfraCommitPatch {
|
|
254
404
|
/** User who authored the changes */
|
|
255
405
|
authorId?: string;
|
|
256
406
|
/** User who committed (may differ from author) */
|
|
@@ -270,12 +420,12 @@ export interface InfraCommitPatch {
|
|
|
270
420
|
/** Root object ID of the tree snapshot at this commit */
|
|
271
421
|
treeId?: string;
|
|
272
422
|
}
|
|
273
|
-
export interface
|
|
423
|
+
export interface PlatformInfraInitEmptyRepoInput {
|
|
274
424
|
clientMutationId?: string;
|
|
275
425
|
sId?: string;
|
|
276
426
|
storeId?: string;
|
|
277
427
|
}
|
|
278
|
-
export interface
|
|
428
|
+
export interface PlatformInfraInsertNodeAtPathInput {
|
|
279
429
|
clientMutationId?: string;
|
|
280
430
|
data?: unknown;
|
|
281
431
|
kids?: string[];
|
|
@@ -284,10 +434,10 @@ export interface InfraInsertNodeAtPathInput {
|
|
|
284
434
|
root?: string;
|
|
285
435
|
sId?: string;
|
|
286
436
|
}
|
|
287
|
-
/** A filter to be used against `
|
|
288
|
-
export interface
|
|
437
|
+
/** A filter to be used against `PlatformInfraObject` object types. All fields are combined with a logical ‘and.’ */
|
|
438
|
+
export interface PlatformInfraObjectFilter {
|
|
289
439
|
/** Checks for all expressions in this list. */
|
|
290
|
-
and?:
|
|
440
|
+
and?: PlatformInfraObjectFilter[];
|
|
291
441
|
/** Filter by the object’s `createdAt` field. */
|
|
292
442
|
createdAt?: DatetimeFilter;
|
|
293
443
|
/** Filter by the object’s `data` field. */
|
|
@@ -299,14 +449,14 @@ export interface InfraObjectFilter {
|
|
|
299
449
|
/** Filter by the object’s `ktree` field. */
|
|
300
450
|
ktree?: StringListFilter;
|
|
301
451
|
/** Negates the expression. */
|
|
302
|
-
not?:
|
|
452
|
+
not?: PlatformInfraObjectFilter;
|
|
303
453
|
/** Checks for any expressions in this list. */
|
|
304
|
-
or?:
|
|
454
|
+
or?: PlatformInfraObjectFilter[];
|
|
305
455
|
/** Filter by the object’s `scopeId` field. */
|
|
306
456
|
scopeId?: UUIDFilter;
|
|
307
457
|
}
|
|
308
|
-
/** An input for mutations affecting `
|
|
309
|
-
export interface
|
|
458
|
+
/** An input for mutations affecting `PlatformInfraObject` */
|
|
459
|
+
export interface PlatformInfraObjectInput {
|
|
310
460
|
/** Timestamp of object creation */
|
|
311
461
|
createdAt?: string;
|
|
312
462
|
/** Payload data for this object node */
|
|
@@ -320,8 +470,8 @@ export interface InfraObjectInput {
|
|
|
320
470
|
/** Opaque store partition key for the global tier */
|
|
321
471
|
scopeId: string;
|
|
322
472
|
}
|
|
323
|
-
/** Represents an update to a `
|
|
324
|
-
export interface
|
|
473
|
+
/** Represents an update to a `PlatformInfraObject`. Fields that are set will be updated. */
|
|
474
|
+
export interface PlatformInfraObjectPatch {
|
|
325
475
|
/** Timestamp of object creation */
|
|
326
476
|
createdAt?: string;
|
|
327
477
|
/** Payload data for this object node */
|
|
@@ -335,10 +485,10 @@ export interface InfraObjectPatch {
|
|
|
335
485
|
/** Opaque store partition key for the global tier */
|
|
336
486
|
scopeId?: string;
|
|
337
487
|
}
|
|
338
|
-
/** A filter to be used against `
|
|
339
|
-
export interface
|
|
488
|
+
/** A filter to be used against `PlatformInfraRef` object types. All fields are combined with a logical ‘and.’ */
|
|
489
|
+
export interface PlatformInfraRefFilter {
|
|
340
490
|
/** Checks for all expressions in this list. */
|
|
341
|
-
and?:
|
|
491
|
+
and?: PlatformInfraRefFilter[];
|
|
342
492
|
/** Filter by the object’s `commitId` field. */
|
|
343
493
|
commitId?: UUIDFilter;
|
|
344
494
|
/** Filter by the object’s `id` field. */
|
|
@@ -346,16 +496,16 @@ export interface InfraRefFilter {
|
|
|
346
496
|
/** Filter by the object’s `name` field. */
|
|
347
497
|
name?: StringFilter;
|
|
348
498
|
/** Negates the expression. */
|
|
349
|
-
not?:
|
|
499
|
+
not?: PlatformInfraRefFilter;
|
|
350
500
|
/** Checks for any expressions in this list. */
|
|
351
|
-
or?:
|
|
501
|
+
or?: PlatformInfraRefFilter[];
|
|
352
502
|
/** Filter by the object’s `scopeId` field. */
|
|
353
503
|
scopeId?: UUIDFilter;
|
|
354
504
|
/** Filter by the object’s `storeId` field. */
|
|
355
505
|
storeId?: UUIDFilter;
|
|
356
506
|
}
|
|
357
|
-
/** An input for mutations affecting `
|
|
358
|
-
export interface
|
|
507
|
+
/** An input for mutations affecting `PlatformInfraRef` */
|
|
508
|
+
export interface PlatformInfraRefInput {
|
|
359
509
|
/** Commit this ref points to */
|
|
360
510
|
commitId?: string;
|
|
361
511
|
/** Unique ref identifier */
|
|
@@ -367,8 +517,8 @@ export interface InfraRefInput {
|
|
|
367
517
|
/** Store this ref belongs to */
|
|
368
518
|
storeId: string;
|
|
369
519
|
}
|
|
370
|
-
/** Represents an update to a `
|
|
371
|
-
export interface
|
|
520
|
+
/** Represents an update to a `PlatformInfraRef`. Fields that are set will be updated. */
|
|
521
|
+
export interface PlatformInfraRefPatch {
|
|
372
522
|
/** Commit this ref points to */
|
|
373
523
|
commitId?: string;
|
|
374
524
|
/** Unique ref identifier */
|
|
@@ -380,17 +530,17 @@ export interface InfraRefPatch {
|
|
|
380
530
|
/** Store this ref belongs to */
|
|
381
531
|
storeId?: string;
|
|
382
532
|
}
|
|
383
|
-
export interface
|
|
533
|
+
export interface PlatformInfraSetDataAtPathInput {
|
|
384
534
|
clientMutationId?: string;
|
|
385
535
|
data?: unknown;
|
|
386
536
|
path?: string[];
|
|
387
537
|
root?: string;
|
|
388
538
|
sId?: string;
|
|
389
539
|
}
|
|
390
|
-
/** A filter to be used against `
|
|
391
|
-
export interface
|
|
540
|
+
/** A filter to be used against `PlatformInfraStore` object types. All fields are combined with a logical ‘and.’ */
|
|
541
|
+
export interface PlatformInfraStoreFilter {
|
|
392
542
|
/** Checks for all expressions in this list. */
|
|
393
|
-
and?:
|
|
543
|
+
and?: PlatformInfraStoreFilter[];
|
|
394
544
|
/** Filter by the object’s `createdAt` field. */
|
|
395
545
|
createdAt?: DatetimeFilter;
|
|
396
546
|
/** Filter by the object’s `hash` field. */
|
|
@@ -400,14 +550,14 @@ export interface InfraStoreFilter {
|
|
|
400
550
|
/** Filter by the object’s `name` field. */
|
|
401
551
|
name?: StringFilter;
|
|
402
552
|
/** Negates the expression. */
|
|
403
|
-
not?:
|
|
553
|
+
not?: PlatformInfraStoreFilter;
|
|
404
554
|
/** Checks for any expressions in this list. */
|
|
405
|
-
or?:
|
|
555
|
+
or?: PlatformInfraStoreFilter[];
|
|
406
556
|
/** Filter by the object’s `scopeId` field. */
|
|
407
557
|
scopeId?: UUIDFilter;
|
|
408
558
|
}
|
|
409
|
-
/** An input for mutations affecting `
|
|
410
|
-
export interface
|
|
559
|
+
/** An input for mutations affecting `PlatformInfraStore` */
|
|
560
|
+
export interface PlatformInfraStoreInput {
|
|
411
561
|
/** Timestamp of store creation */
|
|
412
562
|
createdAt?: string;
|
|
413
563
|
/** Current root object hash of this store */
|
|
@@ -419,8 +569,8 @@ export interface InfraStoreInput {
|
|
|
419
569
|
/** Opaque store partition key for the global tier */
|
|
420
570
|
scopeId: string;
|
|
421
571
|
}
|
|
422
|
-
/** Represents an update to a `
|
|
423
|
-
export interface
|
|
572
|
+
/** Represents an update to a `PlatformInfraStore`. Fields that are set will be updated. */
|
|
573
|
+
export interface PlatformInfraStorePatch {
|
|
424
574
|
/** Timestamp of store creation */
|
|
425
575
|
createdAt?: string;
|
|
426
576
|
/** Current root object hash of this store */
|
|
@@ -432,296 +582,62 @@ export interface InfraStorePatch {
|
|
|
432
582
|
/** Opaque store partition key for the global tier */
|
|
433
583
|
scopeId?: string;
|
|
434
584
|
}
|
|
435
|
-
/** A filter to be used against `NamespaceEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
436
|
-
export interface NamespaceEventFilter {
|
|
437
|
-
/** Filter by the object’s `actorId` field. */
|
|
438
|
-
actorId?: UUIDFilter;
|
|
439
|
-
/** Checks for all expressions in this list. */
|
|
440
|
-
and?: NamespaceEventFilter[];
|
|
441
|
-
/** Filter by the object’s `cpuMillicores` field. */
|
|
442
|
-
cpuMillicores?: IntFilter;
|
|
443
|
-
/** Filter by the object’s `createdAt` field. */
|
|
444
|
-
createdAt?: DatetimeFilter;
|
|
445
|
-
/** Filter by the object’s `databaseId` field. */
|
|
446
|
-
databaseId?: UUIDFilter;
|
|
447
|
-
/** Filter by the object’s `eventType` field. */
|
|
448
|
-
eventType?: StringFilter;
|
|
449
|
-
/** Filter by the object’s `id` field. */
|
|
450
|
-
id?: UUIDFilter;
|
|
451
|
-
/** Filter by the object’s `memoryBytes` field. */
|
|
452
|
-
memoryBytes?: BigIntFilter;
|
|
453
|
-
/** Filter by the object’s `message` field. */
|
|
454
|
-
message?: StringFilter;
|
|
455
|
-
/** Filter by the object’s `metadata` field. */
|
|
456
|
-
metadata?: JSONFilter;
|
|
457
|
-
/** Filter by the object’s `metrics` field. */
|
|
458
|
-
metrics?: JSONFilter;
|
|
459
|
-
/** Filter by the object’s `namespaceId` field. */
|
|
460
|
-
namespaceId?: UUIDFilter;
|
|
461
|
-
/** Filter by the object’s `networkEgressBytes` field. */
|
|
462
|
-
networkEgressBytes?: BigIntFilter;
|
|
463
|
-
/** Filter by the object’s `networkIngressBytes` field. */
|
|
464
|
-
networkIngressBytes?: BigIntFilter;
|
|
465
|
-
/** Negates the expression. */
|
|
466
|
-
not?: NamespaceEventFilter;
|
|
467
|
-
/** Checks for any expressions in this list. */
|
|
468
|
-
or?: NamespaceEventFilter[];
|
|
469
|
-
/** Filter by the object’s `podCount` field. */
|
|
470
|
-
podCount?: IntFilter;
|
|
471
|
-
/** Filter by the object’s `storageBytes` field. */
|
|
472
|
-
storageBytes?: BigIntFilter;
|
|
473
|
-
}
|
|
474
|
-
/** An input for mutations affecting `NamespaceEvent` */
|
|
475
|
-
export interface NamespaceEventInput {
|
|
476
|
-
/** User who triggered this event (NULL for system/automated) */
|
|
477
|
-
actorId?: string;
|
|
478
|
-
/** CPU usage in millicores at time of event */
|
|
479
|
-
cpuMillicores?: number;
|
|
480
|
-
/** Event timestamp (partition key) */
|
|
481
|
-
createdAt?: string;
|
|
482
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
483
|
-
databaseId: string;
|
|
484
|
-
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
485
|
-
eventType: string;
|
|
486
|
-
/** Unique event identifier */
|
|
487
|
-
id?: string;
|
|
488
|
-
/** Memory usage in bytes at time of event */
|
|
489
|
-
memoryBytes?: string;
|
|
490
|
-
/** Human-readable description of the event */
|
|
491
|
-
message?: string;
|
|
492
|
-
/** Structured context (old/new values, labels diff, etc.) */
|
|
493
|
-
metadata?: unknown;
|
|
494
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
495
|
-
metrics?: unknown;
|
|
496
|
-
/** Namespace this event belongs to */
|
|
497
|
-
namespaceId: string;
|
|
498
|
-
/** Network egress in bytes during event window */
|
|
499
|
-
networkEgressBytes?: string;
|
|
500
|
-
/** Network ingress in bytes during event window */
|
|
501
|
-
networkIngressBytes?: string;
|
|
502
|
-
/** Number of active pods in the namespace at time of event */
|
|
503
|
-
podCount?: number;
|
|
504
|
-
/** Storage usage in bytes at time of event */
|
|
505
|
-
storageBytes?: string;
|
|
506
|
-
}
|
|
507
|
-
/** Represents an update to a `NamespaceEvent`. Fields that are set will be updated. */
|
|
508
|
-
export interface NamespaceEventPatch {
|
|
509
|
-
/** User who triggered this event (NULL for system/automated) */
|
|
510
|
-
actorId?: string;
|
|
511
|
-
/** CPU usage in millicores at time of event */
|
|
512
|
-
cpuMillicores?: number;
|
|
513
|
-
/** Event timestamp (partition key) */
|
|
514
|
-
createdAt?: string;
|
|
515
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
516
|
-
databaseId?: string;
|
|
517
|
-
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
518
|
-
eventType?: string;
|
|
519
|
-
/** Unique event identifier */
|
|
520
|
-
id?: string;
|
|
521
|
-
/** Memory usage in bytes at time of event */
|
|
522
|
-
memoryBytes?: string;
|
|
523
|
-
/** Human-readable description of the event */
|
|
524
|
-
message?: string;
|
|
525
|
-
/** Structured context (old/new values, labels diff, etc.) */
|
|
526
|
-
metadata?: unknown;
|
|
527
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
528
|
-
metrics?: unknown;
|
|
529
|
-
/** Namespace this event belongs to */
|
|
530
|
-
namespaceId?: string;
|
|
531
|
-
/** Network egress in bytes during event window */
|
|
532
|
-
networkEgressBytes?: string;
|
|
533
|
-
/** Network ingress in bytes during event window */
|
|
534
|
-
networkIngressBytes?: string;
|
|
535
|
-
/** Number of active pods in the namespace at time of event */
|
|
536
|
-
podCount?: number;
|
|
537
|
-
/** Storage usage in bytes at time of event */
|
|
538
|
-
storageBytes?: string;
|
|
539
|
-
}
|
|
540
|
-
/** A filter to be used against `Namespace` object types. All fields are combined with a logical ‘and.’ */
|
|
541
|
-
export interface NamespaceFilter {
|
|
542
|
-
/** Checks for all expressions in this list. */
|
|
543
|
-
and?: NamespaceFilter[];
|
|
544
|
-
/** Filter by the object’s `annotations` field. */
|
|
545
|
-
annotations?: JSONFilter;
|
|
546
|
-
/** Filter by the object’s `createdAt` field. */
|
|
547
|
-
createdAt?: DatetimeFilter;
|
|
548
|
-
/** Filter by the object’s `databaseId` field. */
|
|
549
|
-
databaseId?: UUIDFilter;
|
|
550
|
-
/** Filter by the object’s `description` field. */
|
|
551
|
-
description?: StringFilter;
|
|
552
|
-
/** Filter by the object’s `id` field. */
|
|
553
|
-
id?: UUIDFilter;
|
|
554
|
-
/** Filter by the object’s `isActive` field. */
|
|
555
|
-
isActive?: BooleanFilter;
|
|
556
|
-
/** Filter by the object’s `isManaged` field. */
|
|
557
|
-
isManaged?: BooleanFilter;
|
|
558
|
-
/** Filter by the object’s `labels` field. */
|
|
559
|
-
labels?: JSONFilter;
|
|
560
|
-
/** Filter by the object’s `lastError` field. */
|
|
561
|
-
lastError?: StringFilter;
|
|
562
|
-
/** Filter by the object’s `name` field. */
|
|
563
|
-
name?: StringFilter;
|
|
564
|
-
/** Filter by the object’s `namespaceName` field. */
|
|
565
|
-
namespaceName?: StringFilter;
|
|
566
|
-
/** Negates the expression. */
|
|
567
|
-
not?: NamespaceFilter;
|
|
568
|
-
/** Checks for any expressions in this list. */
|
|
569
|
-
or?: NamespaceFilter[];
|
|
570
|
-
/** Filter by the object’s `status` field. */
|
|
571
|
-
status?: StringFilter;
|
|
572
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
573
|
-
updatedAt?: DatetimeFilter;
|
|
574
|
-
}
|
|
575
|
-
/** An input for mutations affecting `Namespace` */
|
|
576
|
-
export interface NamespaceInput {
|
|
577
|
-
/** Freeform metadata for tooling and operational notes */
|
|
578
|
-
annotations?: unknown;
|
|
579
|
-
createdAt?: string;
|
|
580
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
581
|
-
databaseId: string;
|
|
582
|
-
/** Optional human-readable description of this namespace */
|
|
583
|
-
description?: string;
|
|
584
|
-
id?: string;
|
|
585
|
-
/** Whether this namespace is active (soft-disable for filtering) */
|
|
586
|
-
isActive?: boolean;
|
|
587
|
-
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
588
|
-
isManaged?: boolean;
|
|
589
|
-
/** Key/value pairs for selecting and filtering namespaces */
|
|
590
|
-
labels?: unknown;
|
|
591
|
-
/** Most recent provisioning or reconcile error message */
|
|
592
|
-
lastError?: string;
|
|
593
|
-
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
594
|
-
name: string;
|
|
595
|
-
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
596
|
-
namespaceName: string;
|
|
597
|
-
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
598
|
-
status?: string;
|
|
599
|
-
updatedAt?: string;
|
|
600
|
-
}
|
|
601
|
-
/** Represents an update to a `Namespace`. Fields that are set will be updated. */
|
|
602
|
-
export interface NamespacePatch {
|
|
603
|
-
/** Freeform metadata for tooling and operational notes */
|
|
604
|
-
annotations?: unknown;
|
|
605
|
-
createdAt?: string;
|
|
606
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
607
|
-
databaseId?: string;
|
|
608
|
-
/** Optional human-readable description of this namespace */
|
|
609
|
-
description?: string;
|
|
610
|
-
id?: string;
|
|
611
|
-
/** Whether this namespace is active (soft-disable for filtering) */
|
|
612
|
-
isActive?: boolean;
|
|
613
|
-
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
614
|
-
isManaged?: boolean;
|
|
615
|
-
/** Key/value pairs for selecting and filtering namespaces */
|
|
616
|
-
labels?: unknown;
|
|
617
|
-
/** Most recent provisioning or reconcile error message */
|
|
618
|
-
lastError?: string;
|
|
619
|
-
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
620
|
-
name?: string;
|
|
621
|
-
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
622
|
-
namespaceName?: string;
|
|
623
|
-
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
624
|
-
status?: string;
|
|
625
|
-
updatedAt?: string;
|
|
626
|
-
}
|
|
627
585
|
/** A filter to be used against `PlatformNamespaceEvent` object types. All fields are combined with a logical ‘and.’ */
|
|
628
586
|
export interface PlatformNamespaceEventFilter {
|
|
629
587
|
/** Filter by the object’s `actorId` field. */
|
|
630
588
|
actorId?: UUIDFilter;
|
|
631
589
|
/** Checks for all expressions in this list. */
|
|
632
590
|
and?: PlatformNamespaceEventFilter[];
|
|
633
|
-
/** Filter by the object’s `cpuMillicores` field. */
|
|
634
|
-
cpuMillicores?: IntFilter;
|
|
635
591
|
/** Filter by the object’s `createdAt` field. */
|
|
636
592
|
createdAt?: DatetimeFilter;
|
|
637
593
|
/** Filter by the object’s `eventType` field. */
|
|
638
594
|
eventType?: StringFilter;
|
|
639
595
|
/** Filter by the object’s `id` field. */
|
|
640
596
|
id?: UUIDFilter;
|
|
641
|
-
/** Filter by the object’s `memoryBytes` field. */
|
|
642
|
-
memoryBytes?: BigIntFilter;
|
|
643
597
|
/** Filter by the object’s `message` field. */
|
|
644
598
|
message?: StringFilter;
|
|
645
599
|
/** Filter by the object’s `metadata` field. */
|
|
646
600
|
metadata?: JSONFilter;
|
|
647
|
-
/** Filter by the object’s `metrics` field. */
|
|
648
|
-
metrics?: JSONFilter;
|
|
649
601
|
/** Filter by the object’s `namespaceId` field. */
|
|
650
602
|
namespaceId?: UUIDFilter;
|
|
651
|
-
/** Filter by the object’s `networkEgressBytes` field. */
|
|
652
|
-
networkEgressBytes?: BigIntFilter;
|
|
653
|
-
/** Filter by the object’s `networkIngressBytes` field. */
|
|
654
|
-
networkIngressBytes?: BigIntFilter;
|
|
655
603
|
/** Negates the expression. */
|
|
656
604
|
not?: PlatformNamespaceEventFilter;
|
|
657
605
|
/** Checks for any expressions in this list. */
|
|
658
606
|
or?: PlatformNamespaceEventFilter[];
|
|
659
|
-
/** Filter by the object’s `podCount` field. */
|
|
660
|
-
podCount?: IntFilter;
|
|
661
|
-
/** Filter by the object’s `storageBytes` field. */
|
|
662
|
-
storageBytes?: BigIntFilter;
|
|
663
607
|
}
|
|
664
608
|
/** An input for mutations affecting `PlatformNamespaceEvent` */
|
|
665
609
|
export interface PlatformNamespaceEventInput {
|
|
666
610
|
/** User who triggered this event (NULL for system/automated) */
|
|
667
611
|
actorId?: string;
|
|
668
|
-
/** CPU usage in millicores at time of event */
|
|
669
|
-
cpuMillicores?: number;
|
|
670
612
|
/** Event timestamp (partition key) */
|
|
671
613
|
createdAt?: string;
|
|
672
614
|
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
673
615
|
eventType: string;
|
|
674
616
|
/** Unique event identifier */
|
|
675
617
|
id?: string;
|
|
676
|
-
/** Memory usage in bytes at time of event */
|
|
677
|
-
memoryBytes?: string;
|
|
678
618
|
/** Human-readable description of the event */
|
|
679
619
|
message?: string;
|
|
680
620
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
681
621
|
metadata?: unknown;
|
|
682
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
683
|
-
metrics?: unknown;
|
|
684
622
|
/** Namespace this event belongs to */
|
|
685
623
|
namespaceId: string;
|
|
686
|
-
/** Network egress in bytes during event window */
|
|
687
|
-
networkEgressBytes?: string;
|
|
688
|
-
/** Network ingress in bytes during event window */
|
|
689
|
-
networkIngressBytes?: string;
|
|
690
|
-
/** Number of active pods in the namespace at time of event */
|
|
691
|
-
podCount?: number;
|
|
692
|
-
/** Storage usage in bytes at time of event */
|
|
693
|
-
storageBytes?: string;
|
|
694
624
|
}
|
|
695
625
|
/** Represents an update to a `PlatformNamespaceEvent`. Fields that are set will be updated. */
|
|
696
626
|
export interface PlatformNamespaceEventPatch {
|
|
697
627
|
/** User who triggered this event (NULL for system/automated) */
|
|
698
628
|
actorId?: string;
|
|
699
|
-
/** CPU usage in millicores at time of event */
|
|
700
|
-
cpuMillicores?: number;
|
|
701
629
|
/** Event timestamp (partition key) */
|
|
702
630
|
createdAt?: string;
|
|
703
631
|
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
704
632
|
eventType?: string;
|
|
705
633
|
/** Unique event identifier */
|
|
706
634
|
id?: string;
|
|
707
|
-
/** Memory usage in bytes at time of event */
|
|
708
|
-
memoryBytes?: string;
|
|
709
635
|
/** Human-readable description of the event */
|
|
710
636
|
message?: string;
|
|
711
637
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
712
638
|
metadata?: unknown;
|
|
713
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
714
|
-
metrics?: unknown;
|
|
715
639
|
/** Namespace this event belongs to */
|
|
716
640
|
namespaceId?: string;
|
|
717
|
-
/** Network egress in bytes during event window */
|
|
718
|
-
networkEgressBytes?: string;
|
|
719
|
-
/** Network ingress in bytes during event window */
|
|
720
|
-
networkIngressBytes?: string;
|
|
721
|
-
/** Number of active pods in the namespace at time of event */
|
|
722
|
-
podCount?: number;
|
|
723
|
-
/** Storage usage in bytes at time of event */
|
|
724
|
-
storageBytes?: string;
|
|
725
641
|
}
|
|
726
642
|
/** A filter to be used against `PlatformNamespace` object types. All fields are combined with a logical ‘and.’ */
|
|
727
643
|
export interface PlatformNamespaceFilter {
|
|
@@ -820,54 +736,54 @@ export interface UpdateDbPresetInput {
|
|
|
820
736
|
/** Unique preset identifier */
|
|
821
737
|
id: string;
|
|
822
738
|
}
|
|
823
|
-
export interface
|
|
739
|
+
export interface UpdateNamespaceEventInput {
|
|
740
|
+
clientMutationId?: string;
|
|
741
|
+
/** Event timestamp (partition key) */
|
|
742
|
+
createdAt: string;
|
|
743
|
+
/** Unique event identifier */
|
|
744
|
+
id: string;
|
|
745
|
+
/** An object where the defined keys will be set on the `NamespaceEvent` being updated. */
|
|
746
|
+
namespaceEventPatch: NamespaceEventPatch;
|
|
747
|
+
}
|
|
748
|
+
export interface UpdateNamespaceInput {
|
|
749
|
+
clientMutationId?: string;
|
|
750
|
+
id: string;
|
|
751
|
+
/** An object where the defined keys will be set on the `Namespace` being updated. */
|
|
752
|
+
namespacePatch: NamespacePatch;
|
|
753
|
+
}
|
|
754
|
+
export interface UpdatePlatformInfraCommitInput {
|
|
824
755
|
clientMutationId?: string;
|
|
825
756
|
/** Unique commit identifier */
|
|
826
757
|
id: string;
|
|
827
|
-
/** An object where the defined keys will be set on the `
|
|
828
|
-
|
|
758
|
+
/** An object where the defined keys will be set on the `PlatformInfraCommit` being updated. */
|
|
759
|
+
platformInfraCommitPatch: PlatformInfraCommitPatch;
|
|
829
760
|
/** Opaque store partition key for the global tier */
|
|
830
761
|
scopeId: string;
|
|
831
762
|
}
|
|
832
|
-
export interface
|
|
763
|
+
export interface UpdatePlatformInfraObjectInput {
|
|
833
764
|
clientMutationId?: string;
|
|
834
765
|
/** Content-addressed UUID v5 — deterministic hash of (data, kids, ktree) */
|
|
835
766
|
id: string;
|
|
836
|
-
/** An object where the defined keys will be set on the `
|
|
837
|
-
|
|
767
|
+
/** An object where the defined keys will be set on the `PlatformInfraObject` being updated. */
|
|
768
|
+
platformInfraObjectPatch: PlatformInfraObjectPatch;
|
|
838
769
|
/** Opaque store partition key for the global tier */
|
|
839
770
|
scopeId: string;
|
|
840
771
|
}
|
|
841
|
-
export interface
|
|
772
|
+
export interface UpdatePlatformInfraRefInput {
|
|
842
773
|
clientMutationId?: string;
|
|
843
774
|
/** Unique ref identifier */
|
|
844
775
|
id: string;
|
|
845
|
-
/** An object where the defined keys will be set on the `
|
|
846
|
-
|
|
776
|
+
/** An object where the defined keys will be set on the `PlatformInfraRef` being updated. */
|
|
777
|
+
platformInfraRefPatch: PlatformInfraRefPatch;
|
|
847
778
|
/** Opaque store partition key for the global tier */
|
|
848
779
|
scopeId: string;
|
|
849
780
|
}
|
|
850
|
-
export interface
|
|
781
|
+
export interface UpdatePlatformInfraStoreInput {
|
|
851
782
|
clientMutationId?: string;
|
|
852
783
|
/** Unique store identifier */
|
|
853
784
|
id: string;
|
|
854
|
-
/** An object where the defined keys will be set on the `
|
|
855
|
-
|
|
856
|
-
}
|
|
857
|
-
export interface UpdateNamespaceEventInput {
|
|
858
|
-
clientMutationId?: string;
|
|
859
|
-
/** Event timestamp (partition key) */
|
|
860
|
-
createdAt: string;
|
|
861
|
-
/** Unique event identifier */
|
|
862
|
-
id: string;
|
|
863
|
-
/** An object where the defined keys will be set on the `NamespaceEvent` being updated. */
|
|
864
|
-
namespaceEventPatch: NamespaceEventPatch;
|
|
865
|
-
}
|
|
866
|
-
export interface UpdateNamespaceInput {
|
|
867
|
-
clientMutationId?: string;
|
|
868
|
-
id: string;
|
|
869
|
-
/** An object where the defined keys will be set on the `Namespace` being updated. */
|
|
870
|
-
namespacePatch: NamespacePatch;
|
|
785
|
+
/** An object where the defined keys will be set on the `PlatformInfraStore` being updated. */
|
|
786
|
+
platformInfraStorePatch: PlatformInfraStorePatch;
|
|
871
787
|
}
|
|
872
788
|
export interface UpdatePlatformNamespaceEventInput {
|
|
873
789
|
clientMutationId?: string;
|
|
@@ -895,52 +811,52 @@ export interface DbPresetConnection {
|
|
|
895
811
|
pageInfo: PageInfo;
|
|
896
812
|
totalCount: number;
|
|
897
813
|
}
|
|
898
|
-
/** A connection to a list of `
|
|
899
|
-
export interface
|
|
900
|
-
edges:
|
|
901
|
-
nodes:
|
|
814
|
+
/** A connection to a list of `NamespaceEvent` values. */
|
|
815
|
+
export interface NamespaceEventConnection {
|
|
816
|
+
edges: NamespaceEventEdge[];
|
|
817
|
+
nodes: NamespaceEvent[];
|
|
902
818
|
pageInfo: PageInfo;
|
|
903
819
|
totalCount: number;
|
|
904
820
|
}
|
|
905
|
-
/** A connection to a list of `
|
|
906
|
-
export interface
|
|
907
|
-
edges:
|
|
908
|
-
nodes:
|
|
821
|
+
/** A connection to a list of `Namespace` values. */
|
|
822
|
+
export interface NamespaceConnection {
|
|
823
|
+
edges: NamespaceEdge[];
|
|
824
|
+
nodes: Namespace[];
|
|
909
825
|
pageInfo: PageInfo;
|
|
910
826
|
totalCount: number;
|
|
911
827
|
}
|
|
912
|
-
/** A connection to a list of `
|
|
913
|
-
export interface
|
|
914
|
-
edges:
|
|
915
|
-
nodes:
|
|
828
|
+
/** A connection to a list of `PlatformInfraCommit` values. */
|
|
829
|
+
export interface PlatformInfraCommitConnection {
|
|
830
|
+
edges: PlatformInfraCommitEdge[];
|
|
831
|
+
nodes: PlatformInfraCommit[];
|
|
916
832
|
pageInfo: PageInfo;
|
|
917
833
|
totalCount: number;
|
|
918
834
|
}
|
|
919
|
-
/** A connection to a list of `
|
|
920
|
-
export interface
|
|
921
|
-
edges:
|
|
922
|
-
nodes:
|
|
835
|
+
/** A connection to a list of `PlatformInfraGetAllTreeNodesRecord` values. */
|
|
836
|
+
export interface PlatformInfraGetAllTreeNodesConnection {
|
|
837
|
+
edges: PlatformInfraGetAllTreeNodesEdge[];
|
|
838
|
+
nodes: PlatformInfraGetAllTreeNodesRecord[];
|
|
923
839
|
pageInfo: PageInfo;
|
|
924
840
|
totalCount: number;
|
|
925
841
|
}
|
|
926
|
-
/** A connection to a list of `
|
|
927
|
-
export interface
|
|
928
|
-
edges:
|
|
929
|
-
nodes:
|
|
842
|
+
/** A connection to a list of `PlatformInfraObject` values. */
|
|
843
|
+
export interface PlatformInfraObjectConnection {
|
|
844
|
+
edges: PlatformInfraObjectEdge[];
|
|
845
|
+
nodes: PlatformInfraObject[];
|
|
930
846
|
pageInfo: PageInfo;
|
|
931
847
|
totalCount: number;
|
|
932
848
|
}
|
|
933
|
-
/** A connection to a list of `
|
|
934
|
-
export interface
|
|
935
|
-
edges:
|
|
936
|
-
nodes:
|
|
849
|
+
/** A connection to a list of `PlatformInfraRef` values. */
|
|
850
|
+
export interface PlatformInfraRefConnection {
|
|
851
|
+
edges: PlatformInfraRefEdge[];
|
|
852
|
+
nodes: PlatformInfraRef[];
|
|
937
853
|
pageInfo: PageInfo;
|
|
938
854
|
totalCount: number;
|
|
939
855
|
}
|
|
940
|
-
/** A connection to a list of `
|
|
941
|
-
export interface
|
|
942
|
-
edges:
|
|
943
|
-
nodes:
|
|
856
|
+
/** A connection to a list of `PlatformInfraStore` values. */
|
|
857
|
+
export interface PlatformInfraStoreConnection {
|
|
858
|
+
edges: PlatformInfraStoreEdge[];
|
|
859
|
+
nodes: PlatformInfraStore[];
|
|
944
860
|
pageInfo: PageInfo;
|
|
945
861
|
totalCount: number;
|
|
946
862
|
}
|
|
@@ -964,30 +880,6 @@ export interface CreateDbPresetPayload {
|
|
|
964
880
|
dbPreset?: DbPreset | null;
|
|
965
881
|
dbPresetEdge?: DbPresetEdge | null;
|
|
966
882
|
}
|
|
967
|
-
export interface CreateInfraCommitPayload {
|
|
968
|
-
clientMutationId?: string | null;
|
|
969
|
-
/** The `InfraCommit` that was created by this mutation. */
|
|
970
|
-
infraCommit?: InfraCommit | null;
|
|
971
|
-
infraCommitEdge?: InfraCommitEdge | null;
|
|
972
|
-
}
|
|
973
|
-
export interface CreateInfraObjectPayload {
|
|
974
|
-
clientMutationId?: string | null;
|
|
975
|
-
/** The `InfraObject` that was created by this mutation. */
|
|
976
|
-
infraObject?: InfraObject | null;
|
|
977
|
-
infraObjectEdge?: InfraObjectEdge | null;
|
|
978
|
-
}
|
|
979
|
-
export interface CreateInfraRefPayload {
|
|
980
|
-
clientMutationId?: string | null;
|
|
981
|
-
/** The `InfraRef` that was created by this mutation. */
|
|
982
|
-
infraRef?: InfraRef | null;
|
|
983
|
-
infraRefEdge?: InfraRefEdge | null;
|
|
984
|
-
}
|
|
985
|
-
export interface CreateInfraStorePayload {
|
|
986
|
-
clientMutationId?: string | null;
|
|
987
|
-
/** The `InfraStore` that was created by this mutation. */
|
|
988
|
-
infraStore?: InfraStore | null;
|
|
989
|
-
infraStoreEdge?: InfraStoreEdge | null;
|
|
990
|
-
}
|
|
991
883
|
export interface CreateNamespacePayload {
|
|
992
884
|
clientMutationId?: string | null;
|
|
993
885
|
/** The `Namespace` that was created by this mutation. */
|
|
@@ -1000,6 +892,30 @@ export interface CreateNamespaceEventPayload {
|
|
|
1000
892
|
namespaceEvent?: NamespaceEvent | null;
|
|
1001
893
|
namespaceEventEdge?: NamespaceEventEdge | null;
|
|
1002
894
|
}
|
|
895
|
+
export interface CreatePlatformInfraCommitPayload {
|
|
896
|
+
clientMutationId?: string | null;
|
|
897
|
+
/** The `PlatformInfraCommit` that was created by this mutation. */
|
|
898
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
899
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
900
|
+
}
|
|
901
|
+
export interface CreatePlatformInfraObjectPayload {
|
|
902
|
+
clientMutationId?: string | null;
|
|
903
|
+
/** The `PlatformInfraObject` that was created by this mutation. */
|
|
904
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
905
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
906
|
+
}
|
|
907
|
+
export interface CreatePlatformInfraRefPayload {
|
|
908
|
+
clientMutationId?: string | null;
|
|
909
|
+
/** The `PlatformInfraRef` that was created by this mutation. */
|
|
910
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
911
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
912
|
+
}
|
|
913
|
+
export interface CreatePlatformInfraStorePayload {
|
|
914
|
+
clientMutationId?: string | null;
|
|
915
|
+
/** The `PlatformInfraStore` that was created by this mutation. */
|
|
916
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
917
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
918
|
+
}
|
|
1003
919
|
export interface CreatePlatformNamespacePayload {
|
|
1004
920
|
clientMutationId?: string | null;
|
|
1005
921
|
/** The `PlatformNamespace` that was created by this mutation. */
|
|
@@ -1018,30 +934,6 @@ export interface DeleteDbPresetPayload {
|
|
|
1018
934
|
dbPreset?: DbPreset | null;
|
|
1019
935
|
dbPresetEdge?: DbPresetEdge | null;
|
|
1020
936
|
}
|
|
1021
|
-
export interface DeleteInfraCommitPayload {
|
|
1022
|
-
clientMutationId?: string | null;
|
|
1023
|
-
/** The `InfraCommit` that was deleted by this mutation. */
|
|
1024
|
-
infraCommit?: InfraCommit | null;
|
|
1025
|
-
infraCommitEdge?: InfraCommitEdge | null;
|
|
1026
|
-
}
|
|
1027
|
-
export interface DeleteInfraObjectPayload {
|
|
1028
|
-
clientMutationId?: string | null;
|
|
1029
|
-
/** The `InfraObject` that was deleted by this mutation. */
|
|
1030
|
-
infraObject?: InfraObject | null;
|
|
1031
|
-
infraObjectEdge?: InfraObjectEdge | null;
|
|
1032
|
-
}
|
|
1033
|
-
export interface DeleteInfraRefPayload {
|
|
1034
|
-
clientMutationId?: string | null;
|
|
1035
|
-
/** The `InfraRef` that was deleted by this mutation. */
|
|
1036
|
-
infraRef?: InfraRef | null;
|
|
1037
|
-
infraRefEdge?: InfraRefEdge | null;
|
|
1038
|
-
}
|
|
1039
|
-
export interface DeleteInfraStorePayload {
|
|
1040
|
-
clientMutationId?: string | null;
|
|
1041
|
-
/** The `InfraStore` that was deleted by this mutation. */
|
|
1042
|
-
infraStore?: InfraStore | null;
|
|
1043
|
-
infraStoreEdge?: InfraStoreEdge | null;
|
|
1044
|
-
}
|
|
1045
937
|
export interface DeleteNamespacePayload {
|
|
1046
938
|
clientMutationId?: string | null;
|
|
1047
939
|
/** The `Namespace` that was deleted by this mutation. */
|
|
@@ -1054,6 +946,30 @@ export interface DeleteNamespaceEventPayload {
|
|
|
1054
946
|
namespaceEvent?: NamespaceEvent | null;
|
|
1055
947
|
namespaceEventEdge?: NamespaceEventEdge | null;
|
|
1056
948
|
}
|
|
949
|
+
export interface DeletePlatformInfraCommitPayload {
|
|
950
|
+
clientMutationId?: string | null;
|
|
951
|
+
/** The `PlatformInfraCommit` that was deleted by this mutation. */
|
|
952
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
953
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
954
|
+
}
|
|
955
|
+
export interface DeletePlatformInfraObjectPayload {
|
|
956
|
+
clientMutationId?: string | null;
|
|
957
|
+
/** The `PlatformInfraObject` that was deleted by this mutation. */
|
|
958
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
959
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
960
|
+
}
|
|
961
|
+
export interface DeletePlatformInfraRefPayload {
|
|
962
|
+
clientMutationId?: string | null;
|
|
963
|
+
/** The `PlatformInfraRef` that was deleted by this mutation. */
|
|
964
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
965
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
966
|
+
}
|
|
967
|
+
export interface DeletePlatformInfraStorePayload {
|
|
968
|
+
clientMutationId?: string | null;
|
|
969
|
+
/** The `PlatformInfraStore` that was deleted by this mutation. */
|
|
970
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
971
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
972
|
+
}
|
|
1057
973
|
export interface DeletePlatformNamespacePayload {
|
|
1058
974
|
clientMutationId?: string | null;
|
|
1059
975
|
/** The `PlatformNamespace` that was deleted by this mutation. */
|
|
@@ -1066,14 +982,14 @@ export interface DeletePlatformNamespaceEventPayload {
|
|
|
1066
982
|
platformNamespaceEvent?: PlatformNamespaceEvent | null;
|
|
1067
983
|
platformNamespaceEventEdge?: PlatformNamespaceEventEdge | null;
|
|
1068
984
|
}
|
|
1069
|
-
export interface
|
|
985
|
+
export interface PlatformInfraInitEmptyRepoPayload {
|
|
1070
986
|
clientMutationId?: string | null;
|
|
1071
987
|
}
|
|
1072
|
-
export interface
|
|
988
|
+
export interface PlatformInfraInsertNodeAtPathPayload {
|
|
1073
989
|
clientMutationId?: string | null;
|
|
1074
990
|
result?: string | null;
|
|
1075
991
|
}
|
|
1076
|
-
export interface
|
|
992
|
+
export interface PlatformInfraSetDataAtPathPayload {
|
|
1077
993
|
clientMutationId?: string | null;
|
|
1078
994
|
result?: string | null;
|
|
1079
995
|
}
|
|
@@ -1097,30 +1013,6 @@ export interface UpdateDbPresetPayload {
|
|
|
1097
1013
|
dbPreset?: DbPreset | null;
|
|
1098
1014
|
dbPresetEdge?: DbPresetEdge | null;
|
|
1099
1015
|
}
|
|
1100
|
-
export interface UpdateInfraCommitPayload {
|
|
1101
|
-
clientMutationId?: string | null;
|
|
1102
|
-
/** The `InfraCommit` that was updated by this mutation. */
|
|
1103
|
-
infraCommit?: InfraCommit | null;
|
|
1104
|
-
infraCommitEdge?: InfraCommitEdge | null;
|
|
1105
|
-
}
|
|
1106
|
-
export interface UpdateInfraObjectPayload {
|
|
1107
|
-
clientMutationId?: string | null;
|
|
1108
|
-
/** The `InfraObject` that was updated by this mutation. */
|
|
1109
|
-
infraObject?: InfraObject | null;
|
|
1110
|
-
infraObjectEdge?: InfraObjectEdge | null;
|
|
1111
|
-
}
|
|
1112
|
-
export interface UpdateInfraRefPayload {
|
|
1113
|
-
clientMutationId?: string | null;
|
|
1114
|
-
/** The `InfraRef` that was updated by this mutation. */
|
|
1115
|
-
infraRef?: InfraRef | null;
|
|
1116
|
-
infraRefEdge?: InfraRefEdge | null;
|
|
1117
|
-
}
|
|
1118
|
-
export interface UpdateInfraStorePayload {
|
|
1119
|
-
clientMutationId?: string | null;
|
|
1120
|
-
/** The `InfraStore` that was updated by this mutation. */
|
|
1121
|
-
infraStore?: InfraStore | null;
|
|
1122
|
-
infraStoreEdge?: InfraStoreEdge | null;
|
|
1123
|
-
}
|
|
1124
1016
|
export interface UpdateNamespacePayload {
|
|
1125
1017
|
clientMutationId?: string | null;
|
|
1126
1018
|
/** The `Namespace` that was updated by this mutation. */
|
|
@@ -1133,6 +1025,30 @@ export interface UpdateNamespaceEventPayload {
|
|
|
1133
1025
|
namespaceEvent?: NamespaceEvent | null;
|
|
1134
1026
|
namespaceEventEdge?: NamespaceEventEdge | null;
|
|
1135
1027
|
}
|
|
1028
|
+
export interface UpdatePlatformInfraCommitPayload {
|
|
1029
|
+
clientMutationId?: string | null;
|
|
1030
|
+
/** The `PlatformInfraCommit` that was updated by this mutation. */
|
|
1031
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
1032
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
1033
|
+
}
|
|
1034
|
+
export interface UpdatePlatformInfraObjectPayload {
|
|
1035
|
+
clientMutationId?: string | null;
|
|
1036
|
+
/** The `PlatformInfraObject` that was updated by this mutation. */
|
|
1037
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
1038
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
1039
|
+
}
|
|
1040
|
+
export interface UpdatePlatformInfraRefPayload {
|
|
1041
|
+
clientMutationId?: string | null;
|
|
1042
|
+
/** The `PlatformInfraRef` that was updated by this mutation. */
|
|
1043
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
1044
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
1045
|
+
}
|
|
1046
|
+
export interface UpdatePlatformInfraStorePayload {
|
|
1047
|
+
clientMutationId?: string | null;
|
|
1048
|
+
/** The `PlatformInfraStore` that was updated by this mutation. */
|
|
1049
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
1050
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
1051
|
+
}
|
|
1136
1052
|
export interface UpdatePlatformNamespacePayload {
|
|
1137
1053
|
clientMutationId?: string | null;
|
|
1138
1054
|
/** The `PlatformNamespace` that was updated by this mutation. */
|
|
@@ -1184,47 +1100,47 @@ export interface PageInfo {
|
|
|
1184
1100
|
/** When paginating backwards, the cursor to continue. */
|
|
1185
1101
|
startCursor?: string | null;
|
|
1186
1102
|
}
|
|
1187
|
-
/** A `
|
|
1188
|
-
export interface
|
|
1103
|
+
/** A `NamespaceEvent` edge in the connection. */
|
|
1104
|
+
export interface NamespaceEventEdge {
|
|
1189
1105
|
cursor?: string | null;
|
|
1190
|
-
/** The `
|
|
1191
|
-
node?:
|
|
1106
|
+
/** The `NamespaceEvent` at the end of the edge. */
|
|
1107
|
+
node?: NamespaceEvent | null;
|
|
1192
1108
|
}
|
|
1193
|
-
/** A `
|
|
1194
|
-
export interface
|
|
1109
|
+
/** A `Namespace` edge in the connection. */
|
|
1110
|
+
export interface NamespaceEdge {
|
|
1195
1111
|
cursor?: string | null;
|
|
1196
|
-
/** The `
|
|
1197
|
-
node?:
|
|
1112
|
+
/** The `Namespace` at the end of the edge. */
|
|
1113
|
+
node?: Namespace | null;
|
|
1198
1114
|
}
|
|
1199
|
-
/** A `
|
|
1200
|
-
export interface
|
|
1115
|
+
/** A `PlatformInfraCommit` edge in the connection. */
|
|
1116
|
+
export interface PlatformInfraCommitEdge {
|
|
1201
1117
|
cursor?: string | null;
|
|
1202
|
-
/** The `
|
|
1203
|
-
node?:
|
|
1118
|
+
/** The `PlatformInfraCommit` at the end of the edge. */
|
|
1119
|
+
node?: PlatformInfraCommit | null;
|
|
1204
1120
|
}
|
|
1205
|
-
/** A `
|
|
1206
|
-
export interface
|
|
1121
|
+
/** A `PlatformInfraGetAllTreeNodesRecord` edge in the connection. */
|
|
1122
|
+
export interface PlatformInfraGetAllTreeNodesEdge {
|
|
1207
1123
|
cursor?: string | null;
|
|
1208
|
-
/** The `
|
|
1209
|
-
node?:
|
|
1124
|
+
/** The `PlatformInfraGetAllTreeNodesRecord` at the end of the edge. */
|
|
1125
|
+
node?: PlatformInfraGetAllTreeNodesRecord | null;
|
|
1210
1126
|
}
|
|
1211
|
-
/** A `
|
|
1212
|
-
export interface
|
|
1127
|
+
/** A `PlatformInfraObject` edge in the connection. */
|
|
1128
|
+
export interface PlatformInfraObjectEdge {
|
|
1213
1129
|
cursor?: string | null;
|
|
1214
|
-
/** The `
|
|
1215
|
-
node?:
|
|
1130
|
+
/** The `PlatformInfraObject` at the end of the edge. */
|
|
1131
|
+
node?: PlatformInfraObject | null;
|
|
1216
1132
|
}
|
|
1217
|
-
/** A `
|
|
1218
|
-
export interface
|
|
1133
|
+
/** A `PlatformInfraRef` edge in the connection. */
|
|
1134
|
+
export interface PlatformInfraRefEdge {
|
|
1219
1135
|
cursor?: string | null;
|
|
1220
|
-
/** The `
|
|
1221
|
-
node?:
|
|
1136
|
+
/** The `PlatformInfraRef` at the end of the edge. */
|
|
1137
|
+
node?: PlatformInfraRef | null;
|
|
1222
1138
|
}
|
|
1223
|
-
/** A `
|
|
1224
|
-
export interface
|
|
1139
|
+
/** A `PlatformInfraStore` edge in the connection. */
|
|
1140
|
+
export interface PlatformInfraStoreEdge {
|
|
1225
1141
|
cursor?: string | null;
|
|
1226
|
-
/** The `
|
|
1227
|
-
node?:
|
|
1142
|
+
/** The `PlatformInfraStore` at the end of the edge. */
|
|
1143
|
+
node?: PlatformInfraStore | null;
|
|
1228
1144
|
}
|
|
1229
1145
|
/** A `PlatformNamespaceEvent` edge in the connection. */
|
|
1230
1146
|
export interface PlatformNamespaceEventEdge {
|