@konneal/engine 0.2.20 → 0.2.21
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
CHANGED
|
@@ -97,10 +97,12 @@ key.
|
|
|
97
97
|
|
|
98
98
|
## Promotion gates
|
|
99
99
|
|
|
100
|
-
The
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
100
|
+
The gate belongs to the deployment: its golden cases, annealment
|
|
101
|
+
probes and the runners (gates, eval, variance, e2e) live in the
|
|
102
|
+
deployment repository and run against that deployment's production.
|
|
103
|
+
The engine provides what the gate exercises — the answer contract,
|
|
104
|
+
the typed blocks and the model plane — and its own CI proves the
|
|
105
|
+
fixture profiles end to end.
|
|
104
106
|
|
|
105
107
|
## Repository
|
|
106
108
|
|
|
@@ -1615,7 +1615,7 @@ async function openapiCatalogRoute(c) {
|
|
|
1615
1615
|
openapi: "3.1.0",
|
|
1616
1616
|
info: { title: `${P().publisher.product_name} API`, version: c.env.INDEX_VERSION ?? "0" },
|
|
1617
1617
|
paths: {},
|
|
1618
|
-
"x-
|
|
1618
|
+
"x-permissions-catalog": permissionsCatalog()
|
|
1619
1619
|
},
|
|
1620
1620
|
200,
|
|
1621
1621
|
corsHeaders(c.req)
|
package/package.json
CHANGED
|
@@ -5,13 +5,7 @@
|
|
|
5
5
|
],
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc -p workers/worker_public",
|
|
8
|
-
"deploy:public": "npm run deploy -w workers/worker_public",
|
|
9
|
-
"dev:public": "npm run dev -w workers/worker_public",
|
|
10
|
-
"deploy": "./scripts/deploy.sh",
|
|
11
|
-
"test:golden": "node scripts/eval.mjs",
|
|
12
|
-
"test:e2e": "node tests/e2e.mjs",
|
|
13
8
|
"lint:wrangler": "python3 scripts/lint_wrangler.py",
|
|
14
|
-
"test:ui": "node tests/ui.mjs",
|
|
15
9
|
"test:bridge": "node --test tests/bridge.test.mjs",
|
|
16
10
|
"test:units": "node --test --experimental-strip-types tests/*.test.ts",
|
|
17
11
|
"gen:openapi-types": "node scripts/gen-openapi-types.mjs",
|
|
@@ -34,7 +28,7 @@
|
|
|
34
28
|
"@oimlsmart/oiml-pubid": "^1.2.1"
|
|
35
29
|
},
|
|
36
30
|
"dependencies": {},
|
|
37
|
-
"version": "0.2.
|
|
31
|
+
"version": "0.2.21",
|
|
38
32
|
"description": "The Konneal engine: the publisher-agnostic build pipeline and API plane for standards intelligence (retrieval, answer contract, verdicts, evaluation).",
|
|
39
33
|
"license": "BSD-3-Clause",
|
|
40
34
|
"type": "module",
|
|
@@ -435,7 +435,7 @@ async function openapiCatalogRoute(c: RouteContext): Promise<Response> {
|
|
|
435
435
|
openapi: "3.1.0",
|
|
436
436
|
info: { title: `${P().publisher.product_name} API`, version: c.env.INDEX_VERSION ?? "0" },
|
|
437
437
|
paths: {},
|
|
438
|
-
"x-
|
|
438
|
+
"x-permissions-catalog": permissionsCatalog(),
|
|
439
439
|
},
|
|
440
440
|
200,
|
|
441
441
|
corsHeaders(c.req),
|