@stackwright-pro/mcp 0.2.0-alpha.112 → 0.2.0-alpha.114
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/integrity.js +7 -3
- package/dist/integrity.js.map +1 -1
- package/dist/integrity.mjs +7 -3
- package/dist/integrity.mjs.map +1 -1
- package/dist/pipeline-constants.d.mts +5 -3
- package/dist/pipeline-constants.d.ts +5 -3
- package/dist/pipeline-constants.js +30 -1
- package/dist/pipeline-constants.js.map +1 -1
- package/dist/pipeline-constants.mjs +30 -1
- package/dist/pipeline-constants.mjs.map +1 -1
- package/dist/server.js +292 -42
- package/dist/server.js.map +1 -1
- package/dist/server.mjs +283 -33
- package/dist/server.mjs.map +1 -1
- package/package.json +6 -6
|
@@ -97,13 +97,19 @@ var PHASE_ORDER = [
|
|
|
97
97
|
"api",
|
|
98
98
|
"data",
|
|
99
99
|
"auth",
|
|
100
|
-
// moved earlier
|
|
100
|
+
// wave 2 — moved earlier, only depends on design-language.json (designer)
|
|
101
101
|
"geo",
|
|
102
102
|
"workflow",
|
|
103
103
|
"services",
|
|
104
104
|
"pages",
|
|
105
105
|
"dashboard",
|
|
106
|
+
// auth-reconcile: wave 6 — post-manifest reconciliation
|
|
107
|
+
// Reads auth-config.json + pages/dashboard/geo/workflow manifests;
|
|
108
|
+
// emits auth-reconcile-config.json + stackwright.auth.yml (Gate 4 single source of truth)
|
|
109
|
+
"auth-reconcile",
|
|
110
|
+
// wave 7: polish — depends on auth-reconcile (replaces auth-config.json direct dep)
|
|
106
111
|
"polish",
|
|
112
|
+
// wave 8: qa — terminal QA gate, depends on polish + transitively everything
|
|
107
113
|
"qa"
|
|
108
114
|
];
|
|
109
115
|
var PHASE_ARTIFACT = {
|
|
@@ -117,6 +123,7 @@ var PHASE_ARTIFACT = {
|
|
|
117
123
|
dashboard: "dashboard-manifest.json",
|
|
118
124
|
workflow: "workflow-config.json",
|
|
119
125
|
services: "services-config.json",
|
|
126
|
+
"auth-reconcile": "auth-reconcile-config.json",
|
|
120
127
|
polish: "polish-manifest.json",
|
|
121
128
|
geo: "geo-manifest.json",
|
|
122
129
|
qa: "qa-findings.json"
|
|
@@ -411,6 +418,28 @@ var PHASE_ARTIFACT_SCHEMA = {
|
|
|
411
418
|
null,
|
|
412
419
|
2
|
|
413
420
|
),
|
|
421
|
+
"auth-reconcile": JSON.stringify(
|
|
422
|
+
{
|
|
423
|
+
version: "1.0",
|
|
424
|
+
generatedBy: "stackwright-pro-auth-reconcile-otter",
|
|
425
|
+
authType: "<oidc|saml|cac|oauth2>",
|
|
426
|
+
rbacRoles: ["<HIGHEST_ROLE>", "<MID_ROLE>", "<LOWEST_ROLE>"],
|
|
427
|
+
rbacDefaultRole: "<LOWEST_ROLE>",
|
|
428
|
+
protectedRoutes: [
|
|
429
|
+
{ pattern: "/dashboard", requiredRole: "<role>" },
|
|
430
|
+
{ pattern: "/dashboard/:path*", requiredRole: "<role>" }
|
|
431
|
+
],
|
|
432
|
+
uncoveredSlugs: [],
|
|
433
|
+
manifestsRead: ["pages-manifest.json", "dashboard-manifest.json", "geo-manifest.json"],
|
|
434
|
+
summary: {
|
|
435
|
+
totalRoutes: 2,
|
|
436
|
+
manifestDerived: 2,
|
|
437
|
+
crossCutting: 0
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
null,
|
|
441
|
+
2
|
|
442
|
+
),
|
|
414
443
|
polish: JSON.stringify(
|
|
415
444
|
{
|
|
416
445
|
version: "1.0",
|