@almadar/core 10.4.0 → 10.6.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.
@@ -1,4 +1,4 @@
1
- import { b as EventPayload, S as SExpr } from '../expression-BVRFm0sV.js';
1
+ import { c as EventPayload, S as SExpr } from '../expression-BUIi9ezJ.js';
2
2
  import 'zod';
3
3
 
4
4
  /**
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { S as SExpr, b as EventPayload, d as Expression } from './expression-BVRFm0sV.js';
2
+ import { S as SExpr, c as EventPayload, E as Expression } from './expression-BUIi9ezJ.js';
3
3
  import { AnyPatternConfig } from '@almadar/patterns';
4
4
 
5
5
  /**
@@ -1622,30 +1622,29 @@ type EntityRow = {
1622
1622
  id?: string;
1623
1623
  } & Record<string, FieldValue | undefined>;
1624
1624
  /**
1625
- * A field-refined `EntityRow` — the SINGLE entity type, narrowed so a set of
1626
- * named fields are REQUIRED (present, non-`undefined`). This is how an entity-
1627
- * interacting component declares the fields it needs to function WITHOUT
1628
- * introducing a separate per-component entity type: it stays structurally an
1629
- * `EntityRow` (index signature intact, every other field still field-open), so
1630
- * any domain entity that provides those fields satisfies it.
1631
- *
1632
- * One declaration, two jobs: (1) TypeScript enforces that the bound entity has
1633
- * the fields (a behavior binding a thinner entity fails to typecheck); and
1634
- * (2) pattern-sync reads the same type and writes `requiredFields` onto the
1635
- * registry's entity prop, so the `ORB_X_ENTITY_PROP_CONTRACT` validator rule
1636
- * rejects an incompatible bind at `orbital validate` (accounting for `.lolo`
1637
- * field-remaps). Use a raw `EntityRow & { rating: number }` intersection when a
1638
- * field needs a specific scalar type rather than mere presence.
1625
+ * A field-TYPED `EntityRow` — the SINGLE entity type, refined with a concrete
1626
+ * field SHAPE `S`. Non-optional members of `S` are REQUIRED, each with its real
1627
+ * type; the result stays `& EntityRow`, so the index signature is intact and
1628
+ * every other field is still field-open any domain entity that provides those
1629
+ * fields satisfies it.
1630
+ *
1631
+ * One declaration, two jobs: (1) TypeScript enforces the bound entity has the
1632
+ * fields WITH their types (a behavior binding a thinner/mistyped entity fails to
1633
+ * typecheck); and (2) pattern-sync reads the same type and writes the entity
1634
+ * prop's field shape (`properties` + `requiredFields`) onto the registry, so
1635
+ * lolo-ui emits a COMPLETE `entity { … }` (every field, typed + demo-seeded) and
1636
+ * the `ORB_X_ENTITY_PROP_CONTRACT` validator rejects an incompatible bind at
1637
+ * `orbital validate`. (A raw `EntityRow & { rating: number }` intersection is
1638
+ * equivalent for one-off shapes.)
1639
1639
  *
1640
1640
  * @example
1641
1641
  * // HeroOrganism renders entity.title / entity.subtitle:
1642
- * entity?: EntityWith<'title' | 'subtitle'>;
1643
- * // entity.title FieldValue (required)
1644
- * // entity.other FieldValue | undefined (still field-open)
1642
+ * entity?: EntityWith<{ title: string; subtitle?: string }>;
1643
+ * // entity.title string (required)
1644
+ * // entity.subtitle string | undefined (optional)
1645
+ * // entity.other → FieldValue | undefined (still field-open)
1645
1646
  */
1646
- type EntityWith<K extends string> = EntityRow & {
1647
- readonly [P in K]: FieldValue;
1648
- };
1647
+ type EntityWith<S extends object> = EntityRow & S;
1649
1648
  /**
1650
1649
  * Collection of entity instances keyed by entity name.
1651
1650
  * Used by OrbPreview mockData, OrbitalServerRuntime state, data grids, etc.
@@ -6213,4 +6212,4 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
6213
6212
  } | undefined;
6214
6213
  }>]>;
6215
6214
 
6216
- export { EntityFieldSchema as $, type AgentEffect as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Effect as E, type CheckpointLoadEffect as F, type CheckpointSaveEffect as G, type ConfigFieldDeclaration as H, ConfigFieldDeclarationSchema as I, type DeclaredTraitConfig as J, DeclaredTraitConfigSchema as K, type DerefEffect as L, type DespawnEffect as M, type DoEffect as N, ENTITY_ROLES as O, type EffectInput as P, EffectSchema as Q, type RenderBinding as R, type State as S, type TraitConfig as T, type UISlot as U, type EmitConfig as V, type EmitEffect as W, type EntityData as X, type EntityFieldContract as Y, EntityFieldContractSchema as Z, type EntityFieldInput as _, type Trait as a, type ResolvedAsset as a$, EntityPersistenceSchema as a0, type EntityRole as a1, EntityRoleSchema as a2, EntitySchema as a3, type EntityWith as a4, type EnumEntityField as a5, type EvaluateConfig as a6, type EvaluateEffect as a7, type Event as a8, type EventInput as a9, type McpServiceDef as aA, McpServiceDefSchema as aB, type NavigateEffect as aC, type NnConfig as aD, type NnLayer as aE, type NotifyEffect as aF, type OrbitalEntity as aG, type OrbitalEntityInput as aH, OrbitalEntitySchema as aI, type OrbitalTraitRef as aJ, OrbitalTraitRefSchema as aK, type OsEffect as aL, type PayloadField as aM, PayloadFieldSchema as aN, type PersistData as aO, type PersistEffect as aP, type PersistEmitConfig as aQ, type PresentationType as aR, type RefEffect as aS, type RelationConfig as aT, RelationConfigSchema as aU, type RelationEntityField as aV, type RenderItemLambda as aW, type RenderUIConfig as aX, type RenderUINode as aY, type RequiredField as aZ, RequiredFieldSchema as a_, type EventPayloadField as aa, EventPayloadFieldSchema as ab, EventSchema as ac, type EventScope as ad, EventScopeSchema as ae, type FetchEffect as af, type FetchOptions as ag, type FetchResult as ah, type Field as ai, type FieldFormat as aj, FieldFormatSchema as ak, FieldSchema as al, type FieldType as am, FieldTypeSchema as an, type FieldValue as ao, type ForwardConfig as ap, type ForwardEffect as aq, GAME_TYPES as ar, type GameType as as, GameTypeSchema as at, type Guard as au, type GuardInput as av, GuardSchema as aw, type ListenSource as ax, ListenSourceSchema as ay, type LogEffect as az, type RenderUIEffect as b, VISUAL_STYLES as b$, type ResolvedAssetInput as b0, ResolvedAssetSchema as b1, type ResolvedPatternProps as b2, type RestAuthConfig as b3, RestAuthConfigSchema as b4, type RestServiceDef as b5, RestServiceDefSchema as b6, SERVICE_TYPES as b7, type ScalarEntityField as b8, type SemanticAssetRef as b9, type TrainEffect as bA, type TraitCategory as bB, TraitCategorySchema as bC, type TraitConfigObject as bD, TraitConfigSchema as bE, type TraitConfigValue as bF, TraitConfigValueSchema as bG, type TraitDataEntity as bH, TraitDataEntitySchema as bI, type TraitEntityField as bJ, TraitEntityFieldSchema as bK, TraitEventContractSchema as bL, TraitEventListenerSchema as bM, type TraitInput as bN, TraitRefSchema as bO, type TraitReferenceInput as bP, TraitReferenceSchema as bQ, TraitSchema as bR, type TraitTick as bS, TraitTickSchema as bT, type TraitUIBinding as bU, type Transition as bV, type TransitionInput as bW, TransitionSchema as bX, type TypedEffect as bY, UISlotSchema as bZ, UI_SLOTS as b_, type SemanticAssetRefInput as ba, SemanticAssetRefSchema as bb, type ServiceDefinition as bc, ServiceDefinitionSchema as bd, type ServiceParams as be, type ServiceParamsValue as bf, type ServiceRef as bg, type ServiceRefObject as bh, ServiceRefObjectSchema as bi, ServiceRefSchema as bj, ServiceRefStringSchema as bk, type ServiceType as bl, ServiceTypeSchema as bm, type SetEffect as bn, type SocketEvents as bo, SocketEventsSchema as bp, type SocketServiceDef as bq, SocketServiceDefSchema as br, type SpawnEffect as bs, type StateInput as bt, type StateMachine as bu, type StateMachineInput as bv, StateMachineSchema as bw, StateSchema as bx, type SwapEffect as by, type TrainConfig as bz, type TraitEventContract as c, type VisualStyle as c0, VisualStyleSchema as c1, type WatchEffect as c2, type WatchOptions as c3, atomic as c4, callService as c5, createAssetKey as c6, deref as c7, deriveCollection as c8, despawn as c9, renderUI as cA, set as cB, spawn as cC, swap as cD, validateAssetAnimations as cE, watch as cF, type TraitScope as cG, doEffects as ca, emit as cb, findService as cc, getDefaultAnimationsForRole as cd, getServiceNames as ce, getTraitConfig as cf, getTraitName as cg, hasService as ch, isCircuitEvent as ci, isEffect as cj, isInlineTrait as ck, isMcpService as cl, isRestService as cm, isRuntimeEntity as cn, isSExprEffect as co, isServiceReference as cp, isServiceReferenceObject as cq, isSingletonEntity as cr, isSocketService as cs, navigate as ct, normalizeTraitRef as cu, notify as cv, parseAssetKey as cw, parseServiceRef as cx, persist as cy, ref as cz, type Entity as d, type TraitEventListener as e, type EntityField as f, type EntityPersistence as g, type EntityRow as h, type TraitRef as i, type TraitReference as j, type AnimationDef as k, type AnimationDefInput as l, AnimationDefSchema as m, type ArrayEntityField as n, type AssetCatalog as o, type AssetCatalogEntry as p, type AssetCatalogEntryInput as q, AssetCatalogEntrySchema as r, AssetCatalogSchema as s, type AssetMap as t, type AssetMapInput as u, AssetMapSchema as v, type AssetMapping as w, type AssetMappingInput as x, AssetMappingSchema as y, type AssetUrl as z };
6215
+ export { type EntityData as $, type AgentEffect as A, type AssetMapping as B, type ConfigFieldDeclaration as C, type AssetMappingInput as D, type Effect as E, AssetMappingSchema as F, type AssetUrl as G, type AtomicEffect as H, type CallServiceConfig as I, type CallServiceEffect as J, type CheckpointLoadEffect as K, type CheckpointSaveEffect as L, ConfigFieldDeclarationSchema as M, type DeclaredTraitConfig as N, DeclaredTraitConfigSchema as O, type DerefEffect as P, type DespawnEffect as Q, type RenderBinding as R, type ServiceRef as S, type TraitConfig as T, type UISlot as U, type DoEffect as V, ENTITY_ROLES as W, type EffectInput as X, EffectSchema as Y, type EmitConfig as Z, type EmitEffect as _, type Trait as a, type RenderUINode as a$, type EntityFieldContract as a0, EntityFieldContractSchema as a1, type EntityFieldInput as a2, EntityFieldSchema as a3, EntityPersistenceSchema as a4, type EntityRole as a5, EntityRoleSchema as a6, EntitySchema as a7, type EntityWith as a8, type EnumEntityField as a9, type ListenSource as aA, ListenSourceSchema as aB, type LogEffect as aC, type McpServiceDef as aD, McpServiceDefSchema as aE, type NavigateEffect as aF, type NnConfig as aG, type NnLayer as aH, type NotifyEffect as aI, type OrbitalEntity as aJ, type OrbitalEntityInput as aK, OrbitalEntitySchema as aL, type OrbitalTraitRef as aM, OrbitalTraitRefSchema as aN, type OsEffect as aO, type PayloadField as aP, PayloadFieldSchema as aQ, type PersistData as aR, type PersistEffect as aS, type PersistEmitConfig as aT, type PresentationType as aU, type RefEffect as aV, type RelationConfig as aW, RelationConfigSchema as aX, type RelationEntityField as aY, type RenderItemLambda as aZ, type RenderUIConfig as a_, type EvaluateConfig as aa, type EvaluateEffect as ab, type Event as ac, type EventInput as ad, EventPayloadFieldSchema as ae, EventSchema as af, type EventScope as ag, EventScopeSchema as ah, type FetchEffect as ai, type FetchOptions as aj, type FetchResult as ak, type Field as al, type FieldFormat as am, FieldFormatSchema as an, FieldSchema as ao, type FieldType as ap, FieldTypeSchema as aq, type FieldValue as ar, type ForwardConfig as as, type ForwardEffect as at, GAME_TYPES as au, type GameType as av, GameTypeSchema as aw, type Guard as ax, type GuardInput as ay, GuardSchema as az, type RenderUIEffect as b, VISUAL_STYLES as b$, type RequiredField as b0, RequiredFieldSchema as b1, type ResolvedAsset as b2, type ResolvedAssetInput as b3, ResolvedAssetSchema as b4, type ResolvedPatternProps as b5, type RestAuthConfig as b6, RestAuthConfigSchema as b7, type RestServiceDef as b8, RestServiceDefSchema as b9, type TrainConfig as bA, type TrainEffect as bB, type TraitCategory as bC, TraitCategorySchema as bD, TraitConfigSchema as bE, type TraitConfigValue as bF, TraitConfigValueSchema as bG, type TraitDataEntity as bH, TraitDataEntitySchema as bI, type TraitEntityField as bJ, TraitEntityFieldSchema as bK, TraitEventContractSchema as bL, TraitEventListenerSchema as bM, type TraitInput as bN, TraitRefSchema as bO, type TraitReferenceInput as bP, TraitReferenceSchema as bQ, TraitSchema as bR, type TraitTick as bS, TraitTickSchema as bT, type TraitUIBinding as bU, type Transition as bV, type TransitionInput as bW, TransitionSchema as bX, type TypedEffect as bY, UISlotSchema as bZ, UI_SLOTS as b_, SERVICE_TYPES as ba, type ScalarEntityField as bb, type SemanticAssetRef as bc, type SemanticAssetRefInput as bd, SemanticAssetRefSchema as be, ServiceDefinitionSchema as bf, type ServiceParams as bg, type ServiceParamsValue as bh, type ServiceRefObject as bi, ServiceRefObjectSchema as bj, ServiceRefSchema as bk, ServiceRefStringSchema as bl, type ServiceType as bm, ServiceTypeSchema as bn, type SetEffect as bo, type SocketEvents as bp, SocketEventsSchema as bq, type SocketServiceDef as br, SocketServiceDefSchema as bs, type SpawnEffect as bt, type StateInput as bu, type StateMachine as bv, type StateMachineInput as bw, StateMachineSchema as bx, StateSchema as by, type SwapEffect as bz, type TraitEventContract as c, type VisualStyle as c0, VisualStyleSchema as c1, type WatchEffect as c2, type WatchOptions as c3, atomic as c4, callService as c5, createAssetKey as c6, deref as c7, deriveCollection as c8, despawn as c9, renderUI as cA, set as cB, spawn as cC, swap as cD, validateAssetAnimations as cE, watch as cF, type TraitScope as cG, doEffects as ca, emit as cb, findService as cc, getDefaultAnimationsForRole as cd, getServiceNames as ce, getTraitConfig as cf, getTraitName as cg, hasService as ch, isCircuitEvent as ci, isEffect as cj, isInlineTrait as ck, isMcpService as cl, isRestService as cm, isRuntimeEntity as cn, isSExprEffect as co, isServiceReference as cp, isServiceReferenceObject as cq, isSingletonEntity as cr, isSocketService as cs, navigate as ct, normalizeTraitRef as cu, notify as cv, parseAssetKey as cw, parseServiceRef as cx, persist as cy, ref as cz, type Entity as d, type TraitEventListener as e, type EntityField as f, type EntityPersistence as g, type EntityRow as h, type TraitRef as i, type TraitReference as j, type TraitConfigObject as k, type EventPayloadField as l, type ServiceDefinition as m, type State as n, type AnimationDef as o, type AnimationDefInput as p, AnimationDefSchema as q, type ArrayEntityField as r, type AssetCatalog as s, type AssetCatalogEntry as t, type AssetCatalogEntryInput as u, AssetCatalogEntrySchema as v, AssetCatalogSchema as w, type AssetMap as x, type AssetMapInput as y, AssetMapSchema as z };
@@ -1,14 +1,14 @@
1
- import { O as OrbitalSchema, a7 as Orbital, b as Page, L as DomainContext, a as OrbitalDefinition, b0 as PageTraitRef } from '../schema-JNr7Yzww.js';
2
- export { A as AGENT_DOMAIN_CATEGORIES, d as ALLOWED_CUSTOM_COMPONENTS, e as AgentDomainCategory, f as AgentDomainCategorySchema, g as AllowedCustomComponent, C as ColorSlice, h as ColorSliceSchema, i as ColorTokens, j as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, F as DesignPreferencesSchema, G as DesignTokens, H as DesignTokensInput, I as DesignTokensSchema, J as DomainCategory, K as DomainCategorySchema, M as DomainContextInput, N as DomainContextSchema, Q as DomainVocabulary, R as DomainVocabularySchema, S as ElevationSlice, T as ElevationSliceSchema, V as ElevationTokens, W as ElevationTokensSchema, X as EntityCall, Y as EntityCallSchema, E as EntityRef, Z as EntityRefSchema, _ as EntityRefStringSchema, $ as EntitySemanticRole, a0 as EntitySemanticRoleSchema, a1 as EventListener, a2 as EventListenerSchema, a3 as EventSemanticRole, a4 as EventSemanticRoleSchema, a5 as EventSource, a6 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, aq as MotionDurationKey, ar as MotionDurationKeySchema, as as MotionDurationPalette, at as MotionDurationPaletteSchema, au as MotionEasingKey, av as MotionEasingKeySchema, aw as MotionEasingPalette, ax as MotionEasingPaletteSchema, ay as MotionIntent, az as MotionIntentMap, aA as MotionIntentMapSchema, aB as MotionIntentSchema, aC as MotionSlice, aD as MotionSliceSchema, aE as MotionTokens, aF as MotionTokensSchema, aG as NodeClassification, aH as NodeClassificationSchema, aI as OrbitalConfig, aJ as OrbitalConfigInput, aK as OrbitalConfigSchema, aL as OrbitalDefinitionSchema, aM as OrbitalInput, aN as OrbitalPage, aO as OrbitalPageInput, aP as OrbitalPageSchema, aQ as OrbitalPageStrictInput, aR as OrbitalPageStrictSchema, aS as OrbitalSchemaInput, aT as OrbitalSchemaSchema, aU as OrbitalSchemaWithTraits, aV as OrbitalUnit, aW as OrbitalUnitSchema, aX as OrbitalZodSchema, P as PageRef, c as PageRefObject, aY as PageRefObjectSchema, aZ as PageRefSchema, a_ as PageRefStringSchema, a$ as PageSchema, b1 as PageTraitRefSchema, b2 as RelatedLink, b3 as RelatedLinkSchema, b4 as SchemaMetadata, b5 as SchemaMetadataSchema, b6 as SkinSpec, b7 as SkinSpecSchema, b8 as SpacingScale, b9 as SpacingScaleSchema, ba as StateSemanticRole, bb as StateSemanticRoleSchema, bc as SuggestedGuard, bd as SuggestedGuardSchema, be as ThemeDefinition, bf as ThemeDefinitionSchema, bg as ThemeRef, bh as ThemeRefSchema, bi as ThemeRefStringSchema, bj as ThemeTokens, bk as ThemeTokensSchema, bl as ThemeVariant, bm as ThemeVariantSchema, bn as TypeIntent, bo as TypeIntentMap, bp as TypeIntentMapSchema, bq as TypeIntentSchema, br as TypeScale, bs as TypeScaleEntry, bt as TypeScaleEntrySchema, bu as TypeScaleSchema, bv as TypeScaleTokens, bw as TypeScaleTokensSchema, bx as TypeSizeKey, by as TypeSizeKeySchema, bz as TypeSlice, bA as TypeSliceSchema, bB as TypeSlot, bC as TypeSlotSchema, bD as TypeWeight, bE as TypeWeightSchema, bF as UXHints, bG as UXHintsSchema, U as UseDeclaration, bH as UseDeclarationSchema, bI as UserPersona, bJ as UserPersonaInput, bK as UserPersonaSchema, bL as ViewType, bM as ViewTypeSchema, bN as isEntityCall, bO as isEntityReference, bP as isEntityReferenceAny, bQ as isImportedTraitRef, bR as isOrbitalDefinition, bS as isPageReference, bT as isPageReferenceObject, bU as isPageReferenceString, bV as isThemeReference, bW as parseEntityRef, bX as parseImportedTraitRef, bY as parseOrbitalSchema, bZ as parsePageRef, b_ as safeParseOrbitalSchema } from '../schema-JNr7Yzww.js';
3
- import { be as ServiceParams, a as Trait, d as Entity, h as EntityRow, ao as FieldValue, J as DeclaredTraitConfig, T as TraitConfig, E as Effect, H as ConfigFieldDeclaration, S as State, bV as Transition, f as EntityField, a8 as Event, bF as TraitConfigValue, g as EntityPersistence, bB as TraitCategory, cG as TraitScope } from '../trait-C7cTBoi5.js';
4
- export { A as AgentEffect, k as AnimationDef, l as AnimationDefInput, m as AnimationDefSchema, n as ArrayEntityField, o as AssetCatalog, p as AssetCatalogEntry, q as AssetCatalogEntryInput, r as AssetCatalogEntrySchema, s as AssetCatalogSchema, t as AssetMap, u as AssetMapInput, v as AssetMapSchema, w as AssetMapping, x as AssetMappingInput, y as AssetMappingSchema, z as AssetUrl, B as AtomicEffect, C as CallServiceConfig, D as CallServiceEffect, F as CheckpointLoadEffect, G as CheckpointSaveEffect, I as ConfigFieldDeclarationSchema, K as DeclaredTraitConfigSchema, L as DerefEffect, M as DespawnEffect, N as DoEffect, O as ENTITY_ROLES, P as EffectInput, Q as EffectSchema, V as EmitConfig, W as EmitEffect, X as EntityData, Y as EntityFieldContract, Z as EntityFieldContractSchema, _ as EntityFieldInput, $ as EntityFieldSchema, a0 as EntityPersistenceSchema, a1 as EntityRole, a2 as EntityRoleSchema, a3 as EntitySchema, a4 as EntityWith, a5 as EnumEntityField, a6 as EvaluateConfig, a7 as EvaluateEffect, a9 as EventInput, aa as EventPayloadField, ab as EventPayloadFieldSchema, ac as EventSchema, ad as EventScope, ae as EventScopeSchema, af as FetchEffect, ag as FetchOptions, ah as FetchResult, ai as Field, aj as FieldFormat, ak as FieldFormatSchema, al as FieldSchema, am as FieldType, an as FieldTypeSchema, ap as ForwardConfig, aq as ForwardEffect, ar as GAME_TYPES, as as GameType, at as GameTypeSchema, au as Guard, av as GuardInput, aw as GuardSchema, ax as ListenSource, ay as ListenSourceSchema, az as LogEffect, aA as McpServiceDef, aB as McpServiceDefSchema, aC as NavigateEffect, aD as NnConfig, aE as NnLayer, aF as NotifyEffect, aG as OrbitalEntity, aH as OrbitalEntityInput, aI as OrbitalEntitySchema, aJ as OrbitalTraitRef, aK as OrbitalTraitRefSchema, aL as OsEffect, aM as PayloadField, aN as PayloadFieldSchema, aO as PersistData, aP as PersistEffect, aQ as PersistEmitConfig, aR as PresentationType, aS as RefEffect, aT as RelationConfig, aU as RelationConfigSchema, aV as RelationEntityField, R as RenderBinding, aW as RenderItemLambda, aX as RenderUIConfig, b as RenderUIEffect, aY as RenderUINode, aZ as RequiredField, a_ as RequiredFieldSchema, a$ as ResolvedAsset, b0 as ResolvedAssetInput, b1 as ResolvedAssetSchema, b2 as ResolvedPatternProps, b3 as RestAuthConfig, b4 as RestAuthConfigSchema, b5 as RestServiceDef, b6 as RestServiceDefSchema, b7 as SERVICE_TYPES, b8 as ScalarEntityField, b9 as SemanticAssetRef, ba as SemanticAssetRefInput, bb as SemanticAssetRefSchema, bc as ServiceDefinition, bd as ServiceDefinitionSchema, bf as ServiceParamsValue, bg as ServiceRef, bh as ServiceRefObject, bi as ServiceRefObjectSchema, bj as ServiceRefSchema, bk as ServiceRefStringSchema, bl as ServiceType, bm as ServiceTypeSchema, bn as SetEffect, bo as SocketEvents, bp as SocketEventsSchema, bq as SocketServiceDef, br as SocketServiceDefSchema, bs as SpawnEffect, bt as StateInput, bu as StateMachine, bv as StateMachineInput, bw as StateMachineSchema, bx as StateSchema, by as SwapEffect, bz as TrainConfig, bA as TrainEffect, bC as TraitCategorySchema, bD as TraitConfigObject, bE as TraitConfigSchema, bG as TraitConfigValueSchema, bH as TraitDataEntity, bI as TraitDataEntitySchema, bJ as TraitEntityField, bK as TraitEntityFieldSchema, c as TraitEventContract, bL as TraitEventContractSchema, e as TraitEventListener, bM as TraitEventListenerSchema, bN as TraitInput, i as TraitRef, bO as TraitRefSchema, j as TraitReference, bP as TraitReferenceInput, bQ as TraitReferenceSchema, bR as TraitSchema, bS as TraitTick, bT as TraitTickSchema, bU as TraitUIBinding, bW as TransitionInput, bX as TransitionSchema, bY as TypedEffect, U as UISlot, bZ as UISlotSchema, b_ as UI_SLOTS, b$ as VISUAL_STYLES, c0 as VisualStyle, c1 as VisualStyleSchema, c2 as WatchEffect, c3 as WatchOptions, c4 as atomic, c5 as callService, c6 as createAssetKey, c7 as deref, c8 as deriveCollection, c9 as despawn, ca as doEffects, cb as emit, cc as findService, cd as getDefaultAnimationsForRole, ce as getServiceNames, cf as getTraitConfig, cg as getTraitName, ch as hasService, ci as isCircuitEvent, cj as isEffect, ck as isInlineTrait, cl as isMcpService, cm as isRestService, cn as isRuntimeEntity, co as isSExprEffect, cp as isServiceReference, cq as isServiceReferenceObject, cr as isSingletonEntity, cs as isSocketService, ct as navigate, cu as normalizeTraitRef, cv as notify, cw as parseAssetKey, cx as parseServiceRef, cy as persist, cz as ref, cA as renderUI, cB as set, cC as spawn, cD as swap, cE as validateAssetAnimations, cF as watch } from '../trait-C7cTBoi5.js';
5
- import { c as EventPayloadValue, b as EventPayload, L as LogMeta, S as SExpr, E as EvalContext } from '../expression-BVRFm0sV.js';
6
- export { C as CORE_BINDINGS, a as CoreBinding, d as Expression, e as ExpressionInput, f as ExpressionSchema, P as ParsedBinding, g as SExprAtom, h as SExprAtomSchema, i as SExprInput, j as SExprSchema, k as collectBindings, l as getArgs, m as getOperator, n as isBinding, o as isSExpr, p as isSExprAtom, q as isSExprCall, r as isValidBinding, s as parseBinding, t as sexpr, w as walkSExpr } from '../expression-BVRFm0sV.js';
1
+ import { O as OrbitalSchema, a7 as Orbital, b as Page, L as DomainContext, a as OrbitalDefinition, b0 as PageTraitRef } from '../schema-Cq9DUnFw.js';
2
+ export { A as AGENT_DOMAIN_CATEGORIES, d as ALLOWED_CUSTOM_COMPONENTS, e as AgentDomainCategory, f as AgentDomainCategorySchema, g as AllowedCustomComponent, C as ColorSlice, h as ColorSliceSchema, i as ColorTokens, j as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, F as DesignPreferencesSchema, G as DesignTokens, H as DesignTokensInput, I as DesignTokensSchema, J as DomainCategory, K as DomainCategorySchema, M as DomainContextInput, N as DomainContextSchema, Q as DomainVocabulary, R as DomainVocabularySchema, S as ElevationSlice, T as ElevationSliceSchema, V as ElevationTokens, W as ElevationTokensSchema, X as EntityCall, Y as EntityCallSchema, E as EntityRef, Z as EntityRefSchema, _ as EntityRefStringSchema, $ as EntitySemanticRole, a0 as EntitySemanticRoleSchema, a1 as EventListener, a2 as EventListenerSchema, a3 as EventSemanticRole, a4 as EventSemanticRoleSchema, a5 as EventSource, a6 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, aq as MotionDurationKey, ar as MotionDurationKeySchema, as as MotionDurationPalette, at as MotionDurationPaletteSchema, au as MotionEasingKey, av as MotionEasingKeySchema, aw as MotionEasingPalette, ax as MotionEasingPaletteSchema, ay as MotionIntent, az as MotionIntentMap, aA as MotionIntentMapSchema, aB as MotionIntentSchema, aC as MotionSlice, aD as MotionSliceSchema, aE as MotionTokens, aF as MotionTokensSchema, aG as NodeClassification, aH as NodeClassificationSchema, aI as OrbitalConfig, aJ as OrbitalConfigInput, aK as OrbitalConfigSchema, aL as OrbitalDefinitionSchema, aM as OrbitalInput, aN as OrbitalPage, aO as OrbitalPageInput, aP as OrbitalPageSchema, aQ as OrbitalPageStrictInput, aR as OrbitalPageStrictSchema, aS as OrbitalSchemaInput, aT as OrbitalSchemaSchema, aU as OrbitalSchemaWithTraits, aV as OrbitalUnit, aW as OrbitalUnitSchema, aX as OrbitalZodSchema, P as PageRef, c as PageRefObject, aY as PageRefObjectSchema, aZ as PageRefSchema, a_ as PageRefStringSchema, a$ as PageSchema, b1 as PageTraitRefSchema, b2 as RelatedLink, b3 as RelatedLinkSchema, b4 as SchemaMetadata, b5 as SchemaMetadataSchema, b6 as SkinSpec, b7 as SkinSpecSchema, b8 as SpacingScale, b9 as SpacingScaleSchema, ba as StateSemanticRole, bb as StateSemanticRoleSchema, bc as SuggestedGuard, bd as SuggestedGuardSchema, be as ThemeDefinition, bf as ThemeDefinitionSchema, bg as ThemeRef, bh as ThemeRefSchema, bi as ThemeRefStringSchema, bj as ThemeTokens, bk as ThemeTokensSchema, bl as ThemeVariant, bm as ThemeVariantSchema, bn as TypeIntent, bo as TypeIntentMap, bp as TypeIntentMapSchema, bq as TypeIntentSchema, br as TypeScale, bs as TypeScaleEntry, bt as TypeScaleEntrySchema, bu as TypeScaleSchema, bv as TypeScaleTokens, bw as TypeScaleTokensSchema, bx as TypeSizeKey, by as TypeSizeKeySchema, bz as TypeSlice, bA as TypeSliceSchema, bB as TypeSlot, bC as TypeSlotSchema, bD as TypeWeight, bE as TypeWeightSchema, bF as UXHints, bG as UXHintsSchema, U as UseDeclaration, bH as UseDeclarationSchema, bI as UserPersona, bJ as UserPersonaInput, bK as UserPersonaSchema, bL as ViewType, bM as ViewTypeSchema, bN as isEntityCall, bO as isEntityReference, bP as isEntityReferenceAny, bQ as isImportedTraitRef, bR as isOrbitalDefinition, bS as isPageReference, bT as isPageReferenceObject, bU as isPageReferenceString, bV as isThemeReference, bW as parseEntityRef, bX as parseImportedTraitRef, bY as parseOrbitalSchema, bZ as parsePageRef, b_ as safeParseOrbitalSchema } from '../schema-Cq9DUnFw.js';
3
+ import { bg as ServiceParams, a as Trait, d as Entity, h as EntityRow, ar as FieldValue, N as DeclaredTraitConfig, T as TraitConfig, E as Effect, C as ConfigFieldDeclaration, n as State, bV as Transition, f as EntityField, ac as Event, bF as TraitConfigValue, g as EntityPersistence, bC as TraitCategory, cG as TraitScope } from '../trait-BsnLnedq.js';
4
+ export { A as AgentEffect, o as AnimationDef, p as AnimationDefInput, q as AnimationDefSchema, r as ArrayEntityField, s as AssetCatalog, t as AssetCatalogEntry, u as AssetCatalogEntryInput, v as AssetCatalogEntrySchema, w as AssetCatalogSchema, x as AssetMap, y as AssetMapInput, z as AssetMapSchema, B as AssetMapping, D as AssetMappingInput, F as AssetMappingSchema, G as AssetUrl, H as AtomicEffect, I as CallServiceConfig, J as CallServiceEffect, K as CheckpointLoadEffect, L as CheckpointSaveEffect, M as ConfigFieldDeclarationSchema, O as DeclaredTraitConfigSchema, P as DerefEffect, Q as DespawnEffect, V as DoEffect, W as ENTITY_ROLES, X as EffectInput, Y as EffectSchema, Z as EmitConfig, _ as EmitEffect, $ as EntityData, a0 as EntityFieldContract, a1 as EntityFieldContractSchema, a2 as EntityFieldInput, a3 as EntityFieldSchema, a4 as EntityPersistenceSchema, a5 as EntityRole, a6 as EntityRoleSchema, a7 as EntitySchema, a8 as EntityWith, a9 as EnumEntityField, aa as EvaluateConfig, ab as EvaluateEffect, ad as EventInput, l as EventPayloadField, ae as EventPayloadFieldSchema, af as EventSchema, ag as EventScope, ah as EventScopeSchema, ai as FetchEffect, aj as FetchOptions, ak as FetchResult, al as Field, am as FieldFormat, an as FieldFormatSchema, ao as FieldSchema, ap as FieldType, aq as FieldTypeSchema, as as ForwardConfig, at as ForwardEffect, au as GAME_TYPES, av as GameType, aw as GameTypeSchema, ax as Guard, ay as GuardInput, az as GuardSchema, aA as ListenSource, aB as ListenSourceSchema, aC as LogEffect, aD as McpServiceDef, aE as McpServiceDefSchema, aF as NavigateEffect, aG as NnConfig, aH as NnLayer, aI as NotifyEffect, aJ as OrbitalEntity, aK as OrbitalEntityInput, aL as OrbitalEntitySchema, aM as OrbitalTraitRef, aN as OrbitalTraitRefSchema, aO as OsEffect, aP as PayloadField, aQ as PayloadFieldSchema, aR as PersistData, aS as PersistEffect, aT as PersistEmitConfig, aU as PresentationType, aV as RefEffect, aW as RelationConfig, aX as RelationConfigSchema, aY as RelationEntityField, R as RenderBinding, aZ as RenderItemLambda, a_ as RenderUIConfig, b as RenderUIEffect, a$ as RenderUINode, b0 as RequiredField, b1 as RequiredFieldSchema, b2 as ResolvedAsset, b3 as ResolvedAssetInput, b4 as ResolvedAssetSchema, b5 as ResolvedPatternProps, b6 as RestAuthConfig, b7 as RestAuthConfigSchema, b8 as RestServiceDef, b9 as RestServiceDefSchema, ba as SERVICE_TYPES, bb as ScalarEntityField, bc as SemanticAssetRef, bd as SemanticAssetRefInput, be as SemanticAssetRefSchema, m as ServiceDefinition, bf as ServiceDefinitionSchema, bh as ServiceParamsValue, S as ServiceRef, bi as ServiceRefObject, bj as ServiceRefObjectSchema, bk as ServiceRefSchema, bl as ServiceRefStringSchema, bm as ServiceType, bn as ServiceTypeSchema, bo as SetEffect, bp as SocketEvents, bq as SocketEventsSchema, br as SocketServiceDef, bs as SocketServiceDefSchema, bt as SpawnEffect, bu as StateInput, bv as StateMachine, bw as StateMachineInput, bx as StateMachineSchema, by as StateSchema, bz as SwapEffect, bA as TrainConfig, bB as TrainEffect, bD as TraitCategorySchema, k as TraitConfigObject, bE as TraitConfigSchema, bG as TraitConfigValueSchema, bH as TraitDataEntity, bI as TraitDataEntitySchema, bJ as TraitEntityField, bK as TraitEntityFieldSchema, c as TraitEventContract, bL as TraitEventContractSchema, e as TraitEventListener, bM as TraitEventListenerSchema, bN as TraitInput, i as TraitRef, bO as TraitRefSchema, j as TraitReference, bP as TraitReferenceInput, bQ as TraitReferenceSchema, bR as TraitSchema, bS as TraitTick, bT as TraitTickSchema, bU as TraitUIBinding, bW as TransitionInput, bX as TransitionSchema, bY as TypedEffect, U as UISlot, bZ as UISlotSchema, b_ as UI_SLOTS, b$ as VISUAL_STYLES, c0 as VisualStyle, c1 as VisualStyleSchema, c2 as WatchEffect, c3 as WatchOptions, c4 as atomic, c5 as callService, c6 as createAssetKey, c7 as deref, c8 as deriveCollection, c9 as despawn, ca as doEffects, cb as emit, cc as findService, cd as getDefaultAnimationsForRole, ce as getServiceNames, cf as getTraitConfig, cg as getTraitName, ch as hasService, ci as isCircuitEvent, cj as isEffect, ck as isInlineTrait, cl as isMcpService, cm as isRestService, cn as isRuntimeEntity, co as isSExprEffect, cp as isServiceReference, cq as isServiceReferenceObject, cr as isSingletonEntity, cs as isSocketService, ct as navigate, cu as normalizeTraitRef, cv as notify, cw as parseAssetKey, cx as parseServiceRef, cy as persist, cz as ref, cA as renderUI, cB as set, cC as spawn, cD as swap, cE as validateAssetAnimations, cF as watch } from '../trait-BsnLnedq.js';
5
+ import { d as EventPayloadValue, c as EventPayload, L as LogMeta, S as SExpr, b as EvalContext } from '../expression-BUIi9ezJ.js';
6
+ export { C as CORE_BINDINGS, a as CoreBinding, E as Expression, e as ExpressionInput, f as ExpressionSchema, P as ParsedBinding, g as SExprAtom, h as SExprAtomSchema, i as SExprInput, j as SExprSchema, k as collectBindings, l as getArgs, m as getOperator, n as isBinding, o as isSExpr, p as isSExprAtom, q as isSExprCall, r as isValidBinding, s as parseBinding, t as sexpr, w as walkSExpr } from '../expression-BUIi9ezJ.js';
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-CVzLocjv.js';
11
- export { J as JsonObject, n as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-CVzLocjv.js';
10
+ import { c as FactoryConfigTier } from '../types-CdXuGm8S.js';
11
+ export { l as JsonObject, J as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-CdXuGm8S.js';
12
12
 
13
13
  /**
14
14
  * S-Expression Bindings