@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.
@@ -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-DjrekvVR.js';
11
- export { J as JsonObject, n as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-DjrekvVR.js';
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`/`internal`), adding
1858
- * `essential` and `customization` for non-knob vertices. `FactoryConfigTier`
1859
- * is intentionally NOT widened its 3-value set still governs knob validation
1860
- * (`ORB_T_CONFIG_TIER_INVALID`). (Historically three tier vocabularies were in
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
  /**