@constructive-io/react 0.30.2 → 0.30.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent/orm/input-types.d.ts +24 -0
- package/agent/orm/input-types.js +3 -0
- package/agent/schema-types.d.ts +13 -0
- package/api/hooks/index.d.ts +1 -1
- package/api/hooks/index.js +1 -1
- package/api/hooks/invalidation.d.ts +11 -5
- package/api/hooks/invalidation.js +25 -9
- package/api/hooks/mutation-keys.d.ts +22 -10
- package/api/hooks/mutation-keys.js +14 -7
- package/api/hooks/mutations/index.d.ts +6 -1
- package/api/hooks/mutations/index.js +6 -1
- package/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
- package/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +6 -6
- package/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateManagedDomainMutation.js +34 -0
- package/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteHttpRouteMutation.js +39 -0
- package/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteManagedDomainMutation.js +39 -0
- package/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateHttpRouteMutation.js +40 -0
- package/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateManagedDomainMutation.js +40 -0
- package/api/hooks/queries/index.d.ts +5 -2
- package/api/hooks/queries/index.js +5 -2
- package/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
- package/api/hooks/queries/{useMigrateFileQuery.js → useHttpRouteQuery.js} +14 -14
- package/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
- package/api/hooks/queries/useHttpRoutesQuery.js +38 -0
- package/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
- package/api/hooks/queries/useManagedDomainQuery.js +53 -0
- package/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
- package/api/hooks/queries/useManagedDomainsQuery.js +38 -0
- package/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
- package/api/hooks/queries/useResolveHttpRouteQuery.js +54 -0
- package/api/hooks/query-keys.d.ts +28 -12
- package/api/hooks/query-keys.js +17 -8
- package/api/orm/index.d.ts +9 -2
- package/api/orm/index.js +4 -2
- package/api/orm/input-types.d.ts +498 -143
- package/api/orm/input-types.js +4 -0
- package/api/orm/models/httpRoute.d.ts +54 -0
- package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
- package/api/orm/models/index.d.ts +2 -1
- package/api/orm/models/index.js +5 -3
- package/api/orm/models/managedDomain.d.ts +54 -0
- package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
- package/api/orm/query/index.d.ts +12 -0
- package/api/orm/query/index.js +20 -0
- package/api/schema-types.d.ts +277 -122
- package/api/types.d.ts +25 -5
- package/auth/orm/input-types.d.ts +155 -182
- package/auth/orm/input-types.js +4 -0
- package/auth/schema-types.d.ts +17 -63
- package/compute/hooks/index.d.ts +1 -1
- package/compute/hooks/index.js +1 -1
- package/compute/hooks/invalidation.d.ts +136 -10
- package/compute/hooks/invalidation.js +354 -18
- package/compute/hooks/mutation-keys.d.ts +294 -20
- package/compute/hooks/mutation-keys.js +227 -13
- package/compute/hooks/mutations/index.d.ts +62 -2
- package/compute/hooks/mutations/index.js +62 -2
- package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +34 -0
- package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +5 -5
- package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceInstallationMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +34 -0
- package/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
- package/{api/hooks/mutations/useCreateMigrateFileMutation.js → compute/hooks/mutations/useCreateResourcesHealthMutation.js} +6 -6
- package/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +34 -0
- package/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateWebhookEventMutation.js +34 -0
- package/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
- package/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
- package/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
- package/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
- package/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +6 -6
- package/{esm/infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +6 -6
- package/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +6 -6
- package/{esm/infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
- package/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +6 -6
- package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +39 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +40 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +39 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
- package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +40 -0
- package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +39 -0
- package/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteWebhookEventMutation.js +39 -0
- package/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +5 -5
- package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/{infra/hooks/mutations/useInfraSetDataAtPathMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +5 -5
- package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +26 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +26 -0
- package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +26 -0
- package/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
- package/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
- package/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
- package/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
- package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +41 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
- package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +41 -0
- package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateWebhookEventMutation.js +40 -0
- package/compute/hooks/queries/index.d.ts +39 -2
- package/compute/hooks/queries/index.js +39 -2
- package/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
- package/compute/hooks/queries/useDeclaredCapacitiesQuery.js +38 -0
- package/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
- package/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +13 -13
- package/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceInstallationQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +38 -0
- package/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformResourcesHealthQuery.js +53 -0
- package/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +53 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformWebhookEventQuery.js +53 -0
- package/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformWebhookEventsQuery.js +38 -0
- package/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceInstallationQuery.js +53 -0
- package/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceInstallationsQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceUsageLogQuery.js +53 -0
- package/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUsageLogsQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUsageSummariesQuery.js +38 -0
- package/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourceUsageSummaryQuery.js +53 -0
- package/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +38 -0
- package/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
- package/compute/hooks/queries/useResourcesHealthQuery.js +53 -0
- package/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
- package/compute/hooks/queries/useResourcesHealthsQuery.js +38 -0
- package/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
- package/compute/hooks/queries/useWebhookEndpointQuery.js +53 -0
- package/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
- package/compute/hooks/queries/useWebhookEndpointsQuery.js +38 -0
- package/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
- package/compute/hooks/queries/useWebhookEventQuery.js +53 -0
- package/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
- package/compute/hooks/queries/useWebhookEventsQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +318 -24
- package/compute/hooks/query-keys.js +188 -15
- package/compute/orm/index.d.ts +101 -4
- package/compute/orm/index.js +46 -4
- package/compute/orm/input-types.d.ts +5356 -772
- package/compute/orm/input-types.js +34 -2
- package/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/compute/orm/models/{getAllRecord.js → declaredCapacity.js} +15 -15
- package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/compute/orm/models/index.d.ts +23 -2
- package/compute/orm/models/index.js +48 -5
- package/compute/orm/models/infraCommit.d.ts +2 -2
- package/compute/orm/models/infraCommit.js +2 -2
- package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/infraObject.d.ts +2 -2
- package/compute/orm/models/infraObject.js +2 -2
- package/compute/orm/models/infraRef.d.ts +2 -2
- package/compute/orm/models/infraRef.js +2 -2
- package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/compute/orm/models/{infraGetAllRecord.js → platformDeclaredCapacity.js} +15 -15
- package/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/compute/orm/models/platformInfraCommit.js +107 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
- package/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/compute/orm/models/platformInfraRef.js +107 -0
- package/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/compute/orm/models/platformInfraStore.js +104 -0
- package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/compute/orm/models/platformResourceInstallation.js +104 -0
- package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageLog.js +107 -0
- package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/platformResourceUsageSummary.js +107 -0
- package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
- package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/compute/orm/models/platformResourcesHealth.js +80 -0
- package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/compute/orm/models/platformWebhookEndpoint.js +104 -0
- package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/compute/orm/models/platformWebhookEvent.js +104 -0
- package/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/compute/orm/models/resourceInstallation.js +104 -0
- package/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/compute/orm/models/resourceUsageLog.js +107 -0
- package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/compute/orm/models/resourceUsageSummary.js +107 -0
- package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/compute/orm/models/resourceUtilizationDaily.js +59 -0
- package/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
- package/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/compute/orm/models/webhookEndpoint.js +104 -0
- package/compute/orm/models/webhookEvent.d.ts +54 -0
- package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
- package/compute/orm/mutation/index.d.ts +89 -1
- package/compute/orm/mutation/index.js +132 -0
- package/compute/schema-types.d.ts +2775 -237
- package/compute/types.d.ts +364 -20
- package/config/orm/input-types.d.ts +4 -79
- package/config/schema-types.d.ts +0 -72
- package/esm/agent/orm/input-types.d.ts +24 -0
- package/esm/agent/orm/input-types.js +3 -0
- package/esm/agent/schema-types.d.ts +13 -0
- package/esm/api/hooks/index.d.ts +1 -1
- package/esm/api/hooks/index.js +1 -1
- package/esm/api/hooks/invalidation.d.ts +11 -5
- package/esm/api/hooks/invalidation.js +26 -10
- package/esm/api/hooks/mutation-keys.d.ts +22 -10
- package/esm/api/hooks/mutation-keys.js +13 -6
- package/esm/api/hooks/mutations/index.d.ts +6 -1
- package/esm/api/hooks/mutations/index.js +6 -1
- package/esm/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
- package/esm/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +7 -7
- package/esm/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateManagedDomainMutation.js +31 -0
- package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.js +36 -0
- package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.js +37 -0
- package/esm/api/hooks/queries/index.d.ts +5 -2
- package/esm/api/hooks/queries/index.js +5 -2
- package/esm/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useHttpRouteQuery.js +47 -0
- package/esm/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
- package/esm/{compute/hooks/queries/useGetAllQuery.js → api/hooks/queries/useHttpRoutesQuery.js} +11 -11
- package/esm/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useManagedDomainQuery.js +47 -0
- package/esm/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useManagedDomainsQuery.js +32 -0
- package/esm/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useResolveHttpRouteQuery.js +48 -0
- package/esm/api/hooks/query-keys.d.ts +28 -12
- package/esm/api/hooks/query-keys.js +16 -7
- package/esm/api/orm/index.d.ts +9 -2
- package/esm/api/orm/index.js +4 -2
- package/esm/api/orm/input-types.d.ts +498 -143
- package/esm/api/orm/input-types.js +4 -0
- package/esm/api/orm/models/httpRoute.d.ts +54 -0
- package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
- package/esm/api/orm/models/index.d.ts +2 -1
- package/esm/api/orm/models/index.js +2 -1
- package/esm/api/orm/models/managedDomain.d.ts +54 -0
- package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
- package/esm/api/orm/query/index.d.ts +12 -0
- package/esm/api/orm/query/index.js +20 -0
- package/esm/api/schema-types.d.ts +277 -122
- package/esm/api/types.d.ts +25 -5
- package/esm/auth/orm/input-types.d.ts +155 -182
- package/esm/auth/orm/input-types.js +4 -0
- package/esm/auth/schema-types.d.ts +17 -63
- package/esm/compute/hooks/index.d.ts +1 -1
- package/esm/compute/hooks/index.js +1 -1
- package/esm/compute/hooks/invalidation.d.ts +136 -10
- package/esm/compute/hooks/invalidation.js +355 -19
- package/esm/compute/hooks/mutation-keys.d.ts +294 -20
- package/esm/compute/hooks/mutation-keys.js +225 -12
- package/esm/compute/hooks/mutations/index.d.ts +62 -2
- package/esm/compute/hooks/mutations/index.js +62 -2
- package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +6 -6
- package/esm/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
- package/esm/{infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js → compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateResourcesHealthMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
- package/esm/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/esm/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +7 -7
- package/{infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +7 -7
- package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +7 -7
- package/{infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
- package/esm/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +7 -7
- package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +37 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.js +36 -0
- package/esm/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/esm/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +4 -4
- package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/esm/{infra/hooks/mutations/useInfraInitEmptyRepoMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +4 -4
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +23 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
- package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +23 -0
- package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
- package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/esm/{infra/hooks/mutations/useUpdateInfraRefMutation.js → compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js} +9 -9
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
- package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +38 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.js +37 -0
- package/esm/compute/hooks/queries/index.d.ts +39 -2
- package/esm/compute/hooks/queries/index.js +39 -2
- package/esm/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
- package/esm/{objects/hooks/queries/useGetAllQuery.js → compute/hooks/queries/useDeclaredCapacitiesQuery.js} +11 -11
- package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraCommitQuery.js → compute/hooks/queries/usePlatformInfraCommitQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/esm/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +10 -10
- package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceInstallationQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceInstallationsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceUsageLogQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUsageLogsQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +32 -0
- package/esm/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useResourcesHealthQuery.js +47 -0
- package/esm/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/{useInfraGetAllQuery.js → useResourcesHealthsQuery.js} +11 -11
- package/esm/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useWebhookEndpointQuery.js +47 -0
- package/esm/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useWebhookEndpointsQuery.js +32 -0
- package/esm/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useWebhookEventQuery.js +47 -0
- package/esm/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useWebhookEventsQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +318 -24
- package/esm/compute/hooks/query-keys.js +186 -14
- package/esm/compute/orm/index.d.ts +101 -4
- package/esm/compute/orm/index.js +46 -4
- package/esm/compute/orm/input-types.d.ts +5356 -772
- package/esm/compute/orm/input-types.js +34 -2
- package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +13 -13
- package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/index.d.ts +23 -2
- package/esm/compute/orm/models/index.js +23 -2
- package/esm/compute/orm/models/infraCommit.d.ts +2 -2
- package/esm/compute/orm/models/infraCommit.js +2 -2
- package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/infraGetAllTreeNodesRecord.js} +13 -13
- package/esm/compute/orm/models/infraObject.d.ts +2 -2
- package/esm/compute/orm/models/infraObject.js +2 -2
- package/esm/compute/orm/models/infraRef.d.ts +2 -2
- package/esm/compute/orm/models/infraRef.js +2 -2
- package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
- package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
- package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraCommit.js +103 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
- package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/compute/orm/models/platformInfraRef.js +103 -0
- package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/compute/orm/models/platformInfraStore.js +100 -0
- package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
- package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
- package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
- package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
- package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
- package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
- package/esm/compute/orm/models/resourceInstallation.js +100 -0
- package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageLog.js +103 -0
- package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
- package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
- package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
- package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
- package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
- package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
- package/esm/compute/orm/models/webhookEndpoint.js +100 -0
- package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
- package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
- package/esm/compute/orm/mutation/index.d.ts +89 -1
- package/esm/compute/orm/mutation/index.js +132 -0
- package/esm/compute/schema-types.d.ts +2775 -237
- package/esm/compute/types.d.ts +364 -20
- package/esm/config/orm/input-types.d.ts +4 -79
- package/esm/config/schema-types.d.ts +0 -72
- package/esm/infra/hooks/index.d.ts +1 -1
- package/esm/infra/hooks/index.js +1 -1
- package/esm/infra/hooks/invalidation.d.ts +30 -30
- package/esm/infra/hooks/invalidation.js +64 -64
- package/esm/infra/hooks/mutation-keys.d.ts +66 -66
- package/esm/infra/hooks/mutation-keys.js +47 -44
- package/esm/infra/hooks/mutations/index.d.ts +16 -16
- package/esm/infra/hooks/mutations/index.js +16 -16
- package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.js +31 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +31 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +9 -10
- package/esm/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +9 -10
- package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.js +37 -0
- package/esm/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
- package/esm/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +9 -10
- package/esm/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/{useInfraSetDataAtPathMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +4 -4
- package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
- package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +23 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +38 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
- package/esm/infra/hooks/queries/index.d.ts +9 -9
- package/esm/infra/hooks/queries/index.js +9 -9
- package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.js +32 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.js +47 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.js +32 -0
- package/esm/infra/hooks/query-keys.d.ts +70 -70
- package/esm/infra/hooks/query-keys.js +42 -40
- package/esm/infra/orm/index.d.ts +19 -19
- package/esm/infra/orm/index.js +10 -10
- package/esm/infra/orm/input-types.d.ts +542 -668
- package/esm/infra/orm/models/index.d.ts +5 -5
- package/esm/infra/orm/models/index.js +5 -5
- package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraCommit.js +103 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
- package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraObject.js +93 -0
- package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/esm/infra/orm/models/platformInfraRef.js +103 -0
- package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/esm/infra/orm/models/platformInfraStore.js +100 -0
- package/esm/infra/orm/mutation/index.d.ts +16 -16
- package/esm/infra/orm/mutation/index.js +18 -18
- package/esm/infra/schema-types.d.ts +389 -473
- package/esm/infra/types.d.ts +30 -44
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +12 -0
- package/esm/modules/hooks/invalidation.js +33 -1
- package/esm/modules/hooks/mutation-keys.d.ts +24 -0
- package/esm/modules/hooks/mutation-keys.js +14 -0
- package/esm/modules/hooks/mutations/index.d.ts +6 -0
- package/esm/modules/hooks/mutations/index.js +6 -0
- package/esm/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
- package/esm/{api/hooks/mutations/useCreateMigrateFileMutation.js → modules/hooks/mutations/useCreateHttpRouteModuleMutation.js} +7 -7
- package/esm/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
- package/esm/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +7 -7
- package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +37 -0
- package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +4 -0
- package/esm/modules/hooks/queries/index.js +4 -0
- package/esm/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
- package/esm/modules/hooks/queries/useHttpRouteModuleQuery.js +47 -0
- package/esm/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
- package/esm/{infra/hooks/queries/useInfraGetAllQuery.js → modules/hooks/queries/useHttpRouteModulesQuery.js} +11 -11
- package/esm/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
- package/esm/{api/hooks/queries/useMigrateFileQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +11 -11
- package/esm/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
- package/esm/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +11 -11
- package/esm/modules/hooks/query-keys.d.ts +28 -0
- package/esm/modules/hooks/query-keys.js +16 -0
- package/esm/modules/orm/index.d.ts +4 -0
- package/esm/modules/orm/index.js +4 -0
- package/esm/modules/orm/input-types.d.ts +802 -166
- package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/esm/modules/orm/models/httpRouteModule.js +100 -0
- package/esm/modules/orm/models/index.d.ts +2 -0
- package/esm/modules/orm/models/index.js +2 -0
- package/esm/modules/orm/models/webhookModule.d.ts +54 -0
- package/esm/modules/orm/models/webhookModule.js +100 -0
- package/esm/modules/schema-types.d.ts +483 -101
- package/esm/modules/types.d.ts +82 -22
- package/esm/objects/hooks/index.d.ts +1 -1
- package/esm/objects/hooks/index.js +1 -1
- package/esm/objects/hooks/invalidation.d.ts +5 -5
- package/esm/objects/hooks/invalidation.js +10 -10
- package/esm/objects/hooks/mutation-keys.d.ts +10 -10
- package/esm/objects/hooks/mutation-keys.js +9 -6
- package/esm/objects/hooks/mutations/index.d.ts +1 -1
- package/esm/objects/hooks/mutations/index.js +1 -1
- package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
- package/esm/objects/hooks/queries/index.d.ts +1 -1
- package/esm/objects/hooks/queries/index.js +1 -1
- package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
- package/esm/objects/hooks/query-keys.d.ts +12 -12
- package/esm/objects/hooks/query-keys.js +7 -7
- package/esm/objects/orm/index.d.ts +2 -2
- package/esm/objects/orm/index.js +2 -2
- package/esm/objects/orm/input-types.d.ts +15 -15
- package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/esm/objects/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
- package/esm/objects/orm/models/index.d.ts +1 -1
- package/esm/objects/orm/models/index.js +1 -1
- package/esm/objects/schema-types.d.ts +9 -9
- package/esm/objects/types.d.ts +1 -1
- package/infra/hooks/index.d.ts +1 -1
- package/infra/hooks/index.js +1 -1
- package/infra/hooks/invalidation.d.ts +30 -30
- package/infra/hooks/invalidation.js +63 -63
- package/infra/hooks/mutation-keys.d.ts +66 -66
- package/infra/hooks/mutation-keys.js +48 -45
- package/infra/hooks/mutations/index.d.ts +16 -16
- package/infra/hooks/mutations/index.js +16 -16
- package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
- package/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → infra/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
- package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
- package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +34 -0
- package/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
- package/infra/hooks/mutations/{useUpdateInfraRefMutation.js → useDeletePlatformInfraRefMutation.js} +8 -9
- package/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
- package/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +8 -9
- package/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
- package/infra/hooks/mutations/{useInfraInitEmptyRepoMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +5 -5
- package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
- package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
- package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
- package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +26 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
- package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
- package/infra/hooks/queries/index.d.ts +9 -9
- package/infra/hooks/queries/index.js +9 -9
- package/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraCommitsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraObjectQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraObjectsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraRefQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraRefsQuery.js +38 -0
- package/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
- package/infra/hooks/queries/usePlatformInfraStoreQuery.js +53 -0
- package/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
- package/infra/hooks/queries/usePlatformInfraStoresQuery.js +38 -0
- package/infra/hooks/query-keys.d.ts +70 -70
- package/infra/hooks/query-keys.js +43 -41
- package/infra/orm/index.d.ts +19 -19
- package/infra/orm/index.js +10 -10
- package/infra/orm/input-types.d.ts +542 -668
- package/infra/orm/models/index.d.ts +5 -5
- package/infra/orm/models/index.js +11 -11
- package/infra/orm/models/platformInfraCommit.d.ts +56 -0
- package/infra/orm/models/platformInfraCommit.js +107 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
- package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
- package/infra/orm/models/platformInfraObject.d.ts +56 -0
- package/infra/orm/models/platformInfraObject.js +97 -0
- package/infra/orm/models/platformInfraRef.d.ts +56 -0
- package/infra/orm/models/platformInfraRef.js +107 -0
- package/infra/orm/models/platformInfraStore.d.ts +54 -0
- package/infra/orm/models/platformInfraStore.js +104 -0
- package/infra/orm/mutation/index.d.ts +16 -16
- package/infra/orm/mutation/index.js +18 -18
- package/infra/schema-types.d.ts +389 -473
- package/infra/types.d.ts +30 -44
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +12 -0
- package/modules/hooks/invalidation.js +32 -0
- package/modules/hooks/mutation-keys.d.ts +24 -0
- package/modules/hooks/mutation-keys.js +16 -2
- package/modules/hooks/mutations/index.d.ts +6 -0
- package/modules/hooks/mutations/index.js +6 -0
- package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.js +34 -0
- package/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
- package/{compute/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +6 -6
- package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +39 -0
- package/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +40 -0
- package/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +4 -0
- package/modules/hooks/queries/index.js +4 -0
- package/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
- package/modules/hooks/queries/useHttpRouteModuleQuery.js +53 -0
- package/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/useHttpRouteModulesQuery.js +38 -0
- package/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
- package/{infra/hooks/queries/useInfraCommitQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +14 -14
- package/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
- package/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +14 -14
- package/modules/hooks/query-keys.d.ts +28 -0
- package/modules/hooks/query-keys.js +18 -2
- package/modules/orm/index.d.ts +4 -0
- package/modules/orm/index.js +4 -0
- package/modules/orm/input-types.d.ts +802 -166
- package/modules/orm/models/httpRouteModule.d.ts +54 -0
- package/modules/orm/models/httpRouteModule.js +104 -0
- package/modules/orm/models/index.d.ts +2 -0
- package/modules/orm/models/index.js +6 -2
- package/modules/orm/models/webhookModule.d.ts +54 -0
- package/modules/orm/models/webhookModule.js +104 -0
- package/modules/schema-types.d.ts +483 -101
- package/modules/types.d.ts +82 -22
- package/objects/hooks/index.d.ts +1 -1
- package/objects/hooks/index.js +1 -1
- package/objects/hooks/invalidation.d.ts +5 -5
- package/objects/hooks/invalidation.js +9 -9
- package/objects/hooks/mutation-keys.d.ts +10 -10
- package/objects/hooks/mutation-keys.js +10 -7
- package/objects/hooks/mutations/index.d.ts +1 -1
- package/objects/hooks/mutations/index.js +1 -1
- package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
- package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
- package/objects/hooks/queries/index.d.ts +1 -1
- package/objects/hooks/queries/index.js +1 -1
- package/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
- package/objects/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
- package/objects/hooks/query-keys.d.ts +12 -12
- package/objects/hooks/query-keys.js +8 -8
- package/objects/orm/index.d.ts +2 -2
- package/objects/orm/index.js +2 -2
- package/objects/orm/input-types.d.ts +15 -15
- package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
- package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
- package/objects/orm/models/index.d.ts +1 -1
- package/objects/orm/models/index.js +3 -3
- package/objects/schema-types.d.ts +9 -9
- package/objects/types.d.ts +1 -1
- package/package.json +5 -5
- package/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
- package/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
- package/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
- package/api/orm/models/migrateFile.d.ts +0 -36
- package/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/compute/hooks/queries/useGetAllQuery.js +0 -38
- package/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/compute/hooks/queries/useInfraGetAllQuery.js +0 -38
- package/compute/orm/models/getAllRecord.d.ts +0 -30
- package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
- package/esm/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
- package/esm/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
- package/esm/api/orm/models/migrateFile.d.ts +0 -36
- package/esm/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/esm/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/esm/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/esm/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
- package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
- package/esm/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
- package/esm/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
- package/esm/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
- package/esm/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
- package/esm/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
- package/esm/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
- package/esm/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
- package/esm/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
- package/esm/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
- package/esm/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
- package/esm/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
- package/esm/infra/orm/models/infraCommit.d.ts +0 -56
- package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/esm/infra/orm/models/infraObject.d.ts +0 -56
- package/esm/infra/orm/models/infraRef.d.ts +0 -56
- package/esm/infra/orm/models/infraStore.d.ts +0 -54
- package/esm/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/esm/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
- package/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js +0 -34
- package/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
- package/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
- package/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
- package/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
- package/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
- package/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
- package/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
- package/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
- package/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
- package/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
- package/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraGetAllQuery.js +0 -38
- package/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
- package/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
- package/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
- package/infra/orm/models/infraCommit.d.ts +0 -56
- package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
- package/infra/orm/models/infraObject.d.ts +0 -56
- package/infra/orm/models/infraRef.d.ts +0 -56
- package/infra/orm/models/infraStore.d.ts +0 -54
- package/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
- package/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
- package/objects/hooks/queries/useGetAllQuery.js +0 -38
- package/objects/orm/models/getAllRecord.d.ts +0 -30
|
@@ -3,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 { AgentModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, ComputeLogModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbPool, DbPoolConfig, DbPresetModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InfraConfigModule, InfraSecretsModule, IntegrationProvidersModule, InternalSecretsModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PermissionsModule, PhoneNumbersModule, PlansModule, PrincipalAuthModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, ResourceModule, RlsModule, SecureTableProvision, SessionSecretsModule, SessionsModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
6
|
+
import type { AgentModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, ComputeLogModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DbPool, DbPoolConfig, DbPresetModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, HttpRouteModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InfraConfigModule, InfraSecretsModule, IntegrationProvidersModule, InternalSecretsModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PermissionsModule, PhoneNumbersModule, PlansModule, PrincipalAuthModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, ResourceModule, RlsModule, SecureTableProvision, SessionSecretsModule, SessionsModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, WebhookModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
/** Methods to use when ordering `AgentModule`. */
|
|
8
8
|
export type AgentModuleOrderBy = 'AGENT_TABLE_ID_ASC' | 'AGENT_TABLE_ID_DESC' | 'AGENT_TABLE_NAME_ASC' | 'AGENT_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'HAS_AGENTS_ASC' | 'HAS_AGENTS_DESC' | 'HAS_PLANS_ASC' | 'HAS_PLANS_DESC' | 'HAS_RESOURCES_ASC' | 'HAS_RESOURCES_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_TABLE_ID_ASC' | 'MESSAGE_TABLE_ID_DESC' | 'MESSAGE_TABLE_NAME_ASC' | 'MESSAGE_TABLE_NAME_DESC' | 'NATURAL' | 'PERSONA_TABLE_ID_ASC' | 'PERSONA_TABLE_ID_DESC' | 'PERSONA_TABLE_NAME_ASC' | 'PERSONA_TABLE_NAME_DESC' | 'PLAN_TABLE_ID_ASC' | 'PLAN_TABLE_ID_DESC' | 'PLAN_TABLE_NAME_ASC' | 'PLAN_TABLE_NAME_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROMPTS_TABLE_ID_ASC' | 'PROMPTS_TABLE_ID_DESC' | 'PROMPTS_TABLE_NAME_ASC' | 'PROMPTS_TABLE_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RESOURCE_TABLE_ID_ASC' | 'RESOURCE_TABLE_ID_DESC' | 'RESOURCE_TABLE_NAME_ASC' | 'RESOURCE_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SHARED_ASC' | 'SHARED_DESC' | 'TASK_TABLE_ID_ASC' | 'TASK_TABLE_ID_DESC' | 'TASK_TABLE_NAME_ASC' | 'TASK_TABLE_NAME_DESC' | 'THREAD_TABLE_ID_ASC' | 'THREAD_TABLE_ID_DESC' | 'THREAD_TABLE_NAME_ASC' | 'THREAD_TABLE_NAME_DESC';
|
|
9
9
|
/** Methods to use when ordering `BillingModule`. */
|
|
@@ -17,7 +17,7 @@ export type BlueprintOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_
|
|
|
17
17
|
/** Methods to use when ordering `BlueprintTemplate`. */
|
|
18
18
|
export type BlueprintTemplateOrderBy = 'CATEGORIES_ASC' | 'CATEGORIES_DESC' | 'COMPLEXITY_ASC' | 'COMPLEXITY_DESC' | 'COPY_COUNT_ASC' | 'COPY_COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DEFINITION_HASH_ASC' | 'DEFINITION_HASH_DESC' | 'DEFINITION_SCHEMA_VERSION_ASC' | 'DEFINITION_SCHEMA_VERSION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'FORKED_FROM_ID_ASC' | 'FORKED_FROM_ID_DESC' | 'FORK_COUNT_ASC' | 'FORK_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'TABLE_HASHES_ASC' | 'TABLE_HASHES_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VERSION_ASC' | 'VERSION_DESC' | 'VISIBILITY_ASC' | 'VISIBILITY_DESC';
|
|
19
19
|
/** Methods to use when ordering `ComputeLogModule`. */
|
|
20
|
-
export type ComputeLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'COMPUTE_LOG_TABLE_ID_ASC' | 'COMPUTE_LOG_TABLE_ID_DESC' | 'COMPUTE_LOG_TABLE_NAME_ASC' | 'COMPUTE_LOG_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | '
|
|
20
|
+
export type ComputeLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'COMPUTE_LOG_TABLE_ID_ASC' | 'COMPUTE_LOG_TABLE_ID_DESC' | 'COMPUTE_LOG_TABLE_NAME_ASC' | 'COMPUTE_LOG_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
|
|
21
21
|
/** Methods to use when ordering `ConfigSecretsUserModule`. */
|
|
22
22
|
export type ConfigSecretsUserModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
23
23
|
/** Methods to use when ordering `ConnectedAccountsModule`. */
|
|
@@ -35,13 +35,13 @@ export type DbPoolOrderBy = 'BOOTSTRAP_ERROR_ASC' | 'BOOTSTRAP_ERROR_DESC' | 'BO
|
|
|
35
35
|
/** Methods to use when ordering `DbPresetModule`. */
|
|
36
36
|
export type DbPresetModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DB_PRESETS_TABLE_ID_ASC' | 'DB_PRESETS_TABLE_ID_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORE_NAME_ASC' | 'STORE_NAME_DESC';
|
|
37
37
|
/** Methods to use when ordering `DbUsageModule`. */
|
|
38
|
-
export type DbUsageModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_ASC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_DESC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_ASC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | '
|
|
38
|
+
export type DbUsageModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_ASC' | 'COLLECT_DB_QUERY_STATS_FUNCTION_DESC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_ASC' | 'COLLECT_DB_TABLE_STATS_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'QUERY_STATS_LOG_TABLE_ID_ASC' | 'QUERY_STATS_LOG_TABLE_ID_DESC' | 'QUERY_STATS_LOG_TABLE_NAME_ASC' | 'QUERY_STATS_LOG_TABLE_NAME_DESC' | 'QUERY_STATS_SUMMARY_TABLE_ID_ASC' | 'QUERY_STATS_SUMMARY_TABLE_ID_DESC' | 'QUERY_STATS_SUMMARY_TABLE_NAME_ASC' | 'QUERY_STATS_SUMMARY_TABLE_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'ROLLUP_DB_QUERY_STATS_USAGE_SUMMARY_FUNCTION_ASC' | 'ROLLUP_DB_QUERY_STATS_USAGE_SUMMARY_FUNCTION_DESC' | 'ROLLUP_DB_TABLE_STATS_USAGE_SUMMARY_FUNCTION_ASC' | 'ROLLUP_DB_TABLE_STATS_USAGE_SUMMARY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TABLE_STATS_LOG_TABLE_ID_ASC' | 'TABLE_STATS_LOG_TABLE_ID_DESC' | 'TABLE_STATS_LOG_TABLE_NAME_ASC' | 'TABLE_STATS_LOG_TABLE_NAME_DESC' | 'TABLE_STATS_SUMMARY_TABLE_ID_ASC' | 'TABLE_STATS_SUMMARY_TABLE_ID_DESC' | 'TABLE_STATS_SUMMARY_TABLE_NAME_ASC' | 'TABLE_STATS_SUMMARY_TABLE_NAME_DESC';
|
|
39
39
|
/** Methods to use when ordering `DefaultIdsModule`. */
|
|
40
40
|
export type DefaultIdsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
41
41
|
/** Methods to use when ordering `DenormalizedTableField`. */
|
|
42
42
|
export type DenormalizedTableFieldOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELD_ID_ASC' | 'FIELD_ID_DESC' | 'FUNC_NAME_ASC' | 'FUNC_NAME_DESC' | 'FUNC_ORDER_ASC' | 'FUNC_ORDER_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REF_FIELD_ID_ASC' | 'REF_FIELD_ID_DESC' | 'REF_IDS_ASC' | 'REF_IDS_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'SET_IDS_ASC' | 'SET_IDS_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'UPDATE_DEFAULTS_ASC' | 'UPDATE_DEFAULTS_DESC' | 'USE_UPDATES_ASC' | 'USE_UPDATES_DESC';
|
|
43
43
|
/** Methods to use when ordering `DevicesModule`. */
|
|
44
|
-
export type DevicesModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | '
|
|
44
|
+
export type DevicesModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEVICE_SETTINGS_TABLE_ID_ASC' | 'DEVICE_SETTINGS_TABLE_ID_DESC' | 'DEVICE_SETTINGS_TABLE_NAME_ASC' | 'DEVICE_SETTINGS_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'USER_DEVICES_TABLE_ID_ASC' | 'USER_DEVICES_TABLE_ID_DESC' | 'USER_DEVICES_TABLE_NAME_ASC' | 'USER_DEVICES_TABLE_NAME_DESC';
|
|
45
45
|
/** Methods to use when ordering `EmailsModule`. */
|
|
46
46
|
export type EmailsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
47
47
|
/** Methods to use when ordering `EntityTypeProvision`. */
|
|
@@ -53,19 +53,21 @@ export type FunctionDeploymentModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' |
|
|
|
53
53
|
/** Methods to use when ordering `FunctionInvocationModule`. */
|
|
54
54
|
export type FunctionInvocationModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'EXECUTION_LOGS_TABLE_ID_ASC' | 'EXECUTION_LOGS_TABLE_ID_DESC' | 'EXECUTION_LOGS_TABLE_NAME_ASC' | 'EXECUTION_LOGS_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATIONS_TABLE_ID_ASC' | 'INVOCATIONS_TABLE_ID_DESC' | 'INVOCATIONS_TABLE_NAME_ASC' | 'INVOCATIONS_TABLE_NAME_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
55
55
|
/** Methods to use when ordering `FunctionModule`. */
|
|
56
|
-
export type FunctionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'BINDINGS_TABLE_ID_ASC' | 'BINDINGS_TABLE_ID_DESC' | 'BINDINGS_TABLE_NAME_ASC' | 'BINDINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
56
|
+
export type FunctionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'BINDINGS_TABLE_ID_ASC' | 'BINDINGS_TABLE_ID_DESC' | 'BINDINGS_TABLE_NAME_ASC' | 'BINDINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'HAS_CRON_ASC' | 'HAS_CRON_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEDULES_TABLE_ID_ASC' | 'SCHEDULES_TABLE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
57
57
|
/** Methods to use when ordering `GraphExecutionModule`. */
|
|
58
58
|
export type GraphExecutionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'EXECUTIONS_TABLE_ID_ASC' | 'EXECUTIONS_TABLE_ID_DESC' | 'EXECUTIONS_TABLE_NAME_ASC' | 'EXECUTIONS_TABLE_NAME_DESC' | 'GRAPH_MODULE_ID_ASC' | 'GRAPH_MODULE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'NODE_STATES_TABLE_ID_ASC' | 'NODE_STATES_TABLE_ID_DESC' | 'NODE_STATES_TABLE_NAME_ASC' | 'NODE_STATES_TABLE_NAME_DESC' | 'OUTPUTS_TABLE_ID_ASC' | 'OUTPUTS_TABLE_ID_DESC' | 'OUTPUTS_TABLE_NAME_ASC' | 'OUTPUTS_TABLE_NAME_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
59
59
|
/** Methods to use when ordering `GraphModule`. */
|
|
60
60
|
export type GraphModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'GRAPHS_TABLE_ID_ASC' | 'GRAPHS_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
61
61
|
/** Methods to use when ordering `HierarchyModule`. */
|
|
62
62
|
export type HierarchyModuleOrderBy = 'CHART_EDGES_TABLE_ID_ASC' | 'CHART_EDGES_TABLE_ID_DESC' | 'CHART_EDGES_TABLE_NAME_ASC' | 'CHART_EDGES_TABLE_NAME_DESC' | 'CHART_EDGE_GRANTS_TABLE_ID_ASC' | 'CHART_EDGE_GRANTS_TABLE_ID_DESC' | 'CHART_EDGE_GRANTS_TABLE_NAME_ASC' | 'CHART_EDGE_GRANTS_TABLE_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'GET_MANAGERS_FUNCTION_ASC' | 'GET_MANAGERS_FUNCTION_DESC' | 'GET_SUBORDINATES_FUNCTION_ASC' | 'GET_SUBORDINATES_FUNCTION_DESC' | 'HIERARCHY_SPRT_TABLE_ID_ASC' | 'HIERARCHY_SPRT_TABLE_ID_DESC' | 'HIERARCHY_SPRT_TABLE_NAME_ASC' | 'HIERARCHY_SPRT_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_MANAGER_OF_FUNCTION_ASC' | 'IS_MANAGER_OF_FUNCTION_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'REBUILD_HIERARCHY_FUNCTION_ASC' | 'REBUILD_HIERARCHY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SPRT_TABLE_NAME_ASC' | 'SPRT_TABLE_NAME_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
|
|
63
|
+
/** Methods to use when ordering `HttpRouteModule`. */
|
|
64
|
+
export type HttpRouteModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTION_MODULE_ID_ASC' | 'FUNCTION_MODULE_ID_DESC' | 'HTTP_ROUTES_TABLE_ID_ASC' | 'HTTP_ROUTES_TABLE_ID_DESC' | 'HTTP_ROUTES_TABLE_NAME_ASC' | 'HTTP_ROUTES_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RESOLVER_FUNCTION_NAME_ASC' | 'RESOLVER_FUNCTION_NAME_DESC' | 'RESOURCE_MODULE_ID_ASC' | 'RESOURCE_MODULE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORAGE_MODULE_ID_ASC' | 'STORAGE_MODULE_ID_DESC';
|
|
63
65
|
/** Methods to use when ordering `I18NModule`. */
|
|
64
66
|
export type I18NModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SETTINGS_TABLE_ID_ASC' | 'SETTINGS_TABLE_ID_DESC';
|
|
65
67
|
/** Methods to use when ordering `IdentityProvidersModule`. */
|
|
66
68
|
export type IdentityProvidersModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
67
69
|
/** Methods to use when ordering `InferenceLogModule`. */
|
|
68
|
-
export type InferenceLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INFERENCE_LOG_TABLE_ID_ASC' | 'INFERENCE_LOG_TABLE_ID_DESC' | 'INFERENCE_LOG_TABLE_NAME_ASC' | 'INFERENCE_LOG_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | '
|
|
70
|
+
export type InferenceLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INFERENCE_LOG_TABLE_ID_ASC' | 'INFERENCE_LOG_TABLE_ID_DESC' | 'INFERENCE_LOG_TABLE_NAME_ASC' | 'INFERENCE_LOG_TABLE_NAME_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
|
|
69
71
|
/** Methods to use when ordering `InfraConfigModule`. */
|
|
70
72
|
export type InfraConfigModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CONFIG_TABLE_ID_ASC' | 'CONFIG_TABLE_ID_DESC' | 'CONFIG_TABLE_NAME_ASC' | 'CONFIG_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
71
73
|
/** Methods to use when ordering `InfraSecretsModule`. */
|
|
@@ -101,13 +103,13 @@ export type ProfilesModuleOrderBy = 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC'
|
|
|
101
103
|
/** Methods to use when ordering `RateLimitMetersModule`. */
|
|
102
104
|
export type RateLimitMetersModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CHECK_RATE_LIMIT_FUNCTION_ASC' | 'CHECK_RATE_LIMIT_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_ID_DESC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_ASC' | 'RATE_LIMIT_OVERRIDES_TABLE_NAME_DESC' | 'RATE_LIMIT_STATE_TABLE_ID_ASC' | 'RATE_LIMIT_STATE_TABLE_ID_DESC' | 'RATE_LIMIT_STATE_TABLE_NAME_ASC' | 'RATE_LIMIT_STATE_TABLE_NAME_DESC' | 'RATE_WINDOW_LIMITS_TABLE_ID_ASC' | 'RATE_WINDOW_LIMITS_TABLE_ID_DESC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_ASC' | 'RATE_WINDOW_LIMITS_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
|
|
103
105
|
/** Methods to use when ordering `RateLimitsModule`. */
|
|
104
|
-
export type RateLimitsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | '
|
|
106
|
+
export type RateLimitsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'IP_RATE_LIMITS_TABLE_ID_ASC' | 'IP_RATE_LIMITS_TABLE_ID_DESC' | 'IP_RATE_LIMITS_TABLE_NAME_ASC' | 'IP_RATE_LIMITS_TABLE_NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RATE_LIMITS_TABLE_ID_ASC' | 'RATE_LIMITS_TABLE_ID_DESC' | 'RATE_LIMITS_TABLE_NAME_ASC' | 'RATE_LIMITS_TABLE_NAME_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_ID_DESC' | 'RATE_LIMIT_SETTINGS_TABLE_NAME_ASC' | 'RATE_LIMIT_SETTINGS_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
|
|
105
107
|
/** Methods to use when ordering `RealtimeModule`. */
|
|
106
108
|
export type RealtimeModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CHANGE_LOG_TABLE_ID_ASC' | 'CHANGE_LOG_TABLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'LISTENER_NODE_TABLE_ID_ASC' | 'LISTENER_NODE_TABLE_ID_DESC' | 'NATURAL' | 'NOTIFY_CHANNEL_ASC' | 'NOTIFY_CHANNEL_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'RETENTION_HOURS_ASC' | 'RETENTION_HOURS_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SOURCE_REGISTRY_TABLE_ID_ASC' | 'SOURCE_REGISTRY_TABLE_ID_DESC' | 'SUBSCRIPTIONS_SCHEMA_ID_ASC' | 'SUBSCRIPTIONS_SCHEMA_ID_DESC';
|
|
107
109
|
/** Methods to use when ordering `RelationProvision`. */
|
|
108
110
|
export type RelationProvisionOrderBy = 'API_REQUIRED_ASC' | 'API_REQUIRED_DESC' | 'CREATE_INDEX_ASC' | 'CREATE_INDEX_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DELETE_ACTION_ASC' | 'DELETE_ACTION_DESC' | 'EXPOSE_IN_API_ASC' | 'EXPOSE_IN_API_DESC' | 'FIELD_NAME_ASC' | 'FIELD_NAME_DESC' | 'GRANTS_ASC' | 'GRANTS_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_REQUIRED_ASC' | 'IS_REQUIRED_DESC' | 'JUNCTION_SCHEMA_ID_ASC' | 'JUNCTION_SCHEMA_ID_DESC' | 'JUNCTION_TABLE_ID_ASC' | 'JUNCTION_TABLE_ID_DESC' | 'JUNCTION_TABLE_NAME_ASC' | 'JUNCTION_TABLE_NAME_DESC' | 'NATURAL' | 'NODES_ASC' | 'NODES_DESC' | 'OUT_FIELD_ID_ASC' | 'OUT_FIELD_ID_DESC' | 'OUT_JUNCTION_TABLE_ID_ASC' | 'OUT_JUNCTION_TABLE_ID_DESC' | 'OUT_SOURCE_FIELD_ID_ASC' | 'OUT_SOURCE_FIELD_ID_DESC' | 'OUT_TARGET_FIELD_ID_ASC' | 'OUT_TARGET_FIELD_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RELATION_TYPE_ASC' | 'RELATION_TYPE_DESC' | 'SOURCE_FIELD_NAME_ASC' | 'SOURCE_FIELD_NAME_DESC' | 'SOURCE_TABLE_ID_ASC' | 'SOURCE_TABLE_ID_DESC' | 'TARGET_FIELD_NAME_ASC' | 'TARGET_FIELD_NAME_DESC' | 'TARGET_TABLE_ID_ASC' | 'TARGET_TABLE_ID_DESC' | 'USE_COMPOSITE_KEY_ASC' | 'USE_COMPOSITE_KEY_DESC';
|
|
109
111
|
/** Methods to use when ordering `ResourceModule`. */
|
|
110
|
-
export type ResourceModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'REQUIREMENTS_STATE_VIEW_NAME_ASC' | 'REQUIREMENTS_STATE_VIEW_NAME_DESC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_ASC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_DESC' | 'RESOURCES_TABLE_ID_ASC' | 'RESOURCES_TABLE_ID_DESC' | 'RESOURCES_TABLE_NAME_ASC' | 'RESOURCES_TABLE_NAME_DESC' | 'RESOURCE_DEFINITIONS_TABLE_ID_ASC' | 'RESOURCE_DEFINITIONS_TABLE_ID_DESC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_ASC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_DESC' | 'RESOURCE_EVENTS_TABLE_ID_ASC' | 'RESOURCE_EVENTS_TABLE_ID_DESC' | 'RESOURCE_EVENTS_TABLE_NAME_ASC' | 'RESOURCE_EVENTS_TABLE_NAME_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
112
|
+
export type ResourceModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_STORE_NAME_ASC' | 'INSTALLATION_STORE_NAME_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'REQUIREMENTS_STATE_VIEW_NAME_ASC' | 'REQUIREMENTS_STATE_VIEW_NAME_DESC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_ASC' | 'RESOLVED_REQUIREMENTS_VIEW_NAME_DESC' | 'RESOURCES_TABLE_ID_ASC' | 'RESOURCES_TABLE_ID_DESC' | 'RESOURCES_TABLE_NAME_ASC' | 'RESOURCES_TABLE_NAME_DESC' | 'RESOURCE_BILLING_ROLLUP_FUNCTION_ASC' | 'RESOURCE_BILLING_ROLLUP_FUNCTION_DESC' | 'RESOURCE_DEFINITIONS_TABLE_ID_ASC' | 'RESOURCE_DEFINITIONS_TABLE_ID_DESC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_ASC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_DESC' | 'RESOURCE_EVENTS_TABLE_ID_ASC' | 'RESOURCE_EVENTS_TABLE_ID_DESC' | 'RESOURCE_EVENTS_TABLE_NAME_ASC' | 'RESOURCE_EVENTS_TABLE_NAME_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_ID_DESC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_ASC' | 'RESOURCE_STATUS_CHECKS_TABLE_NAME_DESC' | 'RESOURCE_USAGE_LOG_TABLE_ID_ASC' | 'RESOURCE_USAGE_LOG_TABLE_ID_DESC' | 'RESOURCE_USAGE_LOG_TABLE_NAME_ASC' | 'RESOURCE_USAGE_LOG_TABLE_NAME_DESC' | 'RESOURCE_USAGE_SUMMARY_TABLE_ID_ASC' | 'RESOURCE_USAGE_SUMMARY_TABLE_ID_DESC' | 'RESOURCE_USAGE_SUMMARY_TABLE_NAME_ASC' | 'RESOURCE_USAGE_SUMMARY_TABLE_NAME_DESC' | 'ROLLUP_RESOURCE_USAGE_SUMMARY_FUNCTION_ASC' | 'ROLLUP_RESOURCE_USAGE_SUMMARY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
111
113
|
/** Methods to use when ordering `RlsModule`. */
|
|
112
114
|
export type RlsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'AUTHENTICATE_ASC' | 'AUTHENTICATE_DESC' | 'AUTHENTICATE_STRICT_ASC' | 'AUTHENTICATE_STRICT_DESC' | 'CURRENT_ROLE_ASC' | 'CURRENT_ROLE_DESC' | 'CURRENT_ROLE_ID_ASC' | 'CURRENT_ROLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
|
|
113
115
|
/** Methods to use when ordering `SecureTableProvision`. */
|
|
@@ -115,13 +117,13 @@ export type SecureTableProvisionOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC'
|
|
|
115
117
|
/** Methods to use when ordering `SessionSecretsModule`. */
|
|
116
118
|
export type SessionSecretsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
117
119
|
/** Methods to use when ordering `SessionsModule`. */
|
|
118
|
-
export type SessionsModuleOrderBy = '
|
|
120
|
+
export type SessionsModuleOrderBy = 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'AUTH_SETTINGS_TABLE_NAME_ASC' | 'AUTH_SETTINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_DEFAULT_EXPIRATION_ASC' | 'SESSIONS_DEFAULT_EXPIRATION_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSIONS_TABLE_NAME_ASC' | 'SESSIONS_TABLE_NAME_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_NAME_ASC' | 'SESSION_CREDENTIALS_TABLE_NAME_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
|
|
119
121
|
/** Methods to use when ordering `StorageLogModule`. */
|
|
120
|
-
export type StorageLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORAGE_LOG_TABLE_ID_ASC' | 'STORAGE_LOG_TABLE_ID_DESC' | 'STORAGE_LOG_TABLE_NAME_ASC' | 'STORAGE_LOG_TABLE_NAME_DESC' | '
|
|
122
|
+
export type StorageLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORAGE_LOG_TABLE_ID_ASC' | 'STORAGE_LOG_TABLE_ID_DESC' | 'STORAGE_LOG_TABLE_NAME_ASC' | 'STORAGE_LOG_TABLE_NAME_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
|
|
121
123
|
/** Methods to use when ordering `StorageModule`. */
|
|
122
124
|
export type StorageModuleOrderBy = 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'CACHE_TTL_SECONDS_ASC' | 'CACHE_TTL_SECONDS_DESC' | 'CONFIRM_UPLOAD_DELAY_ASC' | 'CONFIRM_UPLOAD_DELAY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_MAX_FILE_SIZE_ASC' | 'DEFAULT_MAX_FILE_SIZE_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_ASC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_DESC' | 'ENDPOINT_ASC' | 'ENDPOINT_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FILES_TABLE_ID_ASC' | 'FILES_TABLE_ID_DESC' | 'FILES_TABLE_NAME_ASC' | 'FILES_TABLE_NAME_DESC' | 'FILE_EVENTS_TABLE_ID_ASC' | 'FILE_EVENTS_TABLE_ID_DESC' | 'HAS_AUDIT_LOG_ASC' | 'HAS_AUDIT_LOG_DESC' | 'HAS_CONFIRM_UPLOAD_ASC' | 'HAS_CONFIRM_UPLOAD_DESC' | 'HAS_CONTENT_HASH_ASC' | 'HAS_CONTENT_HASH_DESC' | 'HAS_CUSTOM_KEYS_ASC' | 'HAS_CUSTOM_KEYS_DESC' | 'HAS_PATH_SHARES_ASC' | 'HAS_PATH_SHARES_DESC' | 'HAS_VERSIONING_ASC' | 'HAS_VERSIONING_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_BULK_FILES_ASC' | 'MAX_BULK_FILES_DESC' | 'MAX_BULK_TOTAL_SIZE_ASC' | 'MAX_BULK_TOTAL_SIZE_DESC' | 'MAX_FILENAME_LENGTH_ASC' | 'MAX_FILENAME_LENGTH_DESC' | 'NATURAL' | 'PATH_SHARES_TABLE_ID_ASC' | 'PATH_SHARES_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PUBLIC_URL_PREFIX_ASC' | 'PUBLIC_URL_PREFIX_DESC' | 'RESTRICT_READS_ASC' | 'RESTRICT_READS_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'UPLOAD_URL_EXPIRY_SECONDS_ASC' | 'UPLOAD_URL_EXPIRY_SECONDS_DESC';
|
|
123
125
|
/** Methods to use when ordering `TransferLogModule`. */
|
|
124
|
-
export type TransferLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TRANSFER_LOG_TABLE_ID_ASC' | 'TRANSFER_LOG_TABLE_ID_DESC' | 'TRANSFER_LOG_TABLE_NAME_ASC' | 'TRANSFER_LOG_TABLE_NAME_DESC' | '
|
|
126
|
+
export type TransferLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TRANSFER_LOG_TABLE_ID_ASC' | 'TRANSFER_LOG_TABLE_ID_DESC' | 'TRANSFER_LOG_TABLE_NAME_ASC' | 'TRANSFER_LOG_TABLE_NAME_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
|
|
125
127
|
/** Methods to use when ordering `UserAuthModule`. */
|
|
126
128
|
export type UserAuthModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'AUDITS_TABLE_ID_ASC' | 'AUDITS_TABLE_ID_DESC' | 'AUDITS_TABLE_NAME_ASC' | 'AUDITS_TABLE_NAME_DESC' | 'CHECK_PASSWORD_FUNCTION_ASC' | 'CHECK_PASSWORD_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DELETE_ACCOUNT_FUNCTION_ASC' | 'DELETE_ACCOUNT_FUNCTION_DESC' | 'EMAILS_TABLE_ID_ASC' | 'EMAILS_TABLE_ID_DESC' | 'ENCRYPTED_TABLE_ID_ASC' | 'ENCRYPTED_TABLE_ID_DESC' | 'EXTEND_TOKEN_EXPIRES_ASC' | 'EXTEND_TOKEN_EXPIRES_DESC' | 'FORGOT_PASSWORD_FUNCTION_ASC' | 'FORGOT_PASSWORD_FUNCTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'REQUEST_CROSS_ORIGIN_TOKEN_FUNCTION_ASC' | 'REQUEST_CROSS_ORIGIN_TOKEN_FUNCTION_DESC' | 'RESET_PASSWORD_FUNCTION_ASC' | 'RESET_PASSWORD_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SECRETS_TABLE_ID_ASC' | 'SECRETS_TABLE_ID_DESC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_ASC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_DESC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_ASC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SET_PASSWORD_FUNCTION_ASC' | 'SET_PASSWORD_FUNCTION_DESC' | 'SIGN_IN_CROSS_ORIGIN_FUNCTION_ASC' | 'SIGN_IN_CROSS_ORIGIN_FUNCTION_DESC' | 'SIGN_IN_FUNCTION_ASC' | 'SIGN_IN_FUNCTION_DESC' | 'SIGN_OUT_FUNCTION_ASC' | 'SIGN_OUT_FUNCTION_DESC' | 'SIGN_UP_FUNCTION_ASC' | 'SIGN_UP_FUNCTION_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'VERIFY_EMAIL_FUNCTION_ASC' | 'VERIFY_EMAIL_FUNCTION_DESC' | 'VERIFY_PASSWORD_FUNCTION_ASC' | 'VERIFY_PASSWORD_FUNCTION_DESC';
|
|
127
129
|
/** Methods to use when ordering `UserCredentialsModule`. */
|
|
@@ -136,6 +138,8 @@ export type UsersModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID
|
|
|
136
138
|
export type WebauthnAuthModuleOrderBy = 'ATTESTATION_TYPE_ASC' | 'ATTESTATION_TYPE_DESC' | 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'CHALLENGE_EXPIRY_ASC' | 'CHALLENGE_EXPIRY_DESC' | 'CREDENTIALS_TABLE_ID_ASC' | 'CREDENTIALS_TABLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'ORIGIN_ALLOWLIST_ASC' | 'ORIGIN_ALLOWLIST_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRE_USER_VERIFICATION_ASC' | 'REQUIRE_USER_VERIFICATION_DESC' | 'RESIDENT_KEY_ASC' | 'RESIDENT_KEY_DESC' | 'RP_ID_ASC' | 'RP_ID_DESC' | 'RP_NAME_ASC' | 'RP_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSION_SECRETS_TABLE_ID_ASC' | 'SESSION_SECRETS_TABLE_ID_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
|
|
137
139
|
/** Methods to use when ordering `WebauthnCredentialsModule`. */
|
|
138
140
|
export type WebauthnCredentialsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
141
|
+
/** Methods to use when ordering `WebhookModule`. */
|
|
142
|
+
export type WebhookModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTION_INVOCATION_MODULE_ID_ASC' | 'FUNCTION_INVOCATION_MODULE_ID_DESC' | 'FUNCTION_MODULE_ID_ASC' | 'FUNCTION_MODULE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INFRA_SECRETS_MODULE_ID_ASC' | 'INFRA_SECRETS_MODULE_ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'WEBHOOK_ENDPOINTS_TABLE_ID_ASC' | 'WEBHOOK_ENDPOINTS_TABLE_ID_DESC' | 'WEBHOOK_ENDPOINTS_TABLE_NAME_ASC' | 'WEBHOOK_ENDPOINTS_TABLE_NAME_DESC' | 'WEBHOOK_EVENTS_TABLE_ID_ASC' | 'WEBHOOK_EVENTS_TABLE_ID_DESC' | 'WEBHOOK_EVENTS_TABLE_NAME_ASC' | 'WEBHOOK_EVENTS_TABLE_NAME_DESC';
|
|
139
143
|
/** A filter to be used against `AgentModule` object types. All fields are combined with a logical ‘and.’ */
|
|
140
144
|
export interface AgentModuleFilter {
|
|
141
145
|
/** Filter by the object’s `agentTableId` field. */
|
|
@@ -917,10 +921,10 @@ export interface ComputeLogModuleFilter {
|
|
|
917
921
|
schemaId?: UUIDFilter;
|
|
918
922
|
/** Filter by the object’s `scope` field. */
|
|
919
923
|
scope?: StringFilter;
|
|
920
|
-
/** Filter by the object’s `
|
|
921
|
-
|
|
922
|
-
/** Filter by the object’s `
|
|
923
|
-
|
|
924
|
+
/** Filter by the object’s `usageSummaryTableId` field. */
|
|
925
|
+
usageSummaryTableId?: UUIDFilter;
|
|
926
|
+
/** Filter by the object’s `usageSummaryTableName` field. */
|
|
927
|
+
usageSummaryTableName?: StringFilter;
|
|
924
928
|
}
|
|
925
929
|
/** An input for mutations affecting `ComputeLogModule` */
|
|
926
930
|
export interface ComputeLogModuleInput {
|
|
@@ -942,8 +946,8 @@ export interface ComputeLogModuleInput {
|
|
|
942
946
|
retention?: string;
|
|
943
947
|
schemaId?: string;
|
|
944
948
|
scope?: string;
|
|
945
|
-
|
|
946
|
-
|
|
949
|
+
usageSummaryTableId?: string;
|
|
950
|
+
usageSummaryTableName?: string;
|
|
947
951
|
}
|
|
948
952
|
/** Represents an update to a `ComputeLogModule`. Fields that are set will be updated. */
|
|
949
953
|
export interface ComputeLogModulePatch {
|
|
@@ -965,8 +969,8 @@ export interface ComputeLogModulePatch {
|
|
|
965
969
|
retention?: string;
|
|
966
970
|
schemaId?: string;
|
|
967
971
|
scope?: string;
|
|
968
|
-
|
|
969
|
-
|
|
972
|
+
usageSummaryTableId?: string;
|
|
973
|
+
usageSummaryTableName?: string;
|
|
970
974
|
}
|
|
971
975
|
/** A filter to be used against `ConfigSecretsUserModule` object types. All fields are combined with a logical ‘and.’ */
|
|
972
976
|
export interface ConfigSecretsUserModuleFilter {
|
|
@@ -1219,6 +1223,11 @@ export interface CreateHierarchyModuleInput {
|
|
|
1219
1223
|
/** The `HierarchyModule` to be created by this mutation. */
|
|
1220
1224
|
hierarchyModule: HierarchyModuleInput;
|
|
1221
1225
|
}
|
|
1226
|
+
export interface CreateHttpRouteModuleInput {
|
|
1227
|
+
clientMutationId?: string;
|
|
1228
|
+
/** The `HttpRouteModule` to be created by this mutation. */
|
|
1229
|
+
httpRouteModule: HttpRouteModuleInput;
|
|
1230
|
+
}
|
|
1222
1231
|
export interface CreateI18NModuleInput {
|
|
1223
1232
|
clientMutationId?: string;
|
|
1224
1233
|
/** The `I18NModule` to be created by this mutation. */
|
|
@@ -1409,6 +1418,11 @@ export interface CreateWebauthnCredentialsModuleInput {
|
|
|
1409
1418
|
/** The `WebauthnCredentialsModule` to be created by this mutation. */
|
|
1410
1419
|
webauthnCredentialsModule: WebauthnCredentialsModuleInput;
|
|
1411
1420
|
}
|
|
1421
|
+
export interface CreateWebhookModuleInput {
|
|
1422
|
+
clientMutationId?: string;
|
|
1423
|
+
/** The `WebhookModule` to be created by this mutation. */
|
|
1424
|
+
webhookModule: WebhookModuleInput;
|
|
1425
|
+
}
|
|
1412
1426
|
/** A filter to be used against `CryptoAddressesModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1413
1427
|
export interface CryptoAddressesModuleFilter {
|
|
1414
1428
|
/** Checks for all expressions in this list. */
|
|
@@ -1917,32 +1931,32 @@ export interface DbUsageModuleFilter {
|
|
|
1917
1931
|
privateSchemaName?: StringFilter;
|
|
1918
1932
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
1919
1933
|
publicSchemaName?: StringFilter;
|
|
1920
|
-
/** Filter by the object’s `queryStatsDailyTableId` field. */
|
|
1921
|
-
queryStatsDailyTableId?: UUIDFilter;
|
|
1922
|
-
/** Filter by the object’s `queryStatsDailyTableName` field. */
|
|
1923
|
-
queryStatsDailyTableName?: StringFilter;
|
|
1924
1934
|
/** Filter by the object’s `queryStatsLogTableId` field. */
|
|
1925
1935
|
queryStatsLogTableId?: UUIDFilter;
|
|
1926
1936
|
/** Filter by the object’s `queryStatsLogTableName` field. */
|
|
1927
1937
|
queryStatsLogTableName?: StringFilter;
|
|
1938
|
+
/** Filter by the object’s `queryStatsSummaryTableId` field. */
|
|
1939
|
+
queryStatsSummaryTableId?: UUIDFilter;
|
|
1940
|
+
/** Filter by the object’s `queryStatsSummaryTableName` field. */
|
|
1941
|
+
queryStatsSummaryTableName?: StringFilter;
|
|
1928
1942
|
/** Filter by the object’s `retention` field. */
|
|
1929
1943
|
retention?: StringFilter;
|
|
1930
|
-
/** Filter by the object’s `
|
|
1931
|
-
|
|
1932
|
-
/** Filter by the object’s `
|
|
1933
|
-
|
|
1944
|
+
/** Filter by the object’s `rollupDbQueryStatsUsageSummaryFunction` field. */
|
|
1945
|
+
rollupDbQueryStatsUsageSummaryFunction?: StringFilter;
|
|
1946
|
+
/** Filter by the object’s `rollupDbTableStatsUsageSummaryFunction` field. */
|
|
1947
|
+
rollupDbTableStatsUsageSummaryFunction?: StringFilter;
|
|
1934
1948
|
/** Filter by the object’s `schemaId` field. */
|
|
1935
1949
|
schemaId?: UUIDFilter;
|
|
1936
1950
|
/** Filter by the object’s `scope` field. */
|
|
1937
1951
|
scope?: StringFilter;
|
|
1938
|
-
/** Filter by the object’s `tableStatsDailyTableId` field. */
|
|
1939
|
-
tableStatsDailyTableId?: UUIDFilter;
|
|
1940
|
-
/** Filter by the object’s `tableStatsDailyTableName` field. */
|
|
1941
|
-
tableStatsDailyTableName?: StringFilter;
|
|
1942
1952
|
/** Filter by the object’s `tableStatsLogTableId` field. */
|
|
1943
1953
|
tableStatsLogTableId?: UUIDFilter;
|
|
1944
1954
|
/** Filter by the object’s `tableStatsLogTableName` field. */
|
|
1945
1955
|
tableStatsLogTableName?: StringFilter;
|
|
1956
|
+
/** Filter by the object’s `tableStatsSummaryTableId` field. */
|
|
1957
|
+
tableStatsSummaryTableId?: UUIDFilter;
|
|
1958
|
+
/** Filter by the object’s `tableStatsSummaryTableName` field. */
|
|
1959
|
+
tableStatsSummaryTableName?: StringFilter;
|
|
1946
1960
|
}
|
|
1947
1961
|
/** An input for mutations affecting `DbUsageModule` */
|
|
1948
1962
|
export interface DbUsageModuleInput {
|
|
@@ -1960,19 +1974,19 @@ export interface DbUsageModuleInput {
|
|
|
1960
1974
|
privateSchemaId?: string;
|
|
1961
1975
|
privateSchemaName?: string;
|
|
1962
1976
|
publicSchemaName?: string;
|
|
1963
|
-
queryStatsDailyTableId?: string;
|
|
1964
|
-
queryStatsDailyTableName?: string;
|
|
1965
1977
|
queryStatsLogTableId?: string;
|
|
1966
1978
|
queryStatsLogTableName?: string;
|
|
1979
|
+
queryStatsSummaryTableId?: string;
|
|
1980
|
+
queryStatsSummaryTableName?: string;
|
|
1967
1981
|
retention?: string;
|
|
1968
|
-
|
|
1969
|
-
|
|
1982
|
+
rollupDbQueryStatsUsageSummaryFunction?: string;
|
|
1983
|
+
rollupDbTableStatsUsageSummaryFunction?: string;
|
|
1970
1984
|
schemaId?: string;
|
|
1971
1985
|
scope?: string;
|
|
1972
|
-
tableStatsDailyTableId?: string;
|
|
1973
|
-
tableStatsDailyTableName?: string;
|
|
1974
1986
|
tableStatsLogTableId?: string;
|
|
1975
1987
|
tableStatsLogTableName?: string;
|
|
1988
|
+
tableStatsSummaryTableId?: string;
|
|
1989
|
+
tableStatsSummaryTableName?: string;
|
|
1976
1990
|
}
|
|
1977
1991
|
/** Represents an update to a `DbUsageModule`. Fields that are set will be updated. */
|
|
1978
1992
|
export interface DbUsageModulePatch {
|
|
@@ -1990,19 +2004,19 @@ export interface DbUsageModulePatch {
|
|
|
1990
2004
|
privateSchemaId?: string;
|
|
1991
2005
|
privateSchemaName?: string;
|
|
1992
2006
|
publicSchemaName?: string;
|
|
1993
|
-
queryStatsDailyTableId?: string;
|
|
1994
|
-
queryStatsDailyTableName?: string;
|
|
1995
2007
|
queryStatsLogTableId?: string;
|
|
1996
2008
|
queryStatsLogTableName?: string;
|
|
2009
|
+
queryStatsSummaryTableId?: string;
|
|
2010
|
+
queryStatsSummaryTableName?: string;
|
|
1997
2011
|
retention?: string;
|
|
1998
|
-
|
|
1999
|
-
|
|
2012
|
+
rollupDbQueryStatsUsageSummaryFunction?: string;
|
|
2013
|
+
rollupDbTableStatsUsageSummaryFunction?: string;
|
|
2000
2014
|
schemaId?: string;
|
|
2001
2015
|
scope?: string;
|
|
2002
|
-
tableStatsDailyTableId?: string;
|
|
2003
|
-
tableStatsDailyTableName?: string;
|
|
2004
2016
|
tableStatsLogTableId?: string;
|
|
2005
2017
|
tableStatsLogTableName?: string;
|
|
2018
|
+
tableStatsSummaryTableId?: string;
|
|
2019
|
+
tableStatsSummaryTableName?: string;
|
|
2006
2020
|
}
|
|
2007
2021
|
/** A filter to be used against `DefaultIdsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
2008
2022
|
export interface DefaultIdsModuleFilter {
|
|
@@ -2143,6 +2157,10 @@ export interface DeleteHierarchyModuleInput {
|
|
|
2143
2157
|
clientMutationId?: string;
|
|
2144
2158
|
id: string;
|
|
2145
2159
|
}
|
|
2160
|
+
export interface DeleteHttpRouteModuleInput {
|
|
2161
|
+
clientMutationId?: string;
|
|
2162
|
+
id: string;
|
|
2163
|
+
}
|
|
2146
2164
|
export interface DeleteI18NModuleInput {
|
|
2147
2165
|
clientMutationId?: string;
|
|
2148
2166
|
id: string;
|
|
@@ -2297,6 +2315,10 @@ export interface DeleteWebauthnCredentialsModuleInput {
|
|
|
2297
2315
|
clientMutationId?: string;
|
|
2298
2316
|
id: string;
|
|
2299
2317
|
}
|
|
2318
|
+
export interface DeleteWebhookModuleInput {
|
|
2319
|
+
clientMutationId?: string;
|
|
2320
|
+
id: string;
|
|
2321
|
+
}
|
|
2300
2322
|
/** A filter to be used against `DenormalizedTableField` object types. All fields are combined with a logical ‘and.’ */
|
|
2301
2323
|
export interface DenormalizedTableFieldFilter {
|
|
2302
2324
|
/** Checks for all expressions in this list. */
|
|
@@ -2366,10 +2388,10 @@ export interface DevicesModuleFilter {
|
|
|
2366
2388
|
and?: DevicesModuleFilter[];
|
|
2367
2389
|
/** Filter by the object’s `databaseId` field. */
|
|
2368
2390
|
databaseId?: UUIDFilter;
|
|
2369
|
-
/** Filter by the object’s `deviceSettingsTable` field. */
|
|
2370
|
-
deviceSettingsTable?: StringFilter;
|
|
2371
2391
|
/** Filter by the object’s `deviceSettingsTableId` field. */
|
|
2372
2392
|
deviceSettingsTableId?: UUIDFilter;
|
|
2393
|
+
/** Filter by the object’s `deviceSettingsTableName` field. */
|
|
2394
|
+
deviceSettingsTableName?: StringFilter;
|
|
2373
2395
|
/** Filter by the object’s `id` field. */
|
|
2374
2396
|
id?: UUIDFilter;
|
|
2375
2397
|
/** Negates the expression. */
|
|
@@ -2378,30 +2400,30 @@ export interface DevicesModuleFilter {
|
|
|
2378
2400
|
or?: DevicesModuleFilter[];
|
|
2379
2401
|
/** Filter by the object’s `schemaId` field. */
|
|
2380
2402
|
schemaId?: UUIDFilter;
|
|
2381
|
-
/** Filter by the object’s `userDevicesTable` field. */
|
|
2382
|
-
userDevicesTable?: StringFilter;
|
|
2383
2403
|
/** Filter by the object’s `userDevicesTableId` field. */
|
|
2384
2404
|
userDevicesTableId?: UUIDFilter;
|
|
2405
|
+
/** Filter by the object’s `userDevicesTableName` field. */
|
|
2406
|
+
userDevicesTableName?: StringFilter;
|
|
2385
2407
|
}
|
|
2386
2408
|
/** An input for mutations affecting `DevicesModule` */
|
|
2387
2409
|
export interface DevicesModuleInput {
|
|
2388
2410
|
databaseId: string;
|
|
2389
|
-
deviceSettingsTable?: string;
|
|
2390
2411
|
deviceSettingsTableId?: string;
|
|
2412
|
+
deviceSettingsTableName?: string;
|
|
2391
2413
|
id?: string;
|
|
2392
2414
|
schemaId?: string;
|
|
2393
|
-
userDevicesTable?: string;
|
|
2394
2415
|
userDevicesTableId?: string;
|
|
2416
|
+
userDevicesTableName?: string;
|
|
2395
2417
|
}
|
|
2396
2418
|
/** Represents an update to a `DevicesModule`. Fields that are set will be updated. */
|
|
2397
2419
|
export interface DevicesModulePatch {
|
|
2398
2420
|
databaseId?: string;
|
|
2399
|
-
deviceSettingsTable?: string;
|
|
2400
2421
|
deviceSettingsTableId?: string;
|
|
2422
|
+
deviceSettingsTableName?: string;
|
|
2401
2423
|
id?: string;
|
|
2402
2424
|
schemaId?: string;
|
|
2403
|
-
userDevicesTable?: string;
|
|
2404
2425
|
userDevicesTableId?: string;
|
|
2426
|
+
userDevicesTableName?: string;
|
|
2405
2427
|
}
|
|
2406
2428
|
/** A filter to be used against `EmailsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
2407
2429
|
export interface EmailsModuleFilter {
|
|
@@ -3456,6 +3478,8 @@ export interface FunctionModuleFilter {
|
|
|
3456
3478
|
entityField?: StringFilter;
|
|
3457
3479
|
/** Filter by the object’s `entityTableId` field. */
|
|
3458
3480
|
entityTableId?: UUIDFilter;
|
|
3481
|
+
/** Filter by the object’s `hasCron` field. */
|
|
3482
|
+
hasCron?: BooleanFilter;
|
|
3459
3483
|
/** Filter by the object’s `id` field. */
|
|
3460
3484
|
id?: UUIDFilter;
|
|
3461
3485
|
/** Negates the expression. */
|
|
@@ -3476,6 +3500,8 @@ export interface FunctionModuleFilter {
|
|
|
3476
3500
|
provisions?: JSONFilter;
|
|
3477
3501
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
3478
3502
|
publicSchemaName?: StringFilter;
|
|
3503
|
+
/** Filter by the object’s `schedulesTableId` field. */
|
|
3504
|
+
schedulesTableId?: UUIDFilter;
|
|
3479
3505
|
/** Filter by the object’s `schemaId` field. */
|
|
3480
3506
|
schemaId?: UUIDFilter;
|
|
3481
3507
|
/** Filter by the object’s `scope` field. */
|
|
@@ -3492,6 +3518,7 @@ export interface FunctionModuleInput {
|
|
|
3492
3518
|
definitionsTableName?: string;
|
|
3493
3519
|
entityField?: string;
|
|
3494
3520
|
entityTableId?: string;
|
|
3521
|
+
hasCron?: boolean;
|
|
3495
3522
|
id?: string;
|
|
3496
3523
|
policies?: unknown;
|
|
3497
3524
|
prefix?: string;
|
|
@@ -3500,6 +3527,7 @@ export interface FunctionModuleInput {
|
|
|
3500
3527
|
privateSchemaName?: string;
|
|
3501
3528
|
provisions?: unknown;
|
|
3502
3529
|
publicSchemaName?: string;
|
|
3530
|
+
schedulesTableId?: string;
|
|
3503
3531
|
schemaId?: string;
|
|
3504
3532
|
scope?: string;
|
|
3505
3533
|
}
|
|
@@ -3514,6 +3542,7 @@ export interface FunctionModulePatch {
|
|
|
3514
3542
|
definitionsTableName?: string;
|
|
3515
3543
|
entityField?: string;
|
|
3516
3544
|
entityTableId?: string;
|
|
3545
|
+
hasCron?: boolean;
|
|
3517
3546
|
id?: string;
|
|
3518
3547
|
policies?: unknown;
|
|
3519
3548
|
prefix?: string;
|
|
@@ -3522,6 +3551,7 @@ export interface FunctionModulePatch {
|
|
|
3522
3551
|
privateSchemaName?: string;
|
|
3523
3552
|
provisions?: unknown;
|
|
3524
3553
|
publicSchemaName?: string;
|
|
3554
|
+
schedulesTableId?: string;
|
|
3525
3555
|
schemaId?: string;
|
|
3526
3556
|
scope?: string;
|
|
3527
3557
|
}
|
|
@@ -3830,6 +3860,117 @@ export interface HierarchyModulePatch {
|
|
|
3830
3860
|
sprtTableName?: string;
|
|
3831
3861
|
usersTableId?: string;
|
|
3832
3862
|
}
|
|
3863
|
+
/** A filter to be used against `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
3864
|
+
export interface HttpRouteModuleFilter {
|
|
3865
|
+
/** Checks for all expressions in this list. */
|
|
3866
|
+
and?: HttpRouteModuleFilter[];
|
|
3867
|
+
/** Filter by the object’s `apiName` field. */
|
|
3868
|
+
apiName?: StringFilter;
|
|
3869
|
+
/** Filter by the object’s `databaseId` field. */
|
|
3870
|
+
databaseId?: UUIDFilter;
|
|
3871
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
3872
|
+
defaultPermissions?: StringListFilter;
|
|
3873
|
+
/** Filter by the object’s `entityField` field. */
|
|
3874
|
+
entityField?: StringFilter;
|
|
3875
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
3876
|
+
entityTableId?: UUIDFilter;
|
|
3877
|
+
/** Filter by the object’s `functionModule` relation. */
|
|
3878
|
+
functionModule?: FunctionModuleFilter;
|
|
3879
|
+
/** A related `functionModule` exists. */
|
|
3880
|
+
functionModuleExists?: boolean;
|
|
3881
|
+
/** Filter by the object’s `functionModuleId` field. */
|
|
3882
|
+
functionModuleId?: UUIDFilter;
|
|
3883
|
+
/** Filter by the object’s `httpRoutesTableId` field. */
|
|
3884
|
+
httpRoutesTableId?: UUIDFilter;
|
|
3885
|
+
/** Filter by the object’s `httpRoutesTableName` field. */
|
|
3886
|
+
httpRoutesTableName?: StringFilter;
|
|
3887
|
+
/** Filter by the object’s `id` field. */
|
|
3888
|
+
id?: UUIDFilter;
|
|
3889
|
+
/** Negates the expression. */
|
|
3890
|
+
not?: HttpRouteModuleFilter;
|
|
3891
|
+
/** Checks for any expressions in this list. */
|
|
3892
|
+
or?: HttpRouteModuleFilter[];
|
|
3893
|
+
/** Filter by the object’s `policies` field. */
|
|
3894
|
+
policies?: JSONFilter;
|
|
3895
|
+
/** Filter by the object’s `prefix` field. */
|
|
3896
|
+
prefix?: StringFilter;
|
|
3897
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
3898
|
+
privateApiName?: StringFilter;
|
|
3899
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
3900
|
+
privateSchemaId?: UUIDFilter;
|
|
3901
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
3902
|
+
privateSchemaName?: StringFilter;
|
|
3903
|
+
/** Filter by the object’s `provisions` field. */
|
|
3904
|
+
provisions?: JSONFilter;
|
|
3905
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
3906
|
+
publicSchemaName?: StringFilter;
|
|
3907
|
+
/** Filter by the object’s `resolverFunctionName` field. */
|
|
3908
|
+
resolverFunctionName?: StringFilter;
|
|
3909
|
+
/** Filter by the object’s `resourceModule` relation. */
|
|
3910
|
+
resourceModule?: ResourceModuleFilter;
|
|
3911
|
+
/** A related `resourceModule` exists. */
|
|
3912
|
+
resourceModuleExists?: boolean;
|
|
3913
|
+
/** Filter by the object’s `resourceModuleId` field. */
|
|
3914
|
+
resourceModuleId?: UUIDFilter;
|
|
3915
|
+
/** Filter by the object’s `schemaId` field. */
|
|
3916
|
+
schemaId?: UUIDFilter;
|
|
3917
|
+
/** Filter by the object’s `scope` field. */
|
|
3918
|
+
scope?: StringFilter;
|
|
3919
|
+
/** Filter by the object’s `storageModule` relation. */
|
|
3920
|
+
storageModule?: StorageModuleFilter;
|
|
3921
|
+
/** A related `storageModule` exists. */
|
|
3922
|
+
storageModuleExists?: boolean;
|
|
3923
|
+
/** Filter by the object’s `storageModuleId` field. */
|
|
3924
|
+
storageModuleId?: UUIDFilter;
|
|
3925
|
+
}
|
|
3926
|
+
/** An input for mutations affecting `HttpRouteModule` */
|
|
3927
|
+
export interface HttpRouteModuleInput {
|
|
3928
|
+
apiName?: string;
|
|
3929
|
+
databaseId: string;
|
|
3930
|
+
defaultPermissions?: string[];
|
|
3931
|
+
entityField?: string;
|
|
3932
|
+
entityTableId?: string;
|
|
3933
|
+
functionModuleId?: string;
|
|
3934
|
+
httpRoutesTableId?: string;
|
|
3935
|
+
httpRoutesTableName?: string;
|
|
3936
|
+
id?: string;
|
|
3937
|
+
policies?: unknown;
|
|
3938
|
+
prefix?: string;
|
|
3939
|
+
privateApiName?: string;
|
|
3940
|
+
privateSchemaId?: string;
|
|
3941
|
+
privateSchemaName?: string;
|
|
3942
|
+
provisions?: unknown;
|
|
3943
|
+
publicSchemaName?: string;
|
|
3944
|
+
resolverFunctionName?: string;
|
|
3945
|
+
resourceModuleId?: string;
|
|
3946
|
+
schemaId?: string;
|
|
3947
|
+
scope?: string;
|
|
3948
|
+
storageModuleId?: string;
|
|
3949
|
+
}
|
|
3950
|
+
/** Represents an update to a `HttpRouteModule`. Fields that are set will be updated. */
|
|
3951
|
+
export interface HttpRouteModulePatch {
|
|
3952
|
+
apiName?: string;
|
|
3953
|
+
databaseId?: string;
|
|
3954
|
+
defaultPermissions?: string[];
|
|
3955
|
+
entityField?: string;
|
|
3956
|
+
entityTableId?: string;
|
|
3957
|
+
functionModuleId?: string;
|
|
3958
|
+
httpRoutesTableId?: string;
|
|
3959
|
+
httpRoutesTableName?: string;
|
|
3960
|
+
id?: string;
|
|
3961
|
+
policies?: unknown;
|
|
3962
|
+
prefix?: string;
|
|
3963
|
+
privateApiName?: string;
|
|
3964
|
+
privateSchemaId?: string;
|
|
3965
|
+
privateSchemaName?: string;
|
|
3966
|
+
provisions?: unknown;
|
|
3967
|
+
publicSchemaName?: string;
|
|
3968
|
+
resolverFunctionName?: string;
|
|
3969
|
+
resourceModuleId?: string;
|
|
3970
|
+
schemaId?: string;
|
|
3971
|
+
scope?: string;
|
|
3972
|
+
storageModuleId?: string;
|
|
3973
|
+
}
|
|
3833
3974
|
/** A filter to be used against `I18NModule` object types. All fields are combined with a logical ‘and.’ */
|
|
3834
3975
|
export interface I18NModuleFilter {
|
|
3835
3976
|
/** Checks for all expressions in this list. */
|
|
@@ -3990,10 +4131,10 @@ export interface InferenceLogModuleFilter {
|
|
|
3990
4131
|
schemaId?: UUIDFilter;
|
|
3991
4132
|
/** Filter by the object’s `scope` field. */
|
|
3992
4133
|
scope?: StringFilter;
|
|
3993
|
-
/** Filter by the object’s `
|
|
3994
|
-
|
|
3995
|
-
/** Filter by the object’s `
|
|
3996
|
-
|
|
4134
|
+
/** Filter by the object’s `usageSummaryTableId` field. */
|
|
4135
|
+
usageSummaryTableId?: UUIDFilter;
|
|
4136
|
+
/** Filter by the object’s `usageSummaryTableName` field. */
|
|
4137
|
+
usageSummaryTableName?: StringFilter;
|
|
3997
4138
|
}
|
|
3998
4139
|
/** An input for mutations affecting `InferenceLogModule` */
|
|
3999
4140
|
export interface InferenceLogModuleInput {
|
|
@@ -4015,8 +4156,8 @@ export interface InferenceLogModuleInput {
|
|
|
4015
4156
|
retention?: string;
|
|
4016
4157
|
schemaId?: string;
|
|
4017
4158
|
scope?: string;
|
|
4018
|
-
|
|
4019
|
-
|
|
4159
|
+
usageSummaryTableId?: string;
|
|
4160
|
+
usageSummaryTableName?: string;
|
|
4020
4161
|
}
|
|
4021
4162
|
/** Represents an update to a `InferenceLogModule`. Fields that are set will be updated. */
|
|
4022
4163
|
export interface InferenceLogModulePatch {
|
|
@@ -4038,8 +4179,8 @@ export interface InferenceLogModulePatch {
|
|
|
4038
4179
|
retention?: string;
|
|
4039
4180
|
schemaId?: string;
|
|
4040
4181
|
scope?: string;
|
|
4041
|
-
|
|
4042
|
-
|
|
4182
|
+
usageSummaryTableId?: string;
|
|
4183
|
+
usageSummaryTableName?: string;
|
|
4043
4184
|
}
|
|
4044
4185
|
/** A filter to be used against `InfraConfigModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4045
4186
|
export interface InfraConfigModuleFilter {
|
|
@@ -5847,22 +5988,22 @@ export interface RateLimitsModuleFilter {
|
|
|
5847
5988
|
databaseId?: UUIDFilter;
|
|
5848
5989
|
/** Filter by the object’s `id` field. */
|
|
5849
5990
|
id?: UUIDFilter;
|
|
5850
|
-
/** Filter by the object’s `ipRateLimitsTable` field. */
|
|
5851
|
-
ipRateLimitsTable?: StringFilter;
|
|
5852
5991
|
/** Filter by the object’s `ipRateLimitsTableId` field. */
|
|
5853
5992
|
ipRateLimitsTableId?: UUIDFilter;
|
|
5993
|
+
/** Filter by the object’s `ipRateLimitsTableName` field. */
|
|
5994
|
+
ipRateLimitsTableName?: StringFilter;
|
|
5854
5995
|
/** Negates the expression. */
|
|
5855
5996
|
not?: RateLimitsModuleFilter;
|
|
5856
5997
|
/** Checks for any expressions in this list. */
|
|
5857
5998
|
or?: RateLimitsModuleFilter[];
|
|
5858
|
-
/** Filter by the object’s `rateLimitSettingsTable` field. */
|
|
5859
|
-
rateLimitSettingsTable?: StringFilter;
|
|
5860
5999
|
/** Filter by the object’s `rateLimitSettingsTableId` field. */
|
|
5861
6000
|
rateLimitSettingsTableId?: UUIDFilter;
|
|
5862
|
-
/** Filter by the object’s `
|
|
5863
|
-
|
|
6001
|
+
/** Filter by the object’s `rateLimitSettingsTableName` field. */
|
|
6002
|
+
rateLimitSettingsTableName?: StringFilter;
|
|
5864
6003
|
/** Filter by the object’s `rateLimitsTableId` field. */
|
|
5865
6004
|
rateLimitsTableId?: UUIDFilter;
|
|
6005
|
+
/** Filter by the object’s `rateLimitsTableName` field. */
|
|
6006
|
+
rateLimitsTableName?: StringFilter;
|
|
5866
6007
|
/** Filter by the object’s `schemaId` field. */
|
|
5867
6008
|
schemaId?: UUIDFilter;
|
|
5868
6009
|
}
|
|
@@ -5870,24 +6011,24 @@ export interface RateLimitsModuleFilter {
|
|
|
5870
6011
|
export interface RateLimitsModuleInput {
|
|
5871
6012
|
databaseId: string;
|
|
5872
6013
|
id?: string;
|
|
5873
|
-
ipRateLimitsTable?: string;
|
|
5874
6014
|
ipRateLimitsTableId?: string;
|
|
5875
|
-
|
|
6015
|
+
ipRateLimitsTableName?: string;
|
|
5876
6016
|
rateLimitSettingsTableId?: string;
|
|
5877
|
-
|
|
6017
|
+
rateLimitSettingsTableName?: string;
|
|
5878
6018
|
rateLimitsTableId?: string;
|
|
6019
|
+
rateLimitsTableName?: string;
|
|
5879
6020
|
schemaId?: string;
|
|
5880
6021
|
}
|
|
5881
6022
|
/** Represents an update to a `RateLimitsModule`. Fields that are set will be updated. */
|
|
5882
6023
|
export interface RateLimitsModulePatch {
|
|
5883
6024
|
databaseId?: string;
|
|
5884
6025
|
id?: string;
|
|
5885
|
-
ipRateLimitsTable?: string;
|
|
5886
6026
|
ipRateLimitsTableId?: string;
|
|
5887
|
-
|
|
6027
|
+
ipRateLimitsTableName?: string;
|
|
5888
6028
|
rateLimitSettingsTableId?: string;
|
|
5889
|
-
|
|
6029
|
+
rateLimitSettingsTableName?: string;
|
|
5890
6030
|
rateLimitsTableId?: string;
|
|
6031
|
+
rateLimitsTableName?: string;
|
|
5891
6032
|
schemaId?: string;
|
|
5892
6033
|
}
|
|
5893
6034
|
/** A filter to be used against `RealtimeModule` object types. All fields are combined with a logical ‘and.’ */
|
|
@@ -6282,6 +6423,14 @@ export interface ResourceModuleFilter {
|
|
|
6282
6423
|
entityTableId?: UUIDFilter;
|
|
6283
6424
|
/** Filter by the object’s `id` field. */
|
|
6284
6425
|
id?: UUIDFilter;
|
|
6426
|
+
/** Filter by the object’s `installationStoreName` field. */
|
|
6427
|
+
installationStoreName?: StringFilter;
|
|
6428
|
+
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
6429
|
+
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
6430
|
+
/** A related `merkleStoreModule` exists. */
|
|
6431
|
+
merkleStoreModuleExists?: boolean;
|
|
6432
|
+
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
6433
|
+
merkleStoreModuleId?: UUIDFilter;
|
|
6285
6434
|
/** Filter by the object’s `namespaceModule` relation. */
|
|
6286
6435
|
namespaceModule?: NamespaceModuleFilter;
|
|
6287
6436
|
/** A related `namespaceModule` exists. */
|
|
@@ -6310,6 +6459,8 @@ export interface ResourceModuleFilter {
|
|
|
6310
6459
|
requirementsStateViewName?: StringFilter;
|
|
6311
6460
|
/** Filter by the object’s `resolvedRequirementsViewName` field. */
|
|
6312
6461
|
resolvedRequirementsViewName?: StringFilter;
|
|
6462
|
+
/** Filter by the object’s `resourceBillingRollupFunction` field. */
|
|
6463
|
+
resourceBillingRollupFunction?: StringFilter;
|
|
6313
6464
|
/** Filter by the object’s `resourceDefinitionsTableId` field. */
|
|
6314
6465
|
resourceDefinitionsTableId?: UUIDFilter;
|
|
6315
6466
|
/** Filter by the object’s `resourceDefinitionsTableName` field. */
|
|
@@ -6318,14 +6469,28 @@ export interface ResourceModuleFilter {
|
|
|
6318
6469
|
resourceEventsTableId?: UUIDFilter;
|
|
6319
6470
|
/** Filter by the object’s `resourceEventsTableName` field. */
|
|
6320
6471
|
resourceEventsTableName?: StringFilter;
|
|
6472
|
+
/** Filter by the object’s `resourceInstallationsTableId` field. */
|
|
6473
|
+
resourceInstallationsTableId?: UUIDFilter;
|
|
6474
|
+
/** Filter by the object’s `resourceInstallationsTableName` field. */
|
|
6475
|
+
resourceInstallationsTableName?: StringFilter;
|
|
6321
6476
|
/** Filter by the object’s `resourceStatusChecksTableId` field. */
|
|
6322
6477
|
resourceStatusChecksTableId?: UUIDFilter;
|
|
6323
6478
|
/** Filter by the object’s `resourceStatusChecksTableName` field. */
|
|
6324
6479
|
resourceStatusChecksTableName?: StringFilter;
|
|
6480
|
+
/** Filter by the object’s `resourceUsageLogTableId` field. */
|
|
6481
|
+
resourceUsageLogTableId?: UUIDFilter;
|
|
6482
|
+
/** Filter by the object’s `resourceUsageLogTableName` field. */
|
|
6483
|
+
resourceUsageLogTableName?: StringFilter;
|
|
6484
|
+
/** Filter by the object’s `resourceUsageSummaryTableId` field. */
|
|
6485
|
+
resourceUsageSummaryTableId?: UUIDFilter;
|
|
6486
|
+
/** Filter by the object’s `resourceUsageSummaryTableName` field. */
|
|
6487
|
+
resourceUsageSummaryTableName?: StringFilter;
|
|
6325
6488
|
/** Filter by the object’s `resourcesTableId` field. */
|
|
6326
6489
|
resourcesTableId?: UUIDFilter;
|
|
6327
6490
|
/** Filter by the object’s `resourcesTableName` field. */
|
|
6328
6491
|
resourcesTableName?: StringFilter;
|
|
6492
|
+
/** Filter by the object’s `rollupResourceUsageSummaryFunction` field. */
|
|
6493
|
+
rollupResourceUsageSummaryFunction?: StringFilter;
|
|
6329
6494
|
/** Filter by the object’s `schemaId` field. */
|
|
6330
6495
|
schemaId?: UUIDFilter;
|
|
6331
6496
|
/** Filter by the object’s `scope` field. */
|
|
@@ -6339,6 +6504,8 @@ export interface ResourceModuleInput {
|
|
|
6339
6504
|
entityField?: string;
|
|
6340
6505
|
entityTableId?: string;
|
|
6341
6506
|
id?: string;
|
|
6507
|
+
installationStoreName?: string;
|
|
6508
|
+
merkleStoreModuleId?: string;
|
|
6342
6509
|
namespaceModuleId?: string;
|
|
6343
6510
|
policies?: unknown;
|
|
6344
6511
|
prefix?: string;
|
|
@@ -6349,14 +6516,22 @@ export interface ResourceModuleInput {
|
|
|
6349
6516
|
publicSchemaName?: string;
|
|
6350
6517
|
requirementsStateViewName?: string;
|
|
6351
6518
|
resolvedRequirementsViewName?: string;
|
|
6519
|
+
resourceBillingRollupFunction?: string;
|
|
6352
6520
|
resourceDefinitionsTableId?: string;
|
|
6353
6521
|
resourceDefinitionsTableName?: string;
|
|
6354
6522
|
resourceEventsTableId?: string;
|
|
6355
6523
|
resourceEventsTableName?: string;
|
|
6524
|
+
resourceInstallationsTableId?: string;
|
|
6525
|
+
resourceInstallationsTableName?: string;
|
|
6356
6526
|
resourceStatusChecksTableId?: string;
|
|
6357
6527
|
resourceStatusChecksTableName?: string;
|
|
6528
|
+
resourceUsageLogTableId?: string;
|
|
6529
|
+
resourceUsageLogTableName?: string;
|
|
6530
|
+
resourceUsageSummaryTableId?: string;
|
|
6531
|
+
resourceUsageSummaryTableName?: string;
|
|
6358
6532
|
resourcesTableId?: string;
|
|
6359
6533
|
resourcesTableName?: string;
|
|
6534
|
+
rollupResourceUsageSummaryFunction?: string;
|
|
6360
6535
|
schemaId?: string;
|
|
6361
6536
|
scope?: string;
|
|
6362
6537
|
}
|
|
@@ -6368,6 +6543,8 @@ export interface ResourceModulePatch {
|
|
|
6368
6543
|
entityField?: string;
|
|
6369
6544
|
entityTableId?: string;
|
|
6370
6545
|
id?: string;
|
|
6546
|
+
installationStoreName?: string;
|
|
6547
|
+
merkleStoreModuleId?: string;
|
|
6371
6548
|
namespaceModuleId?: string;
|
|
6372
6549
|
policies?: unknown;
|
|
6373
6550
|
prefix?: string;
|
|
@@ -6378,14 +6555,22 @@ export interface ResourceModulePatch {
|
|
|
6378
6555
|
publicSchemaName?: string;
|
|
6379
6556
|
requirementsStateViewName?: string;
|
|
6380
6557
|
resolvedRequirementsViewName?: string;
|
|
6558
|
+
resourceBillingRollupFunction?: string;
|
|
6381
6559
|
resourceDefinitionsTableId?: string;
|
|
6382
6560
|
resourceDefinitionsTableName?: string;
|
|
6383
6561
|
resourceEventsTableId?: string;
|
|
6384
6562
|
resourceEventsTableName?: string;
|
|
6563
|
+
resourceInstallationsTableId?: string;
|
|
6564
|
+
resourceInstallationsTableName?: string;
|
|
6385
6565
|
resourceStatusChecksTableId?: string;
|
|
6386
6566
|
resourceStatusChecksTableName?: string;
|
|
6567
|
+
resourceUsageLogTableId?: string;
|
|
6568
|
+
resourceUsageLogTableName?: string;
|
|
6569
|
+
resourceUsageSummaryTableId?: string;
|
|
6570
|
+
resourceUsageSummaryTableName?: string;
|
|
6387
6571
|
resourcesTableId?: string;
|
|
6388
6572
|
resourcesTableName?: string;
|
|
6573
|
+
rollupResourceUsageSummaryFunction?: string;
|
|
6389
6574
|
schemaId?: string;
|
|
6390
6575
|
scope?: string;
|
|
6391
6576
|
}
|
|
@@ -6563,7 +6748,7 @@ export interface SessionSecretsModuleInput {
|
|
|
6563
6748
|
databaseId: string;
|
|
6564
6749
|
id?: string;
|
|
6565
6750
|
schemaId?: string;
|
|
6566
|
-
/** Resolved reference to sessions_module.
|
|
6751
|
+
/** Resolved reference to sessions_module.sessions_table_name, used to FK session_secrets.session_id with ON DELETE CASCADE. */
|
|
6567
6752
|
sessionsTableId?: string;
|
|
6568
6753
|
tableId?: string;
|
|
6569
6754
|
tableName?: string;
|
|
@@ -6573,7 +6758,7 @@ export interface SessionSecretsModulePatch {
|
|
|
6573
6758
|
databaseId?: string;
|
|
6574
6759
|
id?: string;
|
|
6575
6760
|
schemaId?: string;
|
|
6576
|
-
/** Resolved reference to sessions_module.
|
|
6761
|
+
/** Resolved reference to sessions_module.sessions_table_name, used to FK session_secrets.session_id with ON DELETE CASCADE. */
|
|
6577
6762
|
sessionsTableId?: string;
|
|
6578
6763
|
tableId?: string;
|
|
6579
6764
|
tableName?: string;
|
|
@@ -6582,10 +6767,10 @@ export interface SessionSecretsModulePatch {
|
|
|
6582
6767
|
export interface SessionsModuleFilter {
|
|
6583
6768
|
/** Checks for all expressions in this list. */
|
|
6584
6769
|
and?: SessionsModuleFilter[];
|
|
6585
|
-
/** Filter by the object’s `authSettingsTable` field. */
|
|
6586
|
-
authSettingsTable?: StringFilter;
|
|
6587
6770
|
/** Filter by the object’s `authSettingsTableId` field. */
|
|
6588
6771
|
authSettingsTableId?: UUIDFilter;
|
|
6772
|
+
/** Filter by the object’s `authSettingsTableName` field. */
|
|
6773
|
+
authSettingsTableName?: StringFilter;
|
|
6589
6774
|
/** Filter by the object’s `databaseId` field. */
|
|
6590
6775
|
databaseId?: UUIDFilter;
|
|
6591
6776
|
/** Filter by the object’s `id` field. */
|
|
@@ -6596,45 +6781,45 @@ export interface SessionsModuleFilter {
|
|
|
6596
6781
|
or?: SessionsModuleFilter[];
|
|
6597
6782
|
/** Filter by the object’s `schemaId` field. */
|
|
6598
6783
|
schemaId?: UUIDFilter;
|
|
6599
|
-
/** Filter by the object’s `sessionCredentialsTable` field. */
|
|
6600
|
-
sessionCredentialsTable?: StringFilter;
|
|
6601
6784
|
/** Filter by the object’s `sessionCredentialsTableId` field. */
|
|
6602
6785
|
sessionCredentialsTableId?: UUIDFilter;
|
|
6786
|
+
/** Filter by the object’s `sessionCredentialsTableName` field. */
|
|
6787
|
+
sessionCredentialsTableName?: StringFilter;
|
|
6603
6788
|
/** Filter by the object’s `sessionsDefaultExpiration` field. */
|
|
6604
6789
|
sessionsDefaultExpiration?: IntervalFilter;
|
|
6605
|
-
/** Filter by the object’s `sessionsTable` field. */
|
|
6606
|
-
sessionsTable?: StringFilter;
|
|
6607
6790
|
/** Filter by the object’s `sessionsTableId` field. */
|
|
6608
6791
|
sessionsTableId?: UUIDFilter;
|
|
6792
|
+
/** Filter by the object’s `sessionsTableName` field. */
|
|
6793
|
+
sessionsTableName?: StringFilter;
|
|
6609
6794
|
/** Filter by the object’s `usersTableId` field. */
|
|
6610
6795
|
usersTableId?: UUIDFilter;
|
|
6611
6796
|
}
|
|
6612
6797
|
/** An input for mutations affecting `SessionsModule` */
|
|
6613
6798
|
export interface SessionsModuleInput {
|
|
6614
|
-
authSettingsTable?: string;
|
|
6615
6799
|
authSettingsTableId?: string;
|
|
6800
|
+
authSettingsTableName?: string;
|
|
6616
6801
|
databaseId: string;
|
|
6617
6802
|
id?: string;
|
|
6618
6803
|
schemaId?: string;
|
|
6619
|
-
sessionCredentialsTable?: string;
|
|
6620
6804
|
sessionCredentialsTableId?: string;
|
|
6805
|
+
sessionCredentialsTableName?: string;
|
|
6621
6806
|
sessionsDefaultExpiration?: IntervalInput;
|
|
6622
|
-
sessionsTable?: string;
|
|
6623
6807
|
sessionsTableId?: string;
|
|
6808
|
+
sessionsTableName?: string;
|
|
6624
6809
|
usersTableId?: string;
|
|
6625
6810
|
}
|
|
6626
6811
|
/** Represents an update to a `SessionsModule`. Fields that are set will be updated. */
|
|
6627
6812
|
export interface SessionsModulePatch {
|
|
6628
|
-
authSettingsTable?: string;
|
|
6629
6813
|
authSettingsTableId?: string;
|
|
6814
|
+
authSettingsTableName?: string;
|
|
6630
6815
|
databaseId?: string;
|
|
6631
6816
|
id?: string;
|
|
6632
6817
|
schemaId?: string;
|
|
6633
|
-
sessionCredentialsTable?: string;
|
|
6634
6818
|
sessionCredentialsTableId?: string;
|
|
6819
|
+
sessionCredentialsTableName?: string;
|
|
6635
6820
|
sessionsDefaultExpiration?: IntervalInput;
|
|
6636
|
-
sessionsTable?: string;
|
|
6637
6821
|
sessionsTableId?: string;
|
|
6822
|
+
sessionsTableName?: string;
|
|
6638
6823
|
usersTableId?: string;
|
|
6639
6824
|
}
|
|
6640
6825
|
/** A filter to be used against `StorageLogModule` object types. All fields are combined with a logical ‘and.’ */
|
|
@@ -6681,10 +6866,10 @@ export interface StorageLogModuleFilter {
|
|
|
6681
6866
|
storageLogTableId?: UUIDFilter;
|
|
6682
6867
|
/** Filter by the object’s `storageLogTableName` field. */
|
|
6683
6868
|
storageLogTableName?: StringFilter;
|
|
6684
|
-
/** Filter by the object’s `
|
|
6685
|
-
|
|
6686
|
-
/** Filter by the object’s `
|
|
6687
|
-
|
|
6869
|
+
/** Filter by the object’s `usageSummaryTableId` field. */
|
|
6870
|
+
usageSummaryTableId?: UUIDFilter;
|
|
6871
|
+
/** Filter by the object’s `usageSummaryTableName` field. */
|
|
6872
|
+
usageSummaryTableName?: StringFilter;
|
|
6688
6873
|
}
|
|
6689
6874
|
/** An input for mutations affecting `StorageLogModule` */
|
|
6690
6875
|
export interface StorageLogModuleInput {
|
|
@@ -6706,8 +6891,8 @@ export interface StorageLogModuleInput {
|
|
|
6706
6891
|
scope?: string;
|
|
6707
6892
|
storageLogTableId?: string;
|
|
6708
6893
|
storageLogTableName?: string;
|
|
6709
|
-
|
|
6710
|
-
|
|
6894
|
+
usageSummaryTableId?: string;
|
|
6895
|
+
usageSummaryTableName?: string;
|
|
6711
6896
|
}
|
|
6712
6897
|
/** Represents an update to a `StorageLogModule`. Fields that are set will be updated. */
|
|
6713
6898
|
export interface StorageLogModulePatch {
|
|
@@ -6729,8 +6914,8 @@ export interface StorageLogModulePatch {
|
|
|
6729
6914
|
scope?: string;
|
|
6730
6915
|
storageLogTableId?: string;
|
|
6731
6916
|
storageLogTableName?: string;
|
|
6732
|
-
|
|
6733
|
-
|
|
6917
|
+
usageSummaryTableId?: string;
|
|
6918
|
+
usageSummaryTableName?: string;
|
|
6734
6919
|
}
|
|
6735
6920
|
/** A filter to be used against `StorageModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6736
6921
|
export interface StorageModuleFilter {
|
|
@@ -6951,10 +7136,10 @@ export interface TransferLogModuleFilter {
|
|
|
6951
7136
|
transferLogTableId?: UUIDFilter;
|
|
6952
7137
|
/** Filter by the object’s `transferLogTableName` field. */
|
|
6953
7138
|
transferLogTableName?: StringFilter;
|
|
6954
|
-
/** Filter by the object’s `
|
|
6955
|
-
|
|
6956
|
-
/** Filter by the object’s `
|
|
6957
|
-
|
|
7139
|
+
/** Filter by the object’s `usageSummaryTableId` field. */
|
|
7140
|
+
usageSummaryTableId?: UUIDFilter;
|
|
7141
|
+
/** Filter by the object’s `usageSummaryTableName` field. */
|
|
7142
|
+
usageSummaryTableName?: StringFilter;
|
|
6958
7143
|
}
|
|
6959
7144
|
/** An input for mutations affecting `TransferLogModule` */
|
|
6960
7145
|
export interface TransferLogModuleInput {
|
|
@@ -6976,8 +7161,8 @@ export interface TransferLogModuleInput {
|
|
|
6976
7161
|
scope?: string;
|
|
6977
7162
|
transferLogTableId?: string;
|
|
6978
7163
|
transferLogTableName?: string;
|
|
6979
|
-
|
|
6980
|
-
|
|
7164
|
+
usageSummaryTableId?: string;
|
|
7165
|
+
usageSummaryTableName?: string;
|
|
6981
7166
|
}
|
|
6982
7167
|
/** Represents an update to a `TransferLogModule`. Fields that are set will be updated. */
|
|
6983
7168
|
export interface TransferLogModulePatch {
|
|
@@ -6999,8 +7184,8 @@ export interface TransferLogModulePatch {
|
|
|
6999
7184
|
scope?: string;
|
|
7000
7185
|
transferLogTableId?: string;
|
|
7001
7186
|
transferLogTableName?: string;
|
|
7002
|
-
|
|
7003
|
-
|
|
7187
|
+
usageSummaryTableId?: string;
|
|
7188
|
+
usageSummaryTableName?: string;
|
|
7004
7189
|
}
|
|
7005
7190
|
export interface UpdateAgentModuleInput {
|
|
7006
7191
|
/** An object where the defined keys will be set on the `AgentModule` being updated. */
|
|
@@ -7174,6 +7359,12 @@ export interface UpdateHierarchyModuleInput {
|
|
|
7174
7359
|
hierarchyModulePatch: HierarchyModulePatch;
|
|
7175
7360
|
id: string;
|
|
7176
7361
|
}
|
|
7362
|
+
export interface UpdateHttpRouteModuleInput {
|
|
7363
|
+
clientMutationId?: string;
|
|
7364
|
+
/** An object where the defined keys will be set on the `HttpRouteModule` being updated. */
|
|
7365
|
+
httpRouteModulePatch: HttpRouteModulePatch;
|
|
7366
|
+
id: string;
|
|
7367
|
+
}
|
|
7177
7368
|
export interface UpdateI18NModuleInput {
|
|
7178
7369
|
clientMutationId?: string;
|
|
7179
7370
|
/** An object where the defined keys will be set on the `I18NModule` being updated. */
|
|
@@ -7404,6 +7595,12 @@ export interface UpdateWebauthnCredentialsModuleInput {
|
|
|
7404
7595
|
/** An object where the defined keys will be set on the `WebauthnCredentialsModule` being updated. */
|
|
7405
7596
|
webauthnCredentialsModulePatch: WebauthnCredentialsModulePatch;
|
|
7406
7597
|
}
|
|
7598
|
+
export interface UpdateWebhookModuleInput {
|
|
7599
|
+
clientMutationId?: string;
|
|
7600
|
+
id: string;
|
|
7601
|
+
/** An object where the defined keys will be set on the `WebhookModule` being updated. */
|
|
7602
|
+
webhookModulePatch: WebhookModulePatch;
|
|
7603
|
+
}
|
|
7407
7604
|
/** A filter to be used against `UserAuthModule` object types. All fields are combined with a logical ‘and.’ */
|
|
7408
7605
|
export interface UserAuthModuleFilter {
|
|
7409
7606
|
/** Checks for all expressions in this list. */
|
|
@@ -7839,6 +8036,129 @@ export interface WebauthnCredentialsModulePatch {
|
|
|
7839
8036
|
tableId?: string;
|
|
7840
8037
|
tableName?: string;
|
|
7841
8038
|
}
|
|
8039
|
+
/** A filter to be used against `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
8040
|
+
export interface WebhookModuleFilter {
|
|
8041
|
+
/** Checks for all expressions in this list. */
|
|
8042
|
+
and?: WebhookModuleFilter[];
|
|
8043
|
+
/** Filter by the object’s `apiName` field. */
|
|
8044
|
+
apiName?: StringFilter;
|
|
8045
|
+
/** Filter by the object’s `databaseId` field. */
|
|
8046
|
+
databaseId?: UUIDFilter;
|
|
8047
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
8048
|
+
defaultPermissions?: StringListFilter;
|
|
8049
|
+
/** Filter by the object’s `entityField` field. */
|
|
8050
|
+
entityField?: StringFilter;
|
|
8051
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
8052
|
+
entityTableId?: UUIDFilter;
|
|
8053
|
+
/** Filter by the object’s `functionInvocationModule` relation. */
|
|
8054
|
+
functionInvocationModule?: FunctionInvocationModuleFilter;
|
|
8055
|
+
/** A related `functionInvocationModule` exists. */
|
|
8056
|
+
functionInvocationModuleExists?: boolean;
|
|
8057
|
+
/** Filter by the object’s `functionInvocationModuleId` field. */
|
|
8058
|
+
functionInvocationModuleId?: UUIDFilter;
|
|
8059
|
+
/** Filter by the object’s `functionModule` relation. */
|
|
8060
|
+
functionModule?: FunctionModuleFilter;
|
|
8061
|
+
/** A related `functionModule` exists. */
|
|
8062
|
+
functionModuleExists?: boolean;
|
|
8063
|
+
/** Filter by the object’s `functionModuleId` field. */
|
|
8064
|
+
functionModuleId?: UUIDFilter;
|
|
8065
|
+
/** Filter by the object’s `id` field. */
|
|
8066
|
+
id?: UUIDFilter;
|
|
8067
|
+
/** Filter by the object’s `infraSecretsModule` relation. */
|
|
8068
|
+
infraSecretsModule?: InfraSecretsModuleFilter;
|
|
8069
|
+
/** A related `infraSecretsModule` exists. */
|
|
8070
|
+
infraSecretsModuleExists?: boolean;
|
|
8071
|
+
/** Filter by the object’s `infraSecretsModuleId` field. */
|
|
8072
|
+
infraSecretsModuleId?: UUIDFilter;
|
|
8073
|
+
/** Filter by the object’s `namespaceModule` relation. */
|
|
8074
|
+
namespaceModule?: NamespaceModuleFilter;
|
|
8075
|
+
/** A related `namespaceModule` exists. */
|
|
8076
|
+
namespaceModuleExists?: boolean;
|
|
8077
|
+
/** Filter by the object’s `namespaceModuleId` field. */
|
|
8078
|
+
namespaceModuleId?: UUIDFilter;
|
|
8079
|
+
/** Negates the expression. */
|
|
8080
|
+
not?: WebhookModuleFilter;
|
|
8081
|
+
/** Checks for any expressions in this list. */
|
|
8082
|
+
or?: WebhookModuleFilter[];
|
|
8083
|
+
/** Filter by the object’s `policies` field. */
|
|
8084
|
+
policies?: JSONFilter;
|
|
8085
|
+
/** Filter by the object’s `prefix` field. */
|
|
8086
|
+
prefix?: StringFilter;
|
|
8087
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
8088
|
+
privateApiName?: StringFilter;
|
|
8089
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
8090
|
+
privateSchemaId?: UUIDFilter;
|
|
8091
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
8092
|
+
privateSchemaName?: StringFilter;
|
|
8093
|
+
/** Filter by the object’s `provisions` field. */
|
|
8094
|
+
provisions?: JSONFilter;
|
|
8095
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
8096
|
+
publicSchemaName?: StringFilter;
|
|
8097
|
+
/** Filter by the object’s `schemaId` field. */
|
|
8098
|
+
schemaId?: UUIDFilter;
|
|
8099
|
+
/** Filter by the object’s `scope` field. */
|
|
8100
|
+
scope?: StringFilter;
|
|
8101
|
+
/** Filter by the object’s `webhookEndpointsTableId` field. */
|
|
8102
|
+
webhookEndpointsTableId?: UUIDFilter;
|
|
8103
|
+
/** Filter by the object’s `webhookEndpointsTableName` field. */
|
|
8104
|
+
webhookEndpointsTableName?: StringFilter;
|
|
8105
|
+
/** Filter by the object’s `webhookEventsTableId` field. */
|
|
8106
|
+
webhookEventsTableId?: UUIDFilter;
|
|
8107
|
+
/** Filter by the object’s `webhookEventsTableName` field. */
|
|
8108
|
+
webhookEventsTableName?: StringFilter;
|
|
8109
|
+
}
|
|
8110
|
+
/** An input for mutations affecting `WebhookModule` */
|
|
8111
|
+
export interface WebhookModuleInput {
|
|
8112
|
+
apiName?: string;
|
|
8113
|
+
databaseId: string;
|
|
8114
|
+
defaultPermissions?: string[];
|
|
8115
|
+
entityField?: string;
|
|
8116
|
+
entityTableId?: string;
|
|
8117
|
+
functionInvocationModuleId?: string;
|
|
8118
|
+
functionModuleId?: string;
|
|
8119
|
+
id?: string;
|
|
8120
|
+
infraSecretsModuleId?: string;
|
|
8121
|
+
namespaceModuleId?: string;
|
|
8122
|
+
policies?: unknown;
|
|
8123
|
+
prefix?: string;
|
|
8124
|
+
privateApiName?: string;
|
|
8125
|
+
privateSchemaId?: string;
|
|
8126
|
+
privateSchemaName?: string;
|
|
8127
|
+
provisions?: unknown;
|
|
8128
|
+
publicSchemaName?: string;
|
|
8129
|
+
schemaId?: string;
|
|
8130
|
+
scope?: string;
|
|
8131
|
+
webhookEndpointsTableId?: string;
|
|
8132
|
+
webhookEndpointsTableName?: string;
|
|
8133
|
+
webhookEventsTableId?: string;
|
|
8134
|
+
webhookEventsTableName?: string;
|
|
8135
|
+
}
|
|
8136
|
+
/** Represents an update to a `WebhookModule`. Fields that are set will be updated. */
|
|
8137
|
+
export interface WebhookModulePatch {
|
|
8138
|
+
apiName?: string;
|
|
8139
|
+
databaseId?: string;
|
|
8140
|
+
defaultPermissions?: string[];
|
|
8141
|
+
entityField?: string;
|
|
8142
|
+
entityTableId?: string;
|
|
8143
|
+
functionInvocationModuleId?: string;
|
|
8144
|
+
functionModuleId?: string;
|
|
8145
|
+
id?: string;
|
|
8146
|
+
infraSecretsModuleId?: string;
|
|
8147
|
+
namespaceModuleId?: string;
|
|
8148
|
+
policies?: unknown;
|
|
8149
|
+
prefix?: string;
|
|
8150
|
+
privateApiName?: string;
|
|
8151
|
+
privateSchemaId?: string;
|
|
8152
|
+
privateSchemaName?: string;
|
|
8153
|
+
provisions?: unknown;
|
|
8154
|
+
publicSchemaName?: string;
|
|
8155
|
+
schemaId?: string;
|
|
8156
|
+
scope?: string;
|
|
8157
|
+
webhookEndpointsTableId?: string;
|
|
8158
|
+
webhookEndpointsTableName?: string;
|
|
8159
|
+
webhookEventsTableId?: string;
|
|
8160
|
+
webhookEventsTableName?: string;
|
|
8161
|
+
}
|
|
7842
8162
|
/** Root meta schema type */
|
|
7843
8163
|
export interface MetaSchema {
|
|
7844
8164
|
tables: MetaTable[];
|
|
@@ -8039,6 +8359,13 @@ export interface HierarchyModuleConnection {
|
|
|
8039
8359
|
pageInfo: PageInfo;
|
|
8040
8360
|
totalCount: number;
|
|
8041
8361
|
}
|
|
8362
|
+
/** A connection to a list of `HttpRouteModule` values. */
|
|
8363
|
+
export interface HttpRouteModuleConnection {
|
|
8364
|
+
edges: HttpRouteModuleEdge[];
|
|
8365
|
+
nodes: HttpRouteModule[];
|
|
8366
|
+
pageInfo: PageInfo;
|
|
8367
|
+
totalCount: number;
|
|
8368
|
+
}
|
|
8042
8369
|
/** A connection to a list of `I18NModule` values. */
|
|
8043
8370
|
export interface I18NModuleConnection {
|
|
8044
8371
|
edges: I18NModuleEdge[];
|
|
@@ -8305,6 +8632,13 @@ export interface WebauthnCredentialsModuleConnection {
|
|
|
8305
8632
|
pageInfo: PageInfo;
|
|
8306
8633
|
totalCount: number;
|
|
8307
8634
|
}
|
|
8635
|
+
/** A connection to a list of `WebhookModule` values. */
|
|
8636
|
+
export interface WebhookModuleConnection {
|
|
8637
|
+
edges: WebhookModuleEdge[];
|
|
8638
|
+
nodes: WebhookModule[];
|
|
8639
|
+
pageInfo: PageInfo;
|
|
8640
|
+
totalCount: number;
|
|
8641
|
+
}
|
|
8308
8642
|
export interface ConstructBlueprintPayload {
|
|
8309
8643
|
clientMutationId?: string | null;
|
|
8310
8644
|
result?: string | null;
|
|
@@ -8481,6 +8815,12 @@ export interface CreateHierarchyModulePayload {
|
|
|
8481
8815
|
hierarchyModule?: HierarchyModule | null;
|
|
8482
8816
|
hierarchyModuleEdge?: HierarchyModuleEdge | null;
|
|
8483
8817
|
}
|
|
8818
|
+
export interface CreateHttpRouteModulePayload {
|
|
8819
|
+
clientMutationId?: string | null;
|
|
8820
|
+
/** The `HttpRouteModule` that was created by this mutation. */
|
|
8821
|
+
httpRouteModule?: HttpRouteModule | null;
|
|
8822
|
+
httpRouteModuleEdge?: HttpRouteModuleEdge | null;
|
|
8823
|
+
}
|
|
8484
8824
|
export interface CreateI18NModulePayload {
|
|
8485
8825
|
clientMutationId?: string | null;
|
|
8486
8826
|
/** The `I18NModule` that was created by this mutation. */
|
|
@@ -8709,6 +9049,12 @@ export interface CreateWebauthnCredentialsModulePayload {
|
|
|
8709
9049
|
webauthnCredentialsModule?: WebauthnCredentialsModule | null;
|
|
8710
9050
|
webauthnCredentialsModuleEdge?: WebauthnCredentialsModuleEdge | null;
|
|
8711
9051
|
}
|
|
9052
|
+
export interface CreateWebhookModulePayload {
|
|
9053
|
+
clientMutationId?: string | null;
|
|
9054
|
+
/** The `WebhookModule` that was created by this mutation. */
|
|
9055
|
+
webhookModule?: WebhookModule | null;
|
|
9056
|
+
webhookModuleEdge?: WebhookModuleEdge | null;
|
|
9057
|
+
}
|
|
8712
9058
|
export interface DeleteAgentModulePayload {
|
|
8713
9059
|
/** The `AgentModule` that was deleted by this mutation. */
|
|
8714
9060
|
agentModule?: AgentModule | null;
|
|
@@ -8877,6 +9223,12 @@ export interface DeleteHierarchyModulePayload {
|
|
|
8877
9223
|
hierarchyModule?: HierarchyModule | null;
|
|
8878
9224
|
hierarchyModuleEdge?: HierarchyModuleEdge | null;
|
|
8879
9225
|
}
|
|
9226
|
+
export interface DeleteHttpRouteModulePayload {
|
|
9227
|
+
clientMutationId?: string | null;
|
|
9228
|
+
/** The `HttpRouteModule` that was deleted by this mutation. */
|
|
9229
|
+
httpRouteModule?: HttpRouteModule | null;
|
|
9230
|
+
httpRouteModuleEdge?: HttpRouteModuleEdge | null;
|
|
9231
|
+
}
|
|
8880
9232
|
export interface DeleteI18NModulePayload {
|
|
8881
9233
|
clientMutationId?: string | null;
|
|
8882
9234
|
/** The `I18NModule` that was deleted by this mutation. */
|
|
@@ -9105,6 +9457,12 @@ export interface DeleteWebauthnCredentialsModulePayload {
|
|
|
9105
9457
|
webauthnCredentialsModule?: WebauthnCredentialsModule | null;
|
|
9106
9458
|
webauthnCredentialsModuleEdge?: WebauthnCredentialsModuleEdge | null;
|
|
9107
9459
|
}
|
|
9460
|
+
export interface DeleteWebhookModulePayload {
|
|
9461
|
+
clientMutationId?: string | null;
|
|
9462
|
+
/** The `WebhookModule` that was deleted by this mutation. */
|
|
9463
|
+
webhookModule?: WebhookModule | null;
|
|
9464
|
+
webhookModuleEdge?: WebhookModuleEdge | null;
|
|
9465
|
+
}
|
|
9108
9466
|
export interface ProvisionBucketPayload {
|
|
9109
9467
|
/** The access type applied */
|
|
9110
9468
|
accessType: string;
|
|
@@ -9313,6 +9671,12 @@ export interface UpdateHierarchyModulePayload {
|
|
|
9313
9671
|
hierarchyModule?: HierarchyModule | null;
|
|
9314
9672
|
hierarchyModuleEdge?: HierarchyModuleEdge | null;
|
|
9315
9673
|
}
|
|
9674
|
+
export interface UpdateHttpRouteModulePayload {
|
|
9675
|
+
clientMutationId?: string | null;
|
|
9676
|
+
/** The `HttpRouteModule` that was updated by this mutation. */
|
|
9677
|
+
httpRouteModule?: HttpRouteModule | null;
|
|
9678
|
+
httpRouteModuleEdge?: HttpRouteModuleEdge | null;
|
|
9679
|
+
}
|
|
9316
9680
|
export interface UpdateI18NModulePayload {
|
|
9317
9681
|
clientMutationId?: string | null;
|
|
9318
9682
|
/** The `I18NModule` that was updated by this mutation. */
|
|
@@ -9541,6 +9905,12 @@ export interface UpdateWebauthnCredentialsModulePayload {
|
|
|
9541
9905
|
webauthnCredentialsModule?: WebauthnCredentialsModule | null;
|
|
9542
9906
|
webauthnCredentialsModuleEdge?: WebauthnCredentialsModuleEdge | null;
|
|
9543
9907
|
}
|
|
9908
|
+
export interface UpdateWebhookModulePayload {
|
|
9909
|
+
clientMutationId?: string | null;
|
|
9910
|
+
/** The `WebhookModule` that was updated by this mutation. */
|
|
9911
|
+
webhookModule?: WebhookModule | null;
|
|
9912
|
+
webhookModuleEdge?: WebhookModuleEdge | null;
|
|
9913
|
+
}
|
|
9544
9914
|
/** Information about a database table */
|
|
9545
9915
|
export interface MetaTable {
|
|
9546
9916
|
constraints: MetaConstraints;
|
|
@@ -9742,6 +10112,12 @@ export interface HierarchyModuleEdge {
|
|
|
9742
10112
|
/** The `HierarchyModule` at the end of the edge. */
|
|
9743
10113
|
node?: HierarchyModule | null;
|
|
9744
10114
|
}
|
|
10115
|
+
/** A `HttpRouteModule` edge in the connection. */
|
|
10116
|
+
export interface HttpRouteModuleEdge {
|
|
10117
|
+
cursor?: string | null;
|
|
10118
|
+
/** The `HttpRouteModule` at the end of the edge. */
|
|
10119
|
+
node?: HttpRouteModule | null;
|
|
10120
|
+
}
|
|
9745
10121
|
/** A `I18NModule` edge in the connection. */
|
|
9746
10122
|
export interface I18NModuleEdge {
|
|
9747
10123
|
cursor?: string | null;
|
|
@@ -9970,6 +10346,12 @@ export interface WebauthnCredentialsModuleEdge {
|
|
|
9970
10346
|
/** The `WebauthnCredentialsModule` at the end of the edge. */
|
|
9971
10347
|
node?: WebauthnCredentialsModule | null;
|
|
9972
10348
|
}
|
|
10349
|
+
/** A `WebhookModule` edge in the connection. */
|
|
10350
|
+
export interface WebhookModuleEdge {
|
|
10351
|
+
cursor?: string | null;
|
|
10352
|
+
/** The `WebhookModule` at the end of the edge. */
|
|
10353
|
+
node?: WebhookModule | null;
|
|
10354
|
+
}
|
|
9973
10355
|
export interface ProvisionRelationRecord {
|
|
9974
10356
|
outFieldId?: string | null;
|
|
9975
10357
|
outJunctionTableId?: string | null;
|