@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,12 +3,12 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
export * from './useApisQuery';
|
|
7
|
-
export * from './useApiQuery';
|
|
8
6
|
export * from './useApiSchemasQuery';
|
|
9
7
|
export * from './useApiSchemaQuery';
|
|
10
8
|
export * from './useApiSettingsQuery';
|
|
11
9
|
export * from './useApiSettingQuery';
|
|
10
|
+
export * from './useApisesQuery';
|
|
11
|
+
export * from './useApisQuery';
|
|
12
12
|
export * from './useAstMigrationsQuery';
|
|
13
13
|
export * from './useAstMigrationQuery';
|
|
14
14
|
export * from './useCheckConstraintsQuery';
|
|
@@ -25,6 +25,8 @@ export * from './useDatabaseTransfersQuery';
|
|
|
25
25
|
export * from './useDatabaseTransferQuery';
|
|
26
26
|
export * from './useDefaultPrivilegesQuery';
|
|
27
27
|
export * from './useDefaultPrivilegeQuery';
|
|
28
|
+
export * from './useDerivesQuery';
|
|
29
|
+
export * from './useDeriveQuery';
|
|
28
30
|
export * from './useDomainsQuery';
|
|
29
31
|
export * from './useDomainQuery';
|
|
30
32
|
export * from './useDomainEventsQuery';
|
|
@@ -39,8 +41,12 @@ export * from './useEnumsQuery';
|
|
|
39
41
|
export * from './useEnumQuery';
|
|
40
42
|
export * from './useExclusionConstraintsQuery';
|
|
41
43
|
export * from './useExclusionConstraintQuery';
|
|
44
|
+
export * from './useFieldBehaviorsQuery';
|
|
45
|
+
export * from './useFieldBehaviorQuery';
|
|
42
46
|
export * from './useFieldsQuery';
|
|
43
47
|
export * from './useFieldQuery';
|
|
48
|
+
export * from './useForeignKeyConstraintBehaviorsQuery';
|
|
49
|
+
export * from './useForeignKeyConstraintBehaviorQuery';
|
|
44
50
|
export * from './useForeignKeyConstraintsQuery';
|
|
45
51
|
export * from './useForeignKeyConstraintQuery';
|
|
46
52
|
export * from './useFullTextSearchesQuery';
|
|
@@ -57,14 +63,16 @@ export * from './useManagedDomainsQuery';
|
|
|
57
63
|
export * from './useManagedDomainQuery';
|
|
58
64
|
export * from './useNodeTypeRegistriesQuery';
|
|
59
65
|
export * from './useNodeTypeRegistryQuery';
|
|
66
|
+
export * from './usePagesQuery';
|
|
67
|
+
export * from './usePageQuery';
|
|
60
68
|
export * from './usePartitionsQuery';
|
|
61
69
|
export * from './usePartitionQuery';
|
|
62
|
-
export * from './usePlatformApisQuery';
|
|
63
|
-
export * from './usePlatformApiQuery';
|
|
64
70
|
export * from './usePlatformApiSchemasQuery';
|
|
65
71
|
export * from './usePlatformApiSchemaQuery';
|
|
66
72
|
export * from './usePlatformApiSettingsQuery';
|
|
67
73
|
export * from './usePlatformApiSettingQuery';
|
|
74
|
+
export * from './usePlatformApisesQuery';
|
|
75
|
+
export * from './usePlatformApisQuery';
|
|
68
76
|
export * from './usePlatformCorsSettingsQuery';
|
|
69
77
|
export * from './usePlatformCorsSettingQuery';
|
|
70
78
|
export * from './usePlatformDomainsQuery';
|
|
@@ -75,14 +83,24 @@ export * from './usePlatformDomainVerificationsQuery';
|
|
|
75
83
|
export * from './usePlatformDomainVerificationQuery';
|
|
76
84
|
export * from './usePlatformManagedDomainsQuery';
|
|
77
85
|
export * from './usePlatformManagedDomainQuery';
|
|
86
|
+
export * from './usePlatformPagesQuery';
|
|
87
|
+
export * from './usePlatformPageQuery';
|
|
88
|
+
export * from './usePlatformSiteAppLinksQuery';
|
|
89
|
+
export * from './usePlatformSiteAppLinkQuery';
|
|
78
90
|
export * from './usePlatformSitesQuery';
|
|
79
91
|
export * from './usePlatformSiteQuery';
|
|
92
|
+
export * from './usePlatformSiteDeepLinksQuery';
|
|
93
|
+
export * from './usePlatformSiteDeepLinkQuery';
|
|
94
|
+
export * from './usePlatformSiteErrorPagesQuery';
|
|
95
|
+
export * from './usePlatformSiteErrorPageQuery';
|
|
80
96
|
export * from './usePlatformSiteMetadataQuery';
|
|
81
97
|
export * from './usePlatformSiteMetadatumQuery';
|
|
82
98
|
export * from './usePlatformSiteModulesQuery';
|
|
83
99
|
export * from './usePlatformSiteModuleQuery';
|
|
84
100
|
export * from './usePlatformSiteThemesQuery';
|
|
85
101
|
export * from './usePlatformSiteThemeQuery';
|
|
102
|
+
export * from './usePlatformSiteWebConfigsQuery';
|
|
103
|
+
export * from './usePlatformSiteWebConfigQuery';
|
|
86
104
|
export * from './usePoliciesQuery';
|
|
87
105
|
export * from './usePolicyQuery';
|
|
88
106
|
export * from './usePrimaryKeyConstraintsQuery';
|
|
@@ -99,18 +117,28 @@ export * from './useSchemasQuery';
|
|
|
99
117
|
export * from './useSchemaQuery';
|
|
100
118
|
export * from './useSchemaGrantsQuery';
|
|
101
119
|
export * from './useSchemaGrantQuery';
|
|
120
|
+
export * from './useSiteAppLinksQuery';
|
|
121
|
+
export * from './useSiteAppLinkQuery';
|
|
102
122
|
export * from './useSitesQuery';
|
|
103
123
|
export * from './useSiteQuery';
|
|
124
|
+
export * from './useSiteDeepLinksQuery';
|
|
125
|
+
export * from './useSiteDeepLinkQuery';
|
|
126
|
+
export * from './useSiteErrorPagesQuery';
|
|
127
|
+
export * from './useSiteErrorPageQuery';
|
|
104
128
|
export * from './useSiteMetadataQuery';
|
|
105
129
|
export * from './useSiteMetadatumQuery';
|
|
106
130
|
export * from './useSiteModulesQuery';
|
|
107
131
|
export * from './useSiteModuleQuery';
|
|
108
132
|
export * from './useSiteThemesQuery';
|
|
109
133
|
export * from './useSiteThemeQuery';
|
|
134
|
+
export * from './useSiteWebConfigsQuery';
|
|
135
|
+
export * from './useSiteWebConfigQuery';
|
|
110
136
|
export * from './useSpatialRelationsQuery';
|
|
111
137
|
export * from './useSpatialRelationQuery';
|
|
112
138
|
export * from './useSqlActionsQuery';
|
|
113
139
|
export * from './useSqlActionQuery';
|
|
140
|
+
export * from './useTableBehaviorsQuery';
|
|
141
|
+
export * from './useTableBehaviorQuery';
|
|
114
142
|
export * from './useTablesQuery';
|
|
115
143
|
export * from './useTableQuery';
|
|
116
144
|
export * from './useTableGrantsQuery';
|
|
@@ -119,8 +147,12 @@ export * from './useTriggersQuery';
|
|
|
119
147
|
export * from './useTriggerQuery';
|
|
120
148
|
export * from './useTriggerFunctionsQuery';
|
|
121
149
|
export * from './useTriggerFunctionQuery';
|
|
150
|
+
export * from './useUniqueConstraintBehaviorsQuery';
|
|
151
|
+
export * from './useUniqueConstraintBehaviorQuery';
|
|
122
152
|
export * from './useUniqueConstraintsQuery';
|
|
123
153
|
export * from './useUniqueConstraintQuery';
|
|
154
|
+
export * from './useViewBehaviorsQuery';
|
|
155
|
+
export * from './useViewBehaviorQuery';
|
|
124
156
|
export * from './useViewsQuery';
|
|
125
157
|
export * from './useViewQuery';
|
|
126
158
|
export * from './useViewGrantsQuery';
|
|
@@ -133,5 +165,7 @@ export * from './useWebauthnSettingsQuery';
|
|
|
133
165
|
export * from './useWebauthnSettingQuery';
|
|
134
166
|
export * from './useApiSchemaNamesQuery';
|
|
135
167
|
export * from './useApplyRegistryDefaultsQuery';
|
|
168
|
+
export * from './useResolveDeepLinkQuery';
|
|
136
169
|
export * from './useResolveHttpRouteQuery';
|
|
137
170
|
export * from './useResolveRouteQuery';
|
|
171
|
+
export * from './useResolveSiteAppLinksQuery';
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
|
-
export * from './useApisQuery';
|
|
7
|
-
export * from './useApiQuery';
|
|
8
6
|
export * from './useApiSchemasQuery';
|
|
9
7
|
export * from './useApiSchemaQuery';
|
|
10
8
|
export * from './useApiSettingsQuery';
|
|
11
9
|
export * from './useApiSettingQuery';
|
|
10
|
+
export * from './useApisesQuery';
|
|
11
|
+
export * from './useApisQuery';
|
|
12
12
|
export * from './useAstMigrationsQuery';
|
|
13
13
|
export * from './useAstMigrationQuery';
|
|
14
14
|
export * from './useCheckConstraintsQuery';
|
|
@@ -25,6 +25,8 @@ export * from './useDatabaseTransfersQuery';
|
|
|
25
25
|
export * from './useDatabaseTransferQuery';
|
|
26
26
|
export * from './useDefaultPrivilegesQuery';
|
|
27
27
|
export * from './useDefaultPrivilegeQuery';
|
|
28
|
+
export * from './useDerivesQuery';
|
|
29
|
+
export * from './useDeriveQuery';
|
|
28
30
|
export * from './useDomainsQuery';
|
|
29
31
|
export * from './useDomainQuery';
|
|
30
32
|
export * from './useDomainEventsQuery';
|
|
@@ -39,8 +41,12 @@ export * from './useEnumsQuery';
|
|
|
39
41
|
export * from './useEnumQuery';
|
|
40
42
|
export * from './useExclusionConstraintsQuery';
|
|
41
43
|
export * from './useExclusionConstraintQuery';
|
|
44
|
+
export * from './useFieldBehaviorsQuery';
|
|
45
|
+
export * from './useFieldBehaviorQuery';
|
|
42
46
|
export * from './useFieldsQuery';
|
|
43
47
|
export * from './useFieldQuery';
|
|
48
|
+
export * from './useForeignKeyConstraintBehaviorsQuery';
|
|
49
|
+
export * from './useForeignKeyConstraintBehaviorQuery';
|
|
44
50
|
export * from './useForeignKeyConstraintsQuery';
|
|
45
51
|
export * from './useForeignKeyConstraintQuery';
|
|
46
52
|
export * from './useFullTextSearchesQuery';
|
|
@@ -57,14 +63,16 @@ export * from './useManagedDomainsQuery';
|
|
|
57
63
|
export * from './useManagedDomainQuery';
|
|
58
64
|
export * from './useNodeTypeRegistriesQuery';
|
|
59
65
|
export * from './useNodeTypeRegistryQuery';
|
|
66
|
+
export * from './usePagesQuery';
|
|
67
|
+
export * from './usePageQuery';
|
|
60
68
|
export * from './usePartitionsQuery';
|
|
61
69
|
export * from './usePartitionQuery';
|
|
62
|
-
export * from './usePlatformApisQuery';
|
|
63
|
-
export * from './usePlatformApiQuery';
|
|
64
70
|
export * from './usePlatformApiSchemasQuery';
|
|
65
71
|
export * from './usePlatformApiSchemaQuery';
|
|
66
72
|
export * from './usePlatformApiSettingsQuery';
|
|
67
73
|
export * from './usePlatformApiSettingQuery';
|
|
74
|
+
export * from './usePlatformApisesQuery';
|
|
75
|
+
export * from './usePlatformApisQuery';
|
|
68
76
|
export * from './usePlatformCorsSettingsQuery';
|
|
69
77
|
export * from './usePlatformCorsSettingQuery';
|
|
70
78
|
export * from './usePlatformDomainsQuery';
|
|
@@ -75,14 +83,24 @@ export * from './usePlatformDomainVerificationsQuery';
|
|
|
75
83
|
export * from './usePlatformDomainVerificationQuery';
|
|
76
84
|
export * from './usePlatformManagedDomainsQuery';
|
|
77
85
|
export * from './usePlatformManagedDomainQuery';
|
|
86
|
+
export * from './usePlatformPagesQuery';
|
|
87
|
+
export * from './usePlatformPageQuery';
|
|
88
|
+
export * from './usePlatformSiteAppLinksQuery';
|
|
89
|
+
export * from './usePlatformSiteAppLinkQuery';
|
|
78
90
|
export * from './usePlatformSitesQuery';
|
|
79
91
|
export * from './usePlatformSiteQuery';
|
|
92
|
+
export * from './usePlatformSiteDeepLinksQuery';
|
|
93
|
+
export * from './usePlatformSiteDeepLinkQuery';
|
|
94
|
+
export * from './usePlatformSiteErrorPagesQuery';
|
|
95
|
+
export * from './usePlatformSiteErrorPageQuery';
|
|
80
96
|
export * from './usePlatformSiteMetadataQuery';
|
|
81
97
|
export * from './usePlatformSiteMetadatumQuery';
|
|
82
98
|
export * from './usePlatformSiteModulesQuery';
|
|
83
99
|
export * from './usePlatformSiteModuleQuery';
|
|
84
100
|
export * from './usePlatformSiteThemesQuery';
|
|
85
101
|
export * from './usePlatformSiteThemeQuery';
|
|
102
|
+
export * from './usePlatformSiteWebConfigsQuery';
|
|
103
|
+
export * from './usePlatformSiteWebConfigQuery';
|
|
86
104
|
export * from './usePoliciesQuery';
|
|
87
105
|
export * from './usePolicyQuery';
|
|
88
106
|
export * from './usePrimaryKeyConstraintsQuery';
|
|
@@ -99,18 +117,28 @@ export * from './useSchemasQuery';
|
|
|
99
117
|
export * from './useSchemaQuery';
|
|
100
118
|
export * from './useSchemaGrantsQuery';
|
|
101
119
|
export * from './useSchemaGrantQuery';
|
|
120
|
+
export * from './useSiteAppLinksQuery';
|
|
121
|
+
export * from './useSiteAppLinkQuery';
|
|
102
122
|
export * from './useSitesQuery';
|
|
103
123
|
export * from './useSiteQuery';
|
|
124
|
+
export * from './useSiteDeepLinksQuery';
|
|
125
|
+
export * from './useSiteDeepLinkQuery';
|
|
126
|
+
export * from './useSiteErrorPagesQuery';
|
|
127
|
+
export * from './useSiteErrorPageQuery';
|
|
104
128
|
export * from './useSiteMetadataQuery';
|
|
105
129
|
export * from './useSiteMetadatumQuery';
|
|
106
130
|
export * from './useSiteModulesQuery';
|
|
107
131
|
export * from './useSiteModuleQuery';
|
|
108
132
|
export * from './useSiteThemesQuery';
|
|
109
133
|
export * from './useSiteThemeQuery';
|
|
134
|
+
export * from './useSiteWebConfigsQuery';
|
|
135
|
+
export * from './useSiteWebConfigQuery';
|
|
110
136
|
export * from './useSpatialRelationsQuery';
|
|
111
137
|
export * from './useSpatialRelationQuery';
|
|
112
138
|
export * from './useSqlActionsQuery';
|
|
113
139
|
export * from './useSqlActionQuery';
|
|
140
|
+
export * from './useTableBehaviorsQuery';
|
|
141
|
+
export * from './useTableBehaviorQuery';
|
|
114
142
|
export * from './useTablesQuery';
|
|
115
143
|
export * from './useTableQuery';
|
|
116
144
|
export * from './useTableGrantsQuery';
|
|
@@ -119,8 +147,12 @@ export * from './useTriggersQuery';
|
|
|
119
147
|
export * from './useTriggerQuery';
|
|
120
148
|
export * from './useTriggerFunctionsQuery';
|
|
121
149
|
export * from './useTriggerFunctionQuery';
|
|
150
|
+
export * from './useUniqueConstraintBehaviorsQuery';
|
|
151
|
+
export * from './useUniqueConstraintBehaviorQuery';
|
|
122
152
|
export * from './useUniqueConstraintsQuery';
|
|
123
153
|
export * from './useUniqueConstraintQuery';
|
|
154
|
+
export * from './useViewBehaviorsQuery';
|
|
155
|
+
export * from './useViewBehaviorQuery';
|
|
124
156
|
export * from './useViewsQuery';
|
|
125
157
|
export * from './useViewQuery';
|
|
126
158
|
export * from './useViewGrantsQuery';
|
|
@@ -133,5 +165,7 @@ export * from './useWebauthnSettingsQuery';
|
|
|
133
165
|
export * from './useWebauthnSettingQuery';
|
|
134
166
|
export * from './useApiSchemaNamesQuery';
|
|
135
167
|
export * from './useApplyRegistryDefaultsQuery';
|
|
168
|
+
export * from './useResolveDeepLinkQuery';
|
|
136
169
|
export * from './useResolveHttpRouteQuery';
|
|
137
170
|
export * from './useResolveRouteQuery';
|
|
171
|
+
export * from './useResolveSiteAppLinksQuery';
|
|
@@ -4,35 +4,31 @@
|
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
-
import type {
|
|
8
|
-
import type {
|
|
9
|
-
|
|
10
|
-
export type { ApiSelect, ApiWithRelations, ApiFilter, ApiOrderBy } from '../../orm/input-types';
|
|
7
|
+
import type { ApisSelect, ApisWithRelations } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { ApisSelect, ApisWithRelations } from '../../orm/input-types';
|
|
11
10
|
/** Query key factory - re-exported from query-keys.ts */
|
|
12
|
-
export declare const apisQueryKey: (
|
|
11
|
+
export declare const apisQueryKey: (id: string | number) => readonly ["apis", "detail", string | number];
|
|
13
12
|
/**
|
|
14
13
|
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
15
14
|
*
|
|
16
15
|
* @example
|
|
17
16
|
* ```tsx
|
|
18
17
|
* const { data, isLoading } = useApisQuery({
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
* where: { name: { equalTo: "example" } },
|
|
22
|
-
* orderBy: ['CREATED_AT_DESC'],
|
|
23
|
-
* first: 10,
|
|
24
|
-
* },
|
|
18
|
+
* id: 'some-id',
|
|
19
|
+
* selection: { fields: { id: true, name: true } },
|
|
25
20
|
* });
|
|
26
21
|
* ```
|
|
27
22
|
*/
|
|
28
|
-
export declare function useApisQuery<S extends
|
|
29
|
-
apis:
|
|
23
|
+
export declare function useApisQuery<S extends ApisSelect, TData = {
|
|
24
|
+
apis: InferSelectResult<ApisWithRelations, S> | null;
|
|
30
25
|
}>(params: {
|
|
26
|
+
id: string;
|
|
31
27
|
selection: {
|
|
32
28
|
fields: S;
|
|
33
|
-
} &
|
|
29
|
+
} & HookStrictSelect<NoInfer<S>, ApisSelect>;
|
|
34
30
|
} & Omit<UseQueryOptions<{
|
|
35
|
-
apis:
|
|
31
|
+
apis: InferSelectResult<ApisWithRelations, S> | null;
|
|
36
32
|
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
37
33
|
/**
|
|
38
34
|
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
@@ -40,30 +36,30 @@ export declare function useApisQuery<S extends ApiSelect, TData = {
|
|
|
40
36
|
* @example
|
|
41
37
|
* ```ts
|
|
42
38
|
* const data = await fetchApisQuery({
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
* first: 10,
|
|
46
|
-
* },
|
|
39
|
+
* id: 'some-id',
|
|
40
|
+
* selection: { fields: { id: true } },
|
|
47
41
|
* });
|
|
48
42
|
* ```
|
|
49
43
|
*/
|
|
50
|
-
export declare function fetchApisQuery<S extends
|
|
44
|
+
export declare function fetchApisQuery<S extends ApisSelect>(params: {
|
|
45
|
+
id: string;
|
|
51
46
|
selection: {
|
|
52
47
|
fields: S;
|
|
53
|
-
} &
|
|
48
|
+
} & HookStrictSelect<NoInfer<S>, ApisSelect>;
|
|
54
49
|
}): Promise<{
|
|
55
|
-
apis:
|
|
50
|
+
apis: InferSelectResult<ApisWithRelations, S> | null;
|
|
56
51
|
}>;
|
|
57
52
|
/**
|
|
58
53
|
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
59
54
|
*
|
|
60
55
|
* @example
|
|
61
56
|
* ```ts
|
|
62
|
-
* await prefetchApisQuery(queryClient, { selection: { fields: { id: true }
|
|
57
|
+
* await prefetchApisQuery(queryClient, { id: 'some-id', selection: { fields: { id: true } } });
|
|
63
58
|
* ```
|
|
64
59
|
*/
|
|
65
|
-
export declare function prefetchApisQuery<S extends
|
|
60
|
+
export declare function prefetchApisQuery<S extends ApisSelect>(queryClient: QueryClient, params: {
|
|
61
|
+
id: string;
|
|
66
62
|
selection: {
|
|
67
63
|
fields: S;
|
|
68
|
-
} &
|
|
64
|
+
} & HookStrictSelect<NoInfer<S>, ApisSelect>;
|
|
69
65
|
}): Promise<void>;
|
|
@@ -5,28 +5,43 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { useQuery } from '@tanstack/react-query';
|
|
7
7
|
import { getClient } from '../client';
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
8
|
+
import { buildSelectionArgs } from '../selection';
|
|
9
|
+
import { apisKeys } from '../query-keys';
|
|
10
10
|
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
-
export const apisQueryKey =
|
|
11
|
+
export const apisQueryKey = apisKeys.detail;
|
|
12
12
|
export function useApisQuery(params) {
|
|
13
|
-
const args =
|
|
13
|
+
const args = buildSelectionArgs(params.selection);
|
|
14
14
|
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
15
15
|
void _selection;
|
|
16
16
|
return useQuery({
|
|
17
|
-
queryKey:
|
|
18
|
-
queryFn: () => getClient()
|
|
17
|
+
queryKey: apisKeys.detail(params.id),
|
|
18
|
+
queryFn: () => getClient()
|
|
19
|
+
.apis.findOne({
|
|
20
|
+
id: params.id,
|
|
21
|
+
select: args.select,
|
|
22
|
+
})
|
|
23
|
+
.unwrap(),
|
|
19
24
|
...queryOptions,
|
|
20
25
|
});
|
|
21
26
|
}
|
|
22
27
|
export async function fetchApisQuery(params) {
|
|
23
|
-
const args =
|
|
24
|
-
return getClient()
|
|
28
|
+
const args = buildSelectionArgs(params.selection);
|
|
29
|
+
return getClient()
|
|
30
|
+
.apis.findOne({
|
|
31
|
+
id: params.id,
|
|
32
|
+
select: args.select,
|
|
33
|
+
})
|
|
34
|
+
.unwrap();
|
|
25
35
|
}
|
|
26
36
|
export async function prefetchApisQuery(queryClient, params) {
|
|
27
|
-
const args =
|
|
37
|
+
const args = buildSelectionArgs(params.selection);
|
|
28
38
|
await queryClient.prefetchQuery({
|
|
29
|
-
queryKey:
|
|
30
|
-
queryFn: () => getClient()
|
|
39
|
+
queryKey: apisKeys.detail(params.id),
|
|
40
|
+
queryFn: () => getClient()
|
|
41
|
+
.apis.findOne({
|
|
42
|
+
id: params.id,
|
|
43
|
+
select: args.select,
|
|
44
|
+
})
|
|
45
|
+
.unwrap(),
|
|
31
46
|
});
|
|
32
47
|
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
+
import type { ListSelectionConfig } from '../selection';
|
|
8
|
+
import type { ApisSelect, ApisWithRelations, ApisFilter, ApisOrderBy } from '../../orm/input-types';
|
|
9
|
+
import type { InferSelectResult, ConnectionResult, HookStrictSelect } from '../../orm/select-types';
|
|
10
|
+
export type { ApisSelect, ApisWithRelations, ApisFilter, ApisOrderBy } from '../../orm/input-types';
|
|
11
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
12
|
+
export declare const apisesQueryKey: (variables?: object) => readonly ["apis", "list", object];
|
|
13
|
+
/**
|
|
14
|
+
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```tsx
|
|
18
|
+
* const { data, isLoading } = useApisesQuery({
|
|
19
|
+
* selection: {
|
|
20
|
+
* fields: { id: true, name: true },
|
|
21
|
+
* where: { name: { equalTo: "example" } },
|
|
22
|
+
* orderBy: ['CREATED_AT_DESC'],
|
|
23
|
+
* first: 10,
|
|
24
|
+
* },
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare function useApisesQuery<S extends ApisSelect, TData = {
|
|
29
|
+
apises: ConnectionResult<InferSelectResult<ApisWithRelations, S>>;
|
|
30
|
+
}>(params: {
|
|
31
|
+
selection: {
|
|
32
|
+
fields: S;
|
|
33
|
+
} & Omit<ListSelectionConfig<S, ApisFilter, ApisOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, ApisSelect>;
|
|
34
|
+
} & Omit<UseQueryOptions<{
|
|
35
|
+
apises: ConnectionResult<InferSelectResult<ApisWithRelations, S>>;
|
|
36
|
+
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
37
|
+
/**
|
|
38
|
+
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* ```ts
|
|
42
|
+
* const data = await fetchApisesQuery({
|
|
43
|
+
* selection: {
|
|
44
|
+
* fields: { id: true },
|
|
45
|
+
* first: 10,
|
|
46
|
+
* },
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
export declare function fetchApisesQuery<S extends ApisSelect>(params: {
|
|
51
|
+
selection: {
|
|
52
|
+
fields: S;
|
|
53
|
+
} & Omit<ListSelectionConfig<S, ApisFilter, ApisOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, ApisSelect>;
|
|
54
|
+
}): Promise<{
|
|
55
|
+
apises: ConnectionResult<InferSelectResult<ApisWithRelations, S>>;
|
|
56
|
+
}>;
|
|
57
|
+
/**
|
|
58
|
+
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```ts
|
|
62
|
+
* await prefetchApisesQuery(queryClient, { selection: { fields: { id: true }, first: 10 } });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function prefetchApisesQuery<S extends ApisSelect>(queryClient: QueryClient, params: {
|
|
66
|
+
selection: {
|
|
67
|
+
fields: S;
|
|
68
|
+
} & Omit<ListSelectionConfig<S, ApisFilter, ApisOrderBy>, 'fields'> & HookStrictSelect<NoInfer<S>, ApisSelect>;
|
|
69
|
+
}): Promise<void>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* API surfaces exposed by this scope; publication makes a surface bindable from other scopes
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import { useQuery } from '@tanstack/react-query';
|
|
7
|
+
import { getClient } from '../client';
|
|
8
|
+
import { buildListSelectionArgs } from '../selection';
|
|
9
|
+
import { apisKeys } from '../query-keys';
|
|
10
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
+
export const apisesQueryKey = apisKeys.list;
|
|
12
|
+
export function useApisesQuery(params) {
|
|
13
|
+
const args = buildListSelectionArgs(params.selection);
|
|
14
|
+
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
15
|
+
void _selection;
|
|
16
|
+
return useQuery({
|
|
17
|
+
queryKey: apisKeys.list(args),
|
|
18
|
+
queryFn: () => getClient().apis.findMany(args).unwrap(),
|
|
19
|
+
...queryOptions,
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
export async function fetchApisesQuery(params) {
|
|
23
|
+
const args = buildListSelectionArgs(params.selection);
|
|
24
|
+
return getClient().apis.findMany(args).unwrap();
|
|
25
|
+
}
|
|
26
|
+
export async function prefetchApisesQuery(queryClient, params) {
|
|
27
|
+
const args = buildListSelectionArgs(params.selection);
|
|
28
|
+
await queryClient.prefetchQuery({
|
|
29
|
+
queryKey: apisKeys.list(args),
|
|
30
|
+
queryFn: () => getClient().apis.findMany(args).unwrap(),
|
|
31
|
+
});
|
|
32
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Single item query hook for Derive
|
|
3
|
+
* @generated by @constructive-io/graphql-codegen
|
|
4
|
+
* DO NOT EDIT - changes will be overwritten
|
|
5
|
+
*/
|
|
6
|
+
import type { UseQueryOptions, UseQueryResult, QueryClient } from '@tanstack/react-query';
|
|
7
|
+
import type { DeriveSelect, DeriveWithRelations } from '../../orm/input-types';
|
|
8
|
+
import type { InferSelectResult, HookStrictSelect } from '../../orm/select-types';
|
|
9
|
+
export type { DeriveSelect, DeriveWithRelations } from '../../orm/input-types';
|
|
10
|
+
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
+
export declare const deriveQueryKey: (id: string | number) => readonly ["derive", "detail", string | number];
|
|
12
|
+
/**
|
|
13
|
+
* Query hook for fetching a single Derive
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* const { data, isLoading } = useDeriveQuery({
|
|
18
|
+
* id: 'some-id',
|
|
19
|
+
* selection: { fields: { id: true, name: true } },
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
export declare function useDeriveQuery<S extends DeriveSelect, TData = {
|
|
24
|
+
derive: InferSelectResult<DeriveWithRelations, S> | null;
|
|
25
|
+
}>(params: {
|
|
26
|
+
id: string;
|
|
27
|
+
selection: {
|
|
28
|
+
fields: S;
|
|
29
|
+
} & HookStrictSelect<NoInfer<S>, DeriveSelect>;
|
|
30
|
+
} & Omit<UseQueryOptions<{
|
|
31
|
+
derive: InferSelectResult<DeriveWithRelations, S> | null;
|
|
32
|
+
}, Error, TData>, 'queryKey' | 'queryFn'>): UseQueryResult<TData>;
|
|
33
|
+
/**
|
|
34
|
+
* Fetch a single Derive without React hooks
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* ```ts
|
|
38
|
+
* const data = await fetchDeriveQuery({
|
|
39
|
+
* id: 'some-id',
|
|
40
|
+
* selection: { fields: { id: true } },
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
export declare function fetchDeriveQuery<S extends DeriveSelect>(params: {
|
|
45
|
+
id: string;
|
|
46
|
+
selection: {
|
|
47
|
+
fields: S;
|
|
48
|
+
} & HookStrictSelect<NoInfer<S>, DeriveSelect>;
|
|
49
|
+
}): Promise<{
|
|
50
|
+
derive: InferSelectResult<DeriveWithRelations, S> | null;
|
|
51
|
+
}>;
|
|
52
|
+
/**
|
|
53
|
+
* Prefetch a single Derive for SSR or cache warming
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* ```ts
|
|
57
|
+
* await prefetchDeriveQuery(queryClient, { id: 'some-id', selection: { fields: { id: true } } });
|
|
58
|
+
* ```
|
|
59
|
+
*/
|
|
60
|
+
export declare function prefetchDeriveQuery<S extends DeriveSelect>(queryClient: QueryClient, params: {
|
|
61
|
+
id: string;
|
|
62
|
+
selection: {
|
|
63
|
+
fields: S;
|
|
64
|
+
} & HookStrictSelect<NoInfer<S>, DeriveSelect>;
|
|
65
|
+
}): Promise<void>;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Single item query hook for Derive
|
|
3
3
|
* @generated by @constructive-io/graphql-codegen
|
|
4
4
|
* DO NOT EDIT - changes will be overwritten
|
|
5
5
|
*/
|
|
6
6
|
import { useQuery } from '@tanstack/react-query';
|
|
7
7
|
import { getClient } from '../client';
|
|
8
8
|
import { buildSelectionArgs } from '../selection';
|
|
9
|
-
import {
|
|
9
|
+
import { deriveKeys } from '../query-keys';
|
|
10
10
|
/** Query key factory - re-exported from query-keys.ts */
|
|
11
|
-
export const
|
|
12
|
-
export function
|
|
11
|
+
export const deriveQueryKey = deriveKeys.detail;
|
|
12
|
+
export function useDeriveQuery(params) {
|
|
13
13
|
const args = buildSelectionArgs(params.selection);
|
|
14
14
|
const { selection: _selection, ...queryOptions } = params ?? {};
|
|
15
15
|
void _selection;
|
|
16
16
|
return useQuery({
|
|
17
|
-
queryKey:
|
|
17
|
+
queryKey: deriveKeys.detail(params.id),
|
|
18
18
|
queryFn: () => getClient()
|
|
19
|
-
.
|
|
19
|
+
.derive.findOne({
|
|
20
20
|
id: params.id,
|
|
21
21
|
select: args.select,
|
|
22
22
|
})
|
|
@@ -24,21 +24,21 @@ export function useApiQuery(params) {
|
|
|
24
24
|
...queryOptions,
|
|
25
25
|
});
|
|
26
26
|
}
|
|
27
|
-
export async function
|
|
27
|
+
export async function fetchDeriveQuery(params) {
|
|
28
28
|
const args = buildSelectionArgs(params.selection);
|
|
29
29
|
return getClient()
|
|
30
|
-
.
|
|
30
|
+
.derive.findOne({
|
|
31
31
|
id: params.id,
|
|
32
32
|
select: args.select,
|
|
33
33
|
})
|
|
34
34
|
.unwrap();
|
|
35
35
|
}
|
|
36
|
-
export async function
|
|
36
|
+
export async function prefetchDeriveQuery(queryClient, params) {
|
|
37
37
|
const args = buildSelectionArgs(params.selection);
|
|
38
38
|
await queryClient.prefetchQuery({
|
|
39
|
-
queryKey:
|
|
39
|
+
queryKey: deriveKeys.detail(params.id),
|
|
40
40
|
queryFn: () => getClient()
|
|
41
|
-
.
|
|
41
|
+
.derive.findOne({
|
|
42
42
|
id: params.id,
|
|
43
43
|
select: args.select,
|
|
44
44
|
})
|