@stackwright-pro/mcp 0.2.0-alpha.58 → 0.2.0-alpha.59
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/dist/server.js +17 -1
- package/dist/server.js.map +1 -1
- package/dist/server.mjs +17 -1
- package/dist/server.mjs.map +1 -1
- package/package.json +1 -1
package/dist/server.mjs
CHANGED
|
@@ -3318,7 +3318,12 @@ var OTTER_WRITE_ALLOWLISTS = {
|
|
|
3318
3318
|
{ prefix: ".stackwright/artifacts/", suffix: ".json", description: "Design language artifact" }
|
|
3319
3319
|
],
|
|
3320
3320
|
"stackwright-pro-theme-otter": [
|
|
3321
|
-
{ prefix: ".stackwright/artifacts/", suffix: ".json", description: "Theme tokens artifact" }
|
|
3321
|
+
{ prefix: ".stackwright/artifacts/", suffix: ".json", description: "Theme tokens artifact" },
|
|
3322
|
+
{
|
|
3323
|
+
prefix: "stackwright.theme.",
|
|
3324
|
+
suffix: ".yml",
|
|
3325
|
+
description: "Theme config YAML (merged at build time)"
|
|
3326
|
+
}
|
|
3322
3327
|
],
|
|
3323
3328
|
"stackwright-pro-auth-otter": [
|
|
3324
3329
|
{ prefix: ".stackwright/artifacts/", suffix: ".json", description: "Auth config artifact" },
|
|
@@ -3351,6 +3356,17 @@ var OTTER_WRITE_ALLOWLISTS = {
|
|
|
3351
3356
|
],
|
|
3352
3357
|
"stackwright-pro-api-otter": [
|
|
3353
3358
|
{ prefix: ".stackwright/artifacts/", suffix: ".json", description: "API config artifact" }
|
|
3359
|
+
],
|
|
3360
|
+
"stackwright-pro-geo-otter": [
|
|
3361
|
+
{ prefix: ".stackwright/artifacts/", suffix: ".json", description: "Geo manifest artifact" },
|
|
3362
|
+
{ prefix: "pages/", suffix: "/content.yml", description: "Map page content" },
|
|
3363
|
+
{ prefix: "pages/", suffix: "/content.yaml", description: "Map page content" }
|
|
3364
|
+
],
|
|
3365
|
+
"stackwright-pro-polish-otter": [
|
|
3366
|
+
{ prefix: "stackwright.yml", suffix: "", description: "Stackwright config (navigation updates)" },
|
|
3367
|
+
{ prefix: "pages/", suffix: "/content.yml", description: "Landing page content" },
|
|
3368
|
+
{ prefix: "pages/", suffix: "/content.yaml", description: "Landing page content" },
|
|
3369
|
+
{ prefix: ".stackwright/artifacts/", suffix: ".json", description: "Polish artifact" }
|
|
3354
3370
|
]
|
|
3355
3371
|
};
|
|
3356
3372
|
var PROTECTED_PATH_PREFIXES = [
|