@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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
import type { AgentModule, ApiSurfaceModule, AppModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, CatalogModule, ComputeLogModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DatabaseSettingsModule, DbPool, DbPoolConfig, DbPresetModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, DomainModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, HttpRouteModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InfraConfigModule, InfraSecretsModule, IntegrationProvidersModule, InternalSecretsModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PermissionsModule, PhoneNumbersModule, PlansModule, PrincipalAuthModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, ResourceModule, RlsModule, RouteModule, SecureTableProvision, SessionSecretsModule, SessionsModule, SiteSurfaceModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, WebhookModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
6
|
+
import type { AgentModule, ApiSurfaceModule, AppModule, BillingModule, BillingProviderModule, Blueprint, BlueprintConstruction, BlueprintTemplate, CatalogModule, ComputeLogModule, ConfigSecretsUserModule, ConnectedAccountsModule, CryptoAddressesModule, CryptoAuthModule, DatabaseProvisionModule, DatabaseSettingsModule, DbPool, DbPoolConfig, DbPresetModule, DbUsageModule, DefaultIdsModule, DenormalizedTableField, DevicesModule, DomainModule, EmailsModule, EntityTypeProvision, EventsModule, FunctionDeploymentModule, FunctionInvocationModule, FunctionModule, GraphExecutionModule, GraphModule, HierarchyModule, HttpRouteModule, I18NModule, IdentityProvidersModule, InferenceLogModule, InfraConfigModule, InfraSecretsModule, IntegrationProvidersModule, InternalSecretsModule, InvitesModule, LimitsModule, MembershipTypesModule, MembershipsModule, MerkleStoreModule, NamespaceModule, NotificationsModule, PagesModule, PermissionsModule, PhoneNumbersModule, PlansModule, PrincipalAuthModule, ProfilesModule, RateLimitMetersModule, RateLimitsModule, RealtimeModule, RelationProvision, ResourceModule, RlsModule, RouteModule, SecureTableProvision, SessionSecretsModule, SessionsModule, SiteSurfaceModule, StorageLogModule, StorageModule, TransferLogModule, UserAuthModule, UserCredentialsModule, UserSettingsModule, UserStateModule, UsersModule, WebauthnAuthModule, WebauthnCredentialsModule, WebhookModule, BigIntFilter, BooleanFilter, DatetimeFilter, IntFilter, JSONFilter, StringFilter, StringListFilter, UUIDFilter, UUIDListFilter } from './types';
|
|
7
7
|
/** Methods to use when ordering `AgentModule`. */
|
|
8
8
|
export type AgentModuleOrderBy = 'AGENT_TABLE_ID_ASC' | 'AGENT_TABLE_ID_DESC' | 'AGENT_TABLE_NAME_ASC' | 'AGENT_TABLE_NAME_DESC' | 'API_NAME_ASC' | 'API_NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEFAULT_PERMISSIONS_ASC' | 'DEFAULT_PERMISSIONS_DESC' | 'ENTITY_FIELD_ASC' | 'ENTITY_FIELD_DESC' | 'ENTITY_TABLE_ID_ASC' | 'ENTITY_TABLE_ID_DESC' | 'HAS_AGENTS_ASC' | 'HAS_AGENTS_DESC' | 'HAS_PLANS_ASC' | 'HAS_PLANS_DESC' | 'HAS_RESOURCES_ASC' | 'HAS_RESOURCES_DESC' | 'ID_ASC' | 'ID_DESC' | 'MESSAGE_TABLE_ID_ASC' | 'MESSAGE_TABLE_ID_DESC' | 'MESSAGE_TABLE_NAME_ASC' | 'MESSAGE_TABLE_NAME_DESC' | 'NATURAL' | 'PERSONA_TABLE_ID_ASC' | 'PERSONA_TABLE_ID_DESC' | 'PERSONA_TABLE_NAME_ASC' | 'PERSONA_TABLE_NAME_DESC' | 'PLAN_TABLE_ID_ASC' | 'PLAN_TABLE_ID_DESC' | 'PLAN_TABLE_NAME_ASC' | 'PLAN_TABLE_NAME_DESC' | 'POLICIES_ASC' | 'POLICIES_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'PRIVATE_API_NAME_ASC' | 'PRIVATE_API_NAME_DESC' | 'PRIVATE_SCHEMA_ID_ASC' | 'PRIVATE_SCHEMA_ID_DESC' | 'PRIVATE_SCHEMA_NAME_ASC' | 'PRIVATE_SCHEMA_NAME_DESC' | 'PROMPTS_TABLE_ID_ASC' | 'PROMPTS_TABLE_ID_DESC' | 'PROMPTS_TABLE_NAME_ASC' | 'PROMPTS_TABLE_NAME_DESC' | 'PROVISIONS_ASC' | 'PROVISIONS_DESC' | 'PUBLIC_SCHEMA_NAME_ASC' | 'PUBLIC_SCHEMA_NAME_DESC' | 'RESOURCES_ASC' | 'RESOURCES_DESC' | 'RESOURCE_TABLE_ID_ASC' | 'RESOURCE_TABLE_ID_DESC' | 'RESOURCE_TABLE_NAME_ASC' | 'RESOURCE_TABLE_NAME_DESC' | 'SCHEMA_ID_ASC' | 'SCHEMA_ID_DESC' | 'SCOPE_ASC' | 'SCOPE_DESC' | 'SHARED_ASC' | 'SHARED_DESC' | 'TASK_TABLE_ID_ASC' | 'TASK_TABLE_ID_DESC' | 'TASK_TABLE_NAME_ASC' | 'TASK_TABLE_NAME_DESC' | 'THREAD_TABLE_ID_ASC' | 'THREAD_TABLE_ID_DESC' | 'THREAD_TABLE_NAME_ASC' | 'THREAD_TABLE_NAME_DESC';
|
|
9
9
|
/** Methods to use when ordering `ApiSurfaceModule`. */
|
|
@@ -21,7 +21,7 @@ export type BlueprintOrderBy = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'DATABASE_
|
|
|
21
21
|
/** Methods to use when ordering `BlueprintTemplate`. */
|
|
22
22
|
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';
|
|
23
23
|
/** Methods to use when ordering `CatalogModule`. */
|
|
24
|
-
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';
|
|
24
|
+
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';
|
|
25
25
|
/** Methods to use when ordering `ComputeLogModule`. */
|
|
26
26
|
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';
|
|
27
27
|
/** Methods to use when ordering `ConfigSecretsUserModule`. */
|
|
@@ -63,7 +63,7 @@ export type FunctionDeploymentModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' |
|
|
|
63
63
|
/** Methods to use when ordering `FunctionInvocationModule`. */
|
|
64
64
|
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';
|
|
65
65
|
/** Methods to use when ordering `FunctionModule`. */
|
|
66
|
-
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';
|
|
66
|
+
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';
|
|
67
67
|
/** Methods to use when ordering `GraphExecutionModule`. */
|
|
68
68
|
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';
|
|
69
69
|
/** Methods to use when ordering `GraphModule`. */
|
|
@@ -100,6 +100,8 @@ export type MerkleStoreModuleOrderBy = 'API_NAME_ASC' | 'API_NAME_DESC' | 'COMMI
|
|
|
100
100
|
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';
|
|
101
101
|
/** Methods to use when ordering `NotificationsModule`. */
|
|
102
102
|
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';
|
|
103
|
+
/** Methods to use when ordering `PagesModule`. */
|
|
104
|
+
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';
|
|
103
105
|
/** Methods to use when ordering `PermissionsModule`. */
|
|
104
106
|
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';
|
|
105
107
|
/** Methods to use when ordering `PhoneNumbersModule`. */
|
|
@@ -131,11 +133,11 @@ export type SessionSecretsModuleOrderBy = 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC'
|
|
|
131
133
|
/** Methods to use when ordering `SessionsModule`. */
|
|
132
134
|
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';
|
|
133
135
|
/** Methods to use when ordering `SiteSurfaceModule`. */
|
|
134
|
-
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';
|
|
136
|
+
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';
|
|
135
137
|
/** Methods to use when ordering `StorageLogModule`. */
|
|
136
138
|
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';
|
|
137
139
|
/** Methods to use when ordering `StorageModule`. */
|
|
138
|
-
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';
|
|
140
|
+
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';
|
|
139
141
|
/** Methods to use when ordering `TransferLogModule`. */
|
|
140
142
|
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';
|
|
141
143
|
/** Methods to use when ordering `UserAuthModule`. */
|
|
@@ -1107,18 +1109,34 @@ export interface CatalogModuleFilter {
|
|
|
1107
1109
|
and?: CatalogModuleFilter[];
|
|
1108
1110
|
/** Filter by the object’s `apiName` field. */
|
|
1109
1111
|
apiName?: StringFilter;
|
|
1112
|
+
/** Filter by the object’s `apiSurfaceModules` relation. */
|
|
1113
|
+
apiSurfaceModules?: CatalogModuleToManyApiSurfaceModuleFilter;
|
|
1114
|
+
/** `apiSurfaceModules` exist. */
|
|
1115
|
+
apiSurfaceModulesExist?: boolean;
|
|
1110
1116
|
/** Filter by the object’s `apisTableId` field. */
|
|
1111
1117
|
apisTableId?: UUIDFilter;
|
|
1112
1118
|
/** Filter by the object’s `apisTableName` field. */
|
|
1113
1119
|
apisTableName?: StringFilter;
|
|
1120
|
+
/** Filter by the object’s `appModules` relation. */
|
|
1121
|
+
appModules?: CatalogModuleToManyAppModuleFilter;
|
|
1122
|
+
/** `appModules` exist. */
|
|
1123
|
+
appModulesExist?: boolean;
|
|
1114
1124
|
/** Filter by the object’s `appsTableId` field. */
|
|
1115
1125
|
appsTableId?: UUIDFilter;
|
|
1116
1126
|
/** Filter by the object’s `appsTableName` field. */
|
|
1117
1127
|
appsTableName?: StringFilter;
|
|
1128
|
+
/** Filter by the object’s `bucketsTableId` field. */
|
|
1129
|
+
bucketsTableId?: UUIDFilter;
|
|
1130
|
+
/** Filter by the object’s `bucketsTableName` field. */
|
|
1131
|
+
bucketsTableName?: StringFilter;
|
|
1118
1132
|
/** Filter by the object’s `databaseId` field. */
|
|
1119
1133
|
databaseId?: UUIDFilter;
|
|
1120
1134
|
/** Filter by the object’s `defaultPermissions` field. */
|
|
1121
1135
|
defaultPermissions?: StringListFilter;
|
|
1136
|
+
/** Filter by the object’s `domainModules` relation. */
|
|
1137
|
+
domainModules?: CatalogModuleToManyDomainModuleFilter;
|
|
1138
|
+
/** `domainModules` exist. */
|
|
1139
|
+
domainModulesExist?: boolean;
|
|
1122
1140
|
/** Filter by the object’s `domainsTableId` field. */
|
|
1123
1141
|
domainsTableId?: UUIDFilter;
|
|
1124
1142
|
/** Filter by the object’s `domainsTableName` field. */
|
|
@@ -1159,14 +1177,38 @@ export interface CatalogModuleFilter {
|
|
|
1159
1177
|
resourcesTableId?: UUIDFilter;
|
|
1160
1178
|
/** Filter by the object’s `resourcesTableName` field. */
|
|
1161
1179
|
resourcesTableName?: StringFilter;
|
|
1180
|
+
/** Filter by the object’s `routeModules` relation. */
|
|
1181
|
+
routeModules?: CatalogModuleToManyRouteModuleFilter;
|
|
1182
|
+
/** `routeModules` exist. */
|
|
1183
|
+
routeModulesExist?: boolean;
|
|
1162
1184
|
/** Filter by the object’s `schemaId` field. */
|
|
1163
1185
|
schemaId?: UUIDFilter;
|
|
1164
1186
|
/** Filter by the object’s `scope` field. */
|
|
1165
1187
|
scope?: StringFilter;
|
|
1188
|
+
/** Filter by the object’s `siteSurfaceModules` relation. */
|
|
1189
|
+
siteSurfaceModules?: CatalogModuleToManySiteSurfaceModuleFilter;
|
|
1190
|
+
/** `siteSurfaceModules` exist. */
|
|
1191
|
+
siteSurfaceModulesExist?: boolean;
|
|
1192
|
+
/** Filter by the object’s `sitesAppLinksTableId` field. */
|
|
1193
|
+
sitesAppLinksTableId?: UUIDFilter;
|
|
1194
|
+
/** Filter by the object’s `sitesAppLinksTableName` field. */
|
|
1195
|
+
sitesAppLinksTableName?: StringFilter;
|
|
1196
|
+
/** Filter by the object’s `sitesDeepLinksTableId` field. */
|
|
1197
|
+
sitesDeepLinksTableId?: UUIDFilter;
|
|
1198
|
+
/** Filter by the object’s `sitesDeepLinksTableName` field. */
|
|
1199
|
+
sitesDeepLinksTableName?: StringFilter;
|
|
1200
|
+
/** Filter by the object’s `sitesErrorPagesTableId` field. */
|
|
1201
|
+
sitesErrorPagesTableId?: UUIDFilter;
|
|
1202
|
+
/** Filter by the object’s `sitesErrorPagesTableName` field. */
|
|
1203
|
+
sitesErrorPagesTableName?: StringFilter;
|
|
1166
1204
|
/** Filter by the object’s `sitesTableId` field. */
|
|
1167
1205
|
sitesTableId?: UUIDFilter;
|
|
1168
1206
|
/** Filter by the object’s `sitesTableName` field. */
|
|
1169
1207
|
sitesTableName?: StringFilter;
|
|
1208
|
+
/** Filter by the object’s `sitesWebConfigTableId` field. */
|
|
1209
|
+
sitesWebConfigTableId?: UUIDFilter;
|
|
1210
|
+
/** Filter by the object’s `sitesWebConfigTableName` field. */
|
|
1211
|
+
sitesWebConfigTableName?: StringFilter;
|
|
1170
1212
|
}
|
|
1171
1213
|
/** An input for mutations affecting `CatalogModule` */
|
|
1172
1214
|
export interface CatalogModuleInput {
|
|
@@ -1175,6 +1217,8 @@ export interface CatalogModuleInput {
|
|
|
1175
1217
|
apisTableName?: string;
|
|
1176
1218
|
appsTableId?: string;
|
|
1177
1219
|
appsTableName?: string;
|
|
1220
|
+
bucketsTableId?: string;
|
|
1221
|
+
bucketsTableName?: string;
|
|
1178
1222
|
databaseId: string;
|
|
1179
1223
|
defaultPermissions?: string[];
|
|
1180
1224
|
domainsTableId?: string;
|
|
@@ -1197,8 +1241,16 @@ export interface CatalogModuleInput {
|
|
|
1197
1241
|
resourcesTableName?: string;
|
|
1198
1242
|
schemaId?: string;
|
|
1199
1243
|
scope: string;
|
|
1244
|
+
sitesAppLinksTableId?: string;
|
|
1245
|
+
sitesAppLinksTableName?: string;
|
|
1246
|
+
sitesDeepLinksTableId?: string;
|
|
1247
|
+
sitesDeepLinksTableName?: string;
|
|
1248
|
+
sitesErrorPagesTableId?: string;
|
|
1249
|
+
sitesErrorPagesTableName?: string;
|
|
1200
1250
|
sitesTableId?: string;
|
|
1201
1251
|
sitesTableName?: string;
|
|
1252
|
+
sitesWebConfigTableId?: string;
|
|
1253
|
+
sitesWebConfigTableName?: string;
|
|
1202
1254
|
}
|
|
1203
1255
|
/** Represents an update to a `CatalogModule`. Fields that are set will be updated. */
|
|
1204
1256
|
export interface CatalogModulePatch {
|
|
@@ -1207,6 +1259,8 @@ export interface CatalogModulePatch {
|
|
|
1207
1259
|
apisTableName?: string;
|
|
1208
1260
|
appsTableId?: string;
|
|
1209
1261
|
appsTableName?: string;
|
|
1262
|
+
bucketsTableId?: string;
|
|
1263
|
+
bucketsTableName?: string;
|
|
1210
1264
|
databaseId?: string;
|
|
1211
1265
|
defaultPermissions?: string[];
|
|
1212
1266
|
domainsTableId?: string;
|
|
@@ -1229,8 +1283,61 @@ export interface CatalogModulePatch {
|
|
|
1229
1283
|
resourcesTableName?: string;
|
|
1230
1284
|
schemaId?: string;
|
|
1231
1285
|
scope?: string;
|
|
1286
|
+
sitesAppLinksTableId?: string;
|
|
1287
|
+
sitesAppLinksTableName?: string;
|
|
1288
|
+
sitesDeepLinksTableId?: string;
|
|
1289
|
+
sitesDeepLinksTableName?: string;
|
|
1290
|
+
sitesErrorPagesTableId?: string;
|
|
1291
|
+
sitesErrorPagesTableName?: string;
|
|
1232
1292
|
sitesTableId?: string;
|
|
1233
1293
|
sitesTableName?: string;
|
|
1294
|
+
sitesWebConfigTableId?: string;
|
|
1295
|
+
sitesWebConfigTableName?: string;
|
|
1296
|
+
}
|
|
1297
|
+
/** A filter to be used against many `ApiSurfaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1298
|
+
export interface CatalogModuleToManyApiSurfaceModuleFilter {
|
|
1299
|
+
/** Filters to entities where every related entity matches. */
|
|
1300
|
+
every?: ApiSurfaceModuleFilter;
|
|
1301
|
+
/** Filters to entities where no related entity matches. */
|
|
1302
|
+
none?: ApiSurfaceModuleFilter;
|
|
1303
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1304
|
+
some?: ApiSurfaceModuleFilter;
|
|
1305
|
+
}
|
|
1306
|
+
/** A filter to be used against many `AppModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1307
|
+
export interface CatalogModuleToManyAppModuleFilter {
|
|
1308
|
+
/** Filters to entities where every related entity matches. */
|
|
1309
|
+
every?: AppModuleFilter;
|
|
1310
|
+
/** Filters to entities where no related entity matches. */
|
|
1311
|
+
none?: AppModuleFilter;
|
|
1312
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1313
|
+
some?: AppModuleFilter;
|
|
1314
|
+
}
|
|
1315
|
+
/** A filter to be used against many `DomainModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1316
|
+
export interface CatalogModuleToManyDomainModuleFilter {
|
|
1317
|
+
/** Filters to entities where every related entity matches. */
|
|
1318
|
+
every?: DomainModuleFilter;
|
|
1319
|
+
/** Filters to entities where no related entity matches. */
|
|
1320
|
+
none?: DomainModuleFilter;
|
|
1321
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1322
|
+
some?: DomainModuleFilter;
|
|
1323
|
+
}
|
|
1324
|
+
/** A filter to be used against many `RouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1325
|
+
export interface CatalogModuleToManyRouteModuleFilter {
|
|
1326
|
+
/** Filters to entities where every related entity matches. */
|
|
1327
|
+
every?: RouteModuleFilter;
|
|
1328
|
+
/** Filters to entities where no related entity matches. */
|
|
1329
|
+
none?: RouteModuleFilter;
|
|
1330
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1331
|
+
some?: RouteModuleFilter;
|
|
1332
|
+
}
|
|
1333
|
+
/** A filter to be used against many `SiteSurfaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1334
|
+
export interface CatalogModuleToManySiteSurfaceModuleFilter {
|
|
1335
|
+
/** Filters to entities where every related entity matches. */
|
|
1336
|
+
every?: SiteSurfaceModuleFilter;
|
|
1337
|
+
/** Filters to entities where no related entity matches. */
|
|
1338
|
+
none?: SiteSurfaceModuleFilter;
|
|
1339
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1340
|
+
some?: SiteSurfaceModuleFilter;
|
|
1234
1341
|
}
|
|
1235
1342
|
/** A filter to be used against `ComputeLogModule` object types. All fields are combined with a logical ‘and.’ */
|
|
1236
1343
|
export interface ComputeLogModuleFilter {
|
|
@@ -1678,6 +1785,11 @@ export interface CreateNotificationsModuleInput {
|
|
|
1678
1785
|
/** The `NotificationsModule` to be created by this mutation. */
|
|
1679
1786
|
notificationsModule: NotificationsModuleInput;
|
|
1680
1787
|
}
|
|
1788
|
+
export interface CreatePagesModuleInput {
|
|
1789
|
+
clientMutationId?: string;
|
|
1790
|
+
/** The `PagesModule` to be created by this mutation. */
|
|
1791
|
+
pagesModule: PagesModuleInput;
|
|
1792
|
+
}
|
|
1681
1793
|
export interface CreatePermissionsModuleInput {
|
|
1682
1794
|
clientMutationId?: string;
|
|
1683
1795
|
/** The `PermissionsModule` to be created by this mutation. */
|
|
@@ -2732,6 +2844,10 @@ export interface DeleteNotificationsModuleInput {
|
|
|
2732
2844
|
clientMutationId?: string;
|
|
2733
2845
|
id: string;
|
|
2734
2846
|
}
|
|
2847
|
+
export interface DeletePagesModuleInput {
|
|
2848
|
+
clientMutationId?: string;
|
|
2849
|
+
id: string;
|
|
2850
|
+
}
|
|
2735
2851
|
export interface DeletePermissionsModuleInput {
|
|
2736
2852
|
clientMutationId?: string;
|
|
2737
2853
|
id: string;
|
|
@@ -3004,6 +3120,10 @@ export interface DomainModuleFilter {
|
|
|
3004
3120
|
provisions?: JSONFilter;
|
|
3005
3121
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
3006
3122
|
publicSchemaName?: StringFilter;
|
|
3123
|
+
/** Filter by the object’s `routeModules` relation. */
|
|
3124
|
+
routeModules?: DomainModuleToManyRouteModuleFilter;
|
|
3125
|
+
/** `routeModules` exist. */
|
|
3126
|
+
routeModulesExist?: boolean;
|
|
3007
3127
|
/** Filter by the object’s `schemaId` field. */
|
|
3008
3128
|
schemaId?: UUIDFilter;
|
|
3009
3129
|
/** Filter by the object’s `scope` field. */
|
|
@@ -3063,6 +3183,15 @@ export interface DomainModulePatch {
|
|
|
3063
3183
|
schemaId?: string;
|
|
3064
3184
|
scope?: string;
|
|
3065
3185
|
}
|
|
3186
|
+
/** A filter to be used against many `RouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
3187
|
+
export interface DomainModuleToManyRouteModuleFilter {
|
|
3188
|
+
/** Filters to entities where every related entity matches. */
|
|
3189
|
+
every?: RouteModuleFilter;
|
|
3190
|
+
/** Filters to entities where no related entity matches. */
|
|
3191
|
+
none?: RouteModuleFilter;
|
|
3192
|
+
/** Filters to entities where at least one related entity matches. */
|
|
3193
|
+
some?: RouteModuleFilter;
|
|
3194
|
+
}
|
|
3066
3195
|
/** A filter to be used against `EmailsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
3067
3196
|
export interface EmailsModuleFilter {
|
|
3068
3197
|
/** Checks for all expressions in this list. */
|
|
@@ -4053,6 +4182,10 @@ export interface FunctionInvocationModuleFilter {
|
|
|
4053
4182
|
schemaId?: UUIDFilter;
|
|
4054
4183
|
/** Filter by the object’s `scope` field. */
|
|
4055
4184
|
scope?: StringFilter;
|
|
4185
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
4186
|
+
webhookModules?: FunctionInvocationModuleToManyWebhookModuleFilter;
|
|
4187
|
+
/** `webhookModules` exist. */
|
|
4188
|
+
webhookModulesExist?: boolean;
|
|
4056
4189
|
}
|
|
4057
4190
|
/** An input for mutations affecting `FunctionInvocationModule` */
|
|
4058
4191
|
export interface FunctionInvocationModuleInput {
|
|
@@ -4102,6 +4235,15 @@ export interface FunctionInvocationModulePatch {
|
|
|
4102
4235
|
schemaId?: string;
|
|
4103
4236
|
scope?: string;
|
|
4104
4237
|
}
|
|
4238
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4239
|
+
export interface FunctionInvocationModuleToManyWebhookModuleFilter {
|
|
4240
|
+
/** Filters to entities where every related entity matches. */
|
|
4241
|
+
every?: WebhookModuleFilter;
|
|
4242
|
+
/** Filters to entities where no related entity matches. */
|
|
4243
|
+
none?: WebhookModuleFilter;
|
|
4244
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4245
|
+
some?: WebhookModuleFilter;
|
|
4246
|
+
}
|
|
4105
4247
|
/** A filter to be used against `FunctionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4106
4248
|
export interface FunctionModuleFilter {
|
|
4107
4249
|
/** Checks for all expressions in this list. */
|
|
@@ -4112,6 +4254,8 @@ export interface FunctionModuleFilter {
|
|
|
4112
4254
|
bindingsTableId?: UUIDFilter;
|
|
4113
4255
|
/** Filter by the object’s `bindingsTableName` field. */
|
|
4114
4256
|
bindingsTableName?: StringFilter;
|
|
4257
|
+
/** Filter by the object’s `capabilityBindingsTableId` field. */
|
|
4258
|
+
capabilityBindingsTableId?: UUIDFilter;
|
|
4115
4259
|
/** Filter by the object’s `databaseId` field. */
|
|
4116
4260
|
databaseId?: UUIDFilter;
|
|
4117
4261
|
/** Filter by the object’s `defaultPermissions` field. */
|
|
@@ -4124,8 +4268,16 @@ export interface FunctionModuleFilter {
|
|
|
4124
4268
|
entityField?: StringFilter;
|
|
4125
4269
|
/** Filter by the object’s `entityTableId` field. */
|
|
4126
4270
|
entityTableId?: UUIDFilter;
|
|
4271
|
+
/** Filter by the object’s `functionDeploymentModules` relation. */
|
|
4272
|
+
functionDeploymentModules?: FunctionModuleToManyFunctionDeploymentModuleFilter;
|
|
4273
|
+
/** `functionDeploymentModules` exist. */
|
|
4274
|
+
functionDeploymentModulesExist?: boolean;
|
|
4127
4275
|
/** Filter by the object’s `hasCron` field. */
|
|
4128
4276
|
hasCron?: BooleanFilter;
|
|
4277
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
4278
|
+
httpRouteModules?: FunctionModuleToManyHttpRouteModuleFilter;
|
|
4279
|
+
/** `httpRouteModules` exist. */
|
|
4280
|
+
httpRouteModulesExist?: boolean;
|
|
4129
4281
|
/** Filter by the object’s `id` field. */
|
|
4130
4282
|
id?: UUIDFilter;
|
|
4131
4283
|
/** Negates the expression. */
|
|
@@ -4152,12 +4304,17 @@ export interface FunctionModuleFilter {
|
|
|
4152
4304
|
schemaId?: UUIDFilter;
|
|
4153
4305
|
/** Filter by the object’s `scope` field. */
|
|
4154
4306
|
scope?: StringFilter;
|
|
4307
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
4308
|
+
webhookModules?: FunctionModuleToManyWebhookModuleFilter;
|
|
4309
|
+
/** `webhookModules` exist. */
|
|
4310
|
+
webhookModulesExist?: boolean;
|
|
4155
4311
|
}
|
|
4156
4312
|
/** An input for mutations affecting `FunctionModule` */
|
|
4157
4313
|
export interface FunctionModuleInput {
|
|
4158
4314
|
apiName?: string;
|
|
4159
4315
|
bindingsTableId?: string;
|
|
4160
4316
|
bindingsTableName?: string;
|
|
4317
|
+
capabilityBindingsTableId?: string;
|
|
4161
4318
|
databaseId: string;
|
|
4162
4319
|
defaultPermissions?: string[];
|
|
4163
4320
|
definitionsTableId?: string;
|
|
@@ -4182,6 +4339,7 @@ export interface FunctionModulePatch {
|
|
|
4182
4339
|
apiName?: string;
|
|
4183
4340
|
bindingsTableId?: string;
|
|
4184
4341
|
bindingsTableName?: string;
|
|
4342
|
+
capabilityBindingsTableId?: string;
|
|
4185
4343
|
databaseId?: string;
|
|
4186
4344
|
defaultPermissions?: string[];
|
|
4187
4345
|
definitionsTableId?: string;
|
|
@@ -4201,6 +4359,33 @@ export interface FunctionModulePatch {
|
|
|
4201
4359
|
schemaId?: string;
|
|
4202
4360
|
scope?: string;
|
|
4203
4361
|
}
|
|
4362
|
+
/** A filter to be used against many `FunctionDeploymentModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4363
|
+
export interface FunctionModuleToManyFunctionDeploymentModuleFilter {
|
|
4364
|
+
/** Filters to entities where every related entity matches. */
|
|
4365
|
+
every?: FunctionDeploymentModuleFilter;
|
|
4366
|
+
/** Filters to entities where no related entity matches. */
|
|
4367
|
+
none?: FunctionDeploymentModuleFilter;
|
|
4368
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4369
|
+
some?: FunctionDeploymentModuleFilter;
|
|
4370
|
+
}
|
|
4371
|
+
/** A filter to be used against many `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4372
|
+
export interface FunctionModuleToManyHttpRouteModuleFilter {
|
|
4373
|
+
/** Filters to entities where every related entity matches. */
|
|
4374
|
+
every?: HttpRouteModuleFilter;
|
|
4375
|
+
/** Filters to entities where no related entity matches. */
|
|
4376
|
+
none?: HttpRouteModuleFilter;
|
|
4377
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4378
|
+
some?: HttpRouteModuleFilter;
|
|
4379
|
+
}
|
|
4380
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4381
|
+
export interface FunctionModuleToManyWebhookModuleFilter {
|
|
4382
|
+
/** Filters to entities where every related entity matches. */
|
|
4383
|
+
every?: WebhookModuleFilter;
|
|
4384
|
+
/** Filters to entities where no related entity matches. */
|
|
4385
|
+
none?: WebhookModuleFilter;
|
|
4386
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4387
|
+
some?: WebhookModuleFilter;
|
|
4388
|
+
}
|
|
4204
4389
|
/** A filter to be used against `GraphExecutionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4205
4390
|
export interface GraphExecutionModuleFilter {
|
|
4206
4391
|
/** Checks for all expressions in this list. */
|
|
@@ -4326,6 +4511,10 @@ export interface GraphModuleFilter {
|
|
|
4326
4511
|
entityField?: StringFilter;
|
|
4327
4512
|
/** Filter by the object’s `entityTableId` field. */
|
|
4328
4513
|
entityTableId?: UUIDFilter;
|
|
4514
|
+
/** Filter by the object’s `graphExecutionModules` relation. */
|
|
4515
|
+
graphExecutionModules?: GraphModuleToManyGraphExecutionModuleFilter;
|
|
4516
|
+
/** `graphExecutionModules` exist. */
|
|
4517
|
+
graphExecutionModulesExist?: boolean;
|
|
4329
4518
|
/** Filter by the object’s `graphsTableId` field. */
|
|
4330
4519
|
graphsTableId?: UUIDFilter;
|
|
4331
4520
|
/** Filter by the object’s `id` field. */
|
|
@@ -4399,6 +4588,15 @@ export interface GraphModulePatch {
|
|
|
4399
4588
|
publicSchemaName?: string;
|
|
4400
4589
|
scope?: string;
|
|
4401
4590
|
}
|
|
4591
|
+
/** A filter to be used against many `GraphExecutionModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4592
|
+
export interface GraphModuleToManyGraphExecutionModuleFilter {
|
|
4593
|
+
/** Filters to entities where every related entity matches. */
|
|
4594
|
+
every?: GraphExecutionModuleFilter;
|
|
4595
|
+
/** Filters to entities where no related entity matches. */
|
|
4596
|
+
none?: GraphExecutionModuleFilter;
|
|
4597
|
+
/** Filters to entities where at least one related entity matches. */
|
|
4598
|
+
some?: GraphExecutionModuleFilter;
|
|
4599
|
+
}
|
|
4402
4600
|
/** A filter to be used against `HierarchyModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4403
4601
|
export interface HierarchyModuleFilter {
|
|
4404
4602
|
/** Checks for all expressions in this list. */
|
|
@@ -4947,6 +5145,10 @@ export interface InfraSecretsModuleFilter {
|
|
|
4947
5145
|
secretsTableId?: UUIDFilter;
|
|
4948
5146
|
/** Filter by the object’s `secretsTableName` field. */
|
|
4949
5147
|
secretsTableName?: StringFilter;
|
|
5148
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
5149
|
+
webhookModules?: InfraSecretsModuleToManyWebhookModuleFilter;
|
|
5150
|
+
/** `webhookModules` exist. */
|
|
5151
|
+
webhookModulesExist?: boolean;
|
|
4950
5152
|
}
|
|
4951
5153
|
/** An input for mutations affecting `InfraSecretsModule` */
|
|
4952
5154
|
export interface InfraSecretsModuleInput {
|
|
@@ -4986,6 +5188,15 @@ export interface InfraSecretsModulePatch {
|
|
|
4986
5188
|
secretsTableId?: string;
|
|
4987
5189
|
secretsTableName?: string;
|
|
4988
5190
|
}
|
|
5191
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
5192
|
+
export interface InfraSecretsModuleToManyWebhookModuleFilter {
|
|
5193
|
+
/** Filters to entities where every related entity matches. */
|
|
5194
|
+
every?: WebhookModuleFilter;
|
|
5195
|
+
/** Filters to entities where no related entity matches. */
|
|
5196
|
+
none?: WebhookModuleFilter;
|
|
5197
|
+
/** Filters to entities where at least one related entity matches. */
|
|
5198
|
+
some?: WebhookModuleFilter;
|
|
5199
|
+
}
|
|
4989
5200
|
/** A filter to be used against `IntegrationProvidersModule` object types. All fields are combined with a logical ‘and.’ */
|
|
4990
5201
|
export interface IntegrationProvidersModuleFilter {
|
|
4991
5202
|
/** Checks for all expressions in this list. */
|
|
@@ -5723,6 +5934,10 @@ export interface MerkleStoreModuleFilter {
|
|
|
5723
5934
|
objectTableId?: UUIDFilter;
|
|
5724
5935
|
/** Checks for any expressions in this list. */
|
|
5725
5936
|
or?: MerkleStoreModuleFilter[];
|
|
5937
|
+
/** Filter by the object’s `pagesModules` relation. */
|
|
5938
|
+
pagesModules?: MerkleStoreModuleToManyPagesModuleFilter;
|
|
5939
|
+
/** `pagesModules` exist. */
|
|
5940
|
+
pagesModulesExist?: boolean;
|
|
5726
5941
|
/** Filter by the object’s `permissionKey` field. */
|
|
5727
5942
|
permissionKey?: StringFilter;
|
|
5728
5943
|
/** Filter by the object’s `prefix` field. */
|
|
@@ -5737,6 +5952,10 @@ export interface MerkleStoreModuleFilter {
|
|
|
5737
5952
|
publicSchemaName?: StringFilter;
|
|
5738
5953
|
/** Filter by the object’s `refTableId` field. */
|
|
5739
5954
|
refTableId?: UUIDFilter;
|
|
5955
|
+
/** Filter by the object’s `resourceModules` relation. */
|
|
5956
|
+
resourceModules?: MerkleStoreModuleToManyResourceModuleFilter;
|
|
5957
|
+
/** `resourceModules` exist. */
|
|
5958
|
+
resourceModulesExist?: boolean;
|
|
5740
5959
|
/** Filter by the object’s `schemaId` field. */
|
|
5741
5960
|
schemaId?: UUIDFilter;
|
|
5742
5961
|
/** Filter by the object’s `scope` field. */
|
|
@@ -5804,6 +6023,24 @@ export interface MerkleStoreModuleToManyGraphModuleFilter {
|
|
|
5804
6023
|
/** Filters to entities where at least one related entity matches. */
|
|
5805
6024
|
some?: GraphModuleFilter;
|
|
5806
6025
|
}
|
|
6026
|
+
/** A filter to be used against many `PagesModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6027
|
+
export interface MerkleStoreModuleToManyPagesModuleFilter {
|
|
6028
|
+
/** Filters to entities where every related entity matches. */
|
|
6029
|
+
every?: PagesModuleFilter;
|
|
6030
|
+
/** Filters to entities where no related entity matches. */
|
|
6031
|
+
none?: PagesModuleFilter;
|
|
6032
|
+
/** Filters to entities where at least one related entity matches. */
|
|
6033
|
+
some?: PagesModuleFilter;
|
|
6034
|
+
}
|
|
6035
|
+
/** A filter to be used against many `ResourceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6036
|
+
export interface MerkleStoreModuleToManyResourceModuleFilter {
|
|
6037
|
+
/** Filters to entities where every related entity matches. */
|
|
6038
|
+
every?: ResourceModuleFilter;
|
|
6039
|
+
/** Filters to entities where no related entity matches. */
|
|
6040
|
+
none?: ResourceModuleFilter;
|
|
6041
|
+
/** Filters to entities where at least one related entity matches. */
|
|
6042
|
+
some?: ResourceModuleFilter;
|
|
6043
|
+
}
|
|
5807
6044
|
/** A filter to be used against `NamespaceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
5808
6045
|
export interface NamespaceModuleFilter {
|
|
5809
6046
|
/** Checks for all expressions in this list. */
|
|
@@ -5818,6 +6055,10 @@ export interface NamespaceModuleFilter {
|
|
|
5818
6055
|
entityField?: StringFilter;
|
|
5819
6056
|
/** Filter by the object’s `entityTableId` field. */
|
|
5820
6057
|
entityTableId?: UUIDFilter;
|
|
6058
|
+
/** Filter by the object’s `functionDeploymentModules` relation. */
|
|
6059
|
+
functionDeploymentModules?: NamespaceModuleToManyFunctionDeploymentModuleFilter;
|
|
6060
|
+
/** `functionDeploymentModules` exist. */
|
|
6061
|
+
functionDeploymentModulesExist?: boolean;
|
|
5821
6062
|
/** Filter by the object’s `id` field. */
|
|
5822
6063
|
id?: UUIDFilter;
|
|
5823
6064
|
/** Filter by the object’s `namespaceEventsTableId` field. */
|
|
@@ -5846,10 +6087,18 @@ export interface NamespaceModuleFilter {
|
|
|
5846
6087
|
provisions?: JSONFilter;
|
|
5847
6088
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
5848
6089
|
publicSchemaName?: StringFilter;
|
|
6090
|
+
/** Filter by the object’s `resourceModules` relation. */
|
|
6091
|
+
resourceModules?: NamespaceModuleToManyResourceModuleFilter;
|
|
6092
|
+
/** `resourceModules` exist. */
|
|
6093
|
+
resourceModulesExist?: boolean;
|
|
5849
6094
|
/** Filter by the object’s `schemaId` field. */
|
|
5850
6095
|
schemaId?: UUIDFilter;
|
|
5851
6096
|
/** Filter by the object’s `scope` field. */
|
|
5852
6097
|
scope?: StringFilter;
|
|
6098
|
+
/** Filter by the object’s `webhookModules` relation. */
|
|
6099
|
+
webhookModules?: NamespaceModuleToManyWebhookModuleFilter;
|
|
6100
|
+
/** `webhookModules` exist. */
|
|
6101
|
+
webhookModulesExist?: boolean;
|
|
5853
6102
|
}
|
|
5854
6103
|
/** An input for mutations affecting `NamespaceModule` */
|
|
5855
6104
|
export interface NamespaceModuleInput {
|
|
@@ -5895,6 +6144,33 @@ export interface NamespaceModulePatch {
|
|
|
5895
6144
|
schemaId?: string;
|
|
5896
6145
|
scope?: string;
|
|
5897
6146
|
}
|
|
6147
|
+
/** A filter to be used against many `FunctionDeploymentModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6148
|
+
export interface NamespaceModuleToManyFunctionDeploymentModuleFilter {
|
|
6149
|
+
/** Filters to entities where every related entity matches. */
|
|
6150
|
+
every?: FunctionDeploymentModuleFilter;
|
|
6151
|
+
/** Filters to entities where no related entity matches. */
|
|
6152
|
+
none?: FunctionDeploymentModuleFilter;
|
|
6153
|
+
/** Filters to entities where at least one related entity matches. */
|
|
6154
|
+
some?: FunctionDeploymentModuleFilter;
|
|
6155
|
+
}
|
|
6156
|
+
/** A filter to be used against many `ResourceModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6157
|
+
export interface NamespaceModuleToManyResourceModuleFilter {
|
|
6158
|
+
/** Filters to entities where every related entity matches. */
|
|
6159
|
+
every?: ResourceModuleFilter;
|
|
6160
|
+
/** Filters to entities where no related entity matches. */
|
|
6161
|
+
none?: ResourceModuleFilter;
|
|
6162
|
+
/** Filters to entities where at least one related entity matches. */
|
|
6163
|
+
some?: ResourceModuleFilter;
|
|
6164
|
+
}
|
|
6165
|
+
/** A filter to be used against many `WebhookModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6166
|
+
export interface NamespaceModuleToManyWebhookModuleFilter {
|
|
6167
|
+
/** Filters to entities where every related entity matches. */
|
|
6168
|
+
every?: WebhookModuleFilter;
|
|
6169
|
+
/** Filters to entities where no related entity matches. */
|
|
6170
|
+
none?: WebhookModuleFilter;
|
|
6171
|
+
/** Filters to entities where at least one related entity matches. */
|
|
6172
|
+
some?: WebhookModuleFilter;
|
|
6173
|
+
}
|
|
5898
6174
|
/** A filter to be used against `NotificationsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
5899
6175
|
export interface NotificationsModuleFilter {
|
|
5900
6176
|
/** Checks for all expressions in this list. */
|
|
@@ -6006,6 +6282,103 @@ export interface NotificationsModulePatch {
|
|
|
6006
6282
|
suppressionsTableId?: string;
|
|
6007
6283
|
userSettingsTableId?: string;
|
|
6008
6284
|
}
|
|
6285
|
+
/** A filter to be used against `PagesModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6286
|
+
export interface PagesModuleFilter {
|
|
6287
|
+
/** Checks for all expressions in this list. */
|
|
6288
|
+
and?: PagesModuleFilter[];
|
|
6289
|
+
/** Filter by the object’s `apiName` field. */
|
|
6290
|
+
apiName?: StringFilter;
|
|
6291
|
+
/** Filter by the object’s `createdAt` field. */
|
|
6292
|
+
createdAt?: DatetimeFilter;
|
|
6293
|
+
/** Filter by the object’s `databaseId` field. */
|
|
6294
|
+
databaseId?: UUIDFilter;
|
|
6295
|
+
/** Filter by the object’s `entityTableId` field. */
|
|
6296
|
+
entityTableId?: UUIDFilter;
|
|
6297
|
+
/** Filter by the object’s `id` field. */
|
|
6298
|
+
id?: UUIDFilter;
|
|
6299
|
+
/** Filter by the object’s `merkleStoreModule` relation. */
|
|
6300
|
+
merkleStoreModule?: MerkleStoreModuleFilter;
|
|
6301
|
+
/** Filter by the object’s `merkleStoreModuleId` field. */
|
|
6302
|
+
merkleStoreModuleId?: UUIDFilter;
|
|
6303
|
+
/** Negates the expression. */
|
|
6304
|
+
not?: PagesModuleFilter;
|
|
6305
|
+
/** Checks for any expressions in this list. */
|
|
6306
|
+
or?: PagesModuleFilter[];
|
|
6307
|
+
/** Filter by the object’s `pagesTableId` field. */
|
|
6308
|
+
pagesTableId?: UUIDFilter;
|
|
6309
|
+
/** Filter by the object’s `policies` field. */
|
|
6310
|
+
policies?: JSONFilter;
|
|
6311
|
+
/** Filter by the object’s `prefix` field. */
|
|
6312
|
+
prefix?: StringFilter;
|
|
6313
|
+
/** Filter by the object’s `privateApiName` field. */
|
|
6314
|
+
privateApiName?: StringFilter;
|
|
6315
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
6316
|
+
privateSchemaId?: UUIDFilter;
|
|
6317
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
6318
|
+
privateSchemaName?: StringFilter;
|
|
6319
|
+
/** Filter by the object’s `provisions` field. */
|
|
6320
|
+
provisions?: JSONFilter;
|
|
6321
|
+
/** Filter by the object’s `publicSchemaId` field. */
|
|
6322
|
+
publicSchemaId?: UUIDFilter;
|
|
6323
|
+
/** Filter by the object’s `publicSchemaName` field. */
|
|
6324
|
+
publicSchemaName?: StringFilter;
|
|
6325
|
+
/** Filter by the object’s `scope` field. */
|
|
6326
|
+
scope?: StringFilter;
|
|
6327
|
+
/** Filter by the object’s `siteSurfaceModule` relation. */
|
|
6328
|
+
siteSurfaceModule?: SiteSurfaceModuleFilter;
|
|
6329
|
+
/** A related `siteSurfaceModule` exists. */
|
|
6330
|
+
siteSurfaceModuleExists?: boolean;
|
|
6331
|
+
/** Filter by the object’s `siteSurfaceModuleId` field. */
|
|
6332
|
+
siteSurfaceModuleId?: UUIDFilter;
|
|
6333
|
+
/** Filter by the object’s `sitesTableId` field. */
|
|
6334
|
+
sitesTableId?: UUIDFilter;
|
|
6335
|
+
/** Filter by the object’s `storeNamePrefix` field. */
|
|
6336
|
+
storeNamePrefix?: StringFilter;
|
|
6337
|
+
}
|
|
6338
|
+
/** An input for mutations affecting `PagesModule` */
|
|
6339
|
+
export interface PagesModuleInput {
|
|
6340
|
+
apiName?: string;
|
|
6341
|
+
createdAt?: string;
|
|
6342
|
+
databaseId: string;
|
|
6343
|
+
entityTableId?: string;
|
|
6344
|
+
id?: string;
|
|
6345
|
+
merkleStoreModuleId: string;
|
|
6346
|
+
pagesTableId?: string;
|
|
6347
|
+
policies?: unknown;
|
|
6348
|
+
prefix: string;
|
|
6349
|
+
privateApiName?: string;
|
|
6350
|
+
privateSchemaId?: string;
|
|
6351
|
+
privateSchemaName?: string;
|
|
6352
|
+
provisions?: unknown;
|
|
6353
|
+
publicSchemaId?: string;
|
|
6354
|
+
publicSchemaName?: string;
|
|
6355
|
+
scope: string;
|
|
6356
|
+
siteSurfaceModuleId?: string;
|
|
6357
|
+
sitesTableId?: string;
|
|
6358
|
+
storeNamePrefix?: string;
|
|
6359
|
+
}
|
|
6360
|
+
/** Represents an update to a `PagesModule`. Fields that are set will be updated. */
|
|
6361
|
+
export interface PagesModulePatch {
|
|
6362
|
+
apiName?: string;
|
|
6363
|
+
createdAt?: string;
|
|
6364
|
+
databaseId?: string;
|
|
6365
|
+
entityTableId?: string;
|
|
6366
|
+
id?: string;
|
|
6367
|
+
merkleStoreModuleId?: string;
|
|
6368
|
+
pagesTableId?: string;
|
|
6369
|
+
policies?: unknown;
|
|
6370
|
+
prefix?: string;
|
|
6371
|
+
privateApiName?: string;
|
|
6372
|
+
privateSchemaId?: string;
|
|
6373
|
+
privateSchemaName?: string;
|
|
6374
|
+
provisions?: unknown;
|
|
6375
|
+
publicSchemaId?: string;
|
|
6376
|
+
publicSchemaName?: string;
|
|
6377
|
+
scope?: string;
|
|
6378
|
+
siteSurfaceModuleId?: string;
|
|
6379
|
+
sitesTableId?: string;
|
|
6380
|
+
storeNamePrefix?: string;
|
|
6381
|
+
}
|
|
6009
6382
|
/** A filter to be used against `PermissionsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
6010
6383
|
export interface PermissionsModuleFilter {
|
|
6011
6384
|
/** Filter by the object’s `actorTableId` field. */
|
|
@@ -7067,6 +7440,10 @@ export interface ResourceModuleFilter {
|
|
|
7067
7440
|
entityField?: StringFilter;
|
|
7068
7441
|
/** Filter by the object’s `entityTableId` field. */
|
|
7069
7442
|
entityTableId?: UUIDFilter;
|
|
7443
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
7444
|
+
httpRouteModules?: ResourceModuleToManyHttpRouteModuleFilter;
|
|
7445
|
+
/** `httpRouteModules` exist. */
|
|
7446
|
+
httpRouteModulesExist?: boolean;
|
|
7070
7447
|
/** Filter by the object’s `id` field. */
|
|
7071
7448
|
id?: UUIDFilter;
|
|
7072
7449
|
/** Filter by the object’s `installationStoreName` field. */
|
|
@@ -7220,6 +7597,15 @@ export interface ResourceModulePatch {
|
|
|
7220
7597
|
schemaId?: string;
|
|
7221
7598
|
scope?: string;
|
|
7222
7599
|
}
|
|
7600
|
+
/** A filter to be used against many `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
7601
|
+
export interface ResourceModuleToManyHttpRouteModuleFilter {
|
|
7602
|
+
/** Filters to entities where every related entity matches. */
|
|
7603
|
+
every?: HttpRouteModuleFilter;
|
|
7604
|
+
/** Filters to entities where no related entity matches. */
|
|
7605
|
+
none?: HttpRouteModuleFilter;
|
|
7606
|
+
/** Filters to entities where at least one related entity matches. */
|
|
7607
|
+
some?: HttpRouteModuleFilter;
|
|
7608
|
+
}
|
|
7223
7609
|
/** A filter to be used against `RlsModule` object types. All fields are combined with a logical ‘and.’ */
|
|
7224
7610
|
export interface RlsModuleFilter {
|
|
7225
7611
|
/** Checks for all expressions in this list. */
|
|
@@ -7613,12 +7999,20 @@ export interface SiteSurfaceModuleFilter {
|
|
|
7613
7999
|
not?: SiteSurfaceModuleFilter;
|
|
7614
8000
|
/** Checks for any expressions in this list. */
|
|
7615
8001
|
or?: SiteSurfaceModuleFilter[];
|
|
8002
|
+
/** Filter by the object’s `pagesModules` relation. */
|
|
8003
|
+
pagesModules?: SiteSurfaceModuleToManyPagesModuleFilter;
|
|
8004
|
+
/** `pagesModules` exist. */
|
|
8005
|
+
pagesModulesExist?: boolean;
|
|
7616
8006
|
/** Filter by the object’s `policies` field. */
|
|
7617
8007
|
policies?: JSONFilter;
|
|
7618
8008
|
/** Filter by the object’s `prefix` field. */
|
|
7619
8009
|
prefix?: StringFilter;
|
|
7620
8010
|
/** Filter by the object’s `privateApiName` field. */
|
|
7621
8011
|
privateApiName?: StringFilter;
|
|
8012
|
+
/** Filter by the object’s `privateSchemaId` field. */
|
|
8013
|
+
privateSchemaId?: UUIDFilter;
|
|
8014
|
+
/** Filter by the object’s `privateSchemaName` field. */
|
|
8015
|
+
privateSchemaName?: StringFilter;
|
|
7622
8016
|
/** Filter by the object’s `provisions` field. */
|
|
7623
8017
|
provisions?: JSONFilter;
|
|
7624
8018
|
/** Filter by the object’s `publicSchemaName` field. */
|
|
@@ -7627,6 +8021,18 @@ export interface SiteSurfaceModuleFilter {
|
|
|
7627
8021
|
schemaId?: UUIDFilter;
|
|
7628
8022
|
/** Filter by the object’s `scope` field. */
|
|
7629
8023
|
scope?: StringFilter;
|
|
8024
|
+
/** Filter by the object’s `siteAppLinksTableId` field. */
|
|
8025
|
+
siteAppLinksTableId?: UUIDFilter;
|
|
8026
|
+
/** Filter by the object’s `siteAppLinksTableName` field. */
|
|
8027
|
+
siteAppLinksTableName?: StringFilter;
|
|
8028
|
+
/** Filter by the object’s `siteDeepLinksTableId` field. */
|
|
8029
|
+
siteDeepLinksTableId?: UUIDFilter;
|
|
8030
|
+
/** Filter by the object’s `siteDeepLinksTableName` field. */
|
|
8031
|
+
siteDeepLinksTableName?: StringFilter;
|
|
8032
|
+
/** Filter by the object’s `siteErrorPagesTableId` field. */
|
|
8033
|
+
siteErrorPagesTableId?: UUIDFilter;
|
|
8034
|
+
/** Filter by the object’s `siteErrorPagesTableName` field. */
|
|
8035
|
+
siteErrorPagesTableName?: StringFilter;
|
|
7630
8036
|
/** Filter by the object’s `siteMetadataTableId` field. */
|
|
7631
8037
|
siteMetadataTableId?: UUIDFilter;
|
|
7632
8038
|
/** Filter by the object’s `siteMetadataTableName` field. */
|
|
@@ -7639,6 +8045,10 @@ export interface SiteSurfaceModuleFilter {
|
|
|
7639
8045
|
siteThemesTableId?: UUIDFilter;
|
|
7640
8046
|
/** Filter by the object’s `siteThemesTableName` field. */
|
|
7641
8047
|
siteThemesTableName?: StringFilter;
|
|
8048
|
+
/** Filter by the object’s `siteWebConfigTableId` field. */
|
|
8049
|
+
siteWebConfigTableId?: UUIDFilter;
|
|
8050
|
+
/** Filter by the object’s `siteWebConfigTableName` field. */
|
|
8051
|
+
siteWebConfigTableName?: StringFilter;
|
|
7642
8052
|
/** Filter by the object’s `sitesTableId` field. */
|
|
7643
8053
|
sitesTableId?: UUIDFilter;
|
|
7644
8054
|
/** Filter by the object’s `sitesTableName` field. */
|
|
@@ -7656,16 +8066,26 @@ export interface SiteSurfaceModuleInput {
|
|
|
7656
8066
|
policies?: unknown;
|
|
7657
8067
|
prefix?: string;
|
|
7658
8068
|
privateApiName?: string;
|
|
8069
|
+
privateSchemaId?: string;
|
|
8070
|
+
privateSchemaName?: string;
|
|
7659
8071
|
provisions?: unknown;
|
|
7660
8072
|
publicSchemaName?: string;
|
|
7661
8073
|
schemaId?: string;
|
|
7662
8074
|
scope: string;
|
|
8075
|
+
siteAppLinksTableId?: string;
|
|
8076
|
+
siteAppLinksTableName?: string;
|
|
8077
|
+
siteDeepLinksTableId?: string;
|
|
8078
|
+
siteDeepLinksTableName?: string;
|
|
8079
|
+
siteErrorPagesTableId?: string;
|
|
8080
|
+
siteErrorPagesTableName?: string;
|
|
7663
8081
|
siteMetadataTableId?: string;
|
|
7664
8082
|
siteMetadataTableName?: string;
|
|
7665
8083
|
siteModulesTableId?: string;
|
|
7666
8084
|
siteModulesTableName?: string;
|
|
7667
8085
|
siteThemesTableId?: string;
|
|
7668
8086
|
siteThemesTableName?: string;
|
|
8087
|
+
siteWebConfigTableId?: string;
|
|
8088
|
+
siteWebConfigTableName?: string;
|
|
7669
8089
|
sitesTableId?: string;
|
|
7670
8090
|
sitesTableName?: string;
|
|
7671
8091
|
}
|
|
@@ -7681,19 +8101,38 @@ export interface SiteSurfaceModulePatch {
|
|
|
7681
8101
|
policies?: unknown;
|
|
7682
8102
|
prefix?: string;
|
|
7683
8103
|
privateApiName?: string;
|
|
8104
|
+
privateSchemaId?: string;
|
|
8105
|
+
privateSchemaName?: string;
|
|
7684
8106
|
provisions?: unknown;
|
|
7685
8107
|
publicSchemaName?: string;
|
|
7686
8108
|
schemaId?: string;
|
|
7687
8109
|
scope?: string;
|
|
8110
|
+
siteAppLinksTableId?: string;
|
|
8111
|
+
siteAppLinksTableName?: string;
|
|
8112
|
+
siteDeepLinksTableId?: string;
|
|
8113
|
+
siteDeepLinksTableName?: string;
|
|
8114
|
+
siteErrorPagesTableId?: string;
|
|
8115
|
+
siteErrorPagesTableName?: string;
|
|
7688
8116
|
siteMetadataTableId?: string;
|
|
7689
8117
|
siteMetadataTableName?: string;
|
|
7690
8118
|
siteModulesTableId?: string;
|
|
7691
8119
|
siteModulesTableName?: string;
|
|
7692
8120
|
siteThemesTableId?: string;
|
|
7693
8121
|
siteThemesTableName?: string;
|
|
8122
|
+
siteWebConfigTableId?: string;
|
|
8123
|
+
siteWebConfigTableName?: string;
|
|
7694
8124
|
sitesTableId?: string;
|
|
7695
8125
|
sitesTableName?: string;
|
|
7696
8126
|
}
|
|
8127
|
+
/** A filter to be used against many `PagesModule` object types. All fields are combined with a logical ‘and.’ */
|
|
8128
|
+
export interface SiteSurfaceModuleToManyPagesModuleFilter {
|
|
8129
|
+
/** Filters to entities where every related entity matches. */
|
|
8130
|
+
every?: PagesModuleFilter;
|
|
8131
|
+
/** Filters to entities where no related entity matches. */
|
|
8132
|
+
none?: PagesModuleFilter;
|
|
8133
|
+
/** Filters to entities where at least one related entity matches. */
|
|
8134
|
+
some?: PagesModuleFilter;
|
|
8135
|
+
}
|
|
7697
8136
|
/** A filter to be used against `StorageLogModule` object types. All fields are combined with a logical ‘and.’ */
|
|
7698
8137
|
export interface StorageLogModuleFilter {
|
|
7699
8138
|
/** Filter by the object’s `actorFkTableId` field. */
|
|
@@ -7803,6 +8242,8 @@ export interface StorageModuleFilter {
|
|
|
7803
8242
|
bucketsTableName?: StringFilter;
|
|
7804
8243
|
/** Filter by the object’s `cacheTtlSeconds` field. */
|
|
7805
8244
|
cacheTtlSeconds?: IntFilter;
|
|
8245
|
+
/** Filter by the object’s `catalogModuleId` field. */
|
|
8246
|
+
catalogModuleId?: UUIDFilter;
|
|
7806
8247
|
/** Filter by the object’s `confirmUploadDelay` field. */
|
|
7807
8248
|
confirmUploadDelay?: IntervalFilter;
|
|
7808
8249
|
/** Filter by the object’s `databaseId` field. */
|
|
@@ -7837,6 +8278,10 @@ export interface StorageModuleFilter {
|
|
|
7837
8278
|
hasPathShares?: BooleanFilter;
|
|
7838
8279
|
/** Filter by the object’s `hasVersioning` field. */
|
|
7839
8280
|
hasVersioning?: BooleanFilter;
|
|
8281
|
+
/** Filter by the object’s `httpRouteModules` relation. */
|
|
8282
|
+
httpRouteModules?: StorageModuleToManyHttpRouteModuleFilter;
|
|
8283
|
+
/** `httpRouteModules` exist. */
|
|
8284
|
+
httpRouteModulesExist?: boolean;
|
|
7840
8285
|
/** Filter by the object’s `id` field. */
|
|
7841
8286
|
id?: UUIDFilter;
|
|
7842
8287
|
/** Filter by the object’s `maxBulkFiles` field. */
|
|
@@ -7885,6 +8330,7 @@ export interface StorageModuleInput {
|
|
|
7885
8330
|
bucketsTableId?: string;
|
|
7886
8331
|
bucketsTableName?: string;
|
|
7887
8332
|
cacheTtlSeconds?: number;
|
|
8333
|
+
catalogModuleId?: string;
|
|
7888
8334
|
confirmUploadDelay?: IntervalInput;
|
|
7889
8335
|
databaseId: string;
|
|
7890
8336
|
defaultMaxFileSize?: string;
|
|
@@ -7928,6 +8374,7 @@ export interface StorageModulePatch {
|
|
|
7928
8374
|
bucketsTableId?: string;
|
|
7929
8375
|
bucketsTableName?: string;
|
|
7930
8376
|
cacheTtlSeconds?: number;
|
|
8377
|
+
catalogModuleId?: string;
|
|
7931
8378
|
confirmUploadDelay?: IntervalInput;
|
|
7932
8379
|
databaseId?: string;
|
|
7933
8380
|
defaultMaxFileSize?: string;
|
|
@@ -7964,6 +8411,15 @@ export interface StorageModulePatch {
|
|
|
7964
8411
|
scope?: string;
|
|
7965
8412
|
uploadUrlExpirySeconds?: number;
|
|
7966
8413
|
}
|
|
8414
|
+
/** A filter to be used against many `HttpRouteModule` object types. All fields are combined with a logical ‘and.’ */
|
|
8415
|
+
export interface StorageModuleToManyHttpRouteModuleFilter {
|
|
8416
|
+
/** Filters to entities where every related entity matches. */
|
|
8417
|
+
every?: HttpRouteModuleFilter;
|
|
8418
|
+
/** Filters to entities where no related entity matches. */
|
|
8419
|
+
none?: HttpRouteModuleFilter;
|
|
8420
|
+
/** Filters to entities where at least one related entity matches. */
|
|
8421
|
+
some?: HttpRouteModuleFilter;
|
|
8422
|
+
}
|
|
7967
8423
|
/** A filter to be used against `TransferLogModule` object types. All fields are combined with a logical ‘and.’ */
|
|
7968
8424
|
export interface TransferLogModuleFilter {
|
|
7969
8425
|
/** Filter by the object’s `actorFkTableId` field. */
|
|
@@ -8351,6 +8807,12 @@ export interface UpdateNotificationsModuleInput {
|
|
|
8351
8807
|
/** An object where the defined keys will be set on the `NotificationsModule` being updated. */
|
|
8352
8808
|
notificationsModulePatch: NotificationsModulePatch;
|
|
8353
8809
|
}
|
|
8810
|
+
export interface UpdatePagesModuleInput {
|
|
8811
|
+
clientMutationId?: string;
|
|
8812
|
+
id: string;
|
|
8813
|
+
/** An object where the defined keys will be set on the `PagesModule` being updated. */
|
|
8814
|
+
pagesModulePatch: PagesModulePatch;
|
|
8815
|
+
}
|
|
8354
8816
|
export interface UpdatePermissionsModuleInput {
|
|
8355
8817
|
clientMutationId?: string;
|
|
8356
8818
|
id: string;
|
|
@@ -9413,6 +9875,13 @@ export interface NotificationsModuleConnection {
|
|
|
9413
9875
|
pageInfo: PageInfo;
|
|
9414
9876
|
totalCount: number;
|
|
9415
9877
|
}
|
|
9878
|
+
/** A connection to a list of `PagesModule` values. */
|
|
9879
|
+
export interface PagesModuleConnection {
|
|
9880
|
+
edges: PagesModuleEdge[];
|
|
9881
|
+
nodes: PagesModule[];
|
|
9882
|
+
pageInfo: PageInfo;
|
|
9883
|
+
totalCount: number;
|
|
9884
|
+
}
|
|
9416
9885
|
/** A connection to a list of `PermissionsModule` values. */
|
|
9417
9886
|
export interface PermissionsModuleConnection {
|
|
9418
9887
|
edges: PermissionsModuleEdge[];
|
|
@@ -9898,6 +10367,12 @@ export interface CreateNotificationsModulePayload {
|
|
|
9898
10367
|
notificationsModule?: NotificationsModule | null;
|
|
9899
10368
|
notificationsModuleEdge?: NotificationsModuleEdge | null;
|
|
9900
10369
|
}
|
|
10370
|
+
export interface CreatePagesModulePayload {
|
|
10371
|
+
clientMutationId?: string | null;
|
|
10372
|
+
/** The `PagesModule` that was created by this mutation. */
|
|
10373
|
+
pagesModule?: PagesModule | null;
|
|
10374
|
+
pagesModuleEdge?: PagesModuleEdge | null;
|
|
10375
|
+
}
|
|
9901
10376
|
export interface CreatePermissionsModulePayload {
|
|
9902
10377
|
clientMutationId?: string | null;
|
|
9903
10378
|
/** The `PermissionsModule` that was created by this mutation. */
|
|
@@ -10348,6 +10823,12 @@ export interface DeleteNotificationsModulePayload {
|
|
|
10348
10823
|
notificationsModule?: NotificationsModule | null;
|
|
10349
10824
|
notificationsModuleEdge?: NotificationsModuleEdge | null;
|
|
10350
10825
|
}
|
|
10826
|
+
export interface DeletePagesModulePayload {
|
|
10827
|
+
clientMutationId?: string | null;
|
|
10828
|
+
/** The `PagesModule` that was deleted by this mutation. */
|
|
10829
|
+
pagesModule?: PagesModule | null;
|
|
10830
|
+
pagesModuleEdge?: PagesModuleEdge | null;
|
|
10831
|
+
}
|
|
10351
10832
|
export interface DeletePermissionsModulePayload {
|
|
10352
10833
|
clientMutationId?: string | null;
|
|
10353
10834
|
/** The `PermissionsModule` that was deleted by this mutation. */
|
|
@@ -10838,6 +11319,12 @@ export interface UpdateNotificationsModulePayload {
|
|
|
10838
11319
|
notificationsModule?: NotificationsModule | null;
|
|
10839
11320
|
notificationsModuleEdge?: NotificationsModuleEdge | null;
|
|
10840
11321
|
}
|
|
11322
|
+
export interface UpdatePagesModulePayload {
|
|
11323
|
+
clientMutationId?: string | null;
|
|
11324
|
+
/** The `PagesModule` that was updated by this mutation. */
|
|
11325
|
+
pagesModule?: PagesModule | null;
|
|
11326
|
+
pagesModuleEdge?: PagesModuleEdge | null;
|
|
11327
|
+
}
|
|
10841
11328
|
export interface UpdatePermissionsModulePayload {
|
|
10842
11329
|
clientMutationId?: string | null;
|
|
10843
11330
|
/** The `PermissionsModule` that was updated by this mutation. */
|
|
@@ -11009,6 +11496,7 @@ export interface MetaTable {
|
|
|
11009
11496
|
i18n?: MetaI18n | null;
|
|
11010
11497
|
indexes: MetaIndex[];
|
|
11011
11498
|
inflection: MetaInflection;
|
|
11499
|
+
/** Final GraphQL output type name */
|
|
11012
11500
|
name: string;
|
|
11013
11501
|
primaryKeyConstraints: MetaPrimaryKeyConstraint[];
|
|
11014
11502
|
query: MetaQuery;
|
|
@@ -11022,6 +11510,8 @@ export interface MetaTable {
|
|
|
11022
11510
|
search?: MetaSearch | null;
|
|
11023
11511
|
/** Storage metadata (null if not a storage table) */
|
|
11024
11512
|
storage?: MetaStorage | null;
|
|
11513
|
+
/** PostgreSQL table name */
|
|
11514
|
+
tableName: string;
|
|
11025
11515
|
uniqueConstraints: MetaUniqueConstraint[];
|
|
11026
11516
|
}
|
|
11027
11517
|
/** A `AgentModule` edge in the connection. */
|
|
@@ -11323,6 +11813,12 @@ export interface NotificationsModuleEdge {
|
|
|
11323
11813
|
/** The `NotificationsModule` at the end of the edge. */
|
|
11324
11814
|
node?: NotificationsModule | null;
|
|
11325
11815
|
}
|
|
11816
|
+
/** A `PagesModule` edge in the connection. */
|
|
11817
|
+
export interface PagesModuleEdge {
|
|
11818
|
+
cursor?: string | null;
|
|
11819
|
+
/** The `PagesModule` at the end of the edge. */
|
|
11820
|
+
node?: PagesModule | null;
|
|
11821
|
+
}
|
|
11326
11822
|
/** A `PermissionsModule` edge in the connection. */
|
|
11327
11823
|
export interface PermissionsModuleEdge {
|
|
11328
11824
|
cursor?: string | null;
|
|
@@ -11503,6 +11999,8 @@ export interface MetaConstraints {
|
|
|
11503
11999
|
}
|
|
11504
12000
|
/** Information about a table field/column */
|
|
11505
12001
|
export interface MetaField {
|
|
12002
|
+
/** PostgreSQL column name */
|
|
12003
|
+
columnName: string;
|
|
11506
12004
|
description?: string | null;
|
|
11507
12005
|
/** Enum metadata if this field has an enum type */
|
|
11508
12006
|
enumValues?: MetaEnum | null;
|
|
@@ -11510,6 +12008,7 @@ export interface MetaField {
|
|
|
11510
12008
|
isForeignKey: boolean;
|
|
11511
12009
|
isNotNull: boolean;
|
|
11512
12010
|
isPrimaryKey: boolean;
|
|
12011
|
+
/** Final GraphQL field name */
|
|
11513
12012
|
name: string;
|
|
11514
12013
|
type: MetaType;
|
|
11515
12014
|
}
|
|
@@ -11559,7 +12058,7 @@ export interface MetaPrimaryKeyConstraint {
|
|
|
11559
12058
|
}
|
|
11560
12059
|
/** Table query/mutation names */
|
|
11561
12060
|
export interface MetaQuery {
|
|
11562
|
-
all
|
|
12061
|
+
all?: string | null;
|
|
11563
12062
|
create?: string | null;
|
|
11564
12063
|
delete?: string | null;
|
|
11565
12064
|
one?: string | null;
|