@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
|
@@ -23,12 +23,12 @@ export const commitKeys = {
|
|
|
23
23
|
/** Detail query keys */ details: () => [...commitKeys.all, 'detail'],
|
|
24
24
|
/** Detail query key for specific item */ detail: (id) => [...commitKeys.details(), id],
|
|
25
25
|
};
|
|
26
|
-
export const
|
|
27
|
-
/** All
|
|
28
|
-
/** List query keys */ lists: () => [...
|
|
29
|
-
/** List query key with variables */ list: (variables) => [...
|
|
30
|
-
/** Detail query keys */ details: () => [...
|
|
31
|
-
/** Detail query key for specific item */ detail: (id) => [...
|
|
26
|
+
export const getAllTreeNodesRecordKeys = {
|
|
27
|
+
/** All getAllTreeNodesRecord queries */ all: ['getalltreenodesrecord'],
|
|
28
|
+
/** List query keys */ lists: () => [...getAllTreeNodesRecordKeys.all, 'list'],
|
|
29
|
+
/** List query key with variables */ list: (variables) => [...getAllTreeNodesRecordKeys.lists(), variables],
|
|
30
|
+
/** Detail query keys */ details: () => [...getAllTreeNodesRecordKeys.all, 'detail'],
|
|
31
|
+
/** Detail query key for specific item */ detail: (id) => [...getAllTreeNodesRecordKeys.details(), id],
|
|
32
32
|
};
|
|
33
33
|
export const objectKeys = {
|
|
34
34
|
/** All object queries */ all: ['object'],
|
|
@@ -75,7 +75,7 @@ export const storeKeys = {
|
|
|
75
75
|
*/
|
|
76
76
|
export const queryKeys = {
|
|
77
77
|
commit: commitKeys,
|
|
78
|
-
|
|
78
|
+
getAllTreeNodesRecord: getAllTreeNodesRecordKeys,
|
|
79
79
|
object: objectKeys,
|
|
80
80
|
ref: refKeys,
|
|
81
81
|
store: storeKeys,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { OrmClientConfig } from './client';
|
|
2
2
|
import { CommitModel } from './models/commit';
|
|
3
|
-
import {
|
|
3
|
+
import { GetAllTreeNodesRecordModel } from './models/getAllTreeNodesRecord';
|
|
4
4
|
import { ObjectModel } from './models/object';
|
|
5
5
|
import { RefModel } from './models/ref';
|
|
6
6
|
import { StoreModel } from './models/store';
|
|
@@ -35,7 +35,7 @@ export { createMutationOperations } from './mutation';
|
|
|
35
35
|
*/
|
|
36
36
|
export declare function createClient(config: OrmClientConfig): {
|
|
37
37
|
commit: CommitModel;
|
|
38
|
-
|
|
38
|
+
getAllTreeNodesRecord: GetAllTreeNodesRecordModel;
|
|
39
39
|
object: ObjectModel;
|
|
40
40
|
ref: RefModel;
|
|
41
41
|
store: StoreModel;
|
package/esm/objects/orm/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { OrmClient } from './client';
|
|
7
7
|
import { CommitModel } from './models/commit';
|
|
8
|
-
import {
|
|
8
|
+
import { GetAllTreeNodesRecordModel } from './models/getAllTreeNodesRecord';
|
|
9
9
|
import { ObjectModel } from './models/object';
|
|
10
10
|
import { RefModel } from './models/ref';
|
|
11
11
|
import { StoreModel } from './models/store';
|
|
@@ -42,7 +42,7 @@ export function createClient(config) {
|
|
|
42
42
|
const client = new OrmClient(config);
|
|
43
43
|
return {
|
|
44
44
|
commit: new CommitModel(client),
|
|
45
|
-
|
|
45
|
+
getAllTreeNodesRecord: new GetAllTreeNodesRecordModel(client),
|
|
46
46
|
object: new ObjectModel(client),
|
|
47
47
|
ref: new RefModel(client),
|
|
48
48
|
store: new StoreModel(client),
|
|
@@ -250,7 +250,7 @@ export interface Commit {
|
|
|
250
250
|
/** Root object ID of the tree snapshot at this commit */
|
|
251
251
|
treeId?: string | null;
|
|
252
252
|
}
|
|
253
|
-
export interface
|
|
253
|
+
export interface GetAllTreeNodesRecord {
|
|
254
254
|
data?: Record<string, unknown> | null;
|
|
255
255
|
path?: string[] | null;
|
|
256
256
|
}
|
|
@@ -308,7 +308,7 @@ export interface PageInfo {
|
|
|
308
308
|
}
|
|
309
309
|
export interface CommitRelations {
|
|
310
310
|
}
|
|
311
|
-
export interface
|
|
311
|
+
export interface GetAllTreeNodesRecordRelations {
|
|
312
312
|
}
|
|
313
313
|
export interface ObjectRelations {
|
|
314
314
|
}
|
|
@@ -317,7 +317,7 @@ export interface RefRelations {
|
|
|
317
317
|
export interface StoreRelations {
|
|
318
318
|
}
|
|
319
319
|
export type CommitWithRelations = Commit & CommitRelations;
|
|
320
|
-
export type
|
|
320
|
+
export type GetAllTreeNodesRecordWithRelations = GetAllTreeNodesRecord & GetAllTreeNodesRecordRelations;
|
|
321
321
|
export type ObjectWithRelations = Object & ObjectRelations;
|
|
322
322
|
export type RefWithRelations = Ref & RefRelations;
|
|
323
323
|
export type StoreWithRelations = Store & StoreRelations;
|
|
@@ -332,7 +332,7 @@ export type CommitSelect = {
|
|
|
332
332
|
storeId?: boolean;
|
|
333
333
|
treeId?: boolean;
|
|
334
334
|
};
|
|
335
|
-
export type
|
|
335
|
+
export type GetAllTreeNodesRecordSelect = {
|
|
336
336
|
data?: boolean;
|
|
337
337
|
path?: boolean;
|
|
338
338
|
};
|
|
@@ -384,12 +384,12 @@ export interface CommitFilter {
|
|
|
384
384
|
/** Filter by the object’s `treeId` field. */
|
|
385
385
|
treeId?: UUIDFilter;
|
|
386
386
|
}
|
|
387
|
-
export interface
|
|
387
|
+
export interface GetAllTreeNodesRecordFilter {
|
|
388
388
|
data?: JSONFilter;
|
|
389
389
|
path?: StringListFilter;
|
|
390
|
-
and?:
|
|
391
|
-
or?:
|
|
392
|
-
not?:
|
|
390
|
+
and?: GetAllTreeNodesRecordFilter[];
|
|
391
|
+
or?: GetAllTreeNodesRecordFilter[];
|
|
392
|
+
not?: GetAllTreeNodesRecordFilter;
|
|
393
393
|
}
|
|
394
394
|
export interface ObjectFilter {
|
|
395
395
|
/** Checks for all expressions in this list. */
|
|
@@ -448,7 +448,7 @@ export interface StoreFilter {
|
|
|
448
448
|
or?: StoreFilter[];
|
|
449
449
|
}
|
|
450
450
|
export type CommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
451
|
-
export type
|
|
451
|
+
export type GetAllTreeNodesRecordsOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'DATA_ASC' | 'DATA_DESC' | 'PATH_ASC' | 'PATH_DESC';
|
|
452
452
|
export type ObjectOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'ID_ASC' | 'ID_DESC' | 'KIDS_ASC' | 'KIDS_DESC' | 'KTREE_ASC' | 'KTREE_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
453
453
|
export type RefOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC';
|
|
454
454
|
export type StoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
@@ -484,23 +484,23 @@ export interface DeleteCommitInput {
|
|
|
484
484
|
clientMutationId?: string;
|
|
485
485
|
id: string;
|
|
486
486
|
}
|
|
487
|
-
export interface
|
|
487
|
+
export interface CreateGetAllTreeNodesRecordInput {
|
|
488
488
|
clientMutationId?: string;
|
|
489
|
-
|
|
489
|
+
getAllTreeNodesRecord: {
|
|
490
490
|
data?: Record<string, unknown>;
|
|
491
491
|
path?: string[];
|
|
492
492
|
};
|
|
493
493
|
}
|
|
494
|
-
export interface
|
|
494
|
+
export interface GetAllTreeNodesRecordPatch {
|
|
495
495
|
data?: Record<string, unknown> | null;
|
|
496
496
|
path?: string[] | null;
|
|
497
497
|
}
|
|
498
|
-
export interface
|
|
498
|
+
export interface UpdateGetAllTreeNodesRecordInput {
|
|
499
499
|
clientMutationId?: string;
|
|
500
500
|
id: string;
|
|
501
|
-
|
|
501
|
+
getAllTreeNodesRecordPatch: GetAllTreeNodesRecordPatch;
|
|
502
502
|
}
|
|
503
|
-
export interface
|
|
503
|
+
export interface DeleteGetAllTreeNodesRecordInput {
|
|
504
504
|
clientMutationId?: string;
|
|
505
505
|
id: string;
|
|
506
506
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GetAllTreeNodesRecord model for ORM client
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { OrmClient } from '../client';
|
|
7
|
+
import { QueryBuilder } from '../query-builder';
|
|
8
|
+
import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
|
|
9
|
+
import type { GetAllTreeNodesRecordWithRelations, GetAllTreeNodesRecordSelect, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy, CreateGetAllTreeNodesRecordInput } from '../input-types';
|
|
10
|
+
export declare class GetAllTreeNodesRecordModel {
|
|
11
|
+
private client;
|
|
12
|
+
constructor(client: OrmClient);
|
|
13
|
+
findMany<S extends GetAllTreeNodesRecordSelect>(args: FindManyArgs<S, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy> & {
|
|
14
|
+
select: S;
|
|
15
|
+
} & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
16
|
+
getAllTreeNodes: ConnectionResult<InferSelectResult<GetAllTreeNodesRecordWithRelations, S>>;
|
|
17
|
+
}>;
|
|
18
|
+
findFirst<S extends GetAllTreeNodesRecordSelect>(args: FindFirstArgs<S, GetAllTreeNodesRecordFilter, GetAllTreeNodesRecordsOrderBy> & {
|
|
19
|
+
select: S;
|
|
20
|
+
} & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
21
|
+
getAllTreeNodesRecord: InferSelectResult<GetAllTreeNodesRecordWithRelations, S> | null;
|
|
22
|
+
}>;
|
|
23
|
+
create<S extends GetAllTreeNodesRecordSelect>(args: CreateArgs<S, CreateGetAllTreeNodesRecordInput['getAllTreeNodesRecord']> & {
|
|
24
|
+
select: S;
|
|
25
|
+
} & StrictSelect<S, GetAllTreeNodesRecordSelect>): QueryBuilder<{
|
|
26
|
+
createGetAllTreeNodesRecord: {
|
|
27
|
+
getAllTreeNodesRecord: InferSelectResult<GetAllTreeNodesRecordWithRelations, S>;
|
|
28
|
+
};
|
|
29
|
+
}>;
|
|
30
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, } from '../query-builder';
|
|
2
2
|
import { connectionFieldsMap } from '../input-types';
|
|
3
|
-
export class
|
|
3
|
+
export class GetAllTreeNodesRecordModel {
|
|
4
4
|
client;
|
|
5
5
|
constructor(client) {
|
|
6
6
|
this.client = client;
|
|
7
7
|
}
|
|
8
8
|
findMany(args) {
|
|
9
|
-
const { document, variables } = buildFindManyDocument('
|
|
9
|
+
const { document, variables } = buildFindManyDocument('GetAllTreeNodesRecord', 'getAllTreeNodes', args.select, {
|
|
10
10
|
where: args?.where,
|
|
11
11
|
orderBy: args?.orderBy,
|
|
12
12
|
first: args?.first,
|
|
@@ -14,40 +14,40 @@ export class GetAllRecordModel {
|
|
|
14
14
|
after: args?.after,
|
|
15
15
|
before: args?.before,
|
|
16
16
|
offset: args?.offset,
|
|
17
|
-
}, '
|
|
17
|
+
}, 'GetAllTreeNodesRecordFilter', 'GetAllTreeNodesRecordsOrderBy', connectionFieldsMap);
|
|
18
18
|
return new QueryBuilder({
|
|
19
19
|
client: this.client,
|
|
20
20
|
operation: 'query',
|
|
21
|
-
operationName: '
|
|
22
|
-
fieldName: '
|
|
21
|
+
operationName: 'GetAllTreeNodesRecord',
|
|
22
|
+
fieldName: 'getAllTreeNodes',
|
|
23
23
|
document,
|
|
24
24
|
variables,
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
27
|
findFirst(args) {
|
|
28
|
-
const { document, variables } = buildFindFirstDocument('
|
|
28
|
+
const { document, variables } = buildFindFirstDocument('GetAllTreeNodesRecord', 'getAllTreeNodes', args.select, {
|
|
29
29
|
where: args?.where,
|
|
30
30
|
orderBy: args?.orderBy,
|
|
31
|
-
}, '
|
|
31
|
+
}, 'GetAllTreeNodesRecordFilter', 'GetAllTreeNodesRecordsOrderBy', connectionFieldsMap);
|
|
32
32
|
return new QueryBuilder({
|
|
33
33
|
client: this.client,
|
|
34
34
|
operation: 'query',
|
|
35
|
-
operationName: '
|
|
36
|
-
fieldName: '
|
|
35
|
+
operationName: 'GetAllTreeNodesRecord',
|
|
36
|
+
fieldName: 'getAllTreeNodesRecord',
|
|
37
37
|
document,
|
|
38
38
|
variables,
|
|
39
39
|
transform: (data) => ({
|
|
40
|
-
|
|
40
|
+
getAllTreeNodesRecord: data.getAllTreeNodes?.nodes?.[0] ?? null,
|
|
41
41
|
}),
|
|
42
42
|
});
|
|
43
43
|
}
|
|
44
44
|
create(args) {
|
|
45
|
-
const { document, variables } = buildCreateDocument('
|
|
45
|
+
const { document, variables } = buildCreateDocument('GetAllTreeNodesRecord', 'createGetAllTreeNodesRecord', 'getAllTreeNodesRecord', args.select, args.data, 'CreateGetAllTreeNodesRecordInput', connectionFieldsMap);
|
|
46
46
|
return new QueryBuilder({
|
|
47
47
|
client: this.client,
|
|
48
48
|
operation: 'mutation',
|
|
49
|
-
operationName: '
|
|
50
|
-
fieldName: '
|
|
49
|
+
operationName: 'GetAllTreeNodesRecord',
|
|
50
|
+
fieldName: 'createGetAllTreeNodesRecord',
|
|
51
51
|
document,
|
|
52
52
|
variables,
|
|
53
53
|
});
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
export { CommitModel } from './commit';
|
|
7
|
-
export {
|
|
7
|
+
export { GetAllTreeNodesRecordModel } from './getAllTreeNodesRecord';
|
|
8
8
|
export { ObjectModel } from './object';
|
|
9
9
|
export { RefModel } from './ref';
|
|
10
10
|
export { StoreModel } from './store';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
export { CommitModel } from './commit';
|
|
7
|
-
export {
|
|
7
|
+
export { GetAllTreeNodesRecordModel } from './getAllTreeNodesRecord';
|
|
8
8
|
export { ObjectModel } from './object';
|
|
9
9
|
export { RefModel } from './ref';
|
|
10
10
|
export { StoreModel } from './store';
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { Commit,
|
|
6
|
+
import type { Commit, GetAllTreeNodesRecord, Object, Ref, Store, DatetimeFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
/** Methods to use when ordering `Commit`. */
|
|
8
8
|
export type CommitOrderBy = 'AUTHOR_ID_ASC' | 'AUTHOR_ID_DESC' | 'COMMITTER_ID_ASC' | 'COMMITTER_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'NATURAL' | 'PARENT_IDS_ASC' | 'PARENT_IDS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'TREE_ID_ASC' | 'TREE_ID_DESC';
|
|
9
9
|
/** Methods to use when ordering `Object`. */
|
|
@@ -343,10 +343,10 @@ export interface CommitConnection {
|
|
|
343
343
|
pageInfo: PageInfo;
|
|
344
344
|
totalCount: number;
|
|
345
345
|
}
|
|
346
|
-
/** A connection to a list of `
|
|
347
|
-
export interface
|
|
348
|
-
edges:
|
|
349
|
-
nodes:
|
|
346
|
+
/** A connection to a list of `GetAllTreeNodesRecord` values. */
|
|
347
|
+
export interface GetAllTreeNodesConnection {
|
|
348
|
+
edges: GetAllTreeNodesEdge[];
|
|
349
|
+
nodes: GetAllTreeNodesRecord[];
|
|
350
350
|
pageInfo: PageInfo;
|
|
351
351
|
totalCount: number;
|
|
352
352
|
}
|
|
@@ -507,11 +507,11 @@ export interface PageInfo {
|
|
|
507
507
|
/** When paginating backwards, the cursor to continue. */
|
|
508
508
|
startCursor?: string | null;
|
|
509
509
|
}
|
|
510
|
-
/** A `
|
|
511
|
-
export interface
|
|
510
|
+
/** A `GetAllTreeNodesRecord` edge in the connection. */
|
|
511
|
+
export interface GetAllTreeNodesEdge {
|
|
512
512
|
cursor?: string | null;
|
|
513
|
-
/** The `
|
|
514
|
-
node?:
|
|
513
|
+
/** The `GetAllTreeNodesRecord` at the end of the edge. */
|
|
514
|
+
node?: GetAllTreeNodesRecord | null;
|
|
515
515
|
}
|
|
516
516
|
/** A `Object` edge in the connection. */
|
|
517
517
|
export interface ObjectEdge {
|
package/esm/objects/types.d.ts
CHANGED
package/infra/hooks/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables: DbPreset,
|
|
5
|
+
* Tables: DbPreset, Namespace, NamespaceEvent, PlatformInfraCommit, PlatformInfraGetAllTreeNodesRecord, PlatformInfraObject, PlatformInfraRef, PlatformInfraStore, PlatformNamespace, PlatformNamespaceEvent
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
package/infra/hooks/index.js
CHANGED
|
@@ -18,7 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
* GraphQL SDK
|
|
19
19
|
* @generated by @constructive-io/graphql-codegen
|
|
20
20
|
*
|
|
21
|
-
* Tables: DbPreset,
|
|
21
|
+
* Tables: DbPreset, Namespace, NamespaceEvent, PlatformInfraCommit, PlatformInfraGetAllTreeNodesRecord, PlatformInfraObject, PlatformInfraRef, PlatformInfraStore, PlatformNamespace, PlatformNamespaceEvent
|
|
22
22
|
*
|
|
23
23
|
* Usage:
|
|
24
24
|
*
|
|
@@ -29,31 +29,6 @@ export declare const invalidate: {
|
|
|
29
29
|
/** Invalidate dbPreset list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
30
30
|
/** Invalidate a specific dbPreset */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
31
31
|
};
|
|
32
|
-
/** Invalidate infraCommit queries */ readonly infraCommit: {
|
|
33
|
-
/** Invalidate all infraCommit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
34
|
-
/** Invalidate infraCommit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
35
|
-
/** Invalidate a specific infraCommit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
36
|
-
};
|
|
37
|
-
/** Invalidate infraGetAllRecord queries */ readonly infraGetAllRecord: {
|
|
38
|
-
/** Invalidate all infraGetAllRecord queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
39
|
-
/** Invalidate infraGetAllRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
|
-
/** Invalidate a specific infraGetAllRecord */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
|
-
};
|
|
42
|
-
/** Invalidate infraObject queries */ readonly infraObject: {
|
|
43
|
-
/** Invalidate all infraObject queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
|
-
/** Invalidate infraObject list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
45
|
-
/** Invalidate a specific infraObject */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
46
|
-
};
|
|
47
|
-
/** Invalidate infraRef queries */ readonly infraRef: {
|
|
48
|
-
/** Invalidate all infraRef queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
49
|
-
/** Invalidate infraRef list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
50
|
-
/** Invalidate a specific infraRef */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
51
|
-
};
|
|
52
|
-
/** Invalidate infraStore queries */ readonly infraStore: {
|
|
53
|
-
/** Invalidate all infraStore queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
54
|
-
/** Invalidate infraStore list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
55
|
-
/** Invalidate a specific infraStore */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
56
|
-
};
|
|
57
32
|
/** Invalidate namespace queries */ readonly namespace: {
|
|
58
33
|
/** Invalidate all namespace queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
59
34
|
/** Invalidate namespace list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -64,6 +39,31 @@ export declare const invalidate: {
|
|
|
64
39
|
/** Invalidate namespaceEvent list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
65
40
|
/** Invalidate a specific namespaceEvent */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
66
41
|
};
|
|
42
|
+
/** Invalidate platformInfraCommit queries */ readonly platformInfraCommit: {
|
|
43
|
+
/** Invalidate all platformInfraCommit queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
|
+
/** Invalidate platformInfraCommit list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
45
|
+
/** Invalidate a specific platformInfraCommit */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
46
|
+
};
|
|
47
|
+
/** Invalidate platformInfraGetAllTreeNodesRecord queries */ readonly platformInfraGetAllTreeNodesRecord: {
|
|
48
|
+
/** Invalidate all platformInfraGetAllTreeNodesRecord queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
49
|
+
/** Invalidate platformInfraGetAllTreeNodesRecord list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
50
|
+
/** Invalidate a specific platformInfraGetAllTreeNodesRecord */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
51
|
+
};
|
|
52
|
+
/** Invalidate platformInfraObject queries */ readonly platformInfraObject: {
|
|
53
|
+
/** Invalidate all platformInfraObject queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
54
|
+
/** Invalidate platformInfraObject list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
55
|
+
/** Invalidate a specific platformInfraObject */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
56
|
+
};
|
|
57
|
+
/** Invalidate platformInfraRef queries */ readonly platformInfraRef: {
|
|
58
|
+
/** Invalidate all platformInfraRef queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
59
|
+
/** Invalidate platformInfraRef list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
60
|
+
/** Invalidate a specific platformInfraRef */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
61
|
+
};
|
|
62
|
+
/** Invalidate platformInfraStore queries */ readonly platformInfraStore: {
|
|
63
|
+
/** Invalidate all platformInfraStore queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
64
|
+
/** Invalidate platformInfraStore list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
65
|
+
/** Invalidate a specific platformInfraStore */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
66
|
+
};
|
|
67
67
|
/** Invalidate platformNamespace queries */ readonly platformNamespace: {
|
|
68
68
|
/** Invalidate all platformNamespace queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
69
69
|
/** Invalidate platformNamespace list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -88,13 +88,13 @@ export declare const invalidate: {
|
|
|
88
88
|
*/
|
|
89
89
|
export declare const remove: {
|
|
90
90
|
/** Remove dbPreset from cache */ readonly dbPreset: (queryClient: QueryClient, id: string | number) => void;
|
|
91
|
-
/** Remove infraCommit from cache */ readonly infraCommit: (queryClient: QueryClient, id: string | number) => void;
|
|
92
|
-
/** Remove infraGetAllRecord from cache */ readonly infraGetAllRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
93
|
-
/** Remove infraObject from cache */ readonly infraObject: (queryClient: QueryClient, id: string | number) => void;
|
|
94
|
-
/** Remove infraRef from cache */ readonly infraRef: (queryClient: QueryClient, id: string | number) => void;
|
|
95
|
-
/** Remove infraStore from cache */ readonly infraStore: (queryClient: QueryClient, id: string | number) => void;
|
|
96
91
|
/** Remove namespace from cache */ readonly namespace: (queryClient: QueryClient, id: string | number) => void;
|
|
97
92
|
/** Remove namespaceEvent from cache */ readonly namespaceEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
93
|
+
/** Remove platformInfraCommit from cache */ readonly platformInfraCommit: (queryClient: QueryClient, id: string | number) => void;
|
|
94
|
+
/** Remove platformInfraGetAllTreeNodesRecord from cache */ readonly platformInfraGetAllTreeNodesRecord: (queryClient: QueryClient, id: string | number) => void;
|
|
95
|
+
/** Remove platformInfraObject from cache */ readonly platformInfraObject: (queryClient: QueryClient, id: string | number) => void;
|
|
96
|
+
/** Remove platformInfraRef from cache */ readonly platformInfraRef: (queryClient: QueryClient, id: string | number) => void;
|
|
97
|
+
/** Remove platformInfraStore from cache */ readonly platformInfraStore: (queryClient: QueryClient, id: string | number) => void;
|
|
98
98
|
/** Remove platformNamespace from cache */ readonly platformNamespace: (queryClient: QueryClient, id: string | number) => void;
|
|
99
99
|
/** Remove platformNamespaceEvent from cache */ readonly platformNamespaceEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
100
100
|
};
|
|
@@ -38,81 +38,81 @@ exports.invalidate = {
|
|
|
38
38
|
queryKey: query_keys_1.dbPresetKeys.detail(id),
|
|
39
39
|
}),
|
|
40
40
|
},
|
|
41
|
-
/** Invalidate
|
|
42
|
-
/** Invalidate all
|
|
43
|
-
queryKey: query_keys_1.
|
|
41
|
+
/** Invalidate namespace queries */ namespace: {
|
|
42
|
+
/** Invalidate all namespace queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
43
|
+
queryKey: query_keys_1.namespaceKeys.all,
|
|
44
44
|
}),
|
|
45
|
-
/** Invalidate
|
|
46
|
-
queryKey: query_keys_1.
|
|
45
|
+
/** Invalidate namespace list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
46
|
+
queryKey: query_keys_1.namespaceKeys.lists(),
|
|
47
47
|
}),
|
|
48
|
-
/** Invalidate a specific
|
|
49
|
-
queryKey: query_keys_1.
|
|
48
|
+
/** Invalidate a specific namespace */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
49
|
+
queryKey: query_keys_1.namespaceKeys.detail(id),
|
|
50
50
|
}),
|
|
51
51
|
},
|
|
52
|
-
/** Invalidate
|
|
53
|
-
/** Invalidate all
|
|
54
|
-
queryKey: query_keys_1.
|
|
52
|
+
/** Invalidate namespaceEvent queries */ namespaceEvent: {
|
|
53
|
+
/** Invalidate all namespaceEvent queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
54
|
+
queryKey: query_keys_1.namespaceEventKeys.all,
|
|
55
55
|
}),
|
|
56
|
-
/** Invalidate
|
|
57
|
-
queryKey: query_keys_1.
|
|
56
|
+
/** Invalidate namespaceEvent list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
57
|
+
queryKey: query_keys_1.namespaceEventKeys.lists(),
|
|
58
58
|
}),
|
|
59
|
-
/** Invalidate a specific
|
|
60
|
-
queryKey: query_keys_1.
|
|
59
|
+
/** Invalidate a specific namespaceEvent */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
60
|
+
queryKey: query_keys_1.namespaceEventKeys.detail(id),
|
|
61
61
|
}),
|
|
62
62
|
},
|
|
63
|
-
/** Invalidate
|
|
64
|
-
/** Invalidate all
|
|
65
|
-
queryKey: query_keys_1.
|
|
63
|
+
/** Invalidate platformInfraCommit queries */ platformInfraCommit: {
|
|
64
|
+
/** Invalidate all platformInfraCommit queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
65
|
+
queryKey: query_keys_1.platformInfraCommitKeys.all,
|
|
66
66
|
}),
|
|
67
|
-
/** Invalidate
|
|
68
|
-
queryKey: query_keys_1.
|
|
67
|
+
/** Invalidate platformInfraCommit list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
68
|
+
queryKey: query_keys_1.platformInfraCommitKeys.lists(),
|
|
69
69
|
}),
|
|
70
|
-
/** Invalidate a specific
|
|
71
|
-
queryKey: query_keys_1.
|
|
70
|
+
/** Invalidate a specific platformInfraCommit */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
71
|
+
queryKey: query_keys_1.platformInfraCommitKeys.detail(id),
|
|
72
72
|
}),
|
|
73
73
|
},
|
|
74
|
-
/** Invalidate
|
|
75
|
-
/** Invalidate all
|
|
76
|
-
queryKey: query_keys_1.
|
|
74
|
+
/** Invalidate platformInfraGetAllTreeNodesRecord queries */ platformInfraGetAllTreeNodesRecord: {
|
|
75
|
+
/** Invalidate all platformInfraGetAllTreeNodesRecord queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
76
|
+
queryKey: query_keys_1.platformInfraGetAllTreeNodesRecordKeys.all,
|
|
77
77
|
}),
|
|
78
|
-
/** Invalidate
|
|
79
|
-
queryKey: query_keys_1.
|
|
78
|
+
/** Invalidate platformInfraGetAllTreeNodesRecord list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
79
|
+
queryKey: query_keys_1.platformInfraGetAllTreeNodesRecordKeys.lists(),
|
|
80
80
|
}),
|
|
81
|
-
/** Invalidate a specific
|
|
82
|
-
queryKey: query_keys_1.
|
|
81
|
+
/** Invalidate a specific platformInfraGetAllTreeNodesRecord */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
82
|
+
queryKey: query_keys_1.platformInfraGetAllTreeNodesRecordKeys.detail(id),
|
|
83
83
|
}),
|
|
84
84
|
},
|
|
85
|
-
/** Invalidate
|
|
86
|
-
/** Invalidate all
|
|
87
|
-
queryKey: query_keys_1.
|
|
85
|
+
/** Invalidate platformInfraObject queries */ platformInfraObject: {
|
|
86
|
+
/** Invalidate all platformInfraObject queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
87
|
+
queryKey: query_keys_1.platformInfraObjectKeys.all,
|
|
88
88
|
}),
|
|
89
|
-
/** Invalidate
|
|
90
|
-
queryKey: query_keys_1.
|
|
89
|
+
/** Invalidate platformInfraObject list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
90
|
+
queryKey: query_keys_1.platformInfraObjectKeys.lists(),
|
|
91
91
|
}),
|
|
92
|
-
/** Invalidate a specific
|
|
93
|
-
queryKey: query_keys_1.
|
|
92
|
+
/** Invalidate a specific platformInfraObject */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
93
|
+
queryKey: query_keys_1.platformInfraObjectKeys.detail(id),
|
|
94
94
|
}),
|
|
95
95
|
},
|
|
96
|
-
/** Invalidate
|
|
97
|
-
/** Invalidate all
|
|
98
|
-
queryKey: query_keys_1.
|
|
96
|
+
/** Invalidate platformInfraRef queries */ platformInfraRef: {
|
|
97
|
+
/** Invalidate all platformInfraRef queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
98
|
+
queryKey: query_keys_1.platformInfraRefKeys.all,
|
|
99
99
|
}),
|
|
100
|
-
/** Invalidate
|
|
101
|
-
queryKey: query_keys_1.
|
|
100
|
+
/** Invalidate platformInfraRef list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
101
|
+
queryKey: query_keys_1.platformInfraRefKeys.lists(),
|
|
102
102
|
}),
|
|
103
|
-
/** Invalidate a specific
|
|
104
|
-
queryKey: query_keys_1.
|
|
103
|
+
/** Invalidate a specific platformInfraRef */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
104
|
+
queryKey: query_keys_1.platformInfraRefKeys.detail(id),
|
|
105
105
|
}),
|
|
106
106
|
},
|
|
107
|
-
/** Invalidate
|
|
108
|
-
/** Invalidate all
|
|
109
|
-
queryKey: query_keys_1.
|
|
107
|
+
/** Invalidate platformInfraStore queries */ platformInfraStore: {
|
|
108
|
+
/** Invalidate all platformInfraStore queries */ all: (queryClient) => queryClient.invalidateQueries({
|
|
109
|
+
queryKey: query_keys_1.platformInfraStoreKeys.all,
|
|
110
110
|
}),
|
|
111
|
-
/** Invalidate
|
|
112
|
-
queryKey: query_keys_1.
|
|
111
|
+
/** Invalidate platformInfraStore list queries */ lists: (queryClient) => queryClient.invalidateQueries({
|
|
112
|
+
queryKey: query_keys_1.platformInfraStoreKeys.lists(),
|
|
113
113
|
}),
|
|
114
|
-
/** Invalidate a specific
|
|
115
|
-
queryKey: query_keys_1.
|
|
114
|
+
/** Invalidate a specific platformInfraStore */ detail: (queryClient, id) => queryClient.invalidateQueries({
|
|
115
|
+
queryKey: query_keys_1.platformInfraStoreKeys.detail(id),
|
|
116
116
|
}),
|
|
117
117
|
},
|
|
118
118
|
/** Invalidate platformNamespace queries */ platformNamespace: {
|
|
@@ -155,39 +155,39 @@ exports.remove = {
|
|
|
155
155
|
queryKey: query_keys_1.dbPresetKeys.detail(id),
|
|
156
156
|
});
|
|
157
157
|
},
|
|
158
|
-
/** Remove
|
|
158
|
+
/** Remove namespace from cache */ namespace: (queryClient, id) => {
|
|
159
159
|
queryClient.removeQueries({
|
|
160
|
-
queryKey: query_keys_1.
|
|
160
|
+
queryKey: query_keys_1.namespaceKeys.detail(id),
|
|
161
161
|
});
|
|
162
162
|
},
|
|
163
|
-
/** Remove
|
|
163
|
+
/** Remove namespaceEvent from cache */ namespaceEvent: (queryClient, id) => {
|
|
164
164
|
queryClient.removeQueries({
|
|
165
|
-
queryKey: query_keys_1.
|
|
165
|
+
queryKey: query_keys_1.namespaceEventKeys.detail(id),
|
|
166
166
|
});
|
|
167
167
|
},
|
|
168
|
-
/** Remove
|
|
168
|
+
/** Remove platformInfraCommit from cache */ platformInfraCommit: (queryClient, id) => {
|
|
169
169
|
queryClient.removeQueries({
|
|
170
|
-
queryKey: query_keys_1.
|
|
170
|
+
queryKey: query_keys_1.platformInfraCommitKeys.detail(id),
|
|
171
171
|
});
|
|
172
172
|
},
|
|
173
|
-
/** Remove
|
|
173
|
+
/** Remove platformInfraGetAllTreeNodesRecord from cache */ platformInfraGetAllTreeNodesRecord: (queryClient, id) => {
|
|
174
174
|
queryClient.removeQueries({
|
|
175
|
-
queryKey: query_keys_1.
|
|
175
|
+
queryKey: query_keys_1.platformInfraGetAllTreeNodesRecordKeys.detail(id),
|
|
176
176
|
});
|
|
177
177
|
},
|
|
178
|
-
/** Remove
|
|
178
|
+
/** Remove platformInfraObject from cache */ platformInfraObject: (queryClient, id) => {
|
|
179
179
|
queryClient.removeQueries({
|
|
180
|
-
queryKey: query_keys_1.
|
|
180
|
+
queryKey: query_keys_1.platformInfraObjectKeys.detail(id),
|
|
181
181
|
});
|
|
182
182
|
},
|
|
183
|
-
/** Remove
|
|
183
|
+
/** Remove platformInfraRef from cache */ platformInfraRef: (queryClient, id) => {
|
|
184
184
|
queryClient.removeQueries({
|
|
185
|
-
queryKey: query_keys_1.
|
|
185
|
+
queryKey: query_keys_1.platformInfraRefKeys.detail(id),
|
|
186
186
|
});
|
|
187
187
|
},
|
|
188
|
-
/** Remove
|
|
188
|
+
/** Remove platformInfraStore from cache */ platformInfraStore: (queryClient, id) => {
|
|
189
189
|
queryClient.removeQueries({
|
|
190
|
-
queryKey: query_keys_1.
|
|
190
|
+
queryKey: query_keys_1.platformInfraStoreKeys.detail(id),
|
|
191
191
|
});
|
|
192
192
|
},
|
|
193
193
|
/** Remove platformNamespace from cache */ platformNamespace: (queryClient, id) => {
|