dineway 0.1.16 → 0.1.17
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 +22 -0
- package/dist/api/route-utils.d.mts +2 -2
- package/dist/api/schemas/index.d.mts +1 -1
- package/dist/{api-B5xMY72-.mjs → api-CgxdfUg4.mjs} +1 -1
- package/dist/astro/index.d.mts +2 -2
- package/dist/astro/index.mjs +1 -1
- package/dist/astro/middleware/auth.d.mts +2 -2
- package/dist/astro/middleware.mjs +2 -2
- package/dist/astro/routes/api/admin/plugins/_id_/disable.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/_id_/enable.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/_id_/index.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/_id_/uninstall.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/_id_/update.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/index.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/index.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/marketplace/_id_/install.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/marketplace/index.mjs +1 -1
- package/dist/astro/routes/api/admin/plugins/updates.mjs +1 -1
- package/dist/astro/routes/api/admin/themes/marketplace/_id_/index.mjs +1 -1
- package/dist/astro/routes/api/admin/themes/marketplace/index.mjs +1 -1
- package/dist/astro/routes/api/health.mjs +1 -1
- package/dist/astro/routes/api/manifest.mjs +1 -1
- package/dist/astro/routes/api/mcp.mjs +1 -1
- package/dist/astro/routes/api/openapi.json.mjs +1 -1
- package/dist/astro/routes/api/schema/collections/_slug_/fields/_fieldSlug_.mjs +1 -1
- package/dist/astro/routes/api/schema/collections/_slug_/fields/index.mjs +1 -1
- package/dist/astro/routes/api/schema/collections/_slug_/fields/reorder.mjs +1 -1
- package/dist/astro/routes/api/schema/collections/_slug_/index.mjs +1 -1
- package/dist/astro/routes/api/schema/collections/index.mjs +1 -1
- package/dist/astro/routes/api/schema/orphans/_slug_.mjs +1 -1
- package/dist/astro/routes/api/schema/orphans/index.mjs +1 -1
- package/dist/astro/routes/api/well-known/auth.mjs +1 -1
- package/dist/astro/types.d.mts +2 -2
- package/dist/{bylines-DE9bfDur.d.mts → bylines--KurdDQK.d.mts} +19 -19
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +1 -1
- package/dist/media/local-runtime.d.mts +2 -2
- package/dist/plugins/adapt-sandbox-entry.d.mts +2 -2
- package/dist/{runtime-DY_XmE9Y.d.mts → runtime-B5hJAnKF.d.mts} +2 -2
- package/dist/runtime.d.mts +2 -2
- package/dist/version-CjsyxeBD.mjs +6 -0
- package/package.json +3 -3
- package/dist/version-HdNieFOD.mjs +0 -6
package/README.md
CHANGED
|
@@ -54,6 +54,28 @@ Or add to an existing Astro project:
|
|
|
54
54
|
npm install dineway
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
## Agent Skills
|
|
58
|
+
|
|
59
|
+
Dineway also publishes an agent skill pack for designing, building, and publishing AI-ready restaurant sites. The skills guide agents through place-data enrichment, restaurant information architecture, visual design, Dineway CMS schema and seed content, media upload, local SEO, and deployment.
|
|
60
|
+
|
|
61
|
+
Install the skill pack with `npx skills`:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
npx skills add https://github.com/dineway/dineway-skills
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
For a full restaurant build, invoke the restaurant-site skill with a restaurant name and city:
|
|
68
|
+
|
|
69
|
+
```text
|
|
70
|
+
Use building-restaurant-site to build an AI-ready Dineway restaurant site for "Restaurant Name" in "City, Country".
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
For an existing Dineway project, use the CLI skill to manage schema, content, media, generated types, and deployment:
|
|
74
|
+
|
|
75
|
+
```text
|
|
76
|
+
Use dineway-cli to seed content, generate types, upload media, and deploy this Dineway site.
|
|
77
|
+
```
|
|
78
|
+
|
|
57
79
|
## CLI
|
|
58
80
|
|
|
59
81
|
The Dineway CLI (`dineway`) manages projects and instances. Commands fall into three categories:
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { $n as isParseError, Qn as ParseResult, Zn as OptionsRepository, er as parseBody, ir as handleError, nr as apiError, rr as apiSuccess, t as DinewayConfig, tr as parseQuery } from "../runtime-
|
|
1
|
+
import { $n as isParseError, Qn as ParseResult, Zn as OptionsRepository, er as parseBody, ir as handleError, nr as apiError, rr as apiSuccess, t as DinewayConfig, tr as parseQuery } from "../runtime-B5hJAnKF.mjs";
|
|
2
2
|
import { t as Database } from "../types-CYBaBvtm.mjs";
|
|
3
3
|
import { at as StorageCollectionConfig, it as StorageCollection } from "../types-DS5PYew4.mjs";
|
|
4
4
|
import "../types-B45uSz1j.mjs";
|
|
5
5
|
import "../runner-CHR_W79l.mjs";
|
|
6
6
|
import "../index-JzJUzE4o.mjs";
|
|
7
7
|
import "../index-DpMWSamU.mjs";
|
|
8
|
-
import "../bylines
|
|
8
|
+
import "../bylines--KurdDQK.mjs";
|
|
9
9
|
import "../types-BeYn-Yf0.mjs";
|
|
10
10
|
import "../validate-BQ24E8rK.mjs";
|
|
11
11
|
import { Kysely } from "kysely";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as updateSectionBody, $n as countResponseSchema, $t as commentStatusBody, A as userDetailSchema, An as mediaUpdateBody, At as passkeyRegisterOptionsBody, B as wpRewriteUrlsBody, Bn as contentResponseSchema, Bt as siteBriefingQuery, C as updateWidgetBody, Cn as mediaConfirmResponseSchema, Ct as updateMenuItemBody, D as widgetSchema, Dn as mediaListResponseSchema, Dt as inviteRegisterOptionsBody, E as widgetAreaWithWidgetsSchema, En as mediaListQuery, Et as inviteCreateBody, F as importProbeBody, Fn as contentItemSchema, Ft as signupRequestBody, G as searchResultSchema, Gn as contentTranslationSchema, Gt as contextEntryStaleQuery, H as searchQuery, Hn as contentSeoInput, Ht as contextEntryDiffQuery, I as wpMediaImportBody, In as contentListQuery, It as reviewRequestListQuery, J as siteSettingsSchema, Jn as contentUpdateBody, Jt as commentBulkBody, K as searchSuggestQuery, Kn as contentTranslationsResponseSchema, Kt as contextEntrySupersedeBody, L as wpPluginAnalyzeBody, Ln as contentListResponseSchema, Lt as reviewRequestResolveBody, M as userSchema, Mn as mediaUploadUrlResponseSchema, Mt as passkeyRenameBody, N as userUpdateBody, Nn as contentCompareResponseSchema, Nt as passkeyVerifyBody, O as allowedDomainCreateBody, On as mediaProviderListQuery, Ot as magicLinkSendBody, P as usersListQuery, Pn as contentCreateBody, Pt as signupCompleteBody, Q as sectionsListQuery, Qn as apiErrorSchema, Qt as commentSchema, R as wpPluginExecuteBody, Rn as contentPreviewUrlBody, Rt as hitlRequestListQuery, S as reorderWidgetsBody, Sn as mediaConfirmBody, St as updateMenuBody, T as widgetAreaWithWidgetsAndCountSchema, Tn as mediaItemSchema, Tt as inviteCompleteBody, U as searchRebuildBody, Un as contentSeoSchema, Ut as contextEntryListQuery, V as searchEnableBody, Vn as contentScheduleBody, Vt as contextEntryCreateBody, W as searchResponseSchema, Wn as contentTermsBody, Wt as contextEntryReviewBody, X as sectionListResponseSchema, Xn as trashedContentListResponseSchema, Xt as commentCountsResponseSchema, Y as createSectionBody, Yn as trashedContentItemSchema, Yt as commentBulkResponseSchema, Z as sectionSchema, Zn as VALID_ROLE_LEVELS, Zt as commentListQuery, _ as redirectSchema, _n as schemaExportQuery, _t as menuListItemSchema, a as bylineUpdateBody, an as collectionResponseSchema, ar as offsetPaginationQuery, at as termGetResponseSchema, b as createWidgetAreaBody, bn as DEFAULT_MAX_UPLOAD_SIZE, bt as menuWithItemsSchema, c as createRedirectBody, cn as createCollectionBody, cr as successEnvelope, ct as termSchema, d as notFoundListResponseSchema, dn as fieldReorderBody, dt as updateTermBody, en as createCommentBody, er as cursorPaginationQuery, et as createTaxonomyDefBody, f as notFoundPruneBody, fn as fieldResponseSchema, ft as createMenuBody, g as redirectListResponseSchema, gn as orphanedTableSchema, gt as menuItemUpdateQuery, h as notFoundSummarySchema, hn as orphanedTableListResponseSchema, ht as menuItemSchema, i as bylineSummarySchema, in as collectionListResponseSchema, ir as localeFilterQuery, it as taxonomyListResponseSchema, j as userListResponseSchema, jn as mediaUploadUrlBody, jt as passkeyRegisterVerifyBody, k as allowedDomainUpdateBody, kn as mediaResponseSchema, kt as passkeyOptionsBody, l as notFoundEntrySchema, ln as createFieldBody, lt as termTranslationsSchema, m as notFoundSummaryResponseSchema, mn as orphanRegisterBody, mt as menuItemDeleteQuery, n as bylineCreditSchema, nn as publicCommentSchema, nr as httpUrl, nt as taxonomyDefSchema, o as bylinesListQuery, on as collectionSchema, or as roleLevel, ot as termListResponseSchema, p as notFoundSummaryQuery, pn as fieldSchema, pt as createMenuItemBody, q as settingsUpdateBody, qn as contentTrashQuery, qt as adminCommentListResponseSchema, r as bylineListResponseSchema, rn as collectionGetQuery, rr as localeCode, rt as taxonomyDefTranslationsSchema, s as contentBylineInputSchema, sn as collectionWithFieldsResponseSchema, sr as slugPattern, st as termResponseSchema, t as bylineCreateBody, tn as publicCommentListResponseSchema, tr as deleteResponseSchema, tt as createTermBody, u as notFoundListQuery, un as fieldListResponseSchema, ut as termWithCountSchema, v as redirectsListQuery, vn as updateCollectionBody, vt as menuSchema, w as widgetAreaSchema, wn as mediaExistingResponseSchema, wt as authMeActionBody, x as createWidgetBody, xn as formatFileSize, xt as reorderMenuItemsBody, y as updateRedirectBody, yn as updateFieldBody, yt as menuTranslationsSchema, z as wpPrepareBody, zn as contentPublishBody, zt as hitlRequestResolveBody } from "../../bylines
|
|
1
|
+
import { $ as updateSectionBody, $n as countResponseSchema, $t as commentStatusBody, A as userDetailSchema, An as mediaUpdateBody, At as passkeyRegisterOptionsBody, B as wpRewriteUrlsBody, Bn as contentResponseSchema, Bt as siteBriefingQuery, C as updateWidgetBody, Cn as mediaConfirmResponseSchema, Ct as updateMenuItemBody, D as widgetSchema, Dn as mediaListResponseSchema, Dt as inviteRegisterOptionsBody, E as widgetAreaWithWidgetsSchema, En as mediaListQuery, Et as inviteCreateBody, F as importProbeBody, Fn as contentItemSchema, Ft as signupRequestBody, G as searchResultSchema, Gn as contentTranslationSchema, Gt as contextEntryStaleQuery, H as searchQuery, Hn as contentSeoInput, Ht as contextEntryDiffQuery, I as wpMediaImportBody, In as contentListQuery, It as reviewRequestListQuery, J as siteSettingsSchema, Jn as contentUpdateBody, Jt as commentBulkBody, K as searchSuggestQuery, Kn as contentTranslationsResponseSchema, Kt as contextEntrySupersedeBody, L as wpPluginAnalyzeBody, Ln as contentListResponseSchema, Lt as reviewRequestResolveBody, M as userSchema, Mn as mediaUploadUrlResponseSchema, Mt as passkeyRenameBody, N as userUpdateBody, Nn as contentCompareResponseSchema, Nt as passkeyVerifyBody, O as allowedDomainCreateBody, On as mediaProviderListQuery, Ot as magicLinkSendBody, P as usersListQuery, Pn as contentCreateBody, Pt as signupCompleteBody, Q as sectionsListQuery, Qn as apiErrorSchema, Qt as commentSchema, R as wpPluginExecuteBody, Rn as contentPreviewUrlBody, Rt as hitlRequestListQuery, S as reorderWidgetsBody, Sn as mediaConfirmBody, St as updateMenuBody, T as widgetAreaWithWidgetsAndCountSchema, Tn as mediaItemSchema, Tt as inviteCompleteBody, U as searchRebuildBody, Un as contentSeoSchema, Ut as contextEntryListQuery, V as searchEnableBody, Vn as contentScheduleBody, Vt as contextEntryCreateBody, W as searchResponseSchema, Wn as contentTermsBody, Wt as contextEntryReviewBody, X as sectionListResponseSchema, Xn as trashedContentListResponseSchema, Xt as commentCountsResponseSchema, Y as createSectionBody, Yn as trashedContentItemSchema, Yt as commentBulkResponseSchema, Z as sectionSchema, Zn as VALID_ROLE_LEVELS, Zt as commentListQuery, _ as redirectSchema, _n as schemaExportQuery, _t as menuListItemSchema, a as bylineUpdateBody, an as collectionResponseSchema, ar as offsetPaginationQuery, at as termGetResponseSchema, b as createWidgetAreaBody, bn as DEFAULT_MAX_UPLOAD_SIZE, bt as menuWithItemsSchema, c as createRedirectBody, cn as createCollectionBody, cr as successEnvelope, ct as termSchema, d as notFoundListResponseSchema, dn as fieldReorderBody, dt as updateTermBody, en as createCommentBody, er as cursorPaginationQuery, et as createTaxonomyDefBody, f as notFoundPruneBody, fn as fieldResponseSchema, ft as createMenuBody, g as redirectListResponseSchema, gn as orphanedTableSchema, gt as menuItemUpdateQuery, h as notFoundSummarySchema, hn as orphanedTableListResponseSchema, ht as menuItemSchema, i as bylineSummarySchema, in as collectionListResponseSchema, ir as localeFilterQuery, it as taxonomyListResponseSchema, j as userListResponseSchema, jn as mediaUploadUrlBody, jt as passkeyRegisterVerifyBody, k as allowedDomainUpdateBody, kn as mediaResponseSchema, kt as passkeyOptionsBody, l as notFoundEntrySchema, ln as createFieldBody, lt as termTranslationsSchema, m as notFoundSummaryResponseSchema, mn as orphanRegisterBody, mt as menuItemDeleteQuery, n as bylineCreditSchema, nn as publicCommentSchema, nr as httpUrl, nt as taxonomyDefSchema, o as bylinesListQuery, on as collectionSchema, or as roleLevel, ot as termListResponseSchema, p as notFoundSummaryQuery, pn as fieldSchema, pt as createMenuItemBody, q as settingsUpdateBody, qn as contentTrashQuery, qt as adminCommentListResponseSchema, r as bylineListResponseSchema, rn as collectionGetQuery, rr as localeCode, rt as taxonomyDefTranslationsSchema, s as contentBylineInputSchema, sn as collectionWithFieldsResponseSchema, sr as slugPattern, st as termResponseSchema, t as bylineCreateBody, tn as publicCommentListResponseSchema, tr as deleteResponseSchema, tt as createTermBody, u as notFoundListQuery, un as fieldListResponseSchema, ut as termWithCountSchema, v as redirectsListQuery, vn as updateCollectionBody, vt as menuSchema, w as widgetAreaSchema, wn as mediaExistingResponseSchema, wt as authMeActionBody, x as createWidgetBody, xn as formatFileSize, xt as reorderMenuItemsBody, y as updateRedirectBody, yn as updateFieldBody, yt as menuTranslationsSchema, z as wpPrepareBody, zn as contentPublishBody, zt as hitlRequestResolveBody } from "../../bylines--KurdDQK.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, menuItemDeleteQuery, menuItemSchema, menuItemUpdateQuery, 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-DmVyQUBh.mjs";
|
|
|
16
16
|
import { u as PluginStateRepository } from "./briefing-4k6R0KAr.mjs";
|
|
17
17
|
import { n as SchemaRegistry, t as SchemaError } from "./registry-DumDzFDn.mjs";
|
|
18
18
|
import { n as hashString } from "./hash-V8oZo1W2.mjs";
|
|
19
|
-
import { n as VERSION, t as COMMIT } from "./version-
|
|
19
|
+
import { n as VERSION, t as COMMIT } from "./version-CjsyxeBD.mjs";
|
|
20
20
|
import { i as pluginManifestSchema, r as normalizeManifestRoute } from "./manifest-schema-CU0XL_ZK.mjs";
|
|
21
21
|
import { t as DinewayStorageError } from "./types-iNqHe2-V.mjs";
|
|
22
22
|
import { sql } from "kysely";
|
package/dist/astro/index.d.mts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { r as ContentItem } from "../types-6N-00csp.mjs";
|
|
2
|
-
import { Kn as MediaItem, a as S3StorageConfig, i as LocalStorageConfig, o as StorageDescriptor, r as getStoredConfig, t as DinewayConfig } from "../runtime-
|
|
2
|
+
import { Kn as MediaItem, a as S3StorageConfig, i as LocalStorageConfig, o as StorageDescriptor, r as getStoredConfig, t as DinewayConfig } from "../runtime-B5hJAnKF.mjs";
|
|
3
3
|
import "../types-CYBaBvtm.mjs";
|
|
4
4
|
import { X as ResolvedPlugin } from "../types-DS5PYew4.mjs";
|
|
5
5
|
import "../types-B45uSz1j.mjs";
|
|
6
6
|
import "../runner-CHR_W79l.mjs";
|
|
7
7
|
import "../index-JzJUzE4o.mjs";
|
|
8
8
|
import "../index-DpMWSamU.mjs";
|
|
9
|
-
import "../bylines
|
|
9
|
+
import "../bylines--KurdDQK.mjs";
|
|
10
10
|
import "../types-BeYn-Yf0.mjs";
|
|
11
11
|
import "../validate-BQ24E8rK.mjs";
|
|
12
12
|
import { DinewayHandlers, DinewayManifest, ManifestCollection } from "./types.mjs";
|
package/dist/astro/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as VERSION, t as COMMIT } from "../version-
|
|
1
|
+
import { n as VERSION, t as COMMIT } from "../version-CjsyxeBD.mjs";
|
|
2
2
|
import { t as defaultSeed } from "../default-2JDm1rj_.mjs";
|
|
3
3
|
import { n as validateAllowedOrigins, r as validateOriginShape } from "../allowed-origins-D85wzUp6.mjs";
|
|
4
4
|
import { createRequire } from "node:module";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import "../../runtime-
|
|
1
|
+
import "../../runtime-B5hJAnKF.mjs";
|
|
2
2
|
import "../../types-CYBaBvtm.mjs";
|
|
3
3
|
import "../../types-DS5PYew4.mjs";
|
|
4
4
|
import "../../types-B45uSz1j.mjs";
|
|
5
5
|
import "../../runner-CHR_W79l.mjs";
|
|
6
6
|
import "../../index-JzJUzE4o.mjs";
|
|
7
7
|
import "../../index-DpMWSamU.mjs";
|
|
8
|
-
import "../../bylines
|
|
8
|
+
import "../../bylines--KurdDQK.mjs";
|
|
9
9
|
import "../../types-BeYn-Yf0.mjs";
|
|
10
10
|
import "../../validate-BQ24E8rK.mjs";
|
|
11
11
|
import { DinewayHandlers } from "../types.mjs";
|
|
@@ -23,7 +23,7 @@ import "../byline-BxAf79s1.mjs";
|
|
|
23
23
|
import { t as normalizeMediaValue } from "../normalize-9GU-bv_T.mjs";
|
|
24
24
|
import "../placeholder-BJPmhjHP.mjs";
|
|
25
25
|
import "../seo-BPz1KkCq.mjs";
|
|
26
|
-
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-
|
|
26
|
+
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-CgxdfUg4.mjs";
|
|
27
27
|
import { n as requestCached } from "../request-cache-DmVyQUBh.mjs";
|
|
28
28
|
import "../dashboard-6gH7SlPM.mjs";
|
|
29
29
|
import { u as PluginStateRepository } from "../briefing-4k6R0KAr.mjs";
|
|
@@ -35,7 +35,7 @@ import { c as createPublicMediaUrlResolver } from "../settings-qPzY2KIF.mjs";
|
|
|
35
35
|
import "../briefing-DM7e2yd3.mjs";
|
|
36
36
|
import "../review-requests-vCw7_3DS.mjs";
|
|
37
37
|
import { n as hashString } from "../hash-V8oZo1W2.mjs";
|
|
38
|
-
import { n as VERSION, t as COMMIT } from "../version-
|
|
38
|
+
import { n as VERSION, t as COMMIT } from "../version-CjsyxeBD.mjs";
|
|
39
39
|
import "../query-BtuwuZRd.mjs";
|
|
40
40
|
import "../zod-generator-BKhtHT3e.mjs";
|
|
41
41
|
import "../schema-D1z41cq_.mjs";
|
|
@@ -13,7 +13,7 @@ import "../../../../../../entity-aliases-PJV8IxDq.mjs";
|
|
|
13
13
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
14
14
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
15
15
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
16
|
-
import "../../../../../../api-
|
|
16
|
+
import "../../../../../../api-CgxdfUg4.mjs";
|
|
17
17
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
18
18
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
19
19
|
import { c as handlePluginGet, o as handlePluginDisable } from "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -13,7 +13,7 @@ import "../../../../../../entity-aliases-PJV8IxDq.mjs";
|
|
|
13
13
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
14
14
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
15
15
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
16
|
-
import "../../../../../../api-
|
|
16
|
+
import "../../../../../../api-CgxdfUg4.mjs";
|
|
17
17
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
18
18
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
19
19
|
import { c as handlePluginGet, s as handlePluginEnable } from "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import "../../../../../../api-
|
|
15
|
+
import "../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import { c as handlePluginGet } from "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -13,7 +13,7 @@ import "../../../../../../entity-aliases-PJV8IxDq.mjs";
|
|
|
13
13
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
14
14
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
15
15
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
16
|
-
import { a as handleMarketplaceUninstall } from "../../../../../../api-
|
|
16
|
+
import { a as handleMarketplaceUninstall } from "../../../../../../api-CgxdfUg4.mjs";
|
|
17
17
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
18
18
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
19
19
|
import { l as handlePluginList } from "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -13,7 +13,7 @@ import "../../../../../../entity-aliases-PJV8IxDq.mjs";
|
|
|
13
13
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
14
14
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
15
15
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
16
|
-
import { c as handleMarketplaceUpdatePreview, o as handleMarketplaceUpdate } from "../../../../../../api-
|
|
16
|
+
import { c as handleMarketplaceUpdatePreview, o as handleMarketplaceUpdate } from "../../../../../../api-CgxdfUg4.mjs";
|
|
17
17
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
18
18
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
19
19
|
import "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import "../../../../../api-
|
|
15
|
+
import "../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import { l as handlePluginList } from "../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { t as handleMarketplaceGetPlugin } from "../../../../../../../api-
|
|
15
|
+
import { t as handleMarketplaceGetPlugin } from "../../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -13,7 +13,7 @@ import "../../../../../../../entity-aliases-PJV8IxDq.mjs";
|
|
|
13
13
|
import "../../../../../../../redirect-BHo9--Jz.mjs";
|
|
14
14
|
import "../../../../../../../byline-BxAf79s1.mjs";
|
|
15
15
|
import "../../../../../../../seo-BPz1KkCq.mjs";
|
|
16
|
-
import { n as handleMarketplaceInstall, r as handleMarketplaceInstallPreview } from "../../../../../../../api-
|
|
16
|
+
import { n as handleMarketplaceInstall, r as handleMarketplaceInstallPreview } from "../../../../../../../api-CgxdfUg4.mjs";
|
|
17
17
|
import "../../../../../../../request-cache-DmVyQUBh.mjs";
|
|
18
18
|
import "../../../../../../../dashboard-6gH7SlPM.mjs";
|
|
19
19
|
import "../../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { i as handleMarketplaceSearch } from "../../../../../../api-
|
|
15
|
+
import { i as handleMarketplaceSearch } from "../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { s as handleMarketplaceUpdateCheck } from "../../../../../api-
|
|
15
|
+
import { s as handleMarketplaceUpdateCheck } from "../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { l as handleThemeGetDetail } from "../../../../../../../api-
|
|
15
|
+
import { l as handleThemeGetDetail } from "../../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { u as handleThemeSearch } from "../../../../../../api-
|
|
15
|
+
import { u as handleThemeSearch } from "../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as VERSION, t as COMMIT } from "../../../version-
|
|
1
|
+
import { n as VERSION, t as COMMIT } from "../../../version-CjsyxeBD.mjs";
|
|
2
2
|
import { r as handleError } from "../../../error-Dyf9fGZE.mjs";
|
|
3
3
|
import { t as getAuthMode } from "../../../mode-DWw2di1I.mjs";
|
|
4
4
|
import { i as experimentalSiteContextWorkflowsEnabled } from "../../../experimental-workflows-CSRjuEwS.mjs";
|
|
@@ -14,7 +14,7 @@ import "../../../fts-manager-D7KVeBmg.mjs";
|
|
|
14
14
|
import "../../../registry-DumDzFDn.mjs";
|
|
15
15
|
import "../../../loader-CQFxFOt1.mjs";
|
|
16
16
|
import "../../../settings-qPzY2KIF.mjs";
|
|
17
|
-
import { n as VERSION } from "../../../version-
|
|
17
|
+
import { n as VERSION } from "../../../version-CjsyxeBD.mjs";
|
|
18
18
|
import "../../../query-BtuwuZRd.mjs";
|
|
19
19
|
import "../../../zod-generator-BKhtHT3e.mjs";
|
|
20
20
|
import "../../../schema-D1z41cq_.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as VERSION } from "../../../version-
|
|
1
|
+
import { n as VERSION } from "../../../version-CjsyxeBD.mjs";
|
|
2
2
|
import { r as handleError } from "../../../error-Dyf9fGZE.mjs";
|
|
3
3
|
import { $ as createMenuBody, $t as contentItemSchema, A as searchRebuildBody, At as fieldResponseSchema, B as updateSectionBody, Bt as mediaConfirmBody, C as userDetailSchema, Cn as apiErrorSchema, Ct as collectionResponseSchema, D as usersListQuery, Dt as createFieldBody, E as userUpdateBody, En as deleteResponseSchema, Et as createCollectionBody, F as siteSettingsSchema, G as taxonomyListResponseSchema, Gt as mediaListResponseSchema, H as createTermBody, Ht as mediaExistingResponseSchema, I as createSectionBody, It as updateCollectionBody, J as termResponseSchema, Jt as mediaUpdateBody, K as termGetResponseSchema, L as sectionListResponseSchema, Lt as updateFieldBody, Mt as orphanRegisterBody, N as searchSuggestQuery, Nn as successEnvelope, Nt as orphanedTableListResponseSchema, O as searchEnableBody, Ot as fieldListResponseSchema, P as settingsUpdateBody, Q as updateTermBody, Qt as contentCreateBody, R as sectionSchema, Rt as DEFAULT_MAX_UPLOAD_SIZE, S as allowedDomainUpdateBody, St as collectionListResponseSchema, T as userSchema, Tt as collectionWithFieldsResponseSchema, Vt as mediaConfirmResponseSchema, Wt as mediaListQuery, Xt as mediaUploadUrlResponseSchema, Yt as mediaUploadUrlBody, Zt as contentCompareResponseSchema, _ as widgetAreaSchema, _t as commentStatusBody, a as notFoundPruneBody, an as contentScheduleBody, b as widgetSchema, cn as contentTermsBody, ct as reorderMenuItemsBody, d as redirectsListQuery, dn as contentTrashQuery, dt as adminCommentListResponseSchema, en as contentListQuery, et as createMenuItemBody, f as updateRedirectBody, fn as contentUpdateBody, ft as commentBulkBody, g as updateWidgetBody, gt as commentSchema, h as reorderWidgetsBody, ht as commentListQuery, i as notFoundListResponseSchema, in as contentResponseSchema, it as menuListItemSchema, j as searchResponseSchema, k as searchQuery, kt as fieldReorderBody, l as redirectListResponseSchema, lt as updateMenuBody, m as createWidgetBody, mn as trashedContentListResponseSchema, mt as commentCountsResponseSchema, nt as menuItemSchema, p as createWidgetAreaBody, pt as commentBulkResponseSchema, q as termListResponseSchema, qt as mediaResponseSchema, r as notFoundListQuery, rn as contentPublishBody, s as notFoundSummaryResponseSchema, st as menuWithItemsSchema, t as createRedirectBody, tn as contentListResponseSchema, u as redirectSchema, un as contentTranslationsResponseSchema, ut as updateMenuItemBody, v as widgetAreaWithWidgetsAndCountSchema, vt as createCommentBody, w as userListResponseSchema, x as allowedDomainCreateBody, xt as collectionGetQuery, y as widgetAreaWithWidgetsSchema, yt as publicCommentListResponseSchema, z as sectionsListQuery } from "../../../redirects-xVDvj_yQ.mjs";
|
|
4
4
|
import { z } from "zod";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { b as handleSchemaFieldDelete, w as handleSchemaFieldUpdate, x as handleSchemaFieldGet } from "../../../../../../../api-
|
|
15
|
+
import { b as handleSchemaFieldDelete, w as handleSchemaFieldUpdate, x as handleSchemaFieldGet } from "../../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { S as handleSchemaFieldList, y as handleSchemaFieldCreate } from "../../../../../../../api-
|
|
15
|
+
import { S as handleSchemaFieldList, y as handleSchemaFieldCreate } from "../../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { C as handleSchemaFieldReorder } from "../../../../../../../api-
|
|
15
|
+
import { C as handleSchemaFieldReorder } from "../../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { g as handleSchemaCollectionGet, h as handleSchemaCollectionDelete, v as handleSchemaCollectionUpdate } from "../../../../../../api-
|
|
15
|
+
import { g as handleSchemaCollectionGet, h as handleSchemaCollectionDelete, v as handleSchemaCollectionUpdate } from "../../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { _ as handleSchemaCollectionList, m as handleSchemaCollectionCreate } from "../../../../../api-
|
|
15
|
+
import { _ as handleSchemaCollectionList, m as handleSchemaCollectionCreate } from "../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { p as handleOrphanedTableRegister } from "../../../../../api-
|
|
15
|
+
import { p as handleOrphanedTableRegister } from "../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -12,7 +12,7 @@ import "../../../../../review-requests-BYuoyse0.mjs";
|
|
|
12
12
|
import "../../../../../redirect-BHo9--Jz.mjs";
|
|
13
13
|
import "../../../../../byline-BxAf79s1.mjs";
|
|
14
14
|
import "../../../../../seo-BPz1KkCq.mjs";
|
|
15
|
-
import { f as handleOrphanedTableList } from "../../../../../api-
|
|
15
|
+
import { f as handleOrphanedTableList } from "../../../../../api-CgxdfUg4.mjs";
|
|
16
16
|
import "../../../../../request-cache-DmVyQUBh.mjs";
|
|
17
17
|
import "../../../../../dashboard-6gH7SlPM.mjs";
|
|
18
18
|
import "../../../../../briefing-4k6R0KAr.mjs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as OptionsRepository } from "../../../../options-BF11H_FD.mjs";
|
|
2
|
-
import { n as VERSION } from "../../../../version-
|
|
2
|
+
import { n as VERSION } from "../../../../version-CjsyxeBD.mjs";
|
|
3
3
|
import { t as getAuthMode } from "../../../../mode-DWw2di1I.mjs";
|
|
4
4
|
|
|
5
5
|
//#region src/astro/routes/api/well-known/auth.ts
|
package/dist/astro/types.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as ContentItem } from "../types-6N-00csp.mjs";
|
|
2
|
-
import { Kn as MediaItem, en as SandboxRunner, mn as MediaResponse, nt as HookPipeline, or as ContentListResponse, pn as MediaListResponse, sr as ContentResponse, t as DinewayConfig, tt as EmailPipeline } from "../runtime-
|
|
2
|
+
import { Kn as MediaItem, en as SandboxRunner, mn as MediaResponse, nt as HookPipeline, or as ContentListResponse, pn as MediaListResponse, sr as ContentResponse, t as DinewayConfig, tt as EmailPipeline } from "../runtime-B5hJAnKF.mjs";
|
|
3
3
|
import { t as Database } from "../types-CYBaBvtm.mjs";
|
|
4
4
|
import { A as PageMetadataContribution, D as PageFragmentContribution, X as ResolvedPlugin, ct as Element, q as PublicPageContext } from "../types-DS5PYew4.mjs";
|
|
5
5
|
import "../types-B45uSz1j.mjs";
|
|
@@ -8,7 +8,7 @@ import "../runner-CHR_W79l.mjs";
|
|
|
8
8
|
import "../index-JzJUzE4o.mjs";
|
|
9
9
|
import "../index-DpMWSamU.mjs";
|
|
10
10
|
import { d as Storage } from "../types-BDm7Ipoq.mjs";
|
|
11
|
-
import "../bylines
|
|
11
|
+
import "../bylines--KurdDQK.mjs";
|
|
12
12
|
import "../types-BeYn-Yf0.mjs";
|
|
13
13
|
import "../validate-BQ24E8rK.mjs";
|
|
14
14
|
import "../index.mjs";
|
|
@@ -560,15 +560,15 @@ declare const createFieldBody: z.ZodObject<{
|
|
|
560
560
|
number: "number";
|
|
561
561
|
boolean: "boolean";
|
|
562
562
|
file: "file";
|
|
563
|
-
url: "url";
|
|
564
|
-
image: "image";
|
|
565
563
|
slug: "slug";
|
|
566
|
-
datetime: "datetime";
|
|
567
564
|
text: "text";
|
|
565
|
+
url: "url";
|
|
568
566
|
integer: "integer";
|
|
567
|
+
datetime: "datetime";
|
|
569
568
|
select: "select";
|
|
570
569
|
multiSelect: "multiSelect";
|
|
571
570
|
portableText: "portableText";
|
|
571
|
+
image: "image";
|
|
572
572
|
reference: "reference";
|
|
573
573
|
json: "json";
|
|
574
574
|
repeater: "repeater";
|
|
@@ -590,10 +590,10 @@ declare const createFieldBody: z.ZodObject<{
|
|
|
590
590
|
string: "string";
|
|
591
591
|
number: "number";
|
|
592
592
|
boolean: "boolean";
|
|
593
|
-
url: "url";
|
|
594
|
-
datetime: "datetime";
|
|
595
593
|
text: "text";
|
|
594
|
+
url: "url";
|
|
596
595
|
integer: "integer";
|
|
596
|
+
datetime: "datetime";
|
|
597
597
|
select: "select";
|
|
598
598
|
}>;
|
|
599
599
|
label: z.ZodString;
|
|
@@ -629,10 +629,10 @@ declare const updateFieldBody: z.ZodObject<{
|
|
|
629
629
|
string: "string";
|
|
630
630
|
number: "number";
|
|
631
631
|
boolean: "boolean";
|
|
632
|
-
url: "url";
|
|
633
|
-
datetime: "datetime";
|
|
634
632
|
text: "text";
|
|
633
|
+
url: "url";
|
|
635
634
|
integer: "integer";
|
|
635
|
+
datetime: "datetime";
|
|
636
636
|
select: "select";
|
|
637
637
|
}>;
|
|
638
638
|
label: z.ZodString;
|
|
@@ -687,15 +687,15 @@ declare const fieldSchema: z.ZodObject<{
|
|
|
687
687
|
number: "number";
|
|
688
688
|
boolean: "boolean";
|
|
689
689
|
file: "file";
|
|
690
|
-
url: "url";
|
|
691
|
-
image: "image";
|
|
692
690
|
slug: "slug";
|
|
693
|
-
datetime: "datetime";
|
|
694
691
|
text: "text";
|
|
692
|
+
url: "url";
|
|
695
693
|
integer: "integer";
|
|
694
|
+
datetime: "datetime";
|
|
696
695
|
select: "select";
|
|
697
696
|
multiSelect: "multiSelect";
|
|
698
697
|
portableText: "portableText";
|
|
698
|
+
image: "image";
|
|
699
699
|
reference: "reference";
|
|
700
700
|
json: "json";
|
|
701
701
|
repeater: "repeater";
|
|
@@ -752,15 +752,15 @@ declare const collectionWithFieldsResponseSchema: z.ZodObject<{
|
|
|
752
752
|
number: "number";
|
|
753
753
|
boolean: "boolean";
|
|
754
754
|
file: "file";
|
|
755
|
-
url: "url";
|
|
756
|
-
image: "image";
|
|
757
755
|
slug: "slug";
|
|
758
|
-
datetime: "datetime";
|
|
759
756
|
text: "text";
|
|
757
|
+
url: "url";
|
|
760
758
|
integer: "integer";
|
|
759
|
+
datetime: "datetime";
|
|
761
760
|
select: "select";
|
|
762
761
|
multiSelect: "multiSelect";
|
|
763
762
|
portableText: "portableText";
|
|
763
|
+
image: "image";
|
|
764
764
|
reference: "reference";
|
|
765
765
|
json: "json";
|
|
766
766
|
repeater: "repeater";
|
|
@@ -806,15 +806,15 @@ declare const fieldResponseSchema: z.ZodObject<{
|
|
|
806
806
|
number: "number";
|
|
807
807
|
boolean: "boolean";
|
|
808
808
|
file: "file";
|
|
809
|
-
url: "url";
|
|
810
|
-
image: "image";
|
|
811
809
|
slug: "slug";
|
|
812
|
-
datetime: "datetime";
|
|
813
810
|
text: "text";
|
|
811
|
+
url: "url";
|
|
814
812
|
integer: "integer";
|
|
813
|
+
datetime: "datetime";
|
|
815
814
|
select: "select";
|
|
816
815
|
multiSelect: "multiSelect";
|
|
817
816
|
portableText: "portableText";
|
|
817
|
+
image: "image";
|
|
818
818
|
reference: "reference";
|
|
819
819
|
json: "json";
|
|
820
820
|
repeater: "repeater";
|
|
@@ -843,15 +843,15 @@ declare const fieldListResponseSchema: z.ZodObject<{
|
|
|
843
843
|
number: "number";
|
|
844
844
|
boolean: "boolean";
|
|
845
845
|
file: "file";
|
|
846
|
-
url: "url";
|
|
847
|
-
image: "image";
|
|
848
846
|
slug: "slug";
|
|
849
|
-
datetime: "datetime";
|
|
850
847
|
text: "text";
|
|
848
|
+
url: "url";
|
|
851
849
|
integer: "integer";
|
|
850
|
+
datetime: "datetime";
|
|
852
851
|
select: "select";
|
|
853
852
|
multiSelect: "multiSelect";
|
|
854
853
|
portableText: "portableText";
|
|
854
|
+
image: "image";
|
|
855
855
|
reference: "reference";
|
|
856
856
|
json: "json";
|
|
857
857
|
repeater: "repeater";
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { a as ContentSeoInput, c as FindManyOptions, i as ContentSeo, l as FindManyResult, n as ContentBylineCredit, o as CreateContentInput, r as ContentItem, s as DinewayValidationError, t as BylineSummary, u as UpdateContentInput } from "./types-6N-00csp.mjs";
|
|
2
|
-
import { $ as createPluginManager, $t as SandboxOptions, A as dropSessionDatabaseTables, An as handleContentDelete, At as verifyPreviewSignature, B as GeneratePreviewTokenOptions, Bn as handleContentSchedule, Bt as prosemirrorToPortableText, C as getByline, Cn as handleRevisionList, Ct as SessionOpenOrCreateOptions, D as AppliedSnapshotMeta, Dn as handleContentCountScheduled, Dt as defaultPreviewSidecarClient, E as renderPreviewToolbar, En as handleContentCompare, Et as buildPreviewSignatureHeader, F as getPreviewToken, Fn as handleContentList, Ft as AfterCallback, G as parseContentId, Gn as CreateMediaInput, Gt as PortableTextSpan, H as VerifyPreviewTokenOptions, Hn as handleContentUnpublish, Ht as PortableTextImageBlock, I as isPreviewRequest, In as handleContentListTrashed, It as after, J as createNodeSandboxRunner, Jn as ContentRepository, Jt as ProseMirrorDocument, K as verifyPreviewToken, Kn as MediaItem, Kt as PortableTextTextBlock, L as GetPreviewUrlOptions, Ln as handleContentPermanentDelete, Lt as computeContentHash, M as Snapshot, Mn as handleContentDuplicate, Mt as getFallbackChain, N as renderPreviewLoadingPage, Nn as handleContentGet, Nt as getI18nConfig, O as ApplySnapshotToDatabaseOptions, On as handleContentCountTrashed, Ot as parsePreviewSignatureHeader, P as isBlockedInPreview, Pn as handleContentGetIncludingTrashed, Pt as isI18nEnabled, Q as PluginManager, Qt as SandboxEmailSendCallback, R as buildPreviewUrl, Rn as handleContentPublish, Rt as hashString, S as Suggestion, Sn as handleRevisionGet, St as SessionOpenOptions, T as PreviewToolbarConfig, Tn as generateManifest, Tt as PreviewSidecarSignature, U as VerifyPreviewTokenResult, Un as handleContentUnschedule, Ut as PortableTextLinkMark, V as PreviewTokenPayload, Vn as handleContentTranslations, Vt as PortableTextCodeBlock, W as generatePreviewToken, Wn as handleContentUpdate, Wt as PortableTextMarkDef, X as SandboxNotAvailableError, Xn as DinewayDatabaseError, Xt as ProseMirrorNode, Y as NoopSandboxRunner, Yn as DatabaseConfig, Yt as ProseMirrorMark, Z as createNoopSandboxRunner, Zt as SandboxEmailMessage, _ as SearchOptions, _n as handleMediaGet, _t as SessionCleanupResult, an as getSections, ar as ApiContext, at as ValidatedPluginManifest, b as SearchStats, bn as RevisionListResponse, bt as SessionDatabaseInfo, c as extractSearchableFields, cn as Section, cr as FieldDescriptor, ct as CollectionFilter$1, d as search, dn as SchemaError, en as SandboxRunner, et as PluginRouteError, f as searchCollection, fn as SchemaRegistry, g as SearchConfig, gn as handleMediaDelete, gt as FileSessionDatabaseFactoryOptions, h as CollectionSearchOptions, hn as handleMediaCreate, ht as FileSessionDatabaseFactory, in as getSection, it as createHookPipeline, j as getAppliedSnapshotMeta, jn as handleContentDiscardDraft, jt as I18nConfig, k as applySnapshotToDatabase, kn as handleContentCreate, kt as signPreviewUrl, l as getSearchStats, ln as SectionSource, lr as ListResponse, lt as EntryData, m as FTSManager, mn as MediaResponse, mt as createFilePreviewMiddleware, n as PluginDescriptor, nn as SandboxedPlugin, nt as HookPipeline, on as CreateSectionInput, or as ContentListResponse, ot as pluginManifestSchema, p as searchWithDb, pn as MediaListResponse, pt as FilePreviewMiddlewareConfig, q as NodeSandboxRunner, qn as MediaRepository, qt as PortableTextUnknownBlock, rn as SerializedRequest, rt as HookResult, s as extractPlainText, sn as GetSectionsOptions, sr as ContentResponse, st as definePlugin, tn as SandboxRunnerFactory, u as getSuggestions, un as UpdateSectionInput, ur as ManifestResponse, ut as EntryFilter, v as SearchResponse, vn as handleMediaList, vt as SessionDatabaseFactory, w as getBylineBySlug, wn as handleRevisionRestore, wt as PreviewSidecarClient, x as SuggestOptions, xn as RevisionResponse, xt as SessionDatabaseLimitError, y as SearchResult, yn as handleMediaUpdate, yt as SessionDatabaseHandle, z as getPreviewUrl, zn as handleContentRestore, zt as portableTextToProsemirror } from "./runtime-
|
|
2
|
+
import { $ as createPluginManager, $t as SandboxOptions, A as dropSessionDatabaseTables, An as handleContentDelete, At as verifyPreviewSignature, B as GeneratePreviewTokenOptions, Bn as handleContentSchedule, Bt as prosemirrorToPortableText, C as getByline, Cn as handleRevisionList, Ct as SessionOpenOrCreateOptions, D as AppliedSnapshotMeta, Dn as handleContentCountScheduled, Dt as defaultPreviewSidecarClient, E as renderPreviewToolbar, En as handleContentCompare, Et as buildPreviewSignatureHeader, F as getPreviewToken, Fn as handleContentList, Ft as AfterCallback, G as parseContentId, Gn as CreateMediaInput, Gt as PortableTextSpan, H as VerifyPreviewTokenOptions, Hn as handleContentUnpublish, Ht as PortableTextImageBlock, I as isPreviewRequest, In as handleContentListTrashed, It as after, J as createNodeSandboxRunner, Jn as ContentRepository, Jt as ProseMirrorDocument, K as verifyPreviewToken, Kn as MediaItem, Kt as PortableTextTextBlock, L as GetPreviewUrlOptions, Ln as handleContentPermanentDelete, Lt as computeContentHash, M as Snapshot, Mn as handleContentDuplicate, Mt as getFallbackChain, N as renderPreviewLoadingPage, Nn as handleContentGet, Nt as getI18nConfig, O as ApplySnapshotToDatabaseOptions, On as handleContentCountTrashed, Ot as parsePreviewSignatureHeader, P as isBlockedInPreview, Pn as handleContentGetIncludingTrashed, Pt as isI18nEnabled, Q as PluginManager, Qt as SandboxEmailSendCallback, R as buildPreviewUrl, Rn as handleContentPublish, Rt as hashString, S as Suggestion, Sn as handleRevisionGet, St as SessionOpenOptions, T as PreviewToolbarConfig, Tn as generateManifest, Tt as PreviewSidecarSignature, U as VerifyPreviewTokenResult, Un as handleContentUnschedule, Ut as PortableTextLinkMark, V as PreviewTokenPayload, Vn as handleContentTranslations, Vt as PortableTextCodeBlock, W as generatePreviewToken, Wn as handleContentUpdate, Wt as PortableTextMarkDef, X as SandboxNotAvailableError, Xn as DinewayDatabaseError, Xt as ProseMirrorNode, Y as NoopSandboxRunner, Yn as DatabaseConfig, Yt as ProseMirrorMark, Z as createNoopSandboxRunner, Zt as SandboxEmailMessage, _ as SearchOptions, _n as handleMediaGet, _t as SessionCleanupResult, an as getSections, ar as ApiContext, at as ValidatedPluginManifest, b as SearchStats, bn as RevisionListResponse, bt as SessionDatabaseInfo, c as extractSearchableFields, cn as Section, cr as FieldDescriptor, ct as CollectionFilter$1, d as search, dn as SchemaError, en as SandboxRunner, et as PluginRouteError, f as searchCollection, fn as SchemaRegistry, g as SearchConfig, gn as handleMediaDelete, gt as FileSessionDatabaseFactoryOptions, h as CollectionSearchOptions, hn as handleMediaCreate, ht as FileSessionDatabaseFactory, in as getSection, it as createHookPipeline, j as getAppliedSnapshotMeta, jn as handleContentDiscardDraft, jt as I18nConfig, k as applySnapshotToDatabase, kn as handleContentCreate, kt as signPreviewUrl, l as getSearchStats, ln as SectionSource, lr as ListResponse, lt as EntryData, m as FTSManager, mn as MediaResponse, mt as createFilePreviewMiddleware, n as PluginDescriptor, nn as SandboxedPlugin, nt as HookPipeline, on as CreateSectionInput, or as ContentListResponse, ot as pluginManifestSchema, p as searchWithDb, pn as MediaListResponse, pt as FilePreviewMiddlewareConfig, q as NodeSandboxRunner, qn as MediaRepository, qt as PortableTextUnknownBlock, rn as SerializedRequest, rt as HookResult, s as extractPlainText, sn as GetSectionsOptions, sr as ContentResponse, st as definePlugin, tn as SandboxRunnerFactory, u as getSuggestions, un as UpdateSectionInput, ur as ManifestResponse, ut as EntryFilter, v as SearchResponse, vn as handleMediaList, vt as SessionDatabaseFactory, w as getBylineBySlug, wn as handleRevisionRestore, wt as PreviewSidecarClient, x as SuggestOptions, xn as RevisionResponse, xt as SessionDatabaseLimitError, y as SearchResult, yn as handleMediaUpdate, yt as SessionDatabaseHandle, z as getPreviewUrl, zn as handleContentRestore, zt as portableTextToProsemirror } from "./runtime-B5hJAnKF.mjs";
|
|
3
3
|
import { n as MediaTable, r as UserTable, t as Database } from "./types-CYBaBvtm.mjs";
|
|
4
4
|
import { $ as StandardHookEntry, A as PageMetadataContribution, B as PluginDefinition, C as MediaAccess, D as PageFragmentContribution, E as ModerationDecision, F as PluginAdminConfig, G as PortableTextBlockConfig, H as PluginManifest, I as PluginAdminExports, K as PortableTextBlockField, L as PluginAdminPage, M as PageMetadataHandler, O as PageFragmentEvent, P as PagePlacement, Q as RouteContext, R as PluginCapability, S as LogAccess, T as MediaUploadEvent, U as PluginRoute, V as PluginHooks, W as PluginStorageConfig, X as ResolvedPlugin, Y as ResolvedHook, Z as ResolvedPluginHooks, _ as FieldWidgetConfig, a as CommentAfterModerateEvent, b as HttpAccess, c as CommentBeforeCreateHandler, d as ContentAccess, et as StandardHookHandler, f as ContentDeleteEvent, i as CommentAfterCreateHandler, it as StorageCollection, j as PageMetadataEvent, k as PageFragmentHandler, l as CommentModerateEvent, m as ContentPublishStateChangeEvent, n as CollectionCommentSettings, nt as StandardRouteEntry, o as CommentAfterModerateHandler, ot as StoredComment, p as ContentHookEvent, q as PublicPageContext, r as CommentAfterCreateEvent, rt as StandardRouteHandler, s as CommentBeforeCreateEvent, st as isStandardPluginDefinition, t as BreadcrumbItem, tt as StandardPluginDefinition, u as CommentModerateHandler, v as HookConfig, x as KVAccess, y as HookName, z as PluginContext } from "./types-DS5PYew4.mjs";
|
|
5
5
|
import { _ as RESERVED_COLLECTION_SLUGS, a as Collection, b as UpdateFieldInput, c as CollectionWithFields, d as CreateFieldInput, f as FIELD_TYPE_TO_COLUMN, g as FieldWidgetOptions, h as FieldValidation, i as SiteSettings, l as ColumnType, m as FieldType, n as SeoSettings, o as CollectionSource, p as Field, r as SiteSettingKey, s as CollectionSupport, t as MediaReference, u as CreateCollectionInput, v as RESERVED_FIELD_SLUGS, y as UpdateCollectionInput } from "./types-CsnHvu4J.mjs";
|
|
@@ -11,7 +11,7 @@ import { $ as TranslationSummary, A as MenuItem, B as getPluginSettings, C as Ta
|
|
|
11
11
|
import { _ as WxrSite, a as getAllSources, b as parseWxrString, c as getUrlSources, d as importReusableBlocksAsSections, f as WxrAttachment, g as WxrPost, h as WxrData, i as clearSources, l as probeUrl, m as WxrCategory, n as parseWxrDate, o as getFileSources, p as WxrAuthor, r as wxrSource, s as getSource, t as wordpressRestSource, u as registerSource, v as WxrTag, x as decodeSlug, y as parseWxr } from "./index-DpMWSamU.mjs";
|
|
12
12
|
import { n as generatePlaceholder, r as normalizeMediaValue, t as PlaceholderData } from "./placeholder-DKMMLt42.mjs";
|
|
13
13
|
import { a as ListOptions, c as S3StorageConfig, d as Storage, f as StorageDescriptor, i as FileInfo, l as SignedUploadOptions, n as DinewayStorageError, o as ListResult, p as UploadResult, r as DownloadResult, s as LocalStorageConfig, t as CreateStorageFn, u as SignedUploadUrl } from "./types-BDm7Ipoq.mjs";
|
|
14
|
-
import "./bylines
|
|
14
|
+
import "./bylines--KurdDQK.mjs";
|
|
15
15
|
import { DinewayRequestContext, getRequestContext, runWithContext } from "./request-context.mjs";
|
|
16
16
|
import { adaptSandboxEntry } from "./plugins/adapt-sandbox-entry.mjs";
|
|
17
17
|
import { S as UrlInput, _ as SourceAuth, a as FileInput, b as SourceProbeResult, c as ImportContext, d as ImportSource, f as NormalizedItem, g as ProbeResult, h as PostTypeMapping, i as FieldCompatibility, l as ImportFieldDef, m as PostTypeAnalysis, n as CollectionSchemaStatus, o as ImportAnalysis, p as OAuthInput, r as FetchOptions, s as ImportConfig, t as AttachmentInfo, u as ImportResult, v as SourceCapabilities, x as SuggestedAction, y as SourceInput } from "./types-BeYn-Yf0.mjs";
|
package/dist/index.mjs
CHANGED
|
@@ -22,7 +22,7 @@ import "./byline-BxAf79s1.mjs";
|
|
|
22
22
|
import { t as normalizeMediaValue } from "./normalize-9GU-bv_T.mjs";
|
|
23
23
|
import { t as generatePlaceholder } from "./placeholder-BJPmhjHP.mjs";
|
|
24
24
|
import "./seo-BPz1KkCq.mjs";
|
|
25
|
-
import { 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, N as generateManifest, 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, j as handleRevisionList, k as handleMediaUpdate, q as handleContentRestore, z as handleContentDiscardDraft } from "./api-
|
|
25
|
+
import { 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, N as generateManifest, 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, j as handleRevisionList, k as handleMediaUpdate, q as handleContentRestore, z as handleContentDiscardDraft } from "./api-CgxdfUg4.mjs";
|
|
26
26
|
import "./request-cache-DmVyQUBh.mjs";
|
|
27
27
|
import "./dashboard-6gH7SlPM.mjs";
|
|
28
28
|
import "./briefing-4k6R0KAr.mjs";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../runtime-
|
|
1
|
+
import "../runtime-B5hJAnKF.mjs";
|
|
2
2
|
import { t as Database } from "../types-CYBaBvtm.mjs";
|
|
3
3
|
import "../types-DS5PYew4.mjs";
|
|
4
4
|
import "../types-B45uSz1j.mjs";
|
|
@@ -7,7 +7,7 @@ import "../runner-CHR_W79l.mjs";
|
|
|
7
7
|
import "../index-JzJUzE4o.mjs";
|
|
8
8
|
import "../index-DpMWSamU.mjs";
|
|
9
9
|
import { d as Storage } from "../types-BDm7Ipoq.mjs";
|
|
10
|
-
import "../bylines
|
|
10
|
+
import "../bylines--KurdDQK.mjs";
|
|
11
11
|
import "../types-BeYn-Yf0.mjs";
|
|
12
12
|
import "../validate-BQ24E8rK.mjs";
|
|
13
13
|
import "../index.mjs";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { n as PluginDescriptor } from "../runtime-
|
|
1
|
+
import { n as PluginDescriptor } from "../runtime-B5hJAnKF.mjs";
|
|
2
2
|
import "../types-CYBaBvtm.mjs";
|
|
3
3
|
import { X as ResolvedPlugin, tt as StandardPluginDefinition } from "../types-DS5PYew4.mjs";
|
|
4
4
|
import "../types-B45uSz1j.mjs";
|
|
5
5
|
import "../runner-CHR_W79l.mjs";
|
|
6
6
|
import "../index-JzJUzE4o.mjs";
|
|
7
7
|
import "../index-DpMWSamU.mjs";
|
|
8
|
-
import "../bylines
|
|
8
|
+
import "../bylines--KurdDQK.mjs";
|
|
9
9
|
import "../types-BeYn-Yf0.mjs";
|
|
10
10
|
import "../validate-BQ24E8rK.mjs";
|
|
11
11
|
|
|
@@ -1787,14 +1787,14 @@ declare const pluginManifestSchema: z.ZodObject<{
|
|
|
1787
1787
|
number: "number";
|
|
1788
1788
|
boolean: "boolean";
|
|
1789
1789
|
file: "file";
|
|
1790
|
-
image: "image";
|
|
1791
1790
|
slug: "slug";
|
|
1792
|
-
datetime: "datetime";
|
|
1793
1791
|
text: "text";
|
|
1794
1792
|
integer: "integer";
|
|
1793
|
+
datetime: "datetime";
|
|
1795
1794
|
select: "select";
|
|
1796
1795
|
multiSelect: "multiSelect";
|
|
1797
1796
|
portableText: "portableText";
|
|
1797
|
+
image: "image";
|
|
1798
1798
|
reference: "reference";
|
|
1799
1799
|
json: "json";
|
|
1800
1800
|
repeater: "repeater";
|
package/dist/runtime.d.mts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ct as CollectionFilter, dt as dinewayLoader, ft as getDb, lt as EntryData, ut as EntryFilter } from "./runtime-
|
|
1
|
+
import { ct as CollectionFilter, dt as dinewayLoader, ft as getDb, lt as EntryData, ut as EntryFilter } from "./runtime-B5hJAnKF.mjs";
|
|
2
2
|
import "./types-CYBaBvtm.mjs";
|
|
3
3
|
import "./types-DS5PYew4.mjs";
|
|
4
4
|
import "./types-B45uSz1j.mjs";
|
|
5
5
|
import "./runner-CHR_W79l.mjs";
|
|
6
6
|
import "./index-JzJUzE4o.mjs";
|
|
7
7
|
import "./index-DpMWSamU.mjs";
|
|
8
|
-
import "./bylines
|
|
8
|
+
import "./bylines--KurdDQK.mjs";
|
|
9
9
|
import "./types-BeYn-Yf0.mjs";
|
|
10
10
|
import "./validate-BQ24E8rK.mjs";
|
|
11
11
|
import { t as getMediaProvider } from "./provider-loader-D0F6E2qv.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dineway",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "Agentic Website builder for restaurants — structured content meets AI via the Model Context Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -342,8 +342,8 @@
|
|
|
342
342
|
"upng-js": "^2.1.0",
|
|
343
343
|
"zod": "^4.3.5",
|
|
344
344
|
"@dineway-ai/admin": "^0.1.11",
|
|
345
|
-
"@dineway-ai/
|
|
346
|
-
"@dineway-ai/
|
|
345
|
+
"@dineway-ai/auth": "^0.1.12",
|
|
346
|
+
"@dineway-ai/gutenberg-to-portable-text": "^0.1.11"
|
|
347
347
|
},
|
|
348
348
|
"optionalDependencies": {
|
|
349
349
|
"@libsql/kysely-libsql": "^0.4.0",
|