@constructive-io/react 1.11.1 → 1.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +5 -5
- 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
|
@@ -468,6 +468,8 @@ export interface CatalogModule {
|
|
|
468
468
|
apisTableName?: string | null;
|
|
469
469
|
appsTableId?: string | null;
|
|
470
470
|
appsTableName?: string | null;
|
|
471
|
+
bucketsTableId?: string | null;
|
|
472
|
+
bucketsTableName?: string | null;
|
|
471
473
|
databaseId?: string | null;
|
|
472
474
|
defaultPermissions?: string[] | null;
|
|
473
475
|
domainsTableId?: string | null;
|
|
@@ -490,8 +492,16 @@ export interface CatalogModule {
|
|
|
490
492
|
resourcesTableName?: string | null;
|
|
491
493
|
schemaId?: string | null;
|
|
492
494
|
scope?: string | null;
|
|
495
|
+
sitesAppLinksTableId?: string | null;
|
|
496
|
+
sitesAppLinksTableName?: string | null;
|
|
497
|
+
sitesDeepLinksTableId?: string | null;
|
|
498
|
+
sitesDeepLinksTableName?: string | null;
|
|
499
|
+
sitesErrorPagesTableId?: string | null;
|
|
500
|
+
sitesErrorPagesTableName?: string | null;
|
|
493
501
|
sitesTableId?: string | null;
|
|
494
502
|
sitesTableName?: string | null;
|
|
503
|
+
sitesWebConfigTableId?: string | null;
|
|
504
|
+
sitesWebConfigTableName?: string | null;
|
|
495
505
|
}
|
|
496
506
|
export interface ComputeLogModule {
|
|
497
507
|
actorFkTableId?: string | null;
|
|
@@ -1134,6 +1144,7 @@ export interface FunctionModule {
|
|
|
1134
1144
|
apiName?: string | null;
|
|
1135
1145
|
bindingsTableId?: string | null;
|
|
1136
1146
|
bindingsTableName?: string | null;
|
|
1147
|
+
capabilityBindingsTableId?: string | null;
|
|
1137
1148
|
databaseId?: string | null;
|
|
1138
1149
|
defaultPermissions?: string[] | null;
|
|
1139
1150
|
definitionsTableId?: string | null;
|
|
@@ -1563,6 +1574,27 @@ export interface NotificationsModule {
|
|
|
1563
1574
|
suppressionsTableId?: string | null;
|
|
1564
1575
|
userSettingsTableId?: string | null;
|
|
1565
1576
|
}
|
|
1577
|
+
export interface PagesModule {
|
|
1578
|
+
apiName?: string | null;
|
|
1579
|
+
createdAt?: string | null;
|
|
1580
|
+
databaseId?: string | null;
|
|
1581
|
+
entityTableId?: string | null;
|
|
1582
|
+
id: string;
|
|
1583
|
+
merkleStoreModuleId?: string | null;
|
|
1584
|
+
pagesTableId?: string | null;
|
|
1585
|
+
policies?: Record<string, unknown> | null;
|
|
1586
|
+
prefix?: string | null;
|
|
1587
|
+
privateApiName?: string | null;
|
|
1588
|
+
privateSchemaId?: string | null;
|
|
1589
|
+
privateSchemaName?: string | null;
|
|
1590
|
+
provisions?: Record<string, unknown> | null;
|
|
1591
|
+
publicSchemaId?: string | null;
|
|
1592
|
+
publicSchemaName?: string | null;
|
|
1593
|
+
scope?: string | null;
|
|
1594
|
+
siteSurfaceModuleId?: string | null;
|
|
1595
|
+
sitesTableId?: string | null;
|
|
1596
|
+
storeNamePrefix?: string | null;
|
|
1597
|
+
}
|
|
1566
1598
|
export interface PermissionsModule {
|
|
1567
1599
|
actorTableId?: string | null;
|
|
1568
1600
|
apiName?: string | null;
|
|
@@ -1986,16 +2018,26 @@ export interface SiteSurfaceModule {
|
|
|
1986
2018
|
policies?: Record<string, unknown> | null;
|
|
1987
2019
|
prefix?: string | null;
|
|
1988
2020
|
privateApiName?: string | null;
|
|
2021
|
+
privateSchemaId?: string | null;
|
|
2022
|
+
privateSchemaName?: string | null;
|
|
1989
2023
|
provisions?: Record<string, unknown> | null;
|
|
1990
2024
|
publicSchemaName?: string | null;
|
|
1991
2025
|
schemaId?: string | null;
|
|
1992
2026
|
scope?: string | null;
|
|
2027
|
+
siteAppLinksTableId?: string | null;
|
|
2028
|
+
siteAppLinksTableName?: string | null;
|
|
2029
|
+
siteDeepLinksTableId?: string | null;
|
|
2030
|
+
siteDeepLinksTableName?: string | null;
|
|
2031
|
+
siteErrorPagesTableId?: string | null;
|
|
2032
|
+
siteErrorPagesTableName?: string | null;
|
|
1993
2033
|
siteMetadataTableId?: string | null;
|
|
1994
2034
|
siteMetadataTableName?: string | null;
|
|
1995
2035
|
siteModulesTableId?: string | null;
|
|
1996
2036
|
siteModulesTableName?: string | null;
|
|
1997
2037
|
siteThemesTableId?: string | null;
|
|
1998
2038
|
siteThemesTableName?: string | null;
|
|
2039
|
+
siteWebConfigTableId?: string | null;
|
|
2040
|
+
siteWebConfigTableName?: string | null;
|
|
1999
2041
|
sitesTableId?: string | null;
|
|
2000
2042
|
sitesTableName?: string | null;
|
|
2001
2043
|
}
|
|
@@ -2027,6 +2069,7 @@ export interface StorageModule {
|
|
|
2027
2069
|
bucketsTableId?: string | null;
|
|
2028
2070
|
bucketsTableName?: string | null;
|
|
2029
2071
|
cacheTtlSeconds?: number | null;
|
|
2072
|
+
catalogModuleId?: string | null;
|
|
2030
2073
|
confirmUploadDelay?: string | null;
|
|
2031
2074
|
databaseId?: string | null;
|
|
2032
2075
|
defaultMaxFileSize?: string | null;
|
|
@@ -2249,6 +2292,11 @@ export interface BlueprintTemplateRelations {
|
|
|
2249
2292
|
blueprintsByTemplateId?: ConnectionResult<Blueprint>;
|
|
2250
2293
|
}
|
|
2251
2294
|
export interface CatalogModuleRelations {
|
|
2295
|
+
apiSurfaceModules?: ConnectionResult<ApiSurfaceModule>;
|
|
2296
|
+
appModules?: ConnectionResult<AppModule>;
|
|
2297
|
+
domainModules?: ConnectionResult<DomainModule>;
|
|
2298
|
+
routeModules?: ConnectionResult<RouteModule>;
|
|
2299
|
+
siteSurfaceModules?: ConnectionResult<SiteSurfaceModule>;
|
|
2252
2300
|
}
|
|
2253
2301
|
export interface ComputeLogModuleRelations {
|
|
2254
2302
|
}
|
|
@@ -2281,6 +2329,7 @@ export interface DevicesModuleRelations {
|
|
|
2281
2329
|
}
|
|
2282
2330
|
export interface DomainModuleRelations {
|
|
2283
2331
|
catalogModule?: CatalogModule | null;
|
|
2332
|
+
routeModules?: ConnectionResult<RouteModule>;
|
|
2284
2333
|
}
|
|
2285
2334
|
export interface EmailsModuleRelations {
|
|
2286
2335
|
}
|
|
@@ -2293,14 +2342,19 @@ export interface FunctionDeploymentModuleRelations {
|
|
|
2293
2342
|
namespaceModule?: NamespaceModule | null;
|
|
2294
2343
|
}
|
|
2295
2344
|
export interface FunctionInvocationModuleRelations {
|
|
2345
|
+
webhookModules?: ConnectionResult<WebhookModule>;
|
|
2296
2346
|
}
|
|
2297
2347
|
export interface FunctionModuleRelations {
|
|
2348
|
+
functionDeploymentModules?: ConnectionResult<FunctionDeploymentModule>;
|
|
2349
|
+
httpRouteModules?: ConnectionResult<HttpRouteModule>;
|
|
2350
|
+
webhookModules?: ConnectionResult<WebhookModule>;
|
|
2298
2351
|
}
|
|
2299
2352
|
export interface GraphExecutionModuleRelations {
|
|
2300
2353
|
graphModule?: GraphModule | null;
|
|
2301
2354
|
}
|
|
2302
2355
|
export interface GraphModuleRelations {
|
|
2303
2356
|
merkleStoreModule?: MerkleStoreModule | null;
|
|
2357
|
+
graphExecutionModules?: ConnectionResult<GraphExecutionModule>;
|
|
2304
2358
|
}
|
|
2305
2359
|
export interface HierarchyModuleRelations {
|
|
2306
2360
|
}
|
|
@@ -2318,6 +2372,7 @@ export interface InferenceLogModuleRelations {
|
|
|
2318
2372
|
export interface InfraConfigModuleRelations {
|
|
2319
2373
|
}
|
|
2320
2374
|
export interface InfraSecretsModuleRelations {
|
|
2375
|
+
webhookModules?: ConnectionResult<WebhookModule>;
|
|
2321
2376
|
}
|
|
2322
2377
|
export interface IntegrationProvidersModuleRelations {
|
|
2323
2378
|
}
|
|
@@ -2334,11 +2389,20 @@ export interface MembershipsModuleRelations {
|
|
|
2334
2389
|
export interface MerkleStoreModuleRelations {
|
|
2335
2390
|
dbPresetModules?: ConnectionResult<DbPresetModule>;
|
|
2336
2391
|
graphModules?: ConnectionResult<GraphModule>;
|
|
2392
|
+
pagesModules?: ConnectionResult<PagesModule>;
|
|
2393
|
+
resourceModules?: ConnectionResult<ResourceModule>;
|
|
2337
2394
|
}
|
|
2338
2395
|
export interface NamespaceModuleRelations {
|
|
2396
|
+
functionDeploymentModules?: ConnectionResult<FunctionDeploymentModule>;
|
|
2397
|
+
resourceModules?: ConnectionResult<ResourceModule>;
|
|
2398
|
+
webhookModules?: ConnectionResult<WebhookModule>;
|
|
2339
2399
|
}
|
|
2340
2400
|
export interface NotificationsModuleRelations {
|
|
2341
2401
|
}
|
|
2402
|
+
export interface PagesModuleRelations {
|
|
2403
|
+
merkleStoreModule?: MerkleStoreModule | null;
|
|
2404
|
+
siteSurfaceModule?: SiteSurfaceModule | null;
|
|
2405
|
+
}
|
|
2342
2406
|
export interface PermissionsModuleRelations {
|
|
2343
2407
|
}
|
|
2344
2408
|
export interface PhoneNumbersModuleRelations {
|
|
@@ -2360,6 +2424,7 @@ export interface RelationProvisionRelations {
|
|
|
2360
2424
|
export interface ResourceModuleRelations {
|
|
2361
2425
|
merkleStoreModule?: MerkleStoreModule | null;
|
|
2362
2426
|
namespaceModule?: NamespaceModule | null;
|
|
2427
|
+
httpRouteModules?: ConnectionResult<HttpRouteModule>;
|
|
2363
2428
|
}
|
|
2364
2429
|
export interface RlsModuleRelations {
|
|
2365
2430
|
}
|
|
@@ -2375,10 +2440,12 @@ export interface SessionsModuleRelations {
|
|
|
2375
2440
|
}
|
|
2376
2441
|
export interface SiteSurfaceModuleRelations {
|
|
2377
2442
|
catalogModule?: CatalogModule | null;
|
|
2443
|
+
pagesModules?: ConnectionResult<PagesModule>;
|
|
2378
2444
|
}
|
|
2379
2445
|
export interface StorageLogModuleRelations {
|
|
2380
2446
|
}
|
|
2381
2447
|
export interface StorageModuleRelations {
|
|
2448
|
+
httpRouteModules?: ConnectionResult<HttpRouteModule>;
|
|
2382
2449
|
}
|
|
2383
2450
|
export interface TransferLogModuleRelations {
|
|
2384
2451
|
}
|
|
@@ -2450,6 +2517,7 @@ export type MembershipsModuleWithRelations = MembershipsModule & MembershipsModu
|
|
|
2450
2517
|
export type MerkleStoreModuleWithRelations = MerkleStoreModule & MerkleStoreModuleRelations;
|
|
2451
2518
|
export type NamespaceModuleWithRelations = NamespaceModule & NamespaceModuleRelations;
|
|
2452
2519
|
export type NotificationsModuleWithRelations = NotificationsModule & NotificationsModuleRelations;
|
|
2520
|
+
export type PagesModuleWithRelations = PagesModule & PagesModuleRelations;
|
|
2453
2521
|
export type PermissionsModuleWithRelations = PermissionsModule & PermissionsModuleRelations;
|
|
2454
2522
|
export type PhoneNumbersModuleWithRelations = PhoneNumbersModule & PhoneNumbersModuleRelations;
|
|
2455
2523
|
export type PlansModuleWithRelations = PlansModule & PlansModuleRelations;
|
|
@@ -2703,6 +2771,8 @@ export type CatalogModuleSelect = {
|
|
|
2703
2771
|
apisTableName?: boolean;
|
|
2704
2772
|
appsTableId?: boolean;
|
|
2705
2773
|
appsTableName?: boolean;
|
|
2774
|
+
bucketsTableId?: boolean;
|
|
2775
|
+
bucketsTableName?: boolean;
|
|
2706
2776
|
databaseId?: boolean;
|
|
2707
2777
|
defaultPermissions?: boolean;
|
|
2708
2778
|
domainsTableId?: boolean;
|
|
@@ -2725,8 +2795,46 @@ export type CatalogModuleSelect = {
|
|
|
2725
2795
|
resourcesTableName?: boolean;
|
|
2726
2796
|
schemaId?: boolean;
|
|
2727
2797
|
scope?: boolean;
|
|
2798
|
+
sitesAppLinksTableId?: boolean;
|
|
2799
|
+
sitesAppLinksTableName?: boolean;
|
|
2800
|
+
sitesDeepLinksTableId?: boolean;
|
|
2801
|
+
sitesDeepLinksTableName?: boolean;
|
|
2802
|
+
sitesErrorPagesTableId?: boolean;
|
|
2803
|
+
sitesErrorPagesTableName?: boolean;
|
|
2728
2804
|
sitesTableId?: boolean;
|
|
2729
2805
|
sitesTableName?: boolean;
|
|
2806
|
+
sitesWebConfigTableId?: boolean;
|
|
2807
|
+
sitesWebConfigTableName?: boolean;
|
|
2808
|
+
apiSurfaceModules?: {
|
|
2809
|
+
select: ApiSurfaceModuleSelect;
|
|
2810
|
+
first?: number;
|
|
2811
|
+
filter?: ApiSurfaceModuleFilter;
|
|
2812
|
+
orderBy?: ApiSurfaceModuleOrderBy[];
|
|
2813
|
+
};
|
|
2814
|
+
appModules?: {
|
|
2815
|
+
select: AppModuleSelect;
|
|
2816
|
+
first?: number;
|
|
2817
|
+
filter?: AppModuleFilter;
|
|
2818
|
+
orderBy?: AppModuleOrderBy[];
|
|
2819
|
+
};
|
|
2820
|
+
domainModules?: {
|
|
2821
|
+
select: DomainModuleSelect;
|
|
2822
|
+
first?: number;
|
|
2823
|
+
filter?: DomainModuleFilter;
|
|
2824
|
+
orderBy?: DomainModuleOrderBy[];
|
|
2825
|
+
};
|
|
2826
|
+
routeModules?: {
|
|
2827
|
+
select: RouteModuleSelect;
|
|
2828
|
+
first?: number;
|
|
2829
|
+
filter?: RouteModuleFilter;
|
|
2830
|
+
orderBy?: RouteModuleOrderBy[];
|
|
2831
|
+
};
|
|
2832
|
+
siteSurfaceModules?: {
|
|
2833
|
+
select: SiteSurfaceModuleSelect;
|
|
2834
|
+
first?: number;
|
|
2835
|
+
filter?: SiteSurfaceModuleFilter;
|
|
2836
|
+
orderBy?: SiteSurfaceModuleOrderBy[];
|
|
2837
|
+
};
|
|
2730
2838
|
};
|
|
2731
2839
|
export type ComputeLogModuleSelect = {
|
|
2732
2840
|
actorFkTableId?: boolean;
|
|
@@ -2976,6 +3084,12 @@ export type DomainModuleSelect = {
|
|
|
2976
3084
|
catalogModule?: {
|
|
2977
3085
|
select: CatalogModuleSelect;
|
|
2978
3086
|
};
|
|
3087
|
+
routeModules?: {
|
|
3088
|
+
select: RouteModuleSelect;
|
|
3089
|
+
first?: number;
|
|
3090
|
+
filter?: RouteModuleFilter;
|
|
3091
|
+
orderBy?: RouteModuleOrderBy[];
|
|
3092
|
+
};
|
|
2979
3093
|
};
|
|
2980
3094
|
export type EmailsModuleSelect = {
|
|
2981
3095
|
apiName?: boolean;
|
|
@@ -3126,11 +3240,18 @@ export type FunctionInvocationModuleSelect = {
|
|
|
3126
3240
|
publicSchemaName?: boolean;
|
|
3127
3241
|
schemaId?: boolean;
|
|
3128
3242
|
scope?: boolean;
|
|
3243
|
+
webhookModules?: {
|
|
3244
|
+
select: WebhookModuleSelect;
|
|
3245
|
+
first?: number;
|
|
3246
|
+
filter?: WebhookModuleFilter;
|
|
3247
|
+
orderBy?: WebhookModuleOrderBy[];
|
|
3248
|
+
};
|
|
3129
3249
|
};
|
|
3130
3250
|
export type FunctionModuleSelect = {
|
|
3131
3251
|
apiName?: boolean;
|
|
3132
3252
|
bindingsTableId?: boolean;
|
|
3133
3253
|
bindingsTableName?: boolean;
|
|
3254
|
+
capabilityBindingsTableId?: boolean;
|
|
3134
3255
|
databaseId?: boolean;
|
|
3135
3256
|
defaultPermissions?: boolean;
|
|
3136
3257
|
definitionsTableId?: boolean;
|
|
@@ -3149,6 +3270,24 @@ export type FunctionModuleSelect = {
|
|
|
3149
3270
|
schedulesTableId?: boolean;
|
|
3150
3271
|
schemaId?: boolean;
|
|
3151
3272
|
scope?: boolean;
|
|
3273
|
+
functionDeploymentModules?: {
|
|
3274
|
+
select: FunctionDeploymentModuleSelect;
|
|
3275
|
+
first?: number;
|
|
3276
|
+
filter?: FunctionDeploymentModuleFilter;
|
|
3277
|
+
orderBy?: FunctionDeploymentModuleOrderBy[];
|
|
3278
|
+
};
|
|
3279
|
+
httpRouteModules?: {
|
|
3280
|
+
select: HttpRouteModuleSelect;
|
|
3281
|
+
first?: number;
|
|
3282
|
+
filter?: HttpRouteModuleFilter;
|
|
3283
|
+
orderBy?: HttpRouteModuleOrderBy[];
|
|
3284
|
+
};
|
|
3285
|
+
webhookModules?: {
|
|
3286
|
+
select: WebhookModuleSelect;
|
|
3287
|
+
first?: number;
|
|
3288
|
+
filter?: WebhookModuleFilter;
|
|
3289
|
+
orderBy?: WebhookModuleOrderBy[];
|
|
3290
|
+
};
|
|
3152
3291
|
};
|
|
3153
3292
|
export type GraphExecutionModuleSelect = {
|
|
3154
3293
|
apiName?: boolean;
|
|
@@ -3200,6 +3339,12 @@ export type GraphModuleSelect = {
|
|
|
3200
3339
|
merkleStoreModule?: {
|
|
3201
3340
|
select: MerkleStoreModuleSelect;
|
|
3202
3341
|
};
|
|
3342
|
+
graphExecutionModules?: {
|
|
3343
|
+
select: GraphExecutionModuleSelect;
|
|
3344
|
+
first?: number;
|
|
3345
|
+
filter?: GraphExecutionModuleFilter;
|
|
3346
|
+
orderBy?: GraphExecutionModuleOrderBy[];
|
|
3347
|
+
};
|
|
3203
3348
|
};
|
|
3204
3349
|
export type HierarchyModuleSelect = {
|
|
3205
3350
|
chartEdgeGrantsTableId?: boolean;
|
|
@@ -3340,6 +3485,12 @@ export type InfraSecretsModuleSelect = {
|
|
|
3340
3485
|
scope?: boolean;
|
|
3341
3486
|
secretsTableId?: boolean;
|
|
3342
3487
|
secretsTableName?: boolean;
|
|
3488
|
+
webhookModules?: {
|
|
3489
|
+
select: WebhookModuleSelect;
|
|
3490
|
+
first?: number;
|
|
3491
|
+
filter?: WebhookModuleFilter;
|
|
3492
|
+
orderBy?: WebhookModuleOrderBy[];
|
|
3493
|
+
};
|
|
3343
3494
|
};
|
|
3344
3495
|
export type IntegrationProvidersModuleSelect = {
|
|
3345
3496
|
apiName?: boolean;
|
|
@@ -3517,6 +3668,18 @@ export type MerkleStoreModuleSelect = {
|
|
|
3517
3668
|
filter?: GraphModuleFilter;
|
|
3518
3669
|
orderBy?: GraphModuleOrderBy[];
|
|
3519
3670
|
};
|
|
3671
|
+
pagesModules?: {
|
|
3672
|
+
select: PagesModuleSelect;
|
|
3673
|
+
first?: number;
|
|
3674
|
+
filter?: PagesModuleFilter;
|
|
3675
|
+
orderBy?: PagesModuleOrderBy[];
|
|
3676
|
+
};
|
|
3677
|
+
resourceModules?: {
|
|
3678
|
+
select: ResourceModuleSelect;
|
|
3679
|
+
first?: number;
|
|
3680
|
+
filter?: ResourceModuleFilter;
|
|
3681
|
+
orderBy?: ResourceModuleOrderBy[];
|
|
3682
|
+
};
|
|
3520
3683
|
};
|
|
3521
3684
|
export type NamespaceModuleSelect = {
|
|
3522
3685
|
apiName?: boolean;
|
|
@@ -3538,6 +3701,24 @@ export type NamespaceModuleSelect = {
|
|
|
3538
3701
|
publicSchemaName?: boolean;
|
|
3539
3702
|
schemaId?: boolean;
|
|
3540
3703
|
scope?: boolean;
|
|
3704
|
+
functionDeploymentModules?: {
|
|
3705
|
+
select: FunctionDeploymentModuleSelect;
|
|
3706
|
+
first?: number;
|
|
3707
|
+
filter?: FunctionDeploymentModuleFilter;
|
|
3708
|
+
orderBy?: FunctionDeploymentModuleOrderBy[];
|
|
3709
|
+
};
|
|
3710
|
+
resourceModules?: {
|
|
3711
|
+
select: ResourceModuleSelect;
|
|
3712
|
+
first?: number;
|
|
3713
|
+
filter?: ResourceModuleFilter;
|
|
3714
|
+
orderBy?: ResourceModuleOrderBy[];
|
|
3715
|
+
};
|
|
3716
|
+
webhookModules?: {
|
|
3717
|
+
select: WebhookModuleSelect;
|
|
3718
|
+
first?: number;
|
|
3719
|
+
filter?: WebhookModuleFilter;
|
|
3720
|
+
orderBy?: WebhookModuleOrderBy[];
|
|
3721
|
+
};
|
|
3541
3722
|
};
|
|
3542
3723
|
export type NotificationsModuleSelect = {
|
|
3543
3724
|
apiName?: boolean;
|
|
@@ -3565,6 +3746,33 @@ export type NotificationsModuleSelect = {
|
|
|
3565
3746
|
suppressionsTableId?: boolean;
|
|
3566
3747
|
userSettingsTableId?: boolean;
|
|
3567
3748
|
};
|
|
3749
|
+
export type PagesModuleSelect = {
|
|
3750
|
+
apiName?: boolean;
|
|
3751
|
+
createdAt?: boolean;
|
|
3752
|
+
databaseId?: boolean;
|
|
3753
|
+
entityTableId?: boolean;
|
|
3754
|
+
id?: boolean;
|
|
3755
|
+
merkleStoreModuleId?: boolean;
|
|
3756
|
+
pagesTableId?: boolean;
|
|
3757
|
+
policies?: boolean;
|
|
3758
|
+
prefix?: boolean;
|
|
3759
|
+
privateApiName?: boolean;
|
|
3760
|
+
privateSchemaId?: boolean;
|
|
3761
|
+
privateSchemaName?: boolean;
|
|
3762
|
+
provisions?: boolean;
|
|
3763
|
+
publicSchemaId?: boolean;
|
|
3764
|
+
publicSchemaName?: boolean;
|
|
3765
|
+
scope?: boolean;
|
|
3766
|
+
siteSurfaceModuleId?: boolean;
|
|
3767
|
+
sitesTableId?: boolean;
|
|
3768
|
+
storeNamePrefix?: boolean;
|
|
3769
|
+
merkleStoreModule?: {
|
|
3770
|
+
select: MerkleStoreModuleSelect;
|
|
3771
|
+
};
|
|
3772
|
+
siteSurfaceModule?: {
|
|
3773
|
+
select: SiteSurfaceModuleSelect;
|
|
3774
|
+
};
|
|
3775
|
+
};
|
|
3568
3776
|
export type PermissionsModuleSelect = {
|
|
3569
3777
|
actorTableId?: boolean;
|
|
3570
3778
|
apiName?: boolean;
|
|
@@ -3785,6 +3993,12 @@ export type ResourceModuleSelect = {
|
|
|
3785
3993
|
namespaceModule?: {
|
|
3786
3994
|
select: NamespaceModuleSelect;
|
|
3787
3995
|
};
|
|
3996
|
+
httpRouteModules?: {
|
|
3997
|
+
select: HttpRouteModuleSelect;
|
|
3998
|
+
first?: number;
|
|
3999
|
+
filter?: HttpRouteModuleFilter;
|
|
4000
|
+
orderBy?: HttpRouteModuleOrderBy[];
|
|
4001
|
+
};
|
|
3788
4002
|
};
|
|
3789
4003
|
export type RlsModuleSelect = {
|
|
3790
4004
|
apiName?: boolean;
|
|
@@ -3878,21 +4092,37 @@ export type SiteSurfaceModuleSelect = {
|
|
|
3878
4092
|
policies?: boolean;
|
|
3879
4093
|
prefix?: boolean;
|
|
3880
4094
|
privateApiName?: boolean;
|
|
4095
|
+
privateSchemaId?: boolean;
|
|
4096
|
+
privateSchemaName?: boolean;
|
|
3881
4097
|
provisions?: boolean;
|
|
3882
4098
|
publicSchemaName?: boolean;
|
|
3883
4099
|
schemaId?: boolean;
|
|
3884
4100
|
scope?: boolean;
|
|
4101
|
+
siteAppLinksTableId?: boolean;
|
|
4102
|
+
siteAppLinksTableName?: boolean;
|
|
4103
|
+
siteDeepLinksTableId?: boolean;
|
|
4104
|
+
siteDeepLinksTableName?: boolean;
|
|
4105
|
+
siteErrorPagesTableId?: boolean;
|
|
4106
|
+
siteErrorPagesTableName?: boolean;
|
|
3885
4107
|
siteMetadataTableId?: boolean;
|
|
3886
4108
|
siteMetadataTableName?: boolean;
|
|
3887
4109
|
siteModulesTableId?: boolean;
|
|
3888
4110
|
siteModulesTableName?: boolean;
|
|
3889
4111
|
siteThemesTableId?: boolean;
|
|
3890
4112
|
siteThemesTableName?: boolean;
|
|
4113
|
+
siteWebConfigTableId?: boolean;
|
|
4114
|
+
siteWebConfigTableName?: boolean;
|
|
3891
4115
|
sitesTableId?: boolean;
|
|
3892
4116
|
sitesTableName?: boolean;
|
|
3893
4117
|
catalogModule?: {
|
|
3894
4118
|
select: CatalogModuleSelect;
|
|
3895
4119
|
};
|
|
4120
|
+
pagesModules?: {
|
|
4121
|
+
select: PagesModuleSelect;
|
|
4122
|
+
first?: number;
|
|
4123
|
+
filter?: PagesModuleFilter;
|
|
4124
|
+
orderBy?: PagesModuleOrderBy[];
|
|
4125
|
+
};
|
|
3896
4126
|
};
|
|
3897
4127
|
export type StorageLogModuleSelect = {
|
|
3898
4128
|
actorFkTableId?: boolean;
|
|
@@ -3922,6 +4152,7 @@ export type StorageModuleSelect = {
|
|
|
3922
4152
|
bucketsTableId?: boolean;
|
|
3923
4153
|
bucketsTableName?: boolean;
|
|
3924
4154
|
cacheTtlSeconds?: boolean;
|
|
4155
|
+
catalogModuleId?: boolean;
|
|
3925
4156
|
confirmUploadDelay?: boolean;
|
|
3926
4157
|
databaseId?: boolean;
|
|
3927
4158
|
defaultMaxFileSize?: boolean;
|
|
@@ -3957,6 +4188,12 @@ export type StorageModuleSelect = {
|
|
|
3957
4188
|
schemaId?: boolean;
|
|
3958
4189
|
scope?: boolean;
|
|
3959
4190
|
uploadUrlExpirySeconds?: boolean;
|
|
4191
|
+
httpRouteModules?: {
|
|
4192
|
+
select: HttpRouteModuleSelect;
|
|
4193
|
+
first?: number;
|
|
4194
|
+
filter?: HttpRouteModuleFilter;
|
|
4195
|
+
orderBy?: HttpRouteModuleOrderBy[];
|
|
4196
|
+
};
|
|
3960
4197
|
};
|
|
3961
4198
|
export type TransferLogModuleSelect = {
|
|
3962
4199
|
actorFkTableId?: boolean;
|
|
@@ -4554,18 +4791,34 @@ export interface CatalogModuleFilter {
|
|
|
4554
4791
|
and?: CatalogModuleFilter[];
|
|
4555
4792
|
/** Filter by the object’s `apiName` field. */
|
|
4556
4793
|
apiName?: StringFilter;
|
|
4794
|
+
/** Filter by the object’s `apiSurfaceModules` relation. */
|
|
4795
|
+
apiSurfaceModules?: CatalogModuleToManyApiSurfaceModuleFilter;
|
|
4796
|
+
/** `apiSurfaceModules` exist. */
|
|
4797
|
+
apiSurfaceModulesExist?: boolean;
|
|
4557
4798
|
/** Filter by the object’s `apisTableId` field. */
|
|
4558
4799
|
apisTableId?: UUIDFilter;
|
|
4559
4800
|
/** Filter by the object’s `apisTableName` field. */
|
|
4560
4801
|
apisTableName?: StringFilter;
|
|
4802
|
+
/** Filter by the object’s `appModules` relation. */
|
|
4803
|
+
appModules?: CatalogModuleToManyAppModuleFilter;
|
|
4804
|
+
/** `appModules` exist. */
|
|
4805
|
+
appModulesExist?: boolean;
|
|
4561
4806
|
/** Filter by the object’s `appsTableId` field. */
|
|
4562
4807
|
appsTableId?: UUIDFilter;
|
|
4563
4808
|
/** Filter by the object’s `appsTableName` field. */
|
|
4564
4809
|
appsTableName?: StringFilter;
|
|
4810
|
+
/** Filter by the object’s `bucketsTableId` field. */
|
|
4811
|
+
bucketsTableId?: UUIDFilter;
|
|
4812
|
+
/** Filter by the object’s `bucketsTableName` field. */
|
|
4813
|
+
bucketsTableName?: StringFilter;
|
|
4565
4814
|
/** Filter by the object’s `databaseId` field. */
|
|
4566
4815
|
databaseId?: UUIDFilter;
|
|
4567
4816
|
/** Filter by the object’s `defaultPermissions` field. */
|
|
4568
4817
|
defaultPermissions?: StringListFilter;
|
|
4818
|
+
/** Filter by the object’s `domainModules` relation. */
|
|
4819
|
+
domainModules?: CatalogModuleToManyDomainModuleFilter;
|
|
4820
|
+
/** `domainModules` exist. */
|
|
4821
|
+
domainModulesExist?: boolean;
|
|
4569
4822
|
/** Filter by the object’s `domainsTableId` field. */
|
|
4570
4823
|
domainsTableId?: UUIDFilter;
|
|
4571
4824
|
/** Filter by the object’s `domainsTableName` field. */
|
|
@@ -4606,14 +4859,38 @@ export interface CatalogModuleFilter {
|
|
|
4606
4859
|
resourcesTableId?: UUIDFilter;
|
|
4607
4860
|
/** Filter by the object’s `resourcesTableName` field. */
|
|
4608
4861
|
resourcesTableName?: StringFilter;
|
|
4862
|
+
/** Filter by the object’s `routeModules` relation. */
|
|
4863
|
+
routeModules?: CatalogModuleToManyRouteModuleFilter;
|
|
4864
|
+
/** `routeModules` exist. */
|
|
4865
|
+
routeModulesExist?: boolean;
|
|
4609
4866
|
/** Filter by the object’s `schemaId` field. */
|
|
4610
4867
|
schemaId?: UUIDFilter;
|
|
4611
4868
|
/** Filter by the object’s `scope` field. */
|
|
4612
4869
|
scope?: StringFilter;
|
|
4870
|
+
/** Filter by the object’s `siteSurfaceModules` relation. */
|
|
4871
|
+
siteSurfaceModules?: CatalogModuleToManySiteSurfaceModuleFilter;
|
|
4872
|
+
/** `siteSurfaceModules` exist. */
|
|
4873
|
+
siteSurfaceModulesExist?: boolean;
|
|
4874
|
+
/** Filter by the object’s `sitesAppLinksTableId` field. */
|
|
4875
|
+
sitesAppLinksTableId?: UUIDFilter;
|
|
4876
|
+
/** Filter by the object’s `sitesAppLinksTableName` field. */
|
|
4877
|
+
sitesAppLinksTableName?: StringFilter;
|
|
4878
|
+
/** Filter by the object’s `sitesDeepLinksTableId` field. */
|
|
4879
|
+
sitesDeepLinksTableId?: UUIDFilter;
|
|
4880
|
+
/** Filter by the object’s `sitesDeepLinksTableName` field. */
|
|
4881
|
+
sitesDeepLinksTableName?: StringFilter;
|
|
4882
|
+
/** Filter by the object’s `sitesErrorPagesTableId` field. */
|
|
4883
|
+
sitesErrorPagesTableId?: UUIDFilter;
|
|
4884
|
+
/** Filter by the object’s `sitesErrorPagesTableName` field. */
|
|
4885
|
+
sitesErrorPagesTableName?: StringFilter;
|
|
4613
4886
|
/** Filter by the object’s `sitesTableId` field. */
|
|
4614
4887
|
sitesTableId?: UUIDFilter;
|
|
4615
4888
|
/** Filter by the object’s `sitesTableName` field. */
|
|
4616
4889
|
sitesTableName?: StringFilter;
|
|
4890
|
+
/** Filter by the object’s `sitesWebConfigTableId` field. */
|
|
4891
|
+
sitesWebConfigTableId?: UUIDFilter;
|
|
4892
|
+
/** Filter by the object’s `sitesWebConfigTableName` field. */
|
|
4893
|
+
sitesWebConfigTableName?: StringFilter;
|
|
4617
4894
|
}
|
|
4618
4895
|
export interface ComputeLogModuleFilter {
|
|
4619
4896
|
/** Filter by the object’s `actorFkTableId` field. */
|
|
@@ -5162,6 +5439,10 @@ export interface DomainModuleFilter {
|
|
|
5162
5439
|
provisions?: JSONFilter;
|
|
5163
5440
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
5164
5441
|
publicSchemaName?: StringFilter;
|
|
5442
|
+
/** Filter by the object’s `routeModules` relation. */
|
|
5443
|
+
routeModules?: DomainModuleToManyRouteModuleFilter;
|
|
5444
|
+
/** `routeModules` exist. */
|
|
5445
|
+
routeModulesExist?: boolean;
|
|
5165
5446
|
/** Filter by the object’s `schemaId` field. */
|
|
5166
5447
|
schemaId?: UUIDFilter;
|
|
5167
5448
|
/** Filter by the object’s `scope` field. */
|
|
@@ -5482,6 +5763,10 @@ export interface FunctionInvocationModuleFilter {
|
|
|
5482
5763
|
schemaId?: UUIDFilter;
|
|
5483
5764
|
/** Filter by the object’s `scope` field. */
|
|
5484
5765
|
scope?: StringFilter;
|
|
5766
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
5767
|
+
webhookModules?: FunctionInvocationModuleToManyWebhookModuleFilter;
|
|
5768
|
+
/** `webhookModules` exist. */
|
|
5769
|
+
webhookModulesExist?: boolean;
|
|
5485
5770
|
}
|
|
5486
5771
|
export interface FunctionModuleFilter {
|
|
5487
5772
|
/** Checks for all expressions in this list. */
|
|
@@ -5492,6 +5777,8 @@ export interface FunctionModuleFilter {
|
|
|
5492
5777
|
bindingsTableId?: UUIDFilter;
|
|
5493
5778
|
/** Filter by the object’s `bindingsTableName` field. */
|
|
5494
5779
|
bindingsTableName?: StringFilter;
|
|
5780
|
+
/** Filter by the object’s `capabilityBindingsTableId` field. */
|
|
5781
|
+
capabilityBindingsTableId?: UUIDFilter;
|
|
5495
5782
|
/** Filter by the object’s `databaseId` field. */
|
|
5496
5783
|
databaseId?: UUIDFilter;
|
|
5497
5784
|
/** Filter by the object’s `defaultPermissions` field. */
|
|
@@ -5504,8 +5791,16 @@ export interface FunctionModuleFilter {
|
|
|
5504
5791
|
entityField?: StringFilter;
|
|
5505
5792
|
/** Filter by the object’s `entityTableId` field. */
|
|
5506
5793
|
entityTableId?: UUIDFilter;
|
|
5794
|
+
/** Filter by the object’s `functionDeploymentModules` relation. */
|
|
5795
|
+
functionDeploymentModules?: FunctionModuleToManyFunctionDeploymentModuleFilter;
|
|
5796
|
+
/** `functionDeploymentModules` exist. */
|
|
5797
|
+
functionDeploymentModulesExist?: boolean;
|
|
5507
5798
|
/** Filter by the object’s `hasCron` field. */
|
|
5508
5799
|
hasCron?: BooleanFilter;
|
|
5800
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
5801
|
+
httpRouteModules?: FunctionModuleToManyHttpRouteModuleFilter;
|
|
5802
|
+
/** `httpRouteModules` exist. */
|
|
5803
|
+
httpRouteModulesExist?: boolean;
|
|
5509
5804
|
/** Filter by the object’s `id` field. */
|
|
5510
5805
|
id?: UUIDFilter;
|
|
5511
5806
|
/** Negates the expression. */
|
|
@@ -5532,6 +5827,10 @@ export interface FunctionModuleFilter {
|
|
|
5532
5827
|
schemaId?: UUIDFilter;
|
|
5533
5828
|
/** Filter by the object’s `scope` field. */
|
|
5534
5829
|
scope?: StringFilter;
|
|
5830
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
5831
|
+
webhookModules?: FunctionModuleToManyWebhookModuleFilter;
|
|
5832
|
+
/** `webhookModules` exist. */
|
|
5833
|
+
webhookModulesExist?: boolean;
|
|
5535
5834
|
}
|
|
5536
5835
|
export interface GraphExecutionModuleFilter {
|
|
5537
5836
|
/** Checks for all expressions in this list. */
|
|
@@ -5604,6 +5903,10 @@ export interface GraphModuleFilter {
|
|
|
5604
5903
|
entityField?: StringFilter;
|
|
5605
5904
|
/** Filter by the object’s `entityTableId` field. */
|
|
5606
5905
|
entityTableId?: UUIDFilter;
|
|
5906
|
+
/** Filter by the object’s `graphExecutionModules` relation. */
|
|
5907
|
+
graphExecutionModules?: GraphModuleToManyGraphExecutionModuleFilter;
|
|
5908
|
+
/** `graphExecutionModules` exist. */
|
|
5909
|
+
graphExecutionModulesExist?: boolean;
|
|
5607
5910
|
/** Filter by the object’s `graphsTableId` field. */
|
|
5608
5911
|
graphsTableId?: UUIDFilter;
|
|
5609
5912
|
/** Filter by the object’s `id` field. */
|
|
@@ -5936,6 +6239,10 @@ export interface InfraSecretsModuleFilter {
|
|
|
5936
6239
|
secretsTableId?: UUIDFilter;
|
|
5937
6240
|
/** Filter by the object’s `secretsTableName` field. */
|
|
5938
6241
|
secretsTableName?: StringFilter;
|
|
6242
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
6243
|
+
webhookModules?: InfraSecretsModuleToManyWebhookModuleFilter;
|
|
6244
|
+
/** `webhookModules` exist. */
|
|
6245
|
+
webhookModulesExist?: boolean;
|
|
5939
6246
|
}
|
|
5940
6247
|
export interface IntegrationProvidersModuleFilter {
|
|
5941
6248
|
/** Checks for all expressions in this list. */
|
|
@@ -6282,6 +6589,10 @@ export interface MerkleStoreModuleFilter {
|
|
|
6282
6589
|
objectTableId?: UUIDFilter;
|
|
6283
6590
|
/** Checks for any expressions in this list. */
|
|
6284
6591
|
or?: MerkleStoreModuleFilter[];
|
|
6592
|
+
/** Filter by the object’s `pagesModules` relation. */
|
|
6593
|
+
pagesModules?: MerkleStoreModuleToManyPagesModuleFilter;
|
|
6594
|
+
/** `pagesModules` exist. */
|
|
6595
|
+
pagesModulesExist?: boolean;
|
|
6285
6596
|
/** Filter by the object’s `permissionKey` field. */
|
|
6286
6597
|
permissionKey?: StringFilter;
|
|
6287
6598
|
/** Filter by the object’s `prefix` field. */
|
|
@@ -6296,6 +6607,10 @@ export interface MerkleStoreModuleFilter {
|
|
|
6296
6607
|
publicSchemaName?: StringFilter;
|
|
6297
6608
|
/** Filter by the object’s `refTableId` field. */
|
|
6298
6609
|
refTableId?: UUIDFilter;
|
|
6610
|
+
/** Filter by the object’s `resourceModules` relation. */
|
|
6611
|
+
resourceModules?: MerkleStoreModuleToManyResourceModuleFilter;
|
|
6612
|
+
/** `resourceModules` exist. */
|
|
6613
|
+
resourceModulesExist?: boolean;
|
|
6299
6614
|
/** Filter by the object’s `schemaId` field. */
|
|
6300
6615
|
schemaId?: UUIDFilter;
|
|
6301
6616
|
/** Filter by the object’s `scope` field. */
|
|
@@ -6316,6 +6631,10 @@ export interface NamespaceModuleFilter {
|
|
|
6316
6631
|
entityField?: StringFilter;
|
|
6317
6632
|
/** Filter by the object’s `entityTableId` field. */
|
|
6318
6633
|
entityTableId?: UUIDFilter;
|
|
6634
|
+
/** Filter by the object’s `functionDeploymentModules` relation. */
|
|
6635
|
+
functionDeploymentModules?: NamespaceModuleToManyFunctionDeploymentModuleFilter;
|
|
6636
|
+
/** `functionDeploymentModules` exist. */
|
|
6637
|
+
functionDeploymentModulesExist?: boolean;
|
|
6319
6638
|
/** Filter by the object’s `id` field. */
|
|
6320
6639
|
id?: UUIDFilter;
|
|
6321
6640
|
/** Filter by the object’s `namespaceEventsTableId` field. */
|
|
@@ -6344,10 +6663,18 @@ export interface NamespaceModuleFilter {
|
|
|
6344
6663
|
provisions?: JSONFilter;
|
|
6345
6664
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
6346
6665
|
publicSchemaName?: StringFilter;
|
|
6666
|
+
/** Filter by the object’s `resourceModules` relation. */
|
|
6667
|
+
resourceModules?: NamespaceModuleToManyResourceModuleFilter;
|
|
6668
|
+
/** `resourceModules` exist. */
|
|
6669
|
+
resourceModulesExist?: boolean;
|
|
6347
6670
|
/** Filter by the object’s `schemaId` field. */
|
|
6348
6671
|
schemaId?: UUIDFilter;
|
|
6349
6672
|
/** Filter by the object’s `scope` field. */
|
|
6350
6673
|
scope?: StringFilter;
|
|
6674
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
6675
|
+
webhookModules?: NamespaceModuleToManyWebhookModuleFilter;
|
|
6676
|
+
/** `webhookModules` exist. */
|
|
6677
|
+
webhookModulesExist?: boolean;
|
|
6351
6678
|
}
|
|
6352
6679
|
export interface NotificationsModuleFilter {
|
|
6353
6680
|
/** Checks for all expressions in this list. */
|
|
@@ -6405,6 +6732,58 @@ export interface NotificationsModuleFilter {
|
|
|
6405
6732
|
/** Filter by the object’s `userSettingsTableId` field. */
|
|
6406
6733
|
userSettingsTableId?: UUIDFilter;
|
|
6407
6734
|
}
|
|
6735
|
+
export interface PagesModuleFilter {
|
|
6736
|
+
/** Checks for all expressions in this list. */
|
|
6737
|
+
and?: PagesModuleFilter[];
|
|
6738
|
+
/** Filter by the object’s `apiName` field. */
|
|
6739
|
+
apiName?: StringFilter;
|
|
6740
|
+
/** Filter by the object’s `createdAt` field. */
|
|
6741
|
+
createdAt?: DatetimeFilter;
|
|
6742
|
+
/** Filter by the object’s `databaseId` field. */
|
|
6743
|
+
databaseId?: UUIDFilter;
|
|
6744
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
6745
|
+
entityTableId?: UUIDFilter;
|
|
6746
|
+
/** Filter by the object’s `id` field. */
|
|
6747
|
+
id?: UUIDFilter;
|
|
6748
|
+
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
6749
|
+
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
6750
|
+
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
6751
|
+
merkleStoreModuleId?: UUIDFilter;
|
|
6752
|
+
/** Negates the expression. */
|
|
6753
|
+
not?: PagesModuleFilter;
|
|
6754
|
+
/** Checks for any expressions in this list. */
|
|
6755
|
+
or?: PagesModuleFilter[];
|
|
6756
|
+
/** Filter by the object’s `pagesTableId` field. */
|
|
6757
|
+
pagesTableId?: UUIDFilter;
|
|
6758
|
+
/** Filter by the object’s `policies` field. */
|
|
6759
|
+
policies?: JSONFilter;
|
|
6760
|
+
/** Filter by the object’s `prefix` field. */
|
|
6761
|
+
prefix?: StringFilter;
|
|
6762
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
6763
|
+
privateApiName?: StringFilter;
|
|
6764
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
6765
|
+
privateSchemaId?: UUIDFilter;
|
|
6766
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
6767
|
+
privateSchemaName?: StringFilter;
|
|
6768
|
+
/** Filter by the object’s `provisions` field. */
|
|
6769
|
+
provisions?: JSONFilter;
|
|
6770
|
+
/** Filter by the object’s `publicSchemaId` field. */
|
|
6771
|
+
publicSchemaId?: UUIDFilter;
|
|
6772
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
6773
|
+
publicSchemaName?: StringFilter;
|
|
6774
|
+
/** Filter by the object’s `scope` field. */
|
|
6775
|
+
scope?: StringFilter;
|
|
6776
|
+
/** Filter by the object’s `siteSurfaceModule` relation. */
|
|
6777
|
+
siteSurfaceModule?: SiteSurfaceModuleFilter;
|
|
6778
|
+
/** A related `siteSurfaceModule` exists. */
|
|
6779
|
+
siteSurfaceModuleExists?: boolean;
|
|
6780
|
+
/** Filter by the object’s `siteSurfaceModuleId` field. */
|
|
6781
|
+
siteSurfaceModuleId?: UUIDFilter;
|
|
6782
|
+
/** Filter by the object’s `sitesTableId` field. */
|
|
6783
|
+
sitesTableId?: UUIDFilter;
|
|
6784
|
+
/** Filter by the object’s `storeNamePrefix` field. */
|
|
6785
|
+
storeNamePrefix?: StringFilter;
|
|
6786
|
+
}
|
|
6408
6787
|
export interface PermissionsModuleFilter {
|
|
6409
6788
|
/** Filter by the object’s `actorTableId` field. */
|
|
6410
6789
|
actorTableId?: UUIDFilter;
|
|
@@ -6808,6 +7187,10 @@ export interface ResourceModuleFilter {
|
|
|
6808
7187
|
entityField?: StringFilter;
|
|
6809
7188
|
/** Filter by the object’s `entityTableId` field. */
|
|
6810
7189
|
entityTableId?: UUIDFilter;
|
|
7190
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
7191
|
+
httpRouteModules?: ResourceModuleToManyHttpRouteModuleFilter;
|
|
7192
|
+
/** `httpRouteModules` exist. */
|
|
7193
|
+
httpRouteModulesExist?: boolean;
|
|
6811
7194
|
/** Filter by the object’s `id` field. */
|
|
6812
7195
|
id?: UUIDFilter;
|
|
6813
7196
|
/** Filter by the object’s `installationStoreName` field. */
|
|
@@ -7086,12 +7469,20 @@ export interface SiteSurfaceModuleFilter {
|
|
|
7086
7469
|
not?: SiteSurfaceModuleFilter;
|
|
7087
7470
|
/** Checks for any expressions in this list. */
|
|
7088
7471
|
or?: SiteSurfaceModuleFilter[];
|
|
7472
|
+
/** Filter by the object’s `pagesModules` relation. */
|
|
7473
|
+
pagesModules?: SiteSurfaceModuleToManyPagesModuleFilter;
|
|
7474
|
+
/** `pagesModules` exist. */
|
|
7475
|
+
pagesModulesExist?: boolean;
|
|
7089
7476
|
/** Filter by the object’s `policies` field. */
|
|
7090
7477
|
policies?: JSONFilter;
|
|
7091
7478
|
/** Filter by the object’s `prefix` field. */
|
|
7092
7479
|
prefix?: StringFilter;
|
|
7093
7480
|
/** Filter by the object’s `privateApiName` field. */
|
|
7094
7481
|
privateApiName?: StringFilter;
|
|
7482
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
7483
|
+
privateSchemaId?: UUIDFilter;
|
|
7484
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
7485
|
+
privateSchemaName?: StringFilter;
|
|
7095
7486
|
/** Filter by the object’s `provisions` field. */
|
|
7096
7487
|
provisions?: JSONFilter;
|
|
7097
7488
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
@@ -7100,6 +7491,18 @@ export interface SiteSurfaceModuleFilter {
|
|
|
7100
7491
|
schemaId?: UUIDFilter;
|
|
7101
7492
|
/** Filter by the object’s `scope` field. */
|
|
7102
7493
|
scope?: StringFilter;
|
|
7494
|
+
/** Filter by the object’s `siteAppLinksTableId` field. */
|
|
7495
|
+
siteAppLinksTableId?: UUIDFilter;
|
|
7496
|
+
/** Filter by the object’s `siteAppLinksTableName` field. */
|
|
7497
|
+
siteAppLinksTableName?: StringFilter;
|
|
7498
|
+
/** Filter by the object’s `siteDeepLinksTableId` field. */
|
|
7499
|
+
siteDeepLinksTableId?: UUIDFilter;
|
|
7500
|
+
/** Filter by the object’s `siteDeepLinksTableName` field. */
|
|
7501
|
+
siteDeepLinksTableName?: StringFilter;
|
|
7502
|
+
/** Filter by the object’s `siteErrorPagesTableId` field. */
|
|
7503
|
+
siteErrorPagesTableId?: UUIDFilter;
|
|
7504
|
+
/** Filter by the object’s `siteErrorPagesTableName` field. */
|
|
7505
|
+
siteErrorPagesTableName?: StringFilter;
|
|
7103
7506
|
/** Filter by the object’s `siteMetadataTableId` field. */
|
|
7104
7507
|
siteMetadataTableId?: UUIDFilter;
|
|
7105
7508
|
/** Filter by the object’s `siteMetadataTableName` field. */
|
|
@@ -7112,6 +7515,10 @@ export interface SiteSurfaceModuleFilter {
|
|
|
7112
7515
|
siteThemesTableId?: UUIDFilter;
|
|
7113
7516
|
/** Filter by the object’s `siteThemesTableName` field. */
|
|
7114
7517
|
siteThemesTableName?: StringFilter;
|
|
7518
|
+
/** Filter by the object’s `siteWebConfigTableId` field. */
|
|
7519
|
+
siteWebConfigTableId?: UUIDFilter;
|
|
7520
|
+
/** Filter by the object’s `siteWebConfigTableName` field. */
|
|
7521
|
+
siteWebConfigTableName?: StringFilter;
|
|
7115
7522
|
/** Filter by the object’s `sitesTableId` field. */
|
|
7116
7523
|
sitesTableId?: UUIDFilter;
|
|
7117
7524
|
/** Filter by the object’s `sitesTableName` field. */
|
|
@@ -7178,6 +7585,8 @@ export interface StorageModuleFilter {
|
|
|
7178
7585
|
bucketsTableName?: StringFilter;
|
|
7179
7586
|
/** Filter by the object’s `cacheTtlSeconds` field. */
|
|
7180
7587
|
cacheTtlSeconds?: IntFilter;
|
|
7588
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
7589
|
+
catalogModuleId?: UUIDFilter;
|
|
7181
7590
|
/** Filter by the object’s `confirmUploadDelay` field. */
|
|
7182
7591
|
confirmUploadDelay?: IntervalFilter;
|
|
7183
7592
|
/** Filter by the object’s `databaseId` field. */
|
|
@@ -7212,6 +7621,10 @@ export interface StorageModuleFilter {
|
|
|
7212
7621
|
hasPathShares?: BooleanFilter;
|
|
7213
7622
|
/** Filter by the object’s `hasVersioning` field. */
|
|
7214
7623
|
hasVersioning?: BooleanFilter;
|
|
7624
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
7625
|
+
httpRouteModules?: StorageModuleToManyHttpRouteModuleFilter;
|
|
7626
|
+
/** `httpRouteModules` exist. */
|
|
7627
|
+
httpRouteModulesExist?: boolean;
|
|
7215
7628
|
/** Filter by the object’s `id` field. */
|
|
7216
7629
|
id?: UUIDFilter;
|
|
7217
7630
|
/** Filter by the object’s `maxBulkFiles` field. */
|
|
@@ -7599,7 +8012,7 @@ export type BillingProviderModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'B
|
|
|
7599
8012
|
export type BlueprintOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DEFINITION_HASH_ASC' | 'DEFINITION_HASH_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'TABLE_HASHES_ASC' | 'TABLE_HASHES_DESC' | 'TEMPLATE_ID_ASC' | 'TEMPLATE_ID_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
7600
8013
|
export type BlueprintConstructionOrderBy = 'BLUEPRINT_ID_ASC' | 'BLUEPRINT_ID_DESC' | 'CONSTRUCTED_AT_ASC' | 'CONSTRUCTED_AT_DESC' | 'CONSTRUCTED_DEFINITION_ASC' | 'CONSTRUCTED_DEFINITION_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ERROR_DETAILS_ASC' | 'ERROR_DETAILS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'STATUS_ASC' | 'STATUS_DESC' | 'TABLE_MAP_ASC' | 'TABLE_MAP_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
|
|
7601
8014
|
export type BlueprintTemplateOrderBy = 'CATEGORIES_ASC' | 'CATEGORIES_DESC' | 'COMPLEXITY_ASC' | 'COMPLEXITY_DESC' | 'COPY_COUNT_ASC' | 'COPY_COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DEFINITION_ASC' | 'DEFINITION_DESC' | 'DEFINITION_HASH_ASC' | 'DEFINITION_HASH_DESC' | 'DEFINITION_SCHEMA_VERSION_ASC' | 'DEFINITION_SCHEMA_VERSION_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'FORKED_FROM_ID_ASC' | 'FORKED_FROM_ID_DESC' | 'FORK_COUNT_ASC' | 'FORK_COUNT_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'NATURAL' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SOURCE_ASC' | 'SOURCE_DESC' | 'TABLE_HASHES_ASC' | 'TABLE_HASHES_DESC' | 'TAGS_ASC' | 'TAGS_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'VERSION_ASC' | 'VERSION_DESC' | 'VISIBILITY_ASC' | 'VISIBILITY_DESC';
|
|
7602
|
-
export type CatalogModuleOrderBy = 'APIS_TABLE_ID_ASC' | 'APIS_TABLE_ID_DESC' | 'APIS_TABLE_NAME_ASC' | 'APIS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'APPS_TABLE_ID_ASC' | 'APPS_TABLE_ID_DESC' | 'APPS_TABLE_NAME_ASC' | 'APPS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DOMAINS_TABLE_ID_ASC' | 'DOMAINS_TABLE_ID_DESC' | 'DOMAINS_TABLE_NAME_ASC' | 'DOMAINS_TABLE_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTIONS_TABLE_ID_ASC' | 'FUNCTIONS_TABLE_ID_DESC' | 'FUNCTIONS_TABLE_NAME_ASC' | 'FUNCTIONS_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACES_TABLE_ID_ASC' | 'NAMESPACES_TABLE_ID_DESC' | 'NAMESPACES_TABLE_NAME_ASC' | 'NAMESPACES_TABLE_NAME_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RESOURCES_TABLE_ID_ASC' | 'RESOURCES_TABLE_ID_DESC' | 'RESOURCES_TABLE_NAME_ASC' | 'RESOURCES_TABLE_NAME_DESC' | 'RESOURCE_DEFINITIONS_TABLE_ID_ASC' | 'RESOURCE_DEFINITIONS_TABLE_ID_DESC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_ASC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SITES_TABLE_ID_ASC' | 'SITES_TABLE_ID_DESC' | 'SITES_TABLE_NAME_ASC' | 'SITES_TABLE_NAME_DESC';
|
|
8015
|
+
export type CatalogModuleOrderBy = 'APIS_TABLE_ID_ASC' | 'APIS_TABLE_ID_DESC' | 'APIS_TABLE_NAME_ASC' | 'APIS_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'APPS_TABLE_ID_ASC' | 'APPS_TABLE_ID_DESC' | 'APPS_TABLE_NAME_ASC' | 'APPS_TABLE_NAME_DESC' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DOMAINS_TABLE_ID_ASC' | 'DOMAINS_TABLE_ID_DESC' | 'DOMAINS_TABLE_NAME_ASC' | 'DOMAINS_TABLE_NAME_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTIONS_TABLE_ID_ASC' | 'FUNCTIONS_TABLE_ID_DESC' | 'FUNCTIONS_TABLE_NAME_ASC' | 'FUNCTIONS_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACES_TABLE_ID_ASC' | 'NAMESPACES_TABLE_ID_DESC' | 'NAMESPACES_TABLE_NAME_ASC' | 'NAMESPACES_TABLE_NAME_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RESOURCES_TABLE_ID_ASC' | 'RESOURCES_TABLE_ID_DESC' | 'RESOURCES_TABLE_NAME_ASC' | 'RESOURCES_TABLE_NAME_DESC' | 'RESOURCE_DEFINITIONS_TABLE_ID_ASC' | 'RESOURCE_DEFINITIONS_TABLE_ID_DESC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_ASC' | 'RESOURCE_DEFINITIONS_TABLE_NAME_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_ID_DESC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_ASC' | 'RESOURCE_INSTALLATIONS_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SITES_APP_LINKS_TABLE_ID_ASC' | 'SITES_APP_LINKS_TABLE_ID_DESC' | 'SITES_APP_LINKS_TABLE_NAME_ASC' | 'SITES_APP_LINKS_TABLE_NAME_DESC' | 'SITES_DEEP_LINKS_TABLE_ID_ASC' | 'SITES_DEEP_LINKS_TABLE_ID_DESC' | 'SITES_DEEP_LINKS_TABLE_NAME_ASC' | 'SITES_DEEP_LINKS_TABLE_NAME_DESC' | 'SITES_ERROR_PAGES_TABLE_ID_ASC' | 'SITES_ERROR_PAGES_TABLE_ID_DESC' | 'SITES_ERROR_PAGES_TABLE_NAME_ASC' | 'SITES_ERROR_PAGES_TABLE_NAME_DESC' | 'SITES_TABLE_ID_ASC' | 'SITES_TABLE_ID_DESC' | 'SITES_TABLE_NAME_ASC' | 'SITES_TABLE_NAME_DESC' | 'SITES_WEB_CONFIG_TABLE_ID_ASC' | 'SITES_WEB_CONFIG_TABLE_ID_DESC' | 'SITES_WEB_CONFIG_TABLE_NAME_ASC' | 'SITES_WEB_CONFIG_TABLE_NAME_DESC';
|
|
7603
8016
|
export type ComputeLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'COMPUTE_LOG_TABLE_ID_ASC' | 'COMPUTE_LOG_TABLE_ID_DESC' | 'COMPUTE_LOG_TABLE_NAME_ASC' | 'COMPUTE_LOG_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
|
|
7604
8017
|
export type ConfigSecretsUserModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
7605
8018
|
export type ConnectedAccountsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
@@ -7620,7 +8033,7 @@ export type EntityTypeProvisionOrderBy = 'AGENTS_ASC' | 'AGENTS_DESC' | 'DATABAS
|
|
|
7620
8033
|
export type EventsModuleOrderBy = 'ACHIEVEMENT_REWARDS_TABLE_ID_ASC' | 'ACHIEVEMENT_REWARDS_TABLE_ID_DESC' | 'ACHIEVEMENT_REWARDS_TABLE_NAME_ASC' | 'ACHIEVEMENT_REWARDS_TABLE_NAME_DESC' | 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'EVENTS_TABLE_ID_ASC' | 'EVENTS_TABLE_ID_DESC' | 'EVENTS_TABLE_NAME_ASC' | 'EVENTS_TABLE_NAME_DESC' | 'EVENT_AGGREGATES_TABLE_ID_ASC' | 'EVENT_AGGREGATES_TABLE_ID_DESC' | 'EVENT_AGGREGATES_TABLE_NAME_ASC' | 'EVENT_AGGREGATES_TABLE_NAME_DESC' | 'EVENT_TYPES_TABLE_ID_ASC' | 'EVENT_TYPES_TABLE_ID_DESC' | 'EVENT_TYPES_TABLE_NAME_ASC' | 'EVENT_TYPES_TABLE_NAME_DESC' | 'GRANT_ACHIEVEMENT_ASC' | 'GRANT_ACHIEVEMENT_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'LEVELS_TABLE_ID_ASC' | 'LEVELS_TABLE_ID_DESC' | 'LEVELS_TABLE_NAME_ASC' | 'LEVELS_TABLE_NAME_DESC' | 'LEVEL_ACHIEVED_ASC' | 'LEVEL_ACHIEVED_DESC' | 'LEVEL_GRANTS_TABLE_ID_ASC' | 'LEVEL_GRANTS_TABLE_ID_DESC' | 'LEVEL_GRANTS_TABLE_NAME_ASC' | 'LEVEL_GRANTS_TABLE_NAME_DESC' | 'LEVEL_REQUIREMENTS_TABLE_ID_ASC' | 'LEVEL_REQUIREMENTS_TABLE_ID_DESC' | 'LEVEL_REQUIREMENTS_TABLE_NAME_ASC' | 'LEVEL_REQUIREMENTS_TABLE_NAME_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RECORD_EVENT_ASC' | 'RECORD_EVENT_DESC' | 'REMOVE_EVENT_ASC' | 'REMOVE_EVENT_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STEPS_REQUIRED_ASC' | 'STEPS_REQUIRED_DESC' | 'TG_ACHIEVEMENT_REWARD_ASC' | 'TG_ACHIEVEMENT_REWARD_DESC' | 'TG_CHECK_ACHIEVEMENTS_ASC' | 'TG_CHECK_ACHIEVEMENTS_DESC' | 'TG_EVENT_ASC' | 'TG_EVENT_BOOL_ASC' | 'TG_EVENT_BOOL_DESC' | 'TG_EVENT_DESC' | 'TG_EVENT_TOGGLE_ASC' | 'TG_EVENT_TOGGLE_BOOL_ASC' | 'TG_EVENT_TOGGLE_BOOL_DESC' | 'TG_EVENT_TOGGLE_DESC' | 'TG_UPDATE_AGGREGATES_ASC' | 'TG_UPDATE_AGGREGATES_DESC' | 'UPSERT_AGGREGATE_ASC' | 'UPSERT_AGGREGATE_DESC';
|
|
7621
8034
|
export type FunctionDeploymentModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DEPLOYMENTS_TABLE_ID_ASC' | 'DEPLOYMENTS_TABLE_ID_DESC' | 'DEPLOYMENTS_TABLE_NAME_ASC' | 'DEPLOYMENTS_TABLE_NAME_DESC' | 'DEPLOYMENT_EVENTS_TABLE_ID_ASC' | 'DEPLOYMENT_EVENTS_TABLE_ID_DESC' | 'DEPLOYMENT_EVENTS_TABLE_NAME_ASC' | 'DEPLOYMENT_EVENTS_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FUNCTION_MODULE_ID_ASC' | 'FUNCTION_MODULE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACE_MODULE_ID_ASC' | 'NAMESPACE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
7622
8035
|
export type FunctionInvocationModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'ATTEMPTS_TABLE_ID_ASC' | 'ATTEMPTS_TABLE_ID_DESC' | 'ATTEMPTS_TABLE_NAME_ASC' | 'ATTEMPTS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'EXECUTION_LOGS_TABLE_ID_ASC' | 'EXECUTION_LOGS_TABLE_ID_DESC' | 'EXECUTION_LOGS_TABLE_NAME_ASC' | 'EXECUTION_LOGS_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'INVOCATIONS_TABLE_ID_ASC' | 'INVOCATIONS_TABLE_ID_DESC' | 'INVOCATIONS_TABLE_NAME_ASC' | 'INVOCATIONS_TABLE_NAME_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
7623
|
-
export type FunctionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'BINDINGS_TABLE_ID_ASC' | 'BINDINGS_TABLE_ID_DESC' | 'BINDINGS_TABLE_NAME_ASC' | 'BINDINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'HAS_CRON_ASC' | 'HAS_CRON_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEDULES_TABLE_ID_ASC' | 'SCHEDULES_TABLE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
8036
|
+
export type FunctionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'BINDINGS_TABLE_ID_ASC' | 'BINDINGS_TABLE_ID_DESC' | 'BINDINGS_TABLE_NAME_ASC' | 'BINDINGS_TABLE_NAME_DESC' | 'CAPABILITY_BINDINGS_TABLE_ID_ASC' | 'CAPABILITY_BINDINGS_TABLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DEFINITIONS_TABLE_ID_ASC' | 'DEFINITIONS_TABLE_ID_DESC' | 'DEFINITIONS_TABLE_NAME_ASC' | 'DEFINITIONS_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'HAS_CRON_ASC' | 'HAS_CRON_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEDULES_TABLE_ID_ASC' | 'SCHEDULES_TABLE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
7624
8037
|
export type GraphExecutionModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'EXECUTIONS_TABLE_ID_ASC' | 'EXECUTIONS_TABLE_ID_DESC' | 'EXECUTIONS_TABLE_NAME_ASC' | 'EXECUTIONS_TABLE_NAME_DESC' | 'GRAPH_MODULE_ID_ASC' | 'GRAPH_MODULE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'NODE_STATES_TABLE_ID_ASC' | 'NODE_STATES_TABLE_ID_DESC' | 'NODE_STATES_TABLE_NAME_ASC' | 'NODE_STATES_TABLE_NAME_DESC' | 'OUTPUTS_TABLE_ID_ASC' | 'OUTPUTS_TABLE_ID_DESC' | 'OUTPUTS_TABLE_NAME_ASC' | 'OUTPUTS_TABLE_NAME_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
7625
8038
|
export type GraphModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'GRAPHS_TABLE_ID_ASC' | 'GRAPHS_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
7626
8039
|
export type HierarchyModuleOrderBy = 'CHART_EDGES_TABLE_ID_ASC' | 'CHART_EDGES_TABLE_ID_DESC' | 'CHART_EDGES_TABLE_NAME_ASC' | 'CHART_EDGES_TABLE_NAME_DESC' | 'CHART_EDGE_GRANTS_TABLE_ID_ASC' | 'CHART_EDGE_GRANTS_TABLE_ID_DESC' | 'CHART_EDGE_GRANTS_TABLE_NAME_ASC' | 'CHART_EDGE_GRANTS_TABLE_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'GET_MANAGERS_FUNCTION_ASC' | 'GET_MANAGERS_FUNCTION_DESC' | 'GET_SUBORDINATES_FUNCTION_ASC' | 'GET_SUBORDINATES_FUNCTION_DESC' | 'HIERARCHY_SPRT_TABLE_ID_ASC' | 'HIERARCHY_SPRT_TABLE_ID_DESC' | 'HIERARCHY_SPRT_TABLE_NAME_ASC' | 'HIERARCHY_SPRT_TABLE_NAME_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_MANAGER_OF_FUNCTION_ASC' | 'IS_MANAGER_OF_FUNCTION_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'REBUILD_HIERARCHY_FUNCTION_ASC' | 'REBUILD_HIERARCHY_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SPRT_TABLE_NAME_ASC' | 'SPRT_TABLE_NAME_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
|
|
@@ -7639,6 +8052,7 @@ export type MembershipsModuleOrderBy = 'ACTOR_MASK_CHECK_ASC' | 'ACTOR_MASK_CHEC
|
|
|
7639
8052
|
export type MerkleStoreModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'COMMIT_TABLE_ID_ASC' | 'COMMIT_TABLE_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'FUNCTION_PREFIX_ASC' | 'FUNCTION_PREFIX_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OBJECT_TABLE_ID_ASC' | 'OBJECT_TABLE_ID_DESC' | 'PERMISSION_KEY_ASC' | 'PERMISSION_KEY_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'REF_TABLE_ID_ASC' | 'REF_TABLE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORE_TABLE_ID_ASC' | 'STORE_TABLE_ID_DESC';
|
|
7640
8053
|
export type NamespaceModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAMESPACES_TABLE_ID_ASC' | 'NAMESPACES_TABLE_ID_DESC' | 'NAMESPACES_TABLE_NAME_ASC' | 'NAMESPACES_TABLE_NAME_DESC' | 'NAMESPACE_EVENTS_TABLE_ID_ASC' | 'NAMESPACE_EVENTS_TABLE_ID_DESC' | 'NAMESPACE_EVENTS_TABLE_NAME_ASC' | 'NAMESPACE_EVENTS_TABLE_NAME_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC';
|
|
7641
8054
|
export type NotificationsModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CHANNELS_TABLE_ID_ASC' | 'CHANNELS_TABLE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DELIVERY_LOG_TABLE_ID_ASC' | 'DELIVERY_LOG_TABLE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'HAS_CHANNELS_ASC' | 'HAS_CHANNELS_DESC' | 'HAS_DIGEST_METADATA_ASC' | 'HAS_DIGEST_METADATA_DESC' | 'HAS_PREFERENCES_ASC' | 'HAS_PREFERENCES_DESC' | 'HAS_SETTINGS_EXTENSION_ASC' | 'HAS_SETTINGS_EXTENSION_DESC' | 'HAS_SUBSCRIPTIONS_ASC' | 'HAS_SUBSCRIPTIONS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'NOTIFICATIONS_TABLE_ID_ASC' | 'NOTIFICATIONS_TABLE_ID_DESC' | 'ORGANIZATION_SETTINGS_TABLE_ID_ASC' | 'ORGANIZATION_SETTINGS_TABLE_ID_DESC' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'PREFERENCES_TABLE_ID_ASC' | 'PREFERENCES_TABLE_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'READ_STATE_TABLE_ID_ASC' | 'READ_STATE_TABLE_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SUPPRESSIONS_TABLE_ID_ASC' | 'SUPPRESSIONS_TABLE_ID_DESC' | 'USER_SETTINGS_TABLE_ID_ASC' | 'USER_SETTINGS_TABLE_ID_DESC';
|
|
8055
|
+
export type PagesModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'MERKLE_STORE_MODULE_ID_ASC' | 'MERKLE_STORE_MODULE_ID_DESC' | 'NATURAL' | 'PAGES_TABLE_ID_ASC' | 'PAGES_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_ID_ASC' | 'PUBLIC_SCHEMA_ID_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SITES_TABLE_ID_ASC' | 'SITES_TABLE_ID_DESC' | 'SITE_SURFACE_MODULE_ID_ASC' | 'SITE_SURFACE_MODULE_ID_DESC' | 'STORE_NAME_PREFIX_ASC' | 'STORE_NAME_PREFIX_DESC';
|
|
7642
8056
|
export type PermissionsModuleOrderBy = 'ACTOR_TABLE_ID_ASC' | 'ACTOR_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'BITLEN_ASC' | 'BITLEN_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_TABLE_ID_ASC' | 'DEFAULT_TABLE_ID_DESC' | 'DEFAULT_TABLE_NAME_ASC' | 'DEFAULT_TABLE_NAME_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'GET_BY_MASK_ASC' | 'GET_BY_MASK_DESC' | 'GET_MASK_ASC' | 'GET_MASK_BY_NAME_ASC' | 'GET_MASK_BY_NAME_DESC' | 'GET_MASK_DESC' | 'GET_PADDED_MASK_ASC' | 'GET_PADDED_MASK_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
7643
8057
|
export type PhoneNumbersModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'OWNER_TABLE_ID_ASC' | 'OWNER_TABLE_ID_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
7644
8058
|
export type PlansModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'APPLY_BILLING_PLAN_FUNCTION_ASC' | 'APPLY_BILLING_PLAN_FUNCTION_DESC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_ASC' | 'APPLY_PLAN_AGGREGATE_FUNCTION_DESC' | 'APPLY_PLAN_CAPS_FUNCTION_ASC' | 'APPLY_PLAN_CAPS_FUNCTION_DESC' | 'APPLY_PLAN_FUNCTION_ASC' | 'APPLY_PLAN_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PLANS_TABLE_ID_ASC' | 'PLANS_TABLE_ID_DESC' | 'PLANS_TABLE_NAME_ASC' | 'PLANS_TABLE_NAME_DESC' | 'PLAN_CAPS_TABLE_ID_ASC' | 'PLAN_CAPS_TABLE_ID_DESC' | 'PLAN_LIMITS_TABLE_ID_ASC' | 'PLAN_LIMITS_TABLE_ID_DESC' | 'PLAN_LIMITS_TABLE_NAME_ASC' | 'PLAN_LIMITS_TABLE_NAME_DESC' | 'PLAN_METER_LIMITS_TABLE_ID_ASC' | 'PLAN_METER_LIMITS_TABLE_ID_DESC' | 'PLAN_OVERRIDES_TABLE_ID_ASC' | 'PLAN_OVERRIDES_TABLE_ID_DESC' | 'PLAN_PRICING_TABLE_ID_ASC' | 'PLAN_PRICING_TABLE_ID_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC';
|
|
@@ -7654,9 +8068,9 @@ export type RouteModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CATALOG_MOD
|
|
|
7654
8068
|
export type SecureTableProvisionOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'FIELDS_ASC' | 'FIELDS_DESC' | 'GRANTS_ASC' | 'GRANTS_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'NODES_ASC' | 'NODES_DESC' | 'OUT_FIELDS_ASC' | 'OUT_FIELDS_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC' | 'USE_RLS_ASC' | 'USE_RLS_DESC';
|
|
7655
8069
|
export type SessionSecretsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
7656
8070
|
export type SessionsModuleOrderBy = 'AUTH_SETTINGS_TABLE_ID_ASC' | 'AUTH_SETTINGS_TABLE_ID_DESC' | 'AUTH_SETTINGS_TABLE_NAME_ASC' | 'AUTH_SETTINGS_TABLE_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SESSIONS_DEFAULT_EXPIRATION_ASC' | 'SESSIONS_DEFAULT_EXPIRATION_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSIONS_TABLE_NAME_ASC' | 'SESSIONS_TABLE_NAME_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_NAME_ASC' | 'SESSION_CREDENTIALS_TABLE_NAME_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC';
|
|
7657
|
-
export type SiteSurfaceModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CATALOG_MODULE_ID_ASC' | 'CATALOG_MODULE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SITES_TABLE_ID_ASC' | 'SITES_TABLE_ID_DESC' | 'SITES_TABLE_NAME_ASC' | 'SITES_TABLE_NAME_DESC' | 'SITE_METADATA_TABLE_ID_ASC' | 'SITE_METADATA_TABLE_ID_DESC' | 'SITE_METADATA_TABLE_NAME_ASC' | 'SITE_METADATA_TABLE_NAME_DESC' | 'SITE_MODULES_TABLE_ID_ASC' | 'SITE_MODULES_TABLE_ID_DESC' | 'SITE_MODULES_TABLE_NAME_ASC' | 'SITE_MODULES_TABLE_NAME_DESC' | 'SITE_THEMES_TABLE_ID_ASC' | 'SITE_THEMES_TABLE_ID_DESC' | 'SITE_THEMES_TABLE_NAME_ASC' | 'SITE_THEMES_TABLE_NAME_DESC';
|
|
8071
|
+
export type SiteSurfaceModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'CATALOG_MODULE_ID_ASC' | 'CATALOG_MODULE_ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SITES_TABLE_ID_ASC' | 'SITES_TABLE_ID_DESC' | 'SITES_TABLE_NAME_ASC' | 'SITES_TABLE_NAME_DESC' | 'SITE_APP_LINKS_TABLE_ID_ASC' | 'SITE_APP_LINKS_TABLE_ID_DESC' | 'SITE_APP_LINKS_TABLE_NAME_ASC' | 'SITE_APP_LINKS_TABLE_NAME_DESC' | 'SITE_DEEP_LINKS_TABLE_ID_ASC' | 'SITE_DEEP_LINKS_TABLE_ID_DESC' | 'SITE_DEEP_LINKS_TABLE_NAME_ASC' | 'SITE_DEEP_LINKS_TABLE_NAME_DESC' | 'SITE_ERROR_PAGES_TABLE_ID_ASC' | 'SITE_ERROR_PAGES_TABLE_ID_DESC' | 'SITE_ERROR_PAGES_TABLE_NAME_ASC' | 'SITE_ERROR_PAGES_TABLE_NAME_DESC' | 'SITE_METADATA_TABLE_ID_ASC' | 'SITE_METADATA_TABLE_ID_DESC' | 'SITE_METADATA_TABLE_NAME_ASC' | 'SITE_METADATA_TABLE_NAME_DESC' | 'SITE_MODULES_TABLE_ID_ASC' | 'SITE_MODULES_TABLE_ID_DESC' | 'SITE_MODULES_TABLE_NAME_ASC' | 'SITE_MODULES_TABLE_NAME_DESC' | 'SITE_THEMES_TABLE_ID_ASC' | 'SITE_THEMES_TABLE_ID_DESC' | 'SITE_THEMES_TABLE_NAME_ASC' | 'SITE_THEMES_TABLE_NAME_DESC' | 'SITE_WEB_CONFIG_TABLE_ID_ASC' | 'SITE_WEB_CONFIG_TABLE_ID_DESC' | 'SITE_WEB_CONFIG_TABLE_NAME_ASC' | 'SITE_WEB_CONFIG_TABLE_NAME_DESC';
|
|
7658
8072
|
export type StorageLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'STORAGE_LOG_TABLE_ID_ASC' | 'STORAGE_LOG_TABLE_ID_DESC' | 'STORAGE_LOG_TABLE_NAME_ASC' | 'STORAGE_LOG_TABLE_NAME_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
|
|
7659
|
-
export type StorageModuleOrderBy = 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'CACHE_TTL_SECONDS_ASC' | 'CACHE_TTL_SECONDS_DESC' | 'CONFIRM_UPLOAD_DELAY_ASC' | 'CONFIRM_UPLOAD_DELAY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_MAX_FILE_SIZE_ASC' | 'DEFAULT_MAX_FILE_SIZE_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_ASC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_DESC' | 'ENDPOINT_ASC' | 'ENDPOINT_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FILES_TABLE_ID_ASC' | 'FILES_TABLE_ID_DESC' | 'FILES_TABLE_NAME_ASC' | 'FILES_TABLE_NAME_DESC' | 'FILE_EVENTS_TABLE_ID_ASC' | 'FILE_EVENTS_TABLE_ID_DESC' | 'HAS_AUDIT_LOG_ASC' | 'HAS_AUDIT_LOG_DESC' | 'HAS_CONFIRM_UPLOAD_ASC' | 'HAS_CONFIRM_UPLOAD_DESC' | 'HAS_CONTENT_HASH_ASC' | 'HAS_CONTENT_HASH_DESC' | 'HAS_CUSTOM_KEYS_ASC' | 'HAS_CUSTOM_KEYS_DESC' | 'HAS_PATH_SHARES_ASC' | 'HAS_PATH_SHARES_DESC' | 'HAS_VERSIONING_ASC' | 'HAS_VERSIONING_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_BULK_FILES_ASC' | 'MAX_BULK_FILES_DESC' | 'MAX_BULK_TOTAL_SIZE_ASC' | 'MAX_BULK_TOTAL_SIZE_DESC' | 'MAX_FILENAME_LENGTH_ASC' | 'MAX_FILENAME_LENGTH_DESC' | 'NATURAL' | 'PATH_SHARES_TABLE_ID_ASC' | 'PATH_SHARES_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PUBLIC_URL_PREFIX_ASC' | 'PUBLIC_URL_PREFIX_DESC' | 'RESTRICT_READS_ASC' | 'RESTRICT_READS_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'UPLOAD_URL_EXPIRY_SECONDS_ASC' | 'UPLOAD_URL_EXPIRY_SECONDS_DESC';
|
|
8073
|
+
export type StorageModuleOrderBy = 'ALLOWED_ORIGINS_ASC' | 'ALLOWED_ORIGINS_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'BUCKETS_TABLE_ID_ASC' | 'BUCKETS_TABLE_ID_DESC' | 'BUCKETS_TABLE_NAME_ASC' | 'BUCKETS_TABLE_NAME_DESC' | 'CACHE_TTL_SECONDS_ASC' | 'CACHE_TTL_SECONDS_DESC' | 'CATALOG_MODULE_ID_ASC' | 'CATALOG_MODULE_ID_DESC' | 'CONFIRM_UPLOAD_DELAY_ASC' | 'CONFIRM_UPLOAD_DELAY_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_MAX_FILE_SIZE_ASC' | 'DEFAULT_MAX_FILE_SIZE_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_ASC' | 'DOWNLOAD_URL_EXPIRY_SECONDS_DESC' | 'ENDPOINT_ASC' | 'ENDPOINT_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'FILES_TABLE_ID_ASC' | 'FILES_TABLE_ID_DESC' | 'FILES_TABLE_NAME_ASC' | 'FILES_TABLE_NAME_DESC' | 'FILE_EVENTS_TABLE_ID_ASC' | 'FILE_EVENTS_TABLE_ID_DESC' | 'HAS_AUDIT_LOG_ASC' | 'HAS_AUDIT_LOG_DESC' | 'HAS_CONFIRM_UPLOAD_ASC' | 'HAS_CONFIRM_UPLOAD_DESC' | 'HAS_CONTENT_HASH_ASC' | 'HAS_CONTENT_HASH_DESC' | 'HAS_CUSTOM_KEYS_ASC' | 'HAS_CUSTOM_KEYS_DESC' | 'HAS_PATH_SHARES_ASC' | 'HAS_PATH_SHARES_DESC' | 'HAS_VERSIONING_ASC' | 'HAS_VERSIONING_DESC' | 'ID_ASC' | 'ID_DESC' | 'MAX_BULK_FILES_ASC' | 'MAX_BULK_FILES_DESC' | 'MAX_BULK_TOTAL_SIZE_ASC' | 'MAX_BULK_TOTAL_SIZE_DESC' | 'MAX_FILENAME_LENGTH_ASC' | 'MAX_FILENAME_LENGTH_DESC' | 'NATURAL' | 'PATH_SHARES_TABLE_ID_ASC' | 'PATH_SHARES_TABLE_ID_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROVIDER_ASC' | 'PROVIDER_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'PUBLIC_URL_PREFIX_ASC' | 'PUBLIC_URL_PREFIX_DESC' | 'RESTRICT_READS_ASC' | 'RESTRICT_READS_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'UPLOAD_URL_EXPIRY_SECONDS_ASC' | 'UPLOAD_URL_EXPIRY_SECONDS_DESC';
|
|
7660
8074
|
export type TransferLogModuleOrderBy = 'ACTOR_FK_TABLE_ID_ASC' | 'ACTOR_FK_TABLE_ID_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_FK_TABLE_ID_ASC' | 'ENTITY_FK_TABLE_ID_DESC' | 'ID_ASC' | 'ID_DESC' | 'INTERVAL_ASC' | 'INTERVAL_DESC' | 'NATURAL' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PREMAKE_ASC' | 'PREMAKE_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RETENTION_ASC' | 'RETENTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'TRANSFER_LOG_TABLE_ID_ASC' | 'TRANSFER_LOG_TABLE_ID_DESC' | 'TRANSFER_LOG_TABLE_NAME_ASC' | 'TRANSFER_LOG_TABLE_NAME_DESC' | 'USAGE_SUMMARY_TABLE_ID_ASC' | 'USAGE_SUMMARY_TABLE_ID_DESC' | 'USAGE_SUMMARY_TABLE_NAME_ASC' | 'USAGE_SUMMARY_TABLE_NAME_DESC';
|
|
7661
8075
|
export type UserAuthModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'AUDITS_TABLE_ID_ASC' | 'AUDITS_TABLE_ID_DESC' | 'AUDITS_TABLE_NAME_ASC' | 'AUDITS_TABLE_NAME_DESC' | 'CHECK_PASSWORD_FUNCTION_ASC' | 'CHECK_PASSWORD_FUNCTION_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DELETE_ACCOUNT_FUNCTION_ASC' | 'DELETE_ACCOUNT_FUNCTION_DESC' | 'EMAILS_TABLE_ID_ASC' | 'EMAILS_TABLE_ID_DESC' | 'ENCRYPTED_TABLE_ID_ASC' | 'ENCRYPTED_TABLE_ID_DESC' | 'EXTEND_TOKEN_EXPIRES_ASC' | 'EXTEND_TOKEN_EXPIRES_DESC' | 'FORGOT_PASSWORD_FUNCTION_ASC' | 'FORGOT_PASSWORD_FUNCTION_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'REQUEST_CROSS_ORIGIN_TOKEN_FUNCTION_ASC' | 'REQUEST_CROSS_ORIGIN_TOKEN_FUNCTION_DESC' | 'RESET_PASSWORD_FUNCTION_ASC' | 'RESET_PASSWORD_FUNCTION_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SECRETS_TABLE_ID_ASC' | 'SECRETS_TABLE_ID_DESC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_ASC' | 'SEND_ACCOUNT_DELETION_EMAIL_FUNCTION_DESC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_ASC' | 'SEND_VERIFICATION_EMAIL_FUNCTION_DESC' | 'SESSIONS_TABLE_ID_ASC' | 'SESSIONS_TABLE_ID_DESC' | 'SESSION_CREDENTIALS_TABLE_ID_ASC' | 'SESSION_CREDENTIALS_TABLE_ID_DESC' | 'SET_PASSWORD_FUNCTION_ASC' | 'SET_PASSWORD_FUNCTION_DESC' | 'SIGN_IN_CROSS_ORIGIN_FUNCTION_ASC' | 'SIGN_IN_CROSS_ORIGIN_FUNCTION_DESC' | 'SIGN_IN_FUNCTION_ASC' | 'SIGN_IN_FUNCTION_DESC' | 'SIGN_OUT_FUNCTION_ASC' | 'SIGN_OUT_FUNCTION_DESC' | 'SIGN_UP_FUNCTION_ASC' | 'SIGN_UP_FUNCTION_DESC' | 'USERS_TABLE_ID_ASC' | 'USERS_TABLE_ID_DESC' | 'VERIFY_EMAIL_FUNCTION_ASC' | 'VERIFY_EMAIL_FUNCTION_DESC' | 'VERIFY_PASSWORD_FUNCTION_ASC' | 'VERIFY_PASSWORD_FUNCTION_DESC';
|
|
7662
8076
|
export type UserCredentialsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ID_ASC' | 'ID_DESC' | 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'TABLE_ID_ASC' | 'TABLE_ID_DESC' | 'TABLE_NAME_ASC' | 'TABLE_NAME_DESC';
|
|
@@ -8116,6 +8530,8 @@ export interface CreateCatalogModuleInput {
|
|
|
8116
8530
|
apisTableName?: string;
|
|
8117
8531
|
appsTableId?: string;
|
|
8118
8532
|
appsTableName?: string;
|
|
8533
|
+
bucketsTableId?: string;
|
|
8534
|
+
bucketsTableName?: string;
|
|
8119
8535
|
databaseId: string;
|
|
8120
8536
|
defaultPermissions?: string[];
|
|
8121
8537
|
domainsTableId?: string;
|
|
@@ -8137,8 +8553,16 @@ export interface CreateCatalogModuleInput {
|
|
|
8137
8553
|
resourcesTableName?: string;
|
|
8138
8554
|
schemaId?: string;
|
|
8139
8555
|
scope: string;
|
|
8556
|
+
sitesAppLinksTableId?: string;
|
|
8557
|
+
sitesAppLinksTableName?: string;
|
|
8558
|
+
sitesDeepLinksTableId?: string;
|
|
8559
|
+
sitesDeepLinksTableName?: string;
|
|
8560
|
+
sitesErrorPagesTableId?: string;
|
|
8561
|
+
sitesErrorPagesTableName?: string;
|
|
8140
8562
|
sitesTableId?: string;
|
|
8141
8563
|
sitesTableName?: string;
|
|
8564
|
+
sitesWebConfigTableId?: string;
|
|
8565
|
+
sitesWebConfigTableName?: string;
|
|
8142
8566
|
};
|
|
8143
8567
|
}
|
|
8144
8568
|
export interface CatalogModulePatch {
|
|
@@ -8147,6 +8571,8 @@ export interface CatalogModulePatch {
|
|
|
8147
8571
|
apisTableName?: string | null;
|
|
8148
8572
|
appsTableId?: string | null;
|
|
8149
8573
|
appsTableName?: string | null;
|
|
8574
|
+
bucketsTableId?: string | null;
|
|
8575
|
+
bucketsTableName?: string | null;
|
|
8150
8576
|
databaseId?: string | null;
|
|
8151
8577
|
defaultPermissions?: string[] | null;
|
|
8152
8578
|
domainsTableId?: string | null;
|
|
@@ -8168,8 +8594,16 @@ export interface CatalogModulePatch {
|
|
|
8168
8594
|
resourcesTableName?: string | null;
|
|
8169
8595
|
schemaId?: string | null;
|
|
8170
8596
|
scope?: string | null;
|
|
8597
|
+
sitesAppLinksTableId?: string | null;
|
|
8598
|
+
sitesAppLinksTableName?: string | null;
|
|
8599
|
+
sitesDeepLinksTableId?: string | null;
|
|
8600
|
+
sitesDeepLinksTableName?: string | null;
|
|
8601
|
+
sitesErrorPagesTableId?: string | null;
|
|
8602
|
+
sitesErrorPagesTableName?: string | null;
|
|
8171
8603
|
sitesTableId?: string | null;
|
|
8172
8604
|
sitesTableName?: string | null;
|
|
8605
|
+
sitesWebConfigTableId?: string | null;
|
|
8606
|
+
sitesWebConfigTableName?: string | null;
|
|
8173
8607
|
}
|
|
8174
8608
|
export interface UpdateCatalogModuleInput {
|
|
8175
8609
|
clientMutationId?: string;
|
|
@@ -9146,6 +9580,7 @@ export interface CreateFunctionModuleInput {
|
|
|
9146
9580
|
apiName?: string;
|
|
9147
9581
|
bindingsTableId?: string;
|
|
9148
9582
|
bindingsTableName?: string;
|
|
9583
|
+
capabilityBindingsTableId?: string;
|
|
9149
9584
|
databaseId: string;
|
|
9150
9585
|
defaultPermissions?: string[];
|
|
9151
9586
|
definitionsTableId?: string;
|
|
@@ -9169,6 +9604,7 @@ export interface FunctionModulePatch {
|
|
|
9169
9604
|
apiName?: string | null;
|
|
9170
9605
|
bindingsTableId?: string | null;
|
|
9171
9606
|
bindingsTableName?: string | null;
|
|
9607
|
+
capabilityBindingsTableId?: string | null;
|
|
9172
9608
|
databaseId?: string | null;
|
|
9173
9609
|
defaultPermissions?: string[] | null;
|
|
9174
9610
|
definitionsTableId?: string | null;
|
|
@@ -10144,6 +10580,56 @@ export interface DeleteNotificationsModuleInput {
|
|
|
10144
10580
|
clientMutationId?: string;
|
|
10145
10581
|
id: string;
|
|
10146
10582
|
}
|
|
10583
|
+
export interface CreatePagesModuleInput {
|
|
10584
|
+
clientMutationId?: string;
|
|
10585
|
+
pagesModule: {
|
|
10586
|
+
apiName?: string;
|
|
10587
|
+
databaseId: string;
|
|
10588
|
+
entityTableId?: string;
|
|
10589
|
+
merkleStoreModuleId: string;
|
|
10590
|
+
pagesTableId?: string;
|
|
10591
|
+
policies?: Record<string, unknown>;
|
|
10592
|
+
prefix: string;
|
|
10593
|
+
privateApiName?: string;
|
|
10594
|
+
privateSchemaId?: string;
|
|
10595
|
+
privateSchemaName?: string;
|
|
10596
|
+
provisions?: Record<string, unknown>;
|
|
10597
|
+
publicSchemaId?: string;
|
|
10598
|
+
publicSchemaName?: string;
|
|
10599
|
+
scope: string;
|
|
10600
|
+
siteSurfaceModuleId?: string;
|
|
10601
|
+
sitesTableId?: string;
|
|
10602
|
+
storeNamePrefix?: string;
|
|
10603
|
+
};
|
|
10604
|
+
}
|
|
10605
|
+
export interface PagesModulePatch {
|
|
10606
|
+
apiName?: string | null;
|
|
10607
|
+
databaseId?: string | null;
|
|
10608
|
+
entityTableId?: string | null;
|
|
10609
|
+
merkleStoreModuleId?: string | null;
|
|
10610
|
+
pagesTableId?: string | null;
|
|
10611
|
+
policies?: Record<string, unknown> | null;
|
|
10612
|
+
prefix?: string | null;
|
|
10613
|
+
privateApiName?: string | null;
|
|
10614
|
+
privateSchemaId?: string | null;
|
|
10615
|
+
privateSchemaName?: string | null;
|
|
10616
|
+
provisions?: Record<string, unknown> | null;
|
|
10617
|
+
publicSchemaId?: string | null;
|
|
10618
|
+
publicSchemaName?: string | null;
|
|
10619
|
+
scope?: string | null;
|
|
10620
|
+
siteSurfaceModuleId?: string | null;
|
|
10621
|
+
sitesTableId?: string | null;
|
|
10622
|
+
storeNamePrefix?: string | null;
|
|
10623
|
+
}
|
|
10624
|
+
export interface UpdatePagesModuleInput {
|
|
10625
|
+
clientMutationId?: string;
|
|
10626
|
+
id: string;
|
|
10627
|
+
pagesModulePatch: PagesModulePatch;
|
|
10628
|
+
}
|
|
10629
|
+
export interface DeletePagesModuleInput {
|
|
10630
|
+
clientMutationId?: string;
|
|
10631
|
+
id: string;
|
|
10632
|
+
}
|
|
10147
10633
|
export interface CreatePermissionsModuleInput {
|
|
10148
10634
|
clientMutationId?: string;
|
|
10149
10635
|
permissionsModule: {
|
|
@@ -10886,16 +11372,26 @@ export interface CreateSiteSurfaceModuleInput {
|
|
|
10886
11372
|
policies?: Record<string, unknown>;
|
|
10887
11373
|
prefix?: string;
|
|
10888
11374
|
privateApiName?: string;
|
|
11375
|
+
privateSchemaId?: string;
|
|
11376
|
+
privateSchemaName?: string;
|
|
10889
11377
|
provisions?: Record<string, unknown>;
|
|
10890
11378
|
publicSchemaName?: string;
|
|
10891
11379
|
schemaId?: string;
|
|
10892
11380
|
scope: string;
|
|
11381
|
+
siteAppLinksTableId?: string;
|
|
11382
|
+
siteAppLinksTableName?: string;
|
|
11383
|
+
siteDeepLinksTableId?: string;
|
|
11384
|
+
siteDeepLinksTableName?: string;
|
|
11385
|
+
siteErrorPagesTableId?: string;
|
|
11386
|
+
siteErrorPagesTableName?: string;
|
|
10893
11387
|
siteMetadataTableId?: string;
|
|
10894
11388
|
siteMetadataTableName?: string;
|
|
10895
11389
|
siteModulesTableId?: string;
|
|
10896
11390
|
siteModulesTableName?: string;
|
|
10897
11391
|
siteThemesTableId?: string;
|
|
10898
11392
|
siteThemesTableName?: string;
|
|
11393
|
+
siteWebConfigTableId?: string;
|
|
11394
|
+
siteWebConfigTableName?: string;
|
|
10899
11395
|
sitesTableId?: string;
|
|
10900
11396
|
sitesTableName?: string;
|
|
10901
11397
|
};
|
|
@@ -10910,16 +11406,26 @@ export interface SiteSurfaceModulePatch {
|
|
|
10910
11406
|
policies?: Record<string, unknown> | null;
|
|
10911
11407
|
prefix?: string | null;
|
|
10912
11408
|
privateApiName?: string | null;
|
|
11409
|
+
privateSchemaId?: string | null;
|
|
11410
|
+
privateSchemaName?: string | null;
|
|
10913
11411
|
provisions?: Record<string, unknown> | null;
|
|
10914
11412
|
publicSchemaName?: string | null;
|
|
10915
11413
|
schemaId?: string | null;
|
|
10916
11414
|
scope?: string | null;
|
|
11415
|
+
siteAppLinksTableId?: string | null;
|
|
11416
|
+
siteAppLinksTableName?: string | null;
|
|
11417
|
+
siteDeepLinksTableId?: string | null;
|
|
11418
|
+
siteDeepLinksTableName?: string | null;
|
|
11419
|
+
siteErrorPagesTableId?: string | null;
|
|
11420
|
+
siteErrorPagesTableName?: string | null;
|
|
10917
11421
|
siteMetadataTableId?: string | null;
|
|
10918
11422
|
siteMetadataTableName?: string | null;
|
|
10919
11423
|
siteModulesTableId?: string | null;
|
|
10920
11424
|
siteModulesTableName?: string | null;
|
|
10921
11425
|
siteThemesTableId?: string | null;
|
|
10922
11426
|
siteThemesTableName?: string | null;
|
|
11427
|
+
siteWebConfigTableId?: string | null;
|
|
11428
|
+
siteWebConfigTableName?: string | null;
|
|
10923
11429
|
sitesTableId?: string | null;
|
|
10924
11430
|
sitesTableName?: string | null;
|
|
10925
11431
|
}
|
|
@@ -10994,6 +11500,7 @@ export interface CreateStorageModuleInput {
|
|
|
10994
11500
|
bucketsTableId?: string;
|
|
10995
11501
|
bucketsTableName?: string;
|
|
10996
11502
|
cacheTtlSeconds?: number;
|
|
11503
|
+
catalogModuleId?: string;
|
|
10997
11504
|
confirmUploadDelay?: IntervalInput;
|
|
10998
11505
|
databaseId: string;
|
|
10999
11506
|
defaultMaxFileSize?: string;
|
|
@@ -11036,6 +11543,7 @@ export interface StorageModulePatch {
|
|
|
11036
11543
|
bucketsTableId?: string | null;
|
|
11037
11544
|
bucketsTableName?: string | null;
|
|
11038
11545
|
cacheTtlSeconds?: number | null;
|
|
11546
|
+
catalogModuleId?: string | null;
|
|
11039
11547
|
confirmUploadDelay?: IntervalInput | null;
|
|
11040
11548
|
databaseId?: string | null;
|
|
11041
11549
|
defaultMaxFileSize?: string | null;
|
|
@@ -11579,6 +12087,51 @@ export interface BlueprintTemplateToManyBlueprintFilter {
|
|
|
11579
12087
|
/** Filters to entities where at least one related entity matches. */
|
|
11580
12088
|
some?: BlueprintFilter;
|
|
11581
12089
|
}
|
|
12090
|
+
/** A filter to be used against many `ApiSurfaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12091
|
+
export interface CatalogModuleToManyApiSurfaceModuleFilter {
|
|
12092
|
+
/** Filters to entities where every related entity matches. */
|
|
12093
|
+
every?: ApiSurfaceModuleFilter;
|
|
12094
|
+
/** Filters to entities where no related entity matches. */
|
|
12095
|
+
none?: ApiSurfaceModuleFilter;
|
|
12096
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12097
|
+
some?: ApiSurfaceModuleFilter;
|
|
12098
|
+
}
|
|
12099
|
+
/** A filter to be used against many `AppModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12100
|
+
export interface CatalogModuleToManyAppModuleFilter {
|
|
12101
|
+
/** Filters to entities where every related entity matches. */
|
|
12102
|
+
every?: AppModuleFilter;
|
|
12103
|
+
/** Filters to entities where no related entity matches. */
|
|
12104
|
+
none?: AppModuleFilter;
|
|
12105
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12106
|
+
some?: AppModuleFilter;
|
|
12107
|
+
}
|
|
12108
|
+
/** A filter to be used against many `DomainModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12109
|
+
export interface CatalogModuleToManyDomainModuleFilter {
|
|
12110
|
+
/** Filters to entities where every related entity matches. */
|
|
12111
|
+
every?: DomainModuleFilter;
|
|
12112
|
+
/** Filters to entities where no related entity matches. */
|
|
12113
|
+
none?: DomainModuleFilter;
|
|
12114
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12115
|
+
some?: DomainModuleFilter;
|
|
12116
|
+
}
|
|
12117
|
+
/** A filter to be used against many `RouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12118
|
+
export interface CatalogModuleToManyRouteModuleFilter {
|
|
12119
|
+
/** Filters to entities where every related entity matches. */
|
|
12120
|
+
every?: RouteModuleFilter;
|
|
12121
|
+
/** Filters to entities where no related entity matches. */
|
|
12122
|
+
none?: RouteModuleFilter;
|
|
12123
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12124
|
+
some?: RouteModuleFilter;
|
|
12125
|
+
}
|
|
12126
|
+
/** A filter to be used against many `SiteSurfaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12127
|
+
export interface CatalogModuleToManySiteSurfaceModuleFilter {
|
|
12128
|
+
/** Filters to entities where every related entity matches. */
|
|
12129
|
+
every?: SiteSurfaceModuleFilter;
|
|
12130
|
+
/** Filters to entities where no related entity matches. */
|
|
12131
|
+
none?: SiteSurfaceModuleFilter;
|
|
12132
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12133
|
+
some?: SiteSurfaceModuleFilter;
|
|
12134
|
+
}
|
|
11582
12135
|
/** A filter to be used against Interval fields. All fields are combined with a logical ‘and.’ */
|
|
11583
12136
|
export interface IntervalFilter {
|
|
11584
12137
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -11604,6 +12157,69 @@ export interface IntervalFilter {
|
|
|
11604
12157
|
/** Not included in the specified list. */
|
|
11605
12158
|
notIn?: IntervalInput[];
|
|
11606
12159
|
}
|
|
12160
|
+
/** A filter to be used against many `RouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12161
|
+
export interface DomainModuleToManyRouteModuleFilter {
|
|
12162
|
+
/** Filters to entities where every related entity matches. */
|
|
12163
|
+
every?: RouteModuleFilter;
|
|
12164
|
+
/** Filters to entities where no related entity matches. */
|
|
12165
|
+
none?: RouteModuleFilter;
|
|
12166
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12167
|
+
some?: RouteModuleFilter;
|
|
12168
|
+
}
|
|
12169
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12170
|
+
export interface FunctionInvocationModuleToManyWebhookModuleFilter {
|
|
12171
|
+
/** Filters to entities where every related entity matches. */
|
|
12172
|
+
every?: WebhookModuleFilter;
|
|
12173
|
+
/** Filters to entities where no related entity matches. */
|
|
12174
|
+
none?: WebhookModuleFilter;
|
|
12175
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12176
|
+
some?: WebhookModuleFilter;
|
|
12177
|
+
}
|
|
12178
|
+
/** A filter to be used against many `FunctionDeploymentModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12179
|
+
export interface FunctionModuleToManyFunctionDeploymentModuleFilter {
|
|
12180
|
+
/** Filters to entities where every related entity matches. */
|
|
12181
|
+
every?: FunctionDeploymentModuleFilter;
|
|
12182
|
+
/** Filters to entities where no related entity matches. */
|
|
12183
|
+
none?: FunctionDeploymentModuleFilter;
|
|
12184
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12185
|
+
some?: FunctionDeploymentModuleFilter;
|
|
12186
|
+
}
|
|
12187
|
+
/** A filter to be used against many `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12188
|
+
export interface FunctionModuleToManyHttpRouteModuleFilter {
|
|
12189
|
+
/** Filters to entities where every related entity matches. */
|
|
12190
|
+
every?: HttpRouteModuleFilter;
|
|
12191
|
+
/** Filters to entities where no related entity matches. */
|
|
12192
|
+
none?: HttpRouteModuleFilter;
|
|
12193
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12194
|
+
some?: HttpRouteModuleFilter;
|
|
12195
|
+
}
|
|
12196
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12197
|
+
export interface FunctionModuleToManyWebhookModuleFilter {
|
|
12198
|
+
/** Filters to entities where every related entity matches. */
|
|
12199
|
+
every?: WebhookModuleFilter;
|
|
12200
|
+
/** Filters to entities where no related entity matches. */
|
|
12201
|
+
none?: WebhookModuleFilter;
|
|
12202
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12203
|
+
some?: WebhookModuleFilter;
|
|
12204
|
+
}
|
|
12205
|
+
/** A filter to be used against many `GraphExecutionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12206
|
+
export interface GraphModuleToManyGraphExecutionModuleFilter {
|
|
12207
|
+
/** Filters to entities where every related entity matches. */
|
|
12208
|
+
every?: GraphExecutionModuleFilter;
|
|
12209
|
+
/** Filters to entities where no related entity matches. */
|
|
12210
|
+
none?: GraphExecutionModuleFilter;
|
|
12211
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12212
|
+
some?: GraphExecutionModuleFilter;
|
|
12213
|
+
}
|
|
12214
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12215
|
+
export interface InfraSecretsModuleToManyWebhookModuleFilter {
|
|
12216
|
+
/** Filters to entities where every related entity matches. */
|
|
12217
|
+
every?: WebhookModuleFilter;
|
|
12218
|
+
/** Filters to entities where no related entity matches. */
|
|
12219
|
+
none?: WebhookModuleFilter;
|
|
12220
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12221
|
+
some?: WebhookModuleFilter;
|
|
12222
|
+
}
|
|
11607
12223
|
/** A filter to be used against many `DbPresetModule` object types. All fields are combined with a logical ‘and.’ */
|
|
11608
12224
|
export interface MerkleStoreModuleToManyDbPresetModuleFilter {
|
|
11609
12225
|
/** Filters to entities where every related entity matches. */
|
|
@@ -11622,7 +12238,61 @@ export interface MerkleStoreModuleToManyGraphModuleFilter {
|
|
|
11622
12238
|
/** Filters to entities where at least one related entity matches. */
|
|
11623
12239
|
some?: GraphModuleFilter;
|
|
11624
12240
|
}
|
|
11625
|
-
/** A filter to be used against
|
|
12241
|
+
/** A filter to be used against many `PagesModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12242
|
+
export interface MerkleStoreModuleToManyPagesModuleFilter {
|
|
12243
|
+
/** Filters to entities where every related entity matches. */
|
|
12244
|
+
every?: PagesModuleFilter;
|
|
12245
|
+
/** Filters to entities where no related entity matches. */
|
|
12246
|
+
none?: PagesModuleFilter;
|
|
12247
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12248
|
+
some?: PagesModuleFilter;
|
|
12249
|
+
}
|
|
12250
|
+
/** A filter to be used against many `ResourceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12251
|
+
export interface MerkleStoreModuleToManyResourceModuleFilter {
|
|
12252
|
+
/** Filters to entities where every related entity matches. */
|
|
12253
|
+
every?: ResourceModuleFilter;
|
|
12254
|
+
/** Filters to entities where no related entity matches. */
|
|
12255
|
+
none?: ResourceModuleFilter;
|
|
12256
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12257
|
+
some?: ResourceModuleFilter;
|
|
12258
|
+
}
|
|
12259
|
+
/** A filter to be used against many `FunctionDeploymentModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12260
|
+
export interface NamespaceModuleToManyFunctionDeploymentModuleFilter {
|
|
12261
|
+
/** Filters to entities where every related entity matches. */
|
|
12262
|
+
every?: FunctionDeploymentModuleFilter;
|
|
12263
|
+
/** Filters to entities where no related entity matches. */
|
|
12264
|
+
none?: FunctionDeploymentModuleFilter;
|
|
12265
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12266
|
+
some?: FunctionDeploymentModuleFilter;
|
|
12267
|
+
}
|
|
12268
|
+
/** A filter to be used against many `ResourceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12269
|
+
export interface NamespaceModuleToManyResourceModuleFilter {
|
|
12270
|
+
/** Filters to entities where every related entity matches. */
|
|
12271
|
+
every?: ResourceModuleFilter;
|
|
12272
|
+
/** Filters to entities where no related entity matches. */
|
|
12273
|
+
none?: ResourceModuleFilter;
|
|
12274
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12275
|
+
some?: ResourceModuleFilter;
|
|
12276
|
+
}
|
|
12277
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12278
|
+
export interface NamespaceModuleToManyWebhookModuleFilter {
|
|
12279
|
+
/** Filters to entities where every related entity matches. */
|
|
12280
|
+
every?: WebhookModuleFilter;
|
|
12281
|
+
/** Filters to entities where no related entity matches. */
|
|
12282
|
+
none?: WebhookModuleFilter;
|
|
12283
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12284
|
+
some?: WebhookModuleFilter;
|
|
12285
|
+
}
|
|
12286
|
+
/** A filter to be used against many `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12287
|
+
export interface ResourceModuleToManyHttpRouteModuleFilter {
|
|
12288
|
+
/** Filters to entities where every related entity matches. */
|
|
12289
|
+
every?: HttpRouteModuleFilter;
|
|
12290
|
+
/** Filters to entities where no related entity matches. */
|
|
12291
|
+
none?: HttpRouteModuleFilter;
|
|
12292
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12293
|
+
some?: HttpRouteModuleFilter;
|
|
12294
|
+
}
|
|
12295
|
+
/** A filter to be used against JSON List fields. All fields are combined with a logical ‘and.’ */
|
|
11626
12296
|
export interface JSONListFilter {
|
|
11627
12297
|
/** Any array item is equal to the specified value. */
|
|
11628
12298
|
anyEqualTo?: Record<string, unknown>;
|
|
@@ -11661,6 +12331,24 @@ export interface JSONListFilter {
|
|
|
11661
12331
|
/** Overlaps the specified list of values. */
|
|
11662
12332
|
overlaps?: Record<string, unknown>[];
|
|
11663
12333
|
}
|
|
12334
|
+
/** A filter to be used against many `PagesModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12335
|
+
export interface SiteSurfaceModuleToManyPagesModuleFilter {
|
|
12336
|
+
/** Filters to entities where every related entity matches. */
|
|
12337
|
+
every?: PagesModuleFilter;
|
|
12338
|
+
/** Filters to entities where no related entity matches. */
|
|
12339
|
+
none?: PagesModuleFilter;
|
|
12340
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12341
|
+
some?: PagesModuleFilter;
|
|
12342
|
+
}
|
|
12343
|
+
/** A filter to be used against many `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
12344
|
+
export interface StorageModuleToManyHttpRouteModuleFilter {
|
|
12345
|
+
/** Filters to entities where every related entity matches. */
|
|
12346
|
+
every?: HttpRouteModuleFilter;
|
|
12347
|
+
/** Filters to entities where no related entity matches. */
|
|
12348
|
+
none?: HttpRouteModuleFilter;
|
|
12349
|
+
/** Filters to entities where at least one related entity matches. */
|
|
12350
|
+
some?: HttpRouteModuleFilter;
|
|
12351
|
+
}
|
|
11664
12352
|
/** An input for mutations affecting `AgentModule` */
|
|
11665
12353
|
export interface AgentModuleInput {
|
|
11666
12354
|
agentTableId?: string;
|
|
@@ -11906,6 +12594,8 @@ export interface CatalogModuleInput {
|
|
|
11906
12594
|
apisTableName?: string;
|
|
11907
12595
|
appsTableId?: string;
|
|
11908
12596
|
appsTableName?: string;
|
|
12597
|
+
bucketsTableId?: string;
|
|
12598
|
+
bucketsTableName?: string;
|
|
11909
12599
|
databaseId: string;
|
|
11910
12600
|
defaultPermissions?: string[];
|
|
11911
12601
|
domainsTableId?: string;
|
|
@@ -11928,8 +12618,16 @@ export interface CatalogModuleInput {
|
|
|
11928
12618
|
resourcesTableName?: string;
|
|
11929
12619
|
schemaId?: string;
|
|
11930
12620
|
scope: string;
|
|
12621
|
+
sitesAppLinksTableId?: string;
|
|
12622
|
+
sitesAppLinksTableName?: string;
|
|
12623
|
+
sitesDeepLinksTableId?: string;
|
|
12624
|
+
sitesDeepLinksTableName?: string;
|
|
12625
|
+
sitesErrorPagesTableId?: string;
|
|
12626
|
+
sitesErrorPagesTableName?: string;
|
|
11931
12627
|
sitesTableId?: string;
|
|
11932
12628
|
sitesTableName?: string;
|
|
12629
|
+
sitesWebConfigTableId?: string;
|
|
12630
|
+
sitesWebConfigTableName?: string;
|
|
11933
12631
|
}
|
|
11934
12632
|
/** An input for mutations affecting `ComputeLogModule` */
|
|
11935
12633
|
export interface ComputeLogModuleInput {
|
|
@@ -12599,6 +13297,7 @@ export interface FunctionModuleInput {
|
|
|
12599
13297
|
apiName?: string;
|
|
12600
13298
|
bindingsTableId?: string;
|
|
12601
13299
|
bindingsTableName?: string;
|
|
13300
|
+
capabilityBindingsTableId?: string;
|
|
12602
13301
|
databaseId: string;
|
|
12603
13302
|
defaultPermissions?: string[];
|
|
12604
13303
|
definitionsTableId?: string;
|
|
@@ -13025,6 +13724,28 @@ export interface NotificationsModuleInput {
|
|
|
13025
13724
|
suppressionsTableId?: string;
|
|
13026
13725
|
userSettingsTableId?: string;
|
|
13027
13726
|
}
|
|
13727
|
+
/** An input for mutations affecting `PagesModule` */
|
|
13728
|
+
export interface PagesModuleInput {
|
|
13729
|
+
apiName?: string;
|
|
13730
|
+
createdAt?: string;
|
|
13731
|
+
databaseId: string;
|
|
13732
|
+
entityTableId?: string;
|
|
13733
|
+
id?: string;
|
|
13734
|
+
merkleStoreModuleId: string;
|
|
13735
|
+
pagesTableId?: string;
|
|
13736
|
+
policies?: Record<string, unknown>;
|
|
13737
|
+
prefix: string;
|
|
13738
|
+
privateApiName?: string;
|
|
13739
|
+
privateSchemaId?: string;
|
|
13740
|
+
privateSchemaName?: string;
|
|
13741
|
+
provisions?: Record<string, unknown>;
|
|
13742
|
+
publicSchemaId?: string;
|
|
13743
|
+
publicSchemaName?: string;
|
|
13744
|
+
scope: string;
|
|
13745
|
+
siteSurfaceModuleId?: string;
|
|
13746
|
+
sitesTableId?: string;
|
|
13747
|
+
storeNamePrefix?: string;
|
|
13748
|
+
}
|
|
13028
13749
|
/** An input for mutations affecting `PermissionsModule` */
|
|
13029
13750
|
export interface PermissionsModuleInput {
|
|
13030
13751
|
actorTableId?: string;
|
|
@@ -13451,16 +14172,26 @@ export interface SiteSurfaceModuleInput {
|
|
|
13451
14172
|
policies?: Record<string, unknown>;
|
|
13452
14173
|
prefix?: string;
|
|
13453
14174
|
privateApiName?: string;
|
|
14175
|
+
privateSchemaId?: string;
|
|
14176
|
+
privateSchemaName?: string;
|
|
13454
14177
|
provisions?: Record<string, unknown>;
|
|
13455
14178
|
publicSchemaName?: string;
|
|
13456
14179
|
schemaId?: string;
|
|
13457
14180
|
scope: string;
|
|
14181
|
+
siteAppLinksTableId?: string;
|
|
14182
|
+
siteAppLinksTableName?: string;
|
|
14183
|
+
siteDeepLinksTableId?: string;
|
|
14184
|
+
siteDeepLinksTableName?: string;
|
|
14185
|
+
siteErrorPagesTableId?: string;
|
|
14186
|
+
siteErrorPagesTableName?: string;
|
|
13458
14187
|
siteMetadataTableId?: string;
|
|
13459
14188
|
siteMetadataTableName?: string;
|
|
13460
14189
|
siteModulesTableId?: string;
|
|
13461
14190
|
siteModulesTableName?: string;
|
|
13462
14191
|
siteThemesTableId?: string;
|
|
13463
14192
|
siteThemesTableName?: string;
|
|
14193
|
+
siteWebConfigTableId?: string;
|
|
14194
|
+
siteWebConfigTableName?: string;
|
|
13464
14195
|
sitesTableId?: string;
|
|
13465
14196
|
sitesTableName?: string;
|
|
13466
14197
|
}
|
|
@@ -13494,6 +14225,7 @@ export interface StorageModuleInput {
|
|
|
13494
14225
|
bucketsTableId?: string;
|
|
13495
14226
|
bucketsTableName?: string;
|
|
13496
14227
|
cacheTtlSeconds?: number;
|
|
14228
|
+
catalogModuleId?: string;
|
|
13497
14229
|
confirmUploadDelay?: IntervalInput;
|
|
13498
14230
|
databaseId: string;
|
|
13499
14231
|
defaultMaxFileSize?: string;
|
|
@@ -13818,30 +14550,97 @@ export interface BlueprintFilter {
|
|
|
13818
14550
|
/** Filter by the object’s `updatedAt` field. */
|
|
13819
14551
|
updatedAt?: DatetimeFilter;
|
|
13820
14552
|
}
|
|
13821
|
-
/** A filter to be used against `
|
|
13822
|
-
export interface
|
|
14553
|
+
/** A filter to be used against `ApiSurfaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14554
|
+
export interface ApiSurfaceModuleFilter {
|
|
13823
14555
|
/** Checks for all expressions in this list. */
|
|
13824
|
-
and?:
|
|
14556
|
+
and?: ApiSurfaceModuleFilter[];
|
|
13825
14557
|
/** Filter by the object’s `apiName` field. */
|
|
13826
14558
|
apiName?: StringFilter;
|
|
13827
|
-
/** Filter by the object’s `
|
|
13828
|
-
|
|
14559
|
+
/** Filter by the object’s `apiSchemasTableId` field. */
|
|
14560
|
+
apiSchemasTableId?: UUIDFilter;
|
|
14561
|
+
/** Filter by the object’s `apiSchemasTableName` field. */
|
|
14562
|
+
apiSchemasTableName?: StringFilter;
|
|
14563
|
+
/** Filter by the object’s `apiSettingsTableId` field. */
|
|
14564
|
+
apiSettingsTableId?: UUIDFilter;
|
|
14565
|
+
/** Filter by the object’s `apiSettingsTableName` field. */
|
|
14566
|
+
apiSettingsTableName?: StringFilter;
|
|
14567
|
+
/** Filter by the object’s `apisTableId` field. */
|
|
14568
|
+
apisTableId?: UUIDFilter;
|
|
14569
|
+
/** Filter by the object’s `apisTableName` field. */
|
|
14570
|
+
apisTableName?: StringFilter;
|
|
14571
|
+
/** Filter by the object’s `catalogModule` relation. */
|
|
14572
|
+
catalogModule?: CatalogModuleFilter;
|
|
14573
|
+
/** A related `catalogModule` exists. */
|
|
14574
|
+
catalogModuleExists?: boolean;
|
|
14575
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
14576
|
+
catalogModuleId?: UUIDFilter;
|
|
14577
|
+
/** Filter by the object’s `corsSettingsTableId` field. */
|
|
14578
|
+
corsSettingsTableId?: UUIDFilter;
|
|
14579
|
+
/** Filter by the object’s `corsSettingsTableName` field. */
|
|
14580
|
+
corsSettingsTableName?: StringFilter;
|
|
13829
14581
|
/** Filter by the object’s `databaseId` field. */
|
|
13830
14582
|
databaseId?: UUIDFilter;
|
|
13831
|
-
/** Filter by the object’s `
|
|
13832
|
-
|
|
14583
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
14584
|
+
defaultPermissions?: StringListFilter;
|
|
14585
|
+
/** Filter by the object’s `entityField` field. */
|
|
14586
|
+
entityField?: StringFilter;
|
|
13833
14587
|
/** Filter by the object’s `entityTableId` field. */
|
|
13834
14588
|
entityTableId?: UUIDFilter;
|
|
13835
14589
|
/** Filter by the object’s `id` field. */
|
|
13836
14590
|
id?: UUIDFilter;
|
|
13837
|
-
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
13838
|
-
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
13839
|
-
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
13840
|
-
merkleStoreModuleId?: UUIDFilter;
|
|
13841
14591
|
/** Negates the expression. */
|
|
13842
|
-
not?:
|
|
14592
|
+
not?: ApiSurfaceModuleFilter;
|
|
13843
14593
|
/** Checks for any expressions in this list. */
|
|
13844
|
-
or?:
|
|
14594
|
+
or?: ApiSurfaceModuleFilter[];
|
|
14595
|
+
/** Filter by the object’s `policies` field. */
|
|
14596
|
+
policies?: JSONFilter;
|
|
14597
|
+
/** Filter by the object’s `prefix` field. */
|
|
14598
|
+
prefix?: StringFilter;
|
|
14599
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
14600
|
+
privateApiName?: StringFilter;
|
|
14601
|
+
/** Filter by the object’s `provisions` field. */
|
|
14602
|
+
provisions?: JSONFilter;
|
|
14603
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
14604
|
+
publicSchemaName?: StringFilter;
|
|
14605
|
+
/** Filter by the object’s `schemaId` field. */
|
|
14606
|
+
schemaId?: UUIDFilter;
|
|
14607
|
+
/** Filter by the object’s `scope` field. */
|
|
14608
|
+
scope?: StringFilter;
|
|
14609
|
+
}
|
|
14610
|
+
/** A filter to be used against `AppModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14611
|
+
export interface AppModuleFilter {
|
|
14612
|
+
/** Checks for all expressions in this list. */
|
|
14613
|
+
and?: AppModuleFilter[];
|
|
14614
|
+
/** Filter by the object’s `apiName` field. */
|
|
14615
|
+
apiName?: StringFilter;
|
|
14616
|
+
/** Filter by the object’s `appComponentsTableId` field. */
|
|
14617
|
+
appComponentsTableId?: UUIDFilter;
|
|
14618
|
+
/** Filter by the object’s `appComponentsTableName` field. */
|
|
14619
|
+
appComponentsTableName?: StringFilter;
|
|
14620
|
+
/** Filter by the object’s `appsTableId` field. */
|
|
14621
|
+
appsTableId?: UUIDFilter;
|
|
14622
|
+
/** Filter by the object’s `appsTableName` field. */
|
|
14623
|
+
appsTableName?: StringFilter;
|
|
14624
|
+
/** Filter by the object’s `catalogModule` relation. */
|
|
14625
|
+
catalogModule?: CatalogModuleFilter;
|
|
14626
|
+
/** A related `catalogModule` exists. */
|
|
14627
|
+
catalogModuleExists?: boolean;
|
|
14628
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
14629
|
+
catalogModuleId?: UUIDFilter;
|
|
14630
|
+
/** Filter by the object’s `databaseId` field. */
|
|
14631
|
+
databaseId?: UUIDFilter;
|
|
14632
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
14633
|
+
defaultPermissions?: StringListFilter;
|
|
14634
|
+
/** Filter by the object’s `entityField` field. */
|
|
14635
|
+
entityField?: StringFilter;
|
|
14636
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
14637
|
+
entityTableId?: UUIDFilter;
|
|
14638
|
+
/** Filter by the object’s `id` field. */
|
|
14639
|
+
id?: UUIDFilter;
|
|
14640
|
+
/** Negates the expression. */
|
|
14641
|
+
not?: AppModuleFilter;
|
|
14642
|
+
/** Checks for any expressions in this list. */
|
|
14643
|
+
or?: AppModuleFilter[];
|
|
13845
14644
|
/** Filter by the object’s `policies` field. */
|
|
13846
14645
|
policies?: JSONFilter;
|
|
13847
14646
|
/** Filter by the object’s `prefix` field. */
|
|
@@ -13854,43 +14653,55 @@ export interface DbPresetModuleFilter {
|
|
|
13854
14653
|
privateSchemaName?: StringFilter;
|
|
13855
14654
|
/** Filter by the object’s `provisions` field. */
|
|
13856
14655
|
provisions?: JSONFilter;
|
|
13857
|
-
/** Filter by the object’s `publicSchemaId` field. */
|
|
13858
|
-
publicSchemaId?: UUIDFilter;
|
|
13859
14656
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
13860
14657
|
publicSchemaName?: StringFilter;
|
|
14658
|
+
/** Filter by the object’s `schemaId` field. */
|
|
14659
|
+
schemaId?: UUIDFilter;
|
|
13861
14660
|
/** Filter by the object’s `scope` field. */
|
|
13862
14661
|
scope?: StringFilter;
|
|
13863
|
-
/** Filter by the object’s `storeName` field. */
|
|
13864
|
-
storeName?: StringFilter;
|
|
13865
14662
|
}
|
|
13866
|
-
/** A filter to be used against `
|
|
13867
|
-
export interface
|
|
14663
|
+
/** A filter to be used against `DomainModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14664
|
+
export interface DomainModuleFilter {
|
|
13868
14665
|
/** Checks for all expressions in this list. */
|
|
13869
|
-
and?:
|
|
14666
|
+
and?: DomainModuleFilter[];
|
|
13870
14667
|
/** Filter by the object’s `apiName` field. */
|
|
13871
14668
|
apiName?: StringFilter;
|
|
13872
|
-
/** Filter by the object’s `
|
|
13873
|
-
|
|
14669
|
+
/** Filter by the object’s `catalogModule` relation. */
|
|
14670
|
+
catalogModule?: CatalogModuleFilter;
|
|
14671
|
+
/** A related `catalogModule` exists. */
|
|
14672
|
+
catalogModuleExists?: boolean;
|
|
14673
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
14674
|
+
catalogModuleId?: UUIDFilter;
|
|
13874
14675
|
/** Filter by the object’s `databaseId` field. */
|
|
13875
14676
|
databaseId?: UUIDFilter;
|
|
13876
14677
|
/** Filter by the object’s `defaultPermissions` field. */
|
|
13877
14678
|
defaultPermissions?: StringListFilter;
|
|
14679
|
+
/** Filter by the object’s `domainEventsTableId` field. */
|
|
14680
|
+
domainEventsTableId?: UUIDFilter;
|
|
14681
|
+
/** Filter by the object’s `domainEventsTableName` field. */
|
|
14682
|
+
domainEventsTableName?: StringFilter;
|
|
14683
|
+
/** Filter by the object’s `domainVerificationsTableId` field. */
|
|
14684
|
+
domainVerificationsTableId?: UUIDFilter;
|
|
14685
|
+
/** Filter by the object’s `domainVerificationsTableName` field. */
|
|
14686
|
+
domainVerificationsTableName?: StringFilter;
|
|
14687
|
+
/** Filter by the object’s `domainsTableId` field. */
|
|
14688
|
+
domainsTableId?: UUIDFilter;
|
|
14689
|
+
/** Filter by the object’s `domainsTableName` field. */
|
|
14690
|
+
domainsTableName?: StringFilter;
|
|
13878
14691
|
/** Filter by the object’s `entityField` field. */
|
|
13879
14692
|
entityField?: StringFilter;
|
|
13880
14693
|
/** Filter by the object’s `entityTableId` field. */
|
|
13881
14694
|
entityTableId?: UUIDFilter;
|
|
13882
|
-
/** Filter by the object’s `graphsTableId` field. */
|
|
13883
|
-
graphsTableId?: UUIDFilter;
|
|
13884
14695
|
/** Filter by the object’s `id` field. */
|
|
13885
14696
|
id?: UUIDFilter;
|
|
13886
|
-
/** Filter by the object’s `
|
|
13887
|
-
|
|
13888
|
-
/** Filter by the object’s `
|
|
13889
|
-
|
|
14697
|
+
/** Filter by the object’s `managedDomainsTableId` field. */
|
|
14698
|
+
managedDomainsTableId?: UUIDFilter;
|
|
14699
|
+
/** Filter by the object’s `managedDomainsTableName` field. */
|
|
14700
|
+
managedDomainsTableName?: StringFilter;
|
|
13890
14701
|
/** Negates the expression. */
|
|
13891
|
-
not?:
|
|
14702
|
+
not?: DomainModuleFilter;
|
|
13892
14703
|
/** Checks for any expressions in this list. */
|
|
13893
|
-
or?:
|
|
14704
|
+
or?: DomainModuleFilter[];
|
|
13894
14705
|
/** Filter by the object’s `policies` field. */
|
|
13895
14706
|
policies?: JSONFilter;
|
|
13896
14707
|
/** Filter by the object’s `prefix` field. */
|
|
@@ -13903,74 +14714,716 @@ export interface GraphModuleFilter {
|
|
|
13903
14714
|
privateSchemaName?: StringFilter;
|
|
13904
14715
|
/** Filter by the object’s `provisions` field. */
|
|
13905
14716
|
provisions?: JSONFilter;
|
|
13906
|
-
/** Filter by the object’s `publicSchemaId` field. */
|
|
13907
|
-
publicSchemaId?: UUIDFilter;
|
|
13908
14717
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
13909
14718
|
publicSchemaName?: StringFilter;
|
|
14719
|
+
/** Filter by the object’s `routeModules` relation. */
|
|
14720
|
+
routeModules?: DomainModuleToManyRouteModuleFilter;
|
|
14721
|
+
/** `routeModules` exist. */
|
|
14722
|
+
routeModulesExist?: boolean;
|
|
14723
|
+
/** Filter by the object’s `schemaId` field. */
|
|
14724
|
+
schemaId?: UUIDFilter;
|
|
13910
14725
|
/** Filter by the object’s `scope` field. */
|
|
13911
14726
|
scope?: StringFilter;
|
|
13912
14727
|
}
|
|
13913
|
-
/** A filter to be used against
|
|
13914
|
-
export interface
|
|
13915
|
-
/**
|
|
13916
|
-
|
|
13917
|
-
/**
|
|
13918
|
-
|
|
13919
|
-
/**
|
|
13920
|
-
|
|
13921
|
-
/**
|
|
13922
|
-
|
|
13923
|
-
/**
|
|
13924
|
-
|
|
13925
|
-
/**
|
|
13926
|
-
|
|
13927
|
-
/**
|
|
13928
|
-
|
|
13929
|
-
/**
|
|
13930
|
-
|
|
13931
|
-
/**
|
|
13932
|
-
|
|
13933
|
-
/**
|
|
13934
|
-
|
|
13935
|
-
/**
|
|
13936
|
-
|
|
13937
|
-
|
|
13938
|
-
|
|
13939
|
-
|
|
13940
|
-
|
|
13941
|
-
|
|
13942
|
-
|
|
13943
|
-
|
|
13944
|
-
|
|
13945
|
-
|
|
13946
|
-
|
|
13947
|
-
|
|
13948
|
-
|
|
13949
|
-
|
|
13950
|
-
|
|
13951
|
-
|
|
13952
|
-
|
|
13953
|
-
|
|
13954
|
-
|
|
13955
|
-
|
|
13956
|
-
|
|
13957
|
-
|
|
13958
|
-
|
|
13959
|
-
|
|
13960
|
-
|
|
13961
|
-
|
|
13962
|
-
|
|
13963
|
-
/**
|
|
13964
|
-
|
|
13965
|
-
/**
|
|
13966
|
-
|
|
13967
|
-
/**
|
|
13968
|
-
|
|
13969
|
-
/**
|
|
13970
|
-
|
|
13971
|
-
/**
|
|
13972
|
-
|
|
13973
|
-
/**
|
|
14728
|
+
/** A filter to be used against `RouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14729
|
+
export interface RouteModuleFilter {
|
|
14730
|
+
/** Checks for all expressions in this list. */
|
|
14731
|
+
and?: RouteModuleFilter[];
|
|
14732
|
+
/** Filter by the object’s `apiName` field. */
|
|
14733
|
+
apiName?: StringFilter;
|
|
14734
|
+
/** Filter by the object’s `catalogModule` relation. */
|
|
14735
|
+
catalogModule?: CatalogModuleFilter;
|
|
14736
|
+
/** A related `catalogModule` exists. */
|
|
14737
|
+
catalogModuleExists?: boolean;
|
|
14738
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
14739
|
+
catalogModuleId?: UUIDFilter;
|
|
14740
|
+
/** Filter by the object’s `databaseId` field. */
|
|
14741
|
+
databaseId?: UUIDFilter;
|
|
14742
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
14743
|
+
defaultPermissions?: StringListFilter;
|
|
14744
|
+
/** Filter by the object’s `domainModule` relation. */
|
|
14745
|
+
domainModule?: DomainModuleFilter;
|
|
14746
|
+
/** A related `domainModule` exists. */
|
|
14747
|
+
domainModuleExists?: boolean;
|
|
14748
|
+
/** Filter by the object’s `domainModuleId` field. */
|
|
14749
|
+
domainModuleId?: UUIDFilter;
|
|
14750
|
+
/** Filter by the object’s `entityField` field. */
|
|
14751
|
+
entityField?: StringFilter;
|
|
14752
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
14753
|
+
entityTableId?: UUIDFilter;
|
|
14754
|
+
/** Filter by the object’s `hostnameBindingsTableId` field. */
|
|
14755
|
+
hostnameBindingsTableId?: UUIDFilter;
|
|
14756
|
+
/** Filter by the object’s `hostnameBindingsTableName` field. */
|
|
14757
|
+
hostnameBindingsTableName?: StringFilter;
|
|
14758
|
+
/** Filter by the object’s `id` field. */
|
|
14759
|
+
id?: UUIDFilter;
|
|
14760
|
+
/** Negates the expression. */
|
|
14761
|
+
not?: RouteModuleFilter;
|
|
14762
|
+
/** Checks for any expressions in this list. */
|
|
14763
|
+
or?: RouteModuleFilter[];
|
|
14764
|
+
/** Filter by the object’s `policies` field. */
|
|
14765
|
+
policies?: JSONFilter;
|
|
14766
|
+
/** Filter by the object’s `prefix` field. */
|
|
14767
|
+
prefix?: StringFilter;
|
|
14768
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
14769
|
+
privateApiName?: StringFilter;
|
|
14770
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
14771
|
+
privateSchemaId?: UUIDFilter;
|
|
14772
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
14773
|
+
privateSchemaName?: StringFilter;
|
|
14774
|
+
/** Filter by the object’s `provisions` field. */
|
|
14775
|
+
provisions?: JSONFilter;
|
|
14776
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
14777
|
+
publicSchemaName?: StringFilter;
|
|
14778
|
+
/** Filter by the object’s `resolverFunctionName` field. */
|
|
14779
|
+
resolverFunctionName?: StringFilter;
|
|
14780
|
+
/** Filter by the object’s `routeBindingsTableId` field. */
|
|
14781
|
+
routeBindingsTableId?: UUIDFilter;
|
|
14782
|
+
/** Filter by the object’s `routeBindingsTableName` field. */
|
|
14783
|
+
routeBindingsTableName?: StringFilter;
|
|
14784
|
+
/** Filter by the object’s `routesTableId` field. */
|
|
14785
|
+
routesTableId?: UUIDFilter;
|
|
14786
|
+
/** Filter by the object’s `routesTableName` field. */
|
|
14787
|
+
routesTableName?: StringFilter;
|
|
14788
|
+
/** Filter by the object’s `schemaId` field. */
|
|
14789
|
+
schemaId?: UUIDFilter;
|
|
14790
|
+
/** Filter by the object’s `scope` field. */
|
|
14791
|
+
scope?: StringFilter;
|
|
14792
|
+
}
|
|
14793
|
+
/** A filter to be used against `SiteSurfaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14794
|
+
export interface SiteSurfaceModuleFilter {
|
|
14795
|
+
/** Checks for all expressions in this list. */
|
|
14796
|
+
and?: SiteSurfaceModuleFilter[];
|
|
14797
|
+
/** Filter by the object’s `apiName` field. */
|
|
14798
|
+
apiName?: StringFilter;
|
|
14799
|
+
/** Filter by the object’s `catalogModule` relation. */
|
|
14800
|
+
catalogModule?: CatalogModuleFilter;
|
|
14801
|
+
/** A related `catalogModule` exists. */
|
|
14802
|
+
catalogModuleExists?: boolean;
|
|
14803
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
14804
|
+
catalogModuleId?: UUIDFilter;
|
|
14805
|
+
/** Filter by the object’s `databaseId` field. */
|
|
14806
|
+
databaseId?: UUIDFilter;
|
|
14807
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
14808
|
+
defaultPermissions?: StringListFilter;
|
|
14809
|
+
/** Filter by the object’s `entityField` field. */
|
|
14810
|
+
entityField?: StringFilter;
|
|
14811
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
14812
|
+
entityTableId?: UUIDFilter;
|
|
14813
|
+
/** Filter by the object’s `id` field. */
|
|
14814
|
+
id?: UUIDFilter;
|
|
14815
|
+
/** Negates the expression. */
|
|
14816
|
+
not?: SiteSurfaceModuleFilter;
|
|
14817
|
+
/** Checks for any expressions in this list. */
|
|
14818
|
+
or?: SiteSurfaceModuleFilter[];
|
|
14819
|
+
/** Filter by the object’s `pagesModules` relation. */
|
|
14820
|
+
pagesModules?: SiteSurfaceModuleToManyPagesModuleFilter;
|
|
14821
|
+
/** `pagesModules` exist. */
|
|
14822
|
+
pagesModulesExist?: boolean;
|
|
14823
|
+
/** Filter by the object’s `policies` field. */
|
|
14824
|
+
policies?: JSONFilter;
|
|
14825
|
+
/** Filter by the object’s `prefix` field. */
|
|
14826
|
+
prefix?: StringFilter;
|
|
14827
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
14828
|
+
privateApiName?: StringFilter;
|
|
14829
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
14830
|
+
privateSchemaId?: UUIDFilter;
|
|
14831
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
14832
|
+
privateSchemaName?: StringFilter;
|
|
14833
|
+
/** Filter by the object’s `provisions` field. */
|
|
14834
|
+
provisions?: JSONFilter;
|
|
14835
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
14836
|
+
publicSchemaName?: StringFilter;
|
|
14837
|
+
/** Filter by the object’s `schemaId` field. */
|
|
14838
|
+
schemaId?: UUIDFilter;
|
|
14839
|
+
/** Filter by the object’s `scope` field. */
|
|
14840
|
+
scope?: StringFilter;
|
|
14841
|
+
/** Filter by the object’s `siteAppLinksTableId` field. */
|
|
14842
|
+
siteAppLinksTableId?: UUIDFilter;
|
|
14843
|
+
/** Filter by the object’s `siteAppLinksTableName` field. */
|
|
14844
|
+
siteAppLinksTableName?: StringFilter;
|
|
14845
|
+
/** Filter by the object’s `siteDeepLinksTableId` field. */
|
|
14846
|
+
siteDeepLinksTableId?: UUIDFilter;
|
|
14847
|
+
/** Filter by the object’s `siteDeepLinksTableName` field. */
|
|
14848
|
+
siteDeepLinksTableName?: StringFilter;
|
|
14849
|
+
/** Filter by the object’s `siteErrorPagesTableId` field. */
|
|
14850
|
+
siteErrorPagesTableId?: UUIDFilter;
|
|
14851
|
+
/** Filter by the object’s `siteErrorPagesTableName` field. */
|
|
14852
|
+
siteErrorPagesTableName?: StringFilter;
|
|
14853
|
+
/** Filter by the object’s `siteMetadataTableId` field. */
|
|
14854
|
+
siteMetadataTableId?: UUIDFilter;
|
|
14855
|
+
/** Filter by the object’s `siteMetadataTableName` field. */
|
|
14856
|
+
siteMetadataTableName?: StringFilter;
|
|
14857
|
+
/** Filter by the object’s `siteModulesTableId` field. */
|
|
14858
|
+
siteModulesTableId?: UUIDFilter;
|
|
14859
|
+
/** Filter by the object’s `siteModulesTableName` field. */
|
|
14860
|
+
siteModulesTableName?: StringFilter;
|
|
14861
|
+
/** Filter by the object’s `siteThemesTableId` field. */
|
|
14862
|
+
siteThemesTableId?: UUIDFilter;
|
|
14863
|
+
/** Filter by the object’s `siteThemesTableName` field. */
|
|
14864
|
+
siteThemesTableName?: StringFilter;
|
|
14865
|
+
/** Filter by the object’s `siteWebConfigTableId` field. */
|
|
14866
|
+
siteWebConfigTableId?: UUIDFilter;
|
|
14867
|
+
/** Filter by the object’s `siteWebConfigTableName` field. */
|
|
14868
|
+
siteWebConfigTableName?: StringFilter;
|
|
14869
|
+
/** Filter by the object’s `sitesTableId` field. */
|
|
14870
|
+
sitesTableId?: UUIDFilter;
|
|
14871
|
+
/** Filter by the object’s `sitesTableName` field. */
|
|
14872
|
+
sitesTableName?: StringFilter;
|
|
14873
|
+
}
|
|
14874
|
+
/** A filter to be used against `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14875
|
+
export interface WebhookModuleFilter {
|
|
14876
|
+
/** Checks for all expressions in this list. */
|
|
14877
|
+
and?: WebhookModuleFilter[];
|
|
14878
|
+
/** Filter by the object’s `apiName` field. */
|
|
14879
|
+
apiName?: StringFilter;
|
|
14880
|
+
/** Filter by the object’s `databaseId` field. */
|
|
14881
|
+
databaseId?: UUIDFilter;
|
|
14882
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
14883
|
+
defaultPermissions?: StringListFilter;
|
|
14884
|
+
/** Filter by the object’s `entityField` field. */
|
|
14885
|
+
entityField?: StringFilter;
|
|
14886
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
14887
|
+
entityTableId?: UUIDFilter;
|
|
14888
|
+
/** Filter by the object’s `functionInvocationModule` relation. */
|
|
14889
|
+
functionInvocationModule?: FunctionInvocationModuleFilter;
|
|
14890
|
+
/** A related `functionInvocationModule` exists. */
|
|
14891
|
+
functionInvocationModuleExists?: boolean;
|
|
14892
|
+
/** Filter by the object’s `functionInvocationModuleId` field. */
|
|
14893
|
+
functionInvocationModuleId?: UUIDFilter;
|
|
14894
|
+
/** Filter by the object’s `functionModule` relation. */
|
|
14895
|
+
functionModule?: FunctionModuleFilter;
|
|
14896
|
+
/** A related `functionModule` exists. */
|
|
14897
|
+
functionModuleExists?: boolean;
|
|
14898
|
+
/** Filter by the object’s `functionModuleId` field. */
|
|
14899
|
+
functionModuleId?: UUIDFilter;
|
|
14900
|
+
/** Filter by the object’s `id` field. */
|
|
14901
|
+
id?: UUIDFilter;
|
|
14902
|
+
/** Filter by the object’s `infraSecretsModule` relation. */
|
|
14903
|
+
infraSecretsModule?: InfraSecretsModuleFilter;
|
|
14904
|
+
/** A related `infraSecretsModule` exists. */
|
|
14905
|
+
infraSecretsModuleExists?: boolean;
|
|
14906
|
+
/** Filter by the object’s `infraSecretsModuleId` field. */
|
|
14907
|
+
infraSecretsModuleId?: UUIDFilter;
|
|
14908
|
+
/** Filter by the object’s `namespaceModule` relation. */
|
|
14909
|
+
namespaceModule?: NamespaceModuleFilter;
|
|
14910
|
+
/** A related `namespaceModule` exists. */
|
|
14911
|
+
namespaceModuleExists?: boolean;
|
|
14912
|
+
/** Filter by the object’s `namespaceModuleId` field. */
|
|
14913
|
+
namespaceModuleId?: UUIDFilter;
|
|
14914
|
+
/** Negates the expression. */
|
|
14915
|
+
not?: WebhookModuleFilter;
|
|
14916
|
+
/** Checks for any expressions in this list. */
|
|
14917
|
+
or?: WebhookModuleFilter[];
|
|
14918
|
+
/** Filter by the object’s `policies` field. */
|
|
14919
|
+
policies?: JSONFilter;
|
|
14920
|
+
/** Filter by the object’s `prefix` field. */
|
|
14921
|
+
prefix?: StringFilter;
|
|
14922
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
14923
|
+
privateApiName?: StringFilter;
|
|
14924
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
14925
|
+
privateSchemaId?: UUIDFilter;
|
|
14926
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
14927
|
+
privateSchemaName?: StringFilter;
|
|
14928
|
+
/** Filter by the object’s `provisions` field. */
|
|
14929
|
+
provisions?: JSONFilter;
|
|
14930
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
14931
|
+
publicSchemaName?: StringFilter;
|
|
14932
|
+
/** Filter by the object’s `schemaId` field. */
|
|
14933
|
+
schemaId?: UUIDFilter;
|
|
14934
|
+
/** Filter by the object’s `scope` field. */
|
|
14935
|
+
scope?: StringFilter;
|
|
14936
|
+
/** Filter by the object’s `webhookEndpointsTableId` field. */
|
|
14937
|
+
webhookEndpointsTableId?: UUIDFilter;
|
|
14938
|
+
/** Filter by the object’s `webhookEndpointsTableName` field. */
|
|
14939
|
+
webhookEndpointsTableName?: StringFilter;
|
|
14940
|
+
/** Filter by the object’s `webhookEventsTableId` field. */
|
|
14941
|
+
webhookEventsTableId?: UUIDFilter;
|
|
14942
|
+
/** Filter by the object’s `webhookEventsTableName` field. */
|
|
14943
|
+
webhookEventsTableName?: StringFilter;
|
|
14944
|
+
}
|
|
14945
|
+
/** A filter to be used against `FunctionDeploymentModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14946
|
+
export interface FunctionDeploymentModuleFilter {
|
|
14947
|
+
/** Checks for all expressions in this list. */
|
|
14948
|
+
and?: FunctionDeploymentModuleFilter[];
|
|
14949
|
+
/** Filter by the object’s `apiName` field. */
|
|
14950
|
+
apiName?: StringFilter;
|
|
14951
|
+
/** Filter by the object’s `databaseId` field. */
|
|
14952
|
+
databaseId?: UUIDFilter;
|
|
14953
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
14954
|
+
defaultPermissions?: StringListFilter;
|
|
14955
|
+
/** Filter by the object’s `deploymentEventsTableId` field. */
|
|
14956
|
+
deploymentEventsTableId?: UUIDFilter;
|
|
14957
|
+
/** Filter by the object’s `deploymentEventsTableName` field. */
|
|
14958
|
+
deploymentEventsTableName?: StringFilter;
|
|
14959
|
+
/** Filter by the object’s `deploymentsTableId` field. */
|
|
14960
|
+
deploymentsTableId?: UUIDFilter;
|
|
14961
|
+
/** Filter by the object’s `deploymentsTableName` field. */
|
|
14962
|
+
deploymentsTableName?: StringFilter;
|
|
14963
|
+
/** Filter by the object’s `entityField` field. */
|
|
14964
|
+
entityField?: StringFilter;
|
|
14965
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
14966
|
+
entityTableId?: UUIDFilter;
|
|
14967
|
+
/** Filter by the object’s `functionModule` relation. */
|
|
14968
|
+
functionModule?: FunctionModuleFilter;
|
|
14969
|
+
/** A related `functionModule` exists. */
|
|
14970
|
+
functionModuleExists?: boolean;
|
|
14971
|
+
/** Filter by the object’s `functionModuleId` field. */
|
|
14972
|
+
functionModuleId?: UUIDFilter;
|
|
14973
|
+
/** Filter by the object’s `id` field. */
|
|
14974
|
+
id?: UUIDFilter;
|
|
14975
|
+
/** Filter by the object’s `namespaceModule` relation. */
|
|
14976
|
+
namespaceModule?: NamespaceModuleFilter;
|
|
14977
|
+
/** A related `namespaceModule` exists. */
|
|
14978
|
+
namespaceModuleExists?: boolean;
|
|
14979
|
+
/** Filter by the object’s `namespaceModuleId` field. */
|
|
14980
|
+
namespaceModuleId?: UUIDFilter;
|
|
14981
|
+
/** Negates the expression. */
|
|
14982
|
+
not?: FunctionDeploymentModuleFilter;
|
|
14983
|
+
/** Checks for any expressions in this list. */
|
|
14984
|
+
or?: FunctionDeploymentModuleFilter[];
|
|
14985
|
+
/** Filter by the object’s `policies` field. */
|
|
14986
|
+
policies?: JSONFilter;
|
|
14987
|
+
/** Filter by the object’s `prefix` field. */
|
|
14988
|
+
prefix?: StringFilter;
|
|
14989
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
14990
|
+
privateApiName?: StringFilter;
|
|
14991
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
14992
|
+
privateSchemaId?: UUIDFilter;
|
|
14993
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
14994
|
+
privateSchemaName?: StringFilter;
|
|
14995
|
+
/** Filter by the object’s `provisions` field. */
|
|
14996
|
+
provisions?: JSONFilter;
|
|
14997
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
14998
|
+
publicSchemaName?: StringFilter;
|
|
14999
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15000
|
+
schemaId?: UUIDFilter;
|
|
15001
|
+
/** Filter by the object’s `scope` field. */
|
|
15002
|
+
scope?: StringFilter;
|
|
15003
|
+
}
|
|
15004
|
+
/** A filter to be used against `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15005
|
+
export interface HttpRouteModuleFilter {
|
|
15006
|
+
/** Checks for all expressions in this list. */
|
|
15007
|
+
and?: HttpRouteModuleFilter[];
|
|
15008
|
+
/** Filter by the object’s `apiName` field. */
|
|
15009
|
+
apiName?: StringFilter;
|
|
15010
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15011
|
+
databaseId?: UUIDFilter;
|
|
15012
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15013
|
+
defaultPermissions?: StringListFilter;
|
|
15014
|
+
/** Filter by the object’s `entityField` field. */
|
|
15015
|
+
entityField?: StringFilter;
|
|
15016
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15017
|
+
entityTableId?: UUIDFilter;
|
|
15018
|
+
/** Filter by the object’s `functionModule` relation. */
|
|
15019
|
+
functionModule?: FunctionModuleFilter;
|
|
15020
|
+
/** A related `functionModule` exists. */
|
|
15021
|
+
functionModuleExists?: boolean;
|
|
15022
|
+
/** Filter by the object’s `functionModuleId` field. */
|
|
15023
|
+
functionModuleId?: UUIDFilter;
|
|
15024
|
+
/** Filter by the object’s `httpRoutesTableId` field. */
|
|
15025
|
+
httpRoutesTableId?: UUIDFilter;
|
|
15026
|
+
/** Filter by the object’s `httpRoutesTableName` field. */
|
|
15027
|
+
httpRoutesTableName?: StringFilter;
|
|
15028
|
+
/** Filter by the object’s `id` field. */
|
|
15029
|
+
id?: UUIDFilter;
|
|
15030
|
+
/** Negates the expression. */
|
|
15031
|
+
not?: HttpRouteModuleFilter;
|
|
15032
|
+
/** Checks for any expressions in this list. */
|
|
15033
|
+
or?: HttpRouteModuleFilter[];
|
|
15034
|
+
/** Filter by the object’s `policies` field. */
|
|
15035
|
+
policies?: JSONFilter;
|
|
15036
|
+
/** Filter by the object’s `prefix` field. */
|
|
15037
|
+
prefix?: StringFilter;
|
|
15038
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15039
|
+
privateApiName?: StringFilter;
|
|
15040
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15041
|
+
privateSchemaId?: UUIDFilter;
|
|
15042
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15043
|
+
privateSchemaName?: StringFilter;
|
|
15044
|
+
/** Filter by the object’s `provisions` field. */
|
|
15045
|
+
provisions?: JSONFilter;
|
|
15046
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15047
|
+
publicSchemaName?: StringFilter;
|
|
15048
|
+
/** Filter by the object’s `resolverFunctionName` field. */
|
|
15049
|
+
resolverFunctionName?: StringFilter;
|
|
15050
|
+
/** Filter by the object’s `resourceModule` relation. */
|
|
15051
|
+
resourceModule?: ResourceModuleFilter;
|
|
15052
|
+
/** A related `resourceModule` exists. */
|
|
15053
|
+
resourceModuleExists?: boolean;
|
|
15054
|
+
/** Filter by the object’s `resourceModuleId` field. */
|
|
15055
|
+
resourceModuleId?: UUIDFilter;
|
|
15056
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15057
|
+
schemaId?: UUIDFilter;
|
|
15058
|
+
/** Filter by the object’s `scope` field. */
|
|
15059
|
+
scope?: StringFilter;
|
|
15060
|
+
/** Filter by the object’s `storageModule` relation. */
|
|
15061
|
+
storageModule?: StorageModuleFilter;
|
|
15062
|
+
/** A related `storageModule` exists. */
|
|
15063
|
+
storageModuleExists?: boolean;
|
|
15064
|
+
/** Filter by the object’s `storageModuleId` field. */
|
|
15065
|
+
storageModuleId?: UUIDFilter;
|
|
15066
|
+
}
|
|
15067
|
+
/** A filter to be used against `GraphExecutionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15068
|
+
export interface GraphExecutionModuleFilter {
|
|
15069
|
+
/** Checks for all expressions in this list. */
|
|
15070
|
+
and?: GraphExecutionModuleFilter[];
|
|
15071
|
+
/** Filter by the object’s `apiName` field. */
|
|
15072
|
+
apiName?: StringFilter;
|
|
15073
|
+
/** Filter by the object’s `createdAt` field. */
|
|
15074
|
+
createdAt?: DatetimeFilter;
|
|
15075
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15076
|
+
databaseId?: UUIDFilter;
|
|
15077
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15078
|
+
defaultPermissions?: StringListFilter;
|
|
15079
|
+
/** Filter by the object’s `entityField` field. */
|
|
15080
|
+
entityField?: StringFilter;
|
|
15081
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15082
|
+
entityTableId?: UUIDFilter;
|
|
15083
|
+
/** Filter by the object’s `executionsTableId` field. */
|
|
15084
|
+
executionsTableId?: UUIDFilter;
|
|
15085
|
+
/** Filter by the object’s `executionsTableName` field. */
|
|
15086
|
+
executionsTableName?: StringFilter;
|
|
15087
|
+
/** Filter by the object’s `graphModule` relation. */
|
|
15088
|
+
graphModule?: GraphModuleFilter;
|
|
15089
|
+
/** Filter by the object’s `graphModuleId` field. */
|
|
15090
|
+
graphModuleId?: UUIDFilter;
|
|
15091
|
+
/** Filter by the object’s `id` field. */
|
|
15092
|
+
id?: UUIDFilter;
|
|
15093
|
+
/** Filter by the object’s `nodeStatesTableId` field. */
|
|
15094
|
+
nodeStatesTableId?: UUIDFilter;
|
|
15095
|
+
/** Filter by the object’s `nodeStatesTableName` field. */
|
|
15096
|
+
nodeStatesTableName?: StringFilter;
|
|
15097
|
+
/** Negates the expression. */
|
|
15098
|
+
not?: GraphExecutionModuleFilter;
|
|
15099
|
+
/** Checks for any expressions in this list. */
|
|
15100
|
+
or?: GraphExecutionModuleFilter[];
|
|
15101
|
+
/** Filter by the object’s `outputsTableId` field. */
|
|
15102
|
+
outputsTableId?: UUIDFilter;
|
|
15103
|
+
/** Filter by the object’s `outputsTableName` field. */
|
|
15104
|
+
outputsTableName?: StringFilter;
|
|
15105
|
+
/** Filter by the object’s `policies` field. */
|
|
15106
|
+
policies?: JSONFilter;
|
|
15107
|
+
/** Filter by the object’s `prefix` field. */
|
|
15108
|
+
prefix?: StringFilter;
|
|
15109
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15110
|
+
privateApiName?: StringFilter;
|
|
15111
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15112
|
+
privateSchemaId?: UUIDFilter;
|
|
15113
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15114
|
+
privateSchemaName?: StringFilter;
|
|
15115
|
+
/** Filter by the object’s `provisions` field. */
|
|
15116
|
+
provisions?: JSONFilter;
|
|
15117
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15118
|
+
publicSchemaName?: StringFilter;
|
|
15119
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15120
|
+
schemaId?: UUIDFilter;
|
|
15121
|
+
/** Filter by the object’s `scope` field. */
|
|
15122
|
+
scope?: StringFilter;
|
|
15123
|
+
}
|
|
15124
|
+
/** A filter to be used against `DbPresetModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15125
|
+
export interface DbPresetModuleFilter {
|
|
15126
|
+
/** Checks for all expressions in this list. */
|
|
15127
|
+
and?: DbPresetModuleFilter[];
|
|
15128
|
+
/** Filter by the object’s `apiName` field. */
|
|
15129
|
+
apiName?: StringFilter;
|
|
15130
|
+
/** Filter by the object’s `createdAt` field. */
|
|
15131
|
+
createdAt?: DatetimeFilter;
|
|
15132
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15133
|
+
databaseId?: UUIDFilter;
|
|
15134
|
+
/** Filter by the object’s `dbPresetsTableId` field. */
|
|
15135
|
+
dbPresetsTableId?: UUIDFilter;
|
|
15136
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15137
|
+
entityTableId?: UUIDFilter;
|
|
15138
|
+
/** Filter by the object’s `id` field. */
|
|
15139
|
+
id?: UUIDFilter;
|
|
15140
|
+
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
15141
|
+
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
15142
|
+
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
15143
|
+
merkleStoreModuleId?: UUIDFilter;
|
|
15144
|
+
/** Negates the expression. */
|
|
15145
|
+
not?: DbPresetModuleFilter;
|
|
15146
|
+
/** Checks for any expressions in this list. */
|
|
15147
|
+
or?: DbPresetModuleFilter[];
|
|
15148
|
+
/** Filter by the object’s `policies` field. */
|
|
15149
|
+
policies?: JSONFilter;
|
|
15150
|
+
/** Filter by the object’s `prefix` field. */
|
|
15151
|
+
prefix?: StringFilter;
|
|
15152
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15153
|
+
privateApiName?: StringFilter;
|
|
15154
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15155
|
+
privateSchemaId?: UUIDFilter;
|
|
15156
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15157
|
+
privateSchemaName?: StringFilter;
|
|
15158
|
+
/** Filter by the object’s `provisions` field. */
|
|
15159
|
+
provisions?: JSONFilter;
|
|
15160
|
+
/** Filter by the object’s `publicSchemaId` field. */
|
|
15161
|
+
publicSchemaId?: UUIDFilter;
|
|
15162
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15163
|
+
publicSchemaName?: StringFilter;
|
|
15164
|
+
/** Filter by the object’s `scope` field. */
|
|
15165
|
+
scope?: StringFilter;
|
|
15166
|
+
/** Filter by the object’s `storeName` field. */
|
|
15167
|
+
storeName?: StringFilter;
|
|
15168
|
+
}
|
|
15169
|
+
/** A filter to be used against `GraphModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15170
|
+
export interface GraphModuleFilter {
|
|
15171
|
+
/** Checks for all expressions in this list. */
|
|
15172
|
+
and?: GraphModuleFilter[];
|
|
15173
|
+
/** Filter by the object’s `apiName` field. */
|
|
15174
|
+
apiName?: StringFilter;
|
|
15175
|
+
/** Filter by the object’s `createdAt` field. */
|
|
15176
|
+
createdAt?: DatetimeFilter;
|
|
15177
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15178
|
+
databaseId?: UUIDFilter;
|
|
15179
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15180
|
+
defaultPermissions?: StringListFilter;
|
|
15181
|
+
/** Filter by the object’s `entityField` field. */
|
|
15182
|
+
entityField?: StringFilter;
|
|
15183
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15184
|
+
entityTableId?: UUIDFilter;
|
|
15185
|
+
/** Filter by the object’s `graphExecutionModules` relation. */
|
|
15186
|
+
graphExecutionModules?: GraphModuleToManyGraphExecutionModuleFilter;
|
|
15187
|
+
/** `graphExecutionModules` exist. */
|
|
15188
|
+
graphExecutionModulesExist?: boolean;
|
|
15189
|
+
/** Filter by the object’s `graphsTableId` field. */
|
|
15190
|
+
graphsTableId?: UUIDFilter;
|
|
15191
|
+
/** Filter by the object’s `id` field. */
|
|
15192
|
+
id?: UUIDFilter;
|
|
15193
|
+
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
15194
|
+
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
15195
|
+
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
15196
|
+
merkleStoreModuleId?: UUIDFilter;
|
|
15197
|
+
/** Negates the expression. */
|
|
15198
|
+
not?: GraphModuleFilter;
|
|
15199
|
+
/** Checks for any expressions in this list. */
|
|
15200
|
+
or?: GraphModuleFilter[];
|
|
15201
|
+
/** Filter by the object’s `policies` field. */
|
|
15202
|
+
policies?: JSONFilter;
|
|
15203
|
+
/** Filter by the object’s `prefix` field. */
|
|
15204
|
+
prefix?: StringFilter;
|
|
15205
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15206
|
+
privateApiName?: StringFilter;
|
|
15207
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15208
|
+
privateSchemaId?: UUIDFilter;
|
|
15209
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15210
|
+
privateSchemaName?: StringFilter;
|
|
15211
|
+
/** Filter by the object’s `provisions` field. */
|
|
15212
|
+
provisions?: JSONFilter;
|
|
15213
|
+
/** Filter by the object’s `publicSchemaId` field. */
|
|
15214
|
+
publicSchemaId?: UUIDFilter;
|
|
15215
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15216
|
+
publicSchemaName?: StringFilter;
|
|
15217
|
+
/** Filter by the object’s `scope` field. */
|
|
15218
|
+
scope?: StringFilter;
|
|
15219
|
+
}
|
|
15220
|
+
/** A filter to be used against `PagesModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15221
|
+
export interface PagesModuleFilter {
|
|
15222
|
+
/** Checks for all expressions in this list. */
|
|
15223
|
+
and?: PagesModuleFilter[];
|
|
15224
|
+
/** Filter by the object’s `apiName` field. */
|
|
15225
|
+
apiName?: StringFilter;
|
|
15226
|
+
/** Filter by the object’s `createdAt` field. */
|
|
15227
|
+
createdAt?: DatetimeFilter;
|
|
15228
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15229
|
+
databaseId?: UUIDFilter;
|
|
15230
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15231
|
+
entityTableId?: UUIDFilter;
|
|
15232
|
+
/** Filter by the object’s `id` field. */
|
|
15233
|
+
id?: UUIDFilter;
|
|
15234
|
+
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
15235
|
+
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
15236
|
+
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
15237
|
+
merkleStoreModuleId?: UUIDFilter;
|
|
15238
|
+
/** Negates the expression. */
|
|
15239
|
+
not?: PagesModuleFilter;
|
|
15240
|
+
/** Checks for any expressions in this list. */
|
|
15241
|
+
or?: PagesModuleFilter[];
|
|
15242
|
+
/** Filter by the object’s `pagesTableId` field. */
|
|
15243
|
+
pagesTableId?: UUIDFilter;
|
|
15244
|
+
/** Filter by the object’s `policies` field. */
|
|
15245
|
+
policies?: JSONFilter;
|
|
15246
|
+
/** Filter by the object’s `prefix` field. */
|
|
15247
|
+
prefix?: StringFilter;
|
|
15248
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15249
|
+
privateApiName?: StringFilter;
|
|
15250
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15251
|
+
privateSchemaId?: UUIDFilter;
|
|
15252
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15253
|
+
privateSchemaName?: StringFilter;
|
|
15254
|
+
/** Filter by the object’s `provisions` field. */
|
|
15255
|
+
provisions?: JSONFilter;
|
|
15256
|
+
/** Filter by the object’s `publicSchemaId` field. */
|
|
15257
|
+
publicSchemaId?: UUIDFilter;
|
|
15258
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15259
|
+
publicSchemaName?: StringFilter;
|
|
15260
|
+
/** Filter by the object’s `scope` field. */
|
|
15261
|
+
scope?: StringFilter;
|
|
15262
|
+
/** Filter by the object’s `siteSurfaceModule` relation. */
|
|
15263
|
+
siteSurfaceModule?: SiteSurfaceModuleFilter;
|
|
15264
|
+
/** A related `siteSurfaceModule` exists. */
|
|
15265
|
+
siteSurfaceModuleExists?: boolean;
|
|
15266
|
+
/** Filter by the object’s `siteSurfaceModuleId` field. */
|
|
15267
|
+
siteSurfaceModuleId?: UUIDFilter;
|
|
15268
|
+
/** Filter by the object’s `sitesTableId` field. */
|
|
15269
|
+
sitesTableId?: UUIDFilter;
|
|
15270
|
+
/** Filter by the object’s `storeNamePrefix` field. */
|
|
15271
|
+
storeNamePrefix?: StringFilter;
|
|
15272
|
+
}
|
|
15273
|
+
/** A filter to be used against `ResourceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15274
|
+
export interface ResourceModuleFilter {
|
|
15275
|
+
/** Checks for all expressions in this list. */
|
|
15276
|
+
and?: ResourceModuleFilter[];
|
|
15277
|
+
/** Filter by the object’s `apiName` field. */
|
|
15278
|
+
apiName?: StringFilter;
|
|
15279
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15280
|
+
databaseId?: UUIDFilter;
|
|
15281
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15282
|
+
defaultPermissions?: StringListFilter;
|
|
15283
|
+
/** Filter by the object’s `entityField` field. */
|
|
15284
|
+
entityField?: StringFilter;
|
|
15285
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15286
|
+
entityTableId?: UUIDFilter;
|
|
15287
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
15288
|
+
httpRouteModules?: ResourceModuleToManyHttpRouteModuleFilter;
|
|
15289
|
+
/** `httpRouteModules` exist. */
|
|
15290
|
+
httpRouteModulesExist?: boolean;
|
|
15291
|
+
/** Filter by the object’s `id` field. */
|
|
15292
|
+
id?: UUIDFilter;
|
|
15293
|
+
/** Filter by the object’s `installationStoreName` field. */
|
|
15294
|
+
installationStoreName?: StringFilter;
|
|
15295
|
+
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
15296
|
+
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
15297
|
+
/** A related `merkleStoreModule` exists. */
|
|
15298
|
+
merkleStoreModuleExists?: boolean;
|
|
15299
|
+
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
15300
|
+
merkleStoreModuleId?: UUIDFilter;
|
|
15301
|
+
/** Filter by the object’s `namespaceModule` relation. */
|
|
15302
|
+
namespaceModule?: NamespaceModuleFilter;
|
|
15303
|
+
/** A related `namespaceModule` exists. */
|
|
15304
|
+
namespaceModuleExists?: boolean;
|
|
15305
|
+
/** Filter by the object’s `namespaceModuleId` field. */
|
|
15306
|
+
namespaceModuleId?: UUIDFilter;
|
|
15307
|
+
/** Negates the expression. */
|
|
15308
|
+
not?: ResourceModuleFilter;
|
|
15309
|
+
/** Checks for any expressions in this list. */
|
|
15310
|
+
or?: ResourceModuleFilter[];
|
|
15311
|
+
/** Filter by the object’s `policies` field. */
|
|
15312
|
+
policies?: JSONFilter;
|
|
15313
|
+
/** Filter by the object’s `prefix` field. */
|
|
15314
|
+
prefix?: StringFilter;
|
|
15315
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15316
|
+
privateApiName?: StringFilter;
|
|
15317
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15318
|
+
privateSchemaId?: UUIDFilter;
|
|
15319
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15320
|
+
privateSchemaName?: StringFilter;
|
|
15321
|
+
/** Filter by the object’s `provisions` field. */
|
|
15322
|
+
provisions?: JSONFilter;
|
|
15323
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15324
|
+
publicSchemaName?: StringFilter;
|
|
15325
|
+
/** Filter by the object’s `requirementsStateViewName` field. */
|
|
15326
|
+
requirementsStateViewName?: StringFilter;
|
|
15327
|
+
/** Filter by the object’s `resolvedRequirementsViewName` field. */
|
|
15328
|
+
resolvedRequirementsViewName?: StringFilter;
|
|
15329
|
+
/** Filter by the object’s `resourceBillingRollupFunction` field. */
|
|
15330
|
+
resourceBillingRollupFunction?: StringFilter;
|
|
15331
|
+
/** Filter by the object’s `resourceDefinitionsTableId` field. */
|
|
15332
|
+
resourceDefinitionsTableId?: UUIDFilter;
|
|
15333
|
+
/** Filter by the object’s `resourceDefinitionsTableName` field. */
|
|
15334
|
+
resourceDefinitionsTableName?: StringFilter;
|
|
15335
|
+
/** Filter by the object’s `resourceEventsTableId` field. */
|
|
15336
|
+
resourceEventsTableId?: UUIDFilter;
|
|
15337
|
+
/** Filter by the object’s `resourceEventsTableName` field. */
|
|
15338
|
+
resourceEventsTableName?: StringFilter;
|
|
15339
|
+
/** Filter by the object’s `resourceInstallationsTableId` field. */
|
|
15340
|
+
resourceInstallationsTableId?: UUIDFilter;
|
|
15341
|
+
/** Filter by the object’s `resourceInstallationsTableName` field. */
|
|
15342
|
+
resourceInstallationsTableName?: StringFilter;
|
|
15343
|
+
/** Filter by the object’s `resourceStatusChecksTableId` field. */
|
|
15344
|
+
resourceStatusChecksTableId?: UUIDFilter;
|
|
15345
|
+
/** Filter by the object’s `resourceStatusChecksTableName` field. */
|
|
15346
|
+
resourceStatusChecksTableName?: StringFilter;
|
|
15347
|
+
/** Filter by the object’s `resourceUsageLogTableId` field. */
|
|
15348
|
+
resourceUsageLogTableId?: UUIDFilter;
|
|
15349
|
+
/** Filter by the object’s `resourceUsageLogTableName` field. */
|
|
15350
|
+
resourceUsageLogTableName?: StringFilter;
|
|
15351
|
+
/** Filter by the object’s `resourceUsageSummaryTableId` field. */
|
|
15352
|
+
resourceUsageSummaryTableId?: UUIDFilter;
|
|
15353
|
+
/** Filter by the object’s `resourceUsageSummaryTableName` field. */
|
|
15354
|
+
resourceUsageSummaryTableName?: StringFilter;
|
|
15355
|
+
/** Filter by the object’s `resourcesTableId` field. */
|
|
15356
|
+
resourcesTableId?: UUIDFilter;
|
|
15357
|
+
/** Filter by the object’s `resourcesTableName` field. */
|
|
15358
|
+
resourcesTableName?: StringFilter;
|
|
15359
|
+
/** Filter by the object’s `rollupResourceUsageSummaryFunction` field. */
|
|
15360
|
+
rollupResourceUsageSummaryFunction?: StringFilter;
|
|
15361
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15362
|
+
schemaId?: UUIDFilter;
|
|
15363
|
+
/** Filter by the object’s `scope` field. */
|
|
15364
|
+
scope?: StringFilter;
|
|
15365
|
+
}
|
|
15366
|
+
/** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
|
|
15367
|
+
export interface UUIDFilter {
|
|
15368
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
15369
|
+
distinctFrom?: string;
|
|
15370
|
+
/** Equal to the specified value. */
|
|
15371
|
+
equalTo?: string;
|
|
15372
|
+
/** Greater than the specified value. */
|
|
15373
|
+
greaterThan?: string;
|
|
15374
|
+
/** Greater than or equal to the specified value. */
|
|
15375
|
+
greaterThanOrEqualTo?: string;
|
|
15376
|
+
/** Included in the specified list. */
|
|
15377
|
+
in?: string[];
|
|
15378
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
15379
|
+
isNull?: boolean;
|
|
15380
|
+
/** Less than the specified value. */
|
|
15381
|
+
lessThan?: string;
|
|
15382
|
+
/** Less than or equal to the specified value. */
|
|
15383
|
+
lessThanOrEqualTo?: string;
|
|
15384
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
15385
|
+
notDistinctFrom?: string;
|
|
15386
|
+
/** Not equal to the specified value. */
|
|
15387
|
+
notEqualTo?: string;
|
|
15388
|
+
/** Not included in the specified list. */
|
|
15389
|
+
notIn?: string[];
|
|
15390
|
+
}
|
|
15391
|
+
/** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */
|
|
15392
|
+
export interface DatetimeFilter {
|
|
15393
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
15394
|
+
distinctFrom?: string;
|
|
15395
|
+
/** Equal to the specified value. */
|
|
15396
|
+
equalTo?: string;
|
|
15397
|
+
/** Greater than the specified value. */
|
|
15398
|
+
greaterThan?: string;
|
|
15399
|
+
/** Greater than or equal to the specified value. */
|
|
15400
|
+
greaterThanOrEqualTo?: string;
|
|
15401
|
+
/** Included in the specified list. */
|
|
15402
|
+
in?: string[];
|
|
15403
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
15404
|
+
isNull?: boolean;
|
|
15405
|
+
/** Less than the specified value. */
|
|
15406
|
+
lessThan?: string;
|
|
15407
|
+
/** Less than or equal to the specified value. */
|
|
15408
|
+
lessThanOrEqualTo?: string;
|
|
15409
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
15410
|
+
notDistinctFrom?: string;
|
|
15411
|
+
/** Not equal to the specified value. */
|
|
15412
|
+
notEqualTo?: string;
|
|
15413
|
+
/** Not included in the specified list. */
|
|
15414
|
+
notIn?: string[];
|
|
15415
|
+
}
|
|
15416
|
+
/** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */
|
|
15417
|
+
export interface JSONFilter {
|
|
15418
|
+
/** Contained by the specified JSON. */
|
|
15419
|
+
containedBy?: Record<string, unknown>;
|
|
15420
|
+
/** Contains the specified JSON. */
|
|
15421
|
+
contains?: Record<string, unknown>;
|
|
15422
|
+
/** Contains all of the specified keys. */
|
|
15423
|
+
containsAllKeys?: string[];
|
|
15424
|
+
/** Contains any of the specified keys. */
|
|
15425
|
+
containsAnyKeys?: string[];
|
|
15426
|
+
/** Contains the specified key. */
|
|
13974
15427
|
containsKey?: string;
|
|
13975
15428
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
13976
15429
|
distinctFrom?: Record<string, unknown>;
|
|
@@ -14111,30 +15564,456 @@ export interface StringListFilter {
|
|
|
14111
15564
|
/** Overlaps the specified list of values. */
|
|
14112
15565
|
overlaps?: string[];
|
|
14113
15566
|
}
|
|
14114
|
-
/** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
|
|
14115
|
-
export interface IntFilter {
|
|
14116
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
14117
|
-
distinctFrom?: number;
|
|
14118
|
-
/** Equal to the specified value. */
|
|
14119
|
-
equalTo?: number;
|
|
14120
|
-
/** Greater than the specified value. */
|
|
14121
|
-
greaterThan?: number;
|
|
14122
|
-
/** Greater than or equal to the specified value. */
|
|
14123
|
-
greaterThanOrEqualTo?: number;
|
|
14124
|
-
/** Included in the specified list. */
|
|
14125
|
-
in?: number[];
|
|
14126
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
14127
|
-
isNull?: boolean;
|
|
14128
|
-
/** Less than the specified value. */
|
|
14129
|
-
lessThan?: number;
|
|
14130
|
-
/** Less than or equal to the specified value. */
|
|
14131
|
-
lessThanOrEqualTo?: number;
|
|
14132
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
14133
|
-
notDistinctFrom?: number;
|
|
14134
|
-
/** Not equal to the specified value. */
|
|
14135
|
-
notEqualTo?: number;
|
|
14136
|
-
/** Not included in the specified list. */
|
|
14137
|
-
notIn?: number[];
|
|
15567
|
+
/** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */
|
|
15568
|
+
export interface IntFilter {
|
|
15569
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
15570
|
+
distinctFrom?: number;
|
|
15571
|
+
/** Equal to the specified value. */
|
|
15572
|
+
equalTo?: number;
|
|
15573
|
+
/** Greater than the specified value. */
|
|
15574
|
+
greaterThan?: number;
|
|
15575
|
+
/** Greater than or equal to the specified value. */
|
|
15576
|
+
greaterThanOrEqualTo?: number;
|
|
15577
|
+
/** Included in the specified list. */
|
|
15578
|
+
in?: number[];
|
|
15579
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
15580
|
+
isNull?: boolean;
|
|
15581
|
+
/** Less than the specified value. */
|
|
15582
|
+
lessThan?: number;
|
|
15583
|
+
/** Less than or equal to the specified value. */
|
|
15584
|
+
lessThanOrEqualTo?: number;
|
|
15585
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
15586
|
+
notDistinctFrom?: number;
|
|
15587
|
+
/** Not equal to the specified value. */
|
|
15588
|
+
notEqualTo?: number;
|
|
15589
|
+
/** Not included in the specified list. */
|
|
15590
|
+
notIn?: number[];
|
|
15591
|
+
}
|
|
15592
|
+
/** A filter to be used against `CatalogModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15593
|
+
export interface CatalogModuleFilter {
|
|
15594
|
+
/** Checks for all expressions in this list. */
|
|
15595
|
+
and?: CatalogModuleFilter[];
|
|
15596
|
+
/** Filter by the object’s `apiName` field. */
|
|
15597
|
+
apiName?: StringFilter;
|
|
15598
|
+
/** Filter by the object’s `apiSurfaceModules` relation. */
|
|
15599
|
+
apiSurfaceModules?: CatalogModuleToManyApiSurfaceModuleFilter;
|
|
15600
|
+
/** `apiSurfaceModules` exist. */
|
|
15601
|
+
apiSurfaceModulesExist?: boolean;
|
|
15602
|
+
/** Filter by the object’s `apisTableId` field. */
|
|
15603
|
+
apisTableId?: UUIDFilter;
|
|
15604
|
+
/** Filter by the object’s `apisTableName` field. */
|
|
15605
|
+
apisTableName?: StringFilter;
|
|
15606
|
+
/** Filter by the object’s `appModules` relation. */
|
|
15607
|
+
appModules?: CatalogModuleToManyAppModuleFilter;
|
|
15608
|
+
/** `appModules` exist. */
|
|
15609
|
+
appModulesExist?: boolean;
|
|
15610
|
+
/** Filter by the object’s `appsTableId` field. */
|
|
15611
|
+
appsTableId?: UUIDFilter;
|
|
15612
|
+
/** Filter by the object’s `appsTableName` field. */
|
|
15613
|
+
appsTableName?: StringFilter;
|
|
15614
|
+
/** Filter by the object’s `bucketsTableId` field. */
|
|
15615
|
+
bucketsTableId?: UUIDFilter;
|
|
15616
|
+
/** Filter by the object’s `bucketsTableName` field. */
|
|
15617
|
+
bucketsTableName?: StringFilter;
|
|
15618
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15619
|
+
databaseId?: UUIDFilter;
|
|
15620
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15621
|
+
defaultPermissions?: StringListFilter;
|
|
15622
|
+
/** Filter by the object’s `domainModules` relation. */
|
|
15623
|
+
domainModules?: CatalogModuleToManyDomainModuleFilter;
|
|
15624
|
+
/** `domainModules` exist. */
|
|
15625
|
+
domainModulesExist?: boolean;
|
|
15626
|
+
/** Filter by the object’s `domainsTableId` field. */
|
|
15627
|
+
domainsTableId?: UUIDFilter;
|
|
15628
|
+
/** Filter by the object’s `domainsTableName` field. */
|
|
15629
|
+
domainsTableName?: StringFilter;
|
|
15630
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15631
|
+
entityTableId?: UUIDFilter;
|
|
15632
|
+
/** Filter by the object’s `functionsTableId` field. */
|
|
15633
|
+
functionsTableId?: UUIDFilter;
|
|
15634
|
+
/** Filter by the object’s `functionsTableName` field. */
|
|
15635
|
+
functionsTableName?: StringFilter;
|
|
15636
|
+
/** Filter by the object’s `id` field. */
|
|
15637
|
+
id?: UUIDFilter;
|
|
15638
|
+
/** Filter by the object’s `namespacesTableId` field. */
|
|
15639
|
+
namespacesTableId?: UUIDFilter;
|
|
15640
|
+
/** Filter by the object’s `namespacesTableName` field. */
|
|
15641
|
+
namespacesTableName?: StringFilter;
|
|
15642
|
+
/** Negates the expression. */
|
|
15643
|
+
not?: CatalogModuleFilter;
|
|
15644
|
+
/** Checks for any expressions in this list. */
|
|
15645
|
+
or?: CatalogModuleFilter[];
|
|
15646
|
+
/** Filter by the object’s `policies` field. */
|
|
15647
|
+
policies?: JSONFilter;
|
|
15648
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15649
|
+
privateApiName?: StringFilter;
|
|
15650
|
+
/** Filter by the object’s `provisions` field. */
|
|
15651
|
+
provisions?: JSONFilter;
|
|
15652
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15653
|
+
publicSchemaName?: StringFilter;
|
|
15654
|
+
/** Filter by the object’s `resourceDefinitionsTableId` field. */
|
|
15655
|
+
resourceDefinitionsTableId?: UUIDFilter;
|
|
15656
|
+
/** Filter by the object’s `resourceDefinitionsTableName` field. */
|
|
15657
|
+
resourceDefinitionsTableName?: StringFilter;
|
|
15658
|
+
/** Filter by the object’s `resourceInstallationsTableId` field. */
|
|
15659
|
+
resourceInstallationsTableId?: UUIDFilter;
|
|
15660
|
+
/** Filter by the object’s `resourceInstallationsTableName` field. */
|
|
15661
|
+
resourceInstallationsTableName?: StringFilter;
|
|
15662
|
+
/** Filter by the object’s `resourcesTableId` field. */
|
|
15663
|
+
resourcesTableId?: UUIDFilter;
|
|
15664
|
+
/** Filter by the object’s `resourcesTableName` field. */
|
|
15665
|
+
resourcesTableName?: StringFilter;
|
|
15666
|
+
/** Filter by the object’s `routeModules` relation. */
|
|
15667
|
+
routeModules?: CatalogModuleToManyRouteModuleFilter;
|
|
15668
|
+
/** `routeModules` exist. */
|
|
15669
|
+
routeModulesExist?: boolean;
|
|
15670
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15671
|
+
schemaId?: UUIDFilter;
|
|
15672
|
+
/** Filter by the object’s `scope` field. */
|
|
15673
|
+
scope?: StringFilter;
|
|
15674
|
+
/** Filter by the object’s `siteSurfaceModules` relation. */
|
|
15675
|
+
siteSurfaceModules?: CatalogModuleToManySiteSurfaceModuleFilter;
|
|
15676
|
+
/** `siteSurfaceModules` exist. */
|
|
15677
|
+
siteSurfaceModulesExist?: boolean;
|
|
15678
|
+
/** Filter by the object’s `sitesAppLinksTableId` field. */
|
|
15679
|
+
sitesAppLinksTableId?: UUIDFilter;
|
|
15680
|
+
/** Filter by the object’s `sitesAppLinksTableName` field. */
|
|
15681
|
+
sitesAppLinksTableName?: StringFilter;
|
|
15682
|
+
/** Filter by the object’s `sitesDeepLinksTableId` field. */
|
|
15683
|
+
sitesDeepLinksTableId?: UUIDFilter;
|
|
15684
|
+
/** Filter by the object’s `sitesDeepLinksTableName` field. */
|
|
15685
|
+
sitesDeepLinksTableName?: StringFilter;
|
|
15686
|
+
/** Filter by the object’s `sitesErrorPagesTableId` field. */
|
|
15687
|
+
sitesErrorPagesTableId?: UUIDFilter;
|
|
15688
|
+
/** Filter by the object’s `sitesErrorPagesTableName` field. */
|
|
15689
|
+
sitesErrorPagesTableName?: StringFilter;
|
|
15690
|
+
/** Filter by the object’s `sitesTableId` field. */
|
|
15691
|
+
sitesTableId?: UUIDFilter;
|
|
15692
|
+
/** Filter by the object’s `sitesTableName` field. */
|
|
15693
|
+
sitesTableName?: StringFilter;
|
|
15694
|
+
/** Filter by the object’s `sitesWebConfigTableId` field. */
|
|
15695
|
+
sitesWebConfigTableId?: UUIDFilter;
|
|
15696
|
+
/** Filter by the object’s `sitesWebConfigTableName` field. */
|
|
15697
|
+
sitesWebConfigTableName?: StringFilter;
|
|
15698
|
+
}
|
|
15699
|
+
/** A filter to be used against `FunctionInvocationModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15700
|
+
export interface FunctionInvocationModuleFilter {
|
|
15701
|
+
/** Checks for all expressions in this list. */
|
|
15702
|
+
and?: FunctionInvocationModuleFilter[];
|
|
15703
|
+
/** Filter by the object’s `apiName` field. */
|
|
15704
|
+
apiName?: StringFilter;
|
|
15705
|
+
/** Filter by the object’s `attemptsTableId` field. */
|
|
15706
|
+
attemptsTableId?: UUIDFilter;
|
|
15707
|
+
/** Filter by the object’s `attemptsTableName` field. */
|
|
15708
|
+
attemptsTableName?: StringFilter;
|
|
15709
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15710
|
+
databaseId?: UUIDFilter;
|
|
15711
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15712
|
+
defaultPermissions?: StringListFilter;
|
|
15713
|
+
/** Filter by the object’s `entityField` field. */
|
|
15714
|
+
entityField?: StringFilter;
|
|
15715
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15716
|
+
entityTableId?: UUIDFilter;
|
|
15717
|
+
/** Filter by the object’s `executionLogsTableId` field. */
|
|
15718
|
+
executionLogsTableId?: UUIDFilter;
|
|
15719
|
+
/** Filter by the object’s `executionLogsTableName` field. */
|
|
15720
|
+
executionLogsTableName?: StringFilter;
|
|
15721
|
+
/** Filter by the object’s `id` field. */
|
|
15722
|
+
id?: UUIDFilter;
|
|
15723
|
+
/** Filter by the object’s `invocationsTableId` field. */
|
|
15724
|
+
invocationsTableId?: UUIDFilter;
|
|
15725
|
+
/** Filter by the object’s `invocationsTableName` field. */
|
|
15726
|
+
invocationsTableName?: StringFilter;
|
|
15727
|
+
/** Negates the expression. */
|
|
15728
|
+
not?: FunctionInvocationModuleFilter;
|
|
15729
|
+
/** Checks for any expressions in this list. */
|
|
15730
|
+
or?: FunctionInvocationModuleFilter[];
|
|
15731
|
+
/** Filter by the object’s `policies` field. */
|
|
15732
|
+
policies?: JSONFilter;
|
|
15733
|
+
/** Filter by the object’s `prefix` field. */
|
|
15734
|
+
prefix?: StringFilter;
|
|
15735
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15736
|
+
privateApiName?: StringFilter;
|
|
15737
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15738
|
+
privateSchemaId?: UUIDFilter;
|
|
15739
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15740
|
+
privateSchemaName?: StringFilter;
|
|
15741
|
+
/** Filter by the object’s `provisions` field. */
|
|
15742
|
+
provisions?: JSONFilter;
|
|
15743
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15744
|
+
publicSchemaName?: StringFilter;
|
|
15745
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15746
|
+
schemaId?: UUIDFilter;
|
|
15747
|
+
/** Filter by the object’s `scope` field. */
|
|
15748
|
+
scope?: StringFilter;
|
|
15749
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
15750
|
+
webhookModules?: FunctionInvocationModuleToManyWebhookModuleFilter;
|
|
15751
|
+
/** `webhookModules` exist. */
|
|
15752
|
+
webhookModulesExist?: boolean;
|
|
15753
|
+
}
|
|
15754
|
+
/** A filter to be used against `FunctionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15755
|
+
export interface FunctionModuleFilter {
|
|
15756
|
+
/** Checks for all expressions in this list. */
|
|
15757
|
+
and?: FunctionModuleFilter[];
|
|
15758
|
+
/** Filter by the object’s `apiName` field. */
|
|
15759
|
+
apiName?: StringFilter;
|
|
15760
|
+
/** Filter by the object’s `bindingsTableId` field. */
|
|
15761
|
+
bindingsTableId?: UUIDFilter;
|
|
15762
|
+
/** Filter by the object’s `bindingsTableName` field. */
|
|
15763
|
+
bindingsTableName?: StringFilter;
|
|
15764
|
+
/** Filter by the object’s `capabilityBindingsTableId` field. */
|
|
15765
|
+
capabilityBindingsTableId?: UUIDFilter;
|
|
15766
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15767
|
+
databaseId?: UUIDFilter;
|
|
15768
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15769
|
+
defaultPermissions?: StringListFilter;
|
|
15770
|
+
/** Filter by the object’s `definitionsTableId` field. */
|
|
15771
|
+
definitionsTableId?: UUIDFilter;
|
|
15772
|
+
/** Filter by the object’s `definitionsTableName` field. */
|
|
15773
|
+
definitionsTableName?: StringFilter;
|
|
15774
|
+
/** Filter by the object’s `entityField` field. */
|
|
15775
|
+
entityField?: StringFilter;
|
|
15776
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15777
|
+
entityTableId?: UUIDFilter;
|
|
15778
|
+
/** Filter by the object’s `functionDeploymentModules` relation. */
|
|
15779
|
+
functionDeploymentModules?: FunctionModuleToManyFunctionDeploymentModuleFilter;
|
|
15780
|
+
/** `functionDeploymentModules` exist. */
|
|
15781
|
+
functionDeploymentModulesExist?: boolean;
|
|
15782
|
+
/** Filter by the object’s `hasCron` field. */
|
|
15783
|
+
hasCron?: BooleanFilter;
|
|
15784
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
15785
|
+
httpRouteModules?: FunctionModuleToManyHttpRouteModuleFilter;
|
|
15786
|
+
/** `httpRouteModules` exist. */
|
|
15787
|
+
httpRouteModulesExist?: boolean;
|
|
15788
|
+
/** Filter by the object’s `id` field. */
|
|
15789
|
+
id?: UUIDFilter;
|
|
15790
|
+
/** Negates the expression. */
|
|
15791
|
+
not?: FunctionModuleFilter;
|
|
15792
|
+
/** Checks for any expressions in this list. */
|
|
15793
|
+
or?: FunctionModuleFilter[];
|
|
15794
|
+
/** Filter by the object’s `policies` field. */
|
|
15795
|
+
policies?: JSONFilter;
|
|
15796
|
+
/** Filter by the object’s `prefix` field. */
|
|
15797
|
+
prefix?: StringFilter;
|
|
15798
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15799
|
+
privateApiName?: StringFilter;
|
|
15800
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15801
|
+
privateSchemaId?: UUIDFilter;
|
|
15802
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15803
|
+
privateSchemaName?: StringFilter;
|
|
15804
|
+
/** Filter by the object’s `provisions` field. */
|
|
15805
|
+
provisions?: JSONFilter;
|
|
15806
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15807
|
+
publicSchemaName?: StringFilter;
|
|
15808
|
+
/** Filter by the object’s `schedulesTableId` field. */
|
|
15809
|
+
schedulesTableId?: UUIDFilter;
|
|
15810
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15811
|
+
schemaId?: UUIDFilter;
|
|
15812
|
+
/** Filter by the object’s `scope` field. */
|
|
15813
|
+
scope?: StringFilter;
|
|
15814
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
15815
|
+
webhookModules?: FunctionModuleToManyWebhookModuleFilter;
|
|
15816
|
+
/** `webhookModules` exist. */
|
|
15817
|
+
webhookModulesExist?: boolean;
|
|
15818
|
+
}
|
|
15819
|
+
/** A filter to be used against `InfraSecretsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15820
|
+
export interface InfraSecretsModuleFilter {
|
|
15821
|
+
/** Checks for all expressions in this list. */
|
|
15822
|
+
and?: InfraSecretsModuleFilter[];
|
|
15823
|
+
/** Filter by the object’s `apiName` field. */
|
|
15824
|
+
apiName?: StringFilter;
|
|
15825
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15826
|
+
databaseId?: UUIDFilter;
|
|
15827
|
+
/** Filter by the object’s `entityField` field. */
|
|
15828
|
+
entityField?: StringFilter;
|
|
15829
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15830
|
+
entityTableId?: UUIDFilter;
|
|
15831
|
+
/** Filter by the object’s `id` field. */
|
|
15832
|
+
id?: UUIDFilter;
|
|
15833
|
+
/** Negates the expression. */
|
|
15834
|
+
not?: InfraSecretsModuleFilter;
|
|
15835
|
+
/** Checks for any expressions in this list. */
|
|
15836
|
+
or?: InfraSecretsModuleFilter[];
|
|
15837
|
+
/** Filter by the object’s `policies` field. */
|
|
15838
|
+
policies?: JSONFilter;
|
|
15839
|
+
/** Filter by the object’s `prefix` field. */
|
|
15840
|
+
prefix?: StringFilter;
|
|
15841
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15842
|
+
privateApiName?: StringFilter;
|
|
15843
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15844
|
+
privateSchemaId?: UUIDFilter;
|
|
15845
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15846
|
+
privateSchemaName?: StringFilter;
|
|
15847
|
+
/** Filter by the object’s `provisions` field. */
|
|
15848
|
+
provisions?: JSONFilter;
|
|
15849
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15850
|
+
publicSchemaName?: StringFilter;
|
|
15851
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15852
|
+
schemaId?: UUIDFilter;
|
|
15853
|
+
/** Filter by the object’s `scope` field. */
|
|
15854
|
+
scope?: StringFilter;
|
|
15855
|
+
/** Filter by the object’s `secretsTableId` field. */
|
|
15856
|
+
secretsTableId?: UUIDFilter;
|
|
15857
|
+
/** Filter by the object’s `secretsTableName` field. */
|
|
15858
|
+
secretsTableName?: StringFilter;
|
|
15859
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
15860
|
+
webhookModules?: InfraSecretsModuleToManyWebhookModuleFilter;
|
|
15861
|
+
/** `webhookModules` exist. */
|
|
15862
|
+
webhookModulesExist?: boolean;
|
|
15863
|
+
}
|
|
15864
|
+
/** A filter to be used against `NamespaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15865
|
+
export interface NamespaceModuleFilter {
|
|
15866
|
+
/** Checks for all expressions in this list. */
|
|
15867
|
+
and?: NamespaceModuleFilter[];
|
|
15868
|
+
/** Filter by the object’s `apiName` field. */
|
|
15869
|
+
apiName?: StringFilter;
|
|
15870
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15871
|
+
databaseId?: UUIDFilter;
|
|
15872
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15873
|
+
defaultPermissions?: StringListFilter;
|
|
15874
|
+
/** Filter by the object’s `entityField` field. */
|
|
15875
|
+
entityField?: StringFilter;
|
|
15876
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15877
|
+
entityTableId?: UUIDFilter;
|
|
15878
|
+
/** Filter by the object’s `functionDeploymentModules` relation. */
|
|
15879
|
+
functionDeploymentModules?: NamespaceModuleToManyFunctionDeploymentModuleFilter;
|
|
15880
|
+
/** `functionDeploymentModules` exist. */
|
|
15881
|
+
functionDeploymentModulesExist?: boolean;
|
|
15882
|
+
/** Filter by the object’s `id` field. */
|
|
15883
|
+
id?: UUIDFilter;
|
|
15884
|
+
/** Filter by the object’s `namespaceEventsTableId` field. */
|
|
15885
|
+
namespaceEventsTableId?: UUIDFilter;
|
|
15886
|
+
/** Filter by the object’s `namespaceEventsTableName` field. */
|
|
15887
|
+
namespaceEventsTableName?: StringFilter;
|
|
15888
|
+
/** Filter by the object’s `namespacesTableId` field. */
|
|
15889
|
+
namespacesTableId?: UUIDFilter;
|
|
15890
|
+
/** Filter by the object’s `namespacesTableName` field. */
|
|
15891
|
+
namespacesTableName?: StringFilter;
|
|
15892
|
+
/** Negates the expression. */
|
|
15893
|
+
not?: NamespaceModuleFilter;
|
|
15894
|
+
/** Checks for any expressions in this list. */
|
|
15895
|
+
or?: NamespaceModuleFilter[];
|
|
15896
|
+
/** Filter by the object’s `policies` field. */
|
|
15897
|
+
policies?: JSONFilter;
|
|
15898
|
+
/** Filter by the object’s `prefix` field. */
|
|
15899
|
+
prefix?: StringFilter;
|
|
15900
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15901
|
+
privateApiName?: StringFilter;
|
|
15902
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15903
|
+
privateSchemaId?: UUIDFilter;
|
|
15904
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
15905
|
+
privateSchemaName?: StringFilter;
|
|
15906
|
+
/** Filter by the object’s `provisions` field. */
|
|
15907
|
+
provisions?: JSONFilter;
|
|
15908
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
15909
|
+
publicSchemaName?: StringFilter;
|
|
15910
|
+
/** Filter by the object’s `resourceModules` relation. */
|
|
15911
|
+
resourceModules?: NamespaceModuleToManyResourceModuleFilter;
|
|
15912
|
+
/** `resourceModules` exist. */
|
|
15913
|
+
resourceModulesExist?: boolean;
|
|
15914
|
+
/** Filter by the object’s `schemaId` field. */
|
|
15915
|
+
schemaId?: UUIDFilter;
|
|
15916
|
+
/** Filter by the object’s `scope` field. */
|
|
15917
|
+
scope?: StringFilter;
|
|
15918
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
15919
|
+
webhookModules?: NamespaceModuleToManyWebhookModuleFilter;
|
|
15920
|
+
/** `webhookModules` exist. */
|
|
15921
|
+
webhookModulesExist?: boolean;
|
|
15922
|
+
}
|
|
15923
|
+
/** A filter to be used against `StorageModule` object types. All fields are combined with a logical ‘and.’ */
|
|
15924
|
+
export interface StorageModuleFilter {
|
|
15925
|
+
/** Filter by the object’s `allowedOrigins` field. */
|
|
15926
|
+
allowedOrigins?: StringListFilter;
|
|
15927
|
+
/** Checks for all expressions in this list. */
|
|
15928
|
+
and?: StorageModuleFilter[];
|
|
15929
|
+
/** Filter by the object’s `apiName` field. */
|
|
15930
|
+
apiName?: StringFilter;
|
|
15931
|
+
/** Filter by the object’s `bucketsTableId` field. */
|
|
15932
|
+
bucketsTableId?: UUIDFilter;
|
|
15933
|
+
/** Filter by the object’s `bucketsTableName` field. */
|
|
15934
|
+
bucketsTableName?: StringFilter;
|
|
15935
|
+
/** Filter by the object’s `cacheTtlSeconds` field. */
|
|
15936
|
+
cacheTtlSeconds?: IntFilter;
|
|
15937
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
15938
|
+
catalogModuleId?: UUIDFilter;
|
|
15939
|
+
/** Filter by the object’s `confirmUploadDelay` field. */
|
|
15940
|
+
confirmUploadDelay?: IntervalFilter;
|
|
15941
|
+
/** Filter by the object’s `databaseId` field. */
|
|
15942
|
+
databaseId?: UUIDFilter;
|
|
15943
|
+
/** Filter by the object’s `defaultMaxFileSize` field. */
|
|
15944
|
+
defaultMaxFileSize?: BigIntFilter;
|
|
15945
|
+
/** Filter by the object’s `defaultPermissions` field. */
|
|
15946
|
+
defaultPermissions?: StringListFilter;
|
|
15947
|
+
/** Filter by the object’s `downloadUrlExpirySeconds` field. */
|
|
15948
|
+
downloadUrlExpirySeconds?: IntFilter;
|
|
15949
|
+
/** Filter by the object’s `endpoint` field. */
|
|
15950
|
+
endpoint?: StringFilter;
|
|
15951
|
+
/** Filter by the object’s `entityField` field. */
|
|
15952
|
+
entityField?: StringFilter;
|
|
15953
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
15954
|
+
entityTableId?: UUIDFilter;
|
|
15955
|
+
/** Filter by the object’s `fileEventsTableId` field. */
|
|
15956
|
+
fileEventsTableId?: UUIDFilter;
|
|
15957
|
+
/** Filter by the object’s `filesTableId` field. */
|
|
15958
|
+
filesTableId?: UUIDFilter;
|
|
15959
|
+
/** Filter by the object’s `filesTableName` field. */
|
|
15960
|
+
filesTableName?: StringFilter;
|
|
15961
|
+
/** Filter by the object’s `hasAuditLog` field. */
|
|
15962
|
+
hasAuditLog?: BooleanFilter;
|
|
15963
|
+
/** Filter by the object’s `hasConfirmUpload` field. */
|
|
15964
|
+
hasConfirmUpload?: BooleanFilter;
|
|
15965
|
+
/** Filter by the object’s `hasContentHash` field. */
|
|
15966
|
+
hasContentHash?: BooleanFilter;
|
|
15967
|
+
/** Filter by the object’s `hasCustomKeys` field. */
|
|
15968
|
+
hasCustomKeys?: BooleanFilter;
|
|
15969
|
+
/** Filter by the object’s `hasPathShares` field. */
|
|
15970
|
+
hasPathShares?: BooleanFilter;
|
|
15971
|
+
/** Filter by the object’s `hasVersioning` field. */
|
|
15972
|
+
hasVersioning?: BooleanFilter;
|
|
15973
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
15974
|
+
httpRouteModules?: StorageModuleToManyHttpRouteModuleFilter;
|
|
15975
|
+
/** `httpRouteModules` exist. */
|
|
15976
|
+
httpRouteModulesExist?: boolean;
|
|
15977
|
+
/** Filter by the object’s `id` field. */
|
|
15978
|
+
id?: UUIDFilter;
|
|
15979
|
+
/** Filter by the object’s `maxBulkFiles` field. */
|
|
15980
|
+
maxBulkFiles?: IntFilter;
|
|
15981
|
+
/** Filter by the object’s `maxBulkTotalSize` field. */
|
|
15982
|
+
maxBulkTotalSize?: BigIntFilter;
|
|
15983
|
+
/** Filter by the object’s `maxFilenameLength` field. */
|
|
15984
|
+
maxFilenameLength?: IntFilter;
|
|
15985
|
+
/** Negates the expression. */
|
|
15986
|
+
not?: StorageModuleFilter;
|
|
15987
|
+
/** Checks for any expressions in this list. */
|
|
15988
|
+
or?: StorageModuleFilter[];
|
|
15989
|
+
/** Filter by the object’s `pathSharesTableId` field. */
|
|
15990
|
+
pathSharesTableId?: UUIDFilter;
|
|
15991
|
+
/** Filter by the object’s `policies` field. */
|
|
15992
|
+
policies?: JSONFilter;
|
|
15993
|
+
/** Filter by the object’s `prefix` field. */
|
|
15994
|
+
prefix?: StringFilter;
|
|
15995
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
15996
|
+
privateApiName?: StringFilter;
|
|
15997
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
15998
|
+
privateSchemaId?: UUIDFilter;
|
|
15999
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
16000
|
+
privateSchemaName?: StringFilter;
|
|
16001
|
+
/** Filter by the object’s `provider` field. */
|
|
16002
|
+
provider?: StringFilter;
|
|
16003
|
+
/** Filter by the object’s `provisions` field. */
|
|
16004
|
+
provisions?: JSONFilter;
|
|
16005
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
16006
|
+
publicSchemaName?: StringFilter;
|
|
16007
|
+
/** Filter by the object’s `publicUrlPrefix` field. */
|
|
16008
|
+
publicUrlPrefix?: StringFilter;
|
|
16009
|
+
/** Filter by the object’s `restrictReads` field. */
|
|
16010
|
+
restrictReads?: BooleanFilter;
|
|
16011
|
+
/** Filter by the object’s `schemaId` field. */
|
|
16012
|
+
schemaId?: UUIDFilter;
|
|
16013
|
+
/** Filter by the object’s `scope` field. */
|
|
16014
|
+
scope?: StringFilter;
|
|
16015
|
+
/** Filter by the object’s `uploadUrlExpirySeconds` field. */
|
|
16016
|
+
uploadUrlExpirySeconds?: IntFilter;
|
|
14138
16017
|
}
|
|
14139
16018
|
/** A filter to be used against `MerkleStoreModule` object types. All fields are combined with a logical ‘and.’ */
|
|
14140
16019
|
export interface MerkleStoreModuleFilter {
|
|
@@ -14168,6 +16047,10 @@ export interface MerkleStoreModuleFilter {
|
|
|
14168
16047
|
objectTableId?: UUIDFilter;
|
|
14169
16048
|
/** Checks for any expressions in this list. */
|
|
14170
16049
|
or?: MerkleStoreModuleFilter[];
|
|
16050
|
+
/** Filter by the object’s `pagesModules` relation. */
|
|
16051
|
+
pagesModules?: MerkleStoreModuleToManyPagesModuleFilter;
|
|
16052
|
+
/** `pagesModules` exist. */
|
|
16053
|
+
pagesModulesExist?: boolean;
|
|
14171
16054
|
/** Filter by the object’s `permissionKey` field. */
|
|
14172
16055
|
permissionKey?: StringFilter;
|
|
14173
16056
|
/** Filter by the object’s `prefix` field. */
|
|
@@ -14182,6 +16065,10 @@ export interface MerkleStoreModuleFilter {
|
|
|
14182
16065
|
publicSchemaName?: StringFilter;
|
|
14183
16066
|
/** Filter by the object’s `refTableId` field. */
|
|
14184
16067
|
refTableId?: UUIDFilter;
|
|
16068
|
+
/** Filter by the object’s `resourceModules` relation. */
|
|
16069
|
+
resourceModules?: MerkleStoreModuleToManyResourceModuleFilter;
|
|
16070
|
+
/** `resourceModules` exist. */
|
|
16071
|
+
resourceModulesExist?: boolean;
|
|
14185
16072
|
/** Filter by the object’s `schemaId` field. */
|
|
14186
16073
|
schemaId?: UUIDFilter;
|
|
14187
16074
|
/** Filter by the object’s `scope` field. */
|
|
@@ -14189,6 +16076,56 @@ export interface MerkleStoreModuleFilter {
|
|
|
14189
16076
|
/** Filter by the object’s `storeTableId` field. */
|
|
14190
16077
|
storeTableId?: UUIDFilter;
|
|
14191
16078
|
}
|
|
16079
|
+
/** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */
|
|
16080
|
+
export interface BooleanFilter {
|
|
16081
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
16082
|
+
distinctFrom?: boolean;
|
|
16083
|
+
/** Equal to the specified value. */
|
|
16084
|
+
equalTo?: boolean;
|
|
16085
|
+
/** Greater than the specified value. */
|
|
16086
|
+
greaterThan?: boolean;
|
|
16087
|
+
/** Greater than or equal to the specified value. */
|
|
16088
|
+
greaterThanOrEqualTo?: boolean;
|
|
16089
|
+
/** Included in the specified list. */
|
|
16090
|
+
in?: boolean[];
|
|
16091
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
16092
|
+
isNull?: boolean;
|
|
16093
|
+
/** Less than the specified value. */
|
|
16094
|
+
lessThan?: boolean;
|
|
16095
|
+
/** Less than or equal to the specified value. */
|
|
16096
|
+
lessThanOrEqualTo?: boolean;
|
|
16097
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
16098
|
+
notDistinctFrom?: boolean;
|
|
16099
|
+
/** Not equal to the specified value. */
|
|
16100
|
+
notEqualTo?: boolean;
|
|
16101
|
+
/** Not included in the specified list. */
|
|
16102
|
+
notIn?: boolean[];
|
|
16103
|
+
}
|
|
16104
|
+
/** A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ */
|
|
16105
|
+
export interface BigIntFilter {
|
|
16106
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
16107
|
+
distinctFrom?: string;
|
|
16108
|
+
/** Equal to the specified value. */
|
|
16109
|
+
equalTo?: string;
|
|
16110
|
+
/** Greater than the specified value. */
|
|
16111
|
+
greaterThan?: string;
|
|
16112
|
+
/** Greater than or equal to the specified value. */
|
|
16113
|
+
greaterThanOrEqualTo?: string;
|
|
16114
|
+
/** Included in the specified list. */
|
|
16115
|
+
in?: string[];
|
|
16116
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
16117
|
+
isNull?: boolean;
|
|
16118
|
+
/** Less than the specified value. */
|
|
16119
|
+
lessThan?: string;
|
|
16120
|
+
/** Less than or equal to the specified value. */
|
|
16121
|
+
lessThanOrEqualTo?: string;
|
|
16122
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
16123
|
+
notDistinctFrom?: string;
|
|
16124
|
+
/** Not equal to the specified value. */
|
|
16125
|
+
notEqualTo?: string;
|
|
16126
|
+
/** Not included in the specified list. */
|
|
16127
|
+
notIn?: string[];
|
|
16128
|
+
}
|
|
14192
16129
|
export interface ConstructBlueprintPayload {
|
|
14193
16130
|
clientMutationId?: string | null;
|
|
14194
16131
|
result?: string | null;
|
|
@@ -16443,6 +18380,51 @@ export type DeleteNotificationsModulePayloadSelect = {
|
|
|
16443
18380
|
select: NotificationsModuleEdgeSelect;
|
|
16444
18381
|
};
|
|
16445
18382
|
};
|
|
18383
|
+
export interface CreatePagesModulePayload {
|
|
18384
|
+
clientMutationId?: string | null;
|
|
18385
|
+
/** The `PagesModule` that was created by this mutation. */
|
|
18386
|
+
pagesModule?: PagesModule | null;
|
|
18387
|
+
pagesModuleEdge?: PagesModuleEdge | null;
|
|
18388
|
+
}
|
|
18389
|
+
export type CreatePagesModulePayloadSelect = {
|
|
18390
|
+
clientMutationId?: boolean;
|
|
18391
|
+
pagesModule?: {
|
|
18392
|
+
select: PagesModuleSelect;
|
|
18393
|
+
};
|
|
18394
|
+
pagesModuleEdge?: {
|
|
18395
|
+
select: PagesModuleEdgeSelect;
|
|
18396
|
+
};
|
|
18397
|
+
};
|
|
18398
|
+
export interface UpdatePagesModulePayload {
|
|
18399
|
+
clientMutationId?: string | null;
|
|
18400
|
+
/** The `PagesModule` that was updated by this mutation. */
|
|
18401
|
+
pagesModule?: PagesModule | null;
|
|
18402
|
+
pagesModuleEdge?: PagesModuleEdge | null;
|
|
18403
|
+
}
|
|
18404
|
+
export type UpdatePagesModulePayloadSelect = {
|
|
18405
|
+
clientMutationId?: boolean;
|
|
18406
|
+
pagesModule?: {
|
|
18407
|
+
select: PagesModuleSelect;
|
|
18408
|
+
};
|
|
18409
|
+
pagesModuleEdge?: {
|
|
18410
|
+
select: PagesModuleEdgeSelect;
|
|
18411
|
+
};
|
|
18412
|
+
};
|
|
18413
|
+
export interface DeletePagesModulePayload {
|
|
18414
|
+
clientMutationId?: string | null;
|
|
18415
|
+
/** The `PagesModule` that was deleted by this mutation. */
|
|
18416
|
+
pagesModule?: PagesModule | null;
|
|
18417
|
+
pagesModuleEdge?: PagesModuleEdge | null;
|
|
18418
|
+
}
|
|
18419
|
+
export type DeletePagesModulePayloadSelect = {
|
|
18420
|
+
clientMutationId?: boolean;
|
|
18421
|
+
pagesModule?: {
|
|
18422
|
+
select: PagesModuleSelect;
|
|
18423
|
+
};
|
|
18424
|
+
pagesModuleEdge?: {
|
|
18425
|
+
select: PagesModuleEdgeSelect;
|
|
18426
|
+
};
|
|
18427
|
+
};
|
|
16446
18428
|
export interface CreatePermissionsModulePayload {
|
|
16447
18429
|
clientMutationId?: string | null;
|
|
16448
18430
|
/** The `PermissionsModule` that was created by this mutation. */
|
|
@@ -18254,6 +20236,18 @@ export type NotificationsModuleEdgeSelect = {
|
|
|
18254
20236
|
select: NotificationsModuleSelect;
|
|
18255
20237
|
};
|
|
18256
20238
|
};
|
|
20239
|
+
/** A `PagesModule` edge in the connection. */
|
|
20240
|
+
export interface PagesModuleEdge {
|
|
20241
|
+
cursor?: string | null;
|
|
20242
|
+
/** The `PagesModule` at the end of the edge. */
|
|
20243
|
+
node?: PagesModule | null;
|
|
20244
|
+
}
|
|
20245
|
+
export type PagesModuleEdgeSelect = {
|
|
20246
|
+
cursor?: boolean;
|
|
20247
|
+
node?: {
|
|
20248
|
+
select: PagesModuleSelect;
|
|
20249
|
+
};
|
|
20250
|
+
};
|
|
18257
20251
|
/** A `PermissionsModule` edge in the connection. */
|
|
18258
20252
|
export interface PermissionsModuleEdge {
|
|
18259
20253
|
cursor?: string | null;
|