dineway 0.1.35 → 0.1.37

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.
Files changed (51) hide show
  1. package/README.md +15 -3
  2. package/dist/api/route-utils.d.mts +1 -1
  3. package/dist/api/schemas/index.d.mts +1 -1
  4. package/dist/{api-Ow6RbraA.mjs → api-DpeH2EYq.mjs} +1 -1
  5. package/dist/astro/index.d.mts +1 -1
  6. package/dist/astro/index.mjs +1 -1
  7. package/dist/astro/middleware/auth.d.mts +1 -1
  8. package/dist/astro/middleware/seed.mjs +1 -1
  9. package/dist/astro/middleware.mjs +4 -4
  10. package/dist/astro/routes/api/admin/plugins/_id_/disable.mjs +1 -1
  11. package/dist/astro/routes/api/admin/plugins/_id_/enable.mjs +1 -1
  12. package/dist/astro/routes/api/admin/plugins/_id_/index.mjs +1 -1
  13. package/dist/astro/routes/api/admin/plugins/_id_/uninstall.mjs +1 -1
  14. package/dist/astro/routes/api/admin/plugins/_id_/update.mjs +1 -1
  15. package/dist/astro/routes/api/admin/plugins/index.mjs +1 -1
  16. package/dist/astro/routes/api/admin/plugins/marketplace/_id_/index.mjs +1 -1
  17. package/dist/astro/routes/api/admin/plugins/marketplace/_id_/install.mjs +1 -1
  18. package/dist/astro/routes/api/admin/plugins/marketplace/index.mjs +1 -1
  19. package/dist/astro/routes/api/admin/plugins/updates.mjs +1 -1
  20. package/dist/astro/routes/api/admin/themes/marketplace/_id_/index.mjs +1 -1
  21. package/dist/astro/routes/api/admin/themes/marketplace/index.mjs +1 -1
  22. package/dist/astro/routes/api/auth/dev-bypass.mjs +1 -1
  23. package/dist/astro/routes/api/content/_collection_/_id_/preview-url.mjs +1 -1
  24. package/dist/astro/routes/api/health.mjs +1 -1
  25. package/dist/astro/routes/api/manifest.mjs +1 -1
  26. package/dist/astro/routes/api/mcp.mjs +1 -1
  27. package/dist/astro/routes/api/openapi.json.mjs +1 -1
  28. package/dist/astro/routes/api/schema/collections/_slug_/fields/_fieldSlug_.mjs +1 -1
  29. package/dist/astro/routes/api/schema/collections/_slug_/fields/index.mjs +1 -1
  30. package/dist/astro/routes/api/schema/collections/_slug_/fields/reorder.mjs +1 -1
  31. package/dist/astro/routes/api/schema/collections/_slug_/index.mjs +1 -1
  32. package/dist/astro/routes/api/schema/collections/index.mjs +1 -1
  33. package/dist/astro/routes/api/schema/orphans/_slug_.mjs +1 -1
  34. package/dist/astro/routes/api/schema/orphans/index.mjs +1 -1
  35. package/dist/astro/routes/api/setup/dev-bypass.mjs +1 -1
  36. package/dist/astro/routes/api/setup/index.mjs +1 -1
  37. package/dist/astro/routes/api/well-known/auth.mjs +1 -1
  38. package/dist/astro/types.d.mts +1 -1
  39. package/dist/{bylines-CtD_p_1z.d.mts → bylines-CNe_OWKA.d.mts} +16 -16
  40. package/dist/cli/index.mjs +302 -72
  41. package/dist/db/index.mjs +1 -1
  42. package/dist/index.d.mts +1 -1
  43. package/dist/index.mjs +3 -3
  44. package/dist/media/local-runtime.d.mts +1 -1
  45. package/dist/plugins/adapt-sandbox-entry.d.mts +1 -1
  46. package/dist/{preview-5HuX6fjF.mjs → preview-BhgxNRWI.mjs} +1 -1
  47. package/dist/{runner-lqEiJbO-.mjs → runner-S3smkgdc.mjs} +15 -2
  48. package/dist/runtime.d.mts +1 -1
  49. package/dist/version-BWhBEejU.mjs +6 -0
  50. package/package.json +2 -2
  51. package/dist/version-q9Wd8cwL.mjs +0 -6
package/README.md CHANGED
@@ -242,9 +242,10 @@ What happens:
242
242
  1. The CLI resolves the restaurant `placeId`. On first publish you can provide only restaurant name and city; the CLI creates a quota-protected anonymous shadow session, searches for the place, and binds the selected place before asking for email verification.
243
243
  2. You verify your email address (Dineway account). The first verified email to publish a `placeId` claims that restaurant site.
244
244
  3. The CLI recovers an existing site by `placeId` for the same owner, or creates the one allowed site for that restaurant.
245
- 4. The site is built, global CDN is configured, and database is provisioned.
246
- 5. You receive a **one-time setup link** to register your admin passkey on the live site.
247
- 6. `DINEWAY_SITE_URL` and `DINEWAY_TOKEN` are saved to your project `.env` automatically so remote CLI commands work out of the box.
245
+ 4. The managed database is provisioned and initialized. Repeat deploys skip migrations and seed when local deploy metadata already matches the current site, database, Dineway migration set, and seed file.
246
+ 5. The site is scanned, changed files are uploaded, global CDN is configured, and remote build progress is polled.
247
+ 6. On first bootstrap issue, you receive a **one-time setup link** to register your admin passkey on the live site.
248
+ 7. `DINEWAY_SITE_URL` and `DINEWAY_TOKEN` are saved to your project `.env` automatically so remote CLI commands work out of the box. Repeat deploys refresh `DINEWAY_TOKEN` from Forgeway's already-issued bootstrap response.
248
249
 
249
250
  Examples:
250
251
 
@@ -254,10 +255,21 @@ npx dineway deploy --restaurant-name "Cafe Star" --city "Seattle" --email chef@e
254
255
 
255
256
  # Authoritative place id; skips place search.
256
257
  npx dineway deploy --place-id ChIJ... --restaurant-name "Cafe Star" --city "Seattle" --email chef@example.com
258
+
259
+ # Show detailed timing and deployment status logs.
260
+ npx dineway deploy --verbose
261
+
262
+ # Force database migrations and seed even when local fingerprint metadata matches.
263
+ npx dineway deploy --force-db-init
264
+
265
+ # Skip seed application during database initialization.
266
+ npx dineway deploy --skip-seed
257
267
  ```
258
268
 
259
269
  The same verified email can republish the same restaurant from a fresh local checkout or a new shadow session. A different verified email is stopped by the restaurant claim check.
260
270
 
271
+ Forgeway deploy excludes local build and planning artifacts such as `.dineway/`, `.astro/`, `.plan/`, `uploads/`, and `data.db*`. Add a project `.dinewayignore` for additional generated files that should not be scanned or uploaded.
272
+
261
273
  > **Important:** Open the setup link in your browser immediately. It lets you register your secure passkey for the live admin panel. If you lose or expire the link, regenerate it with `npx dineway auth setup-link`.
262
274
 
263
275
  ---
@@ -5,7 +5,7 @@ import "../types-BgE6gMFI.mjs";
5
5
  import "../runner-pAnQS6iI.mjs";
6
6
  import "../index-2tBfB_8X.mjs";
7
7
  import "../index-CpbixmRL.mjs";
8
- import "../bylines-CtD_p_1z.mjs";
8
+ import "../bylines-CNe_OWKA.mjs";
9
9
  import "../types-BBETcziA.mjs";
10
10
  import "../validate-BzUCAU2a.mjs";
11
11
  import { Kysely } from "kysely";
@@ -1,3 +1,3 @@
1
- import { $ as updateSectionBody, $n as cursorPaginationQuery, $t as createCommentBody, A as userDetailSchema, An as mediaUploadUrlBody, At as passkeyRegisterVerifyBody, B as wpRewriteUrlsBody, Bn as contentScheduleBody, Bt as contextEntryCreateBody, C as updateWidgetBody, Cn as mediaExistingResponseSchema, Ct as authMeActionBody, D as widgetSchema, Dn as mediaProviderListQuery, Dt as magicLinkSendBody, E as widgetAreaWithWidgetsSchema, En as mediaListResponseSchema, Et as inviteRegisterOptionsBody, F as importProbeBody, Fn as contentListQuery, Ft as reviewRequestListQuery, G as searchResultSchema, Gn as contentTranslationsResponseSchema, Gt as contextEntrySupersedeBody, H as searchQuery, Hn as contentSeoSchema, Ht as contextEntryListQuery, I as wpMediaImportBody, In as contentListResponseSchema, It as reviewRequestResolveBody, J as siteSettingsSchema, Jn as trashedContentItemSchema, Jt as commentBulkResponseSchema, K as searchSuggestQuery, Kn as contentTrashQuery, Kt as adminCommentListResponseSchema, L as wpPluginAnalyzeBody, Ln as contentPreviewUrlBody, Lt as hitlRequestListQuery, M as userSchema, Mn as contentCompareResponseSchema, Mt as passkeyVerifyBody, N as userUpdateBody, Nn as contentCreateBody, Nt as signupCompleteBody, O as allowedDomainCreateBody, On as mediaResponseSchema, Ot as passkeyOptionsBody, P as usersListQuery, Pn as contentItemSchema, Pt as signupRequestBody, Q as sectionsListQuery, Qn as countResponseSchema, Qt as commentStatusBody, R as wpPluginExecuteBody, Rn as contentPublishBody, Rt as hitlRequestResolveBody, S as reorderWidgetsBody, Sn as mediaConfirmResponseSchema, St as updateMenuItemBody, T as widgetAreaWithWidgetsAndCountSchema, Tn as mediaListQuery, Tt as inviteCreateBody, U as searchRebuildBody, Un as contentTermsBody, Ut as contextEntryReviewBody, V as searchEnableBody, Vn as contentSeoInput, Vt as contextEntryDiffQuery, W as searchResponseSchema, Wn as contentTranslationSchema, Wt as contextEntryStaleQuery, X as sectionListResponseSchema, Xn as VALID_ROLE_LEVELS, Xt as commentListQuery, Y as createSectionBody, Yn as trashedContentListResponseSchema, Yt as commentCountsResponseSchema, Z as sectionSchema, Zn as apiErrorSchema, Zt as commentSchema, _ as redirectSchema, _n as updateCollectionBody, _t as menuSchema, a as bylineUpdateBody, an as collectionSchema, ar as roleLevel, at as termGetResponseSchema, b as createWidgetAreaBody, bn as formatFileSize, bt as reorderMenuItemsBody, c as createRedirectBody, cn as createFieldBody, ct as termSchema, d as notFoundListResponseSchema, dn as fieldResponseSchema, dt as updateTermBody, en as publicCommentListResponseSchema, er as deleteResponseSchema, et as createTaxonomyDefBody, f as notFoundPruneBody, fn as fieldSchema, ft as createMenuBody, g as redirectListResponseSchema, gn as schemaExportQuery, gt as menuListItemSchema, h as notFoundSummarySchema, hn as orphanedTableSchema, ht as menuItemTypeEnum, i as bylineSummarySchema, in as collectionResponseSchema, ir as offsetPaginationQuery, it as taxonomyListResponseSchema, j as userListResponseSchema, jn as mediaUploadUrlResponseSchema, jt as passkeyRenameBody, k as allowedDomainUpdateBody, kn as mediaUpdateBody, kt as passkeyRegisterOptionsBody, l as notFoundEntrySchema, ln as fieldListResponseSchema, lt as termTranslationsSchema, m as notFoundSummaryResponseSchema, mn as orphanedTableListResponseSchema, mt as menuItemSchema, n as bylineCreditSchema, nn as collectionGetQuery, nr as localeCode, nt as taxonomyDefSchema, o as bylinesListQuery, on as collectionWithFieldsResponseSchema, or as slugPattern, ot as termListResponseSchema, p as notFoundSummaryQuery, pn as orphanRegisterBody, pt as createMenuItemBody, q as settingsUpdateBody, qn as contentUpdateBody, qt as commentBulkBody, r as bylineListResponseSchema, rn as collectionListResponseSchema, rr as localeFilterQuery, rt as taxonomyDefTranslationsSchema, s as contentBylineInputSchema, sn as createCollectionBody, sr as successEnvelope, st as termResponseSchema, t as bylineCreateBody, tn as publicCommentSchema, tr as httpUrl, tt as createTermBody, u as notFoundListQuery, un as fieldReorderBody, ut as termWithCountSchema, v as redirectsListQuery, vn as updateFieldBody, vt as menuTranslationsSchema, w as widgetAreaSchema, wn as mediaItemSchema, wt as inviteCompleteBody, x as createWidgetBody, xn as mediaConfirmBody, xt as updateMenuBody, y as updateRedirectBody, yn as DEFAULT_MAX_UPLOAD_SIZE, yt as menuWithItemsSchema, z as wpPrepareBody, zn as contentResponseSchema, zt as siteBriefingQuery } from "../../bylines-CtD_p_1z.mjs";
1
+ import { $ as updateSectionBody, $n as cursorPaginationQuery, $t as createCommentBody, A as userDetailSchema, An as mediaUploadUrlBody, At as passkeyRegisterVerifyBody, B as wpRewriteUrlsBody, Bn as contentScheduleBody, Bt as contextEntryCreateBody, C as updateWidgetBody, Cn as mediaExistingResponseSchema, Ct as authMeActionBody, D as widgetSchema, Dn as mediaProviderListQuery, Dt as magicLinkSendBody, E as widgetAreaWithWidgetsSchema, En as mediaListResponseSchema, Et as inviteRegisterOptionsBody, F as importProbeBody, Fn as contentListQuery, Ft as reviewRequestListQuery, G as searchResultSchema, Gn as contentTranslationsResponseSchema, Gt as contextEntrySupersedeBody, H as searchQuery, Hn as contentSeoSchema, Ht as contextEntryListQuery, I as wpMediaImportBody, In as contentListResponseSchema, It as reviewRequestResolveBody, J as siteSettingsSchema, Jn as trashedContentItemSchema, Jt as commentBulkResponseSchema, K as searchSuggestQuery, Kn as contentTrashQuery, Kt as adminCommentListResponseSchema, L as wpPluginAnalyzeBody, Ln as contentPreviewUrlBody, Lt as hitlRequestListQuery, M as userSchema, Mn as contentCompareResponseSchema, Mt as passkeyVerifyBody, N as userUpdateBody, Nn as contentCreateBody, Nt as signupCompleteBody, O as allowedDomainCreateBody, On as mediaResponseSchema, Ot as passkeyOptionsBody, P as usersListQuery, Pn as contentItemSchema, Pt as signupRequestBody, Q as sectionsListQuery, Qn as countResponseSchema, Qt as commentStatusBody, R as wpPluginExecuteBody, Rn as contentPublishBody, Rt as hitlRequestResolveBody, S as reorderWidgetsBody, Sn as mediaConfirmResponseSchema, St as updateMenuItemBody, T as widgetAreaWithWidgetsAndCountSchema, Tn as mediaListQuery, Tt as inviteCreateBody, U as searchRebuildBody, Un as contentTermsBody, Ut as contextEntryReviewBody, V as searchEnableBody, Vn as contentSeoInput, Vt as contextEntryDiffQuery, W as searchResponseSchema, Wn as contentTranslationSchema, Wt as contextEntryStaleQuery, X as sectionListResponseSchema, Xn as VALID_ROLE_LEVELS, Xt as commentListQuery, Y as createSectionBody, Yn as trashedContentListResponseSchema, Yt as commentCountsResponseSchema, Z as sectionSchema, Zn as apiErrorSchema, Zt as commentSchema, _ as redirectSchema, _n as updateCollectionBody, _t as menuSchema, a as bylineUpdateBody, an as collectionSchema, ar as roleLevel, at as termGetResponseSchema, b as createWidgetAreaBody, bn as formatFileSize, bt as reorderMenuItemsBody, c as createRedirectBody, cn as createFieldBody, ct as termSchema, d as notFoundListResponseSchema, dn as fieldResponseSchema, dt as updateTermBody, en as publicCommentListResponseSchema, er as deleteResponseSchema, et as createTaxonomyDefBody, f as notFoundPruneBody, fn as fieldSchema, ft as createMenuBody, g as redirectListResponseSchema, gn as schemaExportQuery, gt as menuListItemSchema, h as notFoundSummarySchema, hn as orphanedTableSchema, ht as menuItemTypeEnum, i as bylineSummarySchema, in as collectionResponseSchema, ir as offsetPaginationQuery, it as taxonomyListResponseSchema, j as userListResponseSchema, jn as mediaUploadUrlResponseSchema, jt as passkeyRenameBody, k as allowedDomainUpdateBody, kn as mediaUpdateBody, kt as passkeyRegisterOptionsBody, l as notFoundEntrySchema, ln as fieldListResponseSchema, lt as termTranslationsSchema, m as notFoundSummaryResponseSchema, mn as orphanedTableListResponseSchema, mt as menuItemSchema, n as bylineCreditSchema, nn as collectionGetQuery, nr as localeCode, nt as taxonomyDefSchema, o as bylinesListQuery, on as collectionWithFieldsResponseSchema, or as slugPattern, ot as termListResponseSchema, p as notFoundSummaryQuery, pn as orphanRegisterBody, pt as createMenuItemBody, q as settingsUpdateBody, qn as contentUpdateBody, qt as commentBulkBody, r as bylineListResponseSchema, rn as collectionListResponseSchema, rr as localeFilterQuery, rt as taxonomyDefTranslationsSchema, s as contentBylineInputSchema, sn as createCollectionBody, sr as successEnvelope, st as termResponseSchema, t as bylineCreateBody, tn as publicCommentSchema, tr as httpUrl, tt as createTermBody, u as notFoundListQuery, un as fieldReorderBody, ut as termWithCountSchema, v as redirectsListQuery, vn as updateFieldBody, vt as menuTranslationsSchema, w as widgetAreaSchema, wn as mediaItemSchema, wt as inviteCompleteBody, x as createWidgetBody, xn as mediaConfirmBody, xt as updateMenuBody, y as updateRedirectBody, yn as DEFAULT_MAX_UPLOAD_SIZE, yt as menuWithItemsSchema, z as wpPrepareBody, zn as contentResponseSchema, zt as siteBriefingQuery } from "../../bylines-CNe_OWKA.mjs";
2
2
  import { atprotoLoginBody, setupAdminBody, setupAdminVerifyBody, setupAtprotoAdminBody, setupBody } from "./setup.mjs";
3
3
  export { DEFAULT_MAX_UPLOAD_SIZE, VALID_ROLE_LEVELS, adminCommentListResponseSchema, allowedDomainCreateBody, allowedDomainUpdateBody, apiErrorSchema, atprotoLoginBody, authMeActionBody, bylineCreateBody, bylineCreditSchema, bylineListResponseSchema, bylineSummarySchema, bylineUpdateBody, bylinesListQuery, collectionGetQuery, collectionListResponseSchema, collectionResponseSchema, collectionSchema, collectionWithFieldsResponseSchema, commentBulkBody, commentBulkResponseSchema, commentCountsResponseSchema, commentListQuery, commentSchema, commentStatusBody, contentBylineInputSchema, contentCompareResponseSchema, contentCreateBody, contentItemSchema, contentListQuery, contentListResponseSchema, contentPreviewUrlBody, contentPublishBody, contentResponseSchema, contentScheduleBody, contentSeoInput, contentSeoSchema, contentTermsBody, contentTranslationSchema, contentTranslationsResponseSchema, contentTrashQuery, contentUpdateBody, contextEntryCreateBody, contextEntryDiffQuery, contextEntryListQuery, contextEntryReviewBody, contextEntryStaleQuery, contextEntrySupersedeBody, countResponseSchema, createCollectionBody, createCommentBody, createFieldBody, createMenuBody, createMenuItemBody, createRedirectBody, createSectionBody, createTaxonomyDefBody, createTermBody, createWidgetAreaBody, createWidgetBody, cursorPaginationQuery, deleteResponseSchema, fieldListResponseSchema, fieldReorderBody, fieldResponseSchema, fieldSchema, formatFileSize, hitlRequestListQuery, hitlRequestResolveBody, httpUrl, importProbeBody, inviteCompleteBody, inviteCreateBody, inviteRegisterOptionsBody, localeCode, localeFilterQuery, magicLinkSendBody, mediaConfirmBody, mediaConfirmResponseSchema, mediaExistingResponseSchema, mediaItemSchema, mediaListQuery, mediaListResponseSchema, mediaProviderListQuery, mediaResponseSchema, mediaUpdateBody, mediaUploadUrlBody, mediaUploadUrlResponseSchema, menuItemSchema, menuItemTypeEnum, menuListItemSchema, menuSchema, menuTranslationsSchema, menuWithItemsSchema, notFoundEntrySchema, notFoundListQuery, notFoundListResponseSchema, notFoundPruneBody, notFoundSummaryQuery, notFoundSummaryResponseSchema, notFoundSummarySchema, offsetPaginationQuery, orphanRegisterBody, orphanedTableListResponseSchema, orphanedTableSchema, passkeyOptionsBody, passkeyRegisterOptionsBody, passkeyRegisterVerifyBody, passkeyRenameBody, passkeyVerifyBody, publicCommentListResponseSchema, publicCommentSchema, redirectListResponseSchema, redirectSchema, redirectsListQuery, reorderMenuItemsBody, reorderWidgetsBody, reviewRequestListQuery, reviewRequestResolveBody, roleLevel, schemaExportQuery, searchEnableBody, searchQuery, searchRebuildBody, searchResponseSchema, searchResultSchema, searchSuggestQuery, sectionListResponseSchema, sectionSchema, sectionsListQuery, settingsUpdateBody, setupAdminBody, setupAdminVerifyBody, setupAtprotoAdminBody, setupBody, signupCompleteBody, signupRequestBody, siteBriefingQuery, siteSettingsSchema, slugPattern, successEnvelope, taxonomyDefSchema, taxonomyDefTranslationsSchema, taxonomyListResponseSchema, termGetResponseSchema, termListResponseSchema, termResponseSchema, termSchema, termTranslationsSchema, termWithCountSchema, trashedContentItemSchema, trashedContentListResponseSchema, updateCollectionBody, updateFieldBody, updateMenuBody, updateMenuItemBody, updateRedirectBody, updateSectionBody, updateTermBody, updateWidgetBody, userDetailSchema, userListResponseSchema, userSchema, userUpdateBody, usersListQuery, widgetAreaSchema, widgetAreaWithWidgetsAndCountSchema, widgetAreaWithWidgetsSchema, widgetSchema, wpMediaImportBody, wpPluginAnalyzeBody, wpPluginExecuteBody, wpPrepareBody, wpRewriteUrlsBody };
@@ -16,7 +16,7 @@ import { n as requestCached } from "./request-cache-BpwuE2ix.mjs";
16
16
  import { u as PluginStateRepository } from "./briefing-Jsxs587i.mjs";
17
17
  import { n as SchemaRegistry, t as SchemaError } from "./registry-i__XP2WV.mjs";
18
18
  import { n as hashString } from "./hash-DFFrkivP.mjs";
19
- import { n as VERSION, t as COMMIT } from "./version-q9Wd8cwL.mjs";
19
+ import { n as VERSION, t as COMMIT } from "./version-BWhBEejU.mjs";
20
20
  import { i as pluginManifestSchema, r as normalizeManifestRoute } from "./manifest-schema-C6fzQoWn.mjs";
21
21
  import { t as DinewayStorageError } from "./types-CNNQ8l0v.mjs";
22
22
  import { sql } from "kysely";
@@ -6,7 +6,7 @@ import "../types-BgE6gMFI.mjs";
6
6
  import "../runner-pAnQS6iI.mjs";
7
7
  import "../index-2tBfB_8X.mjs";
8
8
  import "../index-CpbixmRL.mjs";
9
- import "../bylines-CtD_p_1z.mjs";
9
+ import "../bylines-CNe_OWKA.mjs";
10
10
  import "../types-BBETcziA.mjs";
11
11
  import "../validate-BzUCAU2a.mjs";
12
12
  import { DinewayHandlers, DinewayManifest, ManifestCollection } from "./types.mjs";
@@ -1,4 +1,4 @@
1
- import { n as VERSION, t as COMMIT } from "../version-q9Wd8cwL.mjs";
1
+ import { n as VERSION, t as COMMIT } from "../version-BWhBEejU.mjs";
2
2
  import { t as defaultSeed } from "../default-5A3XVR7L.mjs";
3
3
  import { n as validateAllowedOrigins, r as validateOriginShape } from "../allowed-origins-3RuuoFjC.mjs";
4
4
  import { createRequire } from "node:module";
@@ -5,7 +5,7 @@ import "../../types-BgE6gMFI.mjs";
5
5
  import "../../runner-pAnQS6iI.mjs";
6
6
  import "../../index-2tBfB_8X.mjs";
7
7
  import "../../index-CpbixmRL.mjs";
8
- import "../../bylines-CtD_p_1z.mjs";
8
+ import "../../bylines-CNe_OWKA.mjs";
9
9
  import "../../types-BBETcziA.mjs";
10
10
  import "../../validate-BzUCAU2a.mjs";
11
11
  import { DinewayHandlers } from "../types.mjs";
@@ -1,5 +1,5 @@
1
1
  import "../../dialect-helpers-TkdbkFad.mjs";
2
- import { r as runMigrations } from "../../runner-lqEiJbO-.mjs";
2
+ import { i as runMigrations } from "../../runner-S3smkgdc.mjs";
3
3
  import { t as OptionsRepository } from "../../options-BF11H_FD.mjs";
4
4
  import { ulid } from "ulidx";
5
5
  import { defineMiddleware } from "astro:middleware";
@@ -3,7 +3,7 @@ import { createRecorder, flushRecorder, formatServerTimingHeader, isInstrumentat
3
3
  import "../connection-BCNICDWN.mjs";
4
4
  import { t as validateIdentifier } from "../validate-VPnKoIzW.mjs";
5
5
  import { o as isSqlite } from "../dialect-helpers-TkdbkFad.mjs";
6
- import { r as runMigrations } from "../runner-lqEiJbO-.mjs";
6
+ import { i as runMigrations } from "../runner-S3smkgdc.mjs";
7
7
  import { i as setI18nConfig } from "../config-XW5tMrH8.mjs";
8
8
  import { d as EmailPipeline, g as after, h as definePlugin, m as resolveExclusiveHooks, p as createHookPipeline, u as PluginRouteRegistry } from "../plugins-DCDVDF4B.mjs";
9
9
  import { r as RevisionRepository } from "../content-DvpMad_N.mjs";
@@ -25,7 +25,7 @@ import "../byline-DpNNSjET.mjs";
25
25
  import { t as normalizeMediaValue } from "../normalize-BY_EJnd9.mjs";
26
26
  import "../placeholder-b0Ufu0La.mjs";
27
27
  import "../seo-BPb_reaG.mjs";
28
- import { $ as validateRev, A as handleRevisionGet, B as handleContentDuplicate, D as handleMediaGet, E as handleMediaDelete, F as handleContentCountScheduled, G as handleContentPermanentDelete, H as handleContentGetIncludingTrashed, I as handleContentCountTrashed, J as handleContentSchedule, K as handleContentPublish, L as handleContentCreate, M as handleRevisionRestore, O as handleMediaList, P as handleContentCompare, Q as handleContentUpdate, R as handleContentDelete, T as handleMediaCreate, U as handleContentList, V as handleContentGet, W as handleContentListTrashed, X as handleContentUnpublish, Y as handleContentTranslations, Z as handleContentUnschedule, d as createPluginBundleStore, j as handleRevisionList, k as handleMediaUpdate, q as handleContentRestore, z as handleContentDiscardDraft } from "../api-Ow6RbraA.mjs";
28
+ import { $ as validateRev, A as handleRevisionGet, B as handleContentDuplicate, D as handleMediaGet, E as handleMediaDelete, F as handleContentCountScheduled, G as handleContentPermanentDelete, H as handleContentGetIncludingTrashed, I as handleContentCountTrashed, J as handleContentSchedule, K as handleContentPublish, L as handleContentCreate, M as handleRevisionRestore, O as handleMediaList, P as handleContentCompare, Q as handleContentUpdate, R as handleContentDelete, T as handleMediaCreate, U as handleContentList, V as handleContentGet, W as handleContentListTrashed, X as handleContentUnpublish, Y as handleContentTranslations, Z as handleContentUnschedule, d as createPluginBundleStore, j as handleRevisionList, k as handleMediaUpdate, q as handleContentRestore, z as handleContentDiscardDraft } from "../api-DpeH2EYq.mjs";
29
29
  import { n as requestCached } from "../request-cache-BpwuE2ix.mjs";
30
30
  import "../dashboard-BC9bgPOH.mjs";
31
31
  import { u as PluginStateRepository } from "../briefing-Jsxs587i.mjs";
@@ -37,7 +37,7 @@ import { c as createPublicMediaUrlResolver } from "../settings-DORe02PC.mjs";
37
37
  import "../briefing-DD82WaEy.mjs";
38
38
  import "../review-requests-DuIxM4YM.mjs";
39
39
  import { n as hashString } from "../hash-DFFrkivP.mjs";
40
- import { n as VERSION, t as COMMIT } from "../version-q9Wd8cwL.mjs";
40
+ import { n as VERSION, t as COMMIT } from "../version-BWhBEejU.mjs";
41
41
  import "../query-BnRpB09I.mjs";
42
42
  import "../zod-generator-C4BgFBZV.mjs";
43
43
  import "../schema-U-SeFWwn.mjs";
@@ -51,7 +51,7 @@ import "../parse-D7Tu6ku4.mjs";
51
51
  import "../redirects-x5ol_Qj9.mjs";
52
52
  import "../import-Br7aP9yh.mjs";
53
53
  import { a as invalidateUrlPatternCache } from "../query-DHvNhBhi.mjs";
54
- import "../preview-5HuX6fjF.mjs";
54
+ import "../preview-BhgxNRWI.mjs";
55
55
  import "../parser-egIGEco-.mjs";
56
56
  import { t as getTrustedProxyHeaders } from "../trusted-proxy-Bbm6PLR6.mjs";
57
57
  import { n as sanitizeHeadersForSandbox, t as extractRequestMeta } from "../request-meta-DUGfAeXy.mjs";
@@ -14,7 +14,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
14
14
  import "../../../../../../redirect-BaVvo2te.mjs";
15
15
  import "../../../../../../byline-DpNNSjET.mjs";
16
16
  import "../../../../../../seo-BPb_reaG.mjs";
17
- import "../../../../../../api-Ow6RbraA.mjs";
17
+ import "../../../../../../api-DpeH2EYq.mjs";
18
18
  import "../../../../../../request-cache-BpwuE2ix.mjs";
19
19
  import "../../../../../../dashboard-BC9bgPOH.mjs";
20
20
  import { c as handlePluginGet, o as handlePluginDisable } from "../../../../../../briefing-Jsxs587i.mjs";
@@ -14,7 +14,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
14
14
  import "../../../../../../redirect-BaVvo2te.mjs";
15
15
  import "../../../../../../byline-DpNNSjET.mjs";
16
16
  import "../../../../../../seo-BPb_reaG.mjs";
17
- import "../../../../../../api-Ow6RbraA.mjs";
17
+ import "../../../../../../api-DpeH2EYq.mjs";
18
18
  import "../../../../../../request-cache-BpwuE2ix.mjs";
19
19
  import "../../../../../../dashboard-BC9bgPOH.mjs";
20
20
  import { c as handlePluginGet, s as handlePluginEnable } from "../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../seo-BPb_reaG.mjs";
16
- import "../../../../../../api-Ow6RbraA.mjs";
16
+ import "../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import { c as handlePluginGet } from "../../../../../../briefing-Jsxs587i.mjs";
@@ -14,7 +14,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
14
14
  import "../../../../../../redirect-BaVvo2te.mjs";
15
15
  import "../../../../../../byline-DpNNSjET.mjs";
16
16
  import "../../../../../../seo-BPb_reaG.mjs";
17
- import { a as handleMarketplaceUninstall } from "../../../../../../api-Ow6RbraA.mjs";
17
+ import { a as handleMarketplaceUninstall } from "../../../../../../api-DpeH2EYq.mjs";
18
18
  import "../../../../../../request-cache-BpwuE2ix.mjs";
19
19
  import "../../../../../../dashboard-BC9bgPOH.mjs";
20
20
  import { l as handlePluginList } from "../../../../../../briefing-Jsxs587i.mjs";
@@ -14,7 +14,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
14
14
  import "../../../../../../redirect-BaVvo2te.mjs";
15
15
  import "../../../../../../byline-DpNNSjET.mjs";
16
16
  import "../../../../../../seo-BPb_reaG.mjs";
17
- import { c as handleMarketplaceUpdatePreview, o as handleMarketplaceUpdate } from "../../../../../../api-Ow6RbraA.mjs";
17
+ import { c as handleMarketplaceUpdatePreview, o as handleMarketplaceUpdate } from "../../../../../../api-DpeH2EYq.mjs";
18
18
  import "../../../../../../request-cache-BpwuE2ix.mjs";
19
19
  import "../../../../../../dashboard-BC9bgPOH.mjs";
20
20
  import "../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../seo-BPb_reaG.mjs";
16
- import "../../../../../api-Ow6RbraA.mjs";
16
+ import "../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import { l as handlePluginList } from "../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../../seo-BPb_reaG.mjs";
16
- import { t as handleMarketplaceGetPlugin } from "../../../../../../../api-Ow6RbraA.mjs";
16
+ import { t as handleMarketplaceGetPlugin } from "../../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../../briefing-Jsxs587i.mjs";
@@ -14,7 +14,7 @@ import "../../../../../../../menus-DOaL6NaF.mjs";
14
14
  import "../../../../../../../redirect-BaVvo2te.mjs";
15
15
  import "../../../../../../../byline-DpNNSjET.mjs";
16
16
  import "../../../../../../../seo-BPb_reaG.mjs";
17
- import { n as handleMarketplaceInstall, r as handleMarketplaceInstallPreview } from "../../../../../../../api-Ow6RbraA.mjs";
17
+ import { n as handleMarketplaceInstall, r as handleMarketplaceInstallPreview } from "../../../../../../../api-DpeH2EYq.mjs";
18
18
  import "../../../../../../../request-cache-BpwuE2ix.mjs";
19
19
  import "../../../../../../../dashboard-BC9bgPOH.mjs";
20
20
  import "../../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../seo-BPb_reaG.mjs";
16
- import { i as handleMarketplaceSearch } from "../../../../../../api-Ow6RbraA.mjs";
16
+ import { i as handleMarketplaceSearch } from "../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../seo-BPb_reaG.mjs";
16
- import { s as handleMarketplaceUpdateCheck } from "../../../../../api-Ow6RbraA.mjs";
16
+ import { s as handleMarketplaceUpdateCheck } from "../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../../seo-BPb_reaG.mjs";
16
- import { l as handleThemeGetDetail } from "../../../../../../../api-Ow6RbraA.mjs";
16
+ import { l as handleThemeGetDetail } from "../../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../seo-BPb_reaG.mjs";
16
- import { u as handleThemeSearch } from "../../../../../../api-Ow6RbraA.mjs";
16
+ import { u as handleThemeSearch } from "../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../briefing-Jsxs587i.mjs";
@@ -1,5 +1,5 @@
1
1
  import "../../../../dialect-helpers-TkdbkFad.mjs";
2
- import { r as runMigrations } from "../../../../runner-lqEiJbO-.mjs";
2
+ import { i as runMigrations } from "../../../../runner-S3smkgdc.mjs";
3
3
  import { n as apiSuccess, r as handleError, t as apiError } from "../../../../error-DLkgOP5m.mjs";
4
4
  import { t as escapeHtml } from "../../../../escape-r8_GbEU2.mjs";
5
5
  import { t as isSafeRedirect } from "../../../../redirect-Ce_6Yb6z.mjs";
@@ -8,7 +8,7 @@ import { r as parseOptionalBody, t as isParseError } from "../../../../../../par
8
8
  import { tn as contentPreviewUrlBody } from "../../../../../../redirects-x5ol_Qj9.mjs";
9
9
  import "../../../../../../import-Br7aP9yh.mjs";
10
10
  import "../../../../../../api/schemas/index.mjs";
11
- import { i as getPreviewUrl } from "../../../../../../preview-5HuX6fjF.mjs";
11
+ import { i as getPreviewUrl } from "../../../../../../preview-BhgxNRWI.mjs";
12
12
  import "../../../../../../tokens-CsP8Se8S.mjs";
13
13
  import { i as resolveSecretsCached } from "../../../../../../secrets-DfeNNoLa.mjs";
14
14
  import { n as requirePerm } from "../../../../../../authorize-BbIhZi3a.mjs";
@@ -1,4 +1,4 @@
1
- import { n as VERSION } from "../../../version-q9Wd8cwL.mjs";
1
+ import { n as VERSION } from "../../../version-BWhBEejU.mjs";
2
2
  import { sql } from "kysely";
3
3
 
4
4
  //#region src/astro/routes/api/health.ts
@@ -1,4 +1,4 @@
1
- import { n as VERSION, t as COMMIT } from "../../../version-q9Wd8cwL.mjs";
1
+ import { n as VERSION, t as COMMIT } from "../../../version-BWhBEejU.mjs";
2
2
  import { r as handleError } from "../../../error-DLkgOP5m.mjs";
3
3
  import { t as getAuthMode } from "../../../mode-Bd55iLcP.mjs";
4
4
  import { i as experimentalSiteContextWorkflowsEnabled } from "../../../experimental-workflows-BbZbIEZp.mjs";
@@ -14,7 +14,7 @@ import "../../../fts-manager-DnfOsF4s.mjs";
14
14
  import "../../../registry-i__XP2WV.mjs";
15
15
  import "../../../loader-p2imNN98.mjs";
16
16
  import "../../../settings-DORe02PC.mjs";
17
- import { n as VERSION } from "../../../version-q9Wd8cwL.mjs";
17
+ import { n as VERSION } from "../../../version-BWhBEejU.mjs";
18
18
  import "../../../query-BnRpB09I.mjs";
19
19
  import "../../../zod-generator-C4BgFBZV.mjs";
20
20
  import "../../../schema-U-SeFWwn.mjs";
@@ -1,4 +1,4 @@
1
- import { n as VERSION } from "../../../version-q9Wd8cwL.mjs";
1
+ import { n as VERSION } from "../../../version-BWhBEejU.mjs";
2
2
  import { r as handleError } from "../../../error-DLkgOP5m.mjs";
3
3
  import { $ as createMenuBody, $t as contentListQuery, A as searchRebuildBody, B as updateSectionBody, Bt as mediaConfirmResponseSchema, C as userDetailSchema, D as usersListQuery, Dt as fieldListResponseSchema, E as userUpdateBody, Et as createFieldBody, F as siteSettingsSchema, Ft as updateCollectionBody, G as taxonomyListResponseSchema, H as createTermBody, I as createSectionBody, It as updateFieldBody, J as termResponseSchema, Jt as mediaUploadUrlBody, K as termGetResponseSchema, Kt as mediaResponseSchema, L as sectionListResponseSchema, Lt as DEFAULT_MAX_UPLOAD_SIZE, Mn as successEnvelope, Mt as orphanedTableListResponseSchema, N as searchSuggestQuery, O as searchEnableBody, Ot as fieldReorderBody, P as settingsUpdateBody, Q as updateTermBody, Qt as contentItemSchema, R as sectionSchema, S as allowedDomainUpdateBody, Sn as apiErrorSchema, St as collectionResponseSchema, T as userSchema, Tn as deleteResponseSchema, Tt as createCollectionBody, Ut as mediaListQuery, Vt as mediaExistingResponseSchema, Wt as mediaListResponseSchema, Xt as contentCompareResponseSchema, Yt as mediaUploadUrlResponseSchema, Zt as contentCreateBody, _ as widgetAreaSchema, _t as createCommentBody, a as notFoundPruneBody, b as widgetSchema, bt as collectionGetQuery, ct as updateMenuBody, d as redirectsListQuery, dn as contentUpdateBody, dt as commentBulkBody, en as contentListResponseSchema, et as createMenuItemBody, f as updateRedirectBody, ft as commentBulkResponseSchema, g as updateWidgetBody, gt as commentStatusBody, h as reorderWidgetsBody, ht as commentSchema, i as notFoundListResponseSchema, in as contentScheduleBody, j as searchResponseSchema, jt as orphanRegisterBody, k as searchQuery, kt as fieldResponseSchema, l as redirectListResponseSchema, ln as contentTranslationsResponseSchema, lt as updateMenuItemBody, m as createWidgetBody, mt as commentListQuery, nn as contentPublishBody, ot as menuWithItemsSchema, p as createWidgetAreaBody, pn as trashedContentListResponseSchema, pt as commentCountsResponseSchema, q as termListResponseSchema, qt as mediaUpdateBody, r as notFoundListQuery, rn as contentResponseSchema, rt as menuListItemSchema, s as notFoundSummaryResponseSchema, sn as contentTermsBody, st as reorderMenuItemsBody, t as createRedirectBody, tt as menuItemSchema, u as redirectSchema, un as contentTrashQuery, ut as adminCommentListResponseSchema, v as widgetAreaWithWidgetsAndCountSchema, vt as publicCommentListResponseSchema, w as userListResponseSchema, wt as collectionWithFieldsResponseSchema, x as allowedDomainCreateBody, xt as collectionListResponseSchema, y as widgetAreaWithWidgetsSchema, z as sectionsListQuery, zt as mediaConfirmBody } from "../../../redirects-x5ol_Qj9.mjs";
4
4
  import { z } from "zod";
@@ -13,7 +13,7 @@ import "../../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../../seo-BPb_reaG.mjs";
16
- import { b as handleSchemaFieldDelete, w as handleSchemaFieldUpdate, x as handleSchemaFieldGet } from "../../../../../../../api-Ow6RbraA.mjs";
16
+ import { b as handleSchemaFieldDelete, w as handleSchemaFieldUpdate, x as handleSchemaFieldGet } from "../../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../../seo-BPb_reaG.mjs";
16
- import { S as handleSchemaFieldList, y as handleSchemaFieldCreate } from "../../../../../../../api-Ow6RbraA.mjs";
16
+ import { S as handleSchemaFieldList, y as handleSchemaFieldCreate } from "../../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../../seo-BPb_reaG.mjs";
16
- import { C as handleSchemaFieldReorder } from "../../../../../../../api-Ow6RbraA.mjs";
16
+ import { C as handleSchemaFieldReorder } from "../../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../../seo-BPb_reaG.mjs";
16
- import { g as handleSchemaCollectionGet, h as handleSchemaCollectionDelete, v as handleSchemaCollectionUpdate } from "../../../../../../api-Ow6RbraA.mjs";
16
+ import { g as handleSchemaCollectionGet, h as handleSchemaCollectionDelete, v as handleSchemaCollectionUpdate } from "../../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../seo-BPb_reaG.mjs";
16
- import { _ as handleSchemaCollectionList, m as handleSchemaCollectionCreate } from "../../../../../api-Ow6RbraA.mjs";
16
+ import { _ as handleSchemaCollectionList, m as handleSchemaCollectionCreate } from "../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../seo-BPb_reaG.mjs";
16
- import { p as handleOrphanedTableRegister } from "../../../../../api-Ow6RbraA.mjs";
16
+ import { p as handleOrphanedTableRegister } from "../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../briefing-Jsxs587i.mjs";
@@ -13,7 +13,7 @@ import "../../../../../menus-DOaL6NaF.mjs";
13
13
  import "../../../../../redirect-BaVvo2te.mjs";
14
14
  import "../../../../../byline-DpNNSjET.mjs";
15
15
  import "../../../../../seo-BPb_reaG.mjs";
16
- import { f as handleOrphanedTableList } from "../../../../../api-Ow6RbraA.mjs";
16
+ import { f as handleOrphanedTableList } from "../../../../../api-DpeH2EYq.mjs";
17
17
  import "../../../../../request-cache-BpwuE2ix.mjs";
18
18
  import "../../../../../dashboard-BC9bgPOH.mjs";
19
19
  import "../../../../../briefing-Jsxs587i.mjs";
@@ -1,5 +1,5 @@
1
1
  import "../../../../dialect-helpers-TkdbkFad.mjs";
2
- import { r as runMigrations } from "../../../../runner-lqEiJbO-.mjs";
2
+ import { i as runMigrations } from "../../../../runner-S3smkgdc.mjs";
3
3
  import "../../../../content-DvpMad_N.mjs";
4
4
  import "../../../../base64-C1Q9yr0B.mjs";
5
5
  import "../../../../types-D1DjBFA9.mjs";
@@ -1,5 +1,5 @@
1
1
  import "../../../../dialect-helpers-TkdbkFad.mjs";
2
- import { r as runMigrations } from "../../../../runner-lqEiJbO-.mjs";
2
+ import { i as runMigrations } from "../../../../runner-S3smkgdc.mjs";
3
3
  import "../../../../content-DvpMad_N.mjs";
4
4
  import "../../../../base64-C1Q9yr0B.mjs";
5
5
  import "../../../../types-D1DjBFA9.mjs";
@@ -1,5 +1,5 @@
1
1
  import { t as OptionsRepository } from "../../../../options-BF11H_FD.mjs";
2
- import { n as VERSION } from "../../../../version-q9Wd8cwL.mjs";
2
+ import { n as VERSION } from "../../../../version-BWhBEejU.mjs";
3
3
  import { t as getAuthMode } from "../../../../mode-Bd55iLcP.mjs";
4
4
 
5
5
  //#region src/astro/routes/api/well-known/auth.ts
@@ -8,7 +8,7 @@ import "../runner-pAnQS6iI.mjs";
8
8
  import "../index-2tBfB_8X.mjs";
9
9
  import "../index-CpbixmRL.mjs";
10
10
  import { d as Storage } from "../types-BYjPylrZ.mjs";
11
- import "../bylines-CtD_p_1z.mjs";
11
+ import "../bylines-CNe_OWKA.mjs";
12
12
  import "../types-BBETcziA.mjs";
13
13
  import "../validate-BzUCAU2a.mjs";
14
14
  import "../index.mjs";
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  /** Valid role level values */
5
5
  declare const VALID_ROLE_LEVELS: Set<number>;
6
6
  /** Role level — coerces string/number to valid RoleLevel (10|20|30|40|50) */
7
- declare const roleLevel: z.ZodCoercedNumber<unknown> & z.ZodType<10 | 20 | 30 | 40 | 50, unknown, z.core.$ZodTypeInternals<10 | 20 | 30 | 40 | 50, unknown>>;
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
8
  /** Pagination query params — cursor-based */
9
9
  declare const cursorPaginationQuery: z.ZodObject<{
10
10
  cursor: z.ZodOptional<z.ZodString>;
@@ -517,11 +517,11 @@ declare const createCollectionBody: z.ZodObject<{
517
517
  description: z.ZodOptional<z.ZodString>;
518
518
  icon: z.ZodOptional<z.ZodString>;
519
519
  supports: z.ZodOptional<z.ZodArray<z.ZodEnum<{
520
+ search: "search";
520
521
  drafts: "drafts";
521
522
  revisions: "revisions";
522
523
  preview: "preview";
523
524
  scheduling: "scheduling";
524
- search: "search";
525
525
  }>>>;
526
526
  source: z.ZodOptional<z.ZodString>;
527
527
  urlPattern: z.ZodOptional<z.ZodString>;
@@ -533,11 +533,11 @@ declare const updateCollectionBody: z.ZodObject<{
533
533
  description: z.ZodOptional<z.ZodString>;
534
534
  icon: z.ZodOptional<z.ZodString>;
535
535
  supports: z.ZodOptional<z.ZodArray<z.ZodEnum<{
536
+ search: "search";
536
537
  drafts: "drafts";
537
538
  revisions: "revisions";
538
539
  preview: "preview";
539
540
  scheduling: "scheduling";
540
- search: "search";
541
541
  }>>>;
542
542
  urlPattern: z.ZodOptional<z.ZodNullable<z.ZodString>>;
543
543
  hasSeo: z.ZodOptional<z.ZodBoolean>;
@@ -890,8 +890,8 @@ declare const createCommentBody: z.ZodObject<{
890
890
  }, z.core.$strip>;
891
891
  declare const commentStatusBody: z.ZodObject<{
892
892
  status: z.ZodEnum<{
893
- pending: "pending";
894
893
  approved: "approved";
894
+ pending: "pending";
895
895
  spam: "spam";
896
896
  trash: "trash";
897
897
  }>;
@@ -907,8 +907,8 @@ declare const commentBulkBody: z.ZodObject<{
907
907
  }, z.core.$strip>;
908
908
  declare const commentListQuery: z.ZodObject<{
909
909
  status: z.ZodOptional<z.ZodEnum<{
910
- pending: "pending";
911
910
  approved: "approved";
911
+ pending: "pending";
912
912
  spam: "spam";
913
913
  trash: "trash";
914
914
  }>>;
@@ -942,8 +942,8 @@ declare const commentSchema: z.ZodObject<{
942
942
  authorEmail: z.ZodString;
943
943
  body: z.ZodString;
944
944
  status: z.ZodEnum<{
945
- pending: "pending";
946
945
  approved: "approved";
946
+ pending: "pending";
947
947
  spam: "spam";
948
948
  trash: "trash";
949
949
  }>;
@@ -974,8 +974,8 @@ declare const adminCommentListResponseSchema: z.ZodObject<{
974
974
  authorEmail: z.ZodString;
975
975
  body: z.ZodString;
976
976
  status: z.ZodEnum<{
977
- pending: "pending";
978
977
  approved: "approved";
978
+ pending: "pending";
979
979
  spam: "spam";
980
980
  trash: "trash";
981
981
  }>;
@@ -1020,15 +1020,15 @@ declare const contextEntryListQuery: z.ZodObject<{
1020
1020
  cursor: z.ZodOptional<z.ZodString>;
1021
1021
  }, z.core.$strip>;
1022
1022
  declare const contextEntryStaleQuery: z.ZodObject<{
1023
- cursor: z.ZodOptional<z.ZodString>;
1023
+ contextTypes: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
1024
+ scope: z.ZodOptional<z.ZodString>;
1024
1025
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
1026
+ cursor: z.ZodOptional<z.ZodString>;
1025
1027
  includeInherited: z.ZodPipe<z.ZodOptional<z.ZodEnum<{
1026
1028
  true: "true";
1027
1029
  false: "false";
1028
1030
  }>>, z.ZodTransform<boolean | undefined, "true" | "false" | undefined>>;
1029
- contextTypes: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
1030
1031
  tags: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<string[] | undefined, string | undefined>>;
1031
- scope: z.ZodOptional<z.ZodString>;
1032
1032
  createdByActorType: z.ZodOptional<z.ZodEnum<{
1033
1033
  user: "user";
1034
1034
  api_token: "api_token";
@@ -1115,8 +1115,8 @@ declare const siteBriefingQuery: z.ZodObject<{
1115
1115
  //#region src/api/schemas/hitl-requests.d.ts
1116
1116
  declare const hitlRequestListQuery: z.ZodObject<{
1117
1117
  status: z.ZodOptional<z.ZodEnum<{
1118
- pending: "pending";
1119
1118
  approved: "approved";
1119
+ pending: "pending";
1120
1120
  rejected: "rejected";
1121
1121
  }>>;
1122
1122
  priority: z.ZodOptional<z.ZodEnum<{
@@ -1143,8 +1143,8 @@ declare const hitlRequestResolveBody: z.ZodObject<{
1143
1143
  //#region src/api/schemas/review-requests.d.ts
1144
1144
  declare const reviewRequestListQuery: z.ZodObject<{
1145
1145
  status: z.ZodOptional<z.ZodEnum<{
1146
- pending: "pending";
1147
1146
  approved: "approved";
1147
+ pending: "pending";
1148
1148
  rejected: "rejected";
1149
1149
  }>>;
1150
1150
  collection: z.ZodOptional<z.ZodString>;
@@ -1192,7 +1192,7 @@ declare const signupCompleteBody: z.ZodObject<{
1192
1192
  }, z.core.$strip>;
1193
1193
  declare const inviteCreateBody: z.ZodObject<{
1194
1194
  email: z.ZodString;
1195
- role: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<10 | 20 | 30 | 40 | 50, unknown, z.core.$ZodTypeInternals<10 | 20 | 30 | 40 | 50, unknown>>>;
1195
+ role: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>>;
1196
1196
  }, z.core.$strip>;
1197
1197
  declare const inviteCompleteBody: z.ZodObject<{
1198
1198
  token: z.ZodString;
@@ -1744,15 +1744,15 @@ declare const usersListQuery: z.ZodObject<{
1744
1744
  declare const userUpdateBody: z.ZodObject<{
1745
1745
  name: z.ZodOptional<z.ZodString>;
1746
1746
  email: z.ZodOptional<z.ZodString>;
1747
- role: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<10 | 20 | 30 | 40 | 50, unknown, z.core.$ZodTypeInternals<10 | 20 | 30 | 40 | 50, unknown>>>;
1747
+ role: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>>;
1748
1748
  }, z.core.$strip>;
1749
1749
  declare const allowedDomainCreateBody: z.ZodObject<{
1750
1750
  domain: z.ZodString;
1751
- defaultRole: z.ZodCoercedNumber<unknown> & z.ZodType<10 | 20 | 30 | 40 | 50, unknown, z.core.$ZodTypeInternals<10 | 20 | 30 | 40 | 50, unknown>>;
1751
+ defaultRole: z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>;
1752
1752
  }, z.core.$strip>;
1753
1753
  declare const allowedDomainUpdateBody: z.ZodObject<{
1754
1754
  enabled: z.ZodOptional<z.ZodBoolean>;
1755
- defaultRole: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<10 | 20 | 30 | 40 | 50, unknown, z.core.$ZodTypeInternals<10 | 20 | 30 | 40 | 50, unknown>>>;
1755
+ defaultRole: z.ZodOptional<z.ZodCoercedNumber<unknown> & z.ZodType<50 | 10 | 20 | 30 | 40, unknown, z.core.$ZodTypeInternals<50 | 10 | 20 | 30 | 40, unknown>>>;
1756
1756
  }, z.core.$strip>;
1757
1757
  declare const userSchema: z.ZodObject<{
1758
1758
  id: z.ZodString;