dineway 0.1.9 → 0.1.12
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/README.md +63 -17
- package/dist/activity-events-B4wp7CrU.mjs +540 -0
- package/dist/allowed-origins-C1AKK9AT.mjs +68 -0
- package/dist/api/route-utils.d.mts +42 -0
- package/dist/api/route-utils.mjs +26 -0
- package/dist/api/schemas/index.d.mts +3 -0
- package/dist/api/schemas/index.mjs +6 -0
- package/dist/api/schemas/setup.d.mts +42 -0
- package/dist/api/schemas/setup.mjs +39 -0
- package/dist/api-BR7Y0GBo.mjs +2704 -0
- package/dist/api-tokens-CPjC3zf8.mjs +3 -0
- package/dist/api-tokens-D7UjLbdt.mjs +153 -0
- package/dist/{apply-iVSqz2qs.mjs → apply-Bm5QgdrE.mjs} +15 -689
- package/dist/astro/index.d.mts +11 -6
- package/dist/astro/index.mjs +86 -11
- package/dist/astro/middleware/auth.d.mts +11 -7
- package/dist/astro/middleware/auth.mjs +19 -104
- package/dist/astro/middleware/redirect.mjs +24 -14
- package/dist/astro/middleware/request-context.mjs +9 -6
- package/dist/astro/middleware/setup.mjs +1 -1
- package/dist/astro/middleware.mjs +88 -145
- package/dist/astro/routes/PluginRegistry.d.mts +14 -0
- package/dist/astro/routes/PluginRegistry.mjs +24 -0
- package/dist/astro/routes/api/admin/allowed-domains/_domain_.d.mts +14 -0
- package/dist/astro/routes/api/admin/allowed-domains/_domain_.mjs +65 -0
- package/dist/astro/routes/api/admin/allowed-domains/index.d.mts +14 -0
- package/dist/astro/routes/api/admin/allowed-domains/index.mjs +65 -0
- package/dist/astro/routes/api/admin/api-tokens/_id_.d.mts +10 -0
- package/dist/astro/routes/api/admin/api-tokens/_id_.mjs +33 -0
- package/dist/astro/routes/api/admin/api-tokens/index.d.mts +16 -0
- package/dist/astro/routes/api/admin/api-tokens/index.mjs +59 -0
- package/dist/astro/routes/api/admin/briefing.d.mts +7 -0
- package/dist/astro/routes/api/admin/briefing.mjs +71 -0
- package/dist/astro/routes/api/admin/bylines/_id_/index.d.mts +9 -0
- package/dist/astro/routes/api/admin/bylines/_id_/index.mjs +74 -0
- package/dist/astro/routes/api/admin/bylines/index.d.mts +8 -0
- package/dist/astro/routes/api/admin/bylines/index.mjs +61 -0
- package/dist/astro/routes/api/admin/comments/_id_/status.d.mts +7 -0
- package/dist/astro/routes/api/admin/comments/_id_/status.mjs +80 -0
- package/dist/astro/routes/api/admin/comments/_id_.d.mts +14 -0
- package/dist/astro/routes/api/admin/comments/_id_.mjs +46 -0
- package/dist/astro/routes/api/admin/comments/bulk.d.mts +7 -0
- package/dist/astro/routes/api/admin/comments/bulk.mjs +36 -0
- package/dist/astro/routes/api/admin/comments/counts.d.mts +7 -0
- package/dist/astro/routes/api/admin/comments/counts.mjs +24 -0
- package/dist/astro/routes/api/admin/comments/index.d.mts +10 -0
- package/dist/astro/routes/api/admin/comments/index.mjs +40 -0
- package/dist/astro/routes/api/admin/context/_id_/history.d.mts +7 -0
- package/dist/astro/routes/api/admin/context/_id_/history.mjs +46 -0
- package/dist/astro/routes/api/admin/context/_id_/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/context/_id_/index.mjs +46 -0
- package/dist/astro/routes/api/admin/context/_id_/review.d.mts +7 -0
- package/dist/astro/routes/api/admin/context/_id_/review.mjs +61 -0
- package/dist/astro/routes/api/admin/context/_id_/supersede.d.mts +7 -0
- package/dist/astro/routes/api/admin/context/_id_/supersede.mjs +64 -0
- package/dist/astro/routes/api/admin/context/diff.d.mts +7 -0
- package/dist/astro/routes/api/admin/context/diff.mjs +50 -0
- package/dist/astro/routes/api/admin/context/index.d.mts +8 -0
- package/dist/astro/routes/api/admin/context/index.mjs +72 -0
- package/dist/astro/routes/api/admin/context/stale.d.mts +7 -0
- package/dist/astro/routes/api/admin/context/stale.mjs +50 -0
- package/dist/astro/routes/api/admin/hitl-requests/_id_/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/hitl-requests/_id_/index.mjs +52 -0
- package/dist/astro/routes/api/admin/hitl-requests/_id_/resolve.d.mts +7 -0
- package/dist/astro/routes/api/admin/hitl-requests/_id_/resolve.mjs +68 -0
- package/dist/astro/routes/api/admin/hitl-requests/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/hitl-requests/index.mjs +56 -0
- package/dist/astro/routes/api/admin/hooks/exclusive/_hookName_.d.mts +7 -0
- package/dist/astro/routes/api/admin/hooks/exclusive/_hookName_.mjs +99 -0
- package/dist/astro/routes/api/admin/hooks/exclusive/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/hooks/exclusive/index.mjs +33 -0
- package/dist/astro/routes/api/admin/oauth-clients/_id_.d.mts +18 -0
- package/dist/astro/routes/api/admin/oauth-clients/_id_.mjs +79 -0
- package/dist/astro/routes/api/admin/oauth-clients/index.d.mts +14 -0
- package/dist/astro/routes/api/admin/oauth-clients/index.mjs +58 -0
- package/dist/astro/routes/api/admin/plugins/_id_/disable.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/_id_/disable.mjs +90 -0
- package/dist/astro/routes/api/admin/plugins/_id_/enable.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/_id_/enable.mjs +90 -0
- package/dist/astro/routes/api/admin/plugins/_id_/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/_id_/index.mjs +55 -0
- package/dist/astro/routes/api/admin/plugins/_id_/uninstall.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/_id_/uninstall.mjs +99 -0
- package/dist/astro/routes/api/admin/plugins/_id_/update.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/_id_/update.mjs +132 -0
- package/dist/astro/routes/api/admin/plugins/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/index.mjs +53 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/icon.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/icon.mjs +36 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/index.mjs +55 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/install.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/install.mjs +129 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/marketplace/index.mjs +62 -0
- package/dist/astro/routes/api/admin/plugins/updates.d.mts +7 -0
- package/dist/astro/routes/api/admin/plugins/updates.mjs +53 -0
- package/dist/astro/routes/api/admin/review-requests/_id_/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/review-requests/_id_/index.mjs +26 -0
- package/dist/astro/routes/api/admin/review-requests/_id_/resolve.d.mts +7 -0
- package/dist/astro/routes/api/admin/review-requests/_id_/resolve.mjs +98 -0
- package/dist/astro/routes/api/admin/review-requests/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/review-requests/index.mjs +31 -0
- package/dist/astro/routes/api/admin/themes/marketplace/_id_/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/themes/marketplace/_id_/index.mjs +55 -0
- package/dist/astro/routes/api/admin/themes/marketplace/_id_/thumbnail.d.mts +7 -0
- package/dist/astro/routes/api/admin/themes/marketplace/_id_/thumbnail.mjs +36 -0
- package/dist/astro/routes/api/admin/themes/marketplace/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/themes/marketplace/index.mjs +71 -0
- package/dist/astro/routes/api/admin/users/_id_/disable.d.mts +7 -0
- package/dist/astro/routes/api/admin/users/_id_/disable.mjs +38 -0
- package/dist/astro/routes/api/admin/users/_id_/enable.d.mts +7 -0
- package/dist/astro/routes/api/admin/users/_id_/enable.mjs +29 -0
- package/dist/astro/routes/api/admin/users/_id_/index.d.mts +8 -0
- package/dist/astro/routes/api/admin/users/_id_/index.mjs +104 -0
- package/dist/astro/routes/api/admin/users/_id_/send-recovery.d.mts +7 -0
- package/dist/astro/routes/api/admin/users/_id_/send-recovery.mjs +43 -0
- package/dist/astro/routes/api/admin/users/index.d.mts +7 -0
- package/dist/astro/routes/api/admin/users/index.mjs +54 -0
- package/dist/astro/routes/api/auth/dev-bypass.d.mts +8 -0
- package/dist/astro/routes/api/auth/dev-bypass.mjs +81 -0
- package/dist/astro/routes/api/auth/invite/accept.d.mts +7 -0
- package/dist/astro/routes/api/auth/invite/accept.mjs +31 -0
- package/dist/astro/routes/api/auth/invite/complete.d.mts +7 -0
- package/dist/astro/routes/api/auth/invite/complete.mjs +54 -0
- package/dist/astro/routes/api/auth/invite/index.d.mts +7 -0
- package/dist/astro/routes/api/auth/invite/index.mjs +51 -0
- package/dist/astro/routes/api/auth/invite/register-options.d.mts +7 -0
- package/dist/astro/routes/api/auth/invite/register-options.mjs +44 -0
- package/dist/astro/routes/api/auth/logout.d.mts +7 -0
- package/dist/astro/routes/api/auth/logout.mjs +24 -0
- package/dist/astro/routes/api/auth/magic-link/send.d.mts +7 -0
- package/dist/astro/routes/api/auth/magic-link/send.mjs +48 -0
- package/dist/astro/routes/api/auth/magic-link/verify.d.mts +7 -0
- package/dist/astro/routes/api/auth/magic-link/verify.mjs +32 -0
- package/dist/astro/routes/api/auth/me.d.mts +13 -0
- package/dist/astro/routes/api/auth/me.mjs +41 -0
- package/dist/astro/routes/api/auth/mode.d.mts +7 -0
- package/dist/astro/routes/api/auth/mode.mjs +28 -0
- package/dist/astro/routes/api/auth/oauth/_provider_/callback.d.mts +7 -0
- package/dist/astro/routes/api/auth/oauth/_provider_/callback.mjs +114 -0
- package/dist/astro/routes/api/auth/oauth/_provider_.d.mts +7 -0
- package/dist/astro/routes/api/auth/oauth/_provider_.mjs +58 -0
- package/dist/astro/routes/api/auth/passkey/_id_.d.mts +14 -0
- package/dist/astro/routes/api/auth/passkey/_id_.mjs +62 -0
- package/dist/astro/routes/api/auth/passkey/index.d.mts +7 -0
- package/dist/astro/routes/api/auth/passkey/index.mjs +25 -0
- package/dist/astro/routes/api/auth/passkey/options.d.mts +7 -0
- package/dist/astro/routes/api/auth/passkey/options.mjs +46 -0
- package/dist/astro/routes/api/auth/passkey/register/options.d.mts +7 -0
- package/dist/astro/routes/api/auth/passkey/register/options.mjs +44 -0
- package/dist/astro/routes/api/auth/passkey/register/verify.d.mts +7 -0
- package/dist/astro/routes/api/auth/passkey/register/verify.mjs +59 -0
- package/dist/astro/routes/api/auth/passkey/verify.d.mts +7 -0
- package/dist/astro/routes/api/auth/passkey/verify.mjs +47 -0
- package/dist/astro/routes/api/auth/signup/complete.d.mts +7 -0
- package/dist/astro/routes/api/auth/signup/complete.mjs +55 -0
- package/dist/astro/routes/api/auth/signup/request.d.mts +7 -0
- package/dist/astro/routes/api/auth/signup/request.mjs +44 -0
- package/dist/astro/routes/api/auth/signup/verify.d.mts +7 -0
- package/dist/astro/routes/api/auth/signup/verify.mjs +32 -0
- package/dist/astro/routes/api/comments/_collection_/_contentId_/index.d.mts +14 -0
- package/dist/astro/routes/api/comments/_collection_/_contentId_/index.mjs +193 -0
- package/dist/astro/routes/api/content/_collection_/_id_/compare.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/compare.mjs +17 -0
- package/dist/astro/routes/api/content/_collection_/_id_/discard-draft.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/discard-draft.mjs +36 -0
- package/dist/astro/routes/api/content/_collection_/_id_/duplicate.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/duplicate.mjs +39 -0
- package/dist/astro/routes/api/content/_collection_/_id_/permanent.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/permanent.mjs +31 -0
- package/dist/astro/routes/api/content/_collection_/_id_/preview-url.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/preview-url.mjs +78 -0
- package/dist/astro/routes/api/content/_collection_/_id_/publish.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/publish.mjs +93 -0
- package/dist/astro/routes/api/content/_collection_/_id_/restore.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/restore.mjs +36 -0
- package/dist/astro/routes/api/content/_collection_/_id_/revisions.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/revisions.mjs +19 -0
- package/dist/astro/routes/api/content/_collection_/_id_/schedule.d.mts +8 -0
- package/dist/astro/routes/api/content/_collection_/_id_/schedule.mjs +75 -0
- package/dist/astro/routes/api/content/_collection_/_id_/terms/_taxonomy_.d.mts +14 -0
- package/dist/astro/routes/api/content/_collection_/_id_/terms/_taxonomy_.mjs +85 -0
- package/dist/astro/routes/api/content/_collection_/_id_/translations.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/translations.mjs +40 -0
- package/dist/astro/routes/api/content/_collection_/_id_/unpublish.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/_id_/unpublish.mjs +36 -0
- package/dist/astro/routes/api/content/_collection_/_id_.d.mts +9 -0
- package/dist/astro/routes/api/content/_collection_/_id_.mjs +114 -0
- package/dist/astro/routes/api/content/_collection_/index.d.mts +8 -0
- package/dist/astro/routes/api/content/_collection_/index.mjs +74 -0
- package/dist/astro/routes/api/content/_collection_/trash.d.mts +7 -0
- package/dist/astro/routes/api/content/_collection_/trash.mjs +23 -0
- package/dist/astro/routes/api/dashboard.d.mts +7 -0
- package/dist/astro/routes/api/dashboard.mjs +26 -0
- package/dist/astro/routes/api/dev/emails.d.mts +8 -0
- package/dist/astro/routes/api/dev/emails.mjs +17 -0
- package/dist/astro/routes/api/health.d.mts +7 -0
- package/dist/astro/routes/api/health.mjs +34 -0
- package/dist/astro/routes/api/import/probe.d.mts +17 -0
- package/dist/astro/routes/api/import/probe.mjs +33 -0
- package/dist/astro/routes/api/import/wordpress/analyze.d.mts +87 -0
- package/dist/astro/routes/api/import/wordpress/analyze.mjs +305 -0
- package/dist/astro/routes/api/import/wordpress/execute.d.mts +37 -0
- package/dist/astro/routes/api/import/wordpress/execute.mjs +198 -0
- package/dist/astro/routes/api/import/wordpress/media.d.mts +35 -0
- package/dist/astro/routes/api/import/wordpress/media.mjs +222 -0
- package/dist/astro/routes/api/import/wordpress/prepare.d.mts +19 -0
- package/dist/astro/routes/api/import/wordpress/prepare.mjs +156 -0
- package/dist/astro/routes/api/import/wordpress/rewrite-urls.d.mts +21 -0
- package/dist/astro/routes/api/import/wordpress/rewrite-urls.mjs +290 -0
- package/dist/astro/routes/api/import/wordpress-plugin/analyze.d.mts +15 -0
- package/dist/astro/routes/api/import/wordpress-plugin/analyze.mjs +69 -0
- package/dist/astro/routes/api/import/wordpress-plugin/callback.d.mts +7 -0
- package/dist/astro/routes/api/import/wordpress-plugin/callback.mjs +28 -0
- package/dist/astro/routes/api/import/wordpress-plugin/execute.d.mts +19 -0
- package/dist/astro/routes/api/import/wordpress-plugin/execute.mjs +269 -0
- package/dist/astro/routes/api/manifest.d.mts +7 -0
- package/dist/astro/routes/api/manifest.mjs +50 -0
- package/dist/astro/routes/api/mcp.d.mts +15 -0
- package/dist/astro/routes/api/mcp.mjs +2701 -0
- package/dist/astro/routes/api/media/_id_/confirm.d.mts +10 -0
- package/dist/astro/routes/api/media/_id_/confirm.mjs +59 -0
- package/dist/astro/routes/api/media/_id_.d.mts +22 -0
- package/dist/astro/routes/api/media/_id_.mjs +81 -0
- package/dist/astro/routes/api/media/file/_...key_.d.mts +7 -0
- package/dist/astro/routes/api/media/file/_...key_.mjs +49 -0
- package/dist/astro/routes/api/media/providers/_providerId_/_itemId_.d.mts +14 -0
- package/dist/astro/routes/api/media/providers/_providerId_/_itemId_.mjs +49 -0
- package/dist/astro/routes/api/media/providers/_providerId_/index.d.mts +14 -0
- package/dist/astro/routes/api/media/providers/_providerId_/index.mjs +72 -0
- package/dist/astro/routes/api/media/providers/index.d.mts +10 -0
- package/dist/astro/routes/api/media/providers/index.mjs +18 -0
- package/dist/astro/routes/api/media/upload-url.d.mts +10 -0
- package/dist/astro/routes/api/media/upload-url.mjs +82 -0
- package/dist/astro/routes/api/media.d.mts +16 -0
- package/dist/astro/routes/api/media.mjs +137 -0
- package/dist/astro/routes/api/menus/_name_/items.d.mts +9 -0
- package/dist/astro/routes/api/menus/_name_/items.mjs +165 -0
- package/dist/astro/routes/api/menus/_name_/reorder.d.mts +7 -0
- package/dist/astro/routes/api/menus/_name_/reorder.mjs +78 -0
- package/dist/astro/routes/api/menus/_name_.d.mts +9 -0
- package/dist/astro/routes/api/menus/_name_.mjs +124 -0
- package/dist/astro/routes/api/menus/index.d.mts +8 -0
- package/dist/astro/routes/api/menus/index.mjs +85 -0
- package/dist/astro/routes/api/oauth/authorize.d.mts +8 -0
- package/dist/astro/routes/api/oauth/authorize.mjs +265 -0
- package/dist/astro/routes/api/oauth/device/authorize.d.mts +7 -0
- package/dist/astro/routes/api/oauth/device/authorize.mjs +30 -0
- package/dist/astro/routes/api/oauth/device/code.d.mts +7 -0
- package/dist/astro/routes/api/oauth/device/code.mjs +34 -0
- package/dist/astro/routes/api/oauth/device/token.d.mts +7 -0
- package/dist/astro/routes/api/oauth/device/token.mjs +45 -0
- package/dist/astro/routes/api/oauth/register.d.mts +8 -0
- package/dist/astro/routes/api/oauth/register.mjs +115 -0
- package/dist/astro/routes/api/oauth/token/refresh.d.mts +7 -0
- package/dist/astro/routes/api/oauth/token/refresh.mjs +28 -0
- package/dist/astro/routes/api/oauth/token/revoke.d.mts +7 -0
- package/dist/astro/routes/api/oauth/token/revoke.mjs +25 -0
- package/dist/astro/routes/api/oauth/token.d.mts +8 -0
- package/dist/astro/routes/api/oauth/token.mjs +138 -0
- package/dist/astro/routes/api/openapi.json.d.mts +7 -0
- package/dist/astro/routes/api/openapi.json.mjs +2638 -0
- package/dist/astro/routes/api/plugins/_pluginId_/_...path_.d.mts +11 -0
- package/dist/astro/routes/api/plugins/_pluginId_/_...path_.mjs +77 -0
- package/dist/astro/routes/api/redirects/404s/index.d.mts +9 -0
- package/dist/astro/routes/api/redirects/404s/index.mjs +62 -0
- package/dist/astro/routes/api/redirects/404s/summary.d.mts +7 -0
- package/dist/astro/routes/api/redirects/404s/summary.mjs +34 -0
- package/dist/astro/routes/api/redirects/_id_.d.mts +9 -0
- package/dist/astro/routes/api/redirects/_id_.mjs +153 -0
- package/dist/astro/routes/api/redirects/index.d.mts +8 -0
- package/dist/astro/routes/api/redirects/index.mjs +98 -0
- package/dist/astro/routes/api/revisions/_revisionId_/index.d.mts +7 -0
- package/dist/astro/routes/api/revisions/_revisionId_/index.mjs +16 -0
- package/dist/astro/routes/api/revisions/_revisionId_/restore.d.mts +7 -0
- package/dist/astro/routes/api/revisions/_revisionId_/restore.mjs +23 -0
- package/dist/astro/routes/api/schema/collections/_slug_/fields/_fieldSlug_.d.mts +9 -0
- package/dist/astro/routes/api/schema/collections/_slug_/fields/_fieldSlug_.mjs +99 -0
- package/dist/astro/routes/api/schema/collections/_slug_/fields/index.d.mts +8 -0
- package/dist/astro/routes/api/schema/collections/_slug_/fields/index.mjs +81 -0
- package/dist/astro/routes/api/schema/collections/_slug_/fields/reorder.d.mts +7 -0
- package/dist/astro/routes/api/schema/collections/_slug_/fields/reorder.mjs +68 -0
- package/dist/astro/routes/api/schema/collections/_slug_/index.d.mts +9 -0
- package/dist/astro/routes/api/schema/collections/_slug_/index.mjs +98 -0
- package/dist/astro/routes/api/schema/collections/index.d.mts +8 -0
- package/dist/astro/routes/api/schema/collections/index.mjs +78 -0
- package/dist/astro/routes/api/schema/index.d.mts +7 -0
- package/dist/astro/routes/api/schema/index.mjs +79 -0
- package/dist/astro/routes/api/schema/orphans/_slug_.d.mts +7 -0
- package/dist/astro/routes/api/schema/orphans/_slug_.mjs +59 -0
- package/dist/astro/routes/api/schema/orphans/index.d.mts +7 -0
- package/dist/astro/routes/api/schema/orphans/index.mjs +54 -0
- package/dist/astro/routes/api/search/enable.d.mts +15 -0
- package/dist/astro/routes/api/search/enable.mjs +55 -0
- package/dist/astro/routes/api/search/index.d.mts +16 -0
- package/dist/astro/routes/api/search/index.mjs +52 -0
- package/dist/astro/routes/api/search/rebuild.d.mts +13 -0
- package/dist/astro/routes/api/search/rebuild.mjs +48 -0
- package/dist/astro/routes/api/search/stats.d.mts +10 -0
- package/dist/astro/routes/api/search/stats.mjs +28 -0
- package/dist/astro/routes/api/search/suggest.d.mts +15 -0
- package/dist/astro/routes/api/search/suggest.mjs +43 -0
- package/dist/astro/routes/api/sections/_slug_.d.mts +9 -0
- package/dist/astro/routes/api/sections/_slug_.mjs +157 -0
- package/dist/astro/routes/api/sections/index.d.mts +8 -0
- package/dist/astro/routes/api/sections/index.mjs +100 -0
- package/dist/astro/routes/api/settings/email.d.mts +17 -0
- package/dist/astro/routes/api/settings/email.mjs +102 -0
- package/dist/astro/routes/api/settings.d.mts +20 -0
- package/dist/astro/routes/api/settings.mjs +102 -0
- package/dist/astro/routes/api/setup/admin-verify.d.mts +7 -0
- package/dist/astro/routes/api/setup/admin-verify.mjs +67 -0
- package/dist/astro/routes/api/setup/admin.d.mts +7 -0
- package/dist/astro/routes/api/setup/admin.mjs +68 -0
- package/dist/astro/routes/api/setup/dev-bypass.d.mts +8 -0
- package/dist/astro/routes/api/setup/dev-bypass.mjs +137 -0
- package/dist/astro/routes/api/setup/dev-reset.d.mts +7 -0
- package/dist/astro/routes/api/setup/dev-reset.mjs +22 -0
- package/dist/astro/routes/api/setup/index.d.mts +7 -0
- package/dist/astro/routes/api/setup/index.mjs +93 -0
- package/dist/astro/routes/api/setup/status.d.mts +7 -0
- package/dist/astro/routes/api/setup/status.mjs +57 -0
- package/dist/astro/routes/api/snapshot.d.mts +7 -0
- package/dist/astro/routes/api/snapshot.mjs +227 -0
- package/dist/astro/routes/api/taxonomies/_name_/terms/_slug_.d.mts +18 -0
- package/dist/astro/routes/api/taxonomies/_name_/terms/_slug_.mjs +190 -0
- package/dist/astro/routes/api/taxonomies/_name_/terms/index.d.mts +14 -0
- package/dist/astro/routes/api/taxonomies/_name_/terms/index.mjs +114 -0
- package/dist/astro/routes/api/taxonomies/index.d.mts +14 -0
- package/dist/astro/routes/api/taxonomies/index.mjs +104 -0
- package/dist/astro/routes/api/themes/preview.d.mts +7 -0
- package/dist/astro/routes/api/themes/preview.mjs +47 -0
- package/dist/astro/routes/api/typegen.d.mts +17 -0
- package/dist/astro/routes/api/typegen.mjs +75 -0
- package/dist/astro/routes/api/well-known/auth.d.mts +7 -0
- package/dist/astro/routes/api/well-known/auth.mjs +42 -0
- package/dist/astro/routes/api/well-known/oauth-authorization-server.d.mts +7 -0
- package/dist/astro/routes/api/well-known/oauth-authorization-server.mjs +33 -0
- package/dist/astro/routes/api/well-known/oauth-protected-resource.d.mts +7 -0
- package/dist/astro/routes/api/well-known/oauth-protected-resource.mjs +21 -0
- package/dist/astro/routes/api/widget-areas/_name_/reorder.d.mts +7 -0
- package/dist/astro/routes/api/widget-areas/_name_/reorder.mjs +89 -0
- package/dist/astro/routes/api/widget-areas/_name_/widgets/_id_.d.mts +8 -0
- package/dist/astro/routes/api/widget-areas/_name_/widgets/_id_.mjs +159 -0
- package/dist/astro/routes/api/widget-areas/_name_/widgets.d.mts +7 -0
- package/dist/astro/routes/api/widget-areas/_name_/widgets.mjs +105 -0
- package/dist/astro/routes/api/widget-areas/_name_.d.mts +8 -0
- package/dist/astro/routes/api/widget-areas/_name_.mjs +100 -0
- package/dist/astro/routes/api/widget-areas/index.d.mts +8 -0
- package/dist/astro/routes/api/widget-areas/index.mjs +109 -0
- package/dist/astro/routes/api/widget-components.d.mts +7 -0
- package/dist/astro/routes/api/widget-components.mjs +15 -0
- package/dist/astro/routes/robots.txt.d.mts +7 -0
- package/dist/astro/routes/robots.txt.mjs +60 -0
- package/dist/astro/routes/sitemap-_collection_.xml.d.mts +7 -0
- package/dist/astro/routes/sitemap-_collection_.xml.mjs +70 -0
- package/dist/astro/routes/sitemap.xml.d.mts +7 -0
- package/dist/astro/routes/sitemap.xml.mjs +63 -0
- package/dist/astro/types.d.mts +42 -9
- package/dist/auth/providers/github-admin.d.mts +9 -0
- package/dist/auth/providers/github-admin.mjs +27 -0
- package/dist/auth/providers/github.d.mts +12 -0
- package/dist/auth/providers/github.mjs +17 -0
- package/dist/auth/providers/google-admin.d.mts +9 -0
- package/dist/auth/providers/google-admin.mjs +43 -0
- package/dist/auth/providers/google.d.mts +12 -0
- package/dist/auth/providers/google.mjs +17 -0
- package/dist/auth-control-guard-DOZ3UCsP.mjs +13 -0
- package/dist/authorize-BAdbMCwC.mjs +36 -0
- package/dist/briefing-MVYe_Uyf.mjs +1294 -0
- package/dist/briefing-rty4O-wa.mjs +29 -0
- package/dist/{byline-OhH2dlRu.mjs → byline-naZxOPSa.mjs} +3 -3
- package/dist/{bylines-BGpD9_hy.mjs → bylines-C4LIBOOO.mjs} +20 -53
- package/dist/bylines-eVVCuOe4.d.mts +2023 -0
- package/dist/{cache-BdSY-gQN.mjs → cache-DEbQ13c9.mjs} +21 -11
- package/dist/challenge-store-DDTbisbf.mjs +48 -0
- package/dist/cli/index.mjs +142 -22
- package/dist/client/external-auth-headers.d.mts +1 -1
- package/dist/client/index.d.mts +1 -1
- package/dist/client/index.mjs +3 -3
- package/dist/comment-DFO-gWDH.mjs +246 -0
- package/dist/comments--BsZ9pqA.mjs +186 -0
- package/dist/components-BPknylYg.mjs +107 -0
- package/dist/{content-DWi4d0rT.mjs → content-CyLkb-qH.mjs} +33 -44
- package/dist/context-CNIkMzot.mjs +849 -0
- package/dist/context-DNfcm853.mjs +184 -0
- package/dist/context-route-helpers-MurhoxWF.mjs +45 -0
- package/dist/context-types-C-LwdAxx.mjs +23 -0
- package/dist/cron-CKxvBrRT.mjs +263 -0
- package/dist/dashboard-DqnYU8EU.mjs +120 -0
- package/dist/db/index.d.mts +3 -3
- package/dist/db/libsql.d.mts +1 -1
- package/dist/db/libsql.mjs +3 -3
- package/dist/db/postgres.d.mts +1 -1
- package/dist/db/sqlite.d.mts +1 -1
- package/dist/db/sqlite.mjs +1 -2
- package/dist/device-flow-BGEH5jfn.mjs +487 -0
- package/dist/email-console-CuefUXfX.mjs +36 -0
- package/dist/entity-aliases-C0v-yNET.mjs +51 -0
- package/dist/error-BMUPwxgx.mjs +435 -0
- package/dist/escape-BRVaw1Ai.mjs +8 -0
- package/dist/experimental-workflows-C9X7yblQ.mjs +38 -0
- package/dist/fts-manager-B1pTNEG_.mjs +297 -0
- package/dist/hash-CDX7M0ze.mjs +32 -0
- package/dist/hitl-requests-ChT32Ilo.mjs +118 -0
- package/dist/hitl-route-helpers-CSit54Ru.mjs +96 -0
- package/dist/import-BHRLhXAn.mjs +1323 -0
- package/dist/import-CNcKWTbp.mjs +243 -0
- package/dist/index-CYfhYgXd.d.mts +227 -0
- package/dist/index-EUAWaIxW.d.mts +835 -0
- package/dist/index.d.mts +17 -11
- package/dist/index.mjs +63 -22
- package/dist/jsonld-D2gUY4kA.d.mts +141 -0
- package/dist/{loader-sMG4TZ-u.mjs → loader-PZnPxFLc.mjs} +42 -5
- package/dist/{manifest-schema-D1MSVnoI.mjs → manifest-schema-CgFJAp0H.mjs} +22 -10
- package/dist/media/index.d.mts +2 -1
- package/dist/media/index.mjs +2 -1
- package/dist/media/local-runtime.d.mts +12 -7
- package/dist/media/local-runtime.mjs +3 -3
- package/dist/{media-DMTr80Gv.mjs → media-_7Fxdu45.mjs} +1 -1
- package/dist/menus-DS3_5nWY.mjs +312 -0
- package/dist/menus-DYW_UHjv.mjs +256 -0
- package/dist/normalize-C49G_o1k.mjs +126 -0
- package/dist/oauth-authorization-DxGjiWKL.mjs +283 -0
- package/dist/oauth-clients-DxO_NO7k.mjs +298 -0
- package/dist/oauth-state-store-C5UFhzwD.mjs +48 -0
- package/dist/oauth-user-lookup-Bi0ek9eM.mjs +25 -0
- package/dist/options-z8VVg1Ll.mjs +114 -0
- package/dist/page/index.d.mts +2 -139
- package/dist/page/index.mjs +1 -427
- package/dist/parse-C9106ehs.mjs +88 -0
- package/dist/passkey-config-BRSZx4pW.mjs +42 -0
- package/dist/{patterns-CrCYkMBb.mjs → patterns-K0DLqWir.mjs} +53 -1
- package/dist/placeholder-Bh1dfUOd.d.mts +40 -0
- package/dist/{placeholder-Cp8g5Emj.mjs → placeholder-C2P5fKa4.mjs} +1 -126
- package/dist/plugins/adapt-sandbox-entry.d.mts +10 -5
- package/dist/plugins/adapt-sandbox-entry.mjs +4 -4
- package/dist/plugins-D7-ILNib.mjs +3249 -0
- package/dist/preview-DvYRU-Oy.mjs +788 -0
- package/dist/provider-loader-BiQ6lNmf.d.mts +20 -0
- package/dist/provider-loader-C21b9OpH.mjs +36 -0
- package/dist/public-url-Cun8N3NU.mjs +71 -0
- package/dist/{query-kDmwCsHh.mjs → query-B9BO5goQ.mjs} +93 -19
- package/dist/query-CsbOywSY.mjs +35 -0
- package/dist/rate-limit-DmVTHI5v.mjs +112 -0
- package/dist/{redirect-DnEWAkVg.mjs → redirect-CGl64yOX.mjs} +9 -5
- package/dist/redirect-COZy-3iY.mjs +16 -0
- package/dist/redirects-Cgi_cZfN.mjs +499 -0
- package/dist/redirects-lrlmYXVE.mjs +1023 -0
- package/dist/{registry-C0zjeB9P.mjs → registry-C-_hxLqa.mjs} +26 -294
- package/dist/request-meta-DixlNKKa.mjs +130 -0
- package/dist/review-requests-C2DIHwlJ.mjs +148 -0
- package/dist/review-requests-DIyjw-K_.mjs +79 -0
- package/dist/{runner-CFI6B6J2.d.mts → runner-BU6Lo1ZS.d.mts} +1 -1
- package/dist/{index-yvc6E_17.d.mts → runtime-Db4LbNVZ.d.mts} +1188 -2484
- package/dist/runtime.d.mts +11 -24
- package/dist/runtime.mjs +4 -38
- package/dist/schema-BECjUhP8.mjs +8 -0
- package/dist/search-DqTHQqtV.mjs +337 -0
- package/dist/secrets-CkoJ9zN0.mjs +160 -0
- package/dist/sections-B61OxnfB.mjs +338 -0
- package/dist/seed/index.d.mts +2 -2
- package/dist/seed/index.mjs +18 -13
- package/dist/seo/index.d.mts +1 -1
- package/dist/seo-C007Luwn.mjs +85 -0
- package/dist/seo-CUQctrog.mjs +129 -0
- package/dist/seo-contributions-B1fWCnqY.mjs +429 -0
- package/dist/service-CyOsm0R6.mjs +194 -0
- package/dist/settings-DGtLLSaz.mjs +237 -0
- package/dist/settings-Dzgswvg4.mjs +50 -0
- package/dist/setup-complete-ChilE-da.mjs +21 -0
- package/dist/setup-nonce-BpmLXAuu.mjs +17 -0
- package/dist/sidecar-client-B1C6Cf80.mjs +66 -0
- package/dist/site-activity-B8FjLIVh.mjs +104 -0
- package/dist/site-context-WBxoD99D.mjs +4122 -0
- package/dist/site-url-BP7k7OCe.mjs +12 -0
- package/dist/slugify-PDTDtMXp.mjs +30 -0
- package/dist/ssrf-DDwRxF6B.mjs +248 -0
- package/dist/storage/local.d.mts +1 -1
- package/dist/storage/local.mjs +1 -1
- package/dist/storage/s3.d.mts +1 -1
- package/dist/storage/s3.mjs +2 -2
- package/dist/{taxonomies-1s5PaS_8.mjs → taxonomies-D2aZGuns.mjs} +11 -7
- package/dist/taxonomies-z6Lz91BC.mjs +355 -0
- package/dist/taxonomy-D5cbhc8u.mjs +165 -0
- package/dist/{tokens-CJz9ubV6.mjs → tokens-BOJw-D9F.mjs} +1 -1
- package/dist/{transport-DB5eDN4x.mjs → transport-D3i4yWRE.mjs} +5 -4
- package/dist/trusted-proxy-BbaZfkT9.mjs +30 -0
- package/dist/types-0Vr68fc2.d.mts +344 -0
- package/dist/types-BFmjniC2.d.mts +165 -0
- package/dist/{types-BawVha09.mjs → types-Bs6lTBBW.mjs} +1 -1
- package/dist/{types-BuMDPy5C.d.mts → types-C0mmVRJN.d.mts} +6 -0
- package/dist/{placeholder--wOi4TbO.d.mts → types-OPs5Q_sX.d.mts} +1 -38
- package/dist/{types-Cj0KMIZV.d.mts → types-Q616b2Hn.d.mts} +54 -16
- package/dist/ui/client-runtime.d.mts +12 -0
- package/dist/ui/client-runtime.mjs +32 -0
- package/dist/ui/server-runtime.d.mts +33 -0
- package/dist/ui/server-runtime.mjs +80 -0
- package/dist/url-DNjT2abR.mjs +49 -0
- package/dist/user-CcXq-zoL.mjs +154 -0
- package/dist/utils-C0ONdBul.mjs +285 -0
- package/dist/{validate-IPf8n4Fj.d.mts → validate-BwmQEbu8.d.mts} +3 -3
- package/dist/{validate-BZ5wnLLp.mjs → validate-C7TzfamJ.mjs} +1 -1
- package/dist/version-D3vDb22n.mjs +6 -0
- package/dist/widgets-B7DRpZvy.mjs +104 -0
- package/dist/wordpress-slugs-CnporCYH.mjs +14 -0
- package/dist/zod-generator-DBVP8D0P.mjs +132 -0
- package/locals.d.ts +1 -6
- package/package.json +81 -11
- package/src/components/Button.astro +1 -1
- package/src/components/CommentForm.astro +1 -1
- package/src/components/Comments.astro +1 -3
- package/src/components/DinewayBodyEnd.astro +5 -3
- package/src/components/DinewayBodyStart.astro +5 -3
- package/src/components/DinewayHead.astro +15 -9
- package/src/components/DinewayImage.astro +12 -8
- package/src/components/DinewayMedia.astro +15 -6
- package/src/components/Embed.astro +1 -2
- package/src/components/File.astro +1 -1
- package/src/components/Gallery.astro +5 -3
- package/src/components/HtmlBlock.astro +1 -1
- package/src/components/Image.astro +9 -3
- package/src/components/InlinePortableTextEditor.tsx +69 -20
- package/src/components/PortableText.astro +1 -1
- package/src/components/WidgetArea.astro +1 -1
- package/src/components/WidgetRenderer.astro +1 -3
- package/src/components/marks/Link.astro +1 -1
- package/src/components/widgets/Archives.astro +1 -1
- package/src/components/widgets/Categories.astro +1 -1
- package/src/components/widgets/RecentPosts.astro +1 -1
- package/src/components/widgets/Tags.astro +1 -1
- package/dist/error-BmL6QipT.mjs +0 -30
- package/dist/search-DxopAWxs.mjs +0 -11200
- package/dist/version-BPz1imu2.mjs +0 -6
- package/src/astro/routes/PluginRegistry.tsx +0 -21
- package/src/astro/routes/api/admin/allowed-domains/[domain].ts +0 -112
- package/src/astro/routes/api/admin/allowed-domains/index.ts +0 -108
- package/src/astro/routes/api/admin/api-tokens/[id].ts +0 -44
- package/src/astro/routes/api/admin/api-tokens/index.ts +0 -90
- package/src/astro/routes/api/admin/briefing.ts +0 -76
- package/src/astro/routes/api/admin/bylines/[id]/index.ts +0 -90
- package/src/astro/routes/api/admin/bylines/index.ts +0 -74
- package/src/astro/routes/api/admin/comments/[id]/status.ts +0 -120
- package/src/astro/routes/api/admin/comments/[id].ts +0 -64
- package/src/astro/routes/api/admin/comments/bulk.ts +0 -42
- package/src/astro/routes/api/admin/comments/counts.ts +0 -30
- package/src/astro/routes/api/admin/comments/index.ts +0 -46
- package/src/astro/routes/api/admin/context/[id]/history.ts +0 -35
- package/src/astro/routes/api/admin/context/[id]/index.ts +0 -35
- package/src/astro/routes/api/admin/context/[id]/review.ts +0 -57
- package/src/astro/routes/api/admin/context/[id]/supersede.ts +0 -58
- package/src/astro/routes/api/admin/context/diff.ts +0 -35
- package/src/astro/routes/api/admin/context/index.ts +0 -69
- package/src/astro/routes/api/admin/context/stale.ts +0 -35
- package/src/astro/routes/api/admin/hitl-requests/[id]/index.ts +0 -38
- package/src/astro/routes/api/admin/hitl-requests/[id]/resolve.ts +0 -54
- package/src/astro/routes/api/admin/hitl-requests/index.ts +0 -38
- package/src/astro/routes/api/admin/hooks/exclusive/[hookName].ts +0 -132
- package/src/astro/routes/api/admin/hooks/exclusive/index.ts +0 -51
- package/src/astro/routes/api/admin/oauth-clients/[id].ts +0 -137
- package/src/astro/routes/api/admin/oauth-clients/index.ts +0 -95
- package/src/astro/routes/api/admin/plugins/[id]/disable.ts +0 -91
- package/src/astro/routes/api/admin/plugins/[id]/enable.ts +0 -91
- package/src/astro/routes/api/admin/plugins/[id]/index.ts +0 -38
- package/src/astro/routes/api/admin/plugins/[id]/uninstall.ts +0 -98
- package/src/astro/routes/api/admin/plugins/[id]/update.ts +0 -154
- package/src/astro/routes/api/admin/plugins/index.ts +0 -32
- package/src/astro/routes/api/admin/plugins/marketplace/[id]/icon.ts +0 -62
- package/src/astro/routes/api/admin/plugins/marketplace/[id]/index.ts +0 -33
- package/src/astro/routes/api/admin/plugins/marketplace/[id]/install.ts +0 -135
- package/src/astro/routes/api/admin/plugins/marketplace/index.ts +0 -38
- package/src/astro/routes/api/admin/plugins/updates.ts +0 -28
- package/src/astro/routes/api/admin/review-requests/[id]/index.ts +0 -35
- package/src/astro/routes/api/admin/review-requests/[id]/resolve.ts +0 -52
- package/src/astro/routes/api/admin/review-requests/index.ts +0 -35
- package/src/astro/routes/api/admin/themes/marketplace/[id]/index.ts +0 -33
- package/src/astro/routes/api/admin/themes/marketplace/[id]/thumbnail.ts +0 -62
- package/src/astro/routes/api/admin/themes/marketplace/index.ts +0 -45
- package/src/astro/routes/api/admin/users/[id]/disable.ts +0 -72
- package/src/astro/routes/api/admin/users/[id]/enable.ts +0 -48
- package/src/astro/routes/api/admin/users/[id]/index.ts +0 -166
- package/src/astro/routes/api/admin/users/[id]/send-recovery.ts +0 -72
- package/src/astro/routes/api/admin/users/index.ts +0 -66
- package/src/astro/routes/api/auth/dev-bypass.ts +0 -139
- package/src/astro/routes/api/auth/invite/accept.ts +0 -52
- package/src/astro/routes/api/auth/invite/complete.ts +0 -86
- package/src/astro/routes/api/auth/invite/index.ts +0 -99
- package/src/astro/routes/api/auth/invite/register-options.ts +0 -73
- package/src/astro/routes/api/auth/logout.ts +0 -40
- package/src/astro/routes/api/auth/magic-link/send.ts +0 -90
- package/src/astro/routes/api/auth/magic-link/verify.ts +0 -71
- package/src/astro/routes/api/auth/me.ts +0 -60
- package/src/astro/routes/api/auth/oauth/[provider]/callback.ts +0 -221
- package/src/astro/routes/api/auth/oauth/[provider].ts +0 -120
- package/src/astro/routes/api/auth/passkey/[id].ts +0 -124
- package/src/astro/routes/api/auth/passkey/index.ts +0 -54
- package/src/astro/routes/api/auth/passkey/options.ts +0 -85
- package/src/astro/routes/api/auth/passkey/register/options.ts +0 -88
- package/src/astro/routes/api/auth/passkey/register/verify.ts +0 -119
- package/src/astro/routes/api/auth/passkey/verify.ts +0 -72
- package/src/astro/routes/api/auth/signup/complete.ts +0 -87
- package/src/astro/routes/api/auth/signup/request.ts +0 -89
- package/src/astro/routes/api/auth/signup/verify.ts +0 -53
- package/src/astro/routes/api/comments/[collection]/[contentId]/index.ts +0 -310
- package/src/astro/routes/api/content/[collection]/[id]/compare.ts +0 -28
- package/src/astro/routes/api/content/[collection]/[id]/discard-draft.ts +0 -68
- package/src/astro/routes/api/content/[collection]/[id]/duplicate.ts +0 -77
- package/src/astro/routes/api/content/[collection]/[id]/permanent.ts +0 -42
- package/src/astro/routes/api/content/[collection]/[id]/preview-url.ts +0 -107
- package/src/astro/routes/api/content/[collection]/[id]/publish.ts +0 -100
- package/src/astro/routes/api/content/[collection]/[id]/restore.ts +0 -64
- package/src/astro/routes/api/content/[collection]/[id]/revisions.ts +0 -31
- package/src/astro/routes/api/content/[collection]/[id]/schedule.ts +0 -129
- package/src/astro/routes/api/content/[collection]/[id]/terms/[taxonomy].ts +0 -143
- package/src/astro/routes/api/content/[collection]/[id]/translations.ts +0 -50
- package/src/astro/routes/api/content/[collection]/[id]/unpublish.ts +0 -69
- package/src/astro/routes/api/content/[collection]/[id].ts +0 -173
- package/src/astro/routes/api/content/[collection]/index.ts +0 -103
- package/src/astro/routes/api/content/[collection]/trash.ts +0 -33
- package/src/astro/routes/api/dashboard.ts +0 -32
- package/src/astro/routes/api/dev/emails.ts +0 -36
- package/src/astro/routes/api/health.ts +0 -54
- package/src/astro/routes/api/import/probe.ts +0 -47
- package/src/astro/routes/api/import/wordpress/analyze.ts +0 -523
- package/src/astro/routes/api/import/wordpress/execute.ts +0 -330
- package/src/astro/routes/api/import/wordpress/media.ts +0 -338
- package/src/astro/routes/api/import/wordpress/prepare.ts +0 -212
- package/src/astro/routes/api/import/wordpress/rewrite-urls.ts +0 -425
- package/src/astro/routes/api/import/wordpress-plugin/analyze.ts +0 -111
- package/src/astro/routes/api/import/wordpress-plugin/callback.ts +0 -58
- package/src/astro/routes/api/import/wordpress-plugin/execute.ts +0 -399
- package/src/astro/routes/api/manifest.ts +0 -75
- package/src/astro/routes/api/mcp.ts +0 -125
- package/src/astro/routes/api/media/[id]/confirm.ts +0 -93
- package/src/astro/routes/api/media/[id].ts +0 -145
- package/src/astro/routes/api/media/file/[...key].ts +0 -79
- package/src/astro/routes/api/media/providers/[providerId]/[itemId].ts +0 -91
- package/src/astro/routes/api/media/providers/[providerId]/index.ts +0 -111
- package/src/astro/routes/api/media/providers/index.ts +0 -30
- package/src/astro/routes/api/media/upload-url.ts +0 -146
- package/src/astro/routes/api/media.ts +0 -204
- package/src/astro/routes/api/menus/[name]/items.ts +0 -206
- package/src/astro/routes/api/menus/[name]/reorder.ts +0 -79
- package/src/astro/routes/api/menus/[name].ts +0 -145
- package/src/astro/routes/api/menus/index.ts +0 -91
- package/src/astro/routes/api/oauth/authorize.ts +0 -430
- package/src/astro/routes/api/oauth/device/authorize.ts +0 -45
- package/src/astro/routes/api/oauth/device/code.ts +0 -56
- package/src/astro/routes/api/oauth/device/token.ts +0 -70
- package/src/astro/routes/api/oauth/register.ts +0 -182
- package/src/astro/routes/api/oauth/token/refresh.ts +0 -38
- package/src/astro/routes/api/oauth/token/revoke.ts +0 -38
- package/src/astro/routes/api/oauth/token.ts +0 -195
- package/src/astro/routes/api/openapi.json.ts +0 -33
- package/src/astro/routes/api/plugins/[pluginId]/[...path].ts +0 -109
- package/src/astro/routes/api/redirects/404s/index.ts +0 -72
- package/src/astro/routes/api/redirects/404s/summary.ts +0 -33
- package/src/astro/routes/api/redirects/[id].ts +0 -183
- package/src/astro/routes/api/redirects/index.ts +0 -100
- package/src/astro/routes/api/revisions/[revisionId]/index.ts +0 -29
- package/src/astro/routes/api/revisions/[revisionId]/restore.ts +0 -62
- package/src/astro/routes/api/schema/collections/[slug]/fields/[fieldSlug].ts +0 -104
- package/src/astro/routes/api/schema/collections/[slug]/fields/index.ts +0 -67
- package/src/astro/routes/api/schema/collections/[slug]/fields/reorder.ts +0 -45
- package/src/astro/routes/api/schema/collections/[slug]/index.ts +0 -107
- package/src/astro/routes/api/schema/collections/index.ts +0 -61
- package/src/astro/routes/api/schema/index.ts +0 -109
- package/src/astro/routes/api/schema/orphans/[slug].ts +0 -36
- package/src/astro/routes/api/schema/orphans/index.ts +0 -26
- package/src/astro/routes/api/search/enable.ts +0 -64
- package/src/astro/routes/api/search/index.ts +0 -52
- package/src/astro/routes/api/search/rebuild.ts +0 -72
- package/src/astro/routes/api/search/stats.ts +0 -35
- package/src/astro/routes/api/search/suggest.ts +0 -50
- package/src/astro/routes/api/sections/[slug].ts +0 -203
- package/src/astro/routes/api/sections/index.ts +0 -107
- package/src/astro/routes/api/settings/email.ts +0 -150
- package/src/astro/routes/api/settings.ts +0 -116
- package/src/astro/routes/api/setup/admin-verify.ts +0 -122
- package/src/astro/routes/api/setup/admin.ts +0 -104
- package/src/astro/routes/api/setup/dev-bypass.ts +0 -200
- package/src/astro/routes/api/setup/dev-reset.ts +0 -40
- package/src/astro/routes/api/setup/index.ts +0 -128
- package/src/astro/routes/api/setup/status.ts +0 -122
- package/src/astro/routes/api/snapshot.ts +0 -76
- package/src/astro/routes/api/taxonomies/[name]/terms/[slug].ts +0 -232
- package/src/astro/routes/api/taxonomies/[name]/terms/index.ts +0 -131
- package/src/astro/routes/api/taxonomies/index.ts +0 -114
- package/src/astro/routes/api/themes/preview.ts +0 -78
- package/src/astro/routes/api/typegen.ts +0 -114
- package/src/astro/routes/api/well-known/auth.ts +0 -71
- package/src/astro/routes/api/well-known/oauth-authorization-server.ts +0 -48
- package/src/astro/routes/api/well-known/oauth-protected-resource.ts +0 -39
- package/src/astro/routes/api/widget-areas/[name]/reorder.ts +0 -114
- package/src/astro/routes/api/widget-areas/[name]/widgets/[id].ts +0 -213
- package/src/astro/routes/api/widget-areas/[name]/widgets.ts +0 -126
- package/src/astro/routes/api/widget-areas/[name].ts +0 -135
- package/src/astro/routes/api/widget-areas/index.ts +0 -149
- package/src/astro/routes/api/widget-components.ts +0 -22
- package/src/astro/routes/robots.txt.ts +0 -81
- package/src/astro/routes/sitemap-[collection].xml.ts +0 -104
- package/src/astro/routes/sitemap.xml.ts +0 -92
- /package/dist/{adapters-C2ypTrZZ.d.mts → adapters-DuLQZhRY.d.mts} +0 -0
- /package/{src → dist}/astro/routes/admin.astro +0 -0
- /package/dist/{base64-F8-DUraK.mjs → base64-Cz-aU0X1.mjs} +0 -0
- /package/dist/{chunks--4F8ddV4.mjs → chunks-D_jVet6z.mjs} +0 -0
- /package/dist/{config-BXwuX8Bx.mjs → config-CAMFxGaV.mjs} +0 -0
- /package/dist/{db-errors-CEqD7qH9.mjs → db-errors-DyZkswzF.mjs} +0 -0
- /package/dist/{default-VjJyuuG9.mjs → default-D4ngTpW8.mjs} +0 -0
- /package/dist/{load-Coc9HpHH.mjs → load-B2XtDw__.mjs} +0 -0
- /package/dist/{mode-47goXBBK.mjs → mode-DUhxwUhv.mjs} +0 -0
- /package/dist/{request-cache-Dk5qPSOx.mjs → request-cache-DHMRr2Lf.mjs} +0 -0
- /package/dist/{transaction-Cn2rjY78.mjs → transaction-x2tJQ-A1.mjs} +0 -0
- /package/dist/{transport-Wge_IzKl.d.mts → transport-BXe1AM79.d.mts} +0 -0
- /package/dist/{types-CWbdtiux.d.mts → types-B7kpsMJ3.d.mts} +0 -0
- /package/dist/{types-BzcUjoqg.d.mts → types-DJlpx5Ay.d.mts} +0 -0
- /package/dist/{types-COeOq9nK.mjs → types-DL7Y8D_t.mjs} +0 -0
- /package/dist/{types-DOrVigru.d.mts → types-DZPw8Rru.d.mts} +0 -0
- /package/dist/{types-griIBQOQ.mjs → types-fAInWQDO.mjs} +0 -0
|
@@ -0,0 +1,2023 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/api/schemas/common.d.ts
|
|
4
|
+
/** Valid role level values */
|
|
5
|
+
declare const VALID_ROLE_LEVELS: Set<number>;
|
|
6
|
+
/** Role level — coerces string/number to valid RoleLevel (10|20|30|40|50) */
|
|
7
|
+
declare const roleLevel: z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>;
|
|
8
|
+
/** Pagination query params — cursor-based */
|
|
9
|
+
declare const cursorPaginationQuery: z.ZodObject<{
|
|
10
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
11
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
/** Pagination query params — offset-based */
|
|
14
|
+
declare const offsetPaginationQuery: z.ZodObject<{
|
|
15
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
16
|
+
offset: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
17
|
+
}, z.core.$strip>;
|
|
18
|
+
/** Slug pattern: lowercase letters, digits, underscores; starts with letter */
|
|
19
|
+
declare const slugPattern: RegExp;
|
|
20
|
+
/** Validates that a URL string uses http or https scheme. Rejects javascript:/data: URI XSS vectors. */
|
|
21
|
+
declare const httpUrl: z.ZodString;
|
|
22
|
+
/** BCP 47 locale code — language with optional script/region subtags (e.g. en, en-US, pt-BR, es-419, zh-Hant) */
|
|
23
|
+
declare const localeCode: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
24
|
+
/** Standard API error response */
|
|
25
|
+
declare const apiErrorSchema: z.ZodObject<{
|
|
26
|
+
error: z.ZodObject<{
|
|
27
|
+
code: z.ZodString;
|
|
28
|
+
message: z.ZodString;
|
|
29
|
+
}, z.core.$strip>;
|
|
30
|
+
}, z.core.$strip>;
|
|
31
|
+
/** Wrap a data schema in the standard success envelope: { data: T } */
|
|
32
|
+
declare function successEnvelope<T extends z.ZodType>(dataSchema: T): z.ZodObject<{
|
|
33
|
+
data: T;
|
|
34
|
+
}, z.core.$strip>;
|
|
35
|
+
/** Standard delete response */
|
|
36
|
+
declare const deleteResponseSchema: z.ZodObject<{
|
|
37
|
+
deleted: z.ZodLiteral<true>;
|
|
38
|
+
}, z.core.$strip>;
|
|
39
|
+
/** Standard count response */
|
|
40
|
+
declare const countResponseSchema: z.ZodObject<{
|
|
41
|
+
count: z.ZodNumber;
|
|
42
|
+
}, z.core.$strip>;
|
|
43
|
+
//#endregion
|
|
44
|
+
//#region src/api/schemas/content.d.ts
|
|
45
|
+
/** SEO input — per-content meta fields */
|
|
46
|
+
declare const contentSeoInput: z.ZodObject<{
|
|
47
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
49
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
50
|
+
canonical: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51
|
+
noIndex: z.ZodOptional<z.ZodBoolean>;
|
|
52
|
+
}, z.core.$strip>;
|
|
53
|
+
declare const contentListQuery: z.ZodObject<{
|
|
54
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
55
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
56
|
+
status: z.ZodOptional<z.ZodString>;
|
|
57
|
+
orderBy: z.ZodOptional<z.ZodString>;
|
|
58
|
+
order: z.ZodOptional<z.ZodEnum<{
|
|
59
|
+
asc: "asc";
|
|
60
|
+
desc: "desc";
|
|
61
|
+
}>>;
|
|
62
|
+
locale: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
63
|
+
}, z.core.$strip>;
|
|
64
|
+
declare const contentCreateBody: z.ZodObject<{
|
|
65
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
66
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
68
|
+
draft: "draft";
|
|
69
|
+
}>>;
|
|
70
|
+
bylines: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
71
|
+
bylineId: z.ZodString;
|
|
72
|
+
roleLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
73
|
+
}, z.core.$strip>>>;
|
|
74
|
+
locale: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
75
|
+
translationOf: z.ZodOptional<z.ZodString>;
|
|
76
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
77
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
78
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
79
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
80
|
+
canonical: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
81
|
+
noIndex: z.ZodOptional<z.ZodBoolean>;
|
|
82
|
+
}, z.core.$strip>>;
|
|
83
|
+
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
84
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
85
|
+
}, z.core.$strip>;
|
|
86
|
+
declare const contentUpdateBody: z.ZodObject<{
|
|
87
|
+
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
88
|
+
slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
89
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
90
|
+
draft: "draft";
|
|
91
|
+
}>>;
|
|
92
|
+
authorId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
93
|
+
bylines: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
94
|
+
bylineId: z.ZodString;
|
|
95
|
+
roleLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
96
|
+
}, z.core.$strip>>>;
|
|
97
|
+
_rev: z.ZodOptional<z.ZodString>;
|
|
98
|
+
skipRevision: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
100
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
101
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
102
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
103
|
+
canonical: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
104
|
+
noIndex: z.ZodOptional<z.ZodBoolean>;
|
|
105
|
+
}, z.core.$strip>>;
|
|
106
|
+
publishedAt: z.ZodOptional<z.ZodNullable<z.ZodISODateTime>>;
|
|
107
|
+
}, z.core.$strip>;
|
|
108
|
+
declare const contentScheduleBody: z.ZodObject<{
|
|
109
|
+
scheduledAt: z.ZodString;
|
|
110
|
+
}, z.core.$strip>;
|
|
111
|
+
declare const contentPublishBody: z.ZodObject<{
|
|
112
|
+
publishedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
113
|
+
reviewRequestId: z.ZodOptional<z.ZodString>;
|
|
114
|
+
review_request_id: z.ZodOptional<z.ZodString>;
|
|
115
|
+
}, z.core.$strip>;
|
|
116
|
+
declare const contentPreviewUrlBody: z.ZodObject<{
|
|
117
|
+
expiresIn: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
118
|
+
pathPattern: z.ZodOptional<z.ZodString>;
|
|
119
|
+
}, z.core.$strip>;
|
|
120
|
+
declare const contentTermsBody: z.ZodObject<{
|
|
121
|
+
termIds: z.ZodArray<z.ZodString>;
|
|
122
|
+
}, z.core.$strip>;
|
|
123
|
+
declare const contentTrashQuery: z.ZodObject<{
|
|
124
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
125
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
126
|
+
}, z.core.$strip>;
|
|
127
|
+
/** SEO metadata on a content item */
|
|
128
|
+
declare const contentSeoSchema: z.ZodObject<{
|
|
129
|
+
title: z.ZodNullable<z.ZodString>;
|
|
130
|
+
description: z.ZodNullable<z.ZodString>;
|
|
131
|
+
image: z.ZodNullable<z.ZodString>;
|
|
132
|
+
canonical: z.ZodNullable<z.ZodString>;
|
|
133
|
+
noIndex: z.ZodBoolean;
|
|
134
|
+
}, z.core.$strip>;
|
|
135
|
+
/** A single content item as returned by the API */
|
|
136
|
+
declare const contentItemSchema: z.ZodObject<{
|
|
137
|
+
id: z.ZodString;
|
|
138
|
+
type: z.ZodString;
|
|
139
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
140
|
+
status: z.ZodString;
|
|
141
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
142
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
143
|
+
primaryBylineId: z.ZodNullable<z.ZodString>;
|
|
144
|
+
byline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
145
|
+
id: z.ZodString;
|
|
146
|
+
slug: z.ZodString;
|
|
147
|
+
displayName: z.ZodString;
|
|
148
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
149
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
150
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
151
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
152
|
+
isGuest: z.ZodBoolean;
|
|
153
|
+
createdAt: z.ZodString;
|
|
154
|
+
updatedAt: z.ZodString;
|
|
155
|
+
}, z.core.$strip>>>;
|
|
156
|
+
bylines: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
157
|
+
byline: z.ZodObject<{
|
|
158
|
+
id: z.ZodString;
|
|
159
|
+
slug: z.ZodString;
|
|
160
|
+
displayName: z.ZodString;
|
|
161
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
162
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
163
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
164
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
165
|
+
isGuest: z.ZodBoolean;
|
|
166
|
+
createdAt: z.ZodString;
|
|
167
|
+
updatedAt: z.ZodString;
|
|
168
|
+
}, z.core.$strip>;
|
|
169
|
+
sortOrder: z.ZodNumber;
|
|
170
|
+
roleLabel: z.ZodNullable<z.ZodString>;
|
|
171
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
172
|
+
explicit: "explicit";
|
|
173
|
+
inferred: "inferred";
|
|
174
|
+
}>>;
|
|
175
|
+
}, z.core.$strip>>>;
|
|
176
|
+
createdAt: z.ZodString;
|
|
177
|
+
updatedAt: z.ZodString;
|
|
178
|
+
publishedAt: z.ZodNullable<z.ZodString>;
|
|
179
|
+
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
180
|
+
liveRevisionId: z.ZodNullable<z.ZodString>;
|
|
181
|
+
draftRevisionId: z.ZodNullable<z.ZodString>;
|
|
182
|
+
version: z.ZodNumber;
|
|
183
|
+
locale: z.ZodNullable<z.ZodString>;
|
|
184
|
+
translationGroup: z.ZodNullable<z.ZodString>;
|
|
185
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
186
|
+
title: z.ZodNullable<z.ZodString>;
|
|
187
|
+
description: z.ZodNullable<z.ZodString>;
|
|
188
|
+
image: z.ZodNullable<z.ZodString>;
|
|
189
|
+
canonical: z.ZodNullable<z.ZodString>;
|
|
190
|
+
noIndex: z.ZodBoolean;
|
|
191
|
+
}, z.core.$strip>>;
|
|
192
|
+
}, z.core.$strip>;
|
|
193
|
+
/** Response for single content item endpoints (get, create, update) */
|
|
194
|
+
declare const contentResponseSchema: z.ZodObject<{
|
|
195
|
+
item: z.ZodObject<{
|
|
196
|
+
id: z.ZodString;
|
|
197
|
+
type: z.ZodString;
|
|
198
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
199
|
+
status: z.ZodString;
|
|
200
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
201
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
202
|
+
primaryBylineId: z.ZodNullable<z.ZodString>;
|
|
203
|
+
byline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
204
|
+
id: z.ZodString;
|
|
205
|
+
slug: z.ZodString;
|
|
206
|
+
displayName: z.ZodString;
|
|
207
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
208
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
209
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
210
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
211
|
+
isGuest: z.ZodBoolean;
|
|
212
|
+
createdAt: z.ZodString;
|
|
213
|
+
updatedAt: z.ZodString;
|
|
214
|
+
}, z.core.$strip>>>;
|
|
215
|
+
bylines: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
216
|
+
byline: z.ZodObject<{
|
|
217
|
+
id: z.ZodString;
|
|
218
|
+
slug: z.ZodString;
|
|
219
|
+
displayName: z.ZodString;
|
|
220
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
221
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
222
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
223
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
224
|
+
isGuest: z.ZodBoolean;
|
|
225
|
+
createdAt: z.ZodString;
|
|
226
|
+
updatedAt: z.ZodString;
|
|
227
|
+
}, z.core.$strip>;
|
|
228
|
+
sortOrder: z.ZodNumber;
|
|
229
|
+
roleLabel: z.ZodNullable<z.ZodString>;
|
|
230
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
231
|
+
explicit: "explicit";
|
|
232
|
+
inferred: "inferred";
|
|
233
|
+
}>>;
|
|
234
|
+
}, z.core.$strip>>>;
|
|
235
|
+
createdAt: z.ZodString;
|
|
236
|
+
updatedAt: z.ZodString;
|
|
237
|
+
publishedAt: z.ZodNullable<z.ZodString>;
|
|
238
|
+
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
239
|
+
liveRevisionId: z.ZodNullable<z.ZodString>;
|
|
240
|
+
draftRevisionId: z.ZodNullable<z.ZodString>;
|
|
241
|
+
version: z.ZodNumber;
|
|
242
|
+
locale: z.ZodNullable<z.ZodString>;
|
|
243
|
+
translationGroup: z.ZodNullable<z.ZodString>;
|
|
244
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
245
|
+
title: z.ZodNullable<z.ZodString>;
|
|
246
|
+
description: z.ZodNullable<z.ZodString>;
|
|
247
|
+
image: z.ZodNullable<z.ZodString>;
|
|
248
|
+
canonical: z.ZodNullable<z.ZodString>;
|
|
249
|
+
noIndex: z.ZodBoolean;
|
|
250
|
+
}, z.core.$strip>>;
|
|
251
|
+
}, z.core.$strip>;
|
|
252
|
+
_rev: z.ZodOptional<z.ZodString>;
|
|
253
|
+
}, z.core.$strip>;
|
|
254
|
+
/** Response for content list endpoints */
|
|
255
|
+
declare const contentListResponseSchema: z.ZodObject<{
|
|
256
|
+
items: z.ZodArray<z.ZodObject<{
|
|
257
|
+
id: z.ZodString;
|
|
258
|
+
type: z.ZodString;
|
|
259
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
260
|
+
status: z.ZodString;
|
|
261
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
262
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
263
|
+
primaryBylineId: z.ZodNullable<z.ZodString>;
|
|
264
|
+
byline: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
265
|
+
id: z.ZodString;
|
|
266
|
+
slug: z.ZodString;
|
|
267
|
+
displayName: z.ZodString;
|
|
268
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
269
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
270
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
271
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
272
|
+
isGuest: z.ZodBoolean;
|
|
273
|
+
createdAt: z.ZodString;
|
|
274
|
+
updatedAt: z.ZodString;
|
|
275
|
+
}, z.core.$strip>>>;
|
|
276
|
+
bylines: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
277
|
+
byline: z.ZodObject<{
|
|
278
|
+
id: z.ZodString;
|
|
279
|
+
slug: z.ZodString;
|
|
280
|
+
displayName: z.ZodString;
|
|
281
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
282
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
283
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
284
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
285
|
+
isGuest: z.ZodBoolean;
|
|
286
|
+
createdAt: z.ZodString;
|
|
287
|
+
updatedAt: z.ZodString;
|
|
288
|
+
}, z.core.$strip>;
|
|
289
|
+
sortOrder: z.ZodNumber;
|
|
290
|
+
roleLabel: z.ZodNullable<z.ZodString>;
|
|
291
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
292
|
+
explicit: "explicit";
|
|
293
|
+
inferred: "inferred";
|
|
294
|
+
}>>;
|
|
295
|
+
}, z.core.$strip>>>;
|
|
296
|
+
createdAt: z.ZodString;
|
|
297
|
+
updatedAt: z.ZodString;
|
|
298
|
+
publishedAt: z.ZodNullable<z.ZodString>;
|
|
299
|
+
scheduledAt: z.ZodNullable<z.ZodString>;
|
|
300
|
+
liveRevisionId: z.ZodNullable<z.ZodString>;
|
|
301
|
+
draftRevisionId: z.ZodNullable<z.ZodString>;
|
|
302
|
+
version: z.ZodNumber;
|
|
303
|
+
locale: z.ZodNullable<z.ZodString>;
|
|
304
|
+
translationGroup: z.ZodNullable<z.ZodString>;
|
|
305
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
306
|
+
title: z.ZodNullable<z.ZodString>;
|
|
307
|
+
description: z.ZodNullable<z.ZodString>;
|
|
308
|
+
image: z.ZodNullable<z.ZodString>;
|
|
309
|
+
canonical: z.ZodNullable<z.ZodString>;
|
|
310
|
+
noIndex: z.ZodBoolean;
|
|
311
|
+
}, z.core.$strip>>;
|
|
312
|
+
}, z.core.$strip>>;
|
|
313
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
314
|
+
}, z.core.$strip>;
|
|
315
|
+
/** Trashed content item */
|
|
316
|
+
declare const trashedContentItemSchema: z.ZodObject<{
|
|
317
|
+
id: z.ZodString;
|
|
318
|
+
type: z.ZodString;
|
|
319
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
320
|
+
status: z.ZodString;
|
|
321
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
322
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
323
|
+
createdAt: z.ZodString;
|
|
324
|
+
updatedAt: z.ZodString;
|
|
325
|
+
publishedAt: z.ZodNullable<z.ZodString>;
|
|
326
|
+
deletedAt: z.ZodString;
|
|
327
|
+
}, z.core.$strip>;
|
|
328
|
+
/** Response for trashed content list */
|
|
329
|
+
declare const trashedContentListResponseSchema: z.ZodObject<{
|
|
330
|
+
items: z.ZodArray<z.ZodObject<{
|
|
331
|
+
id: z.ZodString;
|
|
332
|
+
type: z.ZodString;
|
|
333
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
334
|
+
status: z.ZodString;
|
|
335
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
336
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
337
|
+
createdAt: z.ZodString;
|
|
338
|
+
updatedAt: z.ZodString;
|
|
339
|
+
publishedAt: z.ZodNullable<z.ZodString>;
|
|
340
|
+
deletedAt: z.ZodString;
|
|
341
|
+
}, z.core.$strip>>;
|
|
342
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
343
|
+
}, z.core.$strip>;
|
|
344
|
+
/** Response for content compare (live vs draft) */
|
|
345
|
+
declare const contentCompareResponseSchema: z.ZodObject<{
|
|
346
|
+
hasChanges: z.ZodBoolean;
|
|
347
|
+
live: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
348
|
+
draft: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
349
|
+
}, z.core.$strip>;
|
|
350
|
+
/** Translation summary for a content item */
|
|
351
|
+
declare const contentTranslationSchema: z.ZodObject<{
|
|
352
|
+
id: z.ZodString;
|
|
353
|
+
locale: z.ZodNullable<z.ZodString>;
|
|
354
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
355
|
+
status: z.ZodString;
|
|
356
|
+
updatedAt: z.ZodString;
|
|
357
|
+
}, z.core.$strip>;
|
|
358
|
+
/** Response for content translations endpoint */
|
|
359
|
+
declare const contentTranslationsResponseSchema: z.ZodObject<{
|
|
360
|
+
translationGroup: z.ZodString;
|
|
361
|
+
translations: z.ZodArray<z.ZodObject<{
|
|
362
|
+
id: z.ZodString;
|
|
363
|
+
locale: z.ZodNullable<z.ZodString>;
|
|
364
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
365
|
+
status: z.ZodString;
|
|
366
|
+
updatedAt: z.ZodString;
|
|
367
|
+
}, z.core.$strip>>;
|
|
368
|
+
}, z.core.$strip>;
|
|
369
|
+
//#endregion
|
|
370
|
+
//#region src/api/schemas/media.d.ts
|
|
371
|
+
declare const mediaListQuery: z.ZodObject<{
|
|
372
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
373
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
374
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
375
|
+
}, z.core.$strip>;
|
|
376
|
+
declare const mediaUpdateBody: z.ZodObject<{
|
|
377
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
378
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
379
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
380
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
}, z.core.$strip>;
|
|
382
|
+
/** Default maximum allowed file upload size (50 MB). */
|
|
383
|
+
declare const DEFAULT_MAX_UPLOAD_SIZE: number;
|
|
384
|
+
declare function formatFileSize(bytes: number): string;
|
|
385
|
+
declare function mediaUploadUrlBody(maxSize: number): z.ZodObject<{
|
|
386
|
+
filename: z.ZodString;
|
|
387
|
+
contentType: z.ZodString;
|
|
388
|
+
size: z.ZodNumber;
|
|
389
|
+
contentHash: z.ZodOptional<z.ZodString>;
|
|
390
|
+
}, z.core.$strip>;
|
|
391
|
+
declare const mediaConfirmBody: z.ZodObject<{
|
|
392
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
393
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
394
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
395
|
+
}, z.core.$strip>;
|
|
396
|
+
declare const mediaProviderListQuery: z.ZodObject<{
|
|
397
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
398
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
399
|
+
query: z.ZodOptional<z.ZodString>;
|
|
400
|
+
mimeType: z.ZodOptional<z.ZodString>;
|
|
401
|
+
}, z.core.$strip>;
|
|
402
|
+
declare const mediaItemSchema: z.ZodObject<{
|
|
403
|
+
id: z.ZodString;
|
|
404
|
+
filename: z.ZodString;
|
|
405
|
+
mimeType: z.ZodString;
|
|
406
|
+
size: z.ZodNullable<z.ZodNumber>;
|
|
407
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
408
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
409
|
+
alt: z.ZodNullable<z.ZodString>;
|
|
410
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
411
|
+
storageKey: z.ZodString;
|
|
412
|
+
status: z.ZodEnum<{
|
|
413
|
+
pending: "pending";
|
|
414
|
+
ready: "ready";
|
|
415
|
+
failed: "failed";
|
|
416
|
+
}>;
|
|
417
|
+
contentHash: z.ZodNullable<z.ZodString>;
|
|
418
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
419
|
+
dominantColor: z.ZodNullable<z.ZodString>;
|
|
420
|
+
createdAt: z.ZodString;
|
|
421
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
422
|
+
}, z.core.$strip>;
|
|
423
|
+
declare const mediaResponseSchema: z.ZodObject<{
|
|
424
|
+
item: z.ZodObject<{
|
|
425
|
+
id: z.ZodString;
|
|
426
|
+
filename: z.ZodString;
|
|
427
|
+
mimeType: z.ZodString;
|
|
428
|
+
size: z.ZodNullable<z.ZodNumber>;
|
|
429
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
430
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
431
|
+
alt: z.ZodNullable<z.ZodString>;
|
|
432
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
433
|
+
storageKey: z.ZodString;
|
|
434
|
+
status: z.ZodEnum<{
|
|
435
|
+
pending: "pending";
|
|
436
|
+
ready: "ready";
|
|
437
|
+
failed: "failed";
|
|
438
|
+
}>;
|
|
439
|
+
contentHash: z.ZodNullable<z.ZodString>;
|
|
440
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
441
|
+
dominantColor: z.ZodNullable<z.ZodString>;
|
|
442
|
+
createdAt: z.ZodString;
|
|
443
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
444
|
+
}, z.core.$strip>;
|
|
445
|
+
}, z.core.$strip>;
|
|
446
|
+
declare const mediaListResponseSchema: z.ZodObject<{
|
|
447
|
+
items: z.ZodArray<z.ZodObject<{
|
|
448
|
+
id: z.ZodString;
|
|
449
|
+
filename: z.ZodString;
|
|
450
|
+
mimeType: z.ZodString;
|
|
451
|
+
size: z.ZodNullable<z.ZodNumber>;
|
|
452
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
453
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
454
|
+
alt: z.ZodNullable<z.ZodString>;
|
|
455
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
456
|
+
storageKey: z.ZodString;
|
|
457
|
+
status: z.ZodEnum<{
|
|
458
|
+
pending: "pending";
|
|
459
|
+
ready: "ready";
|
|
460
|
+
failed: "failed";
|
|
461
|
+
}>;
|
|
462
|
+
contentHash: z.ZodNullable<z.ZodString>;
|
|
463
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
464
|
+
dominantColor: z.ZodNullable<z.ZodString>;
|
|
465
|
+
createdAt: z.ZodString;
|
|
466
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
467
|
+
}, z.core.$strip>>;
|
|
468
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
469
|
+
}, z.core.$strip>;
|
|
470
|
+
declare const mediaUploadUrlResponseSchema: z.ZodObject<{
|
|
471
|
+
uploadUrl: z.ZodString;
|
|
472
|
+
method: z.ZodLiteral<"PUT">;
|
|
473
|
+
headers: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
474
|
+
mediaId: z.ZodString;
|
|
475
|
+
storageKey: z.ZodString;
|
|
476
|
+
expiresAt: z.ZodString;
|
|
477
|
+
}, z.core.$strip>;
|
|
478
|
+
declare const mediaExistingResponseSchema: z.ZodObject<{
|
|
479
|
+
existing: z.ZodLiteral<true>;
|
|
480
|
+
mediaId: z.ZodString;
|
|
481
|
+
storageKey: z.ZodString;
|
|
482
|
+
url: z.ZodString;
|
|
483
|
+
}, z.core.$strip>;
|
|
484
|
+
declare const mediaConfirmResponseSchema: z.ZodObject<{
|
|
485
|
+
item: z.ZodObject<{
|
|
486
|
+
id: z.ZodString;
|
|
487
|
+
filename: z.ZodString;
|
|
488
|
+
mimeType: z.ZodString;
|
|
489
|
+
size: z.ZodNullable<z.ZodNumber>;
|
|
490
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
491
|
+
height: z.ZodNullable<z.ZodNumber>;
|
|
492
|
+
alt: z.ZodNullable<z.ZodString>;
|
|
493
|
+
caption: z.ZodNullable<z.ZodString>;
|
|
494
|
+
storageKey: z.ZodString;
|
|
495
|
+
status: z.ZodEnum<{
|
|
496
|
+
pending: "pending";
|
|
497
|
+
ready: "ready";
|
|
498
|
+
failed: "failed";
|
|
499
|
+
}>;
|
|
500
|
+
contentHash: z.ZodNullable<z.ZodString>;
|
|
501
|
+
blurhash: z.ZodNullable<z.ZodString>;
|
|
502
|
+
dominantColor: z.ZodNullable<z.ZodString>;
|
|
503
|
+
createdAt: z.ZodString;
|
|
504
|
+
authorId: z.ZodNullable<z.ZodString>;
|
|
505
|
+
url: z.ZodString;
|
|
506
|
+
}, z.core.$strip>;
|
|
507
|
+
}, z.core.$strip>;
|
|
508
|
+
//#endregion
|
|
509
|
+
//#region src/api/schemas/schema.d.ts
|
|
510
|
+
declare const createCollectionBody: z.ZodObject<{
|
|
511
|
+
slug: z.ZodString;
|
|
512
|
+
label: z.ZodString;
|
|
513
|
+
labelSingular: z.ZodOptional<z.ZodString>;
|
|
514
|
+
description: z.ZodOptional<z.ZodString>;
|
|
515
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
516
|
+
supports: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
517
|
+
search: "search";
|
|
518
|
+
drafts: "drafts";
|
|
519
|
+
revisions: "revisions";
|
|
520
|
+
preview: "preview";
|
|
521
|
+
scheduling: "scheduling";
|
|
522
|
+
}>>>;
|
|
523
|
+
source: z.ZodOptional<z.ZodString>;
|
|
524
|
+
urlPattern: z.ZodOptional<z.ZodString>;
|
|
525
|
+
hasSeo: z.ZodOptional<z.ZodBoolean>;
|
|
526
|
+
}, z.core.$strip>;
|
|
527
|
+
declare const updateCollectionBody: z.ZodObject<{
|
|
528
|
+
label: z.ZodOptional<z.ZodString>;
|
|
529
|
+
labelSingular: z.ZodOptional<z.ZodString>;
|
|
530
|
+
description: z.ZodOptional<z.ZodString>;
|
|
531
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
532
|
+
supports: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
533
|
+
search: "search";
|
|
534
|
+
drafts: "drafts";
|
|
535
|
+
revisions: "revisions";
|
|
536
|
+
preview: "preview";
|
|
537
|
+
scheduling: "scheduling";
|
|
538
|
+
}>>>;
|
|
539
|
+
urlPattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
540
|
+
hasSeo: z.ZodOptional<z.ZodBoolean>;
|
|
541
|
+
commentsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
542
|
+
commentsModeration: z.ZodOptional<z.ZodEnum<{
|
|
543
|
+
all: "all";
|
|
544
|
+
first_time: "first_time";
|
|
545
|
+
none: "none";
|
|
546
|
+
}>>;
|
|
547
|
+
commentsClosedAfterDays: z.ZodOptional<z.ZodNumber>;
|
|
548
|
+
commentsAutoApproveUsers: z.ZodOptional<z.ZodBoolean>;
|
|
549
|
+
}, z.core.$strip>;
|
|
550
|
+
declare const createFieldBody: z.ZodObject<{
|
|
551
|
+
slug: z.ZodString;
|
|
552
|
+
label: z.ZodString;
|
|
553
|
+
type: z.ZodEnum<{
|
|
554
|
+
string: "string";
|
|
555
|
+
number: "number";
|
|
556
|
+
boolean: "boolean";
|
|
557
|
+
file: "file";
|
|
558
|
+
slug: "slug";
|
|
559
|
+
url: "url";
|
|
560
|
+
datetime: "datetime";
|
|
561
|
+
image: "image";
|
|
562
|
+
text: "text";
|
|
563
|
+
integer: "integer";
|
|
564
|
+
select: "select";
|
|
565
|
+
multiSelect: "multiSelect";
|
|
566
|
+
portableText: "portableText";
|
|
567
|
+
reference: "reference";
|
|
568
|
+
json: "json";
|
|
569
|
+
repeater: "repeater";
|
|
570
|
+
}>;
|
|
571
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
572
|
+
unique: z.ZodOptional<z.ZodBoolean>;
|
|
573
|
+
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
574
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
575
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
576
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
577
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
578
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
579
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
580
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
581
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
582
|
+
subFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
583
|
+
slug: z.ZodString;
|
|
584
|
+
type: z.ZodEnum<{
|
|
585
|
+
string: "string";
|
|
586
|
+
number: "number";
|
|
587
|
+
boolean: "boolean";
|
|
588
|
+
url: "url";
|
|
589
|
+
datetime: "datetime";
|
|
590
|
+
text: "text";
|
|
591
|
+
integer: "integer";
|
|
592
|
+
select: "select";
|
|
593
|
+
}>;
|
|
594
|
+
label: z.ZodString;
|
|
595
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
596
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
597
|
+
}, z.core.$strip>>>;
|
|
598
|
+
minItems: z.ZodOptional<z.ZodNumber>;
|
|
599
|
+
maxItems: z.ZodOptional<z.ZodNumber>;
|
|
600
|
+
}, z.core.$strip>>;
|
|
601
|
+
widget: z.ZodOptional<z.ZodString>;
|
|
602
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
603
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
604
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
605
|
+
translatable: z.ZodOptional<z.ZodBoolean>;
|
|
606
|
+
}, z.core.$strip>;
|
|
607
|
+
declare const updateFieldBody: z.ZodObject<{
|
|
608
|
+
label: z.ZodOptional<z.ZodString>;
|
|
609
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
610
|
+
unique: z.ZodOptional<z.ZodBoolean>;
|
|
611
|
+
defaultValue: z.ZodOptional<z.ZodUnknown>;
|
|
612
|
+
validation: z.ZodOptional<z.ZodObject<{
|
|
613
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
614
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
615
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
616
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
617
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
618
|
+
pattern: z.ZodOptional<z.ZodString>;
|
|
619
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
620
|
+
subFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
621
|
+
slug: z.ZodString;
|
|
622
|
+
type: z.ZodEnum<{
|
|
623
|
+
string: "string";
|
|
624
|
+
number: "number";
|
|
625
|
+
boolean: "boolean";
|
|
626
|
+
url: "url";
|
|
627
|
+
datetime: "datetime";
|
|
628
|
+
text: "text";
|
|
629
|
+
integer: "integer";
|
|
630
|
+
select: "select";
|
|
631
|
+
}>;
|
|
632
|
+
label: z.ZodString;
|
|
633
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
634
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
635
|
+
}, z.core.$strip>>>;
|
|
636
|
+
minItems: z.ZodOptional<z.ZodNumber>;
|
|
637
|
+
maxItems: z.ZodOptional<z.ZodNumber>;
|
|
638
|
+
}, z.core.$strip>>;
|
|
639
|
+
widget: z.ZodOptional<z.ZodString>;
|
|
640
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
641
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
642
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
643
|
+
translatable: z.ZodOptional<z.ZodBoolean>;
|
|
644
|
+
}, z.core.$strip>;
|
|
645
|
+
declare const fieldReorderBody: z.ZodObject<{
|
|
646
|
+
fieldSlugs: z.ZodArray<z.ZodString>;
|
|
647
|
+
}, z.core.$strip>;
|
|
648
|
+
declare const orphanRegisterBody: z.ZodObject<{
|
|
649
|
+
label: z.ZodOptional<z.ZodString>;
|
|
650
|
+
labelSingular: z.ZodOptional<z.ZodString>;
|
|
651
|
+
description: z.ZodOptional<z.ZodString>;
|
|
652
|
+
}, z.core.$strip>;
|
|
653
|
+
declare const schemaExportQuery: z.ZodObject<{
|
|
654
|
+
format: z.ZodOptional<z.ZodString>;
|
|
655
|
+
}, z.core.$strip>;
|
|
656
|
+
declare const collectionGetQuery: z.ZodObject<{
|
|
657
|
+
includeFields: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<boolean, string>>>;
|
|
658
|
+
}, z.core.$strip>;
|
|
659
|
+
declare const collectionSchema: z.ZodObject<{
|
|
660
|
+
id: z.ZodString;
|
|
661
|
+
slug: z.ZodString;
|
|
662
|
+
label: z.ZodString;
|
|
663
|
+
labelSingular: z.ZodNullable<z.ZodString>;
|
|
664
|
+
description: z.ZodNullable<z.ZodString>;
|
|
665
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
666
|
+
supports: z.ZodArray<z.ZodString>;
|
|
667
|
+
source: z.ZodNullable<z.ZodString>;
|
|
668
|
+
urlPattern: z.ZodNullable<z.ZodString>;
|
|
669
|
+
hasSeo: z.ZodBoolean;
|
|
670
|
+
createdAt: z.ZodString;
|
|
671
|
+
updatedAt: z.ZodString;
|
|
672
|
+
}, z.core.$strip>;
|
|
673
|
+
declare const fieldSchema: z.ZodObject<{
|
|
674
|
+
id: z.ZodString;
|
|
675
|
+
collectionId: z.ZodString;
|
|
676
|
+
slug: z.ZodString;
|
|
677
|
+
label: z.ZodString;
|
|
678
|
+
type: z.ZodEnum<{
|
|
679
|
+
string: "string";
|
|
680
|
+
number: "number";
|
|
681
|
+
boolean: "boolean";
|
|
682
|
+
file: "file";
|
|
683
|
+
slug: "slug";
|
|
684
|
+
url: "url";
|
|
685
|
+
datetime: "datetime";
|
|
686
|
+
image: "image";
|
|
687
|
+
text: "text";
|
|
688
|
+
integer: "integer";
|
|
689
|
+
select: "select";
|
|
690
|
+
multiSelect: "multiSelect";
|
|
691
|
+
portableText: "portableText";
|
|
692
|
+
reference: "reference";
|
|
693
|
+
json: "json";
|
|
694
|
+
repeater: "repeater";
|
|
695
|
+
}>;
|
|
696
|
+
required: z.ZodBoolean;
|
|
697
|
+
unique: z.ZodBoolean;
|
|
698
|
+
defaultValue: z.ZodNullable<z.ZodUnknown>;
|
|
699
|
+
validation: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
700
|
+
widget: z.ZodNullable<z.ZodString>;
|
|
701
|
+
options: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
702
|
+
sortOrder: z.ZodNumber;
|
|
703
|
+
searchable: z.ZodBoolean;
|
|
704
|
+
translatable: z.ZodBoolean;
|
|
705
|
+
createdAt: z.ZodString;
|
|
706
|
+
updatedAt: z.ZodString;
|
|
707
|
+
}, z.core.$strip>;
|
|
708
|
+
declare const collectionResponseSchema: z.ZodObject<{
|
|
709
|
+
item: z.ZodObject<{
|
|
710
|
+
id: z.ZodString;
|
|
711
|
+
slug: z.ZodString;
|
|
712
|
+
label: z.ZodString;
|
|
713
|
+
labelSingular: z.ZodNullable<z.ZodString>;
|
|
714
|
+
description: z.ZodNullable<z.ZodString>;
|
|
715
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
716
|
+
supports: z.ZodArray<z.ZodString>;
|
|
717
|
+
source: z.ZodNullable<z.ZodString>;
|
|
718
|
+
urlPattern: z.ZodNullable<z.ZodString>;
|
|
719
|
+
hasSeo: z.ZodBoolean;
|
|
720
|
+
createdAt: z.ZodString;
|
|
721
|
+
updatedAt: z.ZodString;
|
|
722
|
+
}, z.core.$strip>;
|
|
723
|
+
}, z.core.$strip>;
|
|
724
|
+
declare const collectionWithFieldsResponseSchema: z.ZodObject<{
|
|
725
|
+
item: z.ZodObject<{
|
|
726
|
+
id: z.ZodString;
|
|
727
|
+
slug: z.ZodString;
|
|
728
|
+
label: z.ZodString;
|
|
729
|
+
labelSingular: z.ZodNullable<z.ZodString>;
|
|
730
|
+
description: z.ZodNullable<z.ZodString>;
|
|
731
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
732
|
+
supports: z.ZodArray<z.ZodString>;
|
|
733
|
+
source: z.ZodNullable<z.ZodString>;
|
|
734
|
+
urlPattern: z.ZodNullable<z.ZodString>;
|
|
735
|
+
hasSeo: z.ZodBoolean;
|
|
736
|
+
createdAt: z.ZodString;
|
|
737
|
+
updatedAt: z.ZodString;
|
|
738
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
739
|
+
id: z.ZodString;
|
|
740
|
+
collectionId: z.ZodString;
|
|
741
|
+
slug: z.ZodString;
|
|
742
|
+
label: z.ZodString;
|
|
743
|
+
type: z.ZodEnum<{
|
|
744
|
+
string: "string";
|
|
745
|
+
number: "number";
|
|
746
|
+
boolean: "boolean";
|
|
747
|
+
file: "file";
|
|
748
|
+
slug: "slug";
|
|
749
|
+
url: "url";
|
|
750
|
+
datetime: "datetime";
|
|
751
|
+
image: "image";
|
|
752
|
+
text: "text";
|
|
753
|
+
integer: "integer";
|
|
754
|
+
select: "select";
|
|
755
|
+
multiSelect: "multiSelect";
|
|
756
|
+
portableText: "portableText";
|
|
757
|
+
reference: "reference";
|
|
758
|
+
json: "json";
|
|
759
|
+
repeater: "repeater";
|
|
760
|
+
}>;
|
|
761
|
+
required: z.ZodBoolean;
|
|
762
|
+
unique: z.ZodBoolean;
|
|
763
|
+
defaultValue: z.ZodNullable<z.ZodUnknown>;
|
|
764
|
+
validation: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
765
|
+
widget: z.ZodNullable<z.ZodString>;
|
|
766
|
+
options: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
767
|
+
sortOrder: z.ZodNumber;
|
|
768
|
+
searchable: z.ZodBoolean;
|
|
769
|
+
translatable: z.ZodBoolean;
|
|
770
|
+
createdAt: z.ZodString;
|
|
771
|
+
updatedAt: z.ZodString;
|
|
772
|
+
}, z.core.$strip>>;
|
|
773
|
+
}, z.core.$strip>;
|
|
774
|
+
}, z.core.$strip>;
|
|
775
|
+
declare const collectionListResponseSchema: z.ZodObject<{
|
|
776
|
+
items: z.ZodArray<z.ZodObject<{
|
|
777
|
+
id: z.ZodString;
|
|
778
|
+
slug: z.ZodString;
|
|
779
|
+
label: z.ZodString;
|
|
780
|
+
labelSingular: z.ZodNullable<z.ZodString>;
|
|
781
|
+
description: z.ZodNullable<z.ZodString>;
|
|
782
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
783
|
+
supports: z.ZodArray<z.ZodString>;
|
|
784
|
+
source: z.ZodNullable<z.ZodString>;
|
|
785
|
+
urlPattern: z.ZodNullable<z.ZodString>;
|
|
786
|
+
hasSeo: z.ZodBoolean;
|
|
787
|
+
createdAt: z.ZodString;
|
|
788
|
+
updatedAt: z.ZodString;
|
|
789
|
+
}, z.core.$strip>>;
|
|
790
|
+
}, z.core.$strip>;
|
|
791
|
+
declare const fieldResponseSchema: z.ZodObject<{
|
|
792
|
+
item: z.ZodObject<{
|
|
793
|
+
id: z.ZodString;
|
|
794
|
+
collectionId: z.ZodString;
|
|
795
|
+
slug: z.ZodString;
|
|
796
|
+
label: z.ZodString;
|
|
797
|
+
type: z.ZodEnum<{
|
|
798
|
+
string: "string";
|
|
799
|
+
number: "number";
|
|
800
|
+
boolean: "boolean";
|
|
801
|
+
file: "file";
|
|
802
|
+
slug: "slug";
|
|
803
|
+
url: "url";
|
|
804
|
+
datetime: "datetime";
|
|
805
|
+
image: "image";
|
|
806
|
+
text: "text";
|
|
807
|
+
integer: "integer";
|
|
808
|
+
select: "select";
|
|
809
|
+
multiSelect: "multiSelect";
|
|
810
|
+
portableText: "portableText";
|
|
811
|
+
reference: "reference";
|
|
812
|
+
json: "json";
|
|
813
|
+
repeater: "repeater";
|
|
814
|
+
}>;
|
|
815
|
+
required: z.ZodBoolean;
|
|
816
|
+
unique: z.ZodBoolean;
|
|
817
|
+
defaultValue: z.ZodNullable<z.ZodUnknown>;
|
|
818
|
+
validation: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
819
|
+
widget: z.ZodNullable<z.ZodString>;
|
|
820
|
+
options: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
821
|
+
sortOrder: z.ZodNumber;
|
|
822
|
+
searchable: z.ZodBoolean;
|
|
823
|
+
translatable: z.ZodBoolean;
|
|
824
|
+
createdAt: z.ZodString;
|
|
825
|
+
updatedAt: z.ZodString;
|
|
826
|
+
}, z.core.$strip>;
|
|
827
|
+
}, z.core.$strip>;
|
|
828
|
+
declare const fieldListResponseSchema: z.ZodObject<{
|
|
829
|
+
items: z.ZodArray<z.ZodObject<{
|
|
830
|
+
id: z.ZodString;
|
|
831
|
+
collectionId: z.ZodString;
|
|
832
|
+
slug: z.ZodString;
|
|
833
|
+
label: z.ZodString;
|
|
834
|
+
type: z.ZodEnum<{
|
|
835
|
+
string: "string";
|
|
836
|
+
number: "number";
|
|
837
|
+
boolean: "boolean";
|
|
838
|
+
file: "file";
|
|
839
|
+
slug: "slug";
|
|
840
|
+
url: "url";
|
|
841
|
+
datetime: "datetime";
|
|
842
|
+
image: "image";
|
|
843
|
+
text: "text";
|
|
844
|
+
integer: "integer";
|
|
845
|
+
select: "select";
|
|
846
|
+
multiSelect: "multiSelect";
|
|
847
|
+
portableText: "portableText";
|
|
848
|
+
reference: "reference";
|
|
849
|
+
json: "json";
|
|
850
|
+
repeater: "repeater";
|
|
851
|
+
}>;
|
|
852
|
+
required: z.ZodBoolean;
|
|
853
|
+
unique: z.ZodBoolean;
|
|
854
|
+
defaultValue: z.ZodNullable<z.ZodUnknown>;
|
|
855
|
+
validation: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
856
|
+
widget: z.ZodNullable<z.ZodString>;
|
|
857
|
+
options: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
858
|
+
sortOrder: z.ZodNumber;
|
|
859
|
+
searchable: z.ZodBoolean;
|
|
860
|
+
translatable: z.ZodBoolean;
|
|
861
|
+
createdAt: z.ZodString;
|
|
862
|
+
updatedAt: z.ZodString;
|
|
863
|
+
}, z.core.$strip>>;
|
|
864
|
+
}, z.core.$strip>;
|
|
865
|
+
declare const orphanedTableSchema: z.ZodObject<{
|
|
866
|
+
slug: z.ZodString;
|
|
867
|
+
tableName: z.ZodString;
|
|
868
|
+
rowCount: z.ZodNumber;
|
|
869
|
+
}, z.core.$strip>;
|
|
870
|
+
declare const orphanedTableListResponseSchema: z.ZodObject<{
|
|
871
|
+
items: z.ZodArray<z.ZodObject<{
|
|
872
|
+
slug: z.ZodString;
|
|
873
|
+
tableName: z.ZodString;
|
|
874
|
+
rowCount: z.ZodNumber;
|
|
875
|
+
}, z.core.$strip>>;
|
|
876
|
+
}, z.core.$strip>;
|
|
877
|
+
//#endregion
|
|
878
|
+
//#region src/api/schemas/comments.d.ts
|
|
879
|
+
declare const createCommentBody: z.ZodObject<{
|
|
880
|
+
authorName: z.ZodString;
|
|
881
|
+
authorEmail: z.ZodString;
|
|
882
|
+
body: z.ZodString;
|
|
883
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
884
|
+
website_url: z.ZodOptional<z.ZodString>;
|
|
885
|
+
}, z.core.$strip>;
|
|
886
|
+
declare const commentStatusBody: z.ZodObject<{
|
|
887
|
+
status: z.ZodEnum<{
|
|
888
|
+
pending: "pending";
|
|
889
|
+
approved: "approved";
|
|
890
|
+
spam: "spam";
|
|
891
|
+
trash: "trash";
|
|
892
|
+
}>;
|
|
893
|
+
}, z.core.$strip>;
|
|
894
|
+
declare const commentBulkBody: z.ZodObject<{
|
|
895
|
+
ids: z.ZodArray<z.ZodString>;
|
|
896
|
+
action: z.ZodEnum<{
|
|
897
|
+
spam: "spam";
|
|
898
|
+
trash: "trash";
|
|
899
|
+
approve: "approve";
|
|
900
|
+
delete: "delete";
|
|
901
|
+
}>;
|
|
902
|
+
}, z.core.$strip>;
|
|
903
|
+
declare const commentListQuery: z.ZodObject<{
|
|
904
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
905
|
+
pending: "pending";
|
|
906
|
+
approved: "approved";
|
|
907
|
+
spam: "spam";
|
|
908
|
+
trash: "trash";
|
|
909
|
+
}>>;
|
|
910
|
+
collection: z.ZodOptional<z.ZodString>;
|
|
911
|
+
search: z.ZodOptional<z.ZodString>;
|
|
912
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
913
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
914
|
+
}, z.core.$strip>;
|
|
915
|
+
/**
|
|
916
|
+
* Public-facing comment (no email/IP).
|
|
917
|
+
*
|
|
918
|
+
* `replies` is recursive in practice (each reply can have replies), but we
|
|
919
|
+
* model it as a single level here to avoid circular type inference issues
|
|
920
|
+
* with tsgo. OpenAPI consumers should treat replies as the same shape.
|
|
921
|
+
*/
|
|
922
|
+
declare const publicCommentSchema: z.ZodObject<{
|
|
923
|
+
id: z.ZodString;
|
|
924
|
+
authorName: z.ZodString;
|
|
925
|
+
isRegisteredUser: z.ZodBoolean;
|
|
926
|
+
body: z.ZodString;
|
|
927
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
928
|
+
createdAt: z.ZodString;
|
|
929
|
+
replies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
930
|
+
}>;
|
|
931
|
+
/** Admin comment with full details */
|
|
932
|
+
declare const commentSchema: z.ZodObject<{
|
|
933
|
+
id: z.ZodString;
|
|
934
|
+
collection: z.ZodString;
|
|
935
|
+
contentId: z.ZodString;
|
|
936
|
+
authorName: z.ZodString;
|
|
937
|
+
authorEmail: z.ZodString;
|
|
938
|
+
body: z.ZodString;
|
|
939
|
+
status: z.ZodEnum<{
|
|
940
|
+
pending: "pending";
|
|
941
|
+
approved: "approved";
|
|
942
|
+
spam: "spam";
|
|
943
|
+
trash: "trash";
|
|
944
|
+
}>;
|
|
945
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
946
|
+
ipHash: z.ZodNullable<z.ZodString>;
|
|
947
|
+
createdAt: z.ZodString;
|
|
948
|
+
updatedAt: z.ZodString;
|
|
949
|
+
}, z.core.$strip>;
|
|
950
|
+
declare const publicCommentListResponseSchema: z.ZodObject<{
|
|
951
|
+
items: z.ZodArray<z.ZodObject<{
|
|
952
|
+
id: z.ZodString;
|
|
953
|
+
authorName: z.ZodString;
|
|
954
|
+
isRegisteredUser: z.ZodBoolean;
|
|
955
|
+
body: z.ZodString;
|
|
956
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
957
|
+
createdAt: z.ZodString;
|
|
958
|
+
replies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
959
|
+
}, z.core.$strip>>;
|
|
960
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
961
|
+
total: z.ZodNumber;
|
|
962
|
+
}, z.core.$strip>;
|
|
963
|
+
declare const adminCommentListResponseSchema: z.ZodObject<{
|
|
964
|
+
items: z.ZodArray<z.ZodObject<{
|
|
965
|
+
id: z.ZodString;
|
|
966
|
+
collection: z.ZodString;
|
|
967
|
+
contentId: z.ZodString;
|
|
968
|
+
authorName: z.ZodString;
|
|
969
|
+
authorEmail: z.ZodString;
|
|
970
|
+
body: z.ZodString;
|
|
971
|
+
status: z.ZodEnum<{
|
|
972
|
+
pending: "pending";
|
|
973
|
+
approved: "approved";
|
|
974
|
+
spam: "spam";
|
|
975
|
+
trash: "trash";
|
|
976
|
+
}>;
|
|
977
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
978
|
+
ipHash: z.ZodNullable<z.ZodString>;
|
|
979
|
+
createdAt: z.ZodString;
|
|
980
|
+
updatedAt: z.ZodString;
|
|
981
|
+
}, z.core.$strip>>;
|
|
982
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
983
|
+
}, z.core.$strip>;
|
|
984
|
+
declare const commentCountsResponseSchema: z.ZodObject<{
|
|
985
|
+
pending: z.ZodNumber;
|
|
986
|
+
approved: z.ZodNumber;
|
|
987
|
+
spam: z.ZodNumber;
|
|
988
|
+
trash: z.ZodNumber;
|
|
989
|
+
}, z.core.$strip>;
|
|
990
|
+
declare const commentBulkResponseSchema: z.ZodObject<{
|
|
991
|
+
affected: z.ZodNumber;
|
|
992
|
+
}, z.core.$strip>;
|
|
993
|
+
//#endregion
|
|
994
|
+
//#region src/api/schemas/context.d.ts
|
|
995
|
+
declare const contextEntryListQuery: z.ZodObject<{
|
|
996
|
+
q: z.ZodOptional<z.ZodString>;
|
|
997
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
998
|
+
includeInherited: z.ZodPipe<z.ZodOptional<z.ZodEnum<{
|
|
999
|
+
true: "true";
|
|
1000
|
+
false: "false";
|
|
1001
|
+
}>>, z.ZodTransform<boolean | undefined, "true" | "false" | undefined>>;
|
|
1002
|
+
contextTypes: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
|
|
1003
|
+
tags: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
|
|
1004
|
+
createdByActorType: z.ZodOptional<z.ZodEnum<{
|
|
1005
|
+
user: "user";
|
|
1006
|
+
api_token: "api_token";
|
|
1007
|
+
system: "system";
|
|
1008
|
+
}>>;
|
|
1009
|
+
createdByActorId: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
currentOnly: z.ZodPipe<z.ZodOptional<z.ZodEnum<{
|
|
1011
|
+
true: "true";
|
|
1012
|
+
false: "false";
|
|
1013
|
+
}>>, z.ZodTransform<boolean | undefined, "true" | "false" | undefined>>;
|
|
1014
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1015
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1016
|
+
}, z.core.$strip>;
|
|
1017
|
+
declare const contextEntryStaleQuery: z.ZodObject<{
|
|
1018
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1019
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1020
|
+
includeInherited: z.ZodPipe<z.ZodOptional<z.ZodEnum<{
|
|
1021
|
+
true: "true";
|
|
1022
|
+
false: "false";
|
|
1023
|
+
}>>, z.ZodTransform<boolean | undefined, "true" | "false" | undefined>>;
|
|
1024
|
+
contextTypes: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
|
|
1025
|
+
tags: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
|
|
1026
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1027
|
+
createdByActorType: z.ZodOptional<z.ZodEnum<{
|
|
1028
|
+
user: "user";
|
|
1029
|
+
api_token: "api_token";
|
|
1030
|
+
system: "system";
|
|
1031
|
+
}>>;
|
|
1032
|
+
createdByActorId: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
now: z.ZodOptional<z.ZodString>;
|
|
1034
|
+
}, z.core.$strip>;
|
|
1035
|
+
declare const contextEntryDiffQuery: z.ZodObject<{
|
|
1036
|
+
since: z.ZodString;
|
|
1037
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1038
|
+
includeInherited: z.ZodPipe<z.ZodOptional<z.ZodEnum<{
|
|
1039
|
+
true: "true";
|
|
1040
|
+
false: "false";
|
|
1041
|
+
}>>, z.ZodTransform<boolean | undefined, "true" | "false" | undefined>>;
|
|
1042
|
+
now: z.ZodOptional<z.ZodString>;
|
|
1043
|
+
}, z.core.$strip>;
|
|
1044
|
+
declare const contextEntryCreateBody: z.ZodObject<{
|
|
1045
|
+
scope: z.ZodString;
|
|
1046
|
+
contextType: z.ZodEnum<{
|
|
1047
|
+
brand_voice: "brand_voice";
|
|
1048
|
+
seo_strategy: "seo_strategy";
|
|
1049
|
+
audience: "audience";
|
|
1050
|
+
content_guideline: "content_guideline";
|
|
1051
|
+
forbidden_terms: "forbidden_terms";
|
|
1052
|
+
editorial_policy: "editorial_policy";
|
|
1053
|
+
migration_note: "migration_note";
|
|
1054
|
+
plugin_note: "plugin_note";
|
|
1055
|
+
agent_reasoning: "agent_reasoning";
|
|
1056
|
+
decision: "decision";
|
|
1057
|
+
risk: "risk";
|
|
1058
|
+
content_gap: "content_gap";
|
|
1059
|
+
style_exception: "style_exception";
|
|
1060
|
+
}>;
|
|
1061
|
+
title: z.ZodString;
|
|
1062
|
+
body: z.ZodString;
|
|
1063
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1064
|
+
policyKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1065
|
+
sourceActivityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1066
|
+
validUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1067
|
+
}, z.core.$strip>;
|
|
1068
|
+
declare const contextEntrySupersedeBody: z.ZodObject<{
|
|
1069
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
contextType: z.ZodOptional<z.ZodEnum<{
|
|
1071
|
+
brand_voice: "brand_voice";
|
|
1072
|
+
seo_strategy: "seo_strategy";
|
|
1073
|
+
audience: "audience";
|
|
1074
|
+
content_guideline: "content_guideline";
|
|
1075
|
+
forbidden_terms: "forbidden_terms";
|
|
1076
|
+
editorial_policy: "editorial_policy";
|
|
1077
|
+
migration_note: "migration_note";
|
|
1078
|
+
plugin_note: "plugin_note";
|
|
1079
|
+
agent_reasoning: "agent_reasoning";
|
|
1080
|
+
decision: "decision";
|
|
1081
|
+
risk: "risk";
|
|
1082
|
+
content_gap: "content_gap";
|
|
1083
|
+
style_exception: "style_exception";
|
|
1084
|
+
}>>;
|
|
1085
|
+
title: z.ZodString;
|
|
1086
|
+
body: z.ZodString;
|
|
1087
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1088
|
+
policyKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1089
|
+
sourceActivityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1090
|
+
validUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1091
|
+
}, z.core.$strip>;
|
|
1092
|
+
declare const contextEntryReviewBody: z.ZodObject<{
|
|
1093
|
+
reviewNote: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1094
|
+
validUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1095
|
+
}, z.core.$strip>;
|
|
1096
|
+
//#endregion
|
|
1097
|
+
//#region src/api/schemas/briefing.d.ts
|
|
1098
|
+
declare const siteBriefingQuery: z.ZodObject<{
|
|
1099
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1100
|
+
since: z.ZodOptional<z.ZodString>;
|
|
1101
|
+
contextTypes: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
|
|
1102
|
+
includeStale: z.ZodPipe<z.ZodOptional<z.ZodEnum<{
|
|
1103
|
+
true: "true";
|
|
1104
|
+
false: "false";
|
|
1105
|
+
}>>, z.ZodTransform<boolean | undefined, "true" | "false" | undefined>>;
|
|
1106
|
+
tokenBudget: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1107
|
+
activityLimit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1108
|
+
}, z.core.$strip>;
|
|
1109
|
+
//#endregion
|
|
1110
|
+
//#region src/api/schemas/hitl-requests.d.ts
|
|
1111
|
+
declare const hitlRequestListQuery: z.ZodObject<{
|
|
1112
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1113
|
+
pending: "pending";
|
|
1114
|
+
approved: "approved";
|
|
1115
|
+
rejected: "rejected";
|
|
1116
|
+
}>>;
|
|
1117
|
+
priority: z.ZodOptional<z.ZodEnum<{
|
|
1118
|
+
low: "low";
|
|
1119
|
+
normal: "normal";
|
|
1120
|
+
high: "high";
|
|
1121
|
+
urgent: "urgent";
|
|
1122
|
+
}>>;
|
|
1123
|
+
actionType: z.ZodOptional<z.ZodString>;
|
|
1124
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1125
|
+
targetRefType: z.ZodOptional<z.ZodString>;
|
|
1126
|
+
targetRefId: z.ZodOptional<z.ZodString>;
|
|
1127
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1128
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1129
|
+
}, z.core.$strip>;
|
|
1130
|
+
declare const hitlRequestResolveBody: z.ZodObject<{
|
|
1131
|
+
decision: z.ZodEnum<{
|
|
1132
|
+
approved: "approved";
|
|
1133
|
+
rejected: "rejected";
|
|
1134
|
+
}>;
|
|
1135
|
+
reviewNote: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1136
|
+
}, z.core.$strip>;
|
|
1137
|
+
//#endregion
|
|
1138
|
+
//#region src/api/schemas/review-requests.d.ts
|
|
1139
|
+
declare const reviewRequestListQuery: z.ZodObject<{
|
|
1140
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
1141
|
+
pending: "pending";
|
|
1142
|
+
approved: "approved";
|
|
1143
|
+
rejected: "rejected";
|
|
1144
|
+
}>>;
|
|
1145
|
+
collection: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
entryId: z.ZodOptional<z.ZodString>;
|
|
1147
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1148
|
+
actionType: z.ZodOptional<z.ZodString>;
|
|
1149
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1150
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1151
|
+
}, z.core.$strip>;
|
|
1152
|
+
declare const reviewRequestResolveBody: z.ZodObject<{
|
|
1153
|
+
decision: z.ZodEnum<{
|
|
1154
|
+
approved: "approved";
|
|
1155
|
+
rejected: "rejected";
|
|
1156
|
+
}>;
|
|
1157
|
+
reviewNote: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1158
|
+
}, z.core.$strip>;
|
|
1159
|
+
//#endregion
|
|
1160
|
+
//#region src/api/schemas/auth.d.ts
|
|
1161
|
+
declare const signupRequestBody: z.ZodObject<{
|
|
1162
|
+
email: z.ZodString;
|
|
1163
|
+
}, z.core.$strip>;
|
|
1164
|
+
declare const signupCompleteBody: z.ZodObject<{
|
|
1165
|
+
token: z.ZodString;
|
|
1166
|
+
credential: z.ZodObject<{
|
|
1167
|
+
id: z.ZodString;
|
|
1168
|
+
rawId: z.ZodString;
|
|
1169
|
+
type: z.ZodLiteral<"public-key">;
|
|
1170
|
+
response: z.ZodObject<{
|
|
1171
|
+
clientDataJSON: z.ZodString;
|
|
1172
|
+
attestationObject: z.ZodString;
|
|
1173
|
+
transports: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1174
|
+
usb: "usb";
|
|
1175
|
+
nfc: "nfc";
|
|
1176
|
+
ble: "ble";
|
|
1177
|
+
internal: "internal";
|
|
1178
|
+
hybrid: "hybrid";
|
|
1179
|
+
}>>>;
|
|
1180
|
+
}, z.core.$strip>;
|
|
1181
|
+
authenticatorAttachment: z.ZodOptional<z.ZodEnum<{
|
|
1182
|
+
platform: "platform";
|
|
1183
|
+
"cross-platform": "cross-platform";
|
|
1184
|
+
}>>;
|
|
1185
|
+
}, z.core.$strip>;
|
|
1186
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1187
|
+
}, z.core.$strip>;
|
|
1188
|
+
declare const inviteCreateBody: z.ZodObject<{
|
|
1189
|
+
email: z.ZodString;
|
|
1190
|
+
role: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>>;
|
|
1191
|
+
}, z.core.$strip>;
|
|
1192
|
+
declare const inviteCompleteBody: z.ZodObject<{
|
|
1193
|
+
token: z.ZodString;
|
|
1194
|
+
credential: z.ZodObject<{
|
|
1195
|
+
id: z.ZodString;
|
|
1196
|
+
rawId: z.ZodString;
|
|
1197
|
+
type: z.ZodLiteral<"public-key">;
|
|
1198
|
+
response: z.ZodObject<{
|
|
1199
|
+
clientDataJSON: z.ZodString;
|
|
1200
|
+
attestationObject: z.ZodString;
|
|
1201
|
+
transports: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1202
|
+
usb: "usb";
|
|
1203
|
+
nfc: "nfc";
|
|
1204
|
+
ble: "ble";
|
|
1205
|
+
internal: "internal";
|
|
1206
|
+
hybrid: "hybrid";
|
|
1207
|
+
}>>>;
|
|
1208
|
+
}, z.core.$strip>;
|
|
1209
|
+
authenticatorAttachment: z.ZodOptional<z.ZodEnum<{
|
|
1210
|
+
platform: "platform";
|
|
1211
|
+
"cross-platform": "cross-platform";
|
|
1212
|
+
}>>;
|
|
1213
|
+
}, z.core.$strip>;
|
|
1214
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1215
|
+
}, z.core.$strip>;
|
|
1216
|
+
declare const inviteRegisterOptionsBody: z.ZodObject<{
|
|
1217
|
+
token: z.ZodString;
|
|
1218
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1219
|
+
}, z.core.$strip>;
|
|
1220
|
+
declare const magicLinkSendBody: z.ZodObject<{
|
|
1221
|
+
email: z.ZodString;
|
|
1222
|
+
}, z.core.$strip>;
|
|
1223
|
+
declare const passkeyOptionsBody: z.ZodObject<{
|
|
1224
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1225
|
+
}, z.core.$strip>;
|
|
1226
|
+
declare const passkeyVerifyBody: z.ZodObject<{
|
|
1227
|
+
credential: z.ZodObject<{
|
|
1228
|
+
id: z.ZodString;
|
|
1229
|
+
rawId: z.ZodString;
|
|
1230
|
+
type: z.ZodLiteral<"public-key">;
|
|
1231
|
+
response: z.ZodObject<{
|
|
1232
|
+
clientDataJSON: z.ZodString;
|
|
1233
|
+
authenticatorData: z.ZodString;
|
|
1234
|
+
signature: z.ZodString;
|
|
1235
|
+
userHandle: z.ZodOptional<z.ZodString>;
|
|
1236
|
+
}, z.core.$strip>;
|
|
1237
|
+
authenticatorAttachment: z.ZodOptional<z.ZodEnum<{
|
|
1238
|
+
platform: "platform";
|
|
1239
|
+
"cross-platform": "cross-platform";
|
|
1240
|
+
}>>;
|
|
1241
|
+
}, z.core.$strip>;
|
|
1242
|
+
}, z.core.$strip>;
|
|
1243
|
+
declare const passkeyRegisterOptionsBody: z.ZodObject<{
|
|
1244
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1245
|
+
}, z.core.$strip>;
|
|
1246
|
+
declare const passkeyRegisterVerifyBody: z.ZodObject<{
|
|
1247
|
+
credential: z.ZodObject<{
|
|
1248
|
+
id: z.ZodString;
|
|
1249
|
+
rawId: z.ZodString;
|
|
1250
|
+
type: z.ZodLiteral<"public-key">;
|
|
1251
|
+
response: z.ZodObject<{
|
|
1252
|
+
clientDataJSON: z.ZodString;
|
|
1253
|
+
attestationObject: z.ZodString;
|
|
1254
|
+
transports: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1255
|
+
usb: "usb";
|
|
1256
|
+
nfc: "nfc";
|
|
1257
|
+
ble: "ble";
|
|
1258
|
+
internal: "internal";
|
|
1259
|
+
hybrid: "hybrid";
|
|
1260
|
+
}>>>;
|
|
1261
|
+
}, z.core.$strip>;
|
|
1262
|
+
authenticatorAttachment: z.ZodOptional<z.ZodEnum<{
|
|
1263
|
+
platform: "platform";
|
|
1264
|
+
"cross-platform": "cross-platform";
|
|
1265
|
+
}>>;
|
|
1266
|
+
}, z.core.$strip>;
|
|
1267
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
}, z.core.$strip>;
|
|
1269
|
+
declare const passkeyRenameBody: z.ZodObject<{
|
|
1270
|
+
name: z.ZodString;
|
|
1271
|
+
}, z.core.$strip>;
|
|
1272
|
+
declare const authMeActionBody: z.ZodObject<{
|
|
1273
|
+
action: z.ZodString;
|
|
1274
|
+
}, z.core.$strip>;
|
|
1275
|
+
//#endregion
|
|
1276
|
+
//#region src/api/schemas/menus.d.ts
|
|
1277
|
+
declare const createMenuBody: z.ZodObject<{
|
|
1278
|
+
name: z.ZodString;
|
|
1279
|
+
label: z.ZodString;
|
|
1280
|
+
}, z.core.$strip>;
|
|
1281
|
+
declare const updateMenuBody: z.ZodObject<{
|
|
1282
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1283
|
+
}, z.core.$strip>;
|
|
1284
|
+
declare const createMenuItemBody: z.ZodObject<{
|
|
1285
|
+
type: z.ZodString;
|
|
1286
|
+
label: z.ZodString;
|
|
1287
|
+
referenceCollection: z.ZodOptional<z.ZodString>;
|
|
1288
|
+
referenceId: z.ZodOptional<z.ZodString>;
|
|
1289
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
1290
|
+
target: z.ZodOptional<z.ZodString>;
|
|
1291
|
+
titleAttr: z.ZodOptional<z.ZodString>;
|
|
1292
|
+
cssClasses: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
1295
|
+
}, z.core.$strip>;
|
|
1296
|
+
declare const updateMenuItemBody: z.ZodObject<{
|
|
1297
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1298
|
+
customUrl: z.ZodOptional<z.ZodString>;
|
|
1299
|
+
target: z.ZodOptional<z.ZodString>;
|
|
1300
|
+
titleAttr: z.ZodOptional<z.ZodString>;
|
|
1301
|
+
cssClasses: z.ZodOptional<z.ZodString>;
|
|
1302
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1303
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
1304
|
+
}, z.core.$strip>;
|
|
1305
|
+
declare const menuItemDeleteQuery: z.ZodObject<{
|
|
1306
|
+
id: z.ZodString;
|
|
1307
|
+
}, z.core.$strip>;
|
|
1308
|
+
declare const menuItemUpdateQuery: z.ZodObject<{
|
|
1309
|
+
id: z.ZodString;
|
|
1310
|
+
}, z.core.$strip>;
|
|
1311
|
+
declare const reorderMenuItemsBody: z.ZodObject<{
|
|
1312
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1313
|
+
id: z.ZodString;
|
|
1314
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
1315
|
+
sortOrder: z.ZodNumber;
|
|
1316
|
+
}, z.core.$strip>>;
|
|
1317
|
+
}, z.core.$strip>;
|
|
1318
|
+
declare const menuSchema: z.ZodObject<{
|
|
1319
|
+
id: z.ZodString;
|
|
1320
|
+
name: z.ZodString;
|
|
1321
|
+
label: z.ZodString;
|
|
1322
|
+
created_at: z.ZodString;
|
|
1323
|
+
updated_at: z.ZodString;
|
|
1324
|
+
}, z.core.$strip>;
|
|
1325
|
+
declare const menuItemSchema: z.ZodObject<{
|
|
1326
|
+
id: z.ZodString;
|
|
1327
|
+
menu_id: z.ZodString;
|
|
1328
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
1329
|
+
sort_order: z.ZodNumber;
|
|
1330
|
+
type: z.ZodString;
|
|
1331
|
+
reference_collection: z.ZodNullable<z.ZodString>;
|
|
1332
|
+
reference_id: z.ZodNullable<z.ZodString>;
|
|
1333
|
+
custom_url: z.ZodNullable<z.ZodString>;
|
|
1334
|
+
label: z.ZodString;
|
|
1335
|
+
title_attr: z.ZodNullable<z.ZodString>;
|
|
1336
|
+
target: z.ZodNullable<z.ZodString>;
|
|
1337
|
+
css_classes: z.ZodNullable<z.ZodString>;
|
|
1338
|
+
created_at: z.ZodString;
|
|
1339
|
+
}, z.core.$strip>;
|
|
1340
|
+
declare const menuListItemSchema: z.ZodObject<{
|
|
1341
|
+
id: z.ZodString;
|
|
1342
|
+
name: z.ZodString;
|
|
1343
|
+
label: z.ZodString;
|
|
1344
|
+
created_at: z.ZodString;
|
|
1345
|
+
updated_at: z.ZodString;
|
|
1346
|
+
itemCount: z.ZodNumber;
|
|
1347
|
+
}, z.core.$strip>;
|
|
1348
|
+
declare const menuWithItemsSchema: z.ZodObject<{
|
|
1349
|
+
id: z.ZodString;
|
|
1350
|
+
name: z.ZodString;
|
|
1351
|
+
label: z.ZodString;
|
|
1352
|
+
created_at: z.ZodString;
|
|
1353
|
+
updated_at: z.ZodString;
|
|
1354
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1355
|
+
id: z.ZodString;
|
|
1356
|
+
menu_id: z.ZodString;
|
|
1357
|
+
parent_id: z.ZodNullable<z.ZodString>;
|
|
1358
|
+
sort_order: z.ZodNumber;
|
|
1359
|
+
type: z.ZodString;
|
|
1360
|
+
reference_collection: z.ZodNullable<z.ZodString>;
|
|
1361
|
+
reference_id: z.ZodNullable<z.ZodString>;
|
|
1362
|
+
custom_url: z.ZodNullable<z.ZodString>;
|
|
1363
|
+
label: z.ZodString;
|
|
1364
|
+
title_attr: z.ZodNullable<z.ZodString>;
|
|
1365
|
+
target: z.ZodNullable<z.ZodString>;
|
|
1366
|
+
css_classes: z.ZodNullable<z.ZodString>;
|
|
1367
|
+
created_at: z.ZodString;
|
|
1368
|
+
}, z.core.$strip>>;
|
|
1369
|
+
}, z.core.$strip>;
|
|
1370
|
+
//#endregion
|
|
1371
|
+
//#region src/api/schemas/taxonomies.d.ts
|
|
1372
|
+
declare const createTaxonomyDefBody: z.ZodObject<{
|
|
1373
|
+
name: z.ZodString;
|
|
1374
|
+
label: z.ZodString;
|
|
1375
|
+
hierarchical: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1376
|
+
collections: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
1377
|
+
}, z.core.$strip>;
|
|
1378
|
+
declare const createTermBody: z.ZodObject<{
|
|
1379
|
+
slug: z.ZodString;
|
|
1380
|
+
label: z.ZodString;
|
|
1381
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1382
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1383
|
+
}, z.core.$strip>;
|
|
1384
|
+
declare const updateTermBody: z.ZodObject<{
|
|
1385
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1386
|
+
label: z.ZodOptional<z.ZodString>;
|
|
1387
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1388
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1389
|
+
}, z.core.$strip>;
|
|
1390
|
+
declare const taxonomyDefSchema: z.ZodObject<{
|
|
1391
|
+
id: z.ZodString;
|
|
1392
|
+
name: z.ZodString;
|
|
1393
|
+
label: z.ZodString;
|
|
1394
|
+
labelSingular: z.ZodOptional<z.ZodString>;
|
|
1395
|
+
hierarchical: z.ZodBoolean;
|
|
1396
|
+
collections: z.ZodArray<z.ZodString>;
|
|
1397
|
+
}, z.core.$strip>;
|
|
1398
|
+
declare const taxonomyListResponseSchema: z.ZodObject<{
|
|
1399
|
+
taxonomies: z.ZodArray<z.ZodObject<{
|
|
1400
|
+
id: z.ZodString;
|
|
1401
|
+
name: z.ZodString;
|
|
1402
|
+
label: z.ZodString;
|
|
1403
|
+
labelSingular: z.ZodOptional<z.ZodString>;
|
|
1404
|
+
hierarchical: z.ZodBoolean;
|
|
1405
|
+
collections: z.ZodArray<z.ZodString>;
|
|
1406
|
+
}, z.core.$strip>>;
|
|
1407
|
+
}, z.core.$strip>;
|
|
1408
|
+
declare const termSchema: z.ZodObject<{
|
|
1409
|
+
id: z.ZodString;
|
|
1410
|
+
name: z.ZodString;
|
|
1411
|
+
slug: z.ZodString;
|
|
1412
|
+
label: z.ZodString;
|
|
1413
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
1414
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1415
|
+
}, z.core.$strip>;
|
|
1416
|
+
declare const termWithCountSchema: z.ZodType;
|
|
1417
|
+
declare const termListResponseSchema: z.ZodObject<{
|
|
1418
|
+
terms: z.ZodArray<z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
1419
|
+
}, z.core.$strip>;
|
|
1420
|
+
declare const termResponseSchema: z.ZodObject<{
|
|
1421
|
+
term: z.ZodObject<{
|
|
1422
|
+
id: z.ZodString;
|
|
1423
|
+
name: z.ZodString;
|
|
1424
|
+
slug: z.ZodString;
|
|
1425
|
+
label: z.ZodString;
|
|
1426
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
1427
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1428
|
+
}, z.core.$strip>;
|
|
1429
|
+
}, z.core.$strip>;
|
|
1430
|
+
declare const termGetResponseSchema: z.ZodObject<{
|
|
1431
|
+
term: z.ZodObject<{
|
|
1432
|
+
id: z.ZodString;
|
|
1433
|
+
name: z.ZodString;
|
|
1434
|
+
slug: z.ZodString;
|
|
1435
|
+
label: z.ZodString;
|
|
1436
|
+
parentId: z.ZodNullable<z.ZodString>;
|
|
1437
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1438
|
+
count: z.ZodNumber;
|
|
1439
|
+
children: z.ZodArray<z.ZodObject<{
|
|
1440
|
+
id: z.ZodString;
|
|
1441
|
+
slug: z.ZodString;
|
|
1442
|
+
label: z.ZodString;
|
|
1443
|
+
}, z.core.$strip>>;
|
|
1444
|
+
}, z.core.$strip>;
|
|
1445
|
+
}, z.core.$strip>;
|
|
1446
|
+
//#endregion
|
|
1447
|
+
//#region src/api/schemas/sections.d.ts
|
|
1448
|
+
declare const sectionsListQuery: z.ZodObject<{
|
|
1449
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
1450
|
+
theme: "theme";
|
|
1451
|
+
user: "user";
|
|
1452
|
+
import: "import";
|
|
1453
|
+
}>>;
|
|
1454
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1455
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
1456
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1457
|
+
}, z.core.$strip>;
|
|
1458
|
+
declare const createSectionBody: z.ZodObject<{
|
|
1459
|
+
slug: z.ZodString;
|
|
1460
|
+
title: z.ZodString;
|
|
1461
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1462
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1463
|
+
content: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1464
|
+
previewMediaId: z.ZodOptional<z.ZodString>;
|
|
1465
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
1466
|
+
user: "user";
|
|
1467
|
+
import: "import";
|
|
1468
|
+
}>>;
|
|
1469
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
1470
|
+
}, z.core.$strip>;
|
|
1471
|
+
declare const updateSectionBody: z.ZodObject<{
|
|
1472
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1473
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1474
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1475
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1476
|
+
content: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1477
|
+
previewMediaId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1478
|
+
}, z.core.$strip>;
|
|
1479
|
+
declare const sectionSchema: z.ZodObject<{
|
|
1480
|
+
id: z.ZodString;
|
|
1481
|
+
slug: z.ZodString;
|
|
1482
|
+
title: z.ZodString;
|
|
1483
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1484
|
+
keywords: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1485
|
+
content: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1486
|
+
previewMediaId: z.ZodNullable<z.ZodString>;
|
|
1487
|
+
source: z.ZodString;
|
|
1488
|
+
themeId: z.ZodNullable<z.ZodString>;
|
|
1489
|
+
createdAt: z.ZodString;
|
|
1490
|
+
updatedAt: z.ZodString;
|
|
1491
|
+
}, z.core.$strip>;
|
|
1492
|
+
declare const sectionListResponseSchema: z.ZodObject<{
|
|
1493
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1494
|
+
id: z.ZodString;
|
|
1495
|
+
slug: z.ZodString;
|
|
1496
|
+
title: z.ZodString;
|
|
1497
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1498
|
+
keywords: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1499
|
+
content: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1500
|
+
previewMediaId: z.ZodNullable<z.ZodString>;
|
|
1501
|
+
source: z.ZodString;
|
|
1502
|
+
themeId: z.ZodNullable<z.ZodString>;
|
|
1503
|
+
createdAt: z.ZodString;
|
|
1504
|
+
updatedAt: z.ZodString;
|
|
1505
|
+
}, z.core.$strip>>;
|
|
1506
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
1507
|
+
}, z.core.$strip>;
|
|
1508
|
+
//#endregion
|
|
1509
|
+
//#region src/api/schemas/settings.d.ts
|
|
1510
|
+
declare const settingsUpdateBody: z.ZodObject<{
|
|
1511
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1512
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1513
|
+
logo: z.ZodOptional<z.ZodObject<{
|
|
1514
|
+
mediaId: z.ZodString;
|
|
1515
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1516
|
+
}, z.core.$strip>>;
|
|
1517
|
+
favicon: z.ZodOptional<z.ZodObject<{
|
|
1518
|
+
mediaId: z.ZodString;
|
|
1519
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1520
|
+
}, z.core.$strip>>;
|
|
1521
|
+
url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"">]>>;
|
|
1522
|
+
postsPerPage: z.ZodOptional<z.ZodNumber>;
|
|
1523
|
+
dateFormat: z.ZodOptional<z.ZodString>;
|
|
1524
|
+
timezone: z.ZodOptional<z.ZodString>;
|
|
1525
|
+
social: z.ZodOptional<z.ZodObject<{
|
|
1526
|
+
twitter: z.ZodOptional<z.ZodString>;
|
|
1527
|
+
github: z.ZodOptional<z.ZodString>;
|
|
1528
|
+
facebook: z.ZodOptional<z.ZodString>;
|
|
1529
|
+
instagram: z.ZodOptional<z.ZodString>;
|
|
1530
|
+
linkedin: z.ZodOptional<z.ZodString>;
|
|
1531
|
+
youtube: z.ZodOptional<z.ZodString>;
|
|
1532
|
+
}, z.core.$strip>>;
|
|
1533
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
1534
|
+
titleSeparator: z.ZodOptional<z.ZodString>;
|
|
1535
|
+
defaultOgImage: z.ZodOptional<z.ZodObject<{
|
|
1536
|
+
mediaId: z.ZodString;
|
|
1537
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1538
|
+
}, z.core.$strip>>;
|
|
1539
|
+
robotsTxt: z.ZodOptional<z.ZodString>;
|
|
1540
|
+
googleVerification: z.ZodOptional<z.ZodString>;
|
|
1541
|
+
bingVerification: z.ZodOptional<z.ZodString>;
|
|
1542
|
+
}, z.core.$strip>>;
|
|
1543
|
+
}, z.core.$strip>;
|
|
1544
|
+
declare const siteSettingsSchema: z.ZodObject<{
|
|
1545
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1546
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1547
|
+
logo: z.ZodOptional<z.ZodObject<{
|
|
1548
|
+
mediaId: z.ZodString;
|
|
1549
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1550
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1551
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
1552
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1553
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1554
|
+
}, z.core.$strip>>;
|
|
1555
|
+
favicon: z.ZodOptional<z.ZodObject<{
|
|
1556
|
+
mediaId: z.ZodString;
|
|
1557
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1558
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1559
|
+
contentType: z.ZodOptional<z.ZodString>;
|
|
1560
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1561
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1562
|
+
}, z.core.$strip>>;
|
|
1563
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1564
|
+
postsPerPage: z.ZodOptional<z.ZodNumber>;
|
|
1565
|
+
dateFormat: z.ZodOptional<z.ZodString>;
|
|
1566
|
+
timezone: z.ZodOptional<z.ZodString>;
|
|
1567
|
+
social: z.ZodOptional<z.ZodObject<{
|
|
1568
|
+
twitter: z.ZodOptional<z.ZodString>;
|
|
1569
|
+
github: z.ZodOptional<z.ZodString>;
|
|
1570
|
+
facebook: z.ZodOptional<z.ZodString>;
|
|
1571
|
+
instagram: z.ZodOptional<z.ZodString>;
|
|
1572
|
+
linkedin: z.ZodOptional<z.ZodString>;
|
|
1573
|
+
youtube: z.ZodOptional<z.ZodString>;
|
|
1574
|
+
}, z.core.$strip>>;
|
|
1575
|
+
seo: z.ZodOptional<z.ZodObject<{
|
|
1576
|
+
titleSeparator: z.ZodOptional<z.ZodString>;
|
|
1577
|
+
defaultOgImage: z.ZodOptional<z.ZodObject<{
|
|
1578
|
+
mediaId: z.ZodString;
|
|
1579
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
1580
|
+
}, z.core.$strip>>;
|
|
1581
|
+
robotsTxt: z.ZodOptional<z.ZodString>;
|
|
1582
|
+
googleVerification: z.ZodOptional<z.ZodString>;
|
|
1583
|
+
bingVerification: z.ZodOptional<z.ZodString>;
|
|
1584
|
+
}, z.core.$strip>>;
|
|
1585
|
+
}, z.core.$strip>;
|
|
1586
|
+
//#endregion
|
|
1587
|
+
//#region src/api/schemas/search.d.ts
|
|
1588
|
+
declare const searchQuery: z.ZodObject<{
|
|
1589
|
+
q: z.ZodString;
|
|
1590
|
+
collections: z.ZodOptional<z.ZodString>;
|
|
1591
|
+
status: z.ZodOptional<z.ZodString>;
|
|
1592
|
+
locale: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
1593
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1594
|
+
}, z.core.$strip>;
|
|
1595
|
+
declare const searchSuggestQuery: z.ZodObject<{
|
|
1596
|
+
q: z.ZodString;
|
|
1597
|
+
collections: z.ZodOptional<z.ZodString>;
|
|
1598
|
+
locale: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
|
|
1599
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1600
|
+
}, z.core.$strip>;
|
|
1601
|
+
declare const searchRebuildBody: z.ZodObject<{
|
|
1602
|
+
collection: z.ZodString;
|
|
1603
|
+
}, z.core.$strip>;
|
|
1604
|
+
declare const searchEnableBody: z.ZodObject<{
|
|
1605
|
+
collection: z.ZodString;
|
|
1606
|
+
enabled: z.ZodBoolean;
|
|
1607
|
+
weights: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1608
|
+
}, z.core.$strip>;
|
|
1609
|
+
declare const searchResultSchema: z.ZodObject<{
|
|
1610
|
+
collection: z.ZodString;
|
|
1611
|
+
id: z.ZodString;
|
|
1612
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
1613
|
+
locale: z.ZodString;
|
|
1614
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1615
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
1616
|
+
score: z.ZodNumber;
|
|
1617
|
+
}, z.core.$strip>;
|
|
1618
|
+
declare const searchResponseSchema: z.ZodObject<{
|
|
1619
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1620
|
+
collection: z.ZodString;
|
|
1621
|
+
id: z.ZodString;
|
|
1622
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
1623
|
+
locale: z.ZodString;
|
|
1624
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1625
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
score: z.ZodNumber;
|
|
1627
|
+
}, z.core.$strip>>;
|
|
1628
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
1629
|
+
}, z.core.$strip>;
|
|
1630
|
+
//#endregion
|
|
1631
|
+
//#region src/api/schemas/import.d.ts
|
|
1632
|
+
declare const importProbeBody: z.ZodObject<{
|
|
1633
|
+
url: z.ZodString;
|
|
1634
|
+
}, z.core.$strip>;
|
|
1635
|
+
declare const wpPluginAnalyzeBody: z.ZodObject<{
|
|
1636
|
+
url: z.ZodString;
|
|
1637
|
+
token: z.ZodString;
|
|
1638
|
+
}, z.core.$strip>;
|
|
1639
|
+
declare const wpPluginExecuteBody: z.ZodObject<{
|
|
1640
|
+
url: z.ZodString;
|
|
1641
|
+
token: z.ZodString;
|
|
1642
|
+
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1643
|
+
}, z.core.$strip>;
|
|
1644
|
+
declare const wpPrepareBody: z.ZodObject<{
|
|
1645
|
+
postTypes: z.ZodArray<z.ZodObject<{
|
|
1646
|
+
name: z.ZodString;
|
|
1647
|
+
collection: z.ZodString;
|
|
1648
|
+
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1649
|
+
slug: z.ZodString;
|
|
1650
|
+
label: z.ZodString;
|
|
1651
|
+
type: z.ZodString;
|
|
1652
|
+
required: z.ZodBoolean;
|
|
1653
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1654
|
+
}, z.core.$strip>>>;
|
|
1655
|
+
}, z.core.$strip>>;
|
|
1656
|
+
}, z.core.$strip>;
|
|
1657
|
+
declare const wpMediaImportBody: z.ZodObject<{
|
|
1658
|
+
attachments: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1659
|
+
stream: z.ZodOptional<z.ZodBoolean>;
|
|
1660
|
+
}, z.core.$strip>;
|
|
1661
|
+
declare const wpRewriteUrlsBody: z.ZodObject<{
|
|
1662
|
+
urlMap: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1663
|
+
collections: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1664
|
+
}, z.core.$strip>;
|
|
1665
|
+
//#endregion
|
|
1666
|
+
//#region src/api/schemas/users.d.ts
|
|
1667
|
+
declare const usersListQuery: z.ZodObject<{
|
|
1668
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1669
|
+
role: z.ZodOptional<z.ZodString>;
|
|
1670
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1671
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
1672
|
+
}, z.core.$strip>;
|
|
1673
|
+
declare const userUpdateBody: z.ZodObject<{
|
|
1674
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1675
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1676
|
+
role: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>>;
|
|
1677
|
+
}, z.core.$strip>;
|
|
1678
|
+
declare const allowedDomainCreateBody: z.ZodObject<{
|
|
1679
|
+
domain: z.ZodString;
|
|
1680
|
+
defaultRole: z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>;
|
|
1681
|
+
}, z.core.$strip>;
|
|
1682
|
+
declare const allowedDomainUpdateBody: z.ZodObject<{
|
|
1683
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1684
|
+
defaultRole: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>>;
|
|
1685
|
+
}, z.core.$strip>;
|
|
1686
|
+
declare const userSchema: z.ZodObject<{
|
|
1687
|
+
id: z.ZodString;
|
|
1688
|
+
email: z.ZodString;
|
|
1689
|
+
name: z.ZodNullable<z.ZodString>;
|
|
1690
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1691
|
+
role: z.ZodNumber;
|
|
1692
|
+
emailVerified: z.ZodBoolean;
|
|
1693
|
+
disabled: z.ZodBoolean;
|
|
1694
|
+
createdAt: z.ZodString;
|
|
1695
|
+
updatedAt: z.ZodString;
|
|
1696
|
+
lastLogin: z.ZodNullable<z.ZodString>;
|
|
1697
|
+
credentialCount: z.ZodOptional<z.ZodNumber>;
|
|
1698
|
+
oauthProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1699
|
+
}, z.core.$strip>;
|
|
1700
|
+
declare const userListResponseSchema: z.ZodObject<{
|
|
1701
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1702
|
+
id: z.ZodString;
|
|
1703
|
+
email: z.ZodString;
|
|
1704
|
+
name: z.ZodNullable<z.ZodString>;
|
|
1705
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1706
|
+
role: z.ZodNumber;
|
|
1707
|
+
emailVerified: z.ZodBoolean;
|
|
1708
|
+
disabled: z.ZodBoolean;
|
|
1709
|
+
createdAt: z.ZodString;
|
|
1710
|
+
updatedAt: z.ZodString;
|
|
1711
|
+
lastLogin: z.ZodNullable<z.ZodString>;
|
|
1712
|
+
credentialCount: z.ZodOptional<z.ZodNumber>;
|
|
1713
|
+
oauthProviders: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1714
|
+
}, z.core.$strip>>;
|
|
1715
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
1716
|
+
}, z.core.$strip>;
|
|
1717
|
+
declare const userDetailSchema: z.ZodObject<{
|
|
1718
|
+
id: z.ZodString;
|
|
1719
|
+
email: z.ZodString;
|
|
1720
|
+
name: z.ZodNullable<z.ZodString>;
|
|
1721
|
+
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
1722
|
+
role: z.ZodNumber;
|
|
1723
|
+
emailVerified: z.ZodBoolean;
|
|
1724
|
+
disabled: z.ZodBoolean;
|
|
1725
|
+
createdAt: z.ZodString;
|
|
1726
|
+
updatedAt: z.ZodString;
|
|
1727
|
+
lastLogin: z.ZodNullable<z.ZodString>;
|
|
1728
|
+
credentials: z.ZodArray<z.ZodObject<{
|
|
1729
|
+
id: z.ZodString;
|
|
1730
|
+
name: z.ZodNullable<z.ZodString>;
|
|
1731
|
+
deviceType: z.ZodNullable<z.ZodString>;
|
|
1732
|
+
createdAt: z.ZodString;
|
|
1733
|
+
lastUsedAt: z.ZodString;
|
|
1734
|
+
}, z.core.$strip>>;
|
|
1735
|
+
oauthAccounts: z.ZodArray<z.ZodObject<{
|
|
1736
|
+
provider: z.ZodString;
|
|
1737
|
+
createdAt: z.ZodString;
|
|
1738
|
+
}, z.core.$strip>>;
|
|
1739
|
+
}, z.core.$strip>;
|
|
1740
|
+
//#endregion
|
|
1741
|
+
//#region src/api/schemas/widgets.d.ts
|
|
1742
|
+
declare const createWidgetAreaBody: z.ZodObject<{
|
|
1743
|
+
name: z.ZodString;
|
|
1744
|
+
label: z.ZodString;
|
|
1745
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1746
|
+
}, z.core.$strip>;
|
|
1747
|
+
declare const createWidgetBody: z.ZodObject<{
|
|
1748
|
+
type: z.ZodEnum<{
|
|
1749
|
+
content: "content";
|
|
1750
|
+
menu: "menu";
|
|
1751
|
+
component: "component";
|
|
1752
|
+
}>;
|
|
1753
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1754
|
+
content: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1755
|
+
menuName: z.ZodOptional<z.ZodString>;
|
|
1756
|
+
componentId: z.ZodOptional<z.ZodString>;
|
|
1757
|
+
componentProps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1758
|
+
}, z.core.$strip>;
|
|
1759
|
+
declare const updateWidgetBody: z.ZodObject<{
|
|
1760
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
1761
|
+
content: "content";
|
|
1762
|
+
menu: "menu";
|
|
1763
|
+
component: "component";
|
|
1764
|
+
}>>;
|
|
1765
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1766
|
+
content: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1767
|
+
menuName: z.ZodOptional<z.ZodString>;
|
|
1768
|
+
componentId: z.ZodOptional<z.ZodString>;
|
|
1769
|
+
componentProps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1770
|
+
}, z.core.$strip>;
|
|
1771
|
+
declare const reorderWidgetsBody: z.ZodObject<{
|
|
1772
|
+
widgetIds: z.ZodArray<z.ZodString>;
|
|
1773
|
+
}, z.core.$strip>;
|
|
1774
|
+
declare const widgetAreaSchema: z.ZodObject<{
|
|
1775
|
+
id: z.ZodString;
|
|
1776
|
+
name: z.ZodString;
|
|
1777
|
+
label: z.ZodString;
|
|
1778
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1779
|
+
created_at: z.ZodString;
|
|
1780
|
+
updated_at: z.ZodString;
|
|
1781
|
+
}, z.core.$strip>;
|
|
1782
|
+
declare const widgetSchema: z.ZodObject<{
|
|
1783
|
+
id: z.ZodString;
|
|
1784
|
+
type: z.ZodEnum<{
|
|
1785
|
+
content: "content";
|
|
1786
|
+
menu: "menu";
|
|
1787
|
+
component: "component";
|
|
1788
|
+
}>;
|
|
1789
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1790
|
+
content: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1791
|
+
menuName: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
componentId: z.ZodOptional<z.ZodString>;
|
|
1793
|
+
componentProps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1794
|
+
}, z.core.$strip>;
|
|
1795
|
+
declare const widgetAreaWithWidgetsSchema: z.ZodObject<{
|
|
1796
|
+
id: z.ZodString;
|
|
1797
|
+
name: z.ZodString;
|
|
1798
|
+
label: z.ZodString;
|
|
1799
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1800
|
+
created_at: z.ZodString;
|
|
1801
|
+
updated_at: z.ZodString;
|
|
1802
|
+
widgets: z.ZodArray<z.ZodObject<{
|
|
1803
|
+
id: z.ZodString;
|
|
1804
|
+
type: z.ZodEnum<{
|
|
1805
|
+
content: "content";
|
|
1806
|
+
menu: "menu";
|
|
1807
|
+
component: "component";
|
|
1808
|
+
}>;
|
|
1809
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1810
|
+
content: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1811
|
+
menuName: z.ZodOptional<z.ZodString>;
|
|
1812
|
+
componentId: z.ZodOptional<z.ZodString>;
|
|
1813
|
+
componentProps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1814
|
+
}, z.core.$strip>>;
|
|
1815
|
+
}, z.core.$strip>;
|
|
1816
|
+
declare const widgetAreaWithWidgetsAndCountSchema: z.ZodObject<{
|
|
1817
|
+
id: z.ZodString;
|
|
1818
|
+
name: z.ZodString;
|
|
1819
|
+
label: z.ZodString;
|
|
1820
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1821
|
+
created_at: z.ZodString;
|
|
1822
|
+
updated_at: z.ZodString;
|
|
1823
|
+
widgets: z.ZodArray<z.ZodObject<{
|
|
1824
|
+
id: z.ZodString;
|
|
1825
|
+
type: z.ZodEnum<{
|
|
1826
|
+
content: "content";
|
|
1827
|
+
menu: "menu";
|
|
1828
|
+
component: "component";
|
|
1829
|
+
}>;
|
|
1830
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1831
|
+
content: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1832
|
+
menuName: z.ZodOptional<z.ZodString>;
|
|
1833
|
+
componentId: z.ZodOptional<z.ZodString>;
|
|
1834
|
+
componentProps: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1835
|
+
}, z.core.$strip>>;
|
|
1836
|
+
widgetCount: z.ZodNumber;
|
|
1837
|
+
}, z.core.$strip>;
|
|
1838
|
+
//#endregion
|
|
1839
|
+
//#region src/api/schemas/redirects.d.ts
|
|
1840
|
+
declare const createRedirectBody: z.ZodObject<{
|
|
1841
|
+
source: z.ZodString;
|
|
1842
|
+
destination: z.ZodString;
|
|
1843
|
+
type: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
1844
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1845
|
+
groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1846
|
+
}, z.core.$strip>;
|
|
1847
|
+
declare const updateRedirectBody: z.ZodObject<{
|
|
1848
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1849
|
+
destination: z.ZodOptional<z.ZodString>;
|
|
1850
|
+
type: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1851
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1852
|
+
groupName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1853
|
+
}, z.core.$strip>;
|
|
1854
|
+
declare const redirectsListQuery: z.ZodObject<{
|
|
1855
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1856
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
1857
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1858
|
+
group: z.ZodOptional<z.ZodString>;
|
|
1859
|
+
enabled: z.ZodOptional<z.ZodPipe<z.ZodEnum<{
|
|
1860
|
+
true: "true";
|
|
1861
|
+
false: "false";
|
|
1862
|
+
}>, z.ZodTransform<boolean, "true" | "false">>>;
|
|
1863
|
+
auto: z.ZodOptional<z.ZodPipe<z.ZodEnum<{
|
|
1864
|
+
true: "true";
|
|
1865
|
+
false: "false";
|
|
1866
|
+
}>, z.ZodTransform<boolean, "true" | "false">>>;
|
|
1867
|
+
}, z.core.$strip>;
|
|
1868
|
+
declare const notFoundListQuery: z.ZodObject<{
|
|
1869
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1870
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
1871
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1872
|
+
}, z.core.$strip>;
|
|
1873
|
+
declare const notFoundSummaryQuery: z.ZodObject<{
|
|
1874
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
1875
|
+
}, z.core.$strip>;
|
|
1876
|
+
declare const notFoundPruneBody: z.ZodObject<{
|
|
1877
|
+
olderThan: z.ZodString;
|
|
1878
|
+
}, z.core.$strip>;
|
|
1879
|
+
declare const redirectSchema: z.ZodObject<{
|
|
1880
|
+
id: z.ZodString;
|
|
1881
|
+
source: z.ZodString;
|
|
1882
|
+
destination: z.ZodString;
|
|
1883
|
+
type: z.ZodNumber;
|
|
1884
|
+
isPattern: z.ZodBoolean;
|
|
1885
|
+
enabled: z.ZodBoolean;
|
|
1886
|
+
hits: z.ZodNumber;
|
|
1887
|
+
lastHitAt: z.ZodNullable<z.ZodString>;
|
|
1888
|
+
groupName: z.ZodNullable<z.ZodString>;
|
|
1889
|
+
auto: z.ZodBoolean;
|
|
1890
|
+
createdAt: z.ZodString;
|
|
1891
|
+
updatedAt: z.ZodString;
|
|
1892
|
+
}, z.core.$strip>;
|
|
1893
|
+
declare const redirectListResponseSchema: z.ZodObject<{
|
|
1894
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1895
|
+
id: z.ZodString;
|
|
1896
|
+
source: z.ZodString;
|
|
1897
|
+
destination: z.ZodString;
|
|
1898
|
+
type: z.ZodNumber;
|
|
1899
|
+
isPattern: z.ZodBoolean;
|
|
1900
|
+
enabled: z.ZodBoolean;
|
|
1901
|
+
hits: z.ZodNumber;
|
|
1902
|
+
lastHitAt: z.ZodNullable<z.ZodString>;
|
|
1903
|
+
groupName: z.ZodNullable<z.ZodString>;
|
|
1904
|
+
auto: z.ZodBoolean;
|
|
1905
|
+
createdAt: z.ZodString;
|
|
1906
|
+
updatedAt: z.ZodString;
|
|
1907
|
+
}, z.core.$strip>>;
|
|
1908
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
1909
|
+
loopRedirectIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1910
|
+
}, z.core.$strip>;
|
|
1911
|
+
declare const notFoundEntrySchema: z.ZodObject<{
|
|
1912
|
+
id: z.ZodString;
|
|
1913
|
+
path: z.ZodString;
|
|
1914
|
+
referrer: z.ZodNullable<z.ZodString>;
|
|
1915
|
+
userAgent: z.ZodNullable<z.ZodString>;
|
|
1916
|
+
ip: z.ZodNullable<z.ZodString>;
|
|
1917
|
+
createdAt: z.ZodString;
|
|
1918
|
+
}, z.core.$strip>;
|
|
1919
|
+
declare const notFoundListResponseSchema: z.ZodObject<{
|
|
1920
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1921
|
+
id: z.ZodString;
|
|
1922
|
+
path: z.ZodString;
|
|
1923
|
+
referrer: z.ZodNullable<z.ZodString>;
|
|
1924
|
+
userAgent: z.ZodNullable<z.ZodString>;
|
|
1925
|
+
ip: z.ZodNullable<z.ZodString>;
|
|
1926
|
+
createdAt: z.ZodString;
|
|
1927
|
+
}, z.core.$strip>>;
|
|
1928
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
1929
|
+
}, z.core.$strip>;
|
|
1930
|
+
declare const notFoundSummarySchema: z.ZodObject<{
|
|
1931
|
+
path: z.ZodString;
|
|
1932
|
+
count: z.ZodNumber;
|
|
1933
|
+
lastSeen: z.ZodString;
|
|
1934
|
+
topReferrer: z.ZodNullable<z.ZodString>;
|
|
1935
|
+
}, z.core.$strip>;
|
|
1936
|
+
declare const notFoundSummaryResponseSchema: z.ZodObject<{
|
|
1937
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1938
|
+
path: z.ZodString;
|
|
1939
|
+
count: z.ZodNumber;
|
|
1940
|
+
lastSeen: z.ZodString;
|
|
1941
|
+
topReferrer: z.ZodNullable<z.ZodString>;
|
|
1942
|
+
}, z.core.$strip>>;
|
|
1943
|
+
}, z.core.$strip>;
|
|
1944
|
+
//#endregion
|
|
1945
|
+
//#region src/api/schemas/bylines.d.ts
|
|
1946
|
+
declare const bylineSummarySchema: z.ZodObject<{
|
|
1947
|
+
id: z.ZodString;
|
|
1948
|
+
slug: z.ZodString;
|
|
1949
|
+
displayName: z.ZodString;
|
|
1950
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
1951
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
1952
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
1953
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
1954
|
+
isGuest: z.ZodBoolean;
|
|
1955
|
+
createdAt: z.ZodString;
|
|
1956
|
+
updatedAt: z.ZodString;
|
|
1957
|
+
}, z.core.$strip>;
|
|
1958
|
+
declare const bylineCreditSchema: z.ZodObject<{
|
|
1959
|
+
byline: z.ZodObject<{
|
|
1960
|
+
id: z.ZodString;
|
|
1961
|
+
slug: z.ZodString;
|
|
1962
|
+
displayName: z.ZodString;
|
|
1963
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
1964
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
1965
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
1966
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
1967
|
+
isGuest: z.ZodBoolean;
|
|
1968
|
+
createdAt: z.ZodString;
|
|
1969
|
+
updatedAt: z.ZodString;
|
|
1970
|
+
}, z.core.$strip>;
|
|
1971
|
+
sortOrder: z.ZodNumber;
|
|
1972
|
+
roleLabel: z.ZodNullable<z.ZodString>;
|
|
1973
|
+
source: z.ZodOptional<z.ZodEnum<{
|
|
1974
|
+
explicit: "explicit";
|
|
1975
|
+
inferred: "inferred";
|
|
1976
|
+
}>>;
|
|
1977
|
+
}, z.core.$strip>;
|
|
1978
|
+
declare const contentBylineInputSchema: z.ZodObject<{
|
|
1979
|
+
bylineId: z.ZodString;
|
|
1980
|
+
roleLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1981
|
+
}, z.core.$strip>;
|
|
1982
|
+
declare const bylinesListQuery: z.ZodObject<{
|
|
1983
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1984
|
+
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
1985
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1986
|
+
isGuest: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
1987
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
1988
|
+
}, z.core.$strip>;
|
|
1989
|
+
declare const bylineCreateBody: z.ZodObject<{
|
|
1990
|
+
slug: z.ZodString;
|
|
1991
|
+
displayName: z.ZodString;
|
|
1992
|
+
bio: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1993
|
+
avatarMediaId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1994
|
+
websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1995
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1996
|
+
isGuest: z.ZodOptional<z.ZodBoolean>;
|
|
1997
|
+
}, z.core.$strip>;
|
|
1998
|
+
declare const bylineUpdateBody: z.ZodObject<{
|
|
1999
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
2000
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
2001
|
+
bio: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2002
|
+
avatarMediaId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2003
|
+
websiteUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2004
|
+
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2005
|
+
isGuest: z.ZodOptional<z.ZodBoolean>;
|
|
2006
|
+
}, z.core.$strip>;
|
|
2007
|
+
declare const bylineListResponseSchema: z.ZodObject<{
|
|
2008
|
+
items: z.ZodArray<z.ZodObject<{
|
|
2009
|
+
id: z.ZodString;
|
|
2010
|
+
slug: z.ZodString;
|
|
2011
|
+
displayName: z.ZodString;
|
|
2012
|
+
bio: z.ZodNullable<z.ZodString>;
|
|
2013
|
+
avatarMediaId: z.ZodNullable<z.ZodString>;
|
|
2014
|
+
websiteUrl: z.ZodNullable<z.ZodString>;
|
|
2015
|
+
userId: z.ZodNullable<z.ZodString>;
|
|
2016
|
+
isGuest: z.ZodBoolean;
|
|
2017
|
+
createdAt: z.ZodString;
|
|
2018
|
+
updatedAt: z.ZodString;
|
|
2019
|
+
}, z.core.$strip>>;
|
|
2020
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
2021
|
+
}, z.core.$strip>;
|
|
2022
|
+
//#endregion
|
|
2023
|
+
export { updateSectionBody as $, httpUrl as $n, publicCommentSchema as $t, userDetailSchema as A, contentCompareResponseSchema as An, passkeyVerifyBody as At, wpRewriteUrlsBody as B, contentSeoSchema as Bn, contextEntryListQuery as Bt, updateWidgetBody as C, mediaListQuery as Cn, inviteCreateBody as Ct, widgetSchema as D, mediaUpdateBody as Dn, passkeyRegisterOptionsBody as Dt, widgetAreaWithWidgetsSchema as E, mediaResponseSchema as En, passkeyOptionsBody as Et, importProbeBody as F, contentPreviewUrlBody as Fn, hitlRequestListQuery as Ft, searchResultSchema as G, contentUpdateBody as Gn, commentBulkBody as Gt, searchQuery as H, contentTranslationSchema as Hn, contextEntryStaleQuery as Ht, wpMediaImportBody as I, contentPublishBody as In, hitlRequestResolveBody as It, siteSettingsSchema as J, VALID_ROLE_LEVELS as Jn, commentListQuery as Jt, searchSuggestQuery as K, trashedContentItemSchema as Kn, commentBulkResponseSchema as Kt, wpPluginAnalyzeBody as L, contentResponseSchema as Ln, siteBriefingQuery as Lt, userSchema as M, contentItemSchema as Mn, signupRequestBody as Mt, userUpdateBody as N, contentListQuery as Nn, reviewRequestListQuery as Nt, allowedDomainCreateBody as O, mediaUploadUrlBody as On, passkeyRegisterVerifyBody as Ot, usersListQuery as P, contentListResponseSchema as Pn, reviewRequestResolveBody as Pt, sectionsListQuery as Q, deleteResponseSchema as Qn, publicCommentListResponseSchema as Qt, wpPluginExecuteBody as R, contentScheduleBody as Rn, contextEntryCreateBody as Rt, reorderWidgetsBody as S, mediaItemSchema as Sn, inviteCompleteBody as St, widgetAreaWithWidgetsAndCountSchema as T, mediaProviderListQuery as Tn, magicLinkSendBody as Tt, searchRebuildBody as U, contentTranslationsResponseSchema as Un, contextEntrySupersedeBody as Ut, searchEnableBody as V, contentTermsBody as Vn, contextEntryReviewBody as Vt, searchResponseSchema as W, contentTrashQuery as Wn, adminCommentListResponseSchema as Wt, sectionListResponseSchema as X, countResponseSchema as Xn, commentStatusBody as Xt, createSectionBody as Y, apiErrorSchema as Yn, commentSchema as Yt, sectionSchema as Z, cursorPaginationQuery as Zn, createCommentBody as Zt, redirectSchema as _, DEFAULT_MAX_UPLOAD_SIZE as _n, menuWithItemsSchema as _t, bylineUpdateBody as a, createCollectionBody as an, termListResponseSchema as at, createWidgetAreaBody as b, mediaConfirmResponseSchema as bn, updateMenuItemBody as bt, createRedirectBody as c, fieldReorderBody as cn, termWithCountSchema as ct, notFoundListResponseSchema as d, orphanRegisterBody as dn, createMenuItemBody as dt, collectionGetQuery as en, localeCode as er, createTaxonomyDefBody as et, notFoundPruneBody as f, orphanedTableListResponseSchema as fn, menuItemDeleteQuery as ft, redirectListResponseSchema as g, updateFieldBody as gn, menuSchema as gt, notFoundSummarySchema as h, updateCollectionBody as hn, menuListItemSchema as ht, bylineSummarySchema as i, collectionWithFieldsResponseSchema as in, successEnvelope as ir, termGetResponseSchema as it, userListResponseSchema as j, contentCreateBody as jn, signupCompleteBody as jt, allowedDomainUpdateBody as k, mediaUploadUrlResponseSchema as kn, passkeyRenameBody as kt, notFoundEntrySchema as l, fieldResponseSchema as ln, updateTermBody as lt, notFoundSummaryResponseSchema as m, schemaExportQuery as mn, menuItemUpdateQuery as mt, bylineCreditSchema as n, collectionResponseSchema as nn, roleLevel as nr, taxonomyDefSchema as nt, bylinesListQuery as o, createFieldBody as on, termResponseSchema as ot, notFoundSummaryQuery as p, orphanedTableSchema as pn, menuItemSchema as pt, settingsUpdateBody as q, trashedContentListResponseSchema as qn, commentCountsResponseSchema as qt, bylineListResponseSchema as r, collectionSchema as rn, slugPattern as rr, taxonomyListResponseSchema as rt, contentBylineInputSchema as s, fieldListResponseSchema as sn, termSchema as st, bylineCreateBody as t, collectionListResponseSchema as tn, offsetPaginationQuery as tr, createTermBody as tt, notFoundListQuery as u, fieldSchema as un, createMenuBody as ut, redirectsListQuery as v, formatFileSize as vn, reorderMenuItemsBody as vt, widgetAreaSchema as w, mediaListResponseSchema as wn, inviteRegisterOptionsBody as wt, createWidgetBody as x, mediaExistingResponseSchema as xn, authMeActionBody as xt, updateRedirectBody as y, mediaConfirmBody as yn, updateMenuBody as yt, wpPrepareBody as z, contentSeoInput as zn, contextEntryDiffQuery as zt };
|