@cat-factory/kernel 0.233.0 → 0.234.1
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.
|
@@ -26,6 +26,13 @@ export interface PlatformAlertCondition {
|
|
|
26
26
|
value: number;
|
|
27
27
|
/** The configured threshold it crossed, in the same unit as {@link value}. */
|
|
28
28
|
threshold: number;
|
|
29
|
+
/**
|
|
30
|
+
* The failure kind a KIND-SCOPED condition is about (`evicted`, `timeout`, …); absent on the
|
|
31
|
+
* deployment-wide ones. It is not optional decoration on the conditions that carry it: an
|
|
32
|
+
* operator's per-kind rules all fire under ONE reason code, so this is the only thing that
|
|
33
|
+
* says which rule tripped.
|
|
34
|
+
*/
|
|
35
|
+
kind?: string;
|
|
29
36
|
}
|
|
30
37
|
/** One failing run behind an alert, so a receiver can link to the evidence. */
|
|
31
38
|
export interface PlatformAlertFailingRun {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform-alert.d.ts","sourceRoot":"","sources":["../../src/ports/platform-alert.ts"],"names":[],"mappings":"AAwBA;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,YAAI,wBAAwB,EAAE,0BAA0B,CAAU,CAAA;AACpG,MAAM,MAAM,sBAAsB,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAA;AAE3E,+FAA+F;AAC/F,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,sBAAsB,CAExF;AAED;;;;;;;;;;GAUG;AACH,MAAM,WAAW,sBAAsB;IACrC,0FAA0F;IAC1F,MAAM,EAAE,MAAM,CAAA;IACd,6FAA6F;IAC7F,KAAK,EAAE,MAAM,CAAA;IACb,8EAA8E;IAC9E,SAAS,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"platform-alert.d.ts","sourceRoot":"","sources":["../../src/ports/platform-alert.ts"],"names":[],"mappings":"AAwBA;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,YAAI,wBAAwB,EAAE,0BAA0B,CAAU,CAAA;AACpG,MAAM,MAAM,sBAAsB,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,MAAM,CAAC,CAAA;AAE3E,+FAA+F;AAC/F,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,sBAAsB,CAExF;AAED;;;;;;;;;;GAUG;AACH,MAAM,WAAW,sBAAsB;IACrC,0FAA0F;IAC1F,MAAM,EAAE,MAAM,CAAA;IACd,6FAA6F;IAC7F,KAAK,EAAE,MAAM,CAAA;IACb,8EAA8E;IAC9E,SAAS,EAAE,MAAM,CAAA;IACjB;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED,+EAA+E;AAC/E,MAAM,WAAW,uBAAuB;IACtC,WAAW,EAAE,MAAM,CAAA;IACnB,yEAAyE;IACzE,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,8EAA8E;IAC9E,WAAW,EAAE,MAAM,CAAA;IACnB,SAAS,EAAE,MAAM,CAAA;CAClB;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,sBAAsB,CAAA;IAC7B;;;;;;OAMG;IACH,MAAM,EAAE,MAAM,CAAA;IACd;;;;;OAKG;IACH,SAAS,EAAE,MAAM,CAAA;IACjB;;;;;;;;;;;;;;;OAeG;IACH,UAAU,EAAE,MAAM,CAAA;IAClB,wEAAwE;IACxE,MAAM,EAAE,MAAM,CAAA;IACd;;;OAGG;IACH,UAAU,EAAE,sBAAsB,EAAE,CAAA;IACpC;;;;;;OAMG;IACH,UAAU,EAAE,MAAM,CAAA;IAClB;;;;;OAKG;IACH,WAAW,EAAE,uBAAuB,EAAE,CAAA;IACtC;;;;OAIG;IACH,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAChC,qBAAqB,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,kBAAkB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;CACrF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/kernel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.234.1",
|
|
4
4
|
"description": "Shared vocabulary, pure logic, and port interfaces for the Agent Architecture Board.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"ai": "^7.0.47",
|
|
28
28
|
"yaml": "^2.9.0",
|
|
29
|
-
"@cat-factory/contracts": "0.
|
|
29
|
+
"@cat-factory/contracts": "0.233.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@vitest/coverage-v8": "^4.1.10",
|