@constructive-io/react 0.30.2 → 0.30.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent/orm/input-types.d.ts +24 -0
- package/agent/orm/input-types.js +3 -0
- package/agent/schema-types.d.ts +13 -0
- package/api/hooks/index.d.ts +1 -1
- package/api/hooks/index.js +1 -1
- package/api/hooks/invalidation.d.ts +11 -5
- package/api/hooks/invalidation.js +25 -9
- package/api/hooks/mutation-keys.d.ts +22 -10
- package/api/hooks/mutation-keys.js +14 -7
- package/api/hooks/mutations/index.d.ts +6 -1
- package/api/hooks/mutations/index.js +6 -1
- package/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
- package/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +6 -6
- package/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateManagedDomainMutation.js +34 -0
- package/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteHttpRouteMutation.js +39 -0
- package/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteManagedDomainMutation.js +39 -0
- package/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateHttpRouteMutation.js +40 -0
- package/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateManagedDomainMutation.js +40 -0
- package/api/hooks/queries/index.d.ts +5 -2
- package/api/hooks/queries/index.js +5 -2
- package/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
- package/api/hooks/queries/{useMigrateFileQuery.js → useHttpRouteQuery.js} +14 -14
- package/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
- package/api/hooks/queries/useHttpRoutesQuery.js +38 -0
- package/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
- package/api/hooks/queries/useManagedDomainQuery.js +53 -0
- package/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
- package/api/hooks/queries/useManagedDomainsQuery.js +38 -0
- package/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
- package/api/hooks/queries/useResolveHttpRouteQuery.js +54 -0
- package/api/hooks/query-keys.d.ts +28 -12
- package/api/hooks/query-keys.js +17 -8
- package/api/orm/index.d.ts +9 -2
- package/api/orm/index.js +4 -2
- package/api/orm/input-types.d.ts +498 -143
- package/api/orm/input-types.js +4 -0
- package/api/orm/models/httpRoute.d.ts +54 -0
- package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
- package/api/orm/models/index.d.ts +2 -1
- package/api/orm/models/index.js +5 -3
- package/api/orm/models/managedDomain.d.ts +54 -0
- package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
- package/api/orm/query/index.d.ts +12 -0
- package/api/orm/query/index.js +20 -0
- package/api/schema-types.d.ts +277 -122
- package/api/types.d.ts +25 -5
- package/auth/orm/input-types.d.ts +155 -182
- package/auth/orm/input-types.js +4 -0
- package/auth/schema-types.d.ts +17 -63
- package/compute/hooks/index.d.ts +1 -1
- package/compute/hooks/index.js +1 -1
- package/compute/hooks/invalidation.d.ts +136 -10
- package/compute/hooks/invalidation.js +354 -18
- package/compute/hooks/mutation-keys.d.ts +294 -20
- package/compute/hooks/mutation-keys.js +227 -13
- package/compute/hooks/mutations/index.d.ts +62 -2
- package/compute/hooks/mutations/index.js +62 -2
- package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +34 -0
- package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceInstallationMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
- package/{api/hooks/mutations/useCreateMigrateFileMutation.js → compute/hooks/mutations/useCreateResourcesHealthMutation.js} +6 -6
- package/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +34 -0
- package/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateWebhookEventMutation.js +34 -0
- package/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
- package/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
- package/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
- package/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +6 -6
- package/{esm/infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +6 -6
- package/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +6 -6
- package/{esm/infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +6 -6
- package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +39 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +39 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteWebhookEventMutation.js +39 -0
- package/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +5 -5
- package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/{infra/hooks/mutations/useInfraSetDataAtPathMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +5 -5
- package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +26 -0
- package/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
- package/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
- package/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
- package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEventMutation.js +40 -0
- package/compute/hooks/queries/index.d.ts +39 -2
- package/compute/hooks/queries/index.js +39 -2
- package/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
- package/compute/hooks/queries/useDeclaredCapacitiesQuery.js +38 -0
- package/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
- package/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceInstallationQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourcesHealthQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +53 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformWebhookEventQuery.js +53 -0
- package/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformWebhookEventsQuery.js +38 -0
- package/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceInstallationQuery.js +53 -0
- package/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceInstallationsQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceUsageLogQuery.js +53 -0
- package/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUsageLogsQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUsageSummariesQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceUsageSummaryQuery.js +53 -0
- package/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +38 -0
- package/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourcesHealthQuery.js +53 -0
- package/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourcesHealthsQuery.js +38 -0
- package/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
- package/compute/hooks/queries/useWebhookEndpointQuery.js +53 -0
- package/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
- package/compute/hooks/queries/useWebhookEndpointsQuery.js +38 -0
- package/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
- package/compute/hooks/queries/useWebhookEventQuery.js +53 -0
- package/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/useWebhookEventsQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +318 -24
- package/compute/hooks/query-keys.js +188 -15
- package/compute/orm/index.d.ts +101 -4
- package/compute/orm/index.js +46 -4
- package/compute/orm/input-types.d.ts +5356 -772
- package/compute/orm/input-types.js +34 -2
- package/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/compute/orm/models/{getAllRecord.js → declaredCapacity.js} +15 -15
- package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/compute/orm/models/index.d.ts +23 -2
- package/compute/orm/models/index.js +48 -5
- package/compute/orm/models/infraCommit.d.ts +2 -2
- package/compute/orm/models/infraCommit.js +2 -2
- package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/infraObject.d.ts +2 -2
- package/compute/orm/models/infraObject.js +2 -2
- package/compute/orm/models/infraRef.d.ts +2 -2
- package/compute/orm/models/infraRef.js +2 -2
- package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/compute/orm/models/{infraGetAllRecord.js → platformDeclaredCapacity.js} +15 -15
- package/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/compute/orm/models/platformInfraCommit.js +107 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
- package/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/compute/orm/models/platformInfraRef.js +107 -0
- package/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/compute/orm/models/platformInfraStore.js +104 -0
- package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/compute/orm/models/platformResourceInstallation.js +104 -0
- package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageLog.js +107 -0
- package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageSummary.js +107 -0
- package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
- package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/compute/orm/models/platformResourcesHealth.js +80 -0
- package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/compute/orm/models/platformWebhookEndpoint.js +104 -0
- package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/compute/orm/models/platformWebhookEvent.js +104 -0
- package/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/compute/orm/models/resourceInstallation.js +104 -0
- package/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/compute/orm/models/resourceUsageLog.js +107 -0
- package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/resourceUsageSummary.js +107 -0
- package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/resourceUtilizationDaily.js +59 -0
- package/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
- package/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/compute/orm/models/webhookEndpoint.js +104 -0
- package/compute/orm/models/webhookEvent.d.ts +54 -0
- package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
- package/compute/orm/mutation/index.d.ts +89 -1
- package/compute/orm/mutation/index.js +132 -0
- package/compute/schema-types.d.ts +2775 -237
- package/compute/types.d.ts +364 -20
- package/config/orm/input-types.d.ts +4 -79
- package/config/schema-types.d.ts +0 -72
- package/esm/agent/orm/input-types.d.ts +24 -0
- package/esm/agent/orm/input-types.js +3 -0
- package/esm/agent/schema-types.d.ts +13 -0
- package/esm/api/hooks/index.d.ts +1 -1
- package/esm/api/hooks/index.js +1 -1
- package/esm/api/hooks/invalidation.d.ts +11 -5
- package/esm/api/hooks/invalidation.js +26 -10
- package/esm/api/hooks/mutation-keys.d.ts +22 -10
- package/esm/api/hooks/mutation-keys.js +13 -6
- package/esm/api/hooks/mutations/index.d.ts +6 -1
- package/esm/api/hooks/mutations/index.js +6 -1
- package/esm/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
- package/esm/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +7 -7
- package/esm/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateManagedDomainMutation.js +31 -0
- package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.js +36 -0
- package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.js +37 -0
- package/esm/api/hooks/queries/index.d.ts +5 -2
- package/esm/api/hooks/queries/index.js +5 -2
- package/esm/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useHttpRouteQuery.js +47 -0
- package/esm/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
- package/esm/{compute/hooks/queries/useGetAllQuery.js → api/hooks/queries/useHttpRoutesQuery.js} +11 -11
- package/esm/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useManagedDomainQuery.js +47 -0
- package/esm/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useManagedDomainsQuery.js +32 -0
- package/esm/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useResolveHttpRouteQuery.js +48 -0
- package/esm/api/hooks/query-keys.d.ts +28 -12
- package/esm/api/hooks/query-keys.js +16 -7
- package/esm/api/orm/index.d.ts +9 -2
- package/esm/api/orm/index.js +4 -2
- package/esm/api/orm/input-types.d.ts +498 -143
- package/esm/api/orm/input-types.js +4 -0
- package/esm/api/orm/models/httpRoute.d.ts +54 -0
- package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
- package/esm/api/orm/models/index.d.ts +2 -1
- package/esm/api/orm/models/index.js +2 -1
- package/esm/api/orm/models/managedDomain.d.ts +54 -0
- package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
- package/esm/api/orm/query/index.d.ts +12 -0
- package/esm/api/orm/query/index.js +20 -0
- package/esm/api/schema-types.d.ts +277 -122
- package/esm/api/types.d.ts +25 -5
- package/esm/auth/orm/input-types.d.ts +155 -182
- package/esm/auth/orm/input-types.js +4 -0
- package/esm/auth/schema-types.d.ts +17 -63
- package/esm/compute/hooks/index.d.ts +1 -1
- package/esm/compute/hooks/index.js +1 -1
- package/esm/compute/hooks/invalidation.d.ts +136 -10
- package/esm/compute/hooks/invalidation.js +355 -19
- package/esm/compute/hooks/mutation-keys.d.ts +294 -20
- package/esm/compute/hooks/mutation-keys.js +225 -12
- package/esm/compute/hooks/mutations/index.d.ts +62 -2
- package/esm/compute/hooks/mutations/index.js +62 -2
- package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js → compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateResourcesHealthMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/esm/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +7 -7
- package/{infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +7 -7
- package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +7 -7
- package/{infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.js +36 -0
- package/esm/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/esm/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +4 -4
- package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/esm/{infra/hooks/mutations/useInfraInitEmptyRepoMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +4 -4
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/esm/{infra/hooks/mutations/useUpdateInfraRefMutation.js → compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js} +9 -9
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.js +37 -0
- package/esm/compute/hooks/queries/index.d.ts +39 -2
- package/esm/compute/hooks/queries/index.js +39 -2
- package/esm/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
- package/esm/{objects/hooks/queries/useGetAllQuery.js → compute/hooks/queries/useDeclaredCapacitiesQuery.js} +11 -11
- package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraCommitQuery.js → compute/hooks/queries/usePlatformInfraCommitQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceInstallationQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceInstallationsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceUsageLogQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUsageLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourcesHealthQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/{useInfraGetAllQuery.js → useResourcesHealthsQuery.js} +11 -11
- package/esm/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useWebhookEndpointQuery.js +47 -0
- package/esm/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useWebhookEndpointsQuery.js +32 -0
- package/esm/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useWebhookEventQuery.js +47 -0
- package/esm/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useWebhookEventsQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +318 -24
- package/esm/compute/hooks/query-keys.js +186 -14
- package/esm/compute/orm/index.d.ts +101 -4
- package/esm/compute/orm/index.js +46 -4
- package/esm/compute/orm/input-types.d.ts +5356 -772
- package/esm/compute/orm/input-types.js +34 -2
- package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +13 -13
- package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/index.d.ts +23 -2
- package/esm/compute/orm/models/index.js +23 -2
- package/esm/compute/orm/models/infraCommit.d.ts +2 -2
- package/esm/compute/orm/models/infraCommit.js +2 -2
- package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/infraGetAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/infraObject.d.ts +2 -2
- package/esm/compute/orm/models/infraObject.js +2 -2
- package/esm/compute/orm/models/infraRef.d.ts +2 -2
- package/esm/compute/orm/models/infraRef.js +2 -2
- package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
- package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraCommit.js +103 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
- package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraRef.js +103 -0
- package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/compute/orm/models/platformInfraStore.js +100 -0
- package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
- package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
- package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
- package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/resourceInstallation.js +100 -0
- package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageLog.js +103 -0
- package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
- package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/webhookEndpoint.js +100 -0
- package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
- package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
- package/esm/compute/orm/mutation/index.d.ts +89 -1
- package/esm/compute/orm/mutation/index.js +132 -0
- package/esm/compute/schema-types.d.ts +2775 -237
- package/esm/compute/types.d.ts +364 -20
- package/esm/config/orm/input-types.d.ts +4 -79
- package/esm/config/schema-types.d.ts +0 -72
- package/esm/infra/hooks/index.d.ts +1 -1
- package/esm/infra/hooks/index.js +1 -1
- package/esm/infra/hooks/invalidation.d.ts +30 -30
- package/esm/infra/hooks/invalidation.js +64 -64
- package/esm/infra/hooks/mutation-keys.d.ts +66 -66
- package/esm/infra/hooks/mutation-keys.js +47 -44
- package/esm/infra/hooks/mutations/index.d.ts +16 -16
- package/esm/infra/hooks/mutations/index.js +16 -16
- package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +31 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +9 -10
- package/esm/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +9 -10
- package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.js +37 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +9 -10
- package/esm/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/{useInfraSetDataAtPathMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +4 -4
- package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
- package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +23 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
- package/esm/infra/hooks/queries/index.d.ts +9 -9
- package/esm/infra/hooks/queries/index.js +9 -9
- package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.js +32 -0
- package/esm/infra/hooks/query-keys.d.ts +70 -70
- package/esm/infra/hooks/query-keys.js +42 -40
- package/esm/infra/orm/index.d.ts +19 -19
- package/esm/infra/orm/index.js +10 -10
- package/esm/infra/orm/input-types.d.ts +542 -668
- package/esm/infra/orm/models/index.d.ts +5 -5
- package/esm/infra/orm/models/index.js +5 -5
- package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraCommit.js +103 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraObject.js +93 -0
- package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraRef.js +103 -0
- package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/infra/orm/models/platformInfraStore.js +100 -0
- package/esm/infra/orm/mutation/index.d.ts +16 -16
- package/esm/infra/orm/mutation/index.js +18 -18
- package/esm/infra/schema-types.d.ts +389 -473
- package/esm/infra/types.d.ts +30 -44
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +12 -0
- package/esm/modules/hooks/invalidation.js +33 -1
- package/esm/modules/hooks/mutation-keys.d.ts +24 -0
- package/esm/modules/hooks/mutation-keys.js +14 -0
- package/esm/modules/hooks/mutations/index.d.ts +6 -0
- package/esm/modules/hooks/mutations/index.js +6 -0
- package/esm/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
- package/esm/{api/hooks/mutations/useCreateMigrateFileMutation.js → modules/hooks/mutations/useCreateHttpRouteModuleMutation.js} +7 -7
- package/esm/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
- package/esm/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +7 -7
- package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +37 -0
- package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +4 -0
- package/esm/modules/hooks/queries/index.js +4 -0
- package/esm/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useHttpRouteModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraGetAllQuery.js → modules/hooks/queries/useHttpRouteModulesQuery.js} +11 -11
- package/esm/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
- package/esm/{api/hooks/queries/useMigrateFileQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +11 -11
- package/esm/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
- package/esm/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +11 -11
- package/esm/modules/hooks/query-keys.d.ts +28 -0
- package/esm/modules/hooks/query-keys.js +16 -0
- package/esm/modules/orm/index.d.ts +4 -0
- package/esm/modules/orm/index.js +4 -0
- package/esm/modules/orm/input-types.d.ts +802 -166
- package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/esm/modules/orm/models/httpRouteModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +2 -0
- package/esm/modules/orm/models/index.js +2 -0
- package/esm/modules/orm/models/webhookModule.d.ts +54 -0
- package/esm/modules/orm/models/webhookModule.js +100 -0
- package/esm/modules/schema-types.d.ts +483 -101
- package/esm/modules/types.d.ts +82 -22
- package/esm/objects/hooks/index.d.ts +1 -1
- package/esm/objects/hooks/index.js +1 -1
- package/esm/objects/hooks/invalidation.d.ts +5 -5
- package/esm/objects/hooks/invalidation.js +10 -10
- package/esm/objects/hooks/mutation-keys.d.ts +10 -10
- package/esm/objects/hooks/mutation-keys.js +9 -6
- package/esm/objects/hooks/mutations/index.d.ts +1 -1
- package/esm/objects/hooks/mutations/index.js +1 -1
- package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/objects/hooks/queries/index.d.ts +1 -1
- package/esm/objects/hooks/queries/index.js +1 -1
- package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
- package/esm/objects/hooks/query-keys.d.ts +12 -12
- package/esm/objects/hooks/query-keys.js +7 -7
- package/esm/objects/orm/index.d.ts +2 -2
- package/esm/objects/orm/index.js +2 -2
- package/esm/objects/orm/input-types.d.ts +15 -15
- package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/objects/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
- package/esm/objects/orm/models/index.d.ts +1 -1
- package/esm/objects/orm/models/index.js +1 -1
- package/esm/objects/schema-types.d.ts +9 -9
- package/esm/objects/types.d.ts +1 -1
- package/infra/hooks/index.d.ts +1 -1
- package/infra/hooks/index.js +1 -1
- package/infra/hooks/invalidation.d.ts +30 -30
- package/infra/hooks/invalidation.js +63 -63
- package/infra/hooks/mutation-keys.d.ts +66 -66
- package/infra/hooks/mutation-keys.js +48 -45
- package/infra/hooks/mutations/index.d.ts +16 -16
- package/infra/hooks/mutations/index.js +16 -16
- package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → infra/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
- package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +34 -0
- package/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraRefMutation.js → useDeletePlatformInfraRefMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
- package/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +8 -9
- package/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/infra/hooks/mutations/{useInfraInitEmptyRepoMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +5 -5
- package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
- package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +26 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
- package/infra/hooks/queries/index.d.ts +9 -9
- package/infra/hooks/queries/index.js +9 -9
- package/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraCommitsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraObjectQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraObjectsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraRefQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraRefsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraStoreQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraStoresQuery.js +38 -0
- package/infra/hooks/query-keys.d.ts +70 -70
- package/infra/hooks/query-keys.js +43 -41
- package/infra/orm/index.d.ts +19 -19
- package/infra/orm/index.js +10 -10
- package/infra/orm/input-types.d.ts +542 -668
- package/infra/orm/models/index.d.ts +5 -5
- package/infra/orm/models/index.js +11 -11
- package/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/infra/orm/models/platformInfraCommit.js +107 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/infra/orm/models/platformInfraObject.js +97 -0
- package/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/infra/orm/models/platformInfraRef.js +107 -0
- package/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/infra/orm/models/platformInfraStore.js +104 -0
- package/infra/orm/mutation/index.d.ts +16 -16
- package/infra/orm/mutation/index.js +18 -18
- package/infra/schema-types.d.ts +389 -473
- package/infra/types.d.ts +30 -44
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +12 -0
- package/modules/hooks/invalidation.js +32 -0
- package/modules/hooks/mutation-keys.d.ts +24 -0
- package/modules/hooks/mutation-keys.js +16 -2
- package/modules/hooks/mutations/index.d.ts +6 -0
- package/modules/hooks/mutations/index.js +6 -0
- package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.js +34 -0
- package/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
- package/{compute/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +6 -6
- package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +39 -0
- package/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +40 -0
- package/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +4 -0
- package/modules/hooks/queries/index.js +4 -0
- package/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useHttpRouteModuleQuery.js +53 -0
- package/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useHttpRouteModulesQuery.js +38 -0
- package/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraCommitQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +14 -14
- package/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
- package/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +14 -14
- package/modules/hooks/query-keys.d.ts +28 -0
- package/modules/hooks/query-keys.js +18 -2
- package/modules/orm/index.d.ts +4 -0
- package/modules/orm/index.js +4 -0
- package/modules/orm/input-types.d.ts +802 -166
- package/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/modules/orm/models/httpRouteModule.js +104 -0
- package/modules/orm/models/index.d.ts +2 -0
- package/modules/orm/models/index.js +6 -2
- package/modules/orm/models/webhookModule.d.ts +54 -0
- package/modules/orm/models/webhookModule.js +104 -0
- package/modules/schema-types.d.ts +483 -101
- package/modules/types.d.ts +82 -22
- package/objects/hooks/index.d.ts +1 -1
- package/objects/hooks/index.js +1 -1
- package/objects/hooks/invalidation.d.ts +5 -5
- package/objects/hooks/invalidation.js +9 -9
- package/objects/hooks/mutation-keys.d.ts +10 -10
- package/objects/hooks/mutation-keys.js +10 -7
- package/objects/hooks/mutations/index.d.ts +1 -1
- package/objects/hooks/mutations/index.js +1 -1
- package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
- package/objects/hooks/queries/index.d.ts +1 -1
- package/objects/hooks/queries/index.js +1 -1
- package/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/objects/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
- package/objects/hooks/query-keys.d.ts +12 -12
- package/objects/hooks/query-keys.js +8 -8
- package/objects/orm/index.d.ts +2 -2
- package/objects/orm/index.js +2 -2
- package/objects/orm/input-types.d.ts +15 -15
- package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/objects/orm/models/index.d.ts +1 -1
- package/objects/orm/models/index.js +3 -3
- package/objects/schema-types.d.ts +9 -9
- package/objects/types.d.ts +1 -1
- package/package.json +2 -2
- 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
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
* DO NOT EDIT - changes will be overwritten
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.
|
|
8
|
+
exports.platformResourcesResolvedRequirementKeys = exports.platformResourcesRequirementsStateKeys = exports.platformResourcesHealthKeys = exports.platformResourceUtilizationDailyKeys = exports.platformResourceUsageSummaryKeys = exports.platformResourceUsageLogKeys = exports.platformResourceStatusCheckKeys = exports.platformResourceInstallationKeys = exports.platformResourceEventKeys = exports.platformResourceDefinitionKeys = exports.platformResourceKeys = exports.platformNamespaceEventKeys = exports.platformNamespaceKeys = exports.platformInfraStoreKeys = exports.platformInfraRefKeys = exports.platformInfraObjectKeys = exports.platformInfraGetAllTreeNodesRecordKeys = exports.platformInfraCommitKeys = exports.platformFunctionInvocationKeys = exports.platformFunctionExecutionLogKeys = exports.platformFunctionDeploymentEventKeys = exports.platformFunctionDeploymentKeys = exports.platformFunctionDefinitionKeys = exports.platformFunctionApiBindingKeys = exports.platformDeclaredCapacityKeys = exports.namespaceEventKeys = exports.namespaceKeys = exports.integrationProviderKeys = exports.infraStoreKeys = exports.infraRefKeys = exports.infraObjectKeys = exports.infraGetAllTreeNodesRecordKeys = exports.infraCommitKeys = exports.getAllTreeNodesRecordKeys = exports.functionInvocationKeys = exports.functionGraphStoreKeys = exports.functionGraphRefKeys = exports.functionGraphObjectKeys = exports.functionGraphExecutionOutputKeys = exports.functionGraphExecutionNodeStateKeys = exports.functionGraphExecutionKeys = exports.functionGraphKeys = exports.functionGraphCommitKeys = exports.functionExecutionLogKeys = exports.functionDeploymentEventKeys = exports.functionDeploymentKeys = exports.functionDefinitionKeys = exports.functionApiBindingKeys = exports.declaredCapacityKeys = exports.dbPresetKeys = void 0;
|
|
9
|
+
exports.queryKeys = exports.customQueryKeys = exports.webhookEventKeys = exports.webhookEndpointKeys = exports.resourcesResolvedRequirementKeys = exports.resourcesRequirementsStateKeys = exports.resourcesHealthKeys = exports.resourceUtilizationDailyKeys = exports.resourceUsageSummaryKeys = exports.resourceUsageLogKeys = exports.resourceStatusCheckKeys = exports.resourceInstallationKeys = exports.resourceEventKeys = exports.resourceDefinitionKeys = exports.resourceKeys = exports.platformWebhookEventKeys = exports.platformWebhookEndpointKeys = void 0;
|
|
9
10
|
// ============================================================================
|
|
10
11
|
// This file provides a centralized, type-safe query key factory following
|
|
11
12
|
// the lukemorales query-key-factory pattern for React Query.
|
|
@@ -26,6 +27,13 @@ exports.dbPresetKeys = {
|
|
|
26
27
|
/** Detail query keys */ details: () => [...exports.dbPresetKeys.all, 'detail'],
|
|
27
28
|
/** Detail query key for specific item */ detail: (id) => [...exports.dbPresetKeys.details(), id],
|
|
28
29
|
};
|
|
30
|
+
exports.declaredCapacityKeys = {
|
|
31
|
+
/** All declaredCapacity queries */ all: ['declaredcapacity'],
|
|
32
|
+
/** List query keys */ lists: () => [...exports.declaredCapacityKeys.all, 'list'],
|
|
33
|
+
/** List query key with variables */ list: (variables) => [...exports.declaredCapacityKeys.lists(), variables],
|
|
34
|
+
/** Detail query keys */ details: () => [...exports.declaredCapacityKeys.all, 'detail'],
|
|
35
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.declaredCapacityKeys.details(), id],
|
|
36
|
+
};
|
|
29
37
|
exports.functionApiBindingKeys = {
|
|
30
38
|
/** All functionApiBinding queries */ all: ['functionapibinding'],
|
|
31
39
|
/** List query keys */ lists: () => [...exports.functionApiBindingKeys.all, 'list'],
|
|
@@ -126,12 +134,12 @@ exports.functionInvocationKeys = {
|
|
|
126
134
|
/** Detail query keys */ details: () => [...exports.functionInvocationKeys.all, 'detail'],
|
|
127
135
|
/** Detail query key for specific item */ detail: (id) => [...exports.functionInvocationKeys.details(), id],
|
|
128
136
|
};
|
|
129
|
-
exports.
|
|
130
|
-
/** All
|
|
131
|
-
/** List query keys */ lists: () => [...exports.
|
|
132
|
-
/** List query key with variables */ list: (variables) => [...exports.
|
|
133
|
-
/** Detail query keys */ details: () => [...exports.
|
|
134
|
-
/** Detail query key for specific item */ detail: (id) => [...exports.
|
|
137
|
+
exports.getAllTreeNodesRecordKeys = {
|
|
138
|
+
/** All getAllTreeNodesRecord queries */ all: ['getalltreenodesrecord'],
|
|
139
|
+
/** List query keys */ lists: () => [...exports.getAllTreeNodesRecordKeys.all, 'list'],
|
|
140
|
+
/** List query key with variables */ list: (variables) => [...exports.getAllTreeNodesRecordKeys.lists(), variables],
|
|
141
|
+
/** Detail query keys */ details: () => [...exports.getAllTreeNodesRecordKeys.all, 'detail'],
|
|
142
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.getAllTreeNodesRecordKeys.details(), id],
|
|
135
143
|
};
|
|
136
144
|
exports.infraCommitKeys = {
|
|
137
145
|
/** All infraCommit queries */ all: ['infracommit'],
|
|
@@ -140,12 +148,12 @@ exports.infraCommitKeys = {
|
|
|
140
148
|
/** Detail query keys */ details: () => [...exports.infraCommitKeys.all, 'detail'],
|
|
141
149
|
/** Detail query key for specific item */ detail: (id) => [...exports.infraCommitKeys.details(), id],
|
|
142
150
|
};
|
|
143
|
-
exports.
|
|
144
|
-
/** All
|
|
145
|
-
/** List query keys */ lists: () => [...exports.
|
|
146
|
-
/** List query key with variables */ list: (variables) => [...exports.
|
|
147
|
-
/** Detail query keys */ details: () => [...exports.
|
|
148
|
-
/** Detail query key for specific item */ detail: (id) => [...exports.
|
|
151
|
+
exports.infraGetAllTreeNodesRecordKeys = {
|
|
152
|
+
/** All infraGetAllTreeNodesRecord queries */ all: ['infragetalltreenodesrecord'],
|
|
153
|
+
/** List query keys */ lists: () => [...exports.infraGetAllTreeNodesRecordKeys.all, 'list'],
|
|
154
|
+
/** List query key with variables */ list: (variables) => [...exports.infraGetAllTreeNodesRecordKeys.lists(), variables],
|
|
155
|
+
/** Detail query keys */ details: () => [...exports.infraGetAllTreeNodesRecordKeys.all, 'detail'],
|
|
156
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.infraGetAllTreeNodesRecordKeys.details(), id],
|
|
149
157
|
};
|
|
150
158
|
exports.infraObjectKeys = {
|
|
151
159
|
/** All infraObject queries */ all: ['infraobject'],
|
|
@@ -189,6 +197,13 @@ exports.namespaceEventKeys = {
|
|
|
189
197
|
/** Detail query keys */ details: () => [...exports.namespaceEventKeys.all, 'detail'],
|
|
190
198
|
/** Detail query key for specific item */ detail: (id) => [...exports.namespaceEventKeys.details(), id],
|
|
191
199
|
};
|
|
200
|
+
exports.platformDeclaredCapacityKeys = {
|
|
201
|
+
/** All platformDeclaredCapacity queries */ all: ['platformdeclaredcapacity'],
|
|
202
|
+
/** List query keys */ lists: () => [...exports.platformDeclaredCapacityKeys.all, 'list'],
|
|
203
|
+
/** List query key with variables */ list: (variables) => [...exports.platformDeclaredCapacityKeys.lists(), variables],
|
|
204
|
+
/** Detail query keys */ details: () => [...exports.platformDeclaredCapacityKeys.all, 'detail'],
|
|
205
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformDeclaredCapacityKeys.details(), id],
|
|
206
|
+
};
|
|
192
207
|
exports.platformFunctionApiBindingKeys = {
|
|
193
208
|
/** All platformFunctionApiBinding queries */ all: ['platformfunctionapibinding'],
|
|
194
209
|
/** List query keys */ lists: () => [...exports.platformFunctionApiBindingKeys.all, 'list'],
|
|
@@ -233,6 +248,43 @@ exports.platformFunctionInvocationKeys = {
|
|
|
233
248
|
/** Detail query keys */ details: () => [...exports.platformFunctionInvocationKeys.all, 'detail'],
|
|
234
249
|
/** Detail query key for specific item */ detail: (id) => [...exports.platformFunctionInvocationKeys.details(), id],
|
|
235
250
|
};
|
|
251
|
+
exports.platformInfraCommitKeys = {
|
|
252
|
+
/** All platformInfraCommit queries */ all: ['platforminfracommit'],
|
|
253
|
+
/** List query keys */ lists: () => [...exports.platformInfraCommitKeys.all, 'list'],
|
|
254
|
+
/** List query key with variables */ list: (variables) => [...exports.platformInfraCommitKeys.lists(), variables],
|
|
255
|
+
/** Detail query keys */ details: () => [...exports.platformInfraCommitKeys.all, 'detail'],
|
|
256
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformInfraCommitKeys.details(), id],
|
|
257
|
+
};
|
|
258
|
+
exports.platformInfraGetAllTreeNodesRecordKeys = {
|
|
259
|
+
/** All platformInfraGetAllTreeNodesRecord queries */ all: [
|
|
260
|
+
'platforminfragetalltreenodesrecord',
|
|
261
|
+
],
|
|
262
|
+
/** List query keys */ lists: () => [...exports.platformInfraGetAllTreeNodesRecordKeys.all, 'list'],
|
|
263
|
+
/** List query key with variables */ list: (variables) => [...exports.platformInfraGetAllTreeNodesRecordKeys.lists(), variables],
|
|
264
|
+
/** Detail query keys */ details: () => [...exports.platformInfraGetAllTreeNodesRecordKeys.all, 'detail'],
|
|
265
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformInfraGetAllTreeNodesRecordKeys.details(), id],
|
|
266
|
+
};
|
|
267
|
+
exports.platformInfraObjectKeys = {
|
|
268
|
+
/** All platformInfraObject queries */ all: ['platforminfraobject'],
|
|
269
|
+
/** List query keys */ lists: () => [...exports.platformInfraObjectKeys.all, 'list'],
|
|
270
|
+
/** List query key with variables */ list: (variables) => [...exports.platformInfraObjectKeys.lists(), variables],
|
|
271
|
+
/** Detail query keys */ details: () => [...exports.platformInfraObjectKeys.all, 'detail'],
|
|
272
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformInfraObjectKeys.details(), id],
|
|
273
|
+
};
|
|
274
|
+
exports.platformInfraRefKeys = {
|
|
275
|
+
/** All platformInfraRef queries */ all: ['platforminfraref'],
|
|
276
|
+
/** List query keys */ lists: () => [...exports.platformInfraRefKeys.all, 'list'],
|
|
277
|
+
/** List query key with variables */ list: (variables) => [...exports.platformInfraRefKeys.lists(), variables],
|
|
278
|
+
/** Detail query keys */ details: () => [...exports.platformInfraRefKeys.all, 'detail'],
|
|
279
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformInfraRefKeys.details(), id],
|
|
280
|
+
};
|
|
281
|
+
exports.platformInfraStoreKeys = {
|
|
282
|
+
/** All platformInfraStore queries */ all: ['platforminfrastore'],
|
|
283
|
+
/** List query keys */ lists: () => [...exports.platformInfraStoreKeys.all, 'list'],
|
|
284
|
+
/** List query key with variables */ list: (variables) => [...exports.platformInfraStoreKeys.lists(), variables],
|
|
285
|
+
/** Detail query keys */ details: () => [...exports.platformInfraStoreKeys.all, 'detail'],
|
|
286
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformInfraStoreKeys.details(), id],
|
|
287
|
+
};
|
|
236
288
|
exports.platformNamespaceKeys = {
|
|
237
289
|
/** All platformNamespace queries */ all: ['platformnamespace'],
|
|
238
290
|
/** List query keys */ lists: () => [...exports.platformNamespaceKeys.all, 'list'],
|
|
@@ -268,6 +320,13 @@ exports.platformResourceEventKeys = {
|
|
|
268
320
|
/** Detail query keys */ details: () => [...exports.platformResourceEventKeys.all, 'detail'],
|
|
269
321
|
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourceEventKeys.details(), id],
|
|
270
322
|
};
|
|
323
|
+
exports.platformResourceInstallationKeys = {
|
|
324
|
+
/** All platformResourceInstallation queries */ all: ['platformresourceinstallation'],
|
|
325
|
+
/** List query keys */ lists: () => [...exports.platformResourceInstallationKeys.all, 'list'],
|
|
326
|
+
/** List query key with variables */ list: (variables) => [...exports.platformResourceInstallationKeys.lists(), variables],
|
|
327
|
+
/** Detail query keys */ details: () => [...exports.platformResourceInstallationKeys.all, 'detail'],
|
|
328
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourceInstallationKeys.details(), id],
|
|
329
|
+
};
|
|
271
330
|
exports.platformResourceStatusCheckKeys = {
|
|
272
331
|
/** All platformResourceStatusCheck queries */ all: ['platformresourcestatuscheck'],
|
|
273
332
|
/** List query keys */ lists: () => [...exports.platformResourceStatusCheckKeys.all, 'list'],
|
|
@@ -275,6 +334,36 @@ exports.platformResourceStatusCheckKeys = {
|
|
|
275
334
|
/** Detail query keys */ details: () => [...exports.platformResourceStatusCheckKeys.all, 'detail'],
|
|
276
335
|
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourceStatusCheckKeys.details(), id],
|
|
277
336
|
};
|
|
337
|
+
exports.platformResourceUsageLogKeys = {
|
|
338
|
+
/** All platformResourceUsageLog queries */ all: ['platformresourceusagelog'],
|
|
339
|
+
/** List query keys */ lists: () => [...exports.platformResourceUsageLogKeys.all, 'list'],
|
|
340
|
+
/** List query key with variables */ list: (variables) => [...exports.platformResourceUsageLogKeys.lists(), variables],
|
|
341
|
+
/** Detail query keys */ details: () => [...exports.platformResourceUsageLogKeys.all, 'detail'],
|
|
342
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourceUsageLogKeys.details(), id],
|
|
343
|
+
};
|
|
344
|
+
exports.platformResourceUsageSummaryKeys = {
|
|
345
|
+
/** All platformResourceUsageSummary queries */ all: ['platformresourceusagesummary'],
|
|
346
|
+
/** List query keys */ lists: () => [...exports.platformResourceUsageSummaryKeys.all, 'list'],
|
|
347
|
+
/** List query key with variables */ list: (variables) => [...exports.platformResourceUsageSummaryKeys.lists(), variables],
|
|
348
|
+
/** Detail query keys */ details: () => [...exports.platformResourceUsageSummaryKeys.all, 'detail'],
|
|
349
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourceUsageSummaryKeys.details(), id],
|
|
350
|
+
};
|
|
351
|
+
exports.platformResourceUtilizationDailyKeys = {
|
|
352
|
+
/** All platformResourceUtilizationDaily queries */ all: [
|
|
353
|
+
'platformresourceutilizationdaily',
|
|
354
|
+
],
|
|
355
|
+
/** List query keys */ lists: () => [...exports.platformResourceUtilizationDailyKeys.all, 'list'],
|
|
356
|
+
/** List query key with variables */ list: (variables) => [...exports.platformResourceUtilizationDailyKeys.lists(), variables],
|
|
357
|
+
/** Detail query keys */ details: () => [...exports.platformResourceUtilizationDailyKeys.all, 'detail'],
|
|
358
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourceUtilizationDailyKeys.details(), id],
|
|
359
|
+
};
|
|
360
|
+
exports.platformResourcesHealthKeys = {
|
|
361
|
+
/** All platformResourcesHealth queries */ all: ['platformresourceshealth'],
|
|
362
|
+
/** List query keys */ lists: () => [...exports.platformResourcesHealthKeys.all, 'list'],
|
|
363
|
+
/** List query key with variables */ list: (variables) => [...exports.platformResourcesHealthKeys.lists(), variables],
|
|
364
|
+
/** Detail query keys */ details: () => [...exports.platformResourcesHealthKeys.all, 'detail'],
|
|
365
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourcesHealthKeys.details(), id],
|
|
366
|
+
};
|
|
278
367
|
exports.platformResourcesRequirementsStateKeys = {
|
|
279
368
|
/** All platformResourcesRequirementsState queries */ all: [
|
|
280
369
|
'platformresourcesrequirementsstate',
|
|
@@ -293,6 +382,20 @@ exports.platformResourcesResolvedRequirementKeys = {
|
|
|
293
382
|
/** Detail query keys */ details: () => [...exports.platformResourcesResolvedRequirementKeys.all, 'detail'],
|
|
294
383
|
/** Detail query key for specific item */ detail: (id) => [...exports.platformResourcesResolvedRequirementKeys.details(), id],
|
|
295
384
|
};
|
|
385
|
+
exports.platformWebhookEndpointKeys = {
|
|
386
|
+
/** All platformWebhookEndpoint queries */ all: ['platformwebhookendpoint'],
|
|
387
|
+
/** List query keys */ lists: () => [...exports.platformWebhookEndpointKeys.all, 'list'],
|
|
388
|
+
/** List query key with variables */ list: (variables) => [...exports.platformWebhookEndpointKeys.lists(), variables],
|
|
389
|
+
/** Detail query keys */ details: () => [...exports.platformWebhookEndpointKeys.all, 'detail'],
|
|
390
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformWebhookEndpointKeys.details(), id],
|
|
391
|
+
};
|
|
392
|
+
exports.platformWebhookEventKeys = {
|
|
393
|
+
/** All platformWebhookEvent queries */ all: ['platformwebhookevent'],
|
|
394
|
+
/** List query keys */ lists: () => [...exports.platformWebhookEventKeys.all, 'list'],
|
|
395
|
+
/** List query key with variables */ list: (variables) => [...exports.platformWebhookEventKeys.lists(), variables],
|
|
396
|
+
/** Detail query keys */ details: () => [...exports.platformWebhookEventKeys.all, 'detail'],
|
|
397
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.platformWebhookEventKeys.details(), id],
|
|
398
|
+
};
|
|
296
399
|
exports.resourceKeys = {
|
|
297
400
|
/** All resource queries */ all: ['resource'],
|
|
298
401
|
/** List query keys */ lists: () => [...exports.resourceKeys.all, 'list'],
|
|
@@ -314,6 +417,13 @@ exports.resourceEventKeys = {
|
|
|
314
417
|
/** Detail query keys */ details: () => [...exports.resourceEventKeys.all, 'detail'],
|
|
315
418
|
/** Detail query key for specific item */ detail: (id) => [...exports.resourceEventKeys.details(), id],
|
|
316
419
|
};
|
|
420
|
+
exports.resourceInstallationKeys = {
|
|
421
|
+
/** All resourceInstallation queries */ all: ['resourceinstallation'],
|
|
422
|
+
/** List query keys */ lists: () => [...exports.resourceInstallationKeys.all, 'list'],
|
|
423
|
+
/** List query key with variables */ list: (variables) => [...exports.resourceInstallationKeys.lists(), variables],
|
|
424
|
+
/** Detail query keys */ details: () => [...exports.resourceInstallationKeys.all, 'detail'],
|
|
425
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.resourceInstallationKeys.details(), id],
|
|
426
|
+
};
|
|
317
427
|
exports.resourceStatusCheckKeys = {
|
|
318
428
|
/** All resourceStatusCheck queries */ all: ['resourcestatuscheck'],
|
|
319
429
|
/** List query keys */ lists: () => [...exports.resourceStatusCheckKeys.all, 'list'],
|
|
@@ -321,6 +431,34 @@ exports.resourceStatusCheckKeys = {
|
|
|
321
431
|
/** Detail query keys */ details: () => [...exports.resourceStatusCheckKeys.all, 'detail'],
|
|
322
432
|
/** Detail query key for specific item */ detail: (id) => [...exports.resourceStatusCheckKeys.details(), id],
|
|
323
433
|
};
|
|
434
|
+
exports.resourceUsageLogKeys = {
|
|
435
|
+
/** All resourceUsageLog queries */ all: ['resourceusagelog'],
|
|
436
|
+
/** List query keys */ lists: () => [...exports.resourceUsageLogKeys.all, 'list'],
|
|
437
|
+
/** List query key with variables */ list: (variables) => [...exports.resourceUsageLogKeys.lists(), variables],
|
|
438
|
+
/** Detail query keys */ details: () => [...exports.resourceUsageLogKeys.all, 'detail'],
|
|
439
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.resourceUsageLogKeys.details(), id],
|
|
440
|
+
};
|
|
441
|
+
exports.resourceUsageSummaryKeys = {
|
|
442
|
+
/** All resourceUsageSummary queries */ all: ['resourceusagesummary'],
|
|
443
|
+
/** List query keys */ lists: () => [...exports.resourceUsageSummaryKeys.all, 'list'],
|
|
444
|
+
/** List query key with variables */ list: (variables) => [...exports.resourceUsageSummaryKeys.lists(), variables],
|
|
445
|
+
/** Detail query keys */ details: () => [...exports.resourceUsageSummaryKeys.all, 'detail'],
|
|
446
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.resourceUsageSummaryKeys.details(), id],
|
|
447
|
+
};
|
|
448
|
+
exports.resourceUtilizationDailyKeys = {
|
|
449
|
+
/** All resourceUtilizationDaily queries */ all: ['resourceutilizationdaily'],
|
|
450
|
+
/** List query keys */ lists: () => [...exports.resourceUtilizationDailyKeys.all, 'list'],
|
|
451
|
+
/** List query key with variables */ list: (variables) => [...exports.resourceUtilizationDailyKeys.lists(), variables],
|
|
452
|
+
/** Detail query keys */ details: () => [...exports.resourceUtilizationDailyKeys.all, 'detail'],
|
|
453
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.resourceUtilizationDailyKeys.details(), id],
|
|
454
|
+
};
|
|
455
|
+
exports.resourcesHealthKeys = {
|
|
456
|
+
/** All resourcesHealth queries */ all: ['resourceshealth'],
|
|
457
|
+
/** List query keys */ lists: () => [...exports.resourcesHealthKeys.all, 'list'],
|
|
458
|
+
/** List query key with variables */ list: (variables) => [...exports.resourcesHealthKeys.lists(), variables],
|
|
459
|
+
/** Detail query keys */ details: () => [...exports.resourcesHealthKeys.all, 'detail'],
|
|
460
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.resourcesHealthKeys.details(), id],
|
|
461
|
+
};
|
|
324
462
|
exports.resourcesRequirementsStateKeys = {
|
|
325
463
|
/** All resourcesRequirementsState queries */ all: ['resourcesrequirementsstate'],
|
|
326
464
|
/** List query keys */ lists: () => [...exports.resourcesRequirementsStateKeys.all, 'list'],
|
|
@@ -335,6 +473,20 @@ exports.resourcesResolvedRequirementKeys = {
|
|
|
335
473
|
/** Detail query keys */ details: () => [...exports.resourcesResolvedRequirementKeys.all, 'detail'],
|
|
336
474
|
/** Detail query key for specific item */ detail: (id) => [...exports.resourcesResolvedRequirementKeys.details(), id],
|
|
337
475
|
};
|
|
476
|
+
exports.webhookEndpointKeys = {
|
|
477
|
+
/** All webhookEndpoint queries */ all: ['webhookendpoint'],
|
|
478
|
+
/** List query keys */ lists: () => [...exports.webhookEndpointKeys.all, 'list'],
|
|
479
|
+
/** List query key with variables */ list: (variables) => [...exports.webhookEndpointKeys.lists(), variables],
|
|
480
|
+
/** Detail query keys */ details: () => [...exports.webhookEndpointKeys.all, 'detail'],
|
|
481
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.webhookEndpointKeys.details(), id],
|
|
482
|
+
};
|
|
483
|
+
exports.webhookEventKeys = {
|
|
484
|
+
/** All webhookEvent queries */ all: ['webhookevent'],
|
|
485
|
+
/** List query keys */ lists: () => [...exports.webhookEventKeys.all, 'list'],
|
|
486
|
+
/** List query key with variables */ list: (variables) => [...exports.webhookEventKeys.lists(), variables],
|
|
487
|
+
/** Detail query keys */ details: () => [...exports.webhookEventKeys.all, 'detail'],
|
|
488
|
+
/** Detail query key for specific item */ detail: (id) => [...exports.webhookEventKeys.details(), id],
|
|
489
|
+
};
|
|
338
490
|
// ============================================================================
|
|
339
491
|
// Custom Query Keys
|
|
340
492
|
// ============================================================================
|
|
@@ -365,6 +517,7 @@ exports.customQueryKeys = {
|
|
|
365
517
|
*/
|
|
366
518
|
exports.queryKeys = {
|
|
367
519
|
dbPreset: exports.dbPresetKeys,
|
|
520
|
+
declaredCapacity: exports.declaredCapacityKeys,
|
|
368
521
|
functionApiBinding: exports.functionApiBindingKeys,
|
|
369
522
|
functionDefinition: exports.functionDefinitionKeys,
|
|
370
523
|
functionDeployment: exports.functionDeploymentKeys,
|
|
@@ -379,34 +532,54 @@ exports.queryKeys = {
|
|
|
379
532
|
functionGraphRef: exports.functionGraphRefKeys,
|
|
380
533
|
functionGraphStore: exports.functionGraphStoreKeys,
|
|
381
534
|
functionInvocation: exports.functionInvocationKeys,
|
|
382
|
-
|
|
535
|
+
getAllTreeNodesRecord: exports.getAllTreeNodesRecordKeys,
|
|
383
536
|
infraCommit: exports.infraCommitKeys,
|
|
384
|
-
|
|
537
|
+
infraGetAllTreeNodesRecord: exports.infraGetAllTreeNodesRecordKeys,
|
|
385
538
|
infraObject: exports.infraObjectKeys,
|
|
386
539
|
infraRef: exports.infraRefKeys,
|
|
387
540
|
infraStore: exports.infraStoreKeys,
|
|
388
541
|
integrationProvider: exports.integrationProviderKeys,
|
|
389
542
|
namespace: exports.namespaceKeys,
|
|
390
543
|
namespaceEvent: exports.namespaceEventKeys,
|
|
544
|
+
platformDeclaredCapacity: exports.platformDeclaredCapacityKeys,
|
|
391
545
|
platformFunctionApiBinding: exports.platformFunctionApiBindingKeys,
|
|
392
546
|
platformFunctionDefinition: exports.platformFunctionDefinitionKeys,
|
|
393
547
|
platformFunctionDeployment: exports.platformFunctionDeploymentKeys,
|
|
394
548
|
platformFunctionDeploymentEvent: exports.platformFunctionDeploymentEventKeys,
|
|
395
549
|
platformFunctionExecutionLog: exports.platformFunctionExecutionLogKeys,
|
|
396
550
|
platformFunctionInvocation: exports.platformFunctionInvocationKeys,
|
|
551
|
+
platformInfraCommit: exports.platformInfraCommitKeys,
|
|
552
|
+
platformInfraGetAllTreeNodesRecord: exports.platformInfraGetAllTreeNodesRecordKeys,
|
|
553
|
+
platformInfraObject: exports.platformInfraObjectKeys,
|
|
554
|
+
platformInfraRef: exports.platformInfraRefKeys,
|
|
555
|
+
platformInfraStore: exports.platformInfraStoreKeys,
|
|
397
556
|
platformNamespace: exports.platformNamespaceKeys,
|
|
398
557
|
platformNamespaceEvent: exports.platformNamespaceEventKeys,
|
|
399
558
|
platformResource: exports.platformResourceKeys,
|
|
400
559
|
platformResourceDefinition: exports.platformResourceDefinitionKeys,
|
|
401
560
|
platformResourceEvent: exports.platformResourceEventKeys,
|
|
561
|
+
platformResourceInstallation: exports.platformResourceInstallationKeys,
|
|
402
562
|
platformResourceStatusCheck: exports.platformResourceStatusCheckKeys,
|
|
563
|
+
platformResourceUsageLog: exports.platformResourceUsageLogKeys,
|
|
564
|
+
platformResourceUsageSummary: exports.platformResourceUsageSummaryKeys,
|
|
565
|
+
platformResourceUtilizationDaily: exports.platformResourceUtilizationDailyKeys,
|
|
566
|
+
platformResourcesHealth: exports.platformResourcesHealthKeys,
|
|
403
567
|
platformResourcesRequirementsState: exports.platformResourcesRequirementsStateKeys,
|
|
404
568
|
platformResourcesResolvedRequirement: exports.platformResourcesResolvedRequirementKeys,
|
|
569
|
+
platformWebhookEndpoint: exports.platformWebhookEndpointKeys,
|
|
570
|
+
platformWebhookEvent: exports.platformWebhookEventKeys,
|
|
405
571
|
resource: exports.resourceKeys,
|
|
406
572
|
resourceDefinition: exports.resourceDefinitionKeys,
|
|
407
573
|
resourceEvent: exports.resourceEventKeys,
|
|
574
|
+
resourceInstallation: exports.resourceInstallationKeys,
|
|
408
575
|
resourceStatusCheck: exports.resourceStatusCheckKeys,
|
|
576
|
+
resourceUsageLog: exports.resourceUsageLogKeys,
|
|
577
|
+
resourceUsageSummary: exports.resourceUsageSummaryKeys,
|
|
578
|
+
resourceUtilizationDaily: exports.resourceUtilizationDailyKeys,
|
|
579
|
+
resourcesHealth: exports.resourcesHealthKeys,
|
|
409
580
|
resourcesRequirementsState: exports.resourcesRequirementsStateKeys,
|
|
410
581
|
resourcesResolvedRequirement: exports.resourcesResolvedRequirementKeys,
|
|
582
|
+
webhookEndpoint: exports.webhookEndpointKeys,
|
|
583
|
+
webhookEvent: exports.webhookEventKeys,
|
|
411
584
|
custom: exports.customQueryKeys,
|
|
412
585
|
};
|
package/compute/orm/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { OrmClientConfig } from './client';
|
|
2
2
|
import { DbPresetModel } from './models/dbPreset';
|
|
3
|
+
import { DeclaredCapacityModel } from './models/declaredCapacity';
|
|
3
4
|
import { FunctionApiBindingModel } from './models/functionApiBinding';
|
|
4
5
|
import { FunctionDefinitionModel } from './models/functionDefinition';
|
|
5
6
|
import { FunctionDeploymentModel } from './models/functionDeployment';
|
|
@@ -14,35 +15,55 @@ import { FunctionGraphObjectModel } from './models/functionGraphObject';
|
|
|
14
15
|
import { FunctionGraphRefModel } from './models/functionGraphRef';
|
|
15
16
|
import { FunctionGraphStoreModel } from './models/functionGraphStore';
|
|
16
17
|
import { FunctionInvocationModel } from './models/functionInvocation';
|
|
17
|
-
import {
|
|
18
|
+
import { GetAllTreeNodesRecordModel } from './models/getAllTreeNodesRecord';
|
|
18
19
|
import { InfraCommitModel } from './models/infraCommit';
|
|
19
|
-
import {
|
|
20
|
+
import { InfraGetAllTreeNodesRecordModel } from './models/infraGetAllTreeNodesRecord';
|
|
20
21
|
import { InfraObjectModel } from './models/infraObject';
|
|
21
22
|
import { InfraRefModel } from './models/infraRef';
|
|
22
23
|
import { InfraStoreModel } from './models/infraStore';
|
|
23
24
|
import { IntegrationProviderModel } from './models/integrationProvider';
|
|
24
25
|
import { NamespaceModel } from './models/namespace';
|
|
25
26
|
import { NamespaceEventModel } from './models/namespaceEvent';
|
|
27
|
+
import { PlatformDeclaredCapacityModel } from './models/platformDeclaredCapacity';
|
|
26
28
|
import { PlatformFunctionApiBindingModel } from './models/platformFunctionApiBinding';
|
|
27
29
|
import { PlatformFunctionDefinitionModel } from './models/platformFunctionDefinition';
|
|
28
30
|
import { PlatformFunctionDeploymentModel } from './models/platformFunctionDeployment';
|
|
29
31
|
import { PlatformFunctionDeploymentEventModel } from './models/platformFunctionDeploymentEvent';
|
|
30
32
|
import { PlatformFunctionExecutionLogModel } from './models/platformFunctionExecutionLog';
|
|
31
33
|
import { PlatformFunctionInvocationModel } from './models/platformFunctionInvocation';
|
|
34
|
+
import { PlatformInfraCommitModel } from './models/platformInfraCommit';
|
|
35
|
+
import { PlatformInfraGetAllTreeNodesRecordModel } from './models/platformInfraGetAllTreeNodesRecord';
|
|
36
|
+
import { PlatformInfraObjectModel } from './models/platformInfraObject';
|
|
37
|
+
import { PlatformInfraRefModel } from './models/platformInfraRef';
|
|
38
|
+
import { PlatformInfraStoreModel } from './models/platformInfraStore';
|
|
32
39
|
import { PlatformNamespaceModel } from './models/platformNamespace';
|
|
33
40
|
import { PlatformNamespaceEventModel } from './models/platformNamespaceEvent';
|
|
34
41
|
import { PlatformResourceModel } from './models/platformResource';
|
|
35
42
|
import { PlatformResourceDefinitionModel } from './models/platformResourceDefinition';
|
|
36
43
|
import { PlatformResourceEventModel } from './models/platformResourceEvent';
|
|
44
|
+
import { PlatformResourceInstallationModel } from './models/platformResourceInstallation';
|
|
37
45
|
import { PlatformResourceStatusCheckModel } from './models/platformResourceStatusCheck';
|
|
46
|
+
import { PlatformResourceUsageLogModel } from './models/platformResourceUsageLog';
|
|
47
|
+
import { PlatformResourceUsageSummaryModel } from './models/platformResourceUsageSummary';
|
|
48
|
+
import { PlatformResourceUtilizationDailyModel } from './models/platformResourceUtilizationDaily';
|
|
49
|
+
import { PlatformResourcesHealthModel } from './models/platformResourcesHealth';
|
|
38
50
|
import { PlatformResourcesRequirementsStateModel } from './models/platformResourcesRequirementsState';
|
|
39
51
|
import { PlatformResourcesResolvedRequirementModel } from './models/platformResourcesResolvedRequirement';
|
|
52
|
+
import { PlatformWebhookEndpointModel } from './models/platformWebhookEndpoint';
|
|
53
|
+
import { PlatformWebhookEventModel } from './models/platformWebhookEvent';
|
|
40
54
|
import { ResourceModel } from './models/resource';
|
|
41
55
|
import { ResourceDefinitionModel } from './models/resourceDefinition';
|
|
42
56
|
import { ResourceEventModel } from './models/resourceEvent';
|
|
57
|
+
import { ResourceInstallationModel } from './models/resourceInstallation';
|
|
43
58
|
import { ResourceStatusCheckModel } from './models/resourceStatusCheck';
|
|
59
|
+
import { ResourceUsageLogModel } from './models/resourceUsageLog';
|
|
60
|
+
import { ResourceUsageSummaryModel } from './models/resourceUsageSummary';
|
|
61
|
+
import { ResourceUtilizationDailyModel } from './models/resourceUtilizationDaily';
|
|
62
|
+
import { ResourcesHealthModel } from './models/resourcesHealth';
|
|
44
63
|
import { ResourcesRequirementsStateModel } from './models/resourcesRequirementsState';
|
|
45
64
|
import { ResourcesResolvedRequirementModel } from './models/resourcesResolvedRequirement';
|
|
65
|
+
import { WebhookEndpointModel } from './models/webhookEndpoint';
|
|
66
|
+
import { WebhookEventModel } from './models/webhookEvent';
|
|
46
67
|
export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
|
|
47
68
|
export { GraphQLRequestError, FetchAdapter } from './client';
|
|
48
69
|
export { QueryBuilder } from './query-builder';
|
|
@@ -75,6 +96,7 @@ export { createMutationOperations } from './mutation';
|
|
|
75
96
|
*/
|
|
76
97
|
export declare function createClient(config: OrmClientConfig): {
|
|
77
98
|
dbPreset: DbPresetModel;
|
|
99
|
+
declaredCapacity: DeclaredCapacityModel;
|
|
78
100
|
functionApiBinding: FunctionApiBindingModel;
|
|
79
101
|
functionDefinition: FunctionDefinitionModel;
|
|
80
102
|
functionDeployment: FunctionDeploymentModel;
|
|
@@ -89,35 +111,55 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
89
111
|
functionGraphRef: FunctionGraphRefModel;
|
|
90
112
|
functionGraphStore: FunctionGraphStoreModel;
|
|
91
113
|
functionInvocation: FunctionInvocationModel;
|
|
92
|
-
|
|
114
|
+
getAllTreeNodesRecord: GetAllTreeNodesRecordModel;
|
|
93
115
|
infraCommit: InfraCommitModel;
|
|
94
|
-
|
|
116
|
+
infraGetAllTreeNodesRecord: InfraGetAllTreeNodesRecordModel;
|
|
95
117
|
infraObject: InfraObjectModel;
|
|
96
118
|
infraRef: InfraRefModel;
|
|
97
119
|
infraStore: InfraStoreModel;
|
|
98
120
|
integrationProvider: IntegrationProviderModel;
|
|
99
121
|
namespace: NamespaceModel;
|
|
100
122
|
namespaceEvent: NamespaceEventModel;
|
|
123
|
+
platformDeclaredCapacity: PlatformDeclaredCapacityModel;
|
|
101
124
|
platformFunctionApiBinding: PlatformFunctionApiBindingModel;
|
|
102
125
|
platformFunctionDefinition: PlatformFunctionDefinitionModel;
|
|
103
126
|
platformFunctionDeployment: PlatformFunctionDeploymentModel;
|
|
104
127
|
platformFunctionDeploymentEvent: PlatformFunctionDeploymentEventModel;
|
|
105
128
|
platformFunctionExecutionLog: PlatformFunctionExecutionLogModel;
|
|
106
129
|
platformFunctionInvocation: PlatformFunctionInvocationModel;
|
|
130
|
+
platformInfraCommit: PlatformInfraCommitModel;
|
|
131
|
+
platformInfraGetAllTreeNodesRecord: PlatformInfraGetAllTreeNodesRecordModel;
|
|
132
|
+
platformInfraObject: PlatformInfraObjectModel;
|
|
133
|
+
platformInfraRef: PlatformInfraRefModel;
|
|
134
|
+
platformInfraStore: PlatformInfraStoreModel;
|
|
107
135
|
platformNamespace: PlatformNamespaceModel;
|
|
108
136
|
platformNamespaceEvent: PlatformNamespaceEventModel;
|
|
109
137
|
platformResource: PlatformResourceModel;
|
|
110
138
|
platformResourceDefinition: PlatformResourceDefinitionModel;
|
|
111
139
|
platformResourceEvent: PlatformResourceEventModel;
|
|
140
|
+
platformResourceInstallation: PlatformResourceInstallationModel;
|
|
112
141
|
platformResourceStatusCheck: PlatformResourceStatusCheckModel;
|
|
142
|
+
platformResourceUsageLog: PlatformResourceUsageLogModel;
|
|
143
|
+
platformResourceUsageSummary: PlatformResourceUsageSummaryModel;
|
|
144
|
+
platformResourceUtilizationDaily: PlatformResourceUtilizationDailyModel;
|
|
145
|
+
platformResourcesHealth: PlatformResourcesHealthModel;
|
|
113
146
|
platformResourcesRequirementsState: PlatformResourcesRequirementsStateModel;
|
|
114
147
|
platformResourcesResolvedRequirement: PlatformResourcesResolvedRequirementModel;
|
|
148
|
+
platformWebhookEndpoint: PlatformWebhookEndpointModel;
|
|
149
|
+
platformWebhookEvent: PlatformWebhookEventModel;
|
|
115
150
|
resource: ResourceModel;
|
|
116
151
|
resourceDefinition: ResourceDefinitionModel;
|
|
117
152
|
resourceEvent: ResourceEventModel;
|
|
153
|
+
resourceInstallation: ResourceInstallationModel;
|
|
118
154
|
resourceStatusCheck: ResourceStatusCheckModel;
|
|
155
|
+
resourceUsageLog: ResourceUsageLogModel;
|
|
156
|
+
resourceUsageSummary: ResourceUsageSummaryModel;
|
|
157
|
+
resourceUtilizationDaily: ResourceUtilizationDailyModel;
|
|
158
|
+
resourcesHealth: ResourcesHealthModel;
|
|
119
159
|
resourcesRequirementsState: ResourcesRequirementsStateModel;
|
|
120
160
|
resourcesResolvedRequirement: ResourcesResolvedRequirementModel;
|
|
161
|
+
webhookEndpoint: WebhookEndpointModel;
|
|
162
|
+
webhookEvent: WebhookEventModel;
|
|
121
163
|
query: {
|
|
122
164
|
readFunctionGraph: (args: import("./query").ReadFunctionGraphVariables, options?: {
|
|
123
165
|
select?: Record<string, unknown>;
|
|
@@ -186,11 +228,66 @@ export declare function createClient(config: OrmClientConfig): {
|
|
|
186
228
|
} & import("./select-types").StrictSelect<S, import("./input-types").InsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
187
229
|
insertNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").InsertNodeAtPathPayload, S> | null;
|
|
188
230
|
}>;
|
|
231
|
+
platformInfraInitEmptyRepo: <S extends import("./input-types").PlatformInfraInitEmptyRepoPayloadSelect>(args: import("./mutation").PlatformInfraInitEmptyRepoVariables, options: {
|
|
232
|
+
select: S;
|
|
233
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").PlatformInfraInitEmptyRepoPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
234
|
+
platformInfraInitEmptyRepo: import("./select-types").InferSelectResult<import("./input-types").PlatformInfraInitEmptyRepoPayload, S> | null;
|
|
235
|
+
}>;
|
|
236
|
+
platformInfraInsertNodeAtPath: <S extends import("./input-types").PlatformInfraInsertNodeAtPathPayloadSelect>(args: import("./mutation").PlatformInfraInsertNodeAtPathVariables, options: {
|
|
237
|
+
select: S;
|
|
238
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").PlatformInfraInsertNodeAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
239
|
+
platformInfraInsertNodeAtPath: import("./select-types").InferSelectResult<import("./input-types").PlatformInfraInsertNodeAtPathPayload, S> | null;
|
|
240
|
+
}>;
|
|
241
|
+
platformInfraSetDataAtPath: <S extends import("./input-types").PlatformInfraSetDataAtPathPayloadSelect>(args: import("./mutation").PlatformInfraSetDataAtPathVariables, options: {
|
|
242
|
+
select: S;
|
|
243
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").PlatformInfraSetDataAtPathPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
244
|
+
platformInfraSetDataAtPath: import("./select-types").InferSelectResult<import("./input-types").PlatformInfraSetDataAtPathPayload, S> | null;
|
|
245
|
+
}>;
|
|
246
|
+
platformResourceInstallationsInstall: <S extends import("./input-types").PlatformResourceInstallationsInstallPayloadSelect>(args: import("./mutation").PlatformResourceInstallationsInstallVariables, options: {
|
|
247
|
+
select: S;
|
|
248
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").PlatformResourceInstallationsInstallPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
249
|
+
platformResourceInstallationsInstall: import("./select-types").InferSelectResult<import("./input-types").PlatformResourceInstallationsInstallPayload, S> | null;
|
|
250
|
+
}>;
|
|
251
|
+
platformResourceInstallationsRollback: <S extends import("./input-types").PlatformResourceInstallationsRollbackPayloadSelect>(args: import("./mutation").PlatformResourceInstallationsRollbackVariables, options: {
|
|
252
|
+
select: S;
|
|
253
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").PlatformResourceInstallationsRollbackPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
254
|
+
platformResourceInstallationsRollback: import("./select-types").InferSelectResult<import("./input-types").PlatformResourceInstallationsRollbackPayload, S> | null;
|
|
255
|
+
}>;
|
|
256
|
+
platformResourceInstallationsUninstall: <S extends import("./input-types").PlatformResourceInstallationsUninstallPayloadSelect>(args: import("./mutation").PlatformResourceInstallationsUninstallVariables, options: {
|
|
257
|
+
select: S;
|
|
258
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").PlatformResourceInstallationsUninstallPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
259
|
+
platformResourceInstallationsUninstall: import("./select-types").InferSelectResult<import("./input-types").PlatformResourceInstallationsUninstallPayload, S> | null;
|
|
260
|
+
}>;
|
|
261
|
+
platformResourceInstallationsUpgrade: <S extends import("./input-types").PlatformResourceInstallationsUpgradePayloadSelect>(args: import("./mutation").PlatformResourceInstallationsUpgradeVariables, options: {
|
|
262
|
+
select: S;
|
|
263
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").PlatformResourceInstallationsUpgradePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
264
|
+
platformResourceInstallationsUpgrade: import("./select-types").InferSelectResult<import("./input-types").PlatformResourceInstallationsUpgradePayload, S> | null;
|
|
265
|
+
}>;
|
|
189
266
|
provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
|
|
190
267
|
select: S;
|
|
191
268
|
} & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
192
269
|
provisionBucket: import("./select-types").InferSelectResult<import("./input-types").ProvisionBucketPayload, S> | null;
|
|
193
270
|
}>;
|
|
271
|
+
resourceInstallationsInstall: <S extends import("./input-types").ResourceInstallationsInstallPayloadSelect>(args: import("./mutation").ResourceInstallationsInstallVariables, options: {
|
|
272
|
+
select: S;
|
|
273
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ResourceInstallationsInstallPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
274
|
+
resourceInstallationsInstall: import("./select-types").InferSelectResult<import("./input-types").ResourceInstallationsInstallPayload, S> | null;
|
|
275
|
+
}>;
|
|
276
|
+
resourceInstallationsRollback: <S extends import("./input-types").ResourceInstallationsRollbackPayloadSelect>(args: import("./mutation").ResourceInstallationsRollbackVariables, options: {
|
|
277
|
+
select: S;
|
|
278
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ResourceInstallationsRollbackPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
279
|
+
resourceInstallationsRollback: import("./select-types").InferSelectResult<import("./input-types").ResourceInstallationsRollbackPayload, S> | null;
|
|
280
|
+
}>;
|
|
281
|
+
resourceInstallationsUninstall: <S extends import("./input-types").ResourceInstallationsUninstallPayloadSelect>(args: import("./mutation").ResourceInstallationsUninstallVariables, options: {
|
|
282
|
+
select: S;
|
|
283
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ResourceInstallationsUninstallPayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
284
|
+
resourceInstallationsUninstall: import("./select-types").InferSelectResult<import("./input-types").ResourceInstallationsUninstallPayload, S> | null;
|
|
285
|
+
}>;
|
|
286
|
+
resourceInstallationsUpgrade: <S extends import("./input-types").ResourceInstallationsUpgradePayloadSelect>(args: import("./mutation").ResourceInstallationsUpgradeVariables, options: {
|
|
287
|
+
select: S;
|
|
288
|
+
} & import("./select-types").StrictSelect<S, import("./input-types").ResourceInstallationsUpgradePayloadSelect>) => import("./query-builder").QueryBuilder<{
|
|
289
|
+
resourceInstallationsUpgrade: import("./select-types").InferSelectResult<import("./input-types").ResourceInstallationsUpgradePayload, S> | null;
|
|
290
|
+
}>;
|
|
194
291
|
saveGraph: <S extends import("./input-types").SaveGraphPayloadSelect>(args: import("./mutation").SaveGraphVariables, options: {
|
|
195
292
|
select: S;
|
|
196
293
|
} & import("./select-types").StrictSelect<S, import("./input-types").SaveGraphPayloadSelect>) => import("./query-builder").QueryBuilder<{
|