@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
|
@@ -465,21 +465,18 @@ export interface PrincipalScopeOverrideRelations {
|
|
|
465
465
|
principal?: Principal | null;
|
|
466
466
|
}
|
|
467
467
|
export interface RoleTypeRelations {
|
|
468
|
-
usersByType?: ConnectionResult<User>;
|
|
469
468
|
}
|
|
470
469
|
export interface UserConnectedAccountRelations {
|
|
471
470
|
}
|
|
472
471
|
export interface UserRelations {
|
|
473
472
|
roleType?: RoleType | null;
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
ownedPrincipalEntities?: ConnectionResult<PrincipalEntity>;
|
|
479
|
-
ownedPrincipals?: ConnectionResult<Principal>;
|
|
480
|
-
ownedWebauthnCredentials?: ConnectionResult<WebauthnCredential>;
|
|
481
|
-
principalEntitiesByEntityId?: ConnectionResult<PrincipalEntity>;
|
|
473
|
+
authAuditLog?: ConnectionResult<AuditLogAuth>;
|
|
474
|
+
cryptoAddresses?: ConnectionResult<CryptoAddress>;
|
|
475
|
+
emails?: ConnectionResult<Email>;
|
|
476
|
+
phoneNumbers?: ConnectionResult<PhoneNumber>;
|
|
482
477
|
principals?: ConnectionResult<Principal>;
|
|
478
|
+
scopedPrincipals?: ConnectionResult<PrincipalEntity>;
|
|
479
|
+
webauthnCredentials?: ConnectionResult<WebauthnCredential>;
|
|
483
480
|
}
|
|
484
481
|
export interface WebauthnCredentialRelations {
|
|
485
482
|
owner?: User | null;
|
|
@@ -633,12 +630,6 @@ export type PrincipalScopeOverrideSelect = {
|
|
|
633
630
|
export type RoleTypeSelect = {
|
|
634
631
|
id?: boolean;
|
|
635
632
|
name?: boolean;
|
|
636
|
-
usersByType?: {
|
|
637
|
-
select: UserSelect;
|
|
638
|
-
first?: number;
|
|
639
|
-
filter?: UserFilter;
|
|
640
|
-
orderBy?: UserOrderBy[];
|
|
641
|
-
};
|
|
642
633
|
};
|
|
643
634
|
export type UserConnectedAccountSelect = {
|
|
644
635
|
createdAt?: boolean;
|
|
@@ -665,59 +656,47 @@ export type UserSelect = {
|
|
|
665
656
|
roleType?: {
|
|
666
657
|
select: RoleTypeSelect;
|
|
667
658
|
};
|
|
668
|
-
|
|
659
|
+
authAuditLog?: {
|
|
669
660
|
select: AuditLogAuthSelect;
|
|
670
661
|
first?: number;
|
|
671
662
|
filter?: AuditLogAuthFilter;
|
|
672
663
|
orderBy?: AuditLogAuthOrderBy[];
|
|
673
664
|
};
|
|
674
|
-
|
|
665
|
+
cryptoAddresses?: {
|
|
675
666
|
select: CryptoAddressSelect;
|
|
676
667
|
first?: number;
|
|
677
668
|
filter?: CryptoAddressFilter;
|
|
678
669
|
orderBy?: CryptoAddressOrderBy[];
|
|
679
670
|
};
|
|
680
|
-
|
|
671
|
+
emails?: {
|
|
681
672
|
select: EmailSelect;
|
|
682
673
|
first?: number;
|
|
683
674
|
filter?: EmailFilter;
|
|
684
675
|
orderBy?: EmailOrderBy[];
|
|
685
676
|
};
|
|
686
|
-
|
|
677
|
+
phoneNumbers?: {
|
|
687
678
|
select: PhoneNumberSelect;
|
|
688
679
|
first?: number;
|
|
689
680
|
filter?: PhoneNumberFilter;
|
|
690
681
|
orderBy?: PhoneNumberOrderBy[];
|
|
691
682
|
};
|
|
692
|
-
|
|
693
|
-
select: PrincipalEntitySelect;
|
|
694
|
-
first?: number;
|
|
695
|
-
filter?: PrincipalEntityFilter;
|
|
696
|
-
orderBy?: PrincipalEntityOrderBy[];
|
|
697
|
-
};
|
|
698
|
-
ownedPrincipals?: {
|
|
683
|
+
principals?: {
|
|
699
684
|
select: PrincipalSelect;
|
|
700
685
|
first?: number;
|
|
701
686
|
filter?: PrincipalFilter;
|
|
702
687
|
orderBy?: PrincipalOrderBy[];
|
|
703
688
|
};
|
|
704
|
-
|
|
705
|
-
select: WebauthnCredentialSelect;
|
|
706
|
-
first?: number;
|
|
707
|
-
filter?: WebauthnCredentialFilter;
|
|
708
|
-
orderBy?: WebauthnCredentialOrderBy[];
|
|
709
|
-
};
|
|
710
|
-
principalEntitiesByEntityId?: {
|
|
689
|
+
scopedPrincipals?: {
|
|
711
690
|
select: PrincipalEntitySelect;
|
|
712
691
|
first?: number;
|
|
713
692
|
filter?: PrincipalEntityFilter;
|
|
714
693
|
orderBy?: PrincipalEntityOrderBy[];
|
|
715
694
|
};
|
|
716
|
-
|
|
717
|
-
select:
|
|
695
|
+
webauthnCredentials?: {
|
|
696
|
+
select: WebauthnCredentialSelect;
|
|
718
697
|
first?: number;
|
|
719
|
-
filter?:
|
|
720
|
-
orderBy?:
|
|
698
|
+
filter?: WebauthnCredentialFilter;
|
|
699
|
+
orderBy?: WebauthnCredentialOrderBy[];
|
|
721
700
|
};
|
|
722
701
|
};
|
|
723
702
|
export type WebauthnCredentialSelect = {
|
|
@@ -998,10 +977,6 @@ export interface RoleTypeFilter {
|
|
|
998
977
|
not?: RoleTypeFilter;
|
|
999
978
|
/** Checks for any expressions in this list. */
|
|
1000
979
|
or?: RoleTypeFilter[];
|
|
1001
|
-
/** Filter by the object’s `usersByType` relation. */
|
|
1002
|
-
usersByType?: RoleTypeToManyUserFilter;
|
|
1003
|
-
/** `usersByType` exist. */
|
|
1004
|
-
usersByTypeExist?: boolean;
|
|
1005
980
|
}
|
|
1006
981
|
export interface UserConnectedAccountFilter {
|
|
1007
982
|
/** Checks for all expressions in this list. */
|
|
@@ -1030,48 +1005,32 @@ export interface UserConnectedAccountFilter {
|
|
|
1030
1005
|
export interface UserFilter {
|
|
1031
1006
|
/** Checks for all expressions in this list. */
|
|
1032
1007
|
and?: UserFilter[];
|
|
1033
|
-
/** Filter by the object’s `
|
|
1034
|
-
|
|
1035
|
-
/** `
|
|
1036
|
-
|
|
1008
|
+
/** Filter by the object’s `authAuditLog` relation. */
|
|
1009
|
+
authAuditLog?: UserToManyAuditLogAuthFilter;
|
|
1010
|
+
/** `authAuditLog` exist. */
|
|
1011
|
+
authAuditLogExist?: boolean;
|
|
1037
1012
|
/** Filter by the object’s `createdAt` field. */
|
|
1038
1013
|
createdAt?: DatetimeFilter;
|
|
1014
|
+
/** Filter by the object’s `cryptoAddresses` relation. */
|
|
1015
|
+
cryptoAddresses?: UserToManyCryptoAddressFilter;
|
|
1016
|
+
/** `cryptoAddresses` exist. */
|
|
1017
|
+
cryptoAddressesExist?: boolean;
|
|
1039
1018
|
/** Filter by the object’s `displayName` field. */
|
|
1040
1019
|
displayName?: StringTrgmFilter;
|
|
1020
|
+
/** Filter by the object’s `emails` relation. */
|
|
1021
|
+
emails?: UserToManyEmailFilter;
|
|
1022
|
+
/** `emails` exist. */
|
|
1023
|
+
emailsExist?: boolean;
|
|
1041
1024
|
/** Filter by the object’s `id` field. */
|
|
1042
1025
|
id?: UUIDFilter;
|
|
1043
1026
|
/** Negates the expression. */
|
|
1044
1027
|
not?: UserFilter;
|
|
1045
1028
|
/** Checks for any expressions in this list. */
|
|
1046
1029
|
or?: UserFilter[];
|
|
1047
|
-
/** Filter by the object’s `
|
|
1048
|
-
|
|
1049
|
-
/** `
|
|
1050
|
-
|
|
1051
|
-
/** Filter by the object’s `ownedEmails` relation. */
|
|
1052
|
-
ownedEmails?: UserToManyEmailFilter;
|
|
1053
|
-
/** `ownedEmails` exist. */
|
|
1054
|
-
ownedEmailsExist?: boolean;
|
|
1055
|
-
/** Filter by the object’s `ownedPhoneNumbers` relation. */
|
|
1056
|
-
ownedPhoneNumbers?: UserToManyPhoneNumberFilter;
|
|
1057
|
-
/** `ownedPhoneNumbers` exist. */
|
|
1058
|
-
ownedPhoneNumbersExist?: boolean;
|
|
1059
|
-
/** Filter by the object’s `ownedPrincipalEntities` relation. */
|
|
1060
|
-
ownedPrincipalEntities?: UserToManyPrincipalEntityFilter;
|
|
1061
|
-
/** `ownedPrincipalEntities` exist. */
|
|
1062
|
-
ownedPrincipalEntitiesExist?: boolean;
|
|
1063
|
-
/** Filter by the object’s `ownedPrincipals` relation. */
|
|
1064
|
-
ownedPrincipals?: UserToManyPrincipalFilter;
|
|
1065
|
-
/** `ownedPrincipals` exist. */
|
|
1066
|
-
ownedPrincipalsExist?: boolean;
|
|
1067
|
-
/** Filter by the object’s `ownedWebauthnCredentials` relation. */
|
|
1068
|
-
ownedWebauthnCredentials?: UserToManyWebauthnCredentialFilter;
|
|
1069
|
-
/** `ownedWebauthnCredentials` exist. */
|
|
1070
|
-
ownedWebauthnCredentialsExist?: boolean;
|
|
1071
|
-
/** Filter by the object’s `principalEntitiesByEntityId` relation. */
|
|
1072
|
-
principalEntitiesByEntityId?: UserToManyPrincipalEntityFilter;
|
|
1073
|
-
/** `principalEntitiesByEntityId` exist. */
|
|
1074
|
-
principalEntitiesByEntityIdExist?: boolean;
|
|
1030
|
+
/** Filter by the object’s `phoneNumbers` relation. */
|
|
1031
|
+
phoneNumbers?: UserToManyPhoneNumberFilter;
|
|
1032
|
+
/** `phoneNumbers` exist. */
|
|
1033
|
+
phoneNumbersExist?: boolean;
|
|
1075
1034
|
/** Filter by the object’s `principals` relation. */
|
|
1076
1035
|
principals?: UserToManyPrincipalFilter;
|
|
1077
1036
|
/** `principals` exist. */
|
|
@@ -1080,6 +1039,10 @@ export interface UserFilter {
|
|
|
1080
1039
|
profilePicture?: ConstructiveInternalTypeImageFilter;
|
|
1081
1040
|
/** Filter by the object’s `roleType` relation. */
|
|
1082
1041
|
roleType?: RoleTypeFilter;
|
|
1042
|
+
/** Filter by the object’s `scopedPrincipals` relation. */
|
|
1043
|
+
scopedPrincipals?: UserToManyPrincipalEntityFilter;
|
|
1044
|
+
/** `scopedPrincipals` exist. */
|
|
1045
|
+
scopedPrincipalsExist?: boolean;
|
|
1083
1046
|
/** Filter by the object’s `searchTsv` field. */
|
|
1084
1047
|
searchTsv?: FullTextFilter;
|
|
1085
1048
|
/** TRGM search on the `display_name` column. */
|
|
@@ -1100,6 +1063,10 @@ export interface UserFilter {
|
|
|
1100
1063
|
updatedAt?: DatetimeFilter;
|
|
1101
1064
|
/** Filter by the object’s `username` field. */
|
|
1102
1065
|
username?: StringTrgmFilter;
|
|
1066
|
+
/** Filter by the object’s `webauthnCredentials` relation. */
|
|
1067
|
+
webauthnCredentials?: UserToManyWebauthnCredentialFilter;
|
|
1068
|
+
/** `webauthnCredentials` exist. */
|
|
1069
|
+
webauthnCredentialsExist?: boolean;
|
|
1103
1070
|
}
|
|
1104
1071
|
export interface WebauthnCredentialFilter {
|
|
1105
1072
|
/** Checks for all expressions in this list. */
|
|
@@ -1839,15 +1806,6 @@ export interface PrincipalToManyPrincipalScopeOverrideFilter {
|
|
|
1839
1806
|
/** Filters to entities where at least one related entity matches. */
|
|
1840
1807
|
some?: PrincipalScopeOverrideFilter;
|
|
1841
1808
|
}
|
|
1842
|
-
/** A filter to be used against many `User` object types. All fields are combined with a logical ‘and.’ */
|
|
1843
|
-
export interface RoleTypeToManyUserFilter {
|
|
1844
|
-
/** Filters to entities where every related entity matches. */
|
|
1845
|
-
every?: UserFilter;
|
|
1846
|
-
/** Filters to entities where no related entity matches. */
|
|
1847
|
-
none?: UserFilter;
|
|
1848
|
-
/** Filters to entities where at least one related entity matches. */
|
|
1849
|
-
some?: UserFilter;
|
|
1850
|
-
}
|
|
1851
1809
|
/** A filter to be used against many `AuditLogAuth` object types. All fields are combined with a logical ‘and.’ */
|
|
1852
1810
|
export interface UserToManyAuditLogAuthFilter {
|
|
1853
1811
|
/** Filters to entities where every related entity matches. */
|
|
@@ -1857,6 +1815,15 @@ export interface UserToManyAuditLogAuthFilter {
|
|
|
1857
1815
|
/** Filters to entities where at least one related entity matches. */
|
|
1858
1816
|
some?: AuditLogAuthFilter;
|
|
1859
1817
|
}
|
|
1818
|
+
/** A filter to be used against many `CryptoAddress` object types. All fields are combined with a logical ‘and.’ */
|
|
1819
|
+
export interface UserToManyCryptoAddressFilter {
|
|
1820
|
+
/** Filters to entities where every related entity matches. */
|
|
1821
|
+
every?: CryptoAddressFilter;
|
|
1822
|
+
/** Filters to entities where no related entity matches. */
|
|
1823
|
+
none?: CryptoAddressFilter;
|
|
1824
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1825
|
+
some?: CryptoAddressFilter;
|
|
1826
|
+
}
|
|
1860
1827
|
/** A filter to be used against String fields with pg_trgm support. All fields are combined with a logical ‘and.’ */
|
|
1861
1828
|
export interface StringTrgmFilter {
|
|
1862
1829
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -1938,15 +1905,6 @@ export interface StringTrgmFilter {
|
|
|
1938
1905
|
/** Fuzzy matches using pg_trgm word_similarity. Finds the best matching substring within the column value. */
|
|
1939
1906
|
wordSimilarTo?: TrgmSearchInput;
|
|
1940
1907
|
}
|
|
1941
|
-
/** A filter to be used against many `CryptoAddress` object types. All fields are combined with a logical ‘and.’ */
|
|
1942
|
-
export interface UserToManyCryptoAddressFilter {
|
|
1943
|
-
/** Filters to entities where every related entity matches. */
|
|
1944
|
-
every?: CryptoAddressFilter;
|
|
1945
|
-
/** Filters to entities where no related entity matches. */
|
|
1946
|
-
none?: CryptoAddressFilter;
|
|
1947
|
-
/** Filters to entities where at least one related entity matches. */
|
|
1948
|
-
some?: CryptoAddressFilter;
|
|
1949
|
-
}
|
|
1950
1908
|
/** A filter to be used against many `Email` object types. All fields are combined with a logical ‘and.’ */
|
|
1951
1909
|
export interface UserToManyEmailFilter {
|
|
1952
1910
|
/** Filters to entities where every related entity matches. */
|
|
@@ -1965,15 +1923,6 @@ export interface UserToManyPhoneNumberFilter {
|
|
|
1965
1923
|
/** Filters to entities where at least one related entity matches. */
|
|
1966
1924
|
some?: PhoneNumberFilter;
|
|
1967
1925
|
}
|
|
1968
|
-
/** A filter to be used against many `PrincipalEntity` object types. All fields are combined with a logical ‘and.’ */
|
|
1969
|
-
export interface UserToManyPrincipalEntityFilter {
|
|
1970
|
-
/** Filters to entities where every related entity matches. */
|
|
1971
|
-
every?: PrincipalEntityFilter;
|
|
1972
|
-
/** Filters to entities where no related entity matches. */
|
|
1973
|
-
none?: PrincipalEntityFilter;
|
|
1974
|
-
/** Filters to entities where at least one related entity matches. */
|
|
1975
|
-
some?: PrincipalEntityFilter;
|
|
1976
|
-
}
|
|
1977
1926
|
/** A filter to be used against many `Principal` object types. All fields are combined with a logical ‘and.’ */
|
|
1978
1927
|
export interface UserToManyPrincipalFilter {
|
|
1979
1928
|
/** Filters to entities where every related entity matches. */
|
|
@@ -1983,15 +1932,6 @@ export interface UserToManyPrincipalFilter {
|
|
|
1983
1932
|
/** Filters to entities where at least one related entity matches. */
|
|
1984
1933
|
some?: PrincipalFilter;
|
|
1985
1934
|
}
|
|
1986
|
-
/** A filter to be used against many `WebauthnCredential` object types. All fields are combined with a logical ‘and.’ */
|
|
1987
|
-
export interface UserToManyWebauthnCredentialFilter {
|
|
1988
|
-
/** Filters to entities where every related entity matches. */
|
|
1989
|
-
every?: WebauthnCredentialFilter;
|
|
1990
|
-
/** Filters to entities where no related entity matches. */
|
|
1991
|
-
none?: WebauthnCredentialFilter;
|
|
1992
|
-
/** Filters to entities where at least one related entity matches. */
|
|
1993
|
-
some?: WebauthnCredentialFilter;
|
|
1994
|
-
}
|
|
1995
1935
|
/** A filter to be used against ConstructiveInternalTypeImage fields. All fields are combined with a logical ‘and.’ */
|
|
1996
1936
|
export interface ConstructiveInternalTypeImageFilter {
|
|
1997
1937
|
/** Contained by the specified JSON. */
|
|
@@ -2027,6 +1967,15 @@ export interface ConstructiveInternalTypeImageFilter {
|
|
|
2027
1967
|
/** Not included in the specified list. */
|
|
2028
1968
|
notIn?: ConstructiveInternalTypeImage[];
|
|
2029
1969
|
}
|
|
1970
|
+
/** A filter to be used against many `PrincipalEntity` object types. All fields are combined with a logical ‘and.’ */
|
|
1971
|
+
export interface UserToManyPrincipalEntityFilter {
|
|
1972
|
+
/** Filters to entities where every related entity matches. */
|
|
1973
|
+
every?: PrincipalEntityFilter;
|
|
1974
|
+
/** Filters to entities where no related entity matches. */
|
|
1975
|
+
none?: PrincipalEntityFilter;
|
|
1976
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1977
|
+
some?: PrincipalEntityFilter;
|
|
1978
|
+
}
|
|
2030
1979
|
/** Input for pg_trgm fuzzy text matching. Provide a search value and optional similarity threshold. */
|
|
2031
1980
|
export interface TrgmSearchInput {
|
|
2032
1981
|
/** Minimum similarity threshold (0.0 to 1.0). Higher = stricter matching. Default is 0.3. */
|
|
@@ -2034,6 +1983,15 @@ export interface TrgmSearchInput {
|
|
|
2034
1983
|
/** The text to fuzzy-match against. Typos and misspellings are tolerated. */
|
|
2035
1984
|
value: string;
|
|
2036
1985
|
}
|
|
1986
|
+
/** A filter to be used against many `WebauthnCredential` object types. All fields are combined with a logical ‘and.’ */
|
|
1987
|
+
export interface UserToManyWebauthnCredentialFilter {
|
|
1988
|
+
/** Filters to entities where every related entity matches. */
|
|
1989
|
+
every?: WebauthnCredentialFilter;
|
|
1990
|
+
/** Filters to entities where no related entity matches. */
|
|
1991
|
+
none?: WebauthnCredentialFilter;
|
|
1992
|
+
/** Filters to entities where at least one related entity matches. */
|
|
1993
|
+
some?: WebauthnCredentialFilter;
|
|
1994
|
+
}
|
|
2037
1995
|
/** A filter to be used against Base64EncodedBinary fields. All fields are combined with a logical ‘and.’ */
|
|
2038
1996
|
export interface Base64EncodedBinaryFilter {
|
|
2039
1997
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -2245,81 +2203,6 @@ export interface PrincipalScopeOverrideFilter {
|
|
|
2245
2203
|
/** Filter by the object’s `useAdminOwner` field. */
|
|
2246
2204
|
useAdminOwner?: BooleanFilter;
|
|
2247
2205
|
}
|
|
2248
|
-
/** A filter to be used against `User` object types. All fields are combined with a logical ‘and.’ */
|
|
2249
|
-
export interface UserFilter {
|
|
2250
|
-
/** Checks for all expressions in this list. */
|
|
2251
|
-
and?: UserFilter[];
|
|
2252
|
-
/** Filter by the object’s `auditLogAuthsByActorId` relation. */
|
|
2253
|
-
auditLogAuthsByActorId?: UserToManyAuditLogAuthFilter;
|
|
2254
|
-
/** `auditLogAuthsByActorId` exist. */
|
|
2255
|
-
auditLogAuthsByActorIdExist?: boolean;
|
|
2256
|
-
/** Filter by the object’s `createdAt` field. */
|
|
2257
|
-
createdAt?: DatetimeFilter;
|
|
2258
|
-
/** Filter by the object’s `displayName` field. */
|
|
2259
|
-
displayName?: StringTrgmFilter;
|
|
2260
|
-
/** Filter by the object’s `id` field. */
|
|
2261
|
-
id?: UUIDFilter;
|
|
2262
|
-
/** Negates the expression. */
|
|
2263
|
-
not?: UserFilter;
|
|
2264
|
-
/** Checks for any expressions in this list. */
|
|
2265
|
-
or?: UserFilter[];
|
|
2266
|
-
/** Filter by the object’s `ownedCryptoAddresses` relation. */
|
|
2267
|
-
ownedCryptoAddresses?: UserToManyCryptoAddressFilter;
|
|
2268
|
-
/** `ownedCryptoAddresses` exist. */
|
|
2269
|
-
ownedCryptoAddressesExist?: boolean;
|
|
2270
|
-
/** Filter by the object’s `ownedEmails` relation. */
|
|
2271
|
-
ownedEmails?: UserToManyEmailFilter;
|
|
2272
|
-
/** `ownedEmails` exist. */
|
|
2273
|
-
ownedEmailsExist?: boolean;
|
|
2274
|
-
/** Filter by the object’s `ownedPhoneNumbers` relation. */
|
|
2275
|
-
ownedPhoneNumbers?: UserToManyPhoneNumberFilter;
|
|
2276
|
-
/** `ownedPhoneNumbers` exist. */
|
|
2277
|
-
ownedPhoneNumbersExist?: boolean;
|
|
2278
|
-
/** Filter by the object’s `ownedPrincipalEntities` relation. */
|
|
2279
|
-
ownedPrincipalEntities?: UserToManyPrincipalEntityFilter;
|
|
2280
|
-
/** `ownedPrincipalEntities` exist. */
|
|
2281
|
-
ownedPrincipalEntitiesExist?: boolean;
|
|
2282
|
-
/** Filter by the object’s `ownedPrincipals` relation. */
|
|
2283
|
-
ownedPrincipals?: UserToManyPrincipalFilter;
|
|
2284
|
-
/** `ownedPrincipals` exist. */
|
|
2285
|
-
ownedPrincipalsExist?: boolean;
|
|
2286
|
-
/** Filter by the object’s `ownedWebauthnCredentials` relation. */
|
|
2287
|
-
ownedWebauthnCredentials?: UserToManyWebauthnCredentialFilter;
|
|
2288
|
-
/** `ownedWebauthnCredentials` exist. */
|
|
2289
|
-
ownedWebauthnCredentialsExist?: boolean;
|
|
2290
|
-
/** Filter by the object’s `principalEntitiesByEntityId` relation. */
|
|
2291
|
-
principalEntitiesByEntityId?: UserToManyPrincipalEntityFilter;
|
|
2292
|
-
/** `principalEntitiesByEntityId` exist. */
|
|
2293
|
-
principalEntitiesByEntityIdExist?: boolean;
|
|
2294
|
-
/** Filter by the object’s `principals` relation. */
|
|
2295
|
-
principals?: UserToManyPrincipalFilter;
|
|
2296
|
-
/** `principals` exist. */
|
|
2297
|
-
principalsExist?: boolean;
|
|
2298
|
-
/** Filter by the object’s `profilePicture` field. */
|
|
2299
|
-
profilePicture?: ConstructiveInternalTypeImageFilter;
|
|
2300
|
-
/** Filter by the object’s `roleType` relation. */
|
|
2301
|
-
roleType?: RoleTypeFilter;
|
|
2302
|
-
/** Filter by the object’s `searchTsv` field. */
|
|
2303
|
-
searchTsv?: FullTextFilter;
|
|
2304
|
-
/** TRGM search on the `display_name` column. */
|
|
2305
|
-
trgmDisplayName?: TrgmSearchInput;
|
|
2306
|
-
/** TSV search on the `search_tsv` column. */
|
|
2307
|
-
tsvSearchTsv?: string;
|
|
2308
|
-
/** Filter by the object’s `type` field. */
|
|
2309
|
-
type?: IntFilter;
|
|
2310
|
-
/**
|
|
2311
|
-
* Composite unified search. Provide a search string and it will be dispatched to
|
|
2312
|
-
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
2313
|
-
* simultaneously. When the LLM plugin is active, pgvector also participates via
|
|
2314
|
-
* auto-embedding. Rows matching ANY algorithm are returned. All matching score
|
|
2315
|
-
* fields are populated.
|
|
2316
|
-
*/
|
|
2317
|
-
unifiedSearch?: string;
|
|
2318
|
-
/** Filter by the object’s `updatedAt` field. */
|
|
2319
|
-
updatedAt?: DatetimeFilter;
|
|
2320
|
-
/** Filter by the object’s `username` field. */
|
|
2321
|
-
username?: StringTrgmFilter;
|
|
2322
|
-
}
|
|
2323
2206
|
/** A filter to be used against `AuditLogAuth` object types. All fields are combined with a logical ‘and.’ */
|
|
2324
2207
|
export interface AuditLogAuthFilter {
|
|
2325
2208
|
/** Filter by the object’s `actor` relation. */
|
|
@@ -2535,6 +2418,73 @@ export interface DatetimeFilter {
|
|
|
2535
2418
|
/** Not included in the specified list. */
|
|
2536
2419
|
notIn?: string[];
|
|
2537
2420
|
}
|
|
2421
|
+
/** A filter to be used against `User` object types. All fields are combined with a logical ‘and.’ */
|
|
2422
|
+
export interface UserFilter {
|
|
2423
|
+
/** Checks for all expressions in this list. */
|
|
2424
|
+
and?: UserFilter[];
|
|
2425
|
+
/** Filter by the object’s `authAuditLog` relation. */
|
|
2426
|
+
authAuditLog?: UserToManyAuditLogAuthFilter;
|
|
2427
|
+
/** `authAuditLog` exist. */
|
|
2428
|
+
authAuditLogExist?: boolean;
|
|
2429
|
+
/** Filter by the object’s `createdAt` field. */
|
|
2430
|
+
createdAt?: DatetimeFilter;
|
|
2431
|
+
/** Filter by the object’s `cryptoAddresses` relation. */
|
|
2432
|
+
cryptoAddresses?: UserToManyCryptoAddressFilter;
|
|
2433
|
+
/** `cryptoAddresses` exist. */
|
|
2434
|
+
cryptoAddressesExist?: boolean;
|
|
2435
|
+
/** Filter by the object’s `displayName` field. */
|
|
2436
|
+
displayName?: StringTrgmFilter;
|
|
2437
|
+
/** Filter by the object’s `emails` relation. */
|
|
2438
|
+
emails?: UserToManyEmailFilter;
|
|
2439
|
+
/** `emails` exist. */
|
|
2440
|
+
emailsExist?: boolean;
|
|
2441
|
+
/** Filter by the object’s `id` field. */
|
|
2442
|
+
id?: UUIDFilter;
|
|
2443
|
+
/** Negates the expression. */
|
|
2444
|
+
not?: UserFilter;
|
|
2445
|
+
/** Checks for any expressions in this list. */
|
|
2446
|
+
or?: UserFilter[];
|
|
2447
|
+
/** Filter by the object’s `phoneNumbers` relation. */
|
|
2448
|
+
phoneNumbers?: UserToManyPhoneNumberFilter;
|
|
2449
|
+
/** `phoneNumbers` exist. */
|
|
2450
|
+
phoneNumbersExist?: boolean;
|
|
2451
|
+
/** Filter by the object’s `principals` relation. */
|
|
2452
|
+
principals?: UserToManyPrincipalFilter;
|
|
2453
|
+
/** `principals` exist. */
|
|
2454
|
+
principalsExist?: boolean;
|
|
2455
|
+
/** Filter by the object’s `profilePicture` field. */
|
|
2456
|
+
profilePicture?: ConstructiveInternalTypeImageFilter;
|
|
2457
|
+
/** Filter by the object’s `roleType` relation. */
|
|
2458
|
+
roleType?: RoleTypeFilter;
|
|
2459
|
+
/** Filter by the object’s `scopedPrincipals` relation. */
|
|
2460
|
+
scopedPrincipals?: UserToManyPrincipalEntityFilter;
|
|
2461
|
+
/** `scopedPrincipals` exist. */
|
|
2462
|
+
scopedPrincipalsExist?: boolean;
|
|
2463
|
+
/** Filter by the object’s `searchTsv` field. */
|
|
2464
|
+
searchTsv?: FullTextFilter;
|
|
2465
|
+
/** TRGM search on the `display_name` column. */
|
|
2466
|
+
trgmDisplayName?: TrgmSearchInput;
|
|
2467
|
+
/** TSV search on the `search_tsv` column. */
|
|
2468
|
+
tsvSearchTsv?: string;
|
|
2469
|
+
/** Filter by the object’s `type` field. */
|
|
2470
|
+
type?: IntFilter;
|
|
2471
|
+
/**
|
|
2472
|
+
* Composite unified search. Provide a search string and it will be dispatched to
|
|
2473
|
+
* all text-compatible search algorithms (tsvector, BM25, pg_trgm)
|
|
2474
|
+
* simultaneously. When the LLM plugin is active, pgvector also participates via
|
|
2475
|
+
* auto-embedding. Rows matching ANY algorithm are returned. All matching score
|
|
2476
|
+
* fields are populated.
|
|
2477
|
+
*/
|
|
2478
|
+
unifiedSearch?: string;
|
|
2479
|
+
/** Filter by the object’s `updatedAt` field. */
|
|
2480
|
+
updatedAt?: DatetimeFilter;
|
|
2481
|
+
/** Filter by the object’s `username` field. */
|
|
2482
|
+
username?: StringTrgmFilter;
|
|
2483
|
+
/** Filter by the object’s `webauthnCredentials` relation. */
|
|
2484
|
+
webauthnCredentials?: UserToManyWebauthnCredentialFilter;
|
|
2485
|
+
/** `webauthnCredentials` exist. */
|
|
2486
|
+
webauthnCredentialsExist?: boolean;
|
|
2487
|
+
}
|
|
2538
2488
|
/** A filter to be used against UUID fields. All fields are combined with a logical ‘and.’ */
|
|
2539
2489
|
export interface UUIDFilter {
|
|
2540
2490
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -2635,42 +2585,6 @@ export interface IntFilter {
|
|
|
2635
2585
|
/** Not included in the specified list. */
|
|
2636
2586
|
notIn?: number[];
|
|
2637
2587
|
}
|
|
2638
|
-
/** A filter to be used against `RoleType` object types. All fields are combined with a logical ‘and.’ */
|
|
2639
|
-
export interface RoleTypeFilter {
|
|
2640
|
-
/** Checks for all expressions in this list. */
|
|
2641
|
-
and?: RoleTypeFilter[];
|
|
2642
|
-
/** Filter by the object’s `id` field. */
|
|
2643
|
-
id?: IntFilter;
|
|
2644
|
-
/** Filter by the object’s `name` field. */
|
|
2645
|
-
name?: StringFilter;
|
|
2646
|
-
/** Negates the expression. */
|
|
2647
|
-
not?: RoleTypeFilter;
|
|
2648
|
-
/** Checks for any expressions in this list. */
|
|
2649
|
-
or?: RoleTypeFilter[];
|
|
2650
|
-
/** Filter by the object’s `usersByType` relation. */
|
|
2651
|
-
usersByType?: RoleTypeToManyUserFilter;
|
|
2652
|
-
/** `usersByType` exist. */
|
|
2653
|
-
usersByTypeExist?: boolean;
|
|
2654
|
-
}
|
|
2655
|
-
/** A filter to be used against FullText fields. All fields are combined with a logical ‘and.’ */
|
|
2656
|
-
export interface FullTextFilter {
|
|
2657
|
-
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
2658
|
-
distinctFrom?: string;
|
|
2659
|
-
/** Equal to the specified value. */
|
|
2660
|
-
equalTo?: string;
|
|
2661
|
-
/** Included in the specified list. */
|
|
2662
|
-
in?: string[];
|
|
2663
|
-
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
2664
|
-
isNull?: boolean;
|
|
2665
|
-
/** Performs a full text search on the field. */
|
|
2666
|
-
matches?: string;
|
|
2667
|
-
/** Equal to the specified value, treating null like an ordinary value. */
|
|
2668
|
-
notDistinctFrom?: string;
|
|
2669
|
-
/** Not equal to the specified value. */
|
|
2670
|
-
notEqualTo?: string;
|
|
2671
|
-
/** Not included in the specified list. */
|
|
2672
|
-
notIn?: string[];
|
|
2673
|
-
}
|
|
2674
2588
|
/** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */
|
|
2675
2589
|
export interface StringFilter {
|
|
2676
2590
|
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
@@ -2847,6 +2761,38 @@ export interface StringListFilter {
|
|
|
2847
2761
|
/** Overlaps the specified list of values. */
|
|
2848
2762
|
overlaps?: string[];
|
|
2849
2763
|
}
|
|
2764
|
+
/** A filter to be used against `RoleType` object types. All fields are combined with a logical ‘and.’ */
|
|
2765
|
+
export interface RoleTypeFilter {
|
|
2766
|
+
/** Checks for all expressions in this list. */
|
|
2767
|
+
and?: RoleTypeFilter[];
|
|
2768
|
+
/** Filter by the object’s `id` field. */
|
|
2769
|
+
id?: IntFilter;
|
|
2770
|
+
/** Filter by the object’s `name` field. */
|
|
2771
|
+
name?: StringFilter;
|
|
2772
|
+
/** Negates the expression. */
|
|
2773
|
+
not?: RoleTypeFilter;
|
|
2774
|
+
/** Checks for any expressions in this list. */
|
|
2775
|
+
or?: RoleTypeFilter[];
|
|
2776
|
+
}
|
|
2777
|
+
/** A filter to be used against FullText fields. All fields are combined with a logical ‘and.’ */
|
|
2778
|
+
export interface FullTextFilter {
|
|
2779
|
+
/** Not equal to the specified value, treating null like an ordinary value. */
|
|
2780
|
+
distinctFrom?: string;
|
|
2781
|
+
/** Equal to the specified value. */
|
|
2782
|
+
equalTo?: string;
|
|
2783
|
+
/** Included in the specified list. */
|
|
2784
|
+
in?: string[];
|
|
2785
|
+
/** Is null (if `true` is specified) or is not null (if `false` is specified). */
|
|
2786
|
+
isNull?: boolean;
|
|
2787
|
+
/** Performs a full text search on the field. */
|
|
2788
|
+
matches?: string;
|
|
2789
|
+
/** Equal to the specified value, treating null like an ordinary value. */
|
|
2790
|
+
notDistinctFrom?: string;
|
|
2791
|
+
/** Not equal to the specified value. */
|
|
2792
|
+
notEqualTo?: string;
|
|
2793
|
+
/** Not included in the specified list. */
|
|
2794
|
+
notIn?: string[];
|
|
2795
|
+
}
|
|
2850
2796
|
export interface CheckPasswordPayload {
|
|
2851
2797
|
clientMutationId?: string | null;
|
|
2852
2798
|
}
|
package/auth/orm/input-types.js
CHANGED
|
@@ -7,18 +7,13 @@ exports.connectionFieldsMap = {
|
|
|
7
7
|
principalEntities: 'PrincipalEntity',
|
|
8
8
|
principalScopeOverrides: 'PrincipalScopeOverride',
|
|
9
9
|
},
|
|
10
|
-
RoleType: {
|
|
11
|
-
usersByType: 'User',
|
|
12
|
-
},
|
|
13
10
|
User: {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
ownedPrincipalEntities: 'PrincipalEntity',
|
|
19
|
-
ownedPrincipals: 'Principal',
|
|
20
|
-
ownedWebauthnCredentials: 'WebauthnCredential',
|
|
21
|
-
principalEntitiesByEntityId: 'PrincipalEntity',
|
|
11
|
+
authAuditLog: 'AuditLogAuth',
|
|
12
|
+
cryptoAddresses: 'CryptoAddress',
|
|
13
|
+
emails: 'Email',
|
|
14
|
+
phoneNumbers: 'PhoneNumber',
|
|
22
15
|
principals: 'Principal',
|
|
16
|
+
scopedPrincipals: 'PrincipalEntity',
|
|
17
|
+
webauthnCredentials: 'WebauthnCredential',
|
|
23
18
|
},
|
|
24
19
|
};
|