@constructive-io/react 1.11.2 → 1.11.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/admin/orm/client.js +11 -1
- package/admin/schema-types.d.ts +7 -1
- package/agent/orm/client.js +11 -1
- package/agent/orm/input-types.d.ts +0 -3
- package/agent/schema-types.d.ts +7 -3
- package/api/hooks/index.d.ts +1 -1
- package/api/hooks/index.js +1 -1
- package/api/hooks/invalidation.d.ts +108 -12
- package/api/hooks/invalidation.js +287 -31
- package/api/hooks/mutation-keys.d.ts +224 -24
- package/api/hooks/mutation-keys.js +152 -16
- package/api/hooks/mutations/index.d.ts +58 -6
- package/api/hooks/mutations/index.js +58 -6
- package/api/hooks/mutations/useCreateApisMutation.d.ts +34 -0
- package/api/hooks/mutations/{useCreateApiMutation.js → useCreateApisMutation.js} +5 -5
- package/api/hooks/mutations/useCreateDeriveMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateDeriveMutation.js +34 -0
- package/api/hooks/mutations/useCreateFieldBehaviorMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateFieldBehaviorMutation.js +34 -0
- package/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.js +34 -0
- package/api/hooks/mutations/useCreatePageMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreatePageMutation.js +34 -0
- package/api/hooks/mutations/useCreatePlatformApisMutation.d.ts +34 -0
- package/api/hooks/mutations/{useCreatePlatformApiMutation.js → useCreatePlatformApisMutation.js} +5 -5
- package/api/hooks/mutations/useCreatePlatformPageMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreatePlatformPageMutation.js +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.js +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.js +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.js +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.js +34 -0
- package/api/hooks/mutations/useCreateSiteAppLinkMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateSiteAppLinkMutation.js +34 -0
- package/api/hooks/mutations/useCreateSiteDeepLinkMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateSiteDeepLinkMutation.js +34 -0
- package/api/hooks/mutations/useCreateSiteErrorPageMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateSiteErrorPageMutation.js +34 -0
- package/api/hooks/mutations/useCreateSiteWebConfigMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateSiteWebConfigMutation.js +34 -0
- package/api/hooks/mutations/useCreateTableBehaviorMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateTableBehaviorMutation.js +34 -0
- package/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.js +34 -0
- package/api/hooks/mutations/useCreateViewBehaviorMutation.d.ts +34 -0
- package/api/hooks/mutations/useCreateViewBehaviorMutation.js +34 -0
- package/{esm/api/hooks/mutations/useDeleteApiMutation.d.ts → api/hooks/mutations/useDeleteApisMutation.d.ts} +10 -10
- package/api/hooks/mutations/{useDeleteApiMutation.js → useDeleteApisMutation.js} +6 -6
- package/api/hooks/mutations/useDeleteDeriveMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteDeriveMutation.js +39 -0
- package/api/hooks/mutations/useDeleteFieldBehaviorMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteFieldBehaviorMutation.js +39 -0
- package/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.js +39 -0
- package/api/hooks/mutations/useDeletePageMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeletePageMutation.js +39 -0
- package/{esm/api/hooks/mutations/useDeletePlatformApiMutation.d.ts → api/hooks/mutations/useDeletePlatformApisMutation.d.ts} +10 -10
- package/api/hooks/mutations/{useDeletePlatformApiMutation.js → useDeletePlatformApisMutation.js} +6 -6
- package/api/hooks/mutations/useDeletePlatformPageMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeletePlatformPageMutation.js +39 -0
- package/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.js +39 -0
- package/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.js +39 -0
- package/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.js +39 -0
- package/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.js +39 -0
- package/api/hooks/mutations/useDeleteSiteAppLinkMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteSiteAppLinkMutation.js +39 -0
- package/api/hooks/mutations/useDeleteSiteDeepLinkMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteSiteDeepLinkMutation.js +39 -0
- package/api/hooks/mutations/useDeleteSiteErrorPageMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteSiteErrorPageMutation.js +39 -0
- package/api/hooks/mutations/useDeleteSiteWebConfigMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteSiteWebConfigMutation.js +39 -0
- package/api/hooks/mutations/useDeleteTableBehaviorMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteTableBehaviorMutation.js +39 -0
- package/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.js +39 -0
- package/api/hooks/mutations/useDeleteViewBehaviorMutation.d.ts +38 -0
- package/api/hooks/mutations/useDeleteViewBehaviorMutation.js +39 -0
- package/api/hooks/mutations/useDomainsAssignSubdomainMutation.d.ts +20 -0
- package/api/hooks/mutations/useDomainsAssignSubdomainMutation.js +26 -0
- package/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.d.ts +20 -0
- package/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.js +26 -0
- package/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.d.ts +20 -0
- package/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.js +26 -0
- package/api/hooks/mutations/useSitesProvisionStaticSiteMutation.d.ts +20 -0
- package/api/hooks/mutations/useSitesProvisionStaticSiteMutation.js +26 -0
- package/{esm/api/hooks/mutations/useUpdateApiMutation.d.ts → api/hooks/mutations/useUpdateApisMutation.d.ts} +13 -13
- package/api/hooks/mutations/{useUpdateApiMutation.js → useUpdateApisMutation.js} +8 -8
- package/api/hooks/mutations/useUpdateDeriveMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateDeriveMutation.js +40 -0
- package/api/hooks/mutations/useUpdateFieldBehaviorMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateFieldBehaviorMutation.js +40 -0
- package/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.js +40 -0
- package/api/hooks/mutations/useUpdatePageMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdatePageMutation.js +40 -0
- package/api/hooks/mutations/useUpdatePlatformApisMutation.d.ts +40 -0
- package/api/hooks/mutations/{useUpdatePlatformApiMutation.js → useUpdatePlatformApisMutation.js} +8 -8
- package/api/hooks/mutations/useUpdatePlatformPageMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdatePlatformPageMutation.js +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.js +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.js +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.js +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.js +40 -0
- package/api/hooks/mutations/useUpdateSiteAppLinkMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateSiteAppLinkMutation.js +40 -0
- package/api/hooks/mutations/useUpdateSiteDeepLinkMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateSiteDeepLinkMutation.js +40 -0
- package/api/hooks/mutations/useUpdateSiteErrorPageMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateSiteErrorPageMutation.js +40 -0
- package/api/hooks/mutations/useUpdateSiteWebConfigMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateSiteWebConfigMutation.js +40 -0
- package/api/hooks/mutations/useUpdateTableBehaviorMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateTableBehaviorMutation.js +40 -0
- package/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.js +40 -0
- package/api/hooks/mutations/useUpdateViewBehaviorMutation.d.ts +40 -0
- package/api/hooks/mutations/useUpdateViewBehaviorMutation.js +40 -0
- package/api/hooks/queries/index.d.ts +38 -4
- package/api/hooks/queries/index.js +38 -4
- package/api/hooks/queries/useApisQuery.d.ts +21 -25
- package/api/hooks/queries/useApisQuery.js +24 -9
- package/api/hooks/queries/useApisesQuery.d.ts +69 -0
- package/api/hooks/queries/useApisesQuery.js +38 -0
- package/api/hooks/queries/useDeriveQuery.d.ts +65 -0
- package/api/hooks/queries/{useApiQuery.js → useDeriveQuery.js} +14 -14
- package/api/hooks/queries/useDerivesQuery.d.ts +69 -0
- package/api/hooks/queries/useDerivesQuery.js +38 -0
- package/api/hooks/queries/useFieldBehaviorQuery.d.ts +65 -0
- package/api/hooks/queries/useFieldBehaviorQuery.js +53 -0
- package/api/hooks/queries/useFieldBehaviorsQuery.d.ts +69 -0
- package/api/hooks/queries/useFieldBehaviorsQuery.js +38 -0
- package/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.d.ts +65 -0
- package/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.js +53 -0
- package/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.d.ts +69 -0
- package/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.js +38 -0
- package/api/hooks/queries/usePageQuery.d.ts +65 -0
- package/api/hooks/queries/usePageQuery.js +53 -0
- package/api/hooks/queries/usePagesQuery.d.ts +69 -0
- package/api/hooks/queries/usePagesQuery.js +38 -0
- package/api/hooks/queries/usePlatformApisQuery.d.ts +21 -25
- package/api/hooks/queries/usePlatformApisQuery.js +24 -9
- package/api/hooks/queries/usePlatformApisesQuery.d.ts +69 -0
- package/api/hooks/queries/usePlatformApisesQuery.js +38 -0
- package/api/hooks/queries/usePlatformPageQuery.d.ts +65 -0
- package/api/hooks/queries/usePlatformPageQuery.js +53 -0
- package/api/hooks/queries/usePlatformPagesQuery.d.ts +69 -0
- package/api/hooks/queries/usePlatformPagesQuery.js +38 -0
- package/api/hooks/queries/usePlatformSiteAppLinkQuery.d.ts +65 -0
- package/api/hooks/queries/usePlatformSiteAppLinkQuery.js +53 -0
- package/api/hooks/queries/usePlatformSiteAppLinksQuery.d.ts +69 -0
- package/api/hooks/queries/usePlatformSiteAppLinksQuery.js +38 -0
- package/api/hooks/queries/usePlatformSiteDeepLinkQuery.d.ts +65 -0
- package/api/hooks/queries/usePlatformSiteDeepLinkQuery.js +53 -0
- package/api/hooks/queries/usePlatformSiteDeepLinksQuery.d.ts +69 -0
- package/api/hooks/queries/usePlatformSiteDeepLinksQuery.js +38 -0
- package/api/hooks/queries/usePlatformSiteErrorPageQuery.d.ts +65 -0
- package/api/hooks/queries/usePlatformSiteErrorPageQuery.js +53 -0
- package/api/hooks/queries/usePlatformSiteErrorPagesQuery.d.ts +69 -0
- package/api/hooks/queries/usePlatformSiteErrorPagesQuery.js +38 -0
- package/api/hooks/queries/usePlatformSiteWebConfigQuery.d.ts +65 -0
- package/api/hooks/queries/usePlatformSiteWebConfigQuery.js +53 -0
- package/api/hooks/queries/usePlatformSiteWebConfigsQuery.d.ts +69 -0
- package/api/hooks/queries/usePlatformSiteWebConfigsQuery.js +38 -0
- package/api/hooks/queries/useResolveDeepLinkQuery.d.ts +53 -0
- package/api/hooks/queries/useResolveDeepLinkQuery.js +53 -0
- package/api/hooks/queries/useResolveSiteAppLinksQuery.d.ts +53 -0
- package/api/hooks/queries/useResolveSiteAppLinksQuery.js +53 -0
- package/api/hooks/queries/useSiteAppLinkQuery.d.ts +65 -0
- package/api/hooks/queries/useSiteAppLinkQuery.js +53 -0
- package/api/hooks/queries/useSiteAppLinksQuery.d.ts +69 -0
- package/api/hooks/queries/useSiteAppLinksQuery.js +38 -0
- package/api/hooks/queries/useSiteDeepLinkQuery.d.ts +65 -0
- package/api/hooks/queries/useSiteDeepLinkQuery.js +53 -0
- package/api/hooks/queries/useSiteDeepLinksQuery.d.ts +69 -0
- package/api/hooks/queries/useSiteDeepLinksQuery.js +38 -0
- package/api/hooks/queries/useSiteErrorPageQuery.d.ts +65 -0
- package/api/hooks/queries/useSiteErrorPageQuery.js +53 -0
- package/api/hooks/queries/useSiteErrorPagesQuery.d.ts +69 -0
- package/api/hooks/queries/useSiteErrorPagesQuery.js +38 -0
- package/api/hooks/queries/useSiteWebConfigQuery.d.ts +65 -0
- package/api/hooks/queries/useSiteWebConfigQuery.js +53 -0
- package/api/hooks/queries/useSiteWebConfigsQuery.d.ts +69 -0
- package/api/hooks/queries/useSiteWebConfigsQuery.js +38 -0
- package/api/hooks/queries/useTableBehaviorQuery.d.ts +65 -0
- package/api/hooks/queries/useTableBehaviorQuery.js +53 -0
- package/api/hooks/queries/useTableBehaviorsQuery.d.ts +69 -0
- package/api/hooks/queries/useTableBehaviorsQuery.js +38 -0
- package/api/hooks/queries/useUniqueConstraintBehaviorQuery.d.ts +65 -0
- package/api/hooks/queries/useUniqueConstraintBehaviorQuery.js +53 -0
- package/api/hooks/queries/useUniqueConstraintBehaviorsQuery.d.ts +69 -0
- package/api/hooks/queries/useUniqueConstraintBehaviorsQuery.js +38 -0
- package/api/hooks/queries/useViewBehaviorQuery.d.ts +65 -0
- package/api/hooks/queries/useViewBehaviorQuery.js +53 -0
- package/api/hooks/queries/useViewBehaviorsQuery.d.ts +69 -0
- package/api/hooks/queries/useViewBehaviorsQuery.js +38 -0
- package/api/hooks/query-keys.d.ts +256 -28
- package/api/hooks/query-keys.js +148 -18
- package/api/orm/client.js +11 -1
- package/api/orm/index.d.ts +66 -4
- package/api/orm/index.js +36 -4
- package/api/orm/input-types.d.ts +4946 -630
- package/api/orm/input-types.js +34 -6
- package/api/orm/models/apis.d.ts +54 -0
- package/api/orm/models/{api.js → apis.js} +27 -27
- package/api/orm/models/derive.d.ts +54 -0
- package/api/orm/models/derive.js +104 -0
- package/api/orm/models/fieldBehavior.d.ts +54 -0
- package/api/orm/models/fieldBehavior.js +104 -0
- package/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
- package/api/orm/models/foreignKeyConstraintBehavior.js +104 -0
- package/api/orm/models/index.d.ts +18 -2
- package/api/orm/models/index.js +38 -6
- package/api/orm/models/page.d.ts +54 -0
- package/api/orm/models/page.js +104 -0
- package/api/orm/models/platformApis.d.ts +54 -0
- package/api/orm/models/platformApis.js +104 -0
- package/api/orm/models/platformPage.d.ts +54 -0
- package/api/orm/models/platformPage.js +104 -0
- package/api/orm/models/platformSiteAppLink.d.ts +54 -0
- package/api/orm/models/platformSiteAppLink.js +104 -0
- package/api/orm/models/platformSiteDeepLink.d.ts +54 -0
- package/api/orm/models/platformSiteDeepLink.js +104 -0
- package/api/orm/models/platformSiteErrorPage.d.ts +54 -0
- package/api/orm/models/platformSiteErrorPage.js +104 -0
- package/api/orm/models/platformSiteWebConfig.d.ts +54 -0
- package/api/orm/models/platformSiteWebConfig.js +104 -0
- package/api/orm/models/siteAppLink.d.ts +54 -0
- package/api/orm/models/{platformApi.js → siteAppLink.js} +27 -27
- package/api/orm/models/siteDeepLink.d.ts +54 -0
- package/api/orm/models/siteDeepLink.js +104 -0
- package/api/orm/models/siteErrorPage.d.ts +54 -0
- package/api/orm/models/siteErrorPage.js +104 -0
- package/api/orm/models/siteWebConfig.d.ts +54 -0
- package/api/orm/models/siteWebConfig.js +104 -0
- package/api/orm/models/tableBehavior.d.ts +54 -0
- package/api/orm/models/tableBehavior.js +104 -0
- package/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
- package/api/orm/models/uniqueConstraintBehavior.js +104 -0
- package/api/orm/models/viewBehavior.d.ts +54 -0
- package/api/orm/models/viewBehavior.js +104 -0
- package/api/orm/mutation/index.d.ts +33 -1
- package/api/orm/mutation/index.js +48 -0
- package/api/orm/query/index.d.ts +17 -0
- package/api/orm/query/index.js +28 -0
- package/api/schema-types.d.ts +2732 -338
- package/api/types.d.ts +238 -26
- package/auth/orm/client.js +11 -1
- package/auth/orm/input-types.d.ts +166 -220
- package/auth/orm/input-types.js +6 -11
- package/auth/schema-types.d.ts +31 -46
- package/compute/hooks/index.d.ts +1 -1
- package/compute/hooks/index.js +1 -1
- package/compute/hooks/invalidation.d.ts +12 -0
- package/compute/hooks/invalidation.js +32 -0
- package/compute/hooks/mutation-keys.d.ts +24 -0
- package/compute/hooks/mutation-keys.js +22 -2
- package/compute/hooks/mutations/index.d.ts +6 -0
- package/compute/hooks/mutations/index.js +6 -0
- package/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.js +34 -0
- package/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.d.ts +34 -0
- package/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.js +34 -0
- package/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.js +39 -0
- package/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.d.ts +38 -0
- package/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.js +39 -0
- package/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.js +40 -0
- package/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.d.ts +40 -0
- package/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.js +40 -0
- package/compute/hooks/queries/index.d.ts +4 -0
- package/compute/hooks/queries/index.js +4 -0
- package/compute/hooks/queries/useFunctionCapabilityBindingQuery.d.ts +65 -0
- package/compute/hooks/queries/useFunctionCapabilityBindingQuery.js +53 -0
- package/compute/hooks/queries/useFunctionCapabilityBindingsQuery.d.ts +69 -0
- package/compute/hooks/queries/useFunctionCapabilityBindingsQuery.js +38 -0
- package/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.d.ts +65 -0
- package/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.js +53 -0
- package/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.d.ts +69 -0
- package/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.js +38 -0
- package/compute/hooks/query-keys.d.ts +28 -0
- package/compute/hooks/query-keys.js +20 -2
- package/compute/orm/client.js +11 -1
- package/compute/orm/index.d.ts +4 -0
- package/compute/orm/index.js +4 -0
- package/compute/orm/input-types.d.ts +539 -8
- package/compute/orm/input-types.js +2 -0
- package/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
- package/compute/orm/models/functionCapabilityBinding.js +104 -0
- package/compute/orm/models/index.d.ts +2 -0
- package/compute/orm/models/index.js +6 -2
- package/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
- package/compute/orm/models/platformFunctionCapabilityBinding.js +104 -0
- package/compute/schema-types.d.ts +312 -10
- package/compute/types.d.ts +31 -0
- package/config/orm/client.js +11 -1
- package/config/orm/input-types.d.ts +53 -5
- package/config/schema-types.d.ts +42 -6
- package/config/types.d.ts +5 -0
- package/esm/admin/orm/client.js +11 -1
- package/esm/admin/schema-types.d.ts +7 -1
- package/esm/agent/orm/client.js +11 -1
- package/esm/agent/orm/input-types.d.ts +0 -3
- package/esm/agent/schema-types.d.ts +7 -3
- package/esm/api/hooks/index.d.ts +1 -1
- package/esm/api/hooks/index.js +1 -1
- package/esm/api/hooks/invalidation.d.ts +108 -12
- package/esm/api/hooks/invalidation.js +288 -32
- package/esm/api/hooks/mutation-keys.d.ts +224 -24
- package/esm/api/hooks/mutation-keys.js +150 -14
- package/esm/api/hooks/mutations/index.d.ts +58 -6
- package/esm/api/hooks/mutations/index.js +58 -6
- package/esm/api/hooks/mutations/useCreateApisMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/{useCreateApiMutation.js → useCreateApisMutation.js} +6 -6
- package/esm/api/hooks/mutations/useCreateDeriveMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateDeriveMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateFieldBehaviorMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateFieldBehaviorMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateForeignKeyConstraintBehaviorMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreatePageMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreatePageMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreatePlatformApisMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/{useCreatePlatformApiMutation.js → useCreatePlatformApisMutation.js} +6 -6
- package/esm/api/hooks/mutations/useCreatePlatformPageMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreatePlatformPageMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteAppLinkMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteDeepLinkMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteErrorPageMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreatePlatformSiteWebConfigMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateSiteAppLinkMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateSiteAppLinkMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateSiteDeepLinkMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateSiteDeepLinkMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateSiteErrorPageMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateSiteErrorPageMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateSiteWebConfigMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateSiteWebConfigMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateTableBehaviorMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateTableBehaviorMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateUniqueConstraintBehaviorMutation.js +31 -0
- package/esm/api/hooks/mutations/useCreateViewBehaviorMutation.d.ts +34 -0
- package/esm/api/hooks/mutations/useCreateViewBehaviorMutation.js +31 -0
- package/{api/hooks/mutations/useDeleteApiMutation.d.ts → esm/api/hooks/mutations/useDeleteApisMutation.d.ts} +10 -10
- package/esm/api/hooks/mutations/{useDeleteApiMutation.js → useDeleteApisMutation.js} +7 -7
- package/esm/api/hooks/mutations/useDeleteDeriveMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteDeriveMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteFieldBehaviorMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteFieldBehaviorMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteForeignKeyConstraintBehaviorMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeletePageMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeletePageMutation.js +36 -0
- package/{api/hooks/mutations/useDeletePlatformApiMutation.d.ts → esm/api/hooks/mutations/useDeletePlatformApisMutation.d.ts} +10 -10
- package/esm/api/hooks/mutations/{useDeletePlatformApiMutation.js → useDeletePlatformApisMutation.js} +7 -7
- package/esm/api/hooks/mutations/useDeletePlatformPageMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeletePlatformPageMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteAppLinkMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteDeepLinkMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteErrorPageMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeletePlatformSiteWebConfigMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteSiteAppLinkMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteSiteAppLinkMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteSiteDeepLinkMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteSiteDeepLinkMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteSiteErrorPageMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteSiteErrorPageMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteSiteWebConfigMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteSiteWebConfigMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteTableBehaviorMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteTableBehaviorMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteUniqueConstraintBehaviorMutation.js +36 -0
- package/esm/api/hooks/mutations/useDeleteViewBehaviorMutation.d.ts +38 -0
- package/esm/api/hooks/mutations/useDeleteViewBehaviorMutation.js +36 -0
- package/esm/api/hooks/mutations/useDomainsAssignSubdomainMutation.d.ts +20 -0
- package/esm/api/hooks/mutations/useDomainsAssignSubdomainMutation.js +23 -0
- package/esm/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.d.ts +20 -0
- package/esm/api/hooks/mutations/usePlatformDomainsAssignSubdomainMutation.js +23 -0
- package/esm/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.d.ts +20 -0
- package/esm/api/hooks/mutations/usePlatformSitesProvisionStaticSiteMutation.js +23 -0
- package/esm/api/hooks/mutations/useSitesProvisionStaticSiteMutation.d.ts +20 -0
- package/esm/api/hooks/mutations/useSitesProvisionStaticSiteMutation.js +23 -0
- package/{api/hooks/mutations/useUpdateApiMutation.d.ts → esm/api/hooks/mutations/useUpdateApisMutation.d.ts} +13 -13
- package/esm/api/hooks/mutations/{useUpdateApiMutation.js → useUpdateApisMutation.js} +9 -9
- package/esm/api/hooks/mutations/useUpdateDeriveMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateDeriveMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateFieldBehaviorMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateFieldBehaviorMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateForeignKeyConstraintBehaviorMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdatePageMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdatePageMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdatePlatformApisMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/{useUpdatePlatformApiMutation.js → useUpdatePlatformApisMutation.js} +9 -9
- package/esm/api/hooks/mutations/useUpdatePlatformPageMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdatePlatformPageMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteAppLinkMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteDeepLinkMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteErrorPageMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdatePlatformSiteWebConfigMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateSiteAppLinkMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateSiteAppLinkMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateSiteDeepLinkMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateSiteDeepLinkMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateSiteErrorPageMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateSiteErrorPageMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateSiteWebConfigMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateSiteWebConfigMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateTableBehaviorMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateTableBehaviorMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateUniqueConstraintBehaviorMutation.js +37 -0
- package/esm/api/hooks/mutations/useUpdateViewBehaviorMutation.d.ts +40 -0
- package/esm/api/hooks/mutations/useUpdateViewBehaviorMutation.js +37 -0
- package/esm/api/hooks/queries/index.d.ts +38 -4
- package/esm/api/hooks/queries/index.js +38 -4
- package/esm/api/hooks/queries/useApisQuery.d.ts +21 -25
- package/esm/api/hooks/queries/useApisQuery.js +26 -11
- package/esm/api/hooks/queries/useApisesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useApisesQuery.js +32 -0
- package/esm/api/hooks/queries/useDeriveQuery.d.ts +65 -0
- package/esm/api/hooks/queries/{useApiQuery.js → useDeriveQuery.js} +11 -11
- package/esm/api/hooks/queries/useDerivesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useDerivesQuery.js +32 -0
- package/esm/api/hooks/queries/useFieldBehaviorQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useFieldBehaviorQuery.js +47 -0
- package/esm/api/hooks/queries/useFieldBehaviorsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useFieldBehaviorsQuery.js +32 -0
- package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorQuery.js +47 -0
- package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useForeignKeyConstraintBehaviorsQuery.js +32 -0
- package/esm/api/hooks/queries/usePageQuery.d.ts +65 -0
- package/esm/api/hooks/queries/usePageQuery.js +47 -0
- package/esm/api/hooks/queries/usePagesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/usePagesQuery.js +32 -0
- package/esm/api/hooks/queries/usePlatformApisQuery.d.ts +21 -25
- package/esm/api/hooks/queries/usePlatformApisQuery.js +26 -11
- package/esm/api/hooks/queries/usePlatformApisesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/usePlatformApisesQuery.js +32 -0
- package/esm/api/hooks/queries/usePlatformPageQuery.d.ts +65 -0
- package/esm/api/hooks/queries/usePlatformPageQuery.js +47 -0
- package/esm/api/hooks/queries/usePlatformPagesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/usePlatformPagesQuery.js +32 -0
- package/esm/api/hooks/queries/usePlatformSiteAppLinkQuery.d.ts +65 -0
- package/esm/api/hooks/queries/usePlatformSiteAppLinkQuery.js +47 -0
- package/esm/api/hooks/queries/usePlatformSiteAppLinksQuery.d.ts +69 -0
- package/esm/api/hooks/queries/usePlatformSiteAppLinksQuery.js +32 -0
- package/esm/api/hooks/queries/usePlatformSiteDeepLinkQuery.d.ts +65 -0
- package/esm/api/hooks/queries/usePlatformSiteDeepLinkQuery.js +47 -0
- package/esm/api/hooks/queries/usePlatformSiteDeepLinksQuery.d.ts +69 -0
- package/esm/api/hooks/queries/usePlatformSiteDeepLinksQuery.js +32 -0
- package/esm/api/hooks/queries/usePlatformSiteErrorPageQuery.d.ts +65 -0
- package/esm/api/hooks/queries/usePlatformSiteErrorPageQuery.js +47 -0
- package/esm/api/hooks/queries/usePlatformSiteErrorPagesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/usePlatformSiteErrorPagesQuery.js +32 -0
- package/esm/api/hooks/queries/usePlatformSiteWebConfigQuery.d.ts +65 -0
- package/esm/api/hooks/queries/usePlatformSiteWebConfigQuery.js +47 -0
- package/esm/api/hooks/queries/usePlatformSiteWebConfigsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/usePlatformSiteWebConfigsQuery.js +32 -0
- package/esm/api/hooks/queries/useResolveDeepLinkQuery.d.ts +53 -0
- package/esm/api/hooks/queries/useResolveDeepLinkQuery.js +47 -0
- package/esm/api/hooks/queries/useResolveSiteAppLinksQuery.d.ts +53 -0
- package/esm/api/hooks/queries/useResolveSiteAppLinksQuery.js +47 -0
- package/esm/api/hooks/queries/useSiteAppLinkQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useSiteAppLinkQuery.js +47 -0
- package/esm/api/hooks/queries/useSiteAppLinksQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useSiteAppLinksQuery.js +32 -0
- package/esm/api/hooks/queries/useSiteDeepLinkQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useSiteDeepLinkQuery.js +47 -0
- package/esm/api/hooks/queries/useSiteDeepLinksQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useSiteDeepLinksQuery.js +32 -0
- package/esm/api/hooks/queries/useSiteErrorPageQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useSiteErrorPageQuery.js +47 -0
- package/esm/api/hooks/queries/useSiteErrorPagesQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useSiteErrorPagesQuery.js +32 -0
- package/esm/api/hooks/queries/useSiteWebConfigQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useSiteWebConfigQuery.js +47 -0
- package/esm/api/hooks/queries/useSiteWebConfigsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useSiteWebConfigsQuery.js +32 -0
- package/esm/api/hooks/queries/useTableBehaviorQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useTableBehaviorQuery.js +47 -0
- package/esm/api/hooks/queries/useTableBehaviorsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useTableBehaviorsQuery.js +32 -0
- package/esm/api/hooks/queries/useUniqueConstraintBehaviorQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useUniqueConstraintBehaviorQuery.js +47 -0
- package/esm/api/hooks/queries/useUniqueConstraintBehaviorsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useUniqueConstraintBehaviorsQuery.js +32 -0
- package/esm/api/hooks/queries/useViewBehaviorQuery.d.ts +65 -0
- package/esm/api/hooks/queries/useViewBehaviorQuery.js +47 -0
- package/esm/api/hooks/queries/useViewBehaviorsQuery.d.ts +69 -0
- package/esm/api/hooks/queries/useViewBehaviorsQuery.js +32 -0
- package/esm/api/hooks/query-keys.d.ts +256 -28
- package/esm/api/hooks/query-keys.js +146 -16
- package/esm/api/orm/client.js +11 -1
- package/esm/api/orm/index.d.ts +66 -4
- package/esm/api/orm/index.js +36 -4
- package/esm/api/orm/input-types.d.ts +4946 -630
- package/esm/api/orm/input-types.js +34 -6
- package/esm/api/orm/models/apis.d.ts +54 -0
- package/esm/api/orm/models/{api.js → apis.js} +25 -25
- package/esm/api/orm/models/derive.d.ts +54 -0
- package/esm/api/orm/models/derive.js +100 -0
- package/esm/api/orm/models/fieldBehavior.d.ts +54 -0
- package/esm/api/orm/models/fieldBehavior.js +100 -0
- package/esm/api/orm/models/foreignKeyConstraintBehavior.d.ts +54 -0
- package/esm/api/orm/models/foreignKeyConstraintBehavior.js +100 -0
- package/esm/api/orm/models/index.d.ts +18 -2
- package/esm/api/orm/models/index.js +18 -2
- package/esm/api/orm/models/page.d.ts +54 -0
- package/esm/api/orm/models/page.js +100 -0
- package/esm/api/orm/models/platformApis.d.ts +54 -0
- package/esm/api/orm/models/{platformApi.js → platformApis.js} +25 -25
- package/esm/api/orm/models/platformPage.d.ts +54 -0
- package/esm/api/orm/models/platformPage.js +100 -0
- package/esm/api/orm/models/platformSiteAppLink.d.ts +54 -0
- package/esm/api/orm/models/platformSiteAppLink.js +100 -0
- package/esm/api/orm/models/platformSiteDeepLink.d.ts +54 -0
- package/esm/api/orm/models/platformSiteDeepLink.js +100 -0
- package/esm/api/orm/models/platformSiteErrorPage.d.ts +54 -0
- package/esm/api/orm/models/platformSiteErrorPage.js +100 -0
- package/esm/api/orm/models/platformSiteWebConfig.d.ts +54 -0
- package/esm/api/orm/models/platformSiteWebConfig.js +100 -0
- package/esm/api/orm/models/siteAppLink.d.ts +54 -0
- package/esm/api/orm/models/siteAppLink.js +100 -0
- package/esm/api/orm/models/siteDeepLink.d.ts +54 -0
- package/esm/api/orm/models/siteDeepLink.js +100 -0
- package/esm/api/orm/models/siteErrorPage.d.ts +54 -0
- package/esm/api/orm/models/siteErrorPage.js +100 -0
- package/esm/api/orm/models/siteWebConfig.d.ts +54 -0
- package/esm/api/orm/models/siteWebConfig.js +100 -0
- package/esm/api/orm/models/tableBehavior.d.ts +54 -0
- package/esm/api/orm/models/tableBehavior.js +100 -0
- package/esm/api/orm/models/uniqueConstraintBehavior.d.ts +54 -0
- package/esm/api/orm/models/uniqueConstraintBehavior.js +100 -0
- package/esm/api/orm/models/viewBehavior.d.ts +54 -0
- package/esm/api/orm/models/viewBehavior.js +100 -0
- package/esm/api/orm/mutation/index.d.ts +33 -1
- package/esm/api/orm/mutation/index.js +48 -0
- package/esm/api/orm/query/index.d.ts +17 -0
- package/esm/api/orm/query/index.js +28 -0
- package/esm/api/schema-types.d.ts +2732 -338
- package/esm/api/types.d.ts +238 -26
- package/esm/auth/orm/client.js +11 -1
- package/esm/auth/orm/input-types.d.ts +166 -220
- package/esm/auth/orm/input-types.js +6 -11
- package/esm/auth/schema-types.d.ts +31 -46
- package/esm/compute/hooks/index.d.ts +1 -1
- package/esm/compute/hooks/index.js +1 -1
- package/esm/compute/hooks/invalidation.d.ts +12 -0
- package/esm/compute/hooks/invalidation.js +33 -1
- package/esm/compute/hooks/mutation-keys.d.ts +24 -0
- package/esm/compute/hooks/mutation-keys.js +20 -0
- package/esm/compute/hooks/mutations/index.d.ts +6 -0
- package/esm/compute/hooks/mutations/index.js +6 -0
- package/esm/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreateFunctionCapabilityBindingMutation.js +31 -0
- package/esm/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.d.ts +34 -0
- package/esm/compute/hooks/mutations/useCreatePlatformFunctionCapabilityBindingMutation.js +31 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeleteFunctionCapabilityBindingMutation.js +36 -0
- package/esm/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.d.ts +38 -0
- package/esm/compute/hooks/mutations/useDeletePlatformFunctionCapabilityBindingMutation.js +36 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdateFunctionCapabilityBindingMutation.js +37 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.d.ts +40 -0
- package/esm/compute/hooks/mutations/useUpdatePlatformFunctionCapabilityBindingMutation.js +37 -0
- package/esm/compute/hooks/queries/index.d.ts +4 -0
- package/esm/compute/hooks/queries/index.js +4 -0
- package/esm/compute/hooks/queries/useFunctionCapabilityBindingQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/useFunctionCapabilityBindingQuery.js +47 -0
- package/esm/compute/hooks/queries/useFunctionCapabilityBindingsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/useFunctionCapabilityBindingsQuery.js +32 -0
- package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.d.ts +65 -0
- package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingQuery.js +47 -0
- package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.d.ts +69 -0
- package/esm/compute/hooks/queries/usePlatformFunctionCapabilityBindingsQuery.js +32 -0
- package/esm/compute/hooks/query-keys.d.ts +28 -0
- package/esm/compute/hooks/query-keys.js +18 -0
- package/esm/compute/orm/client.js +11 -1
- package/esm/compute/orm/index.d.ts +4 -0
- package/esm/compute/orm/index.js +4 -0
- package/esm/compute/orm/input-types.d.ts +539 -8
- package/esm/compute/orm/input-types.js +2 -0
- package/esm/compute/orm/models/functionCapabilityBinding.d.ts +54 -0
- package/esm/compute/orm/models/functionCapabilityBinding.js +100 -0
- package/esm/compute/orm/models/index.d.ts +2 -0
- package/esm/compute/orm/models/index.js +2 -0
- package/esm/compute/orm/models/platformFunctionCapabilityBinding.d.ts +54 -0
- package/esm/compute/orm/models/platformFunctionCapabilityBinding.js +100 -0
- package/esm/compute/schema-types.d.ts +312 -10
- package/esm/compute/types.d.ts +31 -0
- package/esm/config/orm/client.js +11 -1
- package/esm/config/orm/input-types.d.ts +53 -5
- package/esm/config/schema-types.d.ts +42 -6
- package/esm/config/types.d.ts +5 -0
- package/esm/infra/orm/client.js +11 -1
- package/esm/infra/schema-types.d.ts +7 -1
- package/esm/modules/hooks/index.d.ts +1 -1
- package/esm/modules/hooks/index.js +1 -1
- package/esm/modules/hooks/invalidation.d.ts +6 -0
- package/esm/modules/hooks/invalidation.js +17 -1
- package/esm/modules/hooks/mutation-keys.d.ts +12 -0
- package/esm/modules/hooks/mutation-keys.js +7 -0
- package/esm/modules/hooks/mutations/index.d.ts +3 -0
- package/esm/modules/hooks/mutations/index.js +3 -0
- package/esm/modules/hooks/mutations/useCreatePagesModuleMutation.d.ts +34 -0
- package/esm/modules/hooks/mutations/useCreatePagesModuleMutation.js +31 -0
- package/esm/modules/hooks/mutations/useDeletePagesModuleMutation.d.ts +38 -0
- package/esm/modules/hooks/mutations/useDeletePagesModuleMutation.js +36 -0
- package/esm/modules/hooks/mutations/useUpdatePagesModuleMutation.d.ts +40 -0
- package/esm/modules/hooks/mutations/useUpdatePagesModuleMutation.js +37 -0
- package/esm/modules/hooks/queries/index.d.ts +2 -0
- package/esm/modules/hooks/queries/index.js +2 -0
- package/esm/modules/hooks/queries/usePagesModuleQuery.d.ts +65 -0
- package/esm/{api/hooks/queries/usePlatformApiQuery.js → modules/hooks/queries/usePagesModuleQuery.js} +11 -11
- package/esm/modules/hooks/queries/usePagesModulesQuery.d.ts +69 -0
- package/esm/modules/hooks/queries/usePagesModulesQuery.js +32 -0
- package/esm/modules/hooks/query-keys.d.ts +14 -0
- package/esm/modules/hooks/query-keys.js +8 -0
- package/esm/modules/orm/client.js +11 -1
- package/esm/modules/orm/index.d.ts +2 -0
- package/esm/modules/orm/index.js +2 -0
- package/esm/modules/orm/input-types.d.ts +2116 -122
- package/esm/modules/orm/input-types.js +40 -0
- package/esm/modules/orm/models/index.d.ts +1 -0
- package/esm/modules/orm/models/index.js +1 -0
- package/esm/modules/orm/models/pagesModule.d.ts +54 -0
- package/esm/modules/orm/models/pagesModule.js +100 -0
- package/esm/modules/schema-types.d.ts +505 -6
- package/esm/modules/types.d.ts +43 -0
- package/esm/objects/orm/client.js +11 -1
- package/esm/objects/schema-types.d.ts +7 -1
- package/esm/usage/orm/client.js +11 -1
- package/esm/usage/schema-types.d.ts +7 -1
- package/infra/orm/client.js +11 -1
- package/infra/schema-types.d.ts +7 -1
- package/modules/hooks/index.d.ts +1 -1
- package/modules/hooks/index.js +1 -1
- package/modules/hooks/invalidation.d.ts +6 -0
- package/modules/hooks/invalidation.js +16 -0
- package/modules/hooks/mutation-keys.d.ts +12 -0
- package/modules/hooks/mutation-keys.js +9 -2
- package/modules/hooks/mutations/index.d.ts +3 -0
- package/modules/hooks/mutations/index.js +3 -0
- package/modules/hooks/mutations/useCreatePagesModuleMutation.d.ts +34 -0
- package/modules/hooks/mutations/useCreatePagesModuleMutation.js +34 -0
- package/modules/hooks/mutations/useDeletePagesModuleMutation.d.ts +38 -0
- package/modules/hooks/mutations/useDeletePagesModuleMutation.js +39 -0
- package/modules/hooks/mutations/useUpdatePagesModuleMutation.d.ts +40 -0
- package/modules/hooks/mutations/useUpdatePagesModuleMutation.js +40 -0
- package/modules/hooks/queries/index.d.ts +2 -0
- package/modules/hooks/queries/index.js +2 -0
- package/modules/hooks/queries/usePagesModuleQuery.d.ts +65 -0
- package/{api/hooks/queries/usePlatformApiQuery.js → modules/hooks/queries/usePagesModuleQuery.js} +14 -14
- package/modules/hooks/queries/usePagesModulesQuery.d.ts +69 -0
- package/modules/hooks/queries/usePagesModulesQuery.js +38 -0
- package/modules/hooks/query-keys.d.ts +14 -0
- package/modules/hooks/query-keys.js +10 -2
- package/modules/orm/client.js +11 -1
- package/modules/orm/index.d.ts +2 -0
- package/modules/orm/index.js +2 -0
- package/modules/orm/input-types.d.ts +2116 -122
- package/modules/orm/input-types.js +40 -0
- package/modules/orm/models/index.d.ts +1 -0
- package/modules/orm/models/index.js +4 -2
- package/modules/orm/models/pagesModule.d.ts +54 -0
- package/modules/orm/models/pagesModule.js +104 -0
- package/modules/schema-types.d.ts +505 -6
- package/modules/types.d.ts +43 -0
- package/objects/orm/client.js +11 -1
- package/objects/schema-types.d.ts +7 -1
- package/package.json +8 -8
- package/usage/orm/client.js +11 -1
- package/usage/schema-types.d.ts +7 -1
- package/api/hooks/mutations/useCreateApiMutation.d.ts +0 -34
- package/api/hooks/mutations/useCreatePlatformApiMutation.d.ts +0 -34
- package/api/hooks/mutations/useUpdatePlatformApiMutation.d.ts +0 -40
- package/api/hooks/queries/useApiQuery.d.ts +0 -65
- package/api/hooks/queries/usePlatformApiQuery.d.ts +0 -65
- package/api/orm/models/api.d.ts +0 -54
- package/api/orm/models/platformApi.d.ts +0 -54
- package/esm/api/hooks/mutations/useCreateApiMutation.d.ts +0 -34
- package/esm/api/hooks/mutations/useCreatePlatformApiMutation.d.ts +0 -34
- package/esm/api/hooks/mutations/useUpdatePlatformApiMutation.d.ts +0 -40
- package/esm/api/hooks/queries/useApiQuery.d.ts +0 -65
- package/esm/api/hooks/queries/usePlatformApiQuery.d.ts +0 -65
- package/esm/api/orm/models/api.d.ts +0 -54
- package/esm/api/orm/models/platformApi.d.ts +0 -54
|
@@ -271,6 +271,26 @@ export interface FunctionApiBinding {
|
|
|
271
271
|
id: string;
|
|
272
272
|
updatedAt?: string | null;
|
|
273
273
|
}
|
|
274
|
+
/** Capability bindings — declarative grants of typed resource capabilities (buckets) to function/graph holders per lifecycle */
|
|
275
|
+
export interface FunctionCapabilityBinding {
|
|
276
|
+
/** Bucket this capability targets (exactly one typed target is set) */
|
|
277
|
+
bucketId?: string | null;
|
|
278
|
+
createdAt?: string | null;
|
|
279
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
280
|
+
databaseId?: string | null;
|
|
281
|
+
/** Function definition holding this capability (exactly one of function_id / graph_id is set) */
|
|
282
|
+
functionId?: string | null;
|
|
283
|
+
/** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
|
|
284
|
+
graphId?: string | null;
|
|
285
|
+
id: string;
|
|
286
|
+
/** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
|
|
287
|
+
key?: string | null;
|
|
288
|
+
/** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
|
|
289
|
+
lifecycle?: string | null;
|
|
290
|
+
/** Per-binding annotations (no runtime semantics) */
|
|
291
|
+
metadata?: Record<string, unknown> | null;
|
|
292
|
+
updatedAt?: string | null;
|
|
293
|
+
}
|
|
274
294
|
/** Function definitions — registered cloud functions with routing, queue, and retry configuration */
|
|
275
295
|
export interface FunctionDefinition {
|
|
276
296
|
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
@@ -868,6 +888,24 @@ export interface PlatformFunctionApiBinding {
|
|
|
868
888
|
id: string;
|
|
869
889
|
updatedAt?: string | null;
|
|
870
890
|
}
|
|
891
|
+
/** Capability bindings — declarative grants of typed resource capabilities (buckets) to function/graph holders per lifecycle */
|
|
892
|
+
export interface PlatformFunctionCapabilityBinding {
|
|
893
|
+
/** Bucket this capability targets (exactly one typed target is set) */
|
|
894
|
+
bucketId?: string | null;
|
|
895
|
+
createdAt?: string | null;
|
|
896
|
+
/** Function definition holding this capability (exactly one of function_id / graph_id is set) */
|
|
897
|
+
functionId?: string | null;
|
|
898
|
+
/** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
|
|
899
|
+
graphId?: string | null;
|
|
900
|
+
id: string;
|
|
901
|
+
/** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
|
|
902
|
+
key?: string | null;
|
|
903
|
+
/** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
|
|
904
|
+
lifecycle?: string | null;
|
|
905
|
+
/** Per-binding annotations (no runtime semantics) */
|
|
906
|
+
metadata?: Record<string, unknown> | null;
|
|
907
|
+
updatedAt?: string | null;
|
|
908
|
+
}
|
|
871
909
|
/** Function definitions — registered cloud functions with routing, queue, and retry configuration */
|
|
872
910
|
export interface PlatformFunctionDefinition {
|
|
873
911
|
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
@@ -1244,6 +1282,8 @@ export interface PlatformResource {
|
|
|
1244
1282
|
name?: string | null;
|
|
1245
1283
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
1246
1284
|
namespaceId?: string | null;
|
|
1285
|
+
/** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
|
|
1286
|
+
realm?: string | null;
|
|
1247
1287
|
/** Desired pod count, derived from spec.replicas — the multiplier for total requested capacity (NULL if unset/invalid) */
|
|
1248
1288
|
replicas?: number | null;
|
|
1249
1289
|
/** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -1303,6 +1343,8 @@ export interface PlatformResourceDefinition {
|
|
|
1303
1343
|
name?: string | null;
|
|
1304
1344
|
/** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
|
|
1305
1345
|
namespaceId?: string | null;
|
|
1346
|
+
/** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
|
|
1347
|
+
paramsSchema?: Record<string, unknown> | null;
|
|
1306
1348
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
1307
1349
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
1308
1350
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -1453,6 +1495,7 @@ export interface PlatformResourcesHealth {
|
|
|
1453
1495
|
memoryRequestBytes?: string | null;
|
|
1454
1496
|
name?: string | null;
|
|
1455
1497
|
namespaceId?: string | null;
|
|
1498
|
+
realm?: string | null;
|
|
1456
1499
|
replicas?: number | null;
|
|
1457
1500
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
1458
1501
|
requiredSecrets?: ResourceRequirement[] | null;
|
|
@@ -1482,6 +1525,7 @@ export interface PlatformResourcesResolvedRequirement {
|
|
|
1482
1525
|
name?: string | null;
|
|
1483
1526
|
namespaceId?: string | null;
|
|
1484
1527
|
present?: boolean | null;
|
|
1528
|
+
realm?: string | null;
|
|
1485
1529
|
required?: boolean | null;
|
|
1486
1530
|
requirementKind?: string | null;
|
|
1487
1531
|
resourceId?: string | null;
|
|
@@ -1571,6 +1615,8 @@ export interface Resource {
|
|
|
1571
1615
|
name?: string | null;
|
|
1572
1616
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
1573
1617
|
namespaceId?: string | null;
|
|
1618
|
+
/** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
|
|
1619
|
+
realm?: string | null;
|
|
1574
1620
|
/** Desired pod count, derived from spec.replicas — the multiplier for total requested capacity (NULL if unset/invalid) */
|
|
1575
1621
|
replicas?: number | null;
|
|
1576
1622
|
/** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -1632,6 +1678,8 @@ export interface ResourceDefinition {
|
|
|
1632
1678
|
name?: string | null;
|
|
1633
1679
|
/** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
|
|
1634
1680
|
namespaceId?: string | null;
|
|
1681
|
+
/** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
|
|
1682
|
+
paramsSchema?: Record<string, unknown> | null;
|
|
1635
1683
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
1636
1684
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
1637
1685
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -1793,6 +1841,7 @@ export interface ResourcesHealth {
|
|
|
1793
1841
|
memoryRequestBytes?: string | null;
|
|
1794
1842
|
name?: string | null;
|
|
1795
1843
|
namespaceId?: string | null;
|
|
1844
|
+
realm?: string | null;
|
|
1796
1845
|
replicas?: number | null;
|
|
1797
1846
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
1798
1847
|
requiredSecrets?: ResourceRequirement[] | null;
|
|
@@ -1822,6 +1871,7 @@ export interface ResourcesResolvedRequirement {
|
|
|
1822
1871
|
name?: string | null;
|
|
1823
1872
|
namespaceId?: string | null;
|
|
1824
1873
|
present?: boolean | null;
|
|
1874
|
+
realm?: string | null;
|
|
1825
1875
|
required?: boolean | null;
|
|
1826
1876
|
requirementKind?: string | null;
|
|
1827
1877
|
resourceId?: string | null;
|
|
@@ -1897,8 +1947,12 @@ export interface FunctionApiBindingRelations {
|
|
|
1897
1947
|
functionDefinition?: FunctionDefinition | null;
|
|
1898
1948
|
functionInvocationsByApiBindingId?: ConnectionResult<FunctionInvocation>;
|
|
1899
1949
|
}
|
|
1950
|
+
export interface FunctionCapabilityBindingRelations {
|
|
1951
|
+
function?: FunctionDefinition | null;
|
|
1952
|
+
}
|
|
1900
1953
|
export interface FunctionDefinitionRelations {
|
|
1901
1954
|
functionApiBindings?: ConnectionResult<FunctionApiBinding>;
|
|
1955
|
+
functionCapabilityBindingsByFunctionId?: ConnectionResult<FunctionCapabilityBinding>;
|
|
1902
1956
|
webhookEndpoints?: ConnectionResult<WebhookEndpoint>;
|
|
1903
1957
|
}
|
|
1904
1958
|
export interface FunctionDeploymentRelations {
|
|
@@ -1959,9 +2013,13 @@ export interface PlatformFunctionApiBindingRelations {
|
|
|
1959
2013
|
functionDefinition?: PlatformFunctionDefinition | null;
|
|
1960
2014
|
platformFunctionInvocationsByApiBindingId?: ConnectionResult<PlatformFunctionInvocation>;
|
|
1961
2015
|
}
|
|
2016
|
+
export interface PlatformFunctionCapabilityBindingRelations {
|
|
2017
|
+
function?: PlatformFunctionDefinition | null;
|
|
2018
|
+
}
|
|
1962
2019
|
export interface PlatformFunctionDefinitionRelations {
|
|
1963
2020
|
graph?: FunctionGraph | null;
|
|
1964
2021
|
platformFunctionApiBindingsByFunctionDefinitionId?: ConnectionResult<PlatformFunctionApiBinding>;
|
|
2022
|
+
platformFunctionCapabilityBindingsByFunctionId?: ConnectionResult<PlatformFunctionCapabilityBinding>;
|
|
1965
2023
|
platformWebhookEndpointsByFunctionDefinitionId?: ConnectionResult<PlatformWebhookEndpoint>;
|
|
1966
2024
|
}
|
|
1967
2025
|
export interface PlatformFunctionDeploymentRelations {
|
|
@@ -2079,6 +2137,7 @@ export interface WebhookEventRelations {
|
|
|
2079
2137
|
}
|
|
2080
2138
|
export type DbPresetWithRelations = DbPreset & DbPresetRelations;
|
|
2081
2139
|
export type FunctionApiBindingWithRelations = FunctionApiBinding & FunctionApiBindingRelations;
|
|
2140
|
+
export type FunctionCapabilityBindingWithRelations = FunctionCapabilityBinding & FunctionCapabilityBindingRelations;
|
|
2082
2141
|
export type FunctionDefinitionWithRelations = FunctionDefinition & FunctionDefinitionRelations;
|
|
2083
2142
|
export type FunctionDeploymentWithRelations = FunctionDeployment & FunctionDeploymentRelations;
|
|
2084
2143
|
export type FunctionDeploymentEventWithRelations = FunctionDeploymentEvent & FunctionDeploymentEventRelations;
|
|
@@ -2103,6 +2162,7 @@ export type IntegrationProviderWithRelations = IntegrationProvider & Integration
|
|
|
2103
2162
|
export type NamespaceWithRelations = Namespace & NamespaceRelations;
|
|
2104
2163
|
export type NamespaceEventWithRelations = NamespaceEvent & NamespaceEventRelations;
|
|
2105
2164
|
export type PlatformFunctionApiBindingWithRelations = PlatformFunctionApiBinding & PlatformFunctionApiBindingRelations;
|
|
2165
|
+
export type PlatformFunctionCapabilityBindingWithRelations = PlatformFunctionCapabilityBinding & PlatformFunctionCapabilityBindingRelations;
|
|
2106
2166
|
export type PlatformFunctionDefinitionWithRelations = PlatformFunctionDefinition & PlatformFunctionDefinitionRelations;
|
|
2107
2167
|
export type PlatformFunctionDeploymentWithRelations = PlatformFunctionDeployment & PlatformFunctionDeploymentRelations;
|
|
2108
2168
|
export type PlatformFunctionDeploymentEventWithRelations = PlatformFunctionDeploymentEvent & PlatformFunctionDeploymentEventRelations;
|
|
@@ -2175,6 +2235,21 @@ export type FunctionApiBindingSelect = {
|
|
|
2175
2235
|
orderBy?: FunctionInvocationOrderBy[];
|
|
2176
2236
|
};
|
|
2177
2237
|
};
|
|
2238
|
+
export type FunctionCapabilityBindingSelect = {
|
|
2239
|
+
bucketId?: boolean;
|
|
2240
|
+
createdAt?: boolean;
|
|
2241
|
+
databaseId?: boolean;
|
|
2242
|
+
functionId?: boolean;
|
|
2243
|
+
graphId?: boolean;
|
|
2244
|
+
id?: boolean;
|
|
2245
|
+
key?: boolean;
|
|
2246
|
+
lifecycle?: boolean;
|
|
2247
|
+
metadata?: boolean;
|
|
2248
|
+
updatedAt?: boolean;
|
|
2249
|
+
function?: {
|
|
2250
|
+
select: FunctionDefinitionSelect;
|
|
2251
|
+
};
|
|
2252
|
+
};
|
|
2178
2253
|
export type FunctionDefinitionSelect = {
|
|
2179
2254
|
accessChannels?: boolean;
|
|
2180
2255
|
category?: boolean;
|
|
@@ -2225,6 +2300,12 @@ export type FunctionDefinitionSelect = {
|
|
|
2225
2300
|
filter?: FunctionApiBindingFilter;
|
|
2226
2301
|
orderBy?: FunctionApiBindingOrderBy[];
|
|
2227
2302
|
};
|
|
2303
|
+
functionCapabilityBindingsByFunctionId?: {
|
|
2304
|
+
select: FunctionCapabilityBindingSelect;
|
|
2305
|
+
first?: number;
|
|
2306
|
+
filter?: FunctionCapabilityBindingFilter;
|
|
2307
|
+
orderBy?: FunctionCapabilityBindingOrderBy[];
|
|
2308
|
+
};
|
|
2228
2309
|
webhookEndpoints?: {
|
|
2229
2310
|
select: WebhookEndpointSelect;
|
|
2230
2311
|
first?: number;
|
|
@@ -2568,6 +2649,20 @@ export type PlatformFunctionApiBindingSelect = {
|
|
|
2568
2649
|
orderBy?: PlatformFunctionInvocationOrderBy[];
|
|
2569
2650
|
};
|
|
2570
2651
|
};
|
|
2652
|
+
export type PlatformFunctionCapabilityBindingSelect = {
|
|
2653
|
+
bucketId?: boolean;
|
|
2654
|
+
createdAt?: boolean;
|
|
2655
|
+
functionId?: boolean;
|
|
2656
|
+
graphId?: boolean;
|
|
2657
|
+
id?: boolean;
|
|
2658
|
+
key?: boolean;
|
|
2659
|
+
lifecycle?: boolean;
|
|
2660
|
+
metadata?: boolean;
|
|
2661
|
+
updatedAt?: boolean;
|
|
2662
|
+
function?: {
|
|
2663
|
+
select: PlatformFunctionDefinitionSelect;
|
|
2664
|
+
};
|
|
2665
|
+
};
|
|
2571
2666
|
export type PlatformFunctionDefinitionSelect = {
|
|
2572
2667
|
accessChannels?: boolean;
|
|
2573
2668
|
billable?: boolean;
|
|
@@ -2622,6 +2717,12 @@ export type PlatformFunctionDefinitionSelect = {
|
|
|
2622
2717
|
filter?: PlatformFunctionApiBindingFilter;
|
|
2623
2718
|
orderBy?: PlatformFunctionApiBindingOrderBy[];
|
|
2624
2719
|
};
|
|
2720
|
+
platformFunctionCapabilityBindingsByFunctionId?: {
|
|
2721
|
+
select: PlatformFunctionCapabilityBindingSelect;
|
|
2722
|
+
first?: number;
|
|
2723
|
+
filter?: PlatformFunctionCapabilityBindingFilter;
|
|
2724
|
+
orderBy?: PlatformFunctionCapabilityBindingOrderBy[];
|
|
2725
|
+
};
|
|
2625
2726
|
platformWebhookEndpointsByFunctionDefinitionId?: {
|
|
2626
2727
|
select: PlatformWebhookEndpointSelect;
|
|
2627
2728
|
first?: number;
|
|
@@ -2821,6 +2922,7 @@ export type PlatformResourceSelect = {
|
|
|
2821
2922
|
memoryRequestBytes?: boolean;
|
|
2822
2923
|
name?: boolean;
|
|
2823
2924
|
namespaceId?: boolean;
|
|
2925
|
+
realm?: boolean;
|
|
2824
2926
|
replicas?: boolean;
|
|
2825
2927
|
requiredConfigs?: boolean;
|
|
2826
2928
|
requiredSecrets?: boolean;
|
|
@@ -2876,6 +2978,7 @@ export type PlatformResourceDefinitionSelect = {
|
|
|
2876
2978
|
labels?: boolean;
|
|
2877
2979
|
name?: boolean;
|
|
2878
2980
|
namespaceId?: boolean;
|
|
2981
|
+
paramsSchema?: boolean;
|
|
2879
2982
|
requiredConfigs?: boolean;
|
|
2880
2983
|
requiredSecrets?: boolean;
|
|
2881
2984
|
slug?: boolean;
|
|
@@ -2998,6 +3101,7 @@ export type PlatformResourcesHealthSelect = {
|
|
|
2998
3101
|
memoryRequestBytes?: boolean;
|
|
2999
3102
|
name?: boolean;
|
|
3000
3103
|
namespaceId?: boolean;
|
|
3104
|
+
realm?: boolean;
|
|
3001
3105
|
replicas?: boolean;
|
|
3002
3106
|
requiredConfigs?: boolean;
|
|
3003
3107
|
requiredSecrets?: boolean;
|
|
@@ -3027,6 +3131,7 @@ export type PlatformResourcesResolvedRequirementSelect = {
|
|
|
3027
3131
|
name?: boolean;
|
|
3028
3132
|
namespaceId?: boolean;
|
|
3029
3133
|
present?: boolean;
|
|
3134
|
+
realm?: boolean;
|
|
3030
3135
|
required?: boolean;
|
|
3031
3136
|
requirementKind?: boolean;
|
|
3032
3137
|
resourceId?: boolean;
|
|
@@ -3096,6 +3201,7 @@ export type ResourceSelect = {
|
|
|
3096
3201
|
memoryRequestBytes?: boolean;
|
|
3097
3202
|
name?: boolean;
|
|
3098
3203
|
namespaceId?: boolean;
|
|
3204
|
+
realm?: boolean;
|
|
3099
3205
|
replicas?: boolean;
|
|
3100
3206
|
requiredConfigs?: boolean;
|
|
3101
3207
|
requiredSecrets?: boolean;
|
|
@@ -3152,6 +3258,7 @@ export type ResourceDefinitionSelect = {
|
|
|
3152
3258
|
labels?: boolean;
|
|
3153
3259
|
name?: boolean;
|
|
3154
3260
|
namespaceId?: boolean;
|
|
3261
|
+
paramsSchema?: boolean;
|
|
3155
3262
|
requiredConfigs?: boolean;
|
|
3156
3263
|
requiredSecrets?: boolean;
|
|
3157
3264
|
slug?: boolean;
|
|
@@ -3280,6 +3387,7 @@ export type ResourcesHealthSelect = {
|
|
|
3280
3387
|
memoryRequestBytes?: boolean;
|
|
3281
3388
|
name?: boolean;
|
|
3282
3389
|
namespaceId?: boolean;
|
|
3390
|
+
realm?: boolean;
|
|
3283
3391
|
replicas?: boolean;
|
|
3284
3392
|
requiredConfigs?: boolean;
|
|
3285
3393
|
requiredSecrets?: boolean;
|
|
@@ -3309,6 +3417,7 @@ export type ResourcesResolvedRequirementSelect = {
|
|
|
3309
3417
|
name?: boolean;
|
|
3310
3418
|
namespaceId?: boolean;
|
|
3311
3419
|
present?: boolean;
|
|
3420
|
+
realm?: boolean;
|
|
3312
3421
|
required?: boolean;
|
|
3313
3422
|
requirementKind?: boolean;
|
|
3314
3423
|
resourceId?: boolean;
|
|
@@ -3419,6 +3528,38 @@ export interface FunctionApiBindingFilter {
|
|
|
3419
3528
|
/** Filter by the object’s `updatedAt` field. */
|
|
3420
3529
|
updatedAt?: DatetimeFilter;
|
|
3421
3530
|
}
|
|
3531
|
+
export interface FunctionCapabilityBindingFilter {
|
|
3532
|
+
/** Checks for all expressions in this list. */
|
|
3533
|
+
and?: FunctionCapabilityBindingFilter[];
|
|
3534
|
+
/** Filter by the object’s `bucketId` field. */
|
|
3535
|
+
bucketId?: UUIDFilter;
|
|
3536
|
+
/** Filter by the object’s `createdAt` field. */
|
|
3537
|
+
createdAt?: DatetimeFilter;
|
|
3538
|
+
/** Filter by the object’s `databaseId` field. */
|
|
3539
|
+
databaseId?: UUIDFilter;
|
|
3540
|
+
/** Filter by the object’s `function` relation. */
|
|
3541
|
+
function?: FunctionDefinitionFilter;
|
|
3542
|
+
/** A related `function` exists. */
|
|
3543
|
+
functionExists?: boolean;
|
|
3544
|
+
/** Filter by the object’s `functionId` field. */
|
|
3545
|
+
functionId?: UUIDFilter;
|
|
3546
|
+
/** Filter by the object’s `graphId` field. */
|
|
3547
|
+
graphId?: UUIDFilter;
|
|
3548
|
+
/** Filter by the object’s `id` field. */
|
|
3549
|
+
id?: UUIDFilter;
|
|
3550
|
+
/** Filter by the object’s `key` field. */
|
|
3551
|
+
key?: StringFilter;
|
|
3552
|
+
/** Filter by the object’s `lifecycle` field. */
|
|
3553
|
+
lifecycle?: StringFilter;
|
|
3554
|
+
/** Filter by the object’s `metadata` field. */
|
|
3555
|
+
metadata?: JSONFilter;
|
|
3556
|
+
/** Negates the expression. */
|
|
3557
|
+
not?: FunctionCapabilityBindingFilter;
|
|
3558
|
+
/** Checks for any expressions in this list. */
|
|
3559
|
+
or?: FunctionCapabilityBindingFilter[];
|
|
3560
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
3561
|
+
updatedAt?: DatetimeFilter;
|
|
3562
|
+
}
|
|
3422
3563
|
export interface FunctionDefinitionFilter {
|
|
3423
3564
|
/** Filter by the object’s `accessChannels` field. */
|
|
3424
3565
|
accessChannels?: StringListFilter;
|
|
@@ -3444,6 +3585,10 @@ export interface FunctionDefinitionFilter {
|
|
|
3444
3585
|
functionApiBindings?: FunctionDefinitionToManyFunctionApiBindingFilter;
|
|
3445
3586
|
/** `functionApiBindings` exist. */
|
|
3446
3587
|
functionApiBindingsExist?: boolean;
|
|
3588
|
+
/** Filter by the object’s `functionCapabilityBindingsByFunctionId` relation. */
|
|
3589
|
+
functionCapabilityBindingsByFunctionId?: FunctionDefinitionToManyFunctionCapabilityBindingFilter;
|
|
3590
|
+
/** `functionCapabilityBindingsByFunctionId` exist. */
|
|
3591
|
+
functionCapabilityBindingsByFunctionIdExist?: boolean;
|
|
3447
3592
|
/** Filter by the object’s `functionColumns` field. */
|
|
3448
3593
|
functionColumns?: JSONFilter;
|
|
3449
3594
|
/** Filter by the object’s `graphId` field. */
|
|
@@ -4189,6 +4334,36 @@ export interface PlatformFunctionApiBindingFilter {
|
|
|
4189
4334
|
/** Filter by the object’s `updatedAt` field. */
|
|
4190
4335
|
updatedAt?: DatetimeFilter;
|
|
4191
4336
|
}
|
|
4337
|
+
export interface PlatformFunctionCapabilityBindingFilter {
|
|
4338
|
+
/** Checks for all expressions in this list. */
|
|
4339
|
+
and?: PlatformFunctionCapabilityBindingFilter[];
|
|
4340
|
+
/** Filter by the object’s `bucketId` field. */
|
|
4341
|
+
bucketId?: UUIDFilter;
|
|
4342
|
+
/** Filter by the object’s `createdAt` field. */
|
|
4343
|
+
createdAt?: DatetimeFilter;
|
|
4344
|
+
/** Filter by the object’s `function` relation. */
|
|
4345
|
+
function?: PlatformFunctionDefinitionFilter;
|
|
4346
|
+
/** A related `function` exists. */
|
|
4347
|
+
functionExists?: boolean;
|
|
4348
|
+
/** Filter by the object’s `functionId` field. */
|
|
4349
|
+
functionId?: UUIDFilter;
|
|
4350
|
+
/** Filter by the object’s `graphId` field. */
|
|
4351
|
+
graphId?: UUIDFilter;
|
|
4352
|
+
/** Filter by the object’s `id` field. */
|
|
4353
|
+
id?: UUIDFilter;
|
|
4354
|
+
/** Filter by the object’s `key` field. */
|
|
4355
|
+
key?: StringFilter;
|
|
4356
|
+
/** Filter by the object’s `lifecycle` field. */
|
|
4357
|
+
lifecycle?: StringFilter;
|
|
4358
|
+
/** Filter by the object’s `metadata` field. */
|
|
4359
|
+
metadata?: JSONFilter;
|
|
4360
|
+
/** Negates the expression. */
|
|
4361
|
+
not?: PlatformFunctionCapabilityBindingFilter;
|
|
4362
|
+
/** Checks for any expressions in this list. */
|
|
4363
|
+
or?: PlatformFunctionCapabilityBindingFilter[];
|
|
4364
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
4365
|
+
updatedAt?: DatetimeFilter;
|
|
4366
|
+
}
|
|
4192
4367
|
export interface PlatformFunctionDefinitionFilter {
|
|
4193
4368
|
/** Filter by the object’s `accessChannels` field. */
|
|
4194
4369
|
accessChannels?: StringListFilter;
|
|
@@ -4252,6 +4427,10 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
4252
4427
|
platformFunctionApiBindingsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformFunctionApiBindingFilter;
|
|
4253
4428
|
/** `platformFunctionApiBindingsByFunctionDefinitionId` exist. */
|
|
4254
4429
|
platformFunctionApiBindingsByFunctionDefinitionIdExist?: boolean;
|
|
4430
|
+
/** Filter by the object’s `platformFunctionCapabilityBindingsByFunctionId` relation. */
|
|
4431
|
+
platformFunctionCapabilityBindingsByFunctionId?: PlatformFunctionDefinitionToManyPlatformFunctionCapabilityBindingFilter;
|
|
4432
|
+
/** `platformFunctionCapabilityBindingsByFunctionId` exist. */
|
|
4433
|
+
platformFunctionCapabilityBindingsByFunctionIdExist?: boolean;
|
|
4255
4434
|
/** Filter by the object’s `platformWebhookEndpointsByFunctionDefinitionId` relation. */
|
|
4256
4435
|
platformWebhookEndpointsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformWebhookEndpointFilter;
|
|
4257
4436
|
/** `platformWebhookEndpointsByFunctionDefinitionId` exist. */
|
|
@@ -4689,6 +4868,8 @@ export interface PlatformResourceFilter {
|
|
|
4689
4868
|
platformResourceStatusChecksByResourceId?: PlatformResourceToManyPlatformResourceStatusCheckFilter;
|
|
4690
4869
|
/** `platformResourceStatusChecksByResourceId` exist. */
|
|
4691
4870
|
platformResourceStatusChecksByResourceIdExist?: boolean;
|
|
4871
|
+
/** Filter by the object’s `realm` field. */
|
|
4872
|
+
realm?: StringFilter;
|
|
4692
4873
|
/** Filter by the object’s `replicas` field. */
|
|
4693
4874
|
replicas?: IntFilter;
|
|
4694
4875
|
/** Filter by the object’s `resourceDefinition` relation. */
|
|
@@ -4779,6 +4960,8 @@ export interface PlatformResourceDefinitionFilter {
|
|
|
4779
4960
|
not?: PlatformResourceDefinitionFilter;
|
|
4780
4961
|
/** Checks for any expressions in this list. */
|
|
4781
4962
|
or?: PlatformResourceDefinitionFilter[];
|
|
4963
|
+
/** Filter by the object’s `paramsSchema` field. */
|
|
4964
|
+
paramsSchema?: JSONFilter;
|
|
4782
4965
|
/** Filter by the object’s `platformResourcesByResourceDefinitionId` relation. */
|
|
4783
4966
|
platformResourcesByResourceDefinitionId?: PlatformResourceDefinitionToManyPlatformResourceFilter;
|
|
4784
4967
|
/** `platformResourcesByResourceDefinitionId` exist. */
|
|
@@ -5017,6 +5200,8 @@ export interface PlatformResourcesHealthFilter {
|
|
|
5017
5200
|
not?: PlatformResourcesHealthFilter;
|
|
5018
5201
|
/** Checks for any expressions in this list. */
|
|
5019
5202
|
or?: PlatformResourcesHealthFilter[];
|
|
5203
|
+
/** Filter by the object’s `realm` field. */
|
|
5204
|
+
realm?: StringFilter;
|
|
5020
5205
|
/** Filter by the object’s `replicas` field. */
|
|
5021
5206
|
replicas?: IntFilter;
|
|
5022
5207
|
/** Filter by the object’s `resourceDefinitionId` field. */
|
|
@@ -5079,6 +5264,8 @@ export interface PlatformResourcesResolvedRequirementFilter {
|
|
|
5079
5264
|
or?: PlatformResourcesResolvedRequirementFilter[];
|
|
5080
5265
|
/** Filter by the object’s `present` field. */
|
|
5081
5266
|
present?: BooleanFilter;
|
|
5267
|
+
/** Filter by the object’s `realm` field. */
|
|
5268
|
+
realm?: StringFilter;
|
|
5082
5269
|
/** Filter by the object’s `required` field. */
|
|
5083
5270
|
required?: BooleanFilter;
|
|
5084
5271
|
/** Filter by the object’s `requirementKind` field. */
|
|
@@ -5215,6 +5402,8 @@ export interface ResourceFilter {
|
|
|
5215
5402
|
not?: ResourceFilter;
|
|
5216
5403
|
/** Checks for any expressions in this list. */
|
|
5217
5404
|
or?: ResourceFilter[];
|
|
5405
|
+
/** Filter by the object’s `realm` field. */
|
|
5406
|
+
realm?: StringFilter;
|
|
5218
5407
|
/** Filter by the object’s `replicas` field. */
|
|
5219
5408
|
replicas?: IntFilter;
|
|
5220
5409
|
/** Filter by the object’s `resourceDefinition` relation. */
|
|
@@ -5311,6 +5500,8 @@ export interface ResourceDefinitionFilter {
|
|
|
5311
5500
|
not?: ResourceDefinitionFilter;
|
|
5312
5501
|
/** Checks for any expressions in this list. */
|
|
5313
5502
|
or?: ResourceDefinitionFilter[];
|
|
5503
|
+
/** Filter by the object’s `paramsSchema` field. */
|
|
5504
|
+
paramsSchema?: JSONFilter;
|
|
5314
5505
|
/** Filter by the object’s `resources` relation. */
|
|
5315
5506
|
resources?: ResourceDefinitionToManyResourceFilter;
|
|
5316
5507
|
/** `resources` exist. */
|
|
@@ -5561,6 +5752,8 @@ export interface ResourcesHealthFilter {
|
|
|
5561
5752
|
not?: ResourcesHealthFilter;
|
|
5562
5753
|
/** Checks for any expressions in this list. */
|
|
5563
5754
|
or?: ResourcesHealthFilter[];
|
|
5755
|
+
/** Filter by the object’s `realm` field. */
|
|
5756
|
+
realm?: StringFilter;
|
|
5564
5757
|
/** Filter by the object’s `replicas` field. */
|
|
5565
5758
|
replicas?: IntFilter;
|
|
5566
5759
|
/** Filter by the object’s `resourceDefinitionId` field. */
|
|
@@ -5623,6 +5816,8 @@ export interface ResourcesResolvedRequirementFilter {
|
|
|
5623
5816
|
or?: ResourcesResolvedRequirementFilter[];
|
|
5624
5817
|
/** Filter by the object’s `present` field. */
|
|
5625
5818
|
present?: BooleanFilter;
|
|
5819
|
+
/** Filter by the object’s `realm` field. */
|
|
5820
|
+
realm?: StringFilter;
|
|
5626
5821
|
/** Filter by the object’s `required` field. */
|
|
5627
5822
|
required?: BooleanFilter;
|
|
5628
5823
|
/** Filter by the object’s `requirementKind` field. */
|
|
@@ -5716,6 +5911,7 @@ export interface WebhookEventFilter {
|
|
|
5716
5911
|
}
|
|
5717
5912
|
export type DbPresetOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'LABEL_ASC' | 'LABEL_DESC' | 'MODULES_HASH_ASC' | 'MODULES_HASH_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5718
5913
|
export type FunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5914
|
+
export type FunctionCapabilityBindingOrderBy = 'BUCKET_ID_ASC' | 'BUCKET_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNCTION_ID_ASC' | 'FUNCTION_ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'KEY_ASC' | 'KEY_DESC' | 'LIFECYCLE_ASC' | 'LIFECYCLE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5719
5915
|
export type FunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
5720
5916
|
export type FunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5721
5917
|
export type FunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
@@ -5740,6 +5936,7 @@ export type IntegrationProviderOrderBy = 'BRAND_ASC' | 'BRAND_DESC' | 'CATEGORY_
|
|
|
5740
5936
|
export type NamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_MANAGED_ASC' | 'IS_MANAGED_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_NAME_ASC' | 'NAMESPACE_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5741
5937
|
export type NamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5742
5938
|
export type PlatformFunctionApiBindingOrderBy = 'ALIAS_ASC' | 'ALIAS_DESC' | 'API_ID_ASC' | 'API_ID_DESC' | 'CONFIG_ASC' | 'CONFIG_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5939
|
+
export type PlatformFunctionCapabilityBindingOrderBy = 'BUCKET_ID_ASC' | 'BUCKET_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'FUNCTION_ID_ASC' | 'FUNCTION_ID_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'KEY_ASC' | 'KEY_DESC' | 'LIFECYCLE_ASC' | 'LIFECYCLE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5743
5940
|
export type PlatformFunctionDefinitionOrderBy = 'ACCESS_CHANNELS_ASC' | 'ACCESS_CHANNELS_DESC' | 'BILLABLE_ASC' | 'BILLABLE_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'FN_CATEGORY_ASC' | 'FN_CATEGORY_DESC' | 'FUNCTION_COLUMNS_ASC' | 'FUNCTION_COLUMNS_DESC' | 'GRAPH_ID_ASC' | 'GRAPH_ID_DESC' | 'ICON_ASC' | 'ICON_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'INPUTS_ASC' | 'INPUTS_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'IS_PUBLISHED_ASC' | 'IS_PUBLISHED_DESC' | 'MAX_ATTEMPTS_ASC' | 'MAX_ATTEMPTS_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MODULE_TABLE_ASC' | 'MODULE_TABLE_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OUTPUTS_ASC' | 'OUTPUTS_DESC' | 'PAYLOAD_ARGS_ASC' | 'PAYLOAD_ARGS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'PROPS_ASC' | 'PROPS_DESC' | 'PROTECTED_ASC' | 'PROTECTED_DESC' | 'PUBLISHED_AT_ASC' | 'PUBLISHED_AT_DESC' | 'QUEUE_NAME_ASC' | 'QUEUE_NAME_DESC' | 'REQUIRED_BUCKETS_ASC' | 'REQUIRED_BUCKETS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_MODELS_ASC' | 'REQUIRED_MODELS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RUNTIME_ASC' | 'RUNTIME_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SYSTEM_ASC' | 'SYSTEM_DESC' | 'TARGET_FUNCTION_ASC' | 'TARGET_FUNCTION_DESC' | 'TARGET_SCHEMA_ASC' | 'TARGET_SCHEMA_DESC' | 'TASK_IDENTIFIER_ASC' | 'TASK_IDENTIFIER_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VOLATILE_ASC' | 'VOLATILE_DESC';
|
|
5744
5941
|
export type PlatformFunctionDeploymentOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CONCURRENCY_ASC' | 'CONCURRENCY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'HANDLER_NAME_ASC' | 'HANDLER_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'IMAGE_VERSION_ASC' | 'IMAGE_VERSION_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_AT_ASC' | 'LAST_ERROR_AT_DESC' | 'LAST_ERROR_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SCALE_MAX_ASC' | 'SCALE_MAX_DESC' | 'SCALE_MIN_ASC' | 'SCALE_MIN_DESC' | 'SERVICE_NAME_ASC' | 'SERVICE_NAME_DESC' | 'SERVICE_URL_ASC' | 'SERVICE_URL_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TIMEOUT_SECONDS_ASC' | 'TIMEOUT_SECONDS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5745
5942
|
export type PlatformFunctionDeploymentEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEPLOYMENT_ID_ASC' | 'DEPLOYMENT_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
@@ -5753,32 +5950,32 @@ export type PlatformInfraRefOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'ID_A
|
|
|
5753
5950
|
export type PlatformInfraStoreOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'HASH_ASC' | 'HASH_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCOPE_ID_ASC' | 'SCOPE_ID_DESC';
|
|
5754
5951
|
export type PlatformNamespaceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_MANAGED_ASC' | 'IS_MANAGED_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'NAMESPACE_NAME_ASC' | 'NAMESPACE_NAME_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5755
5952
|
export type PlatformNamespaceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC';
|
|
5756
|
-
export type PlatformResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5953
|
+
export type PlatformResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5757
5954
|
export type PlatformResourceDeclaredCapacityOrderBy = 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'IS_TRANSIENT_ASC' | 'IS_TRANSIENT_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'POD_COUNT_MAX_ASC' | 'POD_COUNT_MAX_DESC' | 'POD_COUNT_MIN_ASC' | 'POD_COUNT_MIN_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'SOURCE_ID_ASC' | 'SOURCE_ID_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC';
|
|
5758
|
-
export type PlatformResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5955
|
+
export type PlatformResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_SCHEMA_ASC' | 'PARAMS_SCHEMA_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5759
5956
|
export type PlatformResourceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC';
|
|
5760
5957
|
export type PlatformResourceInstallationOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_ASC' | 'PARAMS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5761
5958
|
export type PlatformResourceStatusCheckOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUESTED_AT_ASC' | 'REQUESTED_AT_DESC' | 'REQUESTED_BY_ASC' | 'REQUESTED_BY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
|
|
5762
5959
|
export type PlatformResourceUsageLogOrderBy = 'CPU_MILLICORES_ASC' | 'CPU_MILLICORES_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_SECONDS_ASC' | 'INTERVAL_SECONDS_DESC' | 'MEMORY_BYTES_ASC' | 'MEMORY_BYTES_DESC' | 'METRICS_ASC' | 'METRICS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SAMPLED_AT_ASC' | 'SAMPLED_AT_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC';
|
|
5763
5960
|
export type PlatformResourceUsageSummaryOrderBy = 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
5764
5961
|
export type PlatformResourceUtilizationOrderBy = 'AVG_MEMORY_BYTES_ASC' | 'AVG_MEMORY_BYTES_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_PEAK_UTILIZATION_ASC' | 'CPU_PEAK_UTILIZATION_DESC' | 'CPU_REQUEST_HEADROOM_MILLICORES_ASC' | 'CPU_REQUEST_HEADROOM_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_PEAK_UTILIZATION_ASC' | 'MEMORY_PEAK_UTILIZATION_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MEMORY_REQUEST_HEADROOM_BYTES_ASC' | 'MEMORY_REQUEST_HEADROOM_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
5765
|
-
export type PlatformResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5962
|
+
export type PlatformResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5766
5963
|
export type PlatformResourcesRequirementsStateOrderBy = 'CONFIG_HASH_ASC' | 'CONFIG_HASH_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NATURAL' | 'REQUIREMENTS_HASH_ASC' | 'REQUIREMENTS_HASH_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_HASH_ASC' | 'SECRETS_HASH_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
5767
|
-
export type PlatformResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
5964
|
+
export type PlatformResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
5768
5965
|
export type PlatformWebhookEndpointOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'HOST_ASC' | 'HOST_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REPLAY_WINDOW_SECONDS_ASC' | 'REPLAY_WINDOW_SECONDS_DESC' | 'SIGNING_SECRET_NAME_ASC' | 'SIGNING_SECRET_NAME_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5769
5966
|
export type PlatformWebhookEventOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ENDPOINT_ID_ASC' | 'ENDPOINT_ID_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'EXTERNAL_EVENT_ID_ASC' | 'EXTERNAL_EVENT_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVIDER_TIMESTAMP_ASC' | 'PROVIDER_TIMESTAMP_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5770
|
-
export type ResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5967
|
+
export type ResourceOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5771
5968
|
export type ResourceDeclaredCapacityOrderBy = 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'IS_TRANSIENT_ASC' | 'IS_TRANSIENT_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'POD_COUNT_MAX_ASC' | 'POD_COUNT_MAX_DESC' | 'POD_COUNT_MIN_ASC' | 'POD_COUNT_MIN_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'SOURCE_ID_ASC' | 'SOURCE_ID_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC';
|
|
5772
|
-
export type ResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5969
|
+
export type ResourceDefinitionOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_SPEC_ASC' | 'DEFAULT_SPEC_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_SCHEMA_ASC' | 'PARAMS_SCHEMA_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STEP_UP_MIN_AGE_ASC' | 'STEP_UP_MIN_AGE_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5773
5970
|
export type ResourceEventOrderBy = 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'EVENT_TYPE_ASC' | 'EVENT_TYPE_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_ASC' | 'MESSAGE_DESC' | 'METADATA_ASC' | 'METADATA_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC';
|
|
5774
5971
|
export type ResourceInstallationOrderBy = 'COMMIT_ID_ASC' | 'COMMIT_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PARAMS_ASC' | 'PARAMS_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REVISION_ASC' | 'REVISION_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STORE_ID_ASC' | 'STORE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5775
5972
|
export type ResourceStatusCheckOrderBy = 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'REQUESTED_AT_ASC' | 'REQUESTED_AT_DESC' | 'REQUESTED_BY_ASC' | 'REQUESTED_BY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RESULT_ASC' | 'RESULT_DESC' | 'STATUS_ASC' | 'STATUS_DESC';
|
|
5776
5973
|
export type ResourceUsageLogOrderBy = 'CPU_MILLICORES_ASC' | 'CPU_MILLICORES_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_SECONDS_ASC' | 'INTERVAL_SECONDS_DESC' | 'MEMORY_BYTES_ASC' | 'MEMORY_BYTES_DESC' | 'METRICS_ASC' | 'METRICS_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SAMPLED_AT_ASC' | 'SAMPLED_AT_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC';
|
|
5777
5974
|
export type ResourceUsageSummaryOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
5778
5975
|
export type ResourceUtilizationOrderBy = 'AVG_MEMORY_BYTES_ASC' | 'AVG_MEMORY_BYTES_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_PEAK_UTILIZATION_ASC' | 'CPU_PEAK_UTILIZATION_DESC' | 'CPU_REQUEST_HEADROOM_MILLICORES_ASC' | 'CPU_REQUEST_HEADROOM_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'DATE_ASC' | 'DATE_DESC' | 'GB_SECONDS_ASC' | 'GB_SECONDS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'MAX_CPU_MILLICORES_ASC' | 'MAX_CPU_MILLICORES_DESC' | 'MAX_MEMORY_BYTES_ASC' | 'MAX_MEMORY_BYTES_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_PEAK_UTILIZATION_ASC' | 'MEMORY_PEAK_UTILIZATION_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'MEMORY_REQUEST_HEADROOM_BYTES_ASC' | 'MEMORY_REQUEST_HEADROOM_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'RUNTIME_SECONDS_ASC' | 'RUNTIME_SECONDS_DESC' | 'SAMPLE_COUNT_ASC' | 'SAMPLE_COUNT_DESC';
|
|
5779
|
-
export type ResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5976
|
+
export type ResourcesHealthOrderBy = 'ANNOTATIONS_ASC' | 'ANNOTATIONS_DESC' | 'CPU_LIMIT_MILLICORES_ASC' | 'CPU_LIMIT_MILLICORES_DESC' | 'CPU_REQUEST_MILLICORES_ASC' | 'CPU_REQUEST_MILLICORES_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_COUNT_ASC' | 'ERROR_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INSTALLATION_ID_ASC' | 'INSTALLATION_ID_DESC' | 'INTEGRATIONS_ASC' | 'INTEGRATIONS_DESC' | 'KIND_ASC' | 'KIND_DESC' | 'LABELS_ASC' | 'LABELS_DESC' | 'LAST_ERROR_ASC' | 'LAST_ERROR_DESC' | 'LAST_HEARTBEAT_AT_ASC' | 'LAST_HEARTBEAT_AT_DESC' | 'MEMORY_LIMIT_BYTES_ASC' | 'MEMORY_LIMIT_BYTES_DESC' | 'MEMORY_REQUEST_BYTES_ASC' | 'MEMORY_REQUEST_BYTES_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'REALM_ASC' | 'REALM_DESC' | 'REPLICAS_ASC' | 'REPLICAS_DESC' | 'REQUIRED_CONFIGS_ASC' | 'REQUIRED_CONFIGS_DESC' | 'REQUIRED_SECRETS_ASC' | 'REQUIRED_SECRETS_DESC' | 'RESOURCE_DEFINITION_ID_ASC' | 'RESOURCE_DEFINITION_ID_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'SPEC_ASC' | 'SPEC_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'STATUS_DETAIL_ASC' | 'STATUS_DETAIL_DESC' | 'STATUS_OBSERVED_ASC' | 'STATUS_OBSERVED_DESC' | 'STORAGE_CLASS_ASC' | 'STORAGE_CLASS_DESC' | 'STORAGE_SIZE_BYTES_ASC' | 'STORAGE_SIZE_BYTES_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5780
5977
|
export type ResourcesRequirementsStateOrderBy = 'CONFIG_HASH_ASC' | 'CONFIG_HASH_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NATURAL' | 'REQUIREMENTS_HASH_ASC' | 'REQUIREMENTS_HASH_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_HASH_ASC' | 'SECRETS_HASH_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
5781
|
-
export type ResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
5978
|
+
export type ResourcesResolvedRequirementOrderBy = 'ATOM_ID_ASC' | 'ATOM_ID_DESC' | 'CONFIG_OBJECT_NAME_ASC' | 'CONFIG_OBJECT_NAME_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'PRESENT_ASC' | 'PRESENT_DESC' | 'REALM_ASC' | 'REALM_DESC' | 'REQUIRED_ASC' | 'REQUIRED_DESC' | 'REQUIREMENT_KIND_ASC' | 'REQUIREMENT_KIND_DESC' | 'RESOURCE_ID_ASC' | 'RESOURCE_ID_DESC' | 'SECRETS_OBJECT_NAME_ASC' | 'SECRETS_OBJECT_NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC';
|
|
5782
5979
|
export type WebhookEndpointOrderBy = 'ACTIVE_ASC' | 'ACTIVE_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FUNCTION_DEFINITION_ID_ASC' | 'FUNCTION_DEFINITION_ID_DESC' | 'HOST_ASC' | 'HOST_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_ID_ASC' | 'NAMESPACE_ID_DESC' | 'NATURAL' | 'PATH_ASC' | 'PATH_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'REPLAY_WINDOW_SECONDS_ASC' | 'REPLAY_WINDOW_SECONDS_DESC' | 'SIGNING_SECRET_NAME_ASC' | 'SIGNING_SECRET_NAME_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
|
|
5783
5980
|
export type WebhookEventOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENDPOINT_ID_ASC' | 'ENDPOINT_ID_DESC' | 'ERROR_ASC' | 'ERROR_DESC' | 'EXTERNAL_EVENT_ID_ASC' | 'EXTERNAL_EVENT_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATION_CREATED_AT_ASC' | 'INVOCATION_CREATED_AT_DESC' | 'INVOCATION_ID_ASC' | 'INVOCATION_ID_DESC' | 'NATURAL' | 'PAYLOAD_ASC' | 'PAYLOAD_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVIDER_TIMESTAMP_ASC' | 'PROVIDER_TIMESTAMP_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
5784
5981
|
export interface CreateDbPresetInput {
|
|
@@ -5837,6 +6034,36 @@ export interface DeleteFunctionApiBindingInput {
|
|
|
5837
6034
|
clientMutationId?: string;
|
|
5838
6035
|
id: string;
|
|
5839
6036
|
}
|
|
6037
|
+
export interface CreateFunctionCapabilityBindingInput {
|
|
6038
|
+
clientMutationId?: string;
|
|
6039
|
+
functionCapabilityBinding: {
|
|
6040
|
+
bucketId?: string;
|
|
6041
|
+
databaseId: string;
|
|
6042
|
+
functionId?: string;
|
|
6043
|
+
graphId?: string;
|
|
6044
|
+
key?: string;
|
|
6045
|
+
lifecycle: string;
|
|
6046
|
+
metadata?: Record<string, unknown>;
|
|
6047
|
+
};
|
|
6048
|
+
}
|
|
6049
|
+
export interface FunctionCapabilityBindingPatch {
|
|
6050
|
+
bucketId?: string | null;
|
|
6051
|
+
databaseId?: string | null;
|
|
6052
|
+
functionId?: string | null;
|
|
6053
|
+
graphId?: string | null;
|
|
6054
|
+
key?: string | null;
|
|
6055
|
+
lifecycle?: string | null;
|
|
6056
|
+
metadata?: Record<string, unknown> | null;
|
|
6057
|
+
}
|
|
6058
|
+
export interface UpdateFunctionCapabilityBindingInput {
|
|
6059
|
+
clientMutationId?: string;
|
|
6060
|
+
id: string;
|
|
6061
|
+
functionCapabilityBindingPatch: FunctionCapabilityBindingPatch;
|
|
6062
|
+
}
|
|
6063
|
+
export interface DeleteFunctionCapabilityBindingInput {
|
|
6064
|
+
clientMutationId?: string;
|
|
6065
|
+
id: string;
|
|
6066
|
+
}
|
|
5840
6067
|
export interface CreateFunctionDefinitionInput {
|
|
5841
6068
|
clientMutationId?: string;
|
|
5842
6069
|
functionDefinition: {
|
|
@@ -6668,6 +6895,34 @@ export interface DeletePlatformFunctionApiBindingInput {
|
|
|
6668
6895
|
clientMutationId?: string;
|
|
6669
6896
|
id: string;
|
|
6670
6897
|
}
|
|
6898
|
+
export interface CreatePlatformFunctionCapabilityBindingInput {
|
|
6899
|
+
clientMutationId?: string;
|
|
6900
|
+
platformFunctionCapabilityBinding: {
|
|
6901
|
+
bucketId?: string;
|
|
6902
|
+
functionId?: string;
|
|
6903
|
+
graphId?: string;
|
|
6904
|
+
key?: string;
|
|
6905
|
+
lifecycle: string;
|
|
6906
|
+
metadata?: Record<string, unknown>;
|
|
6907
|
+
};
|
|
6908
|
+
}
|
|
6909
|
+
export interface PlatformFunctionCapabilityBindingPatch {
|
|
6910
|
+
bucketId?: string | null;
|
|
6911
|
+
functionId?: string | null;
|
|
6912
|
+
graphId?: string | null;
|
|
6913
|
+
key?: string | null;
|
|
6914
|
+
lifecycle?: string | null;
|
|
6915
|
+
metadata?: Record<string, unknown> | null;
|
|
6916
|
+
}
|
|
6917
|
+
export interface UpdatePlatformFunctionCapabilityBindingInput {
|
|
6918
|
+
clientMutationId?: string;
|
|
6919
|
+
id: string;
|
|
6920
|
+
platformFunctionCapabilityBindingPatch: PlatformFunctionCapabilityBindingPatch;
|
|
6921
|
+
}
|
|
6922
|
+
export interface DeletePlatformFunctionCapabilityBindingInput {
|
|
6923
|
+
clientMutationId?: string;
|
|
6924
|
+
id: string;
|
|
6925
|
+
}
|
|
6671
6926
|
export interface CreatePlatformFunctionDefinitionInput {
|
|
6672
6927
|
clientMutationId?: string;
|
|
6673
6928
|
platformFunctionDefinition: {
|
|
@@ -7146,6 +7401,7 @@ export interface CreatePlatformResourceInput {
|
|
|
7146
7401
|
lastHeartbeatAt?: string;
|
|
7147
7402
|
name: string;
|
|
7148
7403
|
namespaceId: string;
|
|
7404
|
+
realm?: string;
|
|
7149
7405
|
requiredConfigs?: ResourceRequirementInput[];
|
|
7150
7406
|
requiredSecrets?: ResourceRequirementInput[];
|
|
7151
7407
|
resourceDefinitionId?: string;
|
|
@@ -7168,6 +7424,7 @@ export interface PlatformResourcePatch {
|
|
|
7168
7424
|
lastHeartbeatAt?: string | null;
|
|
7169
7425
|
name?: string | null;
|
|
7170
7426
|
namespaceId?: string | null;
|
|
7427
|
+
realm?: string | null;
|
|
7171
7428
|
requiredConfigs?: ResourceRequirementInput[] | null;
|
|
7172
7429
|
requiredSecrets?: ResourceRequirementInput[] | null;
|
|
7173
7430
|
resourceDefinitionId?: string | null;
|
|
@@ -7240,6 +7497,7 @@ export interface CreatePlatformResourceDefinitionInput {
|
|
|
7240
7497
|
labels?: Record<string, unknown>;
|
|
7241
7498
|
name: string;
|
|
7242
7499
|
namespaceId: string;
|
|
7500
|
+
paramsSchema?: Record<string, unknown>;
|
|
7243
7501
|
requiredConfigs?: ResourceRequirementInput[];
|
|
7244
7502
|
requiredSecrets?: ResourceRequirementInput[];
|
|
7245
7503
|
slug: string;
|
|
@@ -7257,6 +7515,7 @@ export interface PlatformResourceDefinitionPatch {
|
|
|
7257
7515
|
labels?: Record<string, unknown> | null;
|
|
7258
7516
|
name?: string | null;
|
|
7259
7517
|
namespaceId?: string | null;
|
|
7518
|
+
paramsSchema?: Record<string, unknown> | null;
|
|
7260
7519
|
requiredConfigs?: ResourceRequirementInput[] | null;
|
|
7261
7520
|
requiredSecrets?: ResourceRequirementInput[] | null;
|
|
7262
7521
|
slug?: string | null;
|
|
@@ -7498,6 +7757,7 @@ export interface CreatePlatformResourcesHealthInput {
|
|
|
7498
7757
|
memoryRequestBytes?: string;
|
|
7499
7758
|
name?: string;
|
|
7500
7759
|
namespaceId: string;
|
|
7760
|
+
realm?: string;
|
|
7501
7761
|
replicas?: number;
|
|
7502
7762
|
requiredConfigs?: ResourceRequirement[];
|
|
7503
7763
|
requiredSecrets?: ResourceRequirement[];
|
|
@@ -7528,6 +7788,7 @@ export interface PlatformResourcesHealthPatch {
|
|
|
7528
7788
|
memoryRequestBytes?: string | null;
|
|
7529
7789
|
name?: string | null;
|
|
7530
7790
|
namespaceId?: string | null;
|
|
7791
|
+
realm?: string | null;
|
|
7531
7792
|
replicas?: number | null;
|
|
7532
7793
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
7533
7794
|
requiredSecrets?: ResourceRequirement[] | null;
|
|
@@ -7588,6 +7849,7 @@ export interface CreatePlatformResourcesResolvedRequirementInput {
|
|
|
7588
7849
|
name?: string;
|
|
7589
7850
|
namespaceId: string;
|
|
7590
7851
|
present?: boolean;
|
|
7852
|
+
realm?: string;
|
|
7591
7853
|
required?: boolean;
|
|
7592
7854
|
requirementKind?: string;
|
|
7593
7855
|
resourceId: string;
|
|
@@ -7601,6 +7863,7 @@ export interface PlatformResourcesResolvedRequirementPatch {
|
|
|
7601
7863
|
name?: string | null;
|
|
7602
7864
|
namespaceId?: string | null;
|
|
7603
7865
|
present?: boolean | null;
|
|
7866
|
+
realm?: string | null;
|
|
7604
7867
|
required?: boolean | null;
|
|
7605
7868
|
requirementKind?: string | null;
|
|
7606
7869
|
resourceId?: string | null;
|
|
@@ -7701,6 +7964,7 @@ export interface CreateResourceInput {
|
|
|
7701
7964
|
lastHeartbeatAt?: string;
|
|
7702
7965
|
name: string;
|
|
7703
7966
|
namespaceId: string;
|
|
7967
|
+
realm?: string;
|
|
7704
7968
|
requiredConfigs?: ResourceRequirementInput[];
|
|
7705
7969
|
requiredSecrets?: ResourceRequirementInput[];
|
|
7706
7970
|
resourceDefinitionId?: string;
|
|
@@ -7724,6 +7988,7 @@ export interface ResourcePatch {
|
|
|
7724
7988
|
lastHeartbeatAt?: string | null;
|
|
7725
7989
|
name?: string | null;
|
|
7726
7990
|
namespaceId?: string | null;
|
|
7991
|
+
realm?: string | null;
|
|
7727
7992
|
requiredConfigs?: ResourceRequirementInput[] | null;
|
|
7728
7993
|
requiredSecrets?: ResourceRequirementInput[] | null;
|
|
7729
7994
|
resourceDefinitionId?: string | null;
|
|
@@ -7797,6 +8062,7 @@ export interface CreateResourceDefinitionInput {
|
|
|
7797
8062
|
labels?: Record<string, unknown>;
|
|
7798
8063
|
name: string;
|
|
7799
8064
|
namespaceId: string;
|
|
8065
|
+
paramsSchema?: Record<string, unknown>;
|
|
7800
8066
|
requiredConfigs?: ResourceRequirementInput[];
|
|
7801
8067
|
requiredSecrets?: ResourceRequirementInput[];
|
|
7802
8068
|
slug: string;
|
|
@@ -7815,6 +8081,7 @@ export interface ResourceDefinitionPatch {
|
|
|
7815
8081
|
labels?: Record<string, unknown> | null;
|
|
7816
8082
|
name?: string | null;
|
|
7817
8083
|
namespaceId?: string | null;
|
|
8084
|
+
paramsSchema?: Record<string, unknown> | null;
|
|
7818
8085
|
requiredConfigs?: ResourceRequirementInput[] | null;
|
|
7819
8086
|
requiredSecrets?: ResourceRequirementInput[] | null;
|
|
7820
8087
|
slug?: string | null;
|
|
@@ -8067,6 +8334,7 @@ export interface CreateResourcesHealthInput {
|
|
|
8067
8334
|
memoryRequestBytes?: string;
|
|
8068
8335
|
name?: string;
|
|
8069
8336
|
namespaceId: string;
|
|
8337
|
+
realm?: string;
|
|
8070
8338
|
replicas?: number;
|
|
8071
8339
|
requiredConfigs?: ResourceRequirement[];
|
|
8072
8340
|
requiredSecrets?: ResourceRequirement[];
|
|
@@ -8098,6 +8366,7 @@ export interface ResourcesHealthPatch {
|
|
|
8098
8366
|
memoryRequestBytes?: string | null;
|
|
8099
8367
|
name?: string | null;
|
|
8100
8368
|
namespaceId?: string | null;
|
|
8369
|
+
realm?: string | null;
|
|
8101
8370
|
replicas?: number | null;
|
|
8102
8371
|
requiredConfigs?: ResourceRequirement[] | null;
|
|
8103
8372
|
requiredSecrets?: ResourceRequirement[] | null;
|
|
@@ -8158,6 +8427,7 @@ export interface CreateResourcesResolvedRequirementInput {
|
|
|
8158
8427
|
name?: string;
|
|
8159
8428
|
namespaceId: string;
|
|
8160
8429
|
present?: boolean;
|
|
8430
|
+
realm?: string;
|
|
8161
8431
|
required?: boolean;
|
|
8162
8432
|
requirementKind?: string;
|
|
8163
8433
|
resourceId: string;
|
|
@@ -8171,6 +8441,7 @@ export interface ResourcesResolvedRequirementPatch {
|
|
|
8171
8441
|
name?: string | null;
|
|
8172
8442
|
namespaceId?: string | null;
|
|
8173
8443
|
present?: boolean | null;
|
|
8444
|
+
realm?: string | null;
|
|
8174
8445
|
required?: boolean | null;
|
|
8175
8446
|
requirementKind?: string | null;
|
|
8176
8447
|
resourceId?: string | null;
|
|
@@ -8382,6 +8653,7 @@ export interface PlatformInfraSetDataAtPathInput {
|
|
|
8382
8653
|
}
|
|
8383
8654
|
export interface PlatformResourceInstallationsInstallInput {
|
|
8384
8655
|
clientMutationId?: string;
|
|
8656
|
+
definitionIds?: string[];
|
|
8385
8657
|
name?: string;
|
|
8386
8658
|
namespaceId?: string;
|
|
8387
8659
|
newParams?: Record<string, unknown>;
|
|
@@ -8412,6 +8684,7 @@ export interface ProvisionBucketInput {
|
|
|
8412
8684
|
}
|
|
8413
8685
|
export interface ResourceInstallationsInstallInput {
|
|
8414
8686
|
clientMutationId?: string;
|
|
8687
|
+
definitionIds?: string[];
|
|
8415
8688
|
name?: string;
|
|
8416
8689
|
namespaceId?: string;
|
|
8417
8690
|
newParams?: Record<string, unknown>;
|
|
@@ -8479,6 +8752,15 @@ export interface FunctionDefinitionToManyFunctionApiBindingFilter {
|
|
|
8479
8752
|
/** Filters to entities where at least one related entity matches. */
|
|
8480
8753
|
some?: FunctionApiBindingFilter;
|
|
8481
8754
|
}
|
|
8755
|
+
/** A filter to be used against many `FunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
|
|
8756
|
+
export interface FunctionDefinitionToManyFunctionCapabilityBindingFilter {
|
|
8757
|
+
/** Filters to entities where every related entity matches. */
|
|
8758
|
+
every?: FunctionCapabilityBindingFilter;
|
|
8759
|
+
/** Filters to entities where no related entity matches. */
|
|
8760
|
+
none?: FunctionCapabilityBindingFilter;
|
|
8761
|
+
/** Filters to entities where at least one related entity matches. */
|
|
8762
|
+
some?: FunctionCapabilityBindingFilter;
|
|
8763
|
+
}
|
|
8482
8764
|
/** A filter to be used against many `WebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
8483
8765
|
export interface FunctionDefinitionToManyWebhookEndpointFilter {
|
|
8484
8766
|
/** Filters to entities where every related entity matches. */
|
|
@@ -8621,6 +8903,15 @@ export interface PlatformFunctionDefinitionToManyPlatformFunctionApiBindingFilte
|
|
|
8621
8903
|
/** Filters to entities where at least one related entity matches. */
|
|
8622
8904
|
some?: PlatformFunctionApiBindingFilter;
|
|
8623
8905
|
}
|
|
8906
|
+
/** A filter to be used against many `PlatformFunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
|
|
8907
|
+
export interface PlatformFunctionDefinitionToManyPlatformFunctionCapabilityBindingFilter {
|
|
8908
|
+
/** Filters to entities where every related entity matches. */
|
|
8909
|
+
every?: PlatformFunctionCapabilityBindingFilter;
|
|
8910
|
+
/** Filters to entities where no related entity matches. */
|
|
8911
|
+
none?: PlatformFunctionCapabilityBindingFilter;
|
|
8912
|
+
/** Filters to entities where at least one related entity matches. */
|
|
8913
|
+
some?: PlatformFunctionCapabilityBindingFilter;
|
|
8914
|
+
}
|
|
8624
8915
|
/** A filter to be used against many `PlatformWebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
8625
8916
|
export interface PlatformFunctionDefinitionToManyPlatformWebhookEndpointFilter {
|
|
8626
8917
|
/** Filters to entities where every related entity matches. */
|
|
@@ -8811,6 +9102,26 @@ export interface FunctionApiBindingInput {
|
|
|
8811
9102
|
id?: string;
|
|
8812
9103
|
updatedAt?: string;
|
|
8813
9104
|
}
|
|
9105
|
+
/** An input for mutations affecting `FunctionCapabilityBinding` */
|
|
9106
|
+
export interface FunctionCapabilityBindingInput {
|
|
9107
|
+
/** Bucket this capability targets (exactly one typed target is set) */
|
|
9108
|
+
bucketId?: string;
|
|
9109
|
+
createdAt?: string;
|
|
9110
|
+
/** Database that owns this resource (database-scoped isolation) */
|
|
9111
|
+
databaseId: string;
|
|
9112
|
+
/** Function definition holding this capability (exactly one of function_id / graph_id is set) */
|
|
9113
|
+
functionId?: string;
|
|
9114
|
+
/** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
|
|
9115
|
+
graphId?: string;
|
|
9116
|
+
id?: string;
|
|
9117
|
+
/** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
|
|
9118
|
+
key?: string;
|
|
9119
|
+
/** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
|
|
9120
|
+
lifecycle: string;
|
|
9121
|
+
/** Per-binding annotations (no runtime semantics) */
|
|
9122
|
+
metadata?: Record<string, unknown>;
|
|
9123
|
+
updatedAt?: string;
|
|
9124
|
+
}
|
|
8814
9125
|
/** An input for mutations affecting `FunctionDefinition` */
|
|
8815
9126
|
export interface FunctionDefinitionInput {
|
|
8816
9127
|
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
@@ -9369,6 +9680,24 @@ export interface PlatformFunctionApiBindingInput {
|
|
|
9369
9680
|
id?: string;
|
|
9370
9681
|
updatedAt?: string;
|
|
9371
9682
|
}
|
|
9683
|
+
/** An input for mutations affecting `PlatformFunctionCapabilityBinding` */
|
|
9684
|
+
export interface PlatformFunctionCapabilityBindingInput {
|
|
9685
|
+
/** Bucket this capability targets (exactly one typed target is set) */
|
|
9686
|
+
bucketId?: string;
|
|
9687
|
+
createdAt?: string;
|
|
9688
|
+
/** Function definition holding this capability (exactly one of function_id / graph_id is set) */
|
|
9689
|
+
functionId?: string;
|
|
9690
|
+
/** Flow graph holding this capability (exactly one of function_id / graph_id is set) */
|
|
9691
|
+
graphId?: string;
|
|
9692
|
+
id?: string;
|
|
9693
|
+
/** Runtime handle the holder addresses this capability by (e.g. default, scratch) */
|
|
9694
|
+
key?: string;
|
|
9695
|
+
/** Lifecycle the capability applies to: deployment (build/deploy time), execution (per invocation), root_execution (root of a graph execution tree) */
|
|
9696
|
+
lifecycle: string;
|
|
9697
|
+
/** Per-binding annotations (no runtime semantics) */
|
|
9698
|
+
metadata?: Record<string, unknown>;
|
|
9699
|
+
updatedAt?: string;
|
|
9700
|
+
}
|
|
9372
9701
|
/** An input for mutations affecting `PlatformFunctionDefinition` */
|
|
9373
9702
|
export interface PlatformFunctionDefinitionInput {
|
|
9374
9703
|
/** Invocation channels this function may be exposed through (api, graph, cron, sync, webhook). Internal worker dispatch is implicit and never listed. Default [] = worker only. */
|
|
@@ -9723,6 +10052,8 @@ export interface PlatformResourceInput {
|
|
|
9723
10052
|
name: string;
|
|
9724
10053
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
9725
10054
|
namespaceId: string;
|
|
10055
|
+
/** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
|
|
10056
|
+
realm?: string;
|
|
9726
10057
|
/** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
|
|
9727
10058
|
requiredConfigs?: ResourceRequirementInput[];
|
|
9728
10059
|
/** Embedded secret requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -9761,6 +10092,8 @@ export interface PlatformResourceDefinitionInput {
|
|
|
9761
10092
|
name: string;
|
|
9762
10093
|
/** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
|
|
9763
10094
|
namespaceId: string;
|
|
10095
|
+
/** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
|
|
10096
|
+
paramsSchema?: Record<string, unknown>;
|
|
9764
10097
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
9765
10098
|
requiredConfigs?: ResourceRequirementInput[];
|
|
9766
10099
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -9966,6 +10299,8 @@ export interface ResourceInput {
|
|
|
9966
10299
|
name: string;
|
|
9967
10300
|
/** Namespace this resource belongs to (security boundary, maps to K8s namespace) */
|
|
9968
10301
|
namespaceId: string;
|
|
10302
|
+
/** Config/secret realm this resource resolves against. Per key, the realm-specific atom wins over the NULL-realm default. NULL = the default lane. */
|
|
10303
|
+
realm?: string;
|
|
9969
10304
|
/** Embedded config requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
|
|
9970
10305
|
requiredConfigs?: ResourceRequirementInput[];
|
|
9971
10306
|
/** Embedded secret requirements: array of (name, required, provider) tuples — extends the linked definition's requirements. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -10006,6 +10341,8 @@ export interface ResourceDefinitionInput {
|
|
|
10006
10341
|
name: string;
|
|
10007
10342
|
/** Namespace this definition belongs to (security boundary, maps to K8s namespace) */
|
|
10008
10343
|
namespaceId: string;
|
|
10344
|
+
/** Declared parameter interface: [{key,label,type,default,required,min,max,options,group,order,bindings:[{path,template,scale,round,unit}]}]. Installation params are validated and compiled through these declarations; [] keeps the legacy raw spec overlay. */
|
|
10345
|
+
paramsSchema?: Record<string, unknown>;
|
|
10009
10346
|
/** Embedded config requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
10010
10347
|
requiredConfigs?: ResourceRequirementInput[];
|
|
10011
10348
|
/** Embedded secret requirements: array of (name, required, provider) tuples. provider is the integration slug this requirement belongs to, if any. */
|
|
@@ -10261,6 +10598,39 @@ export interface FunctionApiBindingFilter {
|
|
|
10261
10598
|
/** Filter by the object’s `updatedAt` field. */
|
|
10262
10599
|
updatedAt?: DatetimeFilter;
|
|
10263
10600
|
}
|
|
10601
|
+
/** A filter to be used against `FunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
|
|
10602
|
+
export interface FunctionCapabilityBindingFilter {
|
|
10603
|
+
/** Checks for all expressions in this list. */
|
|
10604
|
+
and?: FunctionCapabilityBindingFilter[];
|
|
10605
|
+
/** Filter by the object’s `bucketId` field. */
|
|
10606
|
+
bucketId?: UUIDFilter;
|
|
10607
|
+
/** Filter by the object’s `createdAt` field. */
|
|
10608
|
+
createdAt?: DatetimeFilter;
|
|
10609
|
+
/** Filter by the object’s `databaseId` field. */
|
|
10610
|
+
databaseId?: UUIDFilter;
|
|
10611
|
+
/** Filter by the object’s `function` relation. */
|
|
10612
|
+
function?: FunctionDefinitionFilter;
|
|
10613
|
+
/** A related `function` exists. */
|
|
10614
|
+
functionExists?: boolean;
|
|
10615
|
+
/** Filter by the object’s `functionId` field. */
|
|
10616
|
+
functionId?: UUIDFilter;
|
|
10617
|
+
/** Filter by the object’s `graphId` field. */
|
|
10618
|
+
graphId?: UUIDFilter;
|
|
10619
|
+
/** Filter by the object’s `id` field. */
|
|
10620
|
+
id?: UUIDFilter;
|
|
10621
|
+
/** Filter by the object’s `key` field. */
|
|
10622
|
+
key?: StringFilter;
|
|
10623
|
+
/** Filter by the object’s `lifecycle` field. */
|
|
10624
|
+
lifecycle?: StringFilter;
|
|
10625
|
+
/** Filter by the object’s `metadata` field. */
|
|
10626
|
+
metadata?: JSONFilter;
|
|
10627
|
+
/** Negates the expression. */
|
|
10628
|
+
not?: FunctionCapabilityBindingFilter;
|
|
10629
|
+
/** Checks for any expressions in this list. */
|
|
10630
|
+
or?: FunctionCapabilityBindingFilter[];
|
|
10631
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
10632
|
+
updatedAt?: DatetimeFilter;
|
|
10633
|
+
}
|
|
10264
10634
|
/** A filter to be used against `WebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
10265
10635
|
export interface WebhookEndpointFilter {
|
|
10266
10636
|
/** Filter by the object’s `active` field. */
|
|
@@ -10445,6 +10815,10 @@ export interface PlatformFunctionDefinitionFilter {
|
|
|
10445
10815
|
platformFunctionApiBindingsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformFunctionApiBindingFilter;
|
|
10446
10816
|
/** `platformFunctionApiBindingsByFunctionDefinitionId` exist. */
|
|
10447
10817
|
platformFunctionApiBindingsByFunctionDefinitionIdExist?: boolean;
|
|
10818
|
+
/** Filter by the object’s `platformFunctionCapabilityBindingsByFunctionId` relation. */
|
|
10819
|
+
platformFunctionCapabilityBindingsByFunctionId?: PlatformFunctionDefinitionToManyPlatformFunctionCapabilityBindingFilter;
|
|
10820
|
+
/** `platformFunctionCapabilityBindingsByFunctionId` exist. */
|
|
10821
|
+
platformFunctionCapabilityBindingsByFunctionIdExist?: boolean;
|
|
10448
10822
|
/** Filter by the object’s `platformWebhookEndpointsByFunctionDefinitionId` relation. */
|
|
10449
10823
|
platformWebhookEndpointsByFunctionDefinitionId?: PlatformFunctionDefinitionToManyPlatformWebhookEndpointFilter;
|
|
10450
10824
|
/** `platformWebhookEndpointsByFunctionDefinitionId` exist. */
|
|
@@ -10575,6 +10949,8 @@ export interface ResourceDefinitionFilter {
|
|
|
10575
10949
|
not?: ResourceDefinitionFilter;
|
|
10576
10950
|
/** Checks for any expressions in this list. */
|
|
10577
10951
|
or?: ResourceDefinitionFilter[];
|
|
10952
|
+
/** Filter by the object’s `paramsSchema` field. */
|
|
10953
|
+
paramsSchema?: JSONFilter;
|
|
10578
10954
|
/** Filter by the object’s `resources` relation. */
|
|
10579
10955
|
resources?: ResourceDefinitionToManyResourceFilter;
|
|
10580
10956
|
/** `resources` exist. */
|
|
@@ -10681,6 +11057,8 @@ export interface ResourceFilter {
|
|
|
10681
11057
|
not?: ResourceFilter;
|
|
10682
11058
|
/** Checks for any expressions in this list. */
|
|
10683
11059
|
or?: ResourceFilter[];
|
|
11060
|
+
/** Filter by the object’s `realm` field. */
|
|
11061
|
+
realm?: StringFilter;
|
|
10684
11062
|
/** Filter by the object’s `replicas` field. */
|
|
10685
11063
|
replicas?: IntFilter;
|
|
10686
11064
|
/** Filter by the object’s `resourceDefinition` relation. */
|
|
@@ -10792,6 +11170,37 @@ export interface PlatformFunctionApiBindingFilter {
|
|
|
10792
11170
|
/** Filter by the object’s `updatedAt` field. */
|
|
10793
11171
|
updatedAt?: DatetimeFilter;
|
|
10794
11172
|
}
|
|
11173
|
+
/** A filter to be used against `PlatformFunctionCapabilityBinding` object types. All fields are combined with a logical ‘and.’ */
|
|
11174
|
+
export interface PlatformFunctionCapabilityBindingFilter {
|
|
11175
|
+
/** Checks for all expressions in this list. */
|
|
11176
|
+
and?: PlatformFunctionCapabilityBindingFilter[];
|
|
11177
|
+
/** Filter by the object’s `bucketId` field. */
|
|
11178
|
+
bucketId?: UUIDFilter;
|
|
11179
|
+
/** Filter by the object’s `createdAt` field. */
|
|
11180
|
+
createdAt?: DatetimeFilter;
|
|
11181
|
+
/** Filter by the object’s `function` relation. */
|
|
11182
|
+
function?: PlatformFunctionDefinitionFilter;
|
|
11183
|
+
/** A related `function` exists. */
|
|
11184
|
+
functionExists?: boolean;
|
|
11185
|
+
/** Filter by the object’s `functionId` field. */
|
|
11186
|
+
functionId?: UUIDFilter;
|
|
11187
|
+
/** Filter by the object’s `graphId` field. */
|
|
11188
|
+
graphId?: UUIDFilter;
|
|
11189
|
+
/** Filter by the object’s `id` field. */
|
|
11190
|
+
id?: UUIDFilter;
|
|
11191
|
+
/** Filter by the object’s `key` field. */
|
|
11192
|
+
key?: StringFilter;
|
|
11193
|
+
/** Filter by the object’s `lifecycle` field. */
|
|
11194
|
+
lifecycle?: StringFilter;
|
|
11195
|
+
/** Filter by the object’s `metadata` field. */
|
|
11196
|
+
metadata?: JSONFilter;
|
|
11197
|
+
/** Negates the expression. */
|
|
11198
|
+
not?: PlatformFunctionCapabilityBindingFilter;
|
|
11199
|
+
/** Checks for any expressions in this list. */
|
|
11200
|
+
or?: PlatformFunctionCapabilityBindingFilter[];
|
|
11201
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
11202
|
+
updatedAt?: DatetimeFilter;
|
|
11203
|
+
}
|
|
10795
11204
|
/** A filter to be used against `PlatformWebhookEndpoint` object types. All fields are combined with a logical ‘and.’ */
|
|
10796
11205
|
export interface PlatformWebhookEndpointFilter {
|
|
10797
11206
|
/** Filter by the object’s `active` field. */
|
|
@@ -10920,6 +11329,8 @@ export interface PlatformResourceDefinitionFilter {
|
|
|
10920
11329
|
not?: PlatformResourceDefinitionFilter;
|
|
10921
11330
|
/** Checks for any expressions in this list. */
|
|
10922
11331
|
or?: PlatformResourceDefinitionFilter[];
|
|
11332
|
+
/** Filter by the object’s `paramsSchema` field. */
|
|
11333
|
+
paramsSchema?: JSONFilter;
|
|
10923
11334
|
/** Filter by the object’s `platformResourcesByResourceDefinitionId` relation. */
|
|
10924
11335
|
platformResourcesByResourceDefinitionId?: PlatformResourceDefinitionToManyPlatformResourceFilter;
|
|
10925
11336
|
/** `platformResourcesByResourceDefinitionId` exist. */
|
|
@@ -11026,6 +11437,8 @@ export interface PlatformResourceFilter {
|
|
|
11026
11437
|
platformResourceStatusChecksByResourceId?: PlatformResourceToManyPlatformResourceStatusCheckFilter;
|
|
11027
11438
|
/** `platformResourceStatusChecksByResourceId` exist. */
|
|
11028
11439
|
platformResourceStatusChecksByResourceIdExist?: boolean;
|
|
11440
|
+
/** Filter by the object’s `realm` field. */
|
|
11441
|
+
realm?: StringFilter;
|
|
11029
11442
|
/** Filter by the object’s `replicas` field. */
|
|
11030
11443
|
replicas?: IntFilter;
|
|
11031
11444
|
/** Filter by the object’s `resourceDefinition` relation. */
|
|
@@ -11413,6 +11826,10 @@ export interface FunctionDefinitionFilter {
|
|
|
11413
11826
|
functionApiBindings?: FunctionDefinitionToManyFunctionApiBindingFilter;
|
|
11414
11827
|
/** `functionApiBindings` exist. */
|
|
11415
11828
|
functionApiBindingsExist?: boolean;
|
|
11829
|
+
/** Filter by the object’s `functionCapabilityBindingsByFunctionId` relation. */
|
|
11830
|
+
functionCapabilityBindingsByFunctionId?: FunctionDefinitionToManyFunctionCapabilityBindingFilter;
|
|
11831
|
+
/** `functionCapabilityBindingsByFunctionId` exist. */
|
|
11832
|
+
functionCapabilityBindingsByFunctionIdExist?: boolean;
|
|
11416
11833
|
/** Filter by the object’s `functionColumns` field. */
|
|
11417
11834
|
functionColumns?: JSONFilter;
|
|
11418
11835
|
/** Filter by the object’s `graphId` field. */
|
|
@@ -12007,6 +12424,51 @@ export type DeleteFunctionApiBindingPayloadSelect = {
|
|
|
12007
12424
|
select: FunctionApiBindingEdgeSelect;
|
|
12008
12425
|
};
|
|
12009
12426
|
};
|
|
12427
|
+
export interface CreateFunctionCapabilityBindingPayload {
|
|
12428
|
+
clientMutationId?: string | null;
|
|
12429
|
+
/** The `FunctionCapabilityBinding` that was created by this mutation. */
|
|
12430
|
+
functionCapabilityBinding?: FunctionCapabilityBinding | null;
|
|
12431
|
+
functionCapabilityBindingEdge?: FunctionCapabilityBindingEdge | null;
|
|
12432
|
+
}
|
|
12433
|
+
export type CreateFunctionCapabilityBindingPayloadSelect = {
|
|
12434
|
+
clientMutationId?: boolean;
|
|
12435
|
+
functionCapabilityBinding?: {
|
|
12436
|
+
select: FunctionCapabilityBindingSelect;
|
|
12437
|
+
};
|
|
12438
|
+
functionCapabilityBindingEdge?: {
|
|
12439
|
+
select: FunctionCapabilityBindingEdgeSelect;
|
|
12440
|
+
};
|
|
12441
|
+
};
|
|
12442
|
+
export interface UpdateFunctionCapabilityBindingPayload {
|
|
12443
|
+
clientMutationId?: string | null;
|
|
12444
|
+
/** The `FunctionCapabilityBinding` that was updated by this mutation. */
|
|
12445
|
+
functionCapabilityBinding?: FunctionCapabilityBinding | null;
|
|
12446
|
+
functionCapabilityBindingEdge?: FunctionCapabilityBindingEdge | null;
|
|
12447
|
+
}
|
|
12448
|
+
export type UpdateFunctionCapabilityBindingPayloadSelect = {
|
|
12449
|
+
clientMutationId?: boolean;
|
|
12450
|
+
functionCapabilityBinding?: {
|
|
12451
|
+
select: FunctionCapabilityBindingSelect;
|
|
12452
|
+
};
|
|
12453
|
+
functionCapabilityBindingEdge?: {
|
|
12454
|
+
select: FunctionCapabilityBindingEdgeSelect;
|
|
12455
|
+
};
|
|
12456
|
+
};
|
|
12457
|
+
export interface DeleteFunctionCapabilityBindingPayload {
|
|
12458
|
+
clientMutationId?: string | null;
|
|
12459
|
+
/** The `FunctionCapabilityBinding` that was deleted by this mutation. */
|
|
12460
|
+
functionCapabilityBinding?: FunctionCapabilityBinding | null;
|
|
12461
|
+
functionCapabilityBindingEdge?: FunctionCapabilityBindingEdge | null;
|
|
12462
|
+
}
|
|
12463
|
+
export type DeleteFunctionCapabilityBindingPayloadSelect = {
|
|
12464
|
+
clientMutationId?: boolean;
|
|
12465
|
+
functionCapabilityBinding?: {
|
|
12466
|
+
select: FunctionCapabilityBindingSelect;
|
|
12467
|
+
};
|
|
12468
|
+
functionCapabilityBindingEdge?: {
|
|
12469
|
+
select: FunctionCapabilityBindingEdgeSelect;
|
|
12470
|
+
};
|
|
12471
|
+
};
|
|
12010
12472
|
export interface CreateFunctionDefinitionPayload {
|
|
12011
12473
|
clientMutationId?: string | null;
|
|
12012
12474
|
/** The `FunctionDefinition` that was created by this mutation. */
|
|
@@ -12990,6 +13452,51 @@ export type DeletePlatformFunctionApiBindingPayloadSelect = {
|
|
|
12990
13452
|
select: PlatformFunctionApiBindingEdgeSelect;
|
|
12991
13453
|
};
|
|
12992
13454
|
};
|
|
13455
|
+
export interface CreatePlatformFunctionCapabilityBindingPayload {
|
|
13456
|
+
clientMutationId?: string | null;
|
|
13457
|
+
/** The `PlatformFunctionCapabilityBinding` that was created by this mutation. */
|
|
13458
|
+
platformFunctionCapabilityBinding?: PlatformFunctionCapabilityBinding | null;
|
|
13459
|
+
platformFunctionCapabilityBindingEdge?: PlatformFunctionCapabilityBindingEdge | null;
|
|
13460
|
+
}
|
|
13461
|
+
export type CreatePlatformFunctionCapabilityBindingPayloadSelect = {
|
|
13462
|
+
clientMutationId?: boolean;
|
|
13463
|
+
platformFunctionCapabilityBinding?: {
|
|
13464
|
+
select: PlatformFunctionCapabilityBindingSelect;
|
|
13465
|
+
};
|
|
13466
|
+
platformFunctionCapabilityBindingEdge?: {
|
|
13467
|
+
select: PlatformFunctionCapabilityBindingEdgeSelect;
|
|
13468
|
+
};
|
|
13469
|
+
};
|
|
13470
|
+
export interface UpdatePlatformFunctionCapabilityBindingPayload {
|
|
13471
|
+
clientMutationId?: string | null;
|
|
13472
|
+
/** The `PlatformFunctionCapabilityBinding` that was updated by this mutation. */
|
|
13473
|
+
platformFunctionCapabilityBinding?: PlatformFunctionCapabilityBinding | null;
|
|
13474
|
+
platformFunctionCapabilityBindingEdge?: PlatformFunctionCapabilityBindingEdge | null;
|
|
13475
|
+
}
|
|
13476
|
+
export type UpdatePlatformFunctionCapabilityBindingPayloadSelect = {
|
|
13477
|
+
clientMutationId?: boolean;
|
|
13478
|
+
platformFunctionCapabilityBinding?: {
|
|
13479
|
+
select: PlatformFunctionCapabilityBindingSelect;
|
|
13480
|
+
};
|
|
13481
|
+
platformFunctionCapabilityBindingEdge?: {
|
|
13482
|
+
select: PlatformFunctionCapabilityBindingEdgeSelect;
|
|
13483
|
+
};
|
|
13484
|
+
};
|
|
13485
|
+
export interface DeletePlatformFunctionCapabilityBindingPayload {
|
|
13486
|
+
clientMutationId?: string | null;
|
|
13487
|
+
/** The `PlatformFunctionCapabilityBinding` that was deleted by this mutation. */
|
|
13488
|
+
platformFunctionCapabilityBinding?: PlatformFunctionCapabilityBinding | null;
|
|
13489
|
+
platformFunctionCapabilityBindingEdge?: PlatformFunctionCapabilityBindingEdge | null;
|
|
13490
|
+
}
|
|
13491
|
+
export type DeletePlatformFunctionCapabilityBindingPayloadSelect = {
|
|
13492
|
+
clientMutationId?: boolean;
|
|
13493
|
+
platformFunctionCapabilityBinding?: {
|
|
13494
|
+
select: PlatformFunctionCapabilityBindingSelect;
|
|
13495
|
+
};
|
|
13496
|
+
platformFunctionCapabilityBindingEdge?: {
|
|
13497
|
+
select: PlatformFunctionCapabilityBindingEdgeSelect;
|
|
13498
|
+
};
|
|
13499
|
+
};
|
|
12993
13500
|
export interface CreatePlatformFunctionDefinitionPayload {
|
|
12994
13501
|
clientMutationId?: string | null;
|
|
12995
13502
|
/** The `PlatformFunctionDefinition` that was created by this mutation. */
|
|
@@ -14364,6 +14871,18 @@ export type FunctionApiBindingEdgeSelect = {
|
|
|
14364
14871
|
select: FunctionApiBindingSelect;
|
|
14365
14872
|
};
|
|
14366
14873
|
};
|
|
14874
|
+
/** A `FunctionCapabilityBinding` edge in the connection. */
|
|
14875
|
+
export interface FunctionCapabilityBindingEdge {
|
|
14876
|
+
cursor?: string | null;
|
|
14877
|
+
/** The `FunctionCapabilityBinding` at the end of the edge. */
|
|
14878
|
+
node?: FunctionCapabilityBinding | null;
|
|
14879
|
+
}
|
|
14880
|
+
export type FunctionCapabilityBindingEdgeSelect = {
|
|
14881
|
+
cursor?: boolean;
|
|
14882
|
+
node?: {
|
|
14883
|
+
select: FunctionCapabilityBindingSelect;
|
|
14884
|
+
};
|
|
14885
|
+
};
|
|
14367
14886
|
/** A `FunctionDefinition` edge in the connection. */
|
|
14368
14887
|
export interface FunctionDefinitionEdge {
|
|
14369
14888
|
cursor?: string | null;
|
|
@@ -14628,6 +15147,18 @@ export type PlatformFunctionApiBindingEdgeSelect = {
|
|
|
14628
15147
|
select: PlatformFunctionApiBindingSelect;
|
|
14629
15148
|
};
|
|
14630
15149
|
};
|
|
15150
|
+
/** A `PlatformFunctionCapabilityBinding` edge in the connection. */
|
|
15151
|
+
export interface PlatformFunctionCapabilityBindingEdge {
|
|
15152
|
+
cursor?: string | null;
|
|
15153
|
+
/** The `PlatformFunctionCapabilityBinding` at the end of the edge. */
|
|
15154
|
+
node?: PlatformFunctionCapabilityBinding | null;
|
|
15155
|
+
}
|
|
15156
|
+
export type PlatformFunctionCapabilityBindingEdgeSelect = {
|
|
15157
|
+
cursor?: boolean;
|
|
15158
|
+
node?: {
|
|
15159
|
+
select: PlatformFunctionCapabilityBindingSelect;
|
|
15160
|
+
};
|
|
15161
|
+
};
|
|
14631
15162
|
/** A `PlatformFunctionDefinition` edge in the connection. */
|
|
14632
15163
|
export interface PlatformFunctionDefinitionEdge {
|
|
14633
15164
|
cursor?: string | null;
|