@almadar/core 9.8.0 → 9.9.0
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/factory/index.d.ts +10 -2
- package/dist/factory/index.js +24 -1
- package/dist/factory/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +24 -1
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +7 -8
- package/dist/types/index.js.map +1 -1
- package/dist/{types-DjrekvVR.d.ts → types-CQF32lJA.d.ts} +9 -4
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ export { C as CORE_BINDINGS, a as CoreBinding, d as Expression, e as ExpressionI
|
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import { AnyPatternConfig } from '@almadar/patterns';
|
|
9
9
|
export { PATTERN_TYPES, PatternConfig, PatternType, isValidPatternType } from '@almadar/patterns';
|
|
10
|
-
import { c as FactoryConfigTier } from '../types-
|
|
11
|
-
export { J as JsonObject, n as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-
|
|
10
|
+
import { c as FactoryConfigTier } from '../types-CQF32lJA.js';
|
|
11
|
+
export { J as JsonObject, n as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-CQF32lJA.js';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* S-Expression Bindings
|
|
@@ -1854,13 +1854,12 @@ declare function isKnownValidationErrorCode(code: ValidationErrorCode): boolean;
|
|
|
1854
1854
|
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Decision-kind tier for the annotation layer. SUPERSET of the validator-
|
|
1857
|
-
* enforced `FactoryConfigTier` (`domain`/`presentation
|
|
1858
|
-
* `essential` and `customization` for non-knob
|
|
1859
|
-
*
|
|
1860
|
-
*
|
|
1861
|
-
* flight; this is the reconciled annotation-layer set.)
|
|
1857
|
+
* enforced `FactoryConfigTier` (`domain`/`policy`/`infra`/`presentation`/
|
|
1858
|
+
* `internal`), adding `essential` and `customization` for non-knob (event)
|
|
1859
|
+
* vertices that still carry the old vocabulary. Every `FactoryConfigTier`
|
|
1860
|
+
* value must be a member so `widenTier` stays a valid identity widen.
|
|
1862
1861
|
*/
|
|
1863
|
-
type AnnotationTier = "essential" | "domain" | "presentation" | "customization" | "internal";
|
|
1862
|
+
type AnnotationTier = "essential" | "domain" | "policy" | "infra" | "presentation" | "customization" | "internal";
|
|
1864
1863
|
/** Widen a knob's `FactoryConfigTier` into the annotation-layer `AnnotationTier`. */
|
|
1865
1864
|
declare function widenTier(tier: FactoryConfigTier): AnnotationTier;
|
|
1866
1865
|
/**
|