@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
|
@@ -254,8 +254,53 @@ export interface DbPreset {
|
|
|
254
254
|
/** Timestamp of last modification */
|
|
255
255
|
updatedAt?: string | null;
|
|
256
256
|
}
|
|
257
|
+
/** Logical namespace containers for grouping secrets, config, functions, and other resources */
|
|
258
|
+
export interface Namespace {
|
|
259
|
+
/** Freeform metadata for tooling and operational notes */
|
|
260
|
+
annotations?: Record<string, unknown> | null;
|
|
261
|
+
createdAt?: string | null;
|
|
262
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
263
|
+
databaseId?: string | null;
|
|
264
|
+
/** Optional human-readable description of this namespace */
|
|
265
|
+
description?: string | null;
|
|
266
|
+
id: string;
|
|
267
|
+
/** Whether this namespace is active (soft-disable for filtering) */
|
|
268
|
+
isActive?: boolean | null;
|
|
269
|
+
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
270
|
+
isManaged?: boolean | null;
|
|
271
|
+
/** Key/value pairs for selecting and filtering namespaces */
|
|
272
|
+
labels?: Record<string, unknown> | null;
|
|
273
|
+
/** Most recent provisioning or reconcile error message */
|
|
274
|
+
lastError?: string | null;
|
|
275
|
+
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
276
|
+
name?: string | null;
|
|
277
|
+
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
278
|
+
namespaceName?: string | null;
|
|
279
|
+
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
280
|
+
status?: string | null;
|
|
281
|
+
updatedAt?: string | null;
|
|
282
|
+
}
|
|
283
|
+
/** Namespace lifecycle events — audit log of creation, activation, deactivation, label changes */
|
|
284
|
+
export interface NamespaceEvent {
|
|
285
|
+
/** User who triggered this event (NULL for system/automated) */
|
|
286
|
+
actorId?: string | null;
|
|
287
|
+
/** Event timestamp (partition key) */
|
|
288
|
+
createdAt?: string | null;
|
|
289
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
290
|
+
databaseId?: string | null;
|
|
291
|
+
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
292
|
+
eventType?: string | null;
|
|
293
|
+
/** Unique event identifier */
|
|
294
|
+
id: string;
|
|
295
|
+
/** Human-readable description of the event */
|
|
296
|
+
message?: string | null;
|
|
297
|
+
/** Structured context (old/new values, labels diff, etc.) */
|
|
298
|
+
metadata?: Record<string, unknown> | null;
|
|
299
|
+
/** Namespace this event belongs to */
|
|
300
|
+
namespaceId?: string | null;
|
|
301
|
+
}
|
|
257
302
|
/** Commit history — each commit snapshots a tree root for a store */
|
|
258
|
-
export interface
|
|
303
|
+
export interface PlatformInfraCommit {
|
|
259
304
|
/** User who authored the changes */
|
|
260
305
|
authorId?: string | null;
|
|
261
306
|
/** User who committed (may differ from author) */
|
|
@@ -275,12 +320,12 @@ export interface InfraCommit {
|
|
|
275
320
|
/** Root object ID of the tree snapshot at this commit */
|
|
276
321
|
treeId?: string | null;
|
|
277
322
|
}
|
|
278
|
-
export interface
|
|
323
|
+
export interface PlatformInfraGetAllTreeNodesRecord {
|
|
279
324
|
data?: Record<string, unknown> | null;
|
|
280
325
|
path?: string[] | null;
|
|
281
326
|
}
|
|
282
327
|
/** Content-addressed Merkle tree objects keyed by UUID v5 hash of data + children */
|
|
283
|
-
export interface
|
|
328
|
+
export interface PlatformInfraObject {
|
|
284
329
|
/** Timestamp of object creation */
|
|
285
330
|
createdAt?: string | null;
|
|
286
331
|
/** Payload data for this object node */
|
|
@@ -295,7 +340,7 @@ export interface InfraObject {
|
|
|
295
340
|
scopeId?: string | null;
|
|
296
341
|
}
|
|
297
342
|
/** Branch heads — mutable pointers into the commit chain */
|
|
298
|
-
export interface
|
|
343
|
+
export interface PlatformInfraRef {
|
|
299
344
|
/** Commit this ref points to */
|
|
300
345
|
commitId?: string | null;
|
|
301
346
|
/** Unique ref identifier */
|
|
@@ -308,7 +353,7 @@ export interface InfraRef {
|
|
|
308
353
|
storeId?: string | null;
|
|
309
354
|
}
|
|
310
355
|
/** Named stores — one per version-controlled tree (e.g. one graph, one definition set) */
|
|
311
|
-
export interface
|
|
356
|
+
export interface PlatformInfraStore {
|
|
312
357
|
/** Timestamp of store creation */
|
|
313
358
|
createdAt?: string | null;
|
|
314
359
|
/** Current root object hash of this store */
|
|
@@ -321,65 +366,6 @@ export interface InfraStore {
|
|
|
321
366
|
scopeId?: string | null;
|
|
322
367
|
}
|
|
323
368
|
/** Logical namespace containers for grouping secrets, config, functions, and other resources */
|
|
324
|
-
export interface Namespace {
|
|
325
|
-
/** Freeform metadata for tooling and operational notes */
|
|
326
|
-
annotations?: Record<string, unknown> | null;
|
|
327
|
-
createdAt?: string | null;
|
|
328
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
329
|
-
databaseId?: string | null;
|
|
330
|
-
/** Optional human-readable description of this namespace */
|
|
331
|
-
description?: string | null;
|
|
332
|
-
id: string;
|
|
333
|
-
/** Whether this namespace is active (soft-disable for filtering) */
|
|
334
|
-
isActive?: boolean | null;
|
|
335
|
-
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
336
|
-
isManaged?: boolean | null;
|
|
337
|
-
/** Key/value pairs for selecting and filtering namespaces */
|
|
338
|
-
labels?: Record<string, unknown> | null;
|
|
339
|
-
/** Most recent provisioning or reconcile error message */
|
|
340
|
-
lastError?: string | null;
|
|
341
|
-
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
342
|
-
name?: string | null;
|
|
343
|
-
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
344
|
-
namespaceName?: string | null;
|
|
345
|
-
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
346
|
-
status?: string | null;
|
|
347
|
-
updatedAt?: string | null;
|
|
348
|
-
}
|
|
349
|
-
/** Namespace lifecycle events — audit log of creation, activation, deactivation, label changes */
|
|
350
|
-
export interface NamespaceEvent {
|
|
351
|
-
/** User who triggered this event (NULL for system/automated) */
|
|
352
|
-
actorId?: string | null;
|
|
353
|
-
/** CPU usage in millicores at time of event */
|
|
354
|
-
cpuMillicores?: number | null;
|
|
355
|
-
/** Event timestamp (partition key) */
|
|
356
|
-
createdAt?: string | null;
|
|
357
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
358
|
-
databaseId?: string | null;
|
|
359
|
-
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
360
|
-
eventType?: string | null;
|
|
361
|
-
/** Unique event identifier */
|
|
362
|
-
id: string;
|
|
363
|
-
/** Memory usage in bytes at time of event */
|
|
364
|
-
memoryBytes?: string | null;
|
|
365
|
-
/** Human-readable description of the event */
|
|
366
|
-
message?: string | null;
|
|
367
|
-
/** Structured context (old/new values, labels diff, etc.) */
|
|
368
|
-
metadata?: Record<string, unknown> | null;
|
|
369
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
370
|
-
metrics?: Record<string, unknown> | null;
|
|
371
|
-
/** Namespace this event belongs to */
|
|
372
|
-
namespaceId?: string | null;
|
|
373
|
-
/** Network egress in bytes during event window */
|
|
374
|
-
networkEgressBytes?: string | null;
|
|
375
|
-
/** Network ingress in bytes during event window */
|
|
376
|
-
networkIngressBytes?: string | null;
|
|
377
|
-
/** Number of active pods in the namespace at time of event */
|
|
378
|
-
podCount?: number | null;
|
|
379
|
-
/** Storage usage in bytes at time of event */
|
|
380
|
-
storageBytes?: string | null;
|
|
381
|
-
}
|
|
382
|
-
/** Logical namespace containers for grouping secrets, config, functions, and other resources */
|
|
383
369
|
export interface PlatformNamespace {
|
|
384
370
|
/** Freeform metadata for tooling and operational notes */
|
|
385
371
|
annotations?: Record<string, unknown> | null;
|
|
@@ -407,32 +393,18 @@ export interface PlatformNamespace {
|
|
|
407
393
|
export interface PlatformNamespaceEvent {
|
|
408
394
|
/** User who triggered this event (NULL for system/automated) */
|
|
409
395
|
actorId?: string | null;
|
|
410
|
-
/** CPU usage in millicores at time of event */
|
|
411
|
-
cpuMillicores?: number | null;
|
|
412
396
|
/** Event timestamp (partition key) */
|
|
413
397
|
createdAt?: string | null;
|
|
414
398
|
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
415
399
|
eventType?: string | null;
|
|
416
400
|
/** Unique event identifier */
|
|
417
401
|
id: string;
|
|
418
|
-
/** Memory usage in bytes at time of event */
|
|
419
|
-
memoryBytes?: string | null;
|
|
420
402
|
/** Human-readable description of the event */
|
|
421
403
|
message?: string | null;
|
|
422
404
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
423
405
|
metadata?: Record<string, unknown> | null;
|
|
424
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
425
|
-
metrics?: Record<string, unknown> | null;
|
|
426
406
|
/** Namespace this event belongs to */
|
|
427
407
|
namespaceId?: string | null;
|
|
428
|
-
/** Network egress in bytes during event window */
|
|
429
|
-
networkEgressBytes?: string | null;
|
|
430
|
-
/** Network ingress in bytes during event window */
|
|
431
|
-
networkIngressBytes?: string | null;
|
|
432
|
-
/** Number of active pods in the namespace at time of event */
|
|
433
|
-
podCount?: number | null;
|
|
434
|
-
/** Storage usage in bytes at time of event */
|
|
435
|
-
storageBytes?: string | null;
|
|
436
408
|
}
|
|
437
409
|
export interface ConnectionResult<T> {
|
|
438
410
|
nodes: T[];
|
|
@@ -447,32 +419,32 @@ export interface PageInfo {
|
|
|
447
419
|
}
|
|
448
420
|
export interface DbPresetRelations {
|
|
449
421
|
}
|
|
450
|
-
export interface
|
|
422
|
+
export interface NamespaceRelations {
|
|
451
423
|
}
|
|
452
|
-
export interface
|
|
424
|
+
export interface NamespaceEventRelations {
|
|
453
425
|
}
|
|
454
|
-
export interface
|
|
426
|
+
export interface PlatformInfraCommitRelations {
|
|
455
427
|
}
|
|
456
|
-
export interface
|
|
428
|
+
export interface PlatformInfraGetAllTreeNodesRecordRelations {
|
|
457
429
|
}
|
|
458
|
-
export interface
|
|
430
|
+
export interface PlatformInfraObjectRelations {
|
|
459
431
|
}
|
|
460
|
-
export interface
|
|
432
|
+
export interface PlatformInfraRefRelations {
|
|
461
433
|
}
|
|
462
|
-
export interface
|
|
434
|
+
export interface PlatformInfraStoreRelations {
|
|
463
435
|
}
|
|
464
436
|
export interface PlatformNamespaceRelations {
|
|
465
437
|
}
|
|
466
438
|
export interface PlatformNamespaceEventRelations {
|
|
467
439
|
}
|
|
468
440
|
export type DbPresetWithRelations = DbPreset & DbPresetRelations;
|
|
469
|
-
export type InfraCommitWithRelations = InfraCommit & InfraCommitRelations;
|
|
470
|
-
export type InfraGetAllRecordWithRelations = InfraGetAllRecord & InfraGetAllRecordRelations;
|
|
471
|
-
export type InfraObjectWithRelations = InfraObject & InfraObjectRelations;
|
|
472
|
-
export type InfraRefWithRelations = InfraRef & InfraRefRelations;
|
|
473
|
-
export type InfraStoreWithRelations = InfraStore & InfraStoreRelations;
|
|
474
441
|
export type NamespaceWithRelations = Namespace & NamespaceRelations;
|
|
475
442
|
export type NamespaceEventWithRelations = NamespaceEvent & NamespaceEventRelations;
|
|
443
|
+
export type PlatformInfraCommitWithRelations = PlatformInfraCommit & PlatformInfraCommitRelations;
|
|
444
|
+
export type PlatformInfraGetAllTreeNodesRecordWithRelations = PlatformInfraGetAllTreeNodesRecord & PlatformInfraGetAllTreeNodesRecordRelations;
|
|
445
|
+
export type PlatformInfraObjectWithRelations = PlatformInfraObject & PlatformInfraObjectRelations;
|
|
446
|
+
export type PlatformInfraRefWithRelations = PlatformInfraRef & PlatformInfraRefRelations;
|
|
447
|
+
export type PlatformInfraStoreWithRelations = PlatformInfraStore & PlatformInfraStoreRelations;
|
|
476
448
|
export type PlatformNamespaceWithRelations = PlatformNamespace & PlatformNamespaceRelations;
|
|
477
449
|
export type PlatformNamespaceEventWithRelations = PlatformNamespaceEvent & PlatformNamespaceEventRelations;
|
|
478
450
|
export type DbPresetSelect = {
|
|
@@ -488,7 +460,32 @@ export type DbPresetSelect = {
|
|
|
488
460
|
storeId?: boolean;
|
|
489
461
|
updatedAt?: boolean;
|
|
490
462
|
};
|
|
491
|
-
export type
|
|
463
|
+
export type NamespaceSelect = {
|
|
464
|
+
annotations?: boolean;
|
|
465
|
+
createdAt?: boolean;
|
|
466
|
+
databaseId?: boolean;
|
|
467
|
+
description?: boolean;
|
|
468
|
+
id?: boolean;
|
|
469
|
+
isActive?: boolean;
|
|
470
|
+
isManaged?: boolean;
|
|
471
|
+
labels?: boolean;
|
|
472
|
+
lastError?: boolean;
|
|
473
|
+
name?: boolean;
|
|
474
|
+
namespaceName?: boolean;
|
|
475
|
+
status?: boolean;
|
|
476
|
+
updatedAt?: boolean;
|
|
477
|
+
};
|
|
478
|
+
export type NamespaceEventSelect = {
|
|
479
|
+
actorId?: boolean;
|
|
480
|
+
createdAt?: boolean;
|
|
481
|
+
databaseId?: boolean;
|
|
482
|
+
eventType?: boolean;
|
|
483
|
+
id?: boolean;
|
|
484
|
+
message?: boolean;
|
|
485
|
+
metadata?: boolean;
|
|
486
|
+
namespaceId?: boolean;
|
|
487
|
+
};
|
|
488
|
+
export type PlatformInfraCommitSelect = {
|
|
492
489
|
authorId?: boolean;
|
|
493
490
|
committerId?: boolean;
|
|
494
491
|
date?: boolean;
|
|
@@ -499,11 +496,11 @@ export type InfraCommitSelect = {
|
|
|
499
496
|
storeId?: boolean;
|
|
500
497
|
treeId?: boolean;
|
|
501
498
|
};
|
|
502
|
-
export type
|
|
499
|
+
export type PlatformInfraGetAllTreeNodesRecordSelect = {
|
|
503
500
|
data?: boolean;
|
|
504
501
|
path?: boolean;
|
|
505
502
|
};
|
|
506
|
-
export type
|
|
503
|
+
export type PlatformInfraObjectSelect = {
|
|
507
504
|
createdAt?: boolean;
|
|
508
505
|
data?: boolean;
|
|
509
506
|
id?: boolean;
|
|
@@ -511,52 +508,20 @@ export type InfraObjectSelect = {
|
|
|
511
508
|
ktree?: boolean;
|
|
512
509
|
scopeId?: boolean;
|
|
513
510
|
};
|
|
514
|
-
export type
|
|
511
|
+
export type PlatformInfraRefSelect = {
|
|
515
512
|
commitId?: boolean;
|
|
516
513
|
id?: boolean;
|
|
517
514
|
name?: boolean;
|
|
518
515
|
scopeId?: boolean;
|
|
519
516
|
storeId?: boolean;
|
|
520
517
|
};
|
|
521
|
-
export type
|
|
518
|
+
export type PlatformInfraStoreSelect = {
|
|
522
519
|
createdAt?: boolean;
|
|
523
520
|
hash?: boolean;
|
|
524
521
|
id?: boolean;
|
|
525
522
|
name?: boolean;
|
|
526
523
|
scopeId?: boolean;
|
|
527
524
|
};
|
|
528
|
-
export type NamespaceSelect = {
|
|
529
|
-
annotations?: boolean;
|
|
530
|
-
createdAt?: boolean;
|
|
531
|
-
databaseId?: boolean;
|
|
532
|
-
description?: boolean;
|
|
533
|
-
id?: boolean;
|
|
534
|
-
isActive?: boolean;
|
|
535
|
-
isManaged?: boolean;
|
|
536
|
-
labels?: boolean;
|
|
537
|
-
lastError?: boolean;
|
|
538
|
-
name?: boolean;
|
|
539
|
-
namespaceName?: boolean;
|
|
540
|
-
status?: boolean;
|
|
541
|
-
updatedAt?: boolean;
|
|
542
|
-
};
|
|
543
|
-
export type NamespaceEventSelect = {
|
|
544
|
-
actorId?: boolean;
|
|
545
|
-
cpuMillicores?: boolean;
|
|
546
|
-
createdAt?: boolean;
|
|
547
|
-
databaseId?: boolean;
|
|
548
|
-
eventType?: boolean;
|
|
549
|
-
id?: boolean;
|
|
550
|
-
memoryBytes?: boolean;
|
|
551
|
-
message?: boolean;
|
|
552
|
-
metadata?: boolean;
|
|
553
|
-
metrics?: boolean;
|
|
554
|
-
namespaceId?: boolean;
|
|
555
|
-
networkEgressBytes?: boolean;
|
|
556
|
-
networkIngressBytes?: boolean;
|
|
557
|
-
podCount?: boolean;
|
|
558
|
-
storageBytes?: boolean;
|
|
559
|
-
};
|
|
560
525
|
export type PlatformNamespaceSelect = {
|
|
561
526
|
annotations?: boolean;
|
|
562
527
|
createdAt?: boolean;
|
|
@@ -573,19 +538,12 @@ export type PlatformNamespaceSelect = {
|
|
|
573
538
|
};
|
|
574
539
|
export type PlatformNamespaceEventSelect = {
|
|
575
540
|
actorId?: boolean;
|
|
576
|
-
cpuMillicores?: boolean;
|
|
577
541
|
createdAt?: boolean;
|
|
578
542
|
eventType?: boolean;
|
|
579
543
|
id?: boolean;
|
|
580
|
-
memoryBytes?: boolean;
|
|
581
544
|
message?: boolean;
|
|
582
545
|
metadata?: boolean;
|
|
583
|
-
metrics?: boolean;
|
|
584
546
|
namespaceId?: boolean;
|
|
585
|
-
networkEgressBytes?: boolean;
|
|
586
|
-
networkIngressBytes?: boolean;
|
|
587
|
-
podCount?: boolean;
|
|
588
|
-
storageBytes?: boolean;
|
|
589
547
|
};
|
|
590
548
|
export interface DbPresetFilter {
|
|
591
549
|
/** Filter by the object’s `active` field. */
|
|
@@ -617,9 +575,67 @@ export interface DbPresetFilter {
|
|
|
617
575
|
/** Filter by the object’s `updatedAt` field. */
|
|
618
576
|
updatedAt?: DatetimeFilter;
|
|
619
577
|
}
|
|
620
|
-
export interface
|
|
578
|
+
export interface NamespaceFilter {
|
|
621
579
|
/** Checks for all expressions in this list. */
|
|
622
|
-
and?:
|
|
580
|
+
and?: NamespaceFilter[];
|
|
581
|
+
/** Filter by the object’s `annotations` field. */
|
|
582
|
+
annotations?: JSONFilter;
|
|
583
|
+
/** Filter by the object’s `createdAt` field. */
|
|
584
|
+
createdAt?: DatetimeFilter;
|
|
585
|
+
/** Filter by the object’s `databaseId` field. */
|
|
586
|
+
databaseId?: UUIDFilter;
|
|
587
|
+
/** Filter by the object’s `description` field. */
|
|
588
|
+
description?: StringFilter;
|
|
589
|
+
/** Filter by the object’s `id` field. */
|
|
590
|
+
id?: UUIDFilter;
|
|
591
|
+
/** Filter by the object’s `isActive` field. */
|
|
592
|
+
isActive?: BooleanFilter;
|
|
593
|
+
/** Filter by the object’s `isManaged` field. */
|
|
594
|
+
isManaged?: BooleanFilter;
|
|
595
|
+
/** Filter by the object’s `labels` field. */
|
|
596
|
+
labels?: JSONFilter;
|
|
597
|
+
/** Filter by the object’s `lastError` field. */
|
|
598
|
+
lastError?: StringFilter;
|
|
599
|
+
/** Filter by the object’s `name` field. */
|
|
600
|
+
name?: StringFilter;
|
|
601
|
+
/** Filter by the object’s `namespaceName` field. */
|
|
602
|
+
namespaceName?: StringFilter;
|
|
603
|
+
/** Negates the expression. */
|
|
604
|
+
not?: NamespaceFilter;
|
|
605
|
+
/** Checks for any expressions in this list. */
|
|
606
|
+
or?: NamespaceFilter[];
|
|
607
|
+
/** Filter by the object’s `status` field. */
|
|
608
|
+
status?: StringFilter;
|
|
609
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
610
|
+
updatedAt?: DatetimeFilter;
|
|
611
|
+
}
|
|
612
|
+
export interface NamespaceEventFilter {
|
|
613
|
+
/** Filter by the object’s `actorId` field. */
|
|
614
|
+
actorId?: UUIDFilter;
|
|
615
|
+
/** Checks for all expressions in this list. */
|
|
616
|
+
and?: NamespaceEventFilter[];
|
|
617
|
+
/** Filter by the object’s `createdAt` field. */
|
|
618
|
+
createdAt?: DatetimeFilter;
|
|
619
|
+
/** Filter by the object’s `databaseId` field. */
|
|
620
|
+
databaseId?: UUIDFilter;
|
|
621
|
+
/** Filter by the object’s `eventType` field. */
|
|
622
|
+
eventType?: StringFilter;
|
|
623
|
+
/** Filter by the object’s `id` field. */
|
|
624
|
+
id?: UUIDFilter;
|
|
625
|
+
/** Filter by the object’s `message` field. */
|
|
626
|
+
message?: StringFilter;
|
|
627
|
+
/** Filter by the object’s `metadata` field. */
|
|
628
|
+
metadata?: JSONFilter;
|
|
629
|
+
/** Filter by the object’s `namespaceId` field. */
|
|
630
|
+
namespaceId?: UUIDFilter;
|
|
631
|
+
/** Negates the expression. */
|
|
632
|
+
not?: NamespaceEventFilter;
|
|
633
|
+
/** Checks for any expressions in this list. */
|
|
634
|
+
or?: NamespaceEventFilter[];
|
|
635
|
+
}
|
|
636
|
+
export interface PlatformInfraCommitFilter {
|
|
637
|
+
/** Checks for all expressions in this list. */
|
|
638
|
+
and?: PlatformInfraCommitFilter[];
|
|
623
639
|
/** Filter by the object’s `authorId` field. */
|
|
624
640
|
authorId?: UUIDFilter;
|
|
625
641
|
/** Filter by the object’s `committerId` field. */
|
|
@@ -631,9 +647,9 @@ export interface InfraCommitFilter {
|
|
|
631
647
|
/** Filter by the object’s `message` field. */
|
|
632
648
|
message?: StringFilter;
|
|
633
649
|
/** Negates the expression. */
|
|
634
|
-
not?:
|
|
650
|
+
not?: PlatformInfraCommitFilter;
|
|
635
651
|
/** Checks for any expressions in this list. */
|
|
636
|
-
or?:
|
|
652
|
+
or?: PlatformInfraCommitFilter[];
|
|
637
653
|
/** Filter by the object’s `parentIds` field. */
|
|
638
654
|
parentIds?: UUIDListFilter;
|
|
639
655
|
/** Filter by the object’s `scopeId` field. */
|
|
@@ -643,16 +659,16 @@ export interface InfraCommitFilter {
|
|
|
643
659
|
/** Filter by the object’s `treeId` field. */
|
|
644
660
|
treeId?: UUIDFilter;
|
|
645
661
|
}
|
|
646
|
-
export interface
|
|
662
|
+
export interface PlatformInfraGetAllTreeNodesRecordFilter {
|
|
647
663
|
data?: JSONFilter;
|
|
648
664
|
path?: StringListFilter;
|
|
649
|
-
and?:
|
|
650
|
-
or?:
|
|
651
|
-
not?:
|
|
665
|
+
and?: PlatformInfraGetAllTreeNodesRecordFilter[];
|
|
666
|
+
or?: PlatformInfraGetAllTreeNodesRecordFilter[];
|
|
667
|
+
not?: PlatformInfraGetAllTreeNodesRecordFilter;
|
|
652
668
|
}
|
|
653
|
-
export interface
|
|
669
|
+
export interface PlatformInfraObjectFilter {
|
|
654
670
|
/** Checks for all expressions in this list. */
|
|
655
|
-
and?:
|
|
671
|
+
and?: PlatformInfraObjectFilter[];
|
|
656
672
|
/** Filter by the object’s `createdAt` field. */
|
|
657
673
|
createdAt?: DatetimeFilter;
|
|
658
674
|
/** Filter by the object’s `data` field. */
|
|
@@ -664,15 +680,15 @@ export interface InfraObjectFilter {
|
|
|
664
680
|
/** Filter by the object’s `ktree` field. */
|
|
665
681
|
ktree?: StringListFilter;
|
|
666
682
|
/** Negates the expression. */
|
|
667
|
-
not?:
|
|
683
|
+
not?: PlatformInfraObjectFilter;
|
|
668
684
|
/** Checks for any expressions in this list. */
|
|
669
|
-
or?:
|
|
685
|
+
or?: PlatformInfraObjectFilter[];
|
|
670
686
|
/** Filter by the object’s `scopeId` field. */
|
|
671
687
|
scopeId?: UUIDFilter;
|
|
672
688
|
}
|
|
673
|
-
export interface
|
|
689
|
+
export interface PlatformInfraRefFilter {
|
|
674
690
|
/** Checks for all expressions in this list. */
|
|
675
|
-
and?:
|
|
691
|
+
and?: PlatformInfraRefFilter[];
|
|
676
692
|
/** Filter by the object’s `commitId` field. */
|
|
677
693
|
commitId?: UUIDFilter;
|
|
678
694
|
/** Filter by the object’s `id` field. */
|
|
@@ -680,17 +696,17 @@ export interface InfraRefFilter {
|
|
|
680
696
|
/** Filter by the object’s `name` field. */
|
|
681
697
|
name?: StringFilter;
|
|
682
698
|
/** Negates the expression. */
|
|
683
|
-
not?:
|
|
699
|
+
not?: PlatformInfraRefFilter;
|
|
684
700
|
/** Checks for any expressions in this list. */
|
|
685
|
-
or?:
|
|
701
|
+
or?: PlatformInfraRefFilter[];
|
|
686
702
|
/** Filter by the object’s `scopeId` field. */
|
|
687
703
|
scopeId?: UUIDFilter;
|
|
688
704
|
/** Filter by the object’s `storeId` field. */
|
|
689
705
|
storeId?: UUIDFilter;
|
|
690
706
|
}
|
|
691
|
-
export interface
|
|
707
|
+
export interface PlatformInfraStoreFilter {
|
|
692
708
|
/** Checks for all expressions in this list. */
|
|
693
|
-
and?:
|
|
709
|
+
and?: PlatformInfraStoreFilter[];
|
|
694
710
|
/** Filter by the object’s `createdAt` field. */
|
|
695
711
|
createdAt?: DatetimeFilter;
|
|
696
712
|
/** Filter by the object’s `hash` field. */
|
|
@@ -700,84 +716,12 @@ export interface InfraStoreFilter {
|
|
|
700
716
|
/** Filter by the object’s `name` field. */
|
|
701
717
|
name?: StringFilter;
|
|
702
718
|
/** Negates the expression. */
|
|
703
|
-
not?:
|
|
719
|
+
not?: PlatformInfraStoreFilter;
|
|
704
720
|
/** Checks for any expressions in this list. */
|
|
705
|
-
or?:
|
|
721
|
+
or?: PlatformInfraStoreFilter[];
|
|
706
722
|
/** Filter by the object’s `scopeId` field. */
|
|
707
723
|
scopeId?: UUIDFilter;
|
|
708
724
|
}
|
|
709
|
-
export interface NamespaceFilter {
|
|
710
|
-
/** Checks for all expressions in this list. */
|
|
711
|
-
and?: NamespaceFilter[];
|
|
712
|
-
/** Filter by the object’s `annotations` field. */
|
|
713
|
-
annotations?: JSONFilter;
|
|
714
|
-
/** Filter by the object’s `createdAt` field. */
|
|
715
|
-
createdAt?: DatetimeFilter;
|
|
716
|
-
/** Filter by the object’s `databaseId` field. */
|
|
717
|
-
databaseId?: UUIDFilter;
|
|
718
|
-
/** Filter by the object’s `description` field. */
|
|
719
|
-
description?: StringFilter;
|
|
720
|
-
/** Filter by the object’s `id` field. */
|
|
721
|
-
id?: UUIDFilter;
|
|
722
|
-
/** Filter by the object’s `isActive` field. */
|
|
723
|
-
isActive?: BooleanFilter;
|
|
724
|
-
/** Filter by the object’s `isManaged` field. */
|
|
725
|
-
isManaged?: BooleanFilter;
|
|
726
|
-
/** Filter by the object’s `labels` field. */
|
|
727
|
-
labels?: JSONFilter;
|
|
728
|
-
/** Filter by the object’s `lastError` field. */
|
|
729
|
-
lastError?: StringFilter;
|
|
730
|
-
/** Filter by the object’s `name` field. */
|
|
731
|
-
name?: StringFilter;
|
|
732
|
-
/** Filter by the object’s `namespaceName` field. */
|
|
733
|
-
namespaceName?: StringFilter;
|
|
734
|
-
/** Negates the expression. */
|
|
735
|
-
not?: NamespaceFilter;
|
|
736
|
-
/** Checks for any expressions in this list. */
|
|
737
|
-
or?: NamespaceFilter[];
|
|
738
|
-
/** Filter by the object’s `status` field. */
|
|
739
|
-
status?: StringFilter;
|
|
740
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
741
|
-
updatedAt?: DatetimeFilter;
|
|
742
|
-
}
|
|
743
|
-
export interface NamespaceEventFilter {
|
|
744
|
-
/** Filter by the object’s `actorId` field. */
|
|
745
|
-
actorId?: UUIDFilter;
|
|
746
|
-
/** Checks for all expressions in this list. */
|
|
747
|
-
and?: NamespaceEventFilter[];
|
|
748
|
-
/** Filter by the object’s `cpuMillicores` field. */
|
|
749
|
-
cpuMillicores?: IntFilter;
|
|
750
|
-
/** Filter by the object’s `createdAt` field. */
|
|
751
|
-
createdAt?: DatetimeFilter;
|
|
752
|
-
/** Filter by the object’s `databaseId` field. */
|
|
753
|
-
databaseId?: UUIDFilter;
|
|
754
|
-
/** Filter by the object’s `eventType` field. */
|
|
755
|
-
eventType?: StringFilter;
|
|
756
|
-
/** Filter by the object’s `id` field. */
|
|
757
|
-
id?: UUIDFilter;
|
|
758
|
-
/** Filter by the object’s `memoryBytes` field. */
|
|
759
|
-
memoryBytes?: BigIntFilter;
|
|
760
|
-
/** Filter by the object’s `message` field. */
|
|
761
|
-
message?: StringFilter;
|
|
762
|
-
/** Filter by the object’s `metadata` field. */
|
|
763
|
-
metadata?: JSONFilter;
|
|
764
|
-
/** Filter by the object’s `metrics` field. */
|
|
765
|
-
metrics?: JSONFilter;
|
|
766
|
-
/** Filter by the object’s `namespaceId` field. */
|
|
767
|
-
namespaceId?: UUIDFilter;
|
|
768
|
-
/** Filter by the object’s `networkEgressBytes` field. */
|
|
769
|
-
networkEgressBytes?: BigIntFilter;
|
|
770
|
-
/** Filter by the object’s `networkIngressBytes` field. */
|
|
771
|
-
networkIngressBytes?: BigIntFilter;
|
|
772
|
-
/** Negates the expression. */
|
|
773
|
-
not?: NamespaceEventFilter;
|
|
774
|
-
/** Checks for any expressions in this list. */
|
|
775
|
-
or?: NamespaceEventFilter[];
|
|
776
|
-
/** Filter by the object’s `podCount` field. */
|
|
777
|
-
podCount?: IntFilter;
|
|
778
|
-
/** Filter by the object’s `storageBytes` field. */
|
|
779
|
-
storageBytes?: BigIntFilter;
|
|
780
|
-
}
|
|
781
725
|
export interface PlatformNamespaceFilter {
|
|
782
726
|
/** Checks for all expressions in this list. */
|
|
783
727
|
and?: PlatformNamespaceFilter[];
|
|
@@ -815,47 +759,33 @@ export interface PlatformNamespaceEventFilter {
|
|
|
815
759
|
actorId?: UUIDFilter;
|
|
816
760
|
/** Checks for all expressions in this list. */
|
|
817
761
|
and?: PlatformNamespaceEventFilter[];
|
|
818
|
-
/** Filter by the object’s `cpuMillicores` field. */
|
|
819
|
-
cpuMillicores?: IntFilter;
|
|
820
762
|
/** Filter by the object’s `createdAt` field. */
|
|
821
763
|
createdAt?: DatetimeFilter;
|
|
822
764
|
/** Filter by the object’s `eventType` field. */
|
|
823
765
|
eventType?: StringFilter;
|
|
824
766
|
/** Filter by the object’s `id` field. */
|
|
825
767
|
id?: UUIDFilter;
|
|
826
|
-
/** Filter by the object’s `memoryBytes` field. */
|
|
827
|
-
memoryBytes?: BigIntFilter;
|
|
828
768
|
/** Filter by the object’s `message` field. */
|
|
829
769
|
message?: StringFilter;
|
|
830
770
|
/** Filter by the object’s `metadata` field. */
|
|
831
771
|
metadata?: JSONFilter;
|
|
832
|
-
/** Filter by the object’s `metrics` field. */
|
|
833
|
-
metrics?: JSONFilter;
|
|
834
772
|
/** Filter by the object’s `namespaceId` field. */
|
|
835
773
|
namespaceId?: UUIDFilter;
|
|
836
|
-
/** Filter by the object’s `networkEgressBytes` field. */
|
|
837
|
-
networkEgressBytes?: BigIntFilter;
|
|
838
|
-
/** Filter by the object’s `networkIngressBytes` field. */
|
|
839
|
-
networkIngressBytes?: BigIntFilter;
|
|
840
774
|
/** Negates the expression. */
|
|
841
775
|
not?: PlatformNamespaceEventFilter;
|
|
842
776
|
/** Checks for any expressions in this list. */
|
|
843
777
|
or?: PlatformNamespaceEventFilter[];
|
|
844
|
-
/** Filter by the object’s `podCount` field. */
|
|
845
|
-
podCount?: IntFilter;
|
|
846
|
-
/** Filter by the object’s `storageBytes` field. */
|
|
847
|
-
storageBytes?: BigIntFilter;
|
|
848
778
|
}
|
|
849
779
|
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';
|
|
850
|
-
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';
|
|
851
|
-
export type InfraGetAllRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'DATA_ASC' | 'DATA_DESC' | 'PATH_ASC' | 'PATH_DESC';
|
|
852
|
-
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';
|
|
853
|
-
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';
|
|
854
|
-
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';
|
|
855
780
|
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';
|
|
856
|
-
export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | '
|
|
781
|
+
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';
|
|
782
|
+
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';
|
|
783
|
+
export type PlatformInfraGetAllTreeNodesRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'DATA_ASC' | 'DATA_DESC' | 'PATH_ASC' | 'PATH_DESC';
|
|
784
|
+
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';
|
|
785
|
+
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';
|
|
786
|
+
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';
|
|
857
787
|
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';
|
|
858
|
-
export type PlatformNamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | '
|
|
788
|
+
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';
|
|
859
789
|
export interface CreateDbPresetInput {
|
|
860
790
|
clientMutationId?: string;
|
|
861
791
|
dbPreset: {
|
|
@@ -888,9 +818,73 @@ export interface DeleteDbPresetInput {
|
|
|
888
818
|
clientMutationId?: string;
|
|
889
819
|
id: string;
|
|
890
820
|
}
|
|
891
|
-
export interface
|
|
821
|
+
export interface CreateNamespaceInput {
|
|
892
822
|
clientMutationId?: string;
|
|
893
|
-
|
|
823
|
+
namespace: {
|
|
824
|
+
annotations?: Record<string, unknown>;
|
|
825
|
+
databaseId: string;
|
|
826
|
+
description?: string;
|
|
827
|
+
isActive?: boolean;
|
|
828
|
+
isManaged?: boolean;
|
|
829
|
+
labels?: Record<string, unknown>;
|
|
830
|
+
lastError?: string;
|
|
831
|
+
name: string;
|
|
832
|
+
namespaceName: string;
|
|
833
|
+
status?: string;
|
|
834
|
+
};
|
|
835
|
+
}
|
|
836
|
+
export interface NamespacePatch {
|
|
837
|
+
annotations?: Record<string, unknown> | null;
|
|
838
|
+
databaseId?: string | null;
|
|
839
|
+
description?: string | null;
|
|
840
|
+
isActive?: boolean | null;
|
|
841
|
+
isManaged?: boolean | null;
|
|
842
|
+
labels?: Record<string, unknown> | null;
|
|
843
|
+
lastError?: string | null;
|
|
844
|
+
name?: string | null;
|
|
845
|
+
namespaceName?: string | null;
|
|
846
|
+
status?: string | null;
|
|
847
|
+
}
|
|
848
|
+
export interface UpdateNamespaceInput {
|
|
849
|
+
clientMutationId?: string;
|
|
850
|
+
id: string;
|
|
851
|
+
namespacePatch: NamespacePatch;
|
|
852
|
+
}
|
|
853
|
+
export interface DeleteNamespaceInput {
|
|
854
|
+
clientMutationId?: string;
|
|
855
|
+
id: string;
|
|
856
|
+
}
|
|
857
|
+
export interface CreateNamespaceEventInput {
|
|
858
|
+
clientMutationId?: string;
|
|
859
|
+
namespaceEvent: {
|
|
860
|
+
actorId?: string;
|
|
861
|
+
databaseId: string;
|
|
862
|
+
eventType: string;
|
|
863
|
+
message?: string;
|
|
864
|
+
metadata?: Record<string, unknown>;
|
|
865
|
+
namespaceId: string;
|
|
866
|
+
};
|
|
867
|
+
}
|
|
868
|
+
export interface NamespaceEventPatch {
|
|
869
|
+
actorId?: string | null;
|
|
870
|
+
databaseId?: string | null;
|
|
871
|
+
eventType?: string | null;
|
|
872
|
+
message?: string | null;
|
|
873
|
+
metadata?: Record<string, unknown> | null;
|
|
874
|
+
namespaceId?: string | null;
|
|
875
|
+
}
|
|
876
|
+
export interface UpdateNamespaceEventInput {
|
|
877
|
+
clientMutationId?: string;
|
|
878
|
+
id: string;
|
|
879
|
+
namespaceEventPatch: NamespaceEventPatch;
|
|
880
|
+
}
|
|
881
|
+
export interface DeleteNamespaceEventInput {
|
|
882
|
+
clientMutationId?: string;
|
|
883
|
+
id: string;
|
|
884
|
+
}
|
|
885
|
+
export interface CreatePlatformInfraCommitInput {
|
|
886
|
+
clientMutationId?: string;
|
|
887
|
+
platformInfraCommit: {
|
|
894
888
|
authorId?: string;
|
|
895
889
|
committerId?: string;
|
|
896
890
|
date?: string;
|
|
@@ -901,7 +895,7 @@ export interface CreateInfraCommitInput {
|
|
|
901
895
|
treeId?: string;
|
|
902
896
|
};
|
|
903
897
|
}
|
|
904
|
-
export interface
|
|
898
|
+
export interface PlatformInfraCommitPatch {
|
|
905
899
|
authorId?: string | null;
|
|
906
900
|
committerId?: string | null;
|
|
907
901
|
date?: string | null;
|
|
@@ -911,180 +905,102 @@ export interface InfraCommitPatch {
|
|
|
911
905
|
storeId?: string | null;
|
|
912
906
|
treeId?: string | null;
|
|
913
907
|
}
|
|
914
|
-
export interface
|
|
908
|
+
export interface UpdatePlatformInfraCommitInput {
|
|
915
909
|
clientMutationId?: string;
|
|
916
910
|
id: string;
|
|
917
|
-
|
|
911
|
+
platformInfraCommitPatch: PlatformInfraCommitPatch;
|
|
918
912
|
}
|
|
919
|
-
export interface
|
|
913
|
+
export interface DeletePlatformInfraCommitInput {
|
|
920
914
|
clientMutationId?: string;
|
|
921
915
|
id: string;
|
|
922
916
|
}
|
|
923
|
-
export interface
|
|
917
|
+
export interface CreatePlatformInfraGetAllTreeNodesRecordInput {
|
|
924
918
|
clientMutationId?: string;
|
|
925
|
-
|
|
919
|
+
platformInfraGetAllTreeNodesRecord: {
|
|
926
920
|
data?: Record<string, unknown>;
|
|
927
921
|
path?: string[];
|
|
928
922
|
};
|
|
929
923
|
}
|
|
930
|
-
export interface
|
|
924
|
+
export interface PlatformInfraGetAllTreeNodesRecordPatch {
|
|
931
925
|
data?: Record<string, unknown> | null;
|
|
932
926
|
path?: string[] | null;
|
|
933
927
|
}
|
|
934
|
-
export interface
|
|
928
|
+
export interface UpdatePlatformInfraGetAllTreeNodesRecordInput {
|
|
935
929
|
clientMutationId?: string;
|
|
936
930
|
id: string;
|
|
937
|
-
|
|
931
|
+
platformInfraGetAllTreeNodesRecordPatch: PlatformInfraGetAllTreeNodesRecordPatch;
|
|
938
932
|
}
|
|
939
|
-
export interface
|
|
933
|
+
export interface DeletePlatformInfraGetAllTreeNodesRecordInput {
|
|
940
934
|
clientMutationId?: string;
|
|
941
935
|
id: string;
|
|
942
936
|
}
|
|
943
|
-
export interface
|
|
937
|
+
export interface CreatePlatformInfraObjectInput {
|
|
944
938
|
clientMutationId?: string;
|
|
945
|
-
|
|
939
|
+
platformInfraObject: {
|
|
946
940
|
data?: Record<string, unknown>;
|
|
947
941
|
kids?: string[];
|
|
948
942
|
ktree?: string[];
|
|
949
943
|
scopeId: string;
|
|
950
944
|
};
|
|
951
945
|
}
|
|
952
|
-
export interface
|
|
946
|
+
export interface PlatformInfraObjectPatch {
|
|
953
947
|
data?: Record<string, unknown> | null;
|
|
954
948
|
kids?: string[] | null;
|
|
955
949
|
ktree?: string[] | null;
|
|
956
950
|
scopeId?: string | null;
|
|
957
951
|
}
|
|
958
|
-
export interface
|
|
952
|
+
export interface UpdatePlatformInfraObjectInput {
|
|
959
953
|
clientMutationId?: string;
|
|
960
954
|
id: string;
|
|
961
|
-
|
|
955
|
+
platformInfraObjectPatch: PlatformInfraObjectPatch;
|
|
962
956
|
}
|
|
963
|
-
export interface
|
|
957
|
+
export interface DeletePlatformInfraObjectInput {
|
|
964
958
|
clientMutationId?: string;
|
|
965
959
|
id: string;
|
|
966
960
|
}
|
|
967
|
-
export interface
|
|
961
|
+
export interface CreatePlatformInfraRefInput {
|
|
968
962
|
clientMutationId?: string;
|
|
969
|
-
|
|
963
|
+
platformInfraRef: {
|
|
970
964
|
commitId?: string;
|
|
971
965
|
name: string;
|
|
972
966
|
scopeId: string;
|
|
973
967
|
storeId: string;
|
|
974
968
|
};
|
|
975
|
-
}
|
|
976
|
-
export interface
|
|
977
|
-
commitId?: string | null;
|
|
978
|
-
name?: string | null;
|
|
979
|
-
scopeId?: string | null;
|
|
980
|
-
storeId?: string | null;
|
|
981
|
-
}
|
|
982
|
-
export interface UpdateInfraRefInput {
|
|
983
|
-
clientMutationId?: string;
|
|
984
|
-
id: string;
|
|
985
|
-
infraRefPatch: InfraRefPatch;
|
|
986
|
-
}
|
|
987
|
-
export interface DeleteInfraRefInput {
|
|
988
|
-
clientMutationId?: string;
|
|
989
|
-
id: string;
|
|
990
|
-
}
|
|
991
|
-
export interface CreateInfraStoreInput {
|
|
992
|
-
clientMutationId?: string;
|
|
993
|
-
infraStore: {
|
|
994
|
-
hash?: string;
|
|
995
|
-
name: string;
|
|
996
|
-
scopeId: string;
|
|
997
|
-
};
|
|
998
|
-
}
|
|
999
|
-
export interface InfraStorePatch {
|
|
1000
|
-
hash?: string | null;
|
|
1001
|
-
name?: string | null;
|
|
1002
|
-
scopeId?: string | null;
|
|
1003
|
-
}
|
|
1004
|
-
export interface UpdateInfraStoreInput {
|
|
1005
|
-
clientMutationId?: string;
|
|
1006
|
-
id: string;
|
|
1007
|
-
infraStorePatch: InfraStorePatch;
|
|
1008
|
-
}
|
|
1009
|
-
export interface DeleteInfraStoreInput {
|
|
1010
|
-
clientMutationId?: string;
|
|
1011
|
-
id: string;
|
|
1012
|
-
}
|
|
1013
|
-
export interface CreateNamespaceInput {
|
|
1014
|
-
clientMutationId?: string;
|
|
1015
|
-
namespace: {
|
|
1016
|
-
annotations?: Record<string, unknown>;
|
|
1017
|
-
databaseId: string;
|
|
1018
|
-
description?: string;
|
|
1019
|
-
isActive?: boolean;
|
|
1020
|
-
isManaged?: boolean;
|
|
1021
|
-
labels?: Record<string, unknown>;
|
|
1022
|
-
lastError?: string;
|
|
1023
|
-
name: string;
|
|
1024
|
-
namespaceName: string;
|
|
1025
|
-
status?: string;
|
|
1026
|
-
};
|
|
1027
|
-
}
|
|
1028
|
-
export interface NamespacePatch {
|
|
1029
|
-
annotations?: Record<string, unknown> | null;
|
|
1030
|
-
databaseId?: string | null;
|
|
1031
|
-
description?: string | null;
|
|
1032
|
-
isActive?: boolean | null;
|
|
1033
|
-
isManaged?: boolean | null;
|
|
1034
|
-
labels?: Record<string, unknown> | null;
|
|
1035
|
-
lastError?: string | null;
|
|
969
|
+
}
|
|
970
|
+
export interface PlatformInfraRefPatch {
|
|
971
|
+
commitId?: string | null;
|
|
1036
972
|
name?: string | null;
|
|
1037
|
-
|
|
1038
|
-
|
|
973
|
+
scopeId?: string | null;
|
|
974
|
+
storeId?: string | null;
|
|
1039
975
|
}
|
|
1040
|
-
export interface
|
|
976
|
+
export interface UpdatePlatformInfraRefInput {
|
|
1041
977
|
clientMutationId?: string;
|
|
1042
978
|
id: string;
|
|
1043
|
-
|
|
979
|
+
platformInfraRefPatch: PlatformInfraRefPatch;
|
|
1044
980
|
}
|
|
1045
|
-
export interface
|
|
981
|
+
export interface DeletePlatformInfraRefInput {
|
|
1046
982
|
clientMutationId?: string;
|
|
1047
983
|
id: string;
|
|
1048
984
|
}
|
|
1049
|
-
export interface
|
|
985
|
+
export interface CreatePlatformInfraStoreInput {
|
|
1050
986
|
clientMutationId?: string;
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
eventType: string;
|
|
1056
|
-
memoryBytes?: string;
|
|
1057
|
-
message?: string;
|
|
1058
|
-
metadata?: Record<string, unknown>;
|
|
1059
|
-
metrics?: Record<string, unknown>;
|
|
1060
|
-
namespaceId: string;
|
|
1061
|
-
networkEgressBytes?: string;
|
|
1062
|
-
networkIngressBytes?: string;
|
|
1063
|
-
podCount?: number;
|
|
1064
|
-
storageBytes?: string;
|
|
987
|
+
platformInfraStore: {
|
|
988
|
+
hash?: string;
|
|
989
|
+
name: string;
|
|
990
|
+
scopeId: string;
|
|
1065
991
|
};
|
|
1066
992
|
}
|
|
1067
|
-
export interface
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
eventType?: string | null;
|
|
1072
|
-
memoryBytes?: string | null;
|
|
1073
|
-
message?: string | null;
|
|
1074
|
-
metadata?: Record<string, unknown> | null;
|
|
1075
|
-
metrics?: Record<string, unknown> | null;
|
|
1076
|
-
namespaceId?: string | null;
|
|
1077
|
-
networkEgressBytes?: string | null;
|
|
1078
|
-
networkIngressBytes?: string | null;
|
|
1079
|
-
podCount?: number | null;
|
|
1080
|
-
storageBytes?: string | null;
|
|
993
|
+
export interface PlatformInfraStorePatch {
|
|
994
|
+
hash?: string | null;
|
|
995
|
+
name?: string | null;
|
|
996
|
+
scopeId?: string | null;
|
|
1081
997
|
}
|
|
1082
|
-
export interface
|
|
998
|
+
export interface UpdatePlatformInfraStoreInput {
|
|
1083
999
|
clientMutationId?: string;
|
|
1084
1000
|
id: string;
|
|
1085
|
-
|
|
1001
|
+
platformInfraStorePatch: PlatformInfraStorePatch;
|
|
1086
1002
|
}
|
|
1087
|
-
export interface
|
|
1003
|
+
export interface DeletePlatformInfraStoreInput {
|
|
1088
1004
|
clientMutationId?: string;
|
|
1089
1005
|
id: string;
|
|
1090
1006
|
}
|
|
@@ -1126,32 +1042,18 @@ export interface CreatePlatformNamespaceEventInput {
|
|
|
1126
1042
|
clientMutationId?: string;
|
|
1127
1043
|
platformNamespaceEvent: {
|
|
1128
1044
|
actorId?: string;
|
|
1129
|
-
cpuMillicores?: number;
|
|
1130
1045
|
eventType: string;
|
|
1131
|
-
memoryBytes?: string;
|
|
1132
1046
|
message?: string;
|
|
1133
1047
|
metadata?: Record<string, unknown>;
|
|
1134
|
-
metrics?: Record<string, unknown>;
|
|
1135
1048
|
namespaceId: string;
|
|
1136
|
-
networkEgressBytes?: string;
|
|
1137
|
-
networkIngressBytes?: string;
|
|
1138
|
-
podCount?: number;
|
|
1139
|
-
storageBytes?: string;
|
|
1140
1049
|
};
|
|
1141
1050
|
}
|
|
1142
1051
|
export interface PlatformNamespaceEventPatch {
|
|
1143
1052
|
actorId?: string | null;
|
|
1144
|
-
cpuMillicores?: number | null;
|
|
1145
1053
|
eventType?: string | null;
|
|
1146
|
-
memoryBytes?: string | null;
|
|
1147
1054
|
message?: string | null;
|
|
1148
1055
|
metadata?: Record<string, unknown> | null;
|
|
1149
|
-
metrics?: Record<string, unknown> | null;
|
|
1150
1056
|
namespaceId?: string | null;
|
|
1151
|
-
networkEgressBytes?: string | null;
|
|
1152
|
-
networkIngressBytes?: string | null;
|
|
1153
|
-
podCount?: number | null;
|
|
1154
|
-
storageBytes?: string | null;
|
|
1155
1057
|
}
|
|
1156
1058
|
export interface UpdatePlatformNamespaceEventInput {
|
|
1157
1059
|
clientMutationId?: string;
|
|
@@ -1163,12 +1065,12 @@ export interface DeletePlatformNamespaceEventInput {
|
|
|
1163
1065
|
id: string;
|
|
1164
1066
|
}
|
|
1165
1067
|
export declare const connectionFieldsMap: Record<string, Record<string, string>>;
|
|
1166
|
-
export interface
|
|
1068
|
+
export interface PlatformInfraInitEmptyRepoInput {
|
|
1167
1069
|
clientMutationId?: string;
|
|
1168
1070
|
sId?: string;
|
|
1169
1071
|
storeId?: string;
|
|
1170
1072
|
}
|
|
1171
|
-
export interface
|
|
1073
|
+
export interface PlatformInfraInsertNodeAtPathInput {
|
|
1172
1074
|
clientMutationId?: string;
|
|
1173
1075
|
data?: Record<string, unknown>;
|
|
1174
1076
|
kids?: string[];
|
|
@@ -1177,7 +1079,7 @@ export interface InfraInsertNodeAtPathInput {
|
|
|
1177
1079
|
root?: string;
|
|
1178
1080
|
sId?: string;
|
|
1179
1081
|
}
|
|
1180
|
-
export interface
|
|
1082
|
+
export interface PlatformInfraSetDataAtPathInput {
|
|
1181
1083
|
clientMutationId?: string;
|
|
1182
1084
|
data?: Record<string, unknown>;
|
|
1183
1085
|
path?: string[];
|
|
@@ -1218,8 +1120,53 @@ export interface DbPresetInput {
|
|
|
1218
1120
|
/** Timestamp of last modification */
|
|
1219
1121
|
updatedAt?: string;
|
|
1220
1122
|
}
|
|
1221
|
-
/** An input for mutations affecting `
|
|
1222
|
-
export interface
|
|
1123
|
+
/** An input for mutations affecting `Namespace` */
|
|
1124
|
+
export interface NamespaceInput {
|
|
1125
|
+
/** Freeform metadata for tooling and operational notes */
|
|
1126
|
+
annotations?: Record<string, unknown>;
|
|
1127
|
+
createdAt?: string;
|
|
1128
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
1129
|
+
databaseId: string;
|
|
1130
|
+
/** Optional human-readable description of this namespace */
|
|
1131
|
+
description?: string;
|
|
1132
|
+
id?: string;
|
|
1133
|
+
/** Whether this namespace is active (soft-disable for filtering) */
|
|
1134
|
+
isActive?: boolean;
|
|
1135
|
+
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
1136
|
+
isManaged?: boolean;
|
|
1137
|
+
/** Key/value pairs for selecting and filtering namespaces */
|
|
1138
|
+
labels?: Record<string, unknown>;
|
|
1139
|
+
/** Most recent provisioning or reconcile error message */
|
|
1140
|
+
lastError?: string;
|
|
1141
|
+
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
1142
|
+
name: string;
|
|
1143
|
+
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
1144
|
+
namespaceName: string;
|
|
1145
|
+
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
1146
|
+
status?: string;
|
|
1147
|
+
updatedAt?: string;
|
|
1148
|
+
}
|
|
1149
|
+
/** An input for mutations affecting `NamespaceEvent` */
|
|
1150
|
+
export interface NamespaceEventInput {
|
|
1151
|
+
/** User who triggered this event (NULL for system/automated) */
|
|
1152
|
+
actorId?: string;
|
|
1153
|
+
/** Event timestamp (partition key) */
|
|
1154
|
+
createdAt?: string;
|
|
1155
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
1156
|
+
databaseId: string;
|
|
1157
|
+
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
1158
|
+
eventType: string;
|
|
1159
|
+
/** Unique event identifier */
|
|
1160
|
+
id?: string;
|
|
1161
|
+
/** Human-readable description of the event */
|
|
1162
|
+
message?: string;
|
|
1163
|
+
/** Structured context (old/new values, labels diff, etc.) */
|
|
1164
|
+
metadata?: Record<string, unknown>;
|
|
1165
|
+
/** Namespace this event belongs to */
|
|
1166
|
+
namespaceId: string;
|
|
1167
|
+
}
|
|
1168
|
+
/** An input for mutations affecting `PlatformInfraCommit` */
|
|
1169
|
+
export interface PlatformInfraCommitInput {
|
|
1223
1170
|
/** User who authored the changes */
|
|
1224
1171
|
authorId?: string;
|
|
1225
1172
|
/** User who committed (may differ from author) */
|
|
@@ -1239,8 +1186,8 @@ export interface InfraCommitInput {
|
|
|
1239
1186
|
/** Root object ID of the tree snapshot at this commit */
|
|
1240
1187
|
treeId?: string;
|
|
1241
1188
|
}
|
|
1242
|
-
/** An input for mutations affecting `
|
|
1243
|
-
export interface
|
|
1189
|
+
/** An input for mutations affecting `PlatformInfraObject` */
|
|
1190
|
+
export interface PlatformInfraObjectInput {
|
|
1244
1191
|
/** Timestamp of object creation */
|
|
1245
1192
|
createdAt?: string;
|
|
1246
1193
|
/** Payload data for this object node */
|
|
@@ -1254,8 +1201,8 @@ export interface InfraObjectInput {
|
|
|
1254
1201
|
/** Opaque store partition key for the global tier */
|
|
1255
1202
|
scopeId: string;
|
|
1256
1203
|
}
|
|
1257
|
-
/** An input for mutations affecting `
|
|
1258
|
-
export interface
|
|
1204
|
+
/** An input for mutations affecting `PlatformInfraRef` */
|
|
1205
|
+
export interface PlatformInfraRefInput {
|
|
1259
1206
|
/** Commit this ref points to */
|
|
1260
1207
|
commitId?: string;
|
|
1261
1208
|
/** Unique ref identifier */
|
|
@@ -1267,8 +1214,8 @@ export interface InfraRefInput {
|
|
|
1267
1214
|
/** Store this ref belongs to */
|
|
1268
1215
|
storeId: string;
|
|
1269
1216
|
}
|
|
1270
|
-
/** An input for mutations affecting `
|
|
1271
|
-
export interface
|
|
1217
|
+
/** An input for mutations affecting `PlatformInfraStore` */
|
|
1218
|
+
export interface PlatformInfraStoreInput {
|
|
1272
1219
|
/** Timestamp of store creation */
|
|
1273
1220
|
createdAt?: string;
|
|
1274
1221
|
/** Current root object hash of this store */
|
|
@@ -1280,65 +1227,6 @@ export interface InfraStoreInput {
|
|
|
1280
1227
|
/** Opaque store partition key for the global tier */
|
|
1281
1228
|
scopeId: string;
|
|
1282
1229
|
}
|
|
1283
|
-
/** An input for mutations affecting `Namespace` */
|
|
1284
|
-
export interface NamespaceInput {
|
|
1285
|
-
/** Freeform metadata for tooling and operational notes */
|
|
1286
|
-
annotations?: Record<string, unknown>;
|
|
1287
|
-
createdAt?: string;
|
|
1288
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
1289
|
-
databaseId: string;
|
|
1290
|
-
/** Optional human-readable description of this namespace */
|
|
1291
|
-
description?: string;
|
|
1292
|
-
id?: string;
|
|
1293
|
-
/** Whether this namespace is active (soft-disable for filtering) */
|
|
1294
|
-
isActive?: boolean;
|
|
1295
|
-
/** true = provisioned by the platform via jobs, false = unmanaged/platform-native (bootstrapped externally) */
|
|
1296
|
-
isManaged?: boolean;
|
|
1297
|
-
/** Key/value pairs for selecting and filtering namespaces */
|
|
1298
|
-
labels?: Record<string, unknown>;
|
|
1299
|
-
/** Most recent provisioning or reconcile error message */
|
|
1300
|
-
lastError?: string;
|
|
1301
|
-
/** Human-readable namespace name (e.g. default, production, oauth) */
|
|
1302
|
-
name: string;
|
|
1303
|
-
/** Globally unique computed namespace identifier via inflection.underscore */
|
|
1304
|
-
namespaceName: string;
|
|
1305
|
-
/** Namespace provisioning lifecycle status: pending, provisioning, active, failed */
|
|
1306
|
-
status?: string;
|
|
1307
|
-
updatedAt?: string;
|
|
1308
|
-
}
|
|
1309
|
-
/** An input for mutations affecting `NamespaceEvent` */
|
|
1310
|
-
export interface NamespaceEventInput {
|
|
1311
|
-
/** User who triggered this event (NULL for system/automated) */
|
|
1312
|
-
actorId?: string;
|
|
1313
|
-
/** CPU usage in millicores at time of event */
|
|
1314
|
-
cpuMillicores?: number;
|
|
1315
|
-
/** Event timestamp (partition key) */
|
|
1316
|
-
createdAt?: string;
|
|
1317
|
-
/** Database that owns this resource (database-scoped isolation) */
|
|
1318
|
-
databaseId: string;
|
|
1319
|
-
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
1320
|
-
eventType: string;
|
|
1321
|
-
/** Unique event identifier */
|
|
1322
|
-
id?: string;
|
|
1323
|
-
/** Memory usage in bytes at time of event */
|
|
1324
|
-
memoryBytes?: string;
|
|
1325
|
-
/** Human-readable description of the event */
|
|
1326
|
-
message?: string;
|
|
1327
|
-
/** Structured context (old/new values, labels diff, etc.) */
|
|
1328
|
-
metadata?: Record<string, unknown>;
|
|
1329
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
1330
|
-
metrics?: Record<string, unknown>;
|
|
1331
|
-
/** Namespace this event belongs to */
|
|
1332
|
-
namespaceId: string;
|
|
1333
|
-
/** Network egress in bytes during event window */
|
|
1334
|
-
networkEgressBytes?: string;
|
|
1335
|
-
/** Network ingress in bytes during event window */
|
|
1336
|
-
networkIngressBytes?: string;
|
|
1337
|
-
/** Number of active pods in the namespace at time of event */
|
|
1338
|
-
podCount?: number;
|
|
1339
|
-
/** Storage usage in bytes at time of event */
|
|
1340
|
-
storageBytes?: string;
|
|
1341
|
-
}
|
|
1342
1230
|
/** An input for mutations affecting `PlatformNamespace` */
|
|
1343
1231
|
export interface PlatformNamespaceInput {
|
|
1344
1232
|
/** Freeform metadata for tooling and operational notes */
|
|
@@ -1367,52 +1255,38 @@ export interface PlatformNamespaceInput {
|
|
|
1367
1255
|
export interface PlatformNamespaceEventInput {
|
|
1368
1256
|
/** User who triggered this event (NULL for system/automated) */
|
|
1369
1257
|
actorId?: string;
|
|
1370
|
-
/** CPU usage in millicores at time of event */
|
|
1371
|
-
cpuMillicores?: number;
|
|
1372
1258
|
/** Event timestamp (partition key) */
|
|
1373
1259
|
createdAt?: string;
|
|
1374
1260
|
/** Event type: created, activated, deactivated, labels_updated, annotations_updated, renamed */
|
|
1375
1261
|
eventType: string;
|
|
1376
1262
|
/** Unique event identifier */
|
|
1377
1263
|
id?: string;
|
|
1378
|
-
/** Memory usage in bytes at time of event */
|
|
1379
|
-
memoryBytes?: string;
|
|
1380
1264
|
/** Human-readable description of the event */
|
|
1381
1265
|
message?: string;
|
|
1382
1266
|
/** Structured context (old/new values, labels diff, etc.) */
|
|
1383
1267
|
metadata?: Record<string, unknown>;
|
|
1384
|
-
/** Additional resource metrics (gpu, replicas, quotas, etc.) */
|
|
1385
|
-
metrics?: Record<string, unknown>;
|
|
1386
1268
|
/** Namespace this event belongs to */
|
|
1387
1269
|
namespaceId: string;
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
/** Network ingress in bytes during event window */
|
|
1391
|
-
networkIngressBytes?: string;
|
|
1392
|
-
/** Number of active pods in the namespace at time of event */
|
|
1393
|
-
podCount?: number;
|
|
1394
|
-
/** Storage usage in bytes at time of event */
|
|
1395
|
-
storageBytes?: string;
|
|
1396
|
-
}
|
|
1397
|
-
export interface InfraInitEmptyRepoPayload {
|
|
1270
|
+
}
|
|
1271
|
+
export interface PlatformInfraInitEmptyRepoPayload {
|
|
1398
1272
|
clientMutationId?: string | null;
|
|
1399
1273
|
}
|
|
1400
|
-
export type
|
|
1274
|
+
export type PlatformInfraInitEmptyRepoPayloadSelect = {
|
|
1401
1275
|
clientMutationId?: boolean;
|
|
1402
1276
|
};
|
|
1403
|
-
export interface
|
|
1277
|
+
export interface PlatformInfraInsertNodeAtPathPayload {
|
|
1404
1278
|
clientMutationId?: string | null;
|
|
1405
1279
|
result?: string | null;
|
|
1406
1280
|
}
|
|
1407
|
-
export type
|
|
1281
|
+
export type PlatformInfraInsertNodeAtPathPayloadSelect = {
|
|
1408
1282
|
clientMutationId?: boolean;
|
|
1409
1283
|
result?: boolean;
|
|
1410
1284
|
};
|
|
1411
|
-
export interface
|
|
1285
|
+
export interface PlatformInfraSetDataAtPathPayload {
|
|
1412
1286
|
clientMutationId?: string | null;
|
|
1413
1287
|
result?: string | null;
|
|
1414
1288
|
}
|
|
1415
|
-
export type
|
|
1289
|
+
export type PlatformInfraSetDataAtPathPayloadSelect = {
|
|
1416
1290
|
clientMutationId?: boolean;
|
|
1417
1291
|
result?: boolean;
|
|
1418
1292
|
};
|
|
@@ -1483,274 +1357,274 @@ export type DeleteDbPresetPayloadSelect = {
|
|
|
1483
1357
|
select: DbPresetEdgeSelect;
|
|
1484
1358
|
};
|
|
1485
1359
|
};
|
|
1486
|
-
export interface
|
|
1360
|
+
export interface CreateNamespacePayload {
|
|
1487
1361
|
clientMutationId?: string | null;
|
|
1488
|
-
/** The `
|
|
1489
|
-
|
|
1490
|
-
|
|
1362
|
+
/** The `Namespace` that was created by this mutation. */
|
|
1363
|
+
namespace?: Namespace | null;
|
|
1364
|
+
namespaceEdge?: NamespaceEdge | null;
|
|
1491
1365
|
}
|
|
1492
|
-
export type
|
|
1366
|
+
export type CreateNamespacePayloadSelect = {
|
|
1493
1367
|
clientMutationId?: boolean;
|
|
1494
|
-
|
|
1495
|
-
select:
|
|
1368
|
+
namespace?: {
|
|
1369
|
+
select: NamespaceSelect;
|
|
1496
1370
|
};
|
|
1497
|
-
|
|
1498
|
-
select:
|
|
1371
|
+
namespaceEdge?: {
|
|
1372
|
+
select: NamespaceEdgeSelect;
|
|
1499
1373
|
};
|
|
1500
1374
|
};
|
|
1501
|
-
export interface
|
|
1375
|
+
export interface UpdateNamespacePayload {
|
|
1502
1376
|
clientMutationId?: string | null;
|
|
1503
|
-
/** The `
|
|
1504
|
-
|
|
1505
|
-
|
|
1377
|
+
/** The `Namespace` that was updated by this mutation. */
|
|
1378
|
+
namespace?: Namespace | null;
|
|
1379
|
+
namespaceEdge?: NamespaceEdge | null;
|
|
1506
1380
|
}
|
|
1507
|
-
export type
|
|
1381
|
+
export type UpdateNamespacePayloadSelect = {
|
|
1508
1382
|
clientMutationId?: boolean;
|
|
1509
|
-
|
|
1510
|
-
select:
|
|
1383
|
+
namespace?: {
|
|
1384
|
+
select: NamespaceSelect;
|
|
1511
1385
|
};
|
|
1512
|
-
|
|
1513
|
-
select:
|
|
1386
|
+
namespaceEdge?: {
|
|
1387
|
+
select: NamespaceEdgeSelect;
|
|
1514
1388
|
};
|
|
1515
1389
|
};
|
|
1516
|
-
export interface
|
|
1390
|
+
export interface DeleteNamespacePayload {
|
|
1517
1391
|
clientMutationId?: string | null;
|
|
1518
|
-
/** The `
|
|
1519
|
-
|
|
1520
|
-
|
|
1392
|
+
/** The `Namespace` that was deleted by this mutation. */
|
|
1393
|
+
namespace?: Namespace | null;
|
|
1394
|
+
namespaceEdge?: NamespaceEdge | null;
|
|
1521
1395
|
}
|
|
1522
|
-
export type
|
|
1396
|
+
export type DeleteNamespacePayloadSelect = {
|
|
1523
1397
|
clientMutationId?: boolean;
|
|
1524
|
-
|
|
1525
|
-
select:
|
|
1398
|
+
namespace?: {
|
|
1399
|
+
select: NamespaceSelect;
|
|
1526
1400
|
};
|
|
1527
|
-
|
|
1528
|
-
select:
|
|
1401
|
+
namespaceEdge?: {
|
|
1402
|
+
select: NamespaceEdgeSelect;
|
|
1529
1403
|
};
|
|
1530
1404
|
};
|
|
1531
|
-
export interface
|
|
1405
|
+
export interface CreateNamespaceEventPayload {
|
|
1532
1406
|
clientMutationId?: string | null;
|
|
1533
|
-
/** The `
|
|
1534
|
-
|
|
1535
|
-
|
|
1407
|
+
/** The `NamespaceEvent` that was created by this mutation. */
|
|
1408
|
+
namespaceEvent?: NamespaceEvent | null;
|
|
1409
|
+
namespaceEventEdge?: NamespaceEventEdge | null;
|
|
1536
1410
|
}
|
|
1537
|
-
export type
|
|
1411
|
+
export type CreateNamespaceEventPayloadSelect = {
|
|
1538
1412
|
clientMutationId?: boolean;
|
|
1539
|
-
|
|
1540
|
-
select:
|
|
1413
|
+
namespaceEvent?: {
|
|
1414
|
+
select: NamespaceEventSelect;
|
|
1541
1415
|
};
|
|
1542
|
-
|
|
1543
|
-
select:
|
|
1416
|
+
namespaceEventEdge?: {
|
|
1417
|
+
select: NamespaceEventEdgeSelect;
|
|
1544
1418
|
};
|
|
1545
1419
|
};
|
|
1546
|
-
export interface
|
|
1420
|
+
export interface UpdateNamespaceEventPayload {
|
|
1547
1421
|
clientMutationId?: string | null;
|
|
1548
|
-
/** The `
|
|
1549
|
-
|
|
1550
|
-
|
|
1422
|
+
/** The `NamespaceEvent` that was updated by this mutation. */
|
|
1423
|
+
namespaceEvent?: NamespaceEvent | null;
|
|
1424
|
+
namespaceEventEdge?: NamespaceEventEdge | null;
|
|
1551
1425
|
}
|
|
1552
|
-
export type
|
|
1426
|
+
export type UpdateNamespaceEventPayloadSelect = {
|
|
1553
1427
|
clientMutationId?: boolean;
|
|
1554
|
-
|
|
1555
|
-
select:
|
|
1428
|
+
namespaceEvent?: {
|
|
1429
|
+
select: NamespaceEventSelect;
|
|
1556
1430
|
};
|
|
1557
|
-
|
|
1558
|
-
select:
|
|
1431
|
+
namespaceEventEdge?: {
|
|
1432
|
+
select: NamespaceEventEdgeSelect;
|
|
1559
1433
|
};
|
|
1560
1434
|
};
|
|
1561
|
-
export interface
|
|
1435
|
+
export interface DeleteNamespaceEventPayload {
|
|
1562
1436
|
clientMutationId?: string | null;
|
|
1563
|
-
/** The `
|
|
1564
|
-
|
|
1565
|
-
|
|
1437
|
+
/** The `NamespaceEvent` that was deleted by this mutation. */
|
|
1438
|
+
namespaceEvent?: NamespaceEvent | null;
|
|
1439
|
+
namespaceEventEdge?: NamespaceEventEdge | null;
|
|
1566
1440
|
}
|
|
1567
|
-
export type
|
|
1441
|
+
export type DeleteNamespaceEventPayloadSelect = {
|
|
1568
1442
|
clientMutationId?: boolean;
|
|
1569
|
-
|
|
1570
|
-
select:
|
|
1443
|
+
namespaceEvent?: {
|
|
1444
|
+
select: NamespaceEventSelect;
|
|
1571
1445
|
};
|
|
1572
|
-
|
|
1573
|
-
select:
|
|
1446
|
+
namespaceEventEdge?: {
|
|
1447
|
+
select: NamespaceEventEdgeSelect;
|
|
1574
1448
|
};
|
|
1575
1449
|
};
|
|
1576
|
-
export interface
|
|
1450
|
+
export interface CreatePlatformInfraCommitPayload {
|
|
1577
1451
|
clientMutationId?: string | null;
|
|
1578
|
-
/** The `
|
|
1579
|
-
|
|
1580
|
-
|
|
1452
|
+
/** The `PlatformInfraCommit` that was created by this mutation. */
|
|
1453
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
1454
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
1581
1455
|
}
|
|
1582
|
-
export type
|
|
1456
|
+
export type CreatePlatformInfraCommitPayloadSelect = {
|
|
1583
1457
|
clientMutationId?: boolean;
|
|
1584
|
-
|
|
1585
|
-
select:
|
|
1458
|
+
platformInfraCommit?: {
|
|
1459
|
+
select: PlatformInfraCommitSelect;
|
|
1586
1460
|
};
|
|
1587
|
-
|
|
1588
|
-
select:
|
|
1461
|
+
platformInfraCommitEdge?: {
|
|
1462
|
+
select: PlatformInfraCommitEdgeSelect;
|
|
1589
1463
|
};
|
|
1590
1464
|
};
|
|
1591
|
-
export interface
|
|
1465
|
+
export interface UpdatePlatformInfraCommitPayload {
|
|
1592
1466
|
clientMutationId?: string | null;
|
|
1593
|
-
/** The `
|
|
1594
|
-
|
|
1595
|
-
|
|
1467
|
+
/** The `PlatformInfraCommit` that was updated by this mutation. */
|
|
1468
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
1469
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
1596
1470
|
}
|
|
1597
|
-
export type
|
|
1471
|
+
export type UpdatePlatformInfraCommitPayloadSelect = {
|
|
1598
1472
|
clientMutationId?: boolean;
|
|
1599
|
-
|
|
1600
|
-
select:
|
|
1473
|
+
platformInfraCommit?: {
|
|
1474
|
+
select: PlatformInfraCommitSelect;
|
|
1601
1475
|
};
|
|
1602
|
-
|
|
1603
|
-
select:
|
|
1476
|
+
platformInfraCommitEdge?: {
|
|
1477
|
+
select: PlatformInfraCommitEdgeSelect;
|
|
1604
1478
|
};
|
|
1605
1479
|
};
|
|
1606
|
-
export interface
|
|
1480
|
+
export interface DeletePlatformInfraCommitPayload {
|
|
1607
1481
|
clientMutationId?: string | null;
|
|
1608
|
-
/** The `
|
|
1609
|
-
|
|
1610
|
-
|
|
1482
|
+
/** The `PlatformInfraCommit` that was deleted by this mutation. */
|
|
1483
|
+
platformInfraCommit?: PlatformInfraCommit | null;
|
|
1484
|
+
platformInfraCommitEdge?: PlatformInfraCommitEdge | null;
|
|
1611
1485
|
}
|
|
1612
|
-
export type
|
|
1486
|
+
export type DeletePlatformInfraCommitPayloadSelect = {
|
|
1613
1487
|
clientMutationId?: boolean;
|
|
1614
|
-
|
|
1615
|
-
select:
|
|
1488
|
+
platformInfraCommit?: {
|
|
1489
|
+
select: PlatformInfraCommitSelect;
|
|
1616
1490
|
};
|
|
1617
|
-
|
|
1618
|
-
select:
|
|
1491
|
+
platformInfraCommitEdge?: {
|
|
1492
|
+
select: PlatformInfraCommitEdgeSelect;
|
|
1619
1493
|
};
|
|
1620
1494
|
};
|
|
1621
|
-
export interface
|
|
1495
|
+
export interface CreatePlatformInfraObjectPayload {
|
|
1622
1496
|
clientMutationId?: string | null;
|
|
1623
|
-
/** The `
|
|
1624
|
-
|
|
1625
|
-
|
|
1497
|
+
/** The `PlatformInfraObject` that was created by this mutation. */
|
|
1498
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
1499
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
1626
1500
|
}
|
|
1627
|
-
export type
|
|
1501
|
+
export type CreatePlatformInfraObjectPayloadSelect = {
|
|
1628
1502
|
clientMutationId?: boolean;
|
|
1629
|
-
|
|
1630
|
-
select:
|
|
1503
|
+
platformInfraObject?: {
|
|
1504
|
+
select: PlatformInfraObjectSelect;
|
|
1631
1505
|
};
|
|
1632
|
-
|
|
1633
|
-
select:
|
|
1506
|
+
platformInfraObjectEdge?: {
|
|
1507
|
+
select: PlatformInfraObjectEdgeSelect;
|
|
1634
1508
|
};
|
|
1635
1509
|
};
|
|
1636
|
-
export interface
|
|
1510
|
+
export interface UpdatePlatformInfraObjectPayload {
|
|
1637
1511
|
clientMutationId?: string | null;
|
|
1638
|
-
/** The `
|
|
1639
|
-
|
|
1640
|
-
|
|
1512
|
+
/** The `PlatformInfraObject` that was updated by this mutation. */
|
|
1513
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
1514
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
1641
1515
|
}
|
|
1642
|
-
export type
|
|
1516
|
+
export type UpdatePlatformInfraObjectPayloadSelect = {
|
|
1643
1517
|
clientMutationId?: boolean;
|
|
1644
|
-
|
|
1645
|
-
select:
|
|
1518
|
+
platformInfraObject?: {
|
|
1519
|
+
select: PlatformInfraObjectSelect;
|
|
1646
1520
|
};
|
|
1647
|
-
|
|
1648
|
-
select:
|
|
1521
|
+
platformInfraObjectEdge?: {
|
|
1522
|
+
select: PlatformInfraObjectEdgeSelect;
|
|
1649
1523
|
};
|
|
1650
1524
|
};
|
|
1651
|
-
export interface
|
|
1525
|
+
export interface DeletePlatformInfraObjectPayload {
|
|
1652
1526
|
clientMutationId?: string | null;
|
|
1653
|
-
/** The `
|
|
1654
|
-
|
|
1655
|
-
|
|
1527
|
+
/** The `PlatformInfraObject` that was deleted by this mutation. */
|
|
1528
|
+
platformInfraObject?: PlatformInfraObject | null;
|
|
1529
|
+
platformInfraObjectEdge?: PlatformInfraObjectEdge | null;
|
|
1656
1530
|
}
|
|
1657
|
-
export type
|
|
1531
|
+
export type DeletePlatformInfraObjectPayloadSelect = {
|
|
1658
1532
|
clientMutationId?: boolean;
|
|
1659
|
-
|
|
1660
|
-
select:
|
|
1533
|
+
platformInfraObject?: {
|
|
1534
|
+
select: PlatformInfraObjectSelect;
|
|
1661
1535
|
};
|
|
1662
|
-
|
|
1663
|
-
select:
|
|
1536
|
+
platformInfraObjectEdge?: {
|
|
1537
|
+
select: PlatformInfraObjectEdgeSelect;
|
|
1664
1538
|
};
|
|
1665
1539
|
};
|
|
1666
|
-
export interface
|
|
1540
|
+
export interface CreatePlatformInfraRefPayload {
|
|
1667
1541
|
clientMutationId?: string | null;
|
|
1668
|
-
/** The `
|
|
1669
|
-
|
|
1670
|
-
|
|
1542
|
+
/** The `PlatformInfraRef` that was created by this mutation. */
|
|
1543
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
1544
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
1671
1545
|
}
|
|
1672
|
-
export type
|
|
1546
|
+
export type CreatePlatformInfraRefPayloadSelect = {
|
|
1673
1547
|
clientMutationId?: boolean;
|
|
1674
|
-
|
|
1675
|
-
select:
|
|
1548
|
+
platformInfraRef?: {
|
|
1549
|
+
select: PlatformInfraRefSelect;
|
|
1676
1550
|
};
|
|
1677
|
-
|
|
1678
|
-
select:
|
|
1551
|
+
platformInfraRefEdge?: {
|
|
1552
|
+
select: PlatformInfraRefEdgeSelect;
|
|
1679
1553
|
};
|
|
1680
1554
|
};
|
|
1681
|
-
export interface
|
|
1555
|
+
export interface UpdatePlatformInfraRefPayload {
|
|
1682
1556
|
clientMutationId?: string | null;
|
|
1683
|
-
/** The `
|
|
1684
|
-
|
|
1685
|
-
|
|
1557
|
+
/** The `PlatformInfraRef` that was updated by this mutation. */
|
|
1558
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
1559
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
1686
1560
|
}
|
|
1687
|
-
export type
|
|
1561
|
+
export type UpdatePlatformInfraRefPayloadSelect = {
|
|
1688
1562
|
clientMutationId?: boolean;
|
|
1689
|
-
|
|
1690
|
-
select:
|
|
1563
|
+
platformInfraRef?: {
|
|
1564
|
+
select: PlatformInfraRefSelect;
|
|
1691
1565
|
};
|
|
1692
|
-
|
|
1693
|
-
select:
|
|
1566
|
+
platformInfraRefEdge?: {
|
|
1567
|
+
select: PlatformInfraRefEdgeSelect;
|
|
1694
1568
|
};
|
|
1695
1569
|
};
|
|
1696
|
-
export interface
|
|
1570
|
+
export interface DeletePlatformInfraRefPayload {
|
|
1697
1571
|
clientMutationId?: string | null;
|
|
1698
|
-
/** The `
|
|
1699
|
-
|
|
1700
|
-
|
|
1572
|
+
/** The `PlatformInfraRef` that was deleted by this mutation. */
|
|
1573
|
+
platformInfraRef?: PlatformInfraRef | null;
|
|
1574
|
+
platformInfraRefEdge?: PlatformInfraRefEdge | null;
|
|
1701
1575
|
}
|
|
1702
|
-
export type
|
|
1576
|
+
export type DeletePlatformInfraRefPayloadSelect = {
|
|
1703
1577
|
clientMutationId?: boolean;
|
|
1704
|
-
|
|
1705
|
-
select:
|
|
1578
|
+
platformInfraRef?: {
|
|
1579
|
+
select: PlatformInfraRefSelect;
|
|
1706
1580
|
};
|
|
1707
|
-
|
|
1708
|
-
select:
|
|
1581
|
+
platformInfraRefEdge?: {
|
|
1582
|
+
select: PlatformInfraRefEdgeSelect;
|
|
1709
1583
|
};
|
|
1710
1584
|
};
|
|
1711
|
-
export interface
|
|
1585
|
+
export interface CreatePlatformInfraStorePayload {
|
|
1712
1586
|
clientMutationId?: string | null;
|
|
1713
|
-
/** The `
|
|
1714
|
-
|
|
1715
|
-
|
|
1587
|
+
/** The `PlatformInfraStore` that was created by this mutation. */
|
|
1588
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
1589
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
1716
1590
|
}
|
|
1717
|
-
export type
|
|
1591
|
+
export type CreatePlatformInfraStorePayloadSelect = {
|
|
1718
1592
|
clientMutationId?: boolean;
|
|
1719
|
-
|
|
1720
|
-
select:
|
|
1593
|
+
platformInfraStore?: {
|
|
1594
|
+
select: PlatformInfraStoreSelect;
|
|
1721
1595
|
};
|
|
1722
|
-
|
|
1723
|
-
select:
|
|
1596
|
+
platformInfraStoreEdge?: {
|
|
1597
|
+
select: PlatformInfraStoreEdgeSelect;
|
|
1724
1598
|
};
|
|
1725
1599
|
};
|
|
1726
|
-
export interface
|
|
1600
|
+
export interface UpdatePlatformInfraStorePayload {
|
|
1727
1601
|
clientMutationId?: string | null;
|
|
1728
|
-
/** The `
|
|
1729
|
-
|
|
1730
|
-
|
|
1602
|
+
/** The `PlatformInfraStore` that was updated by this mutation. */
|
|
1603
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
1604
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
1731
1605
|
}
|
|
1732
|
-
export type
|
|
1606
|
+
export type UpdatePlatformInfraStorePayloadSelect = {
|
|
1733
1607
|
clientMutationId?: boolean;
|
|
1734
|
-
|
|
1735
|
-
select:
|
|
1608
|
+
platformInfraStore?: {
|
|
1609
|
+
select: PlatformInfraStoreSelect;
|
|
1736
1610
|
};
|
|
1737
|
-
|
|
1738
|
-
select:
|
|
1611
|
+
platformInfraStoreEdge?: {
|
|
1612
|
+
select: PlatformInfraStoreEdgeSelect;
|
|
1739
1613
|
};
|
|
1740
1614
|
};
|
|
1741
|
-
export interface
|
|
1615
|
+
export interface DeletePlatformInfraStorePayload {
|
|
1742
1616
|
clientMutationId?: string | null;
|
|
1743
|
-
/** The `
|
|
1744
|
-
|
|
1745
|
-
|
|
1617
|
+
/** The `PlatformInfraStore` that was deleted by this mutation. */
|
|
1618
|
+
platformInfraStore?: PlatformInfraStore | null;
|
|
1619
|
+
platformInfraStoreEdge?: PlatformInfraStoreEdge | null;
|
|
1746
1620
|
}
|
|
1747
|
-
export type
|
|
1621
|
+
export type DeletePlatformInfraStorePayloadSelect = {
|
|
1748
1622
|
clientMutationId?: boolean;
|
|
1749
|
-
|
|
1750
|
-
select:
|
|
1623
|
+
platformInfraStore?: {
|
|
1624
|
+
select: PlatformInfraStoreSelect;
|
|
1751
1625
|
};
|
|
1752
|
-
|
|
1753
|
-
select:
|
|
1626
|
+
platformInfraStoreEdge?: {
|
|
1627
|
+
select: PlatformInfraStoreEdgeSelect;
|
|
1754
1628
|
};
|
|
1755
1629
|
};
|
|
1756
1630
|
export interface CreatePlatformNamespacePayload {
|
|
@@ -1855,76 +1729,76 @@ export type DbPresetEdgeSelect = {
|
|
|
1855
1729
|
select: DbPresetSelect;
|
|
1856
1730
|
};
|
|
1857
1731
|
};
|
|
1858
|
-
/** A `
|
|
1859
|
-
export interface
|
|
1732
|
+
/** A `Namespace` edge in the connection. */
|
|
1733
|
+
export interface NamespaceEdge {
|
|
1860
1734
|
cursor?: string | null;
|
|
1861
|
-
/** The `
|
|
1862
|
-
node?:
|
|
1735
|
+
/** The `Namespace` at the end of the edge. */
|
|
1736
|
+
node?: Namespace | null;
|
|
1863
1737
|
}
|
|
1864
|
-
export type
|
|
1738
|
+
export type NamespaceEdgeSelect = {
|
|
1865
1739
|
cursor?: boolean;
|
|
1866
1740
|
node?: {
|
|
1867
|
-
select:
|
|
1741
|
+
select: NamespaceSelect;
|
|
1868
1742
|
};
|
|
1869
1743
|
};
|
|
1870
|
-
/** A `
|
|
1871
|
-
export interface
|
|
1744
|
+
/** A `NamespaceEvent` edge in the connection. */
|
|
1745
|
+
export interface NamespaceEventEdge {
|
|
1872
1746
|
cursor?: string | null;
|
|
1873
|
-
/** The `
|
|
1874
|
-
node?:
|
|
1747
|
+
/** The `NamespaceEvent` at the end of the edge. */
|
|
1748
|
+
node?: NamespaceEvent | null;
|
|
1875
1749
|
}
|
|
1876
|
-
export type
|
|
1750
|
+
export type NamespaceEventEdgeSelect = {
|
|
1877
1751
|
cursor?: boolean;
|
|
1878
1752
|
node?: {
|
|
1879
|
-
select:
|
|
1753
|
+
select: NamespaceEventSelect;
|
|
1880
1754
|
};
|
|
1881
1755
|
};
|
|
1882
|
-
/** A `
|
|
1883
|
-
export interface
|
|
1756
|
+
/** A `PlatformInfraCommit` edge in the connection. */
|
|
1757
|
+
export interface PlatformInfraCommitEdge {
|
|
1884
1758
|
cursor?: string | null;
|
|
1885
|
-
/** The `
|
|
1886
|
-
node?:
|
|
1759
|
+
/** The `PlatformInfraCommit` at the end of the edge. */
|
|
1760
|
+
node?: PlatformInfraCommit | null;
|
|
1887
1761
|
}
|
|
1888
|
-
export type
|
|
1762
|
+
export type PlatformInfraCommitEdgeSelect = {
|
|
1889
1763
|
cursor?: boolean;
|
|
1890
1764
|
node?: {
|
|
1891
|
-
select:
|
|
1765
|
+
select: PlatformInfraCommitSelect;
|
|
1892
1766
|
};
|
|
1893
1767
|
};
|
|
1894
|
-
/** A `
|
|
1895
|
-
export interface
|
|
1768
|
+
/** A `PlatformInfraObject` edge in the connection. */
|
|
1769
|
+
export interface PlatformInfraObjectEdge {
|
|
1896
1770
|
cursor?: string | null;
|
|
1897
|
-
/** The `
|
|
1898
|
-
node?:
|
|
1771
|
+
/** The `PlatformInfraObject` at the end of the edge. */
|
|
1772
|
+
node?: PlatformInfraObject | null;
|
|
1899
1773
|
}
|
|
1900
|
-
export type
|
|
1774
|
+
export type PlatformInfraObjectEdgeSelect = {
|
|
1901
1775
|
cursor?: boolean;
|
|
1902
1776
|
node?: {
|
|
1903
|
-
select:
|
|
1777
|
+
select: PlatformInfraObjectSelect;
|
|
1904
1778
|
};
|
|
1905
1779
|
};
|
|
1906
|
-
/** A `
|
|
1907
|
-
export interface
|
|
1780
|
+
/** A `PlatformInfraRef` edge in the connection. */
|
|
1781
|
+
export interface PlatformInfraRefEdge {
|
|
1908
1782
|
cursor?: string | null;
|
|
1909
|
-
/** The `
|
|
1910
|
-
node?:
|
|
1783
|
+
/** The `PlatformInfraRef` at the end of the edge. */
|
|
1784
|
+
node?: PlatformInfraRef | null;
|
|
1911
1785
|
}
|
|
1912
|
-
export type
|
|
1786
|
+
export type PlatformInfraRefEdgeSelect = {
|
|
1913
1787
|
cursor?: boolean;
|
|
1914
1788
|
node?: {
|
|
1915
|
-
select:
|
|
1789
|
+
select: PlatformInfraRefSelect;
|
|
1916
1790
|
};
|
|
1917
1791
|
};
|
|
1918
|
-
/** A `
|
|
1919
|
-
export interface
|
|
1792
|
+
/** A `PlatformInfraStore` edge in the connection. */
|
|
1793
|
+
export interface PlatformInfraStoreEdge {
|
|
1920
1794
|
cursor?: string | null;
|
|
1921
|
-
/** The `
|
|
1922
|
-
node?:
|
|
1795
|
+
/** The `PlatformInfraStore` at the end of the edge. */
|
|
1796
|
+
node?: PlatformInfraStore | null;
|
|
1923
1797
|
}
|
|
1924
|
-
export type
|
|
1798
|
+
export type PlatformInfraStoreEdgeSelect = {
|
|
1925
1799
|
cursor?: boolean;
|
|
1926
1800
|
node?: {
|
|
1927
|
-
select:
|
|
1801
|
+
select: PlatformInfraStoreSelect;
|
|
1928
1802
|
};
|
|
1929
1803
|
};
|
|
1930
1804
|
/** A `PlatformNamespace` edge in the connection. */
|