@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
package/admin/orm/client.js
CHANGED
|
@@ -64,6 +64,16 @@ class FetchAdapter {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
exports.FetchAdapter = FetchAdapter;
|
|
67
|
+
/**
|
|
68
|
+
* Describe a single GraphQL error, falling back to its `extensions.code` when
|
|
69
|
+
* the server omits `message` so the error never renders as an empty string.
|
|
70
|
+
*/
|
|
71
|
+
function describeGraphQLError(error) {
|
|
72
|
+
if (error.message)
|
|
73
|
+
return error.message;
|
|
74
|
+
const code = error.extensions?.code;
|
|
75
|
+
return typeof code === 'string' ? code : 'Unknown error';
|
|
76
|
+
}
|
|
67
77
|
/**
|
|
68
78
|
* Error thrown when GraphQL request fails
|
|
69
79
|
*/
|
|
@@ -71,7 +81,7 @@ class GraphQLRequestError extends Error {
|
|
|
71
81
|
errors;
|
|
72
82
|
data;
|
|
73
83
|
constructor(errors, data = null) {
|
|
74
|
-
const messages = errors.map(
|
|
84
|
+
const messages = errors.map(describeGraphQLError).join('; ');
|
|
75
85
|
super(`GraphQL Error: ${messages}`);
|
|
76
86
|
this.errors = errors;
|
|
77
87
|
this.data = data;
|
package/admin/schema-types.d.ts
CHANGED
|
@@ -2995,6 +2995,7 @@ export interface MetaTable {
|
|
|
2995
2995
|
i18n?: MetaI18n | null;
|
|
2996
2996
|
indexes: MetaIndex[];
|
|
2997
2997
|
inflection: MetaInflection;
|
|
2998
|
+
/** Final GraphQL output type name */
|
|
2998
2999
|
name: string;
|
|
2999
3000
|
primaryKeyConstraints: MetaPrimaryKeyConstraint[];
|
|
3000
3001
|
query: MetaQuery;
|
|
@@ -3008,6 +3009,8 @@ export interface MetaTable {
|
|
|
3008
3009
|
search?: MetaSearch | null;
|
|
3009
3010
|
/** Storage metadata (null if not a storage table) */
|
|
3010
3011
|
storage?: MetaStorage | null;
|
|
3012
|
+
/** PostgreSQL table name */
|
|
3013
|
+
tableName: string;
|
|
3011
3014
|
uniqueConstraints: MetaUniqueConstraint[];
|
|
3012
3015
|
}
|
|
3013
3016
|
/** A `AppAdminGrant` edge in the connection. */
|
|
@@ -3209,6 +3212,8 @@ export interface MetaConstraints {
|
|
|
3209
3212
|
}
|
|
3210
3213
|
/** Information about a table field/column */
|
|
3211
3214
|
export interface MetaField {
|
|
3215
|
+
/** PostgreSQL column name */
|
|
3216
|
+
columnName: string;
|
|
3212
3217
|
description?: string | null;
|
|
3213
3218
|
/** Enum metadata if this field has an enum type */
|
|
3214
3219
|
enumValues?: MetaEnum | null;
|
|
@@ -3216,6 +3221,7 @@ export interface MetaField {
|
|
|
3216
3221
|
isForeignKey: boolean;
|
|
3217
3222
|
isNotNull: boolean;
|
|
3218
3223
|
isPrimaryKey: boolean;
|
|
3224
|
+
/** Final GraphQL field name */
|
|
3219
3225
|
name: string;
|
|
3220
3226
|
type: MetaType;
|
|
3221
3227
|
}
|
|
@@ -3265,7 +3271,7 @@ export interface MetaPrimaryKeyConstraint {
|
|
|
3265
3271
|
}
|
|
3266
3272
|
/** Table query/mutation names */
|
|
3267
3273
|
export interface MetaQuery {
|
|
3268
|
-
all
|
|
3274
|
+
all?: string | null;
|
|
3269
3275
|
create?: string | null;
|
|
3270
3276
|
delete?: string | null;
|
|
3271
3277
|
one?: string | null;
|
package/agent/orm/client.js
CHANGED
|
@@ -64,6 +64,16 @@ class FetchAdapter {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
exports.FetchAdapter = FetchAdapter;
|
|
67
|
+
/**
|
|
68
|
+
* Describe a single GraphQL error, falling back to its `extensions.code` when
|
|
69
|
+
* the server omits `message` so the error never renders as an empty string.
|
|
70
|
+
*/
|
|
71
|
+
function describeGraphQLError(error) {
|
|
72
|
+
if (error.message)
|
|
73
|
+
return error.message;
|
|
74
|
+
const code = error.extensions?.code;
|
|
75
|
+
return typeof code === 'string' ? code : 'Unknown error';
|
|
76
|
+
}
|
|
67
77
|
/**
|
|
68
78
|
* Error thrown when GraphQL request fails
|
|
69
79
|
*/
|
|
@@ -71,7 +81,7 @@ class GraphQLRequestError extends Error {
|
|
|
71
81
|
errors;
|
|
72
82
|
data;
|
|
73
83
|
constructor(errors, data = null) {
|
|
74
|
-
const messages = errors.map(
|
|
84
|
+
const messages = errors.map(describeGraphQLError).join('; ');
|
|
75
85
|
super(`GraphQL Error: ${messages}`);
|
|
76
86
|
this.errors = errors;
|
|
77
87
|
this.data = data;
|
|
@@ -1350,7 +1350,6 @@ export interface CreateAgentResourceInput {
|
|
|
1350
1350
|
description?: string;
|
|
1351
1351
|
embedding?: number[];
|
|
1352
1352
|
embeddingText?: string;
|
|
1353
|
-
embeddingUpdatedAt?: string;
|
|
1354
1353
|
isActive?: boolean;
|
|
1355
1354
|
isArchived?: boolean;
|
|
1356
1355
|
keywords?: string[];
|
|
@@ -1369,7 +1368,6 @@ export interface AgentResourcePatch {
|
|
|
1369
1368
|
description?: string | null;
|
|
1370
1369
|
embedding?: number[] | null;
|
|
1371
1370
|
embeddingText?: string | null;
|
|
1372
|
-
embeddingUpdatedAt?: string | null;
|
|
1373
1371
|
isActive?: boolean | null;
|
|
1374
1372
|
isArchived?: boolean | null;
|
|
1375
1373
|
keywords?: string[] | null;
|
|
@@ -1807,7 +1805,6 @@ export interface AgentResourceInput {
|
|
|
1807
1805
|
embedding?: number[];
|
|
1808
1806
|
/** Natural language text to embed server-side into the `embedding` vector column. Mutually exclusive with `embedding` — provide one or the other. Requires the LLM plugin to be configured with an embedding provider. */
|
|
1809
1807
|
embeddingText?: string;
|
|
1810
|
-
embeddingUpdatedAt?: string;
|
|
1811
1808
|
id?: string;
|
|
1812
1809
|
/** Whether this resource is active and retrievable */
|
|
1813
1810
|
isActive?: boolean;
|
package/agent/schema-types.d.ts
CHANGED
|
@@ -599,7 +599,6 @@ export interface AgentResourceInput {
|
|
|
599
599
|
embedding?: number[];
|
|
600
600
|
/** Natural language text to embed server-side into the `embedding` vector column. Mutually exclusive with `embedding` — provide one or the other. Requires the LLM plugin to be configured with an embedding provider. */
|
|
601
601
|
embeddingText?: string;
|
|
602
|
-
embeddingUpdatedAt?: string;
|
|
603
602
|
id?: string;
|
|
604
603
|
/** Whether this resource is active and retrievable */
|
|
605
604
|
isActive?: boolean;
|
|
@@ -633,7 +632,6 @@ export interface AgentResourcePatch {
|
|
|
633
632
|
embedding?: number[];
|
|
634
633
|
/** Natural language text to embed server-side into the `embedding` vector column. Mutually exclusive with `embedding` — provide one or the other. Requires the LLM plugin to be configured with an embedding provider. */
|
|
635
634
|
embeddingText?: string;
|
|
636
|
-
embeddingUpdatedAt?: string;
|
|
637
635
|
id?: string;
|
|
638
636
|
/** Whether this resource is active and retrievable */
|
|
639
637
|
isActive?: boolean;
|
|
@@ -1448,6 +1446,7 @@ export interface MetaTable {
|
|
|
1448
1446
|
i18n?: MetaI18n | null;
|
|
1449
1447
|
indexes: MetaIndex[];
|
|
1450
1448
|
inflection: MetaInflection;
|
|
1449
|
+
/** Final GraphQL output type name */
|
|
1451
1450
|
name: string;
|
|
1452
1451
|
primaryKeyConstraints: MetaPrimaryKeyConstraint[];
|
|
1453
1452
|
query: MetaQuery;
|
|
@@ -1461,6 +1460,8 @@ export interface MetaTable {
|
|
|
1461
1460
|
search?: MetaSearch | null;
|
|
1462
1461
|
/** Storage metadata (null if not a storage table) */
|
|
1463
1462
|
storage?: MetaStorage | null;
|
|
1463
|
+
/** PostgreSQL table name */
|
|
1464
|
+
tableName: string;
|
|
1464
1465
|
uniqueConstraints: MetaUniqueConstraint[];
|
|
1465
1466
|
}
|
|
1466
1467
|
/** A `AgentMessage` edge in the connection. */
|
|
@@ -1536,6 +1537,8 @@ export interface MetaConstraints {
|
|
|
1536
1537
|
}
|
|
1537
1538
|
/** Information about a table field/column */
|
|
1538
1539
|
export interface MetaField {
|
|
1540
|
+
/** PostgreSQL column name */
|
|
1541
|
+
columnName: string;
|
|
1539
1542
|
description?: string | null;
|
|
1540
1543
|
/** Enum metadata if this field has an enum type */
|
|
1541
1544
|
enumValues?: MetaEnum | null;
|
|
@@ -1543,6 +1546,7 @@ export interface MetaField {
|
|
|
1543
1546
|
isForeignKey: boolean;
|
|
1544
1547
|
isNotNull: boolean;
|
|
1545
1548
|
isPrimaryKey: boolean;
|
|
1549
|
+
/** Final GraphQL field name */
|
|
1546
1550
|
name: string;
|
|
1547
1551
|
type: MetaType;
|
|
1548
1552
|
}
|
|
@@ -1592,7 +1596,7 @@ export interface MetaPrimaryKeyConstraint {
|
|
|
1592
1596
|
}
|
|
1593
1597
|
/** Table query/mutation names */
|
|
1594
1598
|
export interface MetaQuery {
|
|
1595
|
-
all
|
|
1599
|
+
all?: string | null;
|
|
1596
1600
|
create?: string | null;
|
|
1597
1601
|
delete?: string | null;
|
|
1598
1602
|
one?: string | null;
|
package/api/hooks/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* GraphQL SDK
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
*
|
|
5
|
-
* Tables:
|
|
5
|
+
* Tables: ApiSchema, ApiSetting, Apis, AstMigration, CheckConstraint, CompositeType, CorsSetting, Database, DatabaseSetting, DatabaseTransfer, DefaultPrivilege, Derive, Domain, DomainEvent, DomainType, DomainVerification, EmbeddingChunk, Enum, ExclusionConstraint, FieldBehavior, Field, ForeignKeyConstraintBehavior, ForeignKeyConstraint, FullTextSearch, Function, HostnameBinding, HttpRoute, Index, ManagedDomain, NodeTypeRegistry, Page, Partition, PlatformApiSchema, PlatformApiSetting, PlatformApis, PlatformCorsSetting, PlatformDomain, PlatformDomainEvent, PlatformDomainVerification, PlatformManagedDomain, PlatformPage, PlatformSiteAppLink, PlatformSite, PlatformSiteDeepLink, PlatformSiteErrorPage, PlatformSiteMetadatum, PlatformSiteModule, PlatformSiteTheme, PlatformSiteWebConfig, Policy, PrimaryKeyConstraint, PubkeySetting, RlsSetting, RouteBinding, Route, Schema, SchemaGrant, SiteAppLink, Site, SiteDeepLink, SiteErrorPage, SiteMetadatum, SiteModule, SiteTheme, SiteWebConfig, SpatialRelation, SqlAction, TableBehavior, Table, TableGrant, Trigger, TriggerFunction, UniqueConstraintBehavior, UniqueConstraint, ViewBehavior, View, ViewGrant, ViewRule, ViewTable, WebauthnSetting
|
|
6
6
|
*
|
|
7
7
|
* Usage:
|
|
8
8
|
*
|
package/api/hooks/index.js
CHANGED
|
@@ -18,7 +18,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
18
18
|
* GraphQL SDK
|
|
19
19
|
* @generated by @constructive-io/graphql-codegen
|
|
20
20
|
*
|
|
21
|
-
* Tables:
|
|
21
|
+
* Tables: ApiSchema, ApiSetting, Apis, AstMigration, CheckConstraint, CompositeType, CorsSetting, Database, DatabaseSetting, DatabaseTransfer, DefaultPrivilege, Derive, Domain, DomainEvent, DomainType, DomainVerification, EmbeddingChunk, Enum, ExclusionConstraint, FieldBehavior, Field, ForeignKeyConstraintBehavior, ForeignKeyConstraint, FullTextSearch, Function, HostnameBinding, HttpRoute, Index, ManagedDomain, NodeTypeRegistry, Page, Partition, PlatformApiSchema, PlatformApiSetting, PlatformApis, PlatformCorsSetting, PlatformDomain, PlatformDomainEvent, PlatformDomainVerification, PlatformManagedDomain, PlatformPage, PlatformSiteAppLink, PlatformSite, PlatformSiteDeepLink, PlatformSiteErrorPage, PlatformSiteMetadatum, PlatformSiteModule, PlatformSiteTheme, PlatformSiteWebConfig, Policy, PrimaryKeyConstraint, PubkeySetting, RlsSetting, RouteBinding, Route, Schema, SchemaGrant, SiteAppLink, Site, SiteDeepLink, SiteErrorPage, SiteMetadatum, SiteModule, SiteTheme, SiteWebConfig, SpatialRelation, SqlAction, TableBehavior, Table, TableGrant, Trigger, TriggerFunction, UniqueConstraintBehavior, UniqueConstraint, ViewBehavior, View, ViewGrant, ViewRule, ViewTable, WebauthnSetting
|
|
22
22
|
*
|
|
23
23
|
* Usage:
|
|
24
24
|
*
|
|
@@ -24,11 +24,6 @@ import type { QueryClient } from '@tanstack/react-query';
|
|
|
24
24
|
* ```
|
|
25
25
|
*/
|
|
26
26
|
export declare const invalidate: {
|
|
27
|
-
/** Invalidate api queries */ readonly api: {
|
|
28
|
-
/** Invalidate all api queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
29
|
-
/** Invalidate api list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
30
|
-
/** Invalidate a specific api */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
31
|
-
};
|
|
32
27
|
/** Invalidate apiSchema queries */ readonly apiSchema: {
|
|
33
28
|
/** Invalidate all apiSchema queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
34
29
|
/** Invalidate apiSchema list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -39,6 +34,11 @@ export declare const invalidate: {
|
|
|
39
34
|
/** Invalidate apiSetting list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
35
|
/** Invalidate a specific apiSetting */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
36
|
};
|
|
37
|
+
/** Invalidate apis queries */ readonly apis: {
|
|
38
|
+
/** Invalidate all apis queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
39
|
+
/** Invalidate apis list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
40
|
+
/** Invalidate a specific apis */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
41
|
+
};
|
|
42
42
|
/** Invalidate astMigration queries */ readonly astMigration: {
|
|
43
43
|
/** Invalidate all astMigration queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
44
44
|
/** Invalidate astMigration list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -79,6 +79,11 @@ export declare const invalidate: {
|
|
|
79
79
|
/** Invalidate defaultPrivilege list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
80
80
|
/** Invalidate a specific defaultPrivilege */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
81
81
|
};
|
|
82
|
+
/** Invalidate derive queries */ readonly derive: {
|
|
83
|
+
/** Invalidate all derive queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
84
|
+
/** Invalidate derive list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
85
|
+
/** Invalidate a specific derive */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
86
|
+
};
|
|
82
87
|
/** Invalidate domain queries */ readonly domain: {
|
|
83
88
|
/** Invalidate all domain queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
84
89
|
/** Invalidate domain list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -114,11 +119,21 @@ export declare const invalidate: {
|
|
|
114
119
|
/** Invalidate exclusionConstraint list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
115
120
|
/** Invalidate a specific exclusionConstraint */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
116
121
|
};
|
|
122
|
+
/** Invalidate fieldBehavior queries */ readonly fieldBehavior: {
|
|
123
|
+
/** Invalidate all fieldBehavior queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
124
|
+
/** Invalidate fieldBehavior list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
125
|
+
/** Invalidate a specific fieldBehavior */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
126
|
+
};
|
|
117
127
|
/** Invalidate field queries */ readonly field: {
|
|
118
128
|
/** Invalidate all field queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
119
129
|
/** Invalidate field list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
120
130
|
/** Invalidate a specific field */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
121
131
|
};
|
|
132
|
+
/** Invalidate foreignKeyConstraintBehavior queries */ readonly foreignKeyConstraintBehavior: {
|
|
133
|
+
/** Invalidate all foreignKeyConstraintBehavior queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
134
|
+
/** Invalidate foreignKeyConstraintBehavior list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
135
|
+
/** Invalidate a specific foreignKeyConstraintBehavior */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
136
|
+
};
|
|
122
137
|
/** Invalidate foreignKeyConstraint queries */ readonly foreignKeyConstraint: {
|
|
123
138
|
/** Invalidate all foreignKeyConstraint queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
124
139
|
/** Invalidate foreignKeyConstraint list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -159,16 +174,16 @@ export declare const invalidate: {
|
|
|
159
174
|
/** Invalidate nodeTypeRegistry list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
160
175
|
/** Invalidate a specific nodeTypeRegistry */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
161
176
|
};
|
|
177
|
+
/** Invalidate page queries */ readonly page: {
|
|
178
|
+
/** Invalidate all page queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
179
|
+
/** Invalidate page list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
180
|
+
/** Invalidate a specific page */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
181
|
+
};
|
|
162
182
|
/** Invalidate partition queries */ readonly partition: {
|
|
163
183
|
/** Invalidate all partition queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
164
184
|
/** Invalidate partition list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
165
185
|
/** Invalidate a specific partition */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
166
186
|
};
|
|
167
|
-
/** Invalidate platformApi queries */ readonly platformApi: {
|
|
168
|
-
/** Invalidate all platformApi queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
169
|
-
/** Invalidate platformApi list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
170
|
-
/** Invalidate a specific platformApi */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
171
|
-
};
|
|
172
187
|
/** Invalidate platformApiSchema queries */ readonly platformApiSchema: {
|
|
173
188
|
/** Invalidate all platformApiSchema queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
174
189
|
/** Invalidate platformApiSchema list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -179,6 +194,11 @@ export declare const invalidate: {
|
|
|
179
194
|
/** Invalidate platformApiSetting list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
180
195
|
/** Invalidate a specific platformApiSetting */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
181
196
|
};
|
|
197
|
+
/** Invalidate platformApis queries */ readonly platformApis: {
|
|
198
|
+
/** Invalidate all platformApis queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
199
|
+
/** Invalidate platformApis list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
200
|
+
/** Invalidate a specific platformApis */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
201
|
+
};
|
|
182
202
|
/** Invalidate platformCorsSetting queries */ readonly platformCorsSetting: {
|
|
183
203
|
/** Invalidate all platformCorsSetting queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
184
204
|
/** Invalidate platformCorsSetting list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -204,11 +224,31 @@ export declare const invalidate: {
|
|
|
204
224
|
/** Invalidate platformManagedDomain list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
205
225
|
/** Invalidate a specific platformManagedDomain */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
206
226
|
};
|
|
227
|
+
/** Invalidate platformPage queries */ readonly platformPage: {
|
|
228
|
+
/** Invalidate all platformPage queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
229
|
+
/** Invalidate platformPage list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
230
|
+
/** Invalidate a specific platformPage */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
231
|
+
};
|
|
232
|
+
/** Invalidate platformSiteAppLink queries */ readonly platformSiteAppLink: {
|
|
233
|
+
/** Invalidate all platformSiteAppLink queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
234
|
+
/** Invalidate platformSiteAppLink list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
235
|
+
/** Invalidate a specific platformSiteAppLink */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
236
|
+
};
|
|
207
237
|
/** Invalidate platformSite queries */ readonly platformSite: {
|
|
208
238
|
/** Invalidate all platformSite queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
209
239
|
/** Invalidate platformSite list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
210
240
|
/** Invalidate a specific platformSite */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
211
241
|
};
|
|
242
|
+
/** Invalidate platformSiteDeepLink queries */ readonly platformSiteDeepLink: {
|
|
243
|
+
/** Invalidate all platformSiteDeepLink queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
244
|
+
/** Invalidate platformSiteDeepLink list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
245
|
+
/** Invalidate a specific platformSiteDeepLink */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
246
|
+
};
|
|
247
|
+
/** Invalidate platformSiteErrorPage queries */ readonly platformSiteErrorPage: {
|
|
248
|
+
/** Invalidate all platformSiteErrorPage queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
249
|
+
/** Invalidate platformSiteErrorPage list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
250
|
+
/** Invalidate a specific platformSiteErrorPage */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
251
|
+
};
|
|
212
252
|
/** Invalidate platformSiteMetadatum queries */ readonly platformSiteMetadatum: {
|
|
213
253
|
/** Invalidate all platformSiteMetadatum queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
214
254
|
/** Invalidate platformSiteMetadatum list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -224,6 +264,11 @@ export declare const invalidate: {
|
|
|
224
264
|
/** Invalidate platformSiteTheme list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
225
265
|
/** Invalidate a specific platformSiteTheme */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
226
266
|
};
|
|
267
|
+
/** Invalidate platformSiteWebConfig queries */ readonly platformSiteWebConfig: {
|
|
268
|
+
/** Invalidate all platformSiteWebConfig queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
269
|
+
/** Invalidate platformSiteWebConfig list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
270
|
+
/** Invalidate a specific platformSiteWebConfig */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
271
|
+
};
|
|
227
272
|
/** Invalidate policy queries */ readonly policy: {
|
|
228
273
|
/** Invalidate all policy queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
229
274
|
/** Invalidate policy list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -264,11 +309,26 @@ export declare const invalidate: {
|
|
|
264
309
|
/** Invalidate schemaGrant list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
265
310
|
/** Invalidate a specific schemaGrant */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
266
311
|
};
|
|
312
|
+
/** Invalidate siteAppLink queries */ readonly siteAppLink: {
|
|
313
|
+
/** Invalidate all siteAppLink queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
314
|
+
/** Invalidate siteAppLink list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
315
|
+
/** Invalidate a specific siteAppLink */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
316
|
+
};
|
|
267
317
|
/** Invalidate site queries */ readonly site: {
|
|
268
318
|
/** Invalidate all site queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
269
319
|
/** Invalidate site list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
270
320
|
/** Invalidate a specific site */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
271
321
|
};
|
|
322
|
+
/** Invalidate siteDeepLink queries */ readonly siteDeepLink: {
|
|
323
|
+
/** Invalidate all siteDeepLink queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
324
|
+
/** Invalidate siteDeepLink list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
325
|
+
/** Invalidate a specific siteDeepLink */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
326
|
+
};
|
|
327
|
+
/** Invalidate siteErrorPage queries */ readonly siteErrorPage: {
|
|
328
|
+
/** Invalidate all siteErrorPage queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
329
|
+
/** Invalidate siteErrorPage list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
330
|
+
/** Invalidate a specific siteErrorPage */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
331
|
+
};
|
|
272
332
|
/** Invalidate siteMetadatum queries */ readonly siteMetadatum: {
|
|
273
333
|
/** Invalidate all siteMetadatum queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
274
334
|
/** Invalidate siteMetadatum list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -284,6 +344,11 @@ export declare const invalidate: {
|
|
|
284
344
|
/** Invalidate siteTheme list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
285
345
|
/** Invalidate a specific siteTheme */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
286
346
|
};
|
|
347
|
+
/** Invalidate siteWebConfig queries */ readonly siteWebConfig: {
|
|
348
|
+
/** Invalidate all siteWebConfig queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
349
|
+
/** Invalidate siteWebConfig list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
350
|
+
/** Invalidate a specific siteWebConfig */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
351
|
+
};
|
|
287
352
|
/** Invalidate spatialRelation queries */ readonly spatialRelation: {
|
|
288
353
|
/** Invalidate all spatialRelation queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
289
354
|
/** Invalidate spatialRelation list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -294,6 +359,11 @@ export declare const invalidate: {
|
|
|
294
359
|
/** Invalidate sqlAction list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
295
360
|
/** Invalidate a specific sqlAction */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
296
361
|
};
|
|
362
|
+
/** Invalidate tableBehavior queries */ readonly tableBehavior: {
|
|
363
|
+
/** Invalidate all tableBehavior queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
364
|
+
/** Invalidate tableBehavior list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
365
|
+
/** Invalidate a specific tableBehavior */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
366
|
+
};
|
|
297
367
|
/** Invalidate table queries */ readonly table: {
|
|
298
368
|
/** Invalidate all table queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
299
369
|
/** Invalidate table list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -314,11 +384,21 @@ export declare const invalidate: {
|
|
|
314
384
|
/** Invalidate triggerFunction list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
315
385
|
/** Invalidate a specific triggerFunction */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
316
386
|
};
|
|
387
|
+
/** Invalidate uniqueConstraintBehavior queries */ readonly uniqueConstraintBehavior: {
|
|
388
|
+
/** Invalidate all uniqueConstraintBehavior queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
389
|
+
/** Invalidate uniqueConstraintBehavior list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
390
|
+
/** Invalidate a specific uniqueConstraintBehavior */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
391
|
+
};
|
|
317
392
|
/** Invalidate uniqueConstraint queries */ readonly uniqueConstraint: {
|
|
318
393
|
/** Invalidate all uniqueConstraint queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
319
394
|
/** Invalidate uniqueConstraint list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
320
395
|
/** Invalidate a specific uniqueConstraint */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
321
396
|
};
|
|
397
|
+
/** Invalidate viewBehavior queries */ readonly viewBehavior: {
|
|
398
|
+
/** Invalidate all viewBehavior queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
399
|
+
/** Invalidate viewBehavior list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
400
|
+
/** Invalidate a specific viewBehavior */ readonly detail: (queryClient: QueryClient, id: string | number) => Promise<void>;
|
|
401
|
+
};
|
|
322
402
|
/** Invalidate view queries */ readonly view: {
|
|
323
403
|
/** Invalidate all view queries */ readonly all: (queryClient: QueryClient) => Promise<void>;
|
|
324
404
|
/** Invalidate view list queries */ readonly lists: (queryClient: QueryClient) => Promise<void>;
|
|
@@ -357,9 +437,9 @@ export declare const invalidate: {
|
|
|
357
437
|
* instead of just invalidating (which would trigger a refetch).
|
|
358
438
|
*/
|
|
359
439
|
export declare const remove: {
|
|
360
|
-
/** Remove api from cache */ readonly api: (queryClient: QueryClient, id: string | number) => void;
|
|
361
440
|
/** Remove apiSchema from cache */ readonly apiSchema: (queryClient: QueryClient, id: string | number) => void;
|
|
362
441
|
/** Remove apiSetting from cache */ readonly apiSetting: (queryClient: QueryClient, id: string | number) => void;
|
|
442
|
+
/** Remove apis from cache */ readonly apis: (queryClient: QueryClient, id: string | number) => void;
|
|
363
443
|
/** Remove astMigration from cache */ readonly astMigration: (queryClient: QueryClient, id: string | number) => void;
|
|
364
444
|
/** Remove checkConstraint from cache */ readonly checkConstraint: (queryClient: QueryClient, id: string | number) => void;
|
|
365
445
|
/** Remove compositeType from cache */ readonly compositeType: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -368,6 +448,7 @@ export declare const remove: {
|
|
|
368
448
|
/** Remove databaseSetting from cache */ readonly databaseSetting: (queryClient: QueryClient, id: string | number) => void;
|
|
369
449
|
/** Remove databaseTransfer from cache */ readonly databaseTransfer: (queryClient: QueryClient, id: string | number) => void;
|
|
370
450
|
/** Remove defaultPrivilege from cache */ readonly defaultPrivilege: (queryClient: QueryClient, id: string | number) => void;
|
|
451
|
+
/** Remove derive from cache */ readonly derive: (queryClient: QueryClient, id: string | number) => void;
|
|
371
452
|
/** Remove domain from cache */ readonly domain: (queryClient: QueryClient, id: string | number) => void;
|
|
372
453
|
/** Remove domainEvent from cache */ readonly domainEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
373
454
|
/** Remove domainType from cache */ readonly domainType: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -375,7 +456,9 @@ export declare const remove: {
|
|
|
375
456
|
/** Remove embeddingChunk from cache */ readonly embeddingChunk: (queryClient: QueryClient, id: string | number) => void;
|
|
376
457
|
/** Remove enum from cache */ readonly enum: (queryClient: QueryClient, id: string | number) => void;
|
|
377
458
|
/** Remove exclusionConstraint from cache */ readonly exclusionConstraint: (queryClient: QueryClient, id: string | number) => void;
|
|
459
|
+
/** Remove fieldBehavior from cache */ readonly fieldBehavior: (queryClient: QueryClient, id: string | number) => void;
|
|
378
460
|
/** Remove field from cache */ readonly field: (queryClient: QueryClient, id: string | number) => void;
|
|
461
|
+
/** Remove foreignKeyConstraintBehavior from cache */ readonly foreignKeyConstraintBehavior: (queryClient: QueryClient, id: string | number) => void;
|
|
379
462
|
/** Remove foreignKeyConstraint from cache */ readonly foreignKeyConstraint: (queryClient: QueryClient, id: string | number) => void;
|
|
380
463
|
/** Remove fullTextSearch from cache */ readonly fullTextSearch: (queryClient: QueryClient, id: string | number) => void;
|
|
381
464
|
/** Remove function from cache */ readonly function: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -384,19 +467,25 @@ export declare const remove: {
|
|
|
384
467
|
/** Remove index from cache */ readonly index: (queryClient: QueryClient, id: string | number) => void;
|
|
385
468
|
/** Remove managedDomain from cache */ readonly managedDomain: (queryClient: QueryClient, id: string | number) => void;
|
|
386
469
|
/** Remove nodeTypeRegistry from cache */ readonly nodeTypeRegistry: (queryClient: QueryClient, id: string | number) => void;
|
|
470
|
+
/** Remove page from cache */ readonly page: (queryClient: QueryClient, id: string | number) => void;
|
|
387
471
|
/** Remove partition from cache */ readonly partition: (queryClient: QueryClient, id: string | number) => void;
|
|
388
|
-
/** Remove platformApi from cache */ readonly platformApi: (queryClient: QueryClient, id: string | number) => void;
|
|
389
472
|
/** Remove platformApiSchema from cache */ readonly platformApiSchema: (queryClient: QueryClient, id: string | number) => void;
|
|
390
473
|
/** Remove platformApiSetting from cache */ readonly platformApiSetting: (queryClient: QueryClient, id: string | number) => void;
|
|
474
|
+
/** Remove platformApis from cache */ readonly platformApis: (queryClient: QueryClient, id: string | number) => void;
|
|
391
475
|
/** Remove platformCorsSetting from cache */ readonly platformCorsSetting: (queryClient: QueryClient, id: string | number) => void;
|
|
392
476
|
/** Remove platformDomain from cache */ readonly platformDomain: (queryClient: QueryClient, id: string | number) => void;
|
|
393
477
|
/** Remove platformDomainEvent from cache */ readonly platformDomainEvent: (queryClient: QueryClient, id: string | number) => void;
|
|
394
478
|
/** Remove platformDomainVerification from cache */ readonly platformDomainVerification: (queryClient: QueryClient, id: string | number) => void;
|
|
395
479
|
/** Remove platformManagedDomain from cache */ readonly platformManagedDomain: (queryClient: QueryClient, id: string | number) => void;
|
|
480
|
+
/** Remove platformPage from cache */ readonly platformPage: (queryClient: QueryClient, id: string | number) => void;
|
|
481
|
+
/** Remove platformSiteAppLink from cache */ readonly platformSiteAppLink: (queryClient: QueryClient, id: string | number) => void;
|
|
396
482
|
/** Remove platformSite from cache */ readonly platformSite: (queryClient: QueryClient, id: string | number) => void;
|
|
483
|
+
/** Remove platformSiteDeepLink from cache */ readonly platformSiteDeepLink: (queryClient: QueryClient, id: string | number) => void;
|
|
484
|
+
/** Remove platformSiteErrorPage from cache */ readonly platformSiteErrorPage: (queryClient: QueryClient, id: string | number) => void;
|
|
397
485
|
/** Remove platformSiteMetadatum from cache */ readonly platformSiteMetadatum: (queryClient: QueryClient, id: string | number) => void;
|
|
398
486
|
/** Remove platformSiteModule from cache */ readonly platformSiteModule: (queryClient: QueryClient, id: string | number) => void;
|
|
399
487
|
/** Remove platformSiteTheme from cache */ readonly platformSiteTheme: (queryClient: QueryClient, id: string | number) => void;
|
|
488
|
+
/** Remove platformSiteWebConfig from cache */ readonly platformSiteWebConfig: (queryClient: QueryClient, id: string | number) => void;
|
|
400
489
|
/** Remove policy from cache */ readonly policy: (queryClient: QueryClient, id: string | number) => void;
|
|
401
490
|
/** Remove primaryKeyConstraint from cache */ readonly primaryKeyConstraint: (queryClient: QueryClient, id: string | number) => void;
|
|
402
491
|
/** Remove pubkeySetting from cache */ readonly pubkeySetting: (queryClient: QueryClient, id: string | number) => void;
|
|
@@ -405,17 +494,24 @@ export declare const remove: {
|
|
|
405
494
|
/** Remove route from cache */ readonly route: (queryClient: QueryClient, id: string | number) => void;
|
|
406
495
|
/** Remove schema from cache */ readonly schema: (queryClient: QueryClient, id: string | number) => void;
|
|
407
496
|
/** Remove schemaGrant from cache */ readonly schemaGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
497
|
+
/** Remove siteAppLink from cache */ readonly siteAppLink: (queryClient: QueryClient, id: string | number) => void;
|
|
408
498
|
/** Remove site from cache */ readonly site: (queryClient: QueryClient, id: string | number) => void;
|
|
499
|
+
/** Remove siteDeepLink from cache */ readonly siteDeepLink: (queryClient: QueryClient, id: string | number) => void;
|
|
500
|
+
/** Remove siteErrorPage from cache */ readonly siteErrorPage: (queryClient: QueryClient, id: string | number) => void;
|
|
409
501
|
/** Remove siteMetadatum from cache */ readonly siteMetadatum: (queryClient: QueryClient, id: string | number) => void;
|
|
410
502
|
/** Remove siteModule from cache */ readonly siteModule: (queryClient: QueryClient, id: string | number) => void;
|
|
411
503
|
/** Remove siteTheme from cache */ readonly siteTheme: (queryClient: QueryClient, id: string | number) => void;
|
|
504
|
+
/** Remove siteWebConfig from cache */ readonly siteWebConfig: (queryClient: QueryClient, id: string | number) => void;
|
|
412
505
|
/** Remove spatialRelation from cache */ readonly spatialRelation: (queryClient: QueryClient, id: string | number) => void;
|
|
413
506
|
/** Remove sqlAction from cache */ readonly sqlAction: (queryClient: QueryClient, id: string | number) => void;
|
|
507
|
+
/** Remove tableBehavior from cache */ readonly tableBehavior: (queryClient: QueryClient, id: string | number) => void;
|
|
414
508
|
/** Remove table from cache */ readonly table: (queryClient: QueryClient, id: string | number) => void;
|
|
415
509
|
/** Remove tableGrant from cache */ readonly tableGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
416
510
|
/** Remove trigger from cache */ readonly trigger: (queryClient: QueryClient, id: string | number) => void;
|
|
417
511
|
/** Remove triggerFunction from cache */ readonly triggerFunction: (queryClient: QueryClient, id: string | number) => void;
|
|
512
|
+
/** Remove uniqueConstraintBehavior from cache */ readonly uniqueConstraintBehavior: (queryClient: QueryClient, id: string | number) => void;
|
|
418
513
|
/** Remove uniqueConstraint from cache */ readonly uniqueConstraint: (queryClient: QueryClient, id: string | number) => void;
|
|
514
|
+
/** Remove viewBehavior from cache */ readonly viewBehavior: (queryClient: QueryClient, id: string | number) => void;
|
|
419
515
|
/** Remove view from cache */ readonly view: (queryClient: QueryClient, id: string | number) => void;
|
|
420
516
|
/** Remove viewGrant from cache */ readonly viewGrant: (queryClient: QueryClient, id: string | number) => void;
|
|
421
517
|
/** Remove viewRule from cache */ readonly viewRule: (queryClient: QueryClient, id: string | number) => void;
|