@almadar/core 9.0.1 → 9.1.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.
@@ -3308,11 +3308,55 @@ interface TraitUIBinding {
3308
3308
  * it required and adds static checks in the compiler.
3309
3309
  */
3310
3310
  type TraitScope = 'instance' | 'collection';
3311
+ /**
3312
+ * Inferred field contract for a `@rebindable` trait binding. `requires` =
3313
+ * entity fields the trait READS via `@entity.<field>`; `provides` = fields it
3314
+ * WRITES via `(set @entity.<field> ...)`. A consumer that rebinds the trait
3315
+ * (`linkedEntity`) must point at an entity whose fields ⊇ `requires`. Inferred
3316
+ * by the lolo lowerer from the trait's own SExpr usage; the orbital-rust L2
3317
+ * validator enforces it (`ORB_T_REBIND_MISSING_FIELDS`). Mirrors the Rust
3318
+ * `EntityFieldContract` serde shape exactly.
3319
+ */
3320
+ interface EntityFieldContract {
3321
+ requires: string[];
3322
+ provides: string[];
3323
+ }
3324
+ declare const EntityFieldContractSchema: z.ZodObject<{
3325
+ requires: z.ZodArray<z.ZodString, "many">;
3326
+ provides: z.ZodArray<z.ZodString, "many">;
3327
+ }, "strip", z.ZodTypeAny, {
3328
+ requires: string[];
3329
+ provides: string[];
3330
+ }, {
3331
+ requires: string[];
3332
+ provides: string[];
3333
+ }>;
3311
3334
  interface Trait {
3312
3335
  name: string;
3313
3336
  description?: string;
3314
3337
  description_visual_prompt?: string;
3315
3338
  category?: TraitCategory;
3339
+ /**
3340
+ * Opt-in marker authored as `-> @rebindable Entity` in `.lolo`. When
3341
+ * `true`, a consuming molecule/organism may rebind this trait's entity via
3342
+ * `linkedEntity`; otherwise the binding is fixed and the validator rejects
3343
+ * any rebind (`ORB_T_ENTITY_NOT_REBINDABLE`). Absent on traits that don't
3344
+ * bind an entity.
3345
+ */
3346
+ entityRebindable?: boolean;
3347
+ /**
3348
+ * Inferred field contract a rebind target must satisfy. Emitted only
3349
+ * alongside `entityRebindable: true`. See {@link EntityFieldContract}.
3350
+ */
3351
+ entityContract?: EntityFieldContract;
3352
+ /**
3353
+ * `@description "..."` authored on the `@rebindable` binding in `.lolo`.
3354
+ * Surfaced to catalog prose + knob-embeddings so the LLM can reach for the
3355
+ * binding from intent vocabulary (binding-discovery). Absent when unmarked.
3356
+ */
3357
+ entityBindingDescription?: string;
3358
+ /** `@synonyms "..."` authored on the `@rebindable` binding in `.lolo`. */
3359
+ entityBindingSynonyms?: string;
3316
3360
  /**
3317
3361
  * Author-supplied capability tags lifted from the `.lolo` trait header's
3318
3362
  * bracket list. Anything beyond the known scope tokens (`instance` /
@@ -3397,6 +3441,19 @@ declare const TraitSchema: z.ZodObject<{
3397
3441
  description: z.ZodOptional<z.ZodString>;
3398
3442
  description_visual_prompt: z.ZodOptional<z.ZodString>;
3399
3443
  category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
3444
+ entityRebindable: z.ZodOptional<z.ZodBoolean>;
3445
+ entityContract: z.ZodOptional<z.ZodObject<{
3446
+ requires: z.ZodArray<z.ZodString, "many">;
3447
+ provides: z.ZodArray<z.ZodString, "many">;
3448
+ }, "strip", z.ZodTypeAny, {
3449
+ requires: string[];
3450
+ provides: string[];
3451
+ }, {
3452
+ requires: string[];
3453
+ provides: string[];
3454
+ }>>;
3455
+ entityBindingDescription: z.ZodOptional<z.ZodString>;
3456
+ entityBindingSynonyms: z.ZodOptional<z.ZodString>;
3400
3457
  capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3401
3458
  scope: z.ZodEnum<["instance", "collection"]>;
3402
3459
  linkedEntity: z.ZodOptional<z.ZodString>;
@@ -3925,6 +3982,13 @@ declare const TraitSchema: z.ZodObject<{
3925
3982
  }[] | undefined;
3926
3983
  linkedEntity?: string | undefined;
3927
3984
  description_visual_prompt?: string | undefined;
3985
+ entityRebindable?: boolean | undefined;
3986
+ entityContract?: {
3987
+ requires: string[];
3988
+ provides: string[];
3989
+ } | undefined;
3990
+ entityBindingDescription?: string | undefined;
3991
+ entityBindingSynonyms?: string | undefined;
3928
3992
  requiredFields?: {
3929
3993
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
3930
3994
  name: string;
@@ -4056,6 +4120,13 @@ declare const TraitSchema: z.ZodObject<{
4056
4120
  }[] | undefined;
4057
4121
  linkedEntity?: string | undefined;
4058
4122
  description_visual_prompt?: string | undefined;
4123
+ entityRebindable?: boolean | undefined;
4124
+ entityContract?: {
4125
+ requires: string[];
4126
+ provides: string[];
4127
+ } | undefined;
4128
+ entityBindingDescription?: string | undefined;
4129
+ entityBindingSynonyms?: string | undefined;
4059
4130
  requiredFields?: {
4060
4131
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
4061
4132
  name: string;
@@ -4172,6 +4243,19 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4172
4243
  description: z.ZodOptional<z.ZodString>;
4173
4244
  description_visual_prompt: z.ZodOptional<z.ZodString>;
4174
4245
  category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
4246
+ entityRebindable: z.ZodOptional<z.ZodBoolean>;
4247
+ entityContract: z.ZodOptional<z.ZodObject<{
4248
+ requires: z.ZodArray<z.ZodString, "many">;
4249
+ provides: z.ZodArray<z.ZodString, "many">;
4250
+ }, "strip", z.ZodTypeAny, {
4251
+ requires: string[];
4252
+ provides: string[];
4253
+ }, {
4254
+ requires: string[];
4255
+ provides: string[];
4256
+ }>>;
4257
+ entityBindingDescription: z.ZodOptional<z.ZodString>;
4258
+ entityBindingSynonyms: z.ZodOptional<z.ZodString>;
4175
4259
  capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4176
4260
  scope: z.ZodEnum<["instance", "collection"]>;
4177
4261
  linkedEntity: z.ZodOptional<z.ZodString>;
@@ -4700,6 +4784,13 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4700
4784
  }[] | undefined;
4701
4785
  linkedEntity?: string | undefined;
4702
4786
  description_visual_prompt?: string | undefined;
4787
+ entityRebindable?: boolean | undefined;
4788
+ entityContract?: {
4789
+ requires: string[];
4790
+ provides: string[];
4791
+ } | undefined;
4792
+ entityBindingDescription?: string | undefined;
4793
+ entityBindingSynonyms?: string | undefined;
4703
4794
  requiredFields?: {
4704
4795
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
4705
4796
  name: string;
@@ -4831,6 +4922,13 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4831
4922
  }[] | undefined;
4832
4923
  linkedEntity?: string | undefined;
4833
4924
  description_visual_prompt?: string | undefined;
4925
+ entityRebindable?: boolean | undefined;
4926
+ entityContract?: {
4927
+ requires: string[];
4928
+ provides: string[];
4929
+ } | undefined;
4930
+ entityBindingDescription?: string | undefined;
4931
+ entityBindingSynonyms?: string | undefined;
4834
4932
  requiredFields?: {
4835
4933
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
4836
4934
  name: string;
@@ -5017,6 +5115,19 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5017
5115
  description: z.ZodOptional<z.ZodString>;
5018
5116
  description_visual_prompt: z.ZodOptional<z.ZodString>;
5019
5117
  category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
5118
+ entityRebindable: z.ZodOptional<z.ZodBoolean>;
5119
+ entityContract: z.ZodOptional<z.ZodObject<{
5120
+ requires: z.ZodArray<z.ZodString, "many">;
5121
+ provides: z.ZodArray<z.ZodString, "many">;
5122
+ }, "strip", z.ZodTypeAny, {
5123
+ requires: string[];
5124
+ provides: string[];
5125
+ }, {
5126
+ requires: string[];
5127
+ provides: string[];
5128
+ }>>;
5129
+ entityBindingDescription: z.ZodOptional<z.ZodString>;
5130
+ entityBindingSynonyms: z.ZodOptional<z.ZodString>;
5020
5131
  capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5021
5132
  scope: z.ZodEnum<["instance", "collection"]>;
5022
5133
  linkedEntity: z.ZodOptional<z.ZodString>;
@@ -5545,6 +5656,13 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5545
5656
  }[] | undefined;
5546
5657
  linkedEntity?: string | undefined;
5547
5658
  description_visual_prompt?: string | undefined;
5659
+ entityRebindable?: boolean | undefined;
5660
+ entityContract?: {
5661
+ requires: string[];
5662
+ provides: string[];
5663
+ } | undefined;
5664
+ entityBindingDescription?: string | undefined;
5665
+ entityBindingSynonyms?: string | undefined;
5548
5666
  requiredFields?: {
5549
5667
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
5550
5668
  name: string;
@@ -5676,6 +5794,13 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5676
5794
  }[] | undefined;
5677
5795
  linkedEntity?: string | undefined;
5678
5796
  description_visual_prompt?: string | undefined;
5797
+ entityRebindable?: boolean | undefined;
5798
+ entityContract?: {
5799
+ requires: string[];
5800
+ provides: string[];
5801
+ } | undefined;
5802
+ entityBindingDescription?: string | undefined;
5803
+ entityBindingSynonyms?: string | undefined;
5679
5804
  requiredFields?: {
5680
5805
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
5681
5806
  name: string;
@@ -5770,4 +5895,4 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5770
5895
  } | undefined;
5771
5896
  }>]>;
5772
5897
 
5773
- export { type Field as $, type AgentEffect as A, type EntityData as B, type CallServiceConfig as C, type DeclaredTraitConfig as D, ENTITY_ROLES as E, type EntityField as F, type EntityFieldInput as G, EntityFieldSchema as H, type EntityPersistence as I, EntityPersistenceSchema as J, type EntityRole as K, EntityRoleSchema as L, type EntityRow as M, EntitySchema as N, type EnumEntityField as O, type EvaluateConfig as P, type EvaluateEffect as Q, type Event as R, type EventInput as S, type EventPayloadField as T, EventPayloadFieldSchema as U, EventSchema as V, type EventScope as W, EventScopeSchema as X, type FetchEffect as Y, type FetchOptions as Z, type FetchResult as _, type AnimationDef as a, type ServiceRefObject as a$, type FieldFormat as a0, FieldFormatSchema as a1, FieldSchema as a2, type FieldType as a3, FieldTypeSchema as a4, type FieldValue as a5, type ForwardConfig as a6, type ForwardEffect as a7, GAME_TYPES as a8, type GameType as a9, type RelationConfig as aA, RelationConfigSchema as aB, type RelationEntityField as aC, type RenderItemLambda as aD, type RenderUIConfig as aE, type RenderUIEffect as aF, type RenderUINode as aG, type RequiredField as aH, RequiredFieldSchema as aI, type ResolvedAsset as aJ, type ResolvedAssetInput as aK, ResolvedAssetSchema as aL, type ResolvedPatternProps as aM, type RestAuthConfig as aN, RestAuthConfigSchema as aO, type RestServiceDef as aP, RestServiceDefSchema as aQ, SERVICE_TYPES as aR, type ScalarEntityField as aS, type SemanticAssetRef as aT, type SemanticAssetRefInput as aU, SemanticAssetRefSchema as aV, type ServiceDefinition as aW, ServiceDefinitionSchema as aX, type ServiceParams as aY, type ServiceParamsValue as aZ, type ServiceRef as a_, GameTypeSchema as aa, type Guard as ab, type GuardInput as ac, GuardSchema as ad, type ListenSource as ae, ListenSourceSchema as af, type LogEffect as ag, type McpServiceDef as ah, McpServiceDefSchema as ai, type NavigateEffect as aj, type NnConfig as ak, type NnLayer as al, type NotifyEffect as am, type OrbitalEntity as an, type OrbitalEntityInput as ao, OrbitalEntitySchema as ap, type OrbitalTraitRef as aq, OrbitalTraitRefSchema as ar, type OsEffect as as, type PayloadField as at, PayloadFieldSchema as au, type PersistData as av, type PersistEffect as aw, type PersistEmitConfig as ax, type PresentationType as ay, type RefEffect as az, type AnimationDefInput as b, deriveCollection as b$, ServiceRefObjectSchema as b0, ServiceRefSchema as b1, ServiceRefStringSchema as b2, type ServiceType as b3, ServiceTypeSchema as b4, type SetEffect as b5, type SocketEvents as b6, SocketEventsSchema as b7, type SocketServiceDef as b8, SocketServiceDefSchema as b9, type TraitInput as bA, type TraitRef as bB, TraitRefSchema as bC, type TraitReference as bD, type TraitReferenceInput as bE, TraitReferenceSchema as bF, TraitSchema as bG, type TraitScope as bH, type TraitTick as bI, TraitTickSchema as bJ, type TraitUIBinding as bK, type Transition as bL, type TransitionInput as bM, TransitionSchema as bN, type TypedEffect as bO, type UISlot as bP, UISlotSchema as bQ, UI_SLOTS as bR, VISUAL_STYLES as bS, type VisualStyle as bT, VisualStyleSchema as bU, type WatchEffect as bV, type WatchOptions as bW, atomic as bX, callService as bY, createAssetKey as bZ, deref as b_, type SpawnEffect as ba, type State as bb, type StateInput as bc, type StateMachine as bd, type StateMachineInput as be, StateMachineSchema as bf, StateSchema as bg, type SwapEffect as bh, type TrainConfig as bi, type TrainEffect as bj, type Trait as bk, type TraitCategory as bl, TraitCategorySchema as bm, type TraitConfig as bn, type TraitConfigObject as bo, TraitConfigSchema as bp, type TraitConfigValue as bq, TraitConfigValueSchema as br, type TraitDataEntity as bs, TraitDataEntitySchema as bt, type TraitEntityField as bu, TraitEntityFieldSchema as bv, type TraitEventContract as bw, TraitEventContractSchema as bx, type TraitEventListener as by, TraitEventListenerSchema as bz, AnimationDefSchema as c, despawn as c0, doEffects as c1, emit as c2, findService as c3, getDefaultAnimationsForRole as c4, getServiceNames as c5, getTraitConfig as c6, getTraitName as c7, hasService as c8, isCircuitEvent as c9, isEffect as ca, isInlineTrait as cb, isMcpService as cc, isRestService as cd, isRuntimeEntity as ce, isSExprEffect as cf, isServiceReference as cg, isServiceReferenceObject as ch, isSingletonEntity as ci, isSocketService as cj, navigate as ck, normalizeTraitRef as cl, notify as cm, parseAssetKey as cn, parseServiceRef as co, persist as cp, ref as cq, renderUI as cr, set as cs, spawn as ct, swap as cu, validateAssetAnimations as cv, watch as cw, type ArrayEntityField as d, type AssetMap as e, type AssetMapInput as f, AssetMapSchema as g, type AssetMapping as h, type AssetMappingInput as i, AssetMappingSchema as j, type AtomicEffect as k, type CallServiceEffect as l, type CheckpointLoadEffect as m, type CheckpointSaveEffect as n, type ConfigFieldDeclaration as o, ConfigFieldDeclarationSchema as p, DeclaredTraitConfigSchema as q, type DerefEffect as r, type DespawnEffect as s, type DoEffect as t, type Effect as u, type EffectInput as v, EffectSchema as w, type EmitConfig as x, type EmitEffect as y, type Entity as z };
5898
+ export { type FetchOptions as $, type AgentEffect as A, type EntityData as B, type CallServiceConfig as C, type DeclaredTraitConfig as D, ENTITY_ROLES as E, type EntityField as F, type EntityFieldContract as G, EntityFieldContractSchema as H, type EntityFieldInput as I, EntityFieldSchema as J, type EntityPersistence as K, EntityPersistenceSchema as L, type EntityRole as M, EntityRoleSchema as N, type EntityRow as O, EntitySchema as P, type EnumEntityField as Q, type EvaluateConfig as R, type EvaluateEffect as S, type Event as T, type EventInput as U, type EventPayloadField as V, EventPayloadFieldSchema as W, EventSchema as X, type EventScope as Y, EventScopeSchema as Z, type FetchEffect as _, type AnimationDef as a, type ServiceParamsValue as a$, type FetchResult as a0, type Field as a1, type FieldFormat as a2, FieldFormatSchema as a3, FieldSchema as a4, type FieldType as a5, FieldTypeSchema as a6, type FieldValue as a7, type ForwardConfig as a8, type ForwardEffect as a9, type PresentationType as aA, type RefEffect as aB, type RelationConfig as aC, RelationConfigSchema as aD, type RelationEntityField as aE, type RenderItemLambda as aF, type RenderUIConfig as aG, type RenderUIEffect as aH, type RenderUINode as aI, type RequiredField as aJ, RequiredFieldSchema as aK, type ResolvedAsset as aL, type ResolvedAssetInput as aM, ResolvedAssetSchema as aN, type ResolvedPatternProps as aO, type RestAuthConfig as aP, RestAuthConfigSchema as aQ, type RestServiceDef as aR, RestServiceDefSchema as aS, SERVICE_TYPES as aT, type ScalarEntityField as aU, type SemanticAssetRef as aV, type SemanticAssetRefInput as aW, SemanticAssetRefSchema as aX, type ServiceDefinition as aY, ServiceDefinitionSchema as aZ, type ServiceParams as a_, GAME_TYPES as aa, type GameType as ab, GameTypeSchema as ac, type Guard as ad, type GuardInput as ae, GuardSchema as af, type ListenSource as ag, ListenSourceSchema as ah, type LogEffect as ai, type McpServiceDef as aj, McpServiceDefSchema as ak, type NavigateEffect as al, type NnConfig as am, type NnLayer as an, type NotifyEffect as ao, type OrbitalEntity as ap, type OrbitalEntityInput as aq, OrbitalEntitySchema as ar, type OrbitalTraitRef as as, OrbitalTraitRefSchema as at, type OsEffect as au, type PayloadField as av, PayloadFieldSchema as aw, type PersistData as ax, type PersistEffect as ay, type PersistEmitConfig as az, type AnimationDefInput as b, createAssetKey as b$, type ServiceRef as b0, type ServiceRefObject as b1, ServiceRefObjectSchema as b2, ServiceRefSchema as b3, ServiceRefStringSchema as b4, type ServiceType as b5, ServiceTypeSchema as b6, type SetEffect as b7, type SocketEvents as b8, SocketEventsSchema as b9, type TraitEventListener as bA, TraitEventListenerSchema as bB, type TraitInput as bC, type TraitRef as bD, TraitRefSchema as bE, type TraitReference as bF, type TraitReferenceInput as bG, TraitReferenceSchema as bH, TraitSchema as bI, type TraitScope as bJ, type TraitTick as bK, TraitTickSchema as bL, type TraitUIBinding as bM, type Transition as bN, type TransitionInput as bO, TransitionSchema as bP, type TypedEffect as bQ, type UISlot as bR, UISlotSchema as bS, UI_SLOTS as bT, VISUAL_STYLES as bU, type VisualStyle as bV, VisualStyleSchema as bW, type WatchEffect as bX, type WatchOptions as bY, atomic as bZ, callService as b_, type SocketServiceDef as ba, SocketServiceDefSchema as bb, type SpawnEffect as bc, type State as bd, type StateInput as be, type StateMachine as bf, type StateMachineInput as bg, StateMachineSchema as bh, StateSchema as bi, type SwapEffect as bj, type TrainConfig as bk, type TrainEffect as bl, type Trait as bm, type TraitCategory as bn, TraitCategorySchema as bo, type TraitConfig as bp, type TraitConfigObject as bq, TraitConfigSchema as br, type TraitConfigValue as bs, TraitConfigValueSchema as bt, type TraitDataEntity as bu, TraitDataEntitySchema as bv, type TraitEntityField as bw, TraitEntityFieldSchema as bx, type TraitEventContract as by, TraitEventContractSchema as bz, AnimationDefSchema as c, deref as c0, deriveCollection as c1, despawn as c2, doEffects as c3, emit as c4, findService as c5, getDefaultAnimationsForRole as c6, getServiceNames as c7, getTraitConfig as c8, getTraitName as c9, hasService as ca, isCircuitEvent as cb, isEffect as cc, isInlineTrait as cd, isMcpService as ce, isRestService as cf, isRuntimeEntity as cg, isSExprEffect as ch, isServiceReference as ci, isServiceReferenceObject as cj, isSingletonEntity as ck, isSocketService as cl, navigate as cm, normalizeTraitRef as cn, notify as co, parseAssetKey as cp, parseServiceRef as cq, persist as cr, ref as cs, renderUI as ct, set as cu, spawn as cv, swap as cw, validateAssetAnimations as cx, watch as cy, type ArrayEntityField as d, type AssetMap as e, type AssetMapInput as f, AssetMapSchema as g, type AssetMapping as h, type AssetMappingInput as i, AssetMappingSchema as j, type AtomicEffect as k, type CallServiceEffect as l, type CheckpointLoadEffect as m, type CheckpointSaveEffect as n, type ConfigFieldDeclaration as o, ConfigFieldDeclarationSchema as p, DeclaredTraitConfigSchema as q, type DerefEffect as r, type DespawnEffect as s, type DoEffect as t, type Effect as u, type EffectInput as v, EffectSchema as w, type EmitConfig as x, type EmitEffect as y, type Entity as z };
@@ -1,7 +1,7 @@
1
- import { aL as OrbitalSchema, az as Orbital, aS as Page, F as DomainContext, aZ as PageTraitRef } from '../schema-Dp3KfQHm.js';
2
- export { A as AGENT_DOMAIN_CATEGORIES, a as ALLOWED_CUSTOM_COMPONENTS, b as AgentDomainCategory, c as AgentDomainCategorySchema, d as AllowedCustomComponent, C as ColorSlice, e as ColorSliceSchema, f as ColorTokens, g as ColorTokensSchema, h as ComputedEventContract, i as ComputedEventContractSchema, j as ComputedEventListener, k as ComputedEventListenerSchema, l as CustomPatternDefinition, m as CustomPatternDefinitionInput, n as CustomPatternDefinitionSchema, o as CustomPatternMap, p as CustomPatternMapInput, q as CustomPatternMapSchema, D as DensitySlice, r as DensitySliceSchema, s as DensityTokens, t as DensityTokensSchema, u as DesignPreferences, v as DesignPreferencesInput, w as DesignPreferencesSchema, x as DesignTokens, y as DesignTokensInput, z as DesignTokensSchema, B as DomainCategory, E as DomainCategorySchema, G as DomainContextInput, H as DomainContextSchema, I as DomainVocabulary, J as DomainVocabularySchema, K as ElevationSlice, L as ElevationSliceSchema, M as ElevationTokens, N as ElevationTokensSchema, O as EntityCall, P as EntityCallSchema, Q as EntityRef, R as EntityRefSchema, S as EntityRefStringSchema, T as EntitySemanticRole, U as EntitySemanticRoleSchema, V as EventListener, W as EventListenerSchema, X as EventSemanticRole, Y as EventSemanticRoleSchema, Z as EventSource, _ as EventSourceSchema, $ as GameSubCategory, a0 as GameSubCategorySchema, a1 as GeometrySlice, a2 as GeometrySliceSchema, a3 as GeometryTokens, a4 as GeometryTokensSchema, a5 as IconFamily, a6 as IconFamilySchema, a7 as IconographySlice, a8 as IconographySliceSchema, a9 as IconographyTokens, aa as IconographyTokensSchema, ab as IllustrationSlice, ac as IllustrationSliceSchema, ad as IllustrationStyle, ae as IllustrationStyleSchema, af as IllustrationTokens, ag as IllustrationTokensSchema, ah as MotionDurationKey, ai as MotionDurationKeySchema, aj as MotionDurationPalette, ak as MotionDurationPaletteSchema, al as MotionEasingKey, am as MotionEasingKeySchema, an as MotionEasingPalette, ao as MotionEasingPaletteSchema, ap as MotionIntent, aq as MotionIntentMap, ar as MotionIntentMapSchema, as as MotionIntentSchema, at as MotionSlice, au as MotionSliceSchema, av as MotionTokens, aw as MotionTokensSchema, ax as NodeClassification, ay as NodeClassificationSchema, aA as OrbitalConfig, aB as OrbitalConfigInput, aC as OrbitalConfigSchema, aD as OrbitalDefinition, aE as OrbitalDefinitionSchema, aF as OrbitalInput, aG as OrbitalPage, aH as OrbitalPageInput, aI as OrbitalPageSchema, aJ as OrbitalPageStrictInput, aK as OrbitalPageStrictSchema, aN as OrbitalSchemaInput, aO as OrbitalSchemaSchema, aP as OrbitalSchemaWithTraits, aQ as OrbitalUnit, aR as OrbitalUnitSchema, aM as OrbitalZodSchema, aT as PageRef, aU as PageRefObject, aV as PageRefObjectSchema, aW as PageRefSchema, aX as PageRefStringSchema, aY as PageSchema, a_ as PageTraitRefSchema, a$ as RelatedLink, b0 as RelatedLinkSchema, b1 as SkinSpec, b2 as SkinSpecSchema, b3 as SpacingScale, b4 as SpacingScaleSchema, b5 as StateSemanticRole, b6 as StateSemanticRoleSchema, b7 as SuggestedGuard, b8 as SuggestedGuardSchema, b9 as ThemeDefinition, ba as ThemeDefinitionSchema, bb as ThemeRef, bc as ThemeRefSchema, bd as ThemeRefStringSchema, be as ThemeTokens, bf as ThemeTokensSchema, bg as ThemeVariant, bh as ThemeVariantSchema, bi as TypeIntent, bj as TypeIntentMap, bk as TypeIntentMapSchema, bl as TypeIntentSchema, bm as TypeScale, bn as TypeScaleEntry, bo as TypeScaleEntrySchema, bp as TypeScaleSchema, bq as TypeScaleTokens, br as TypeScaleTokensSchema, bs as TypeSizeKey, bt as TypeSizeKeySchema, bu as TypeSlice, bv as TypeSliceSchema, bw as TypeSlot, bx as TypeSlotSchema, by as TypeWeight, bz as TypeWeightSchema, bA as UXHints, bB as UXHintsSchema, bC as UseDeclaration, bD as UseDeclarationSchema, bE as UserPersona, bF as UserPersonaInput, bG as UserPersonaSchema, aD as ValidatedOrbital, bH as ViewType, bI as ViewTypeSchema, bJ as isEntityCall, bK as isEntityReference, bL as isEntityReferenceAny, bM as isImportedTraitRef, bN as isOrbitalDefinition, bO as isPageReference, bP as isPageReferenceObject, bQ as isPageReferenceString, bR as isThemeReference, bS as parseEntityRef, bT as parseImportedTraitRef, bU as parseOrbitalSchema, bV as parsePageRef, bW as safeParseOrbitalSchema } from '../schema-Dp3KfQHm.js';
3
- import { aY as ServiceParams, bk as Trait, z as Entity, M as EntityRow, a5 as FieldValue, D as DeclaredTraitConfig, bn as TraitConfig, F as EntityField, I as EntityPersistence, bl as TraitCategory, bH as TraitScope } from '../trait-C23jbaBB.js';
4
- export { A as AgentEffect, a as AnimationDef, b as AnimationDefInput, c as AnimationDefSchema, d as ArrayEntityField, e as AssetMap, f as AssetMapInput, g as AssetMapSchema, h as AssetMapping, i as AssetMappingInput, j as AssetMappingSchema, k as AtomicEffect, C as CallServiceConfig, l as CallServiceEffect, m as CheckpointLoadEffect, n as CheckpointSaveEffect, o as ConfigFieldDeclaration, p as ConfigFieldDeclarationSchema, q as DeclaredTraitConfigSchema, r as DerefEffect, s as DespawnEffect, t as DoEffect, E as ENTITY_ROLES, u as Effect, v as EffectInput, w as EffectSchema, x as EmitConfig, y as EmitEffect, B as EntityData, G as EntityFieldInput, H as EntityFieldSchema, J as EntityPersistenceSchema, K as EntityRole, L as EntityRoleSchema, N as EntitySchema, O as EnumEntityField, P as EvaluateConfig, Q as EvaluateEffect, R as Event, S as EventInput, T as EventPayloadField, U as EventPayloadFieldSchema, V as EventSchema, W as EventScope, X as EventScopeSchema, Y as FetchEffect, Z as FetchOptions, _ as FetchResult, $ as Field, a0 as FieldFormat, a1 as FieldFormatSchema, a2 as FieldSchema, a3 as FieldType, a4 as FieldTypeSchema, a6 as ForwardConfig, a7 as ForwardEffect, a8 as GAME_TYPES, a9 as GameType, aa as GameTypeSchema, ab as Guard, ac as GuardInput, ad as GuardSchema, ae as ListenSource, af as ListenSourceSchema, ag as LogEffect, ah as McpServiceDef, ai as McpServiceDefSchema, aj as NavigateEffect, ak as NnConfig, al as NnLayer, am as NotifyEffect, an as OrbitalEntity, ao as OrbitalEntityInput, ap as OrbitalEntitySchema, aq as OrbitalTraitRef, ar as OrbitalTraitRefSchema, as as OsEffect, at as PayloadField, au as PayloadFieldSchema, av as PersistData, aw as PersistEffect, ax as PersistEmitConfig, ay as PresentationType, az as RefEffect, aA as RelationConfig, aB as RelationConfigSchema, aC as RelationEntityField, aD as RenderItemLambda, aE as RenderUIConfig, aF as RenderUIEffect, aG as RenderUINode, aH as RequiredField, aI as RequiredFieldSchema, aJ as ResolvedAsset, aK as ResolvedAssetInput, aL as ResolvedAssetSchema, aM as ResolvedPatternProps, aN as RestAuthConfig, aO as RestAuthConfigSchema, aP as RestServiceDef, aQ as RestServiceDefSchema, aR as SERVICE_TYPES, aS as ScalarEntityField, aT as SemanticAssetRef, aU as SemanticAssetRefInput, aV as SemanticAssetRefSchema, aW as ServiceDefinition, aX as ServiceDefinitionSchema, aZ as ServiceParamsValue, a_ as ServiceRef, a$ as ServiceRefObject, b0 as ServiceRefObjectSchema, b1 as ServiceRefSchema, b2 as ServiceRefStringSchema, b3 as ServiceType, b4 as ServiceTypeSchema, b5 as SetEffect, b6 as SocketEvents, b7 as SocketEventsSchema, b8 as SocketServiceDef, b9 as SocketServiceDefSchema, ba as SpawnEffect, bb as State, bc as StateInput, bd as StateMachine, be as StateMachineInput, bf as StateMachineSchema, bg as StateSchema, bh as SwapEffect, bi as TrainConfig, bj as TrainEffect, bm as TraitCategorySchema, bo as TraitConfigObject, bp as TraitConfigSchema, bq as TraitConfigValue, br as TraitConfigValueSchema, bs as TraitDataEntity, bt as TraitDataEntitySchema, bu as TraitEntityField, bv as TraitEntityFieldSchema, bw as TraitEventContract, bx as TraitEventContractSchema, by as TraitEventListener, bz as TraitEventListenerSchema, bA as TraitInput, bB as TraitRef, bC as TraitRefSchema, bD as TraitReference, bE as TraitReferenceInput, bF as TraitReferenceSchema, bG as TraitSchema, bI as TraitTick, bJ as TraitTickSchema, bK as TraitUIBinding, bL as Transition, bM as TransitionInput, bN as TransitionSchema, bO as TypedEffect, bP as UISlot, bQ as UISlotSchema, bR as UI_SLOTS, bS as VISUAL_STYLES, bT as VisualStyle, bU as VisualStyleSchema, bV as WatchEffect, bW as WatchOptions, bX as atomic, bY as callService, bZ as createAssetKey, b_ as deref, b$ as deriveCollection, c0 as despawn, c1 as doEffects, c2 as emit, c3 as findService, c4 as getDefaultAnimationsForRole, c5 as getServiceNames, c6 as getTraitConfig, c7 as getTraitName, c8 as hasService, c9 as isCircuitEvent, ca as isEffect, cb as isInlineTrait, cc as isMcpService, cd as isRestService, ce as isRuntimeEntity, cf as isSExprEffect, cg as isServiceReference, ch as isServiceReferenceObject, ci as isSingletonEntity, cj as isSocketService, ck as navigate, cl as normalizeTraitRef, cm as notify, cn as parseAssetKey, co as parseServiceRef, cp as persist, cq as ref, cr as renderUI, cs as set, ct as spawn, cu as swap, cv as validateAssetAnimations, cw as watch } from '../trait-C23jbaBB.js';
1
+ import { aL as OrbitalSchema, az as Orbital, aS as Page, F as DomainContext, aZ as PageTraitRef } from '../schema-B6gRJD4J.js';
2
+ export { A as AGENT_DOMAIN_CATEGORIES, a as ALLOWED_CUSTOM_COMPONENTS, b as AgentDomainCategory, c as AgentDomainCategorySchema, d as AllowedCustomComponent, C as ColorSlice, e as ColorSliceSchema, f as ColorTokens, g as ColorTokensSchema, h as ComputedEventContract, i as ComputedEventContractSchema, j as ComputedEventListener, k as ComputedEventListenerSchema, l as CustomPatternDefinition, m as CustomPatternDefinitionInput, n as CustomPatternDefinitionSchema, o as CustomPatternMap, p as CustomPatternMapInput, q as CustomPatternMapSchema, D as DensitySlice, r as DensitySliceSchema, s as DensityTokens, t as DensityTokensSchema, u as DesignPreferences, v as DesignPreferencesInput, w as DesignPreferencesSchema, x as DesignTokens, y as DesignTokensInput, z as DesignTokensSchema, B as DomainCategory, E as DomainCategorySchema, G as DomainContextInput, H as DomainContextSchema, I as DomainVocabulary, J as DomainVocabularySchema, K as ElevationSlice, L as ElevationSliceSchema, M as ElevationTokens, N as ElevationTokensSchema, O as EntityCall, P as EntityCallSchema, Q as EntityRef, R as EntityRefSchema, S as EntityRefStringSchema, T as EntitySemanticRole, U as EntitySemanticRoleSchema, V as EventListener, W as EventListenerSchema, X as EventSemanticRole, Y as EventSemanticRoleSchema, Z as EventSource, _ as EventSourceSchema, $ as GameSubCategory, a0 as GameSubCategorySchema, a1 as GeometrySlice, a2 as GeometrySliceSchema, a3 as GeometryTokens, a4 as GeometryTokensSchema, a5 as IconFamily, a6 as IconFamilySchema, a7 as IconographySlice, a8 as IconographySliceSchema, a9 as IconographyTokens, aa as IconographyTokensSchema, ab as IllustrationSlice, ac as IllustrationSliceSchema, ad as IllustrationStyle, ae as IllustrationStyleSchema, af as IllustrationTokens, ag as IllustrationTokensSchema, ah as MotionDurationKey, ai as MotionDurationKeySchema, aj as MotionDurationPalette, ak as MotionDurationPaletteSchema, al as MotionEasingKey, am as MotionEasingKeySchema, an as MotionEasingPalette, ao as MotionEasingPaletteSchema, ap as MotionIntent, aq as MotionIntentMap, ar as MotionIntentMapSchema, as as MotionIntentSchema, at as MotionSlice, au as MotionSliceSchema, av as MotionTokens, aw as MotionTokensSchema, ax as NodeClassification, ay as NodeClassificationSchema, aA as OrbitalConfig, aB as OrbitalConfigInput, aC as OrbitalConfigSchema, aD as OrbitalDefinition, aE as OrbitalDefinitionSchema, aF as OrbitalInput, aG as OrbitalPage, aH as OrbitalPageInput, aI as OrbitalPageSchema, aJ as OrbitalPageStrictInput, aK as OrbitalPageStrictSchema, aN as OrbitalSchemaInput, aO as OrbitalSchemaSchema, aP as OrbitalSchemaWithTraits, aQ as OrbitalUnit, aR as OrbitalUnitSchema, aM as OrbitalZodSchema, aT as PageRef, aU as PageRefObject, aV as PageRefObjectSchema, aW as PageRefSchema, aX as PageRefStringSchema, aY as PageSchema, a_ as PageTraitRefSchema, a$ as RelatedLink, b0 as RelatedLinkSchema, b1 as SkinSpec, b2 as SkinSpecSchema, b3 as SpacingScale, b4 as SpacingScaleSchema, b5 as StateSemanticRole, b6 as StateSemanticRoleSchema, b7 as SuggestedGuard, b8 as SuggestedGuardSchema, b9 as ThemeDefinition, ba as ThemeDefinitionSchema, bb as ThemeRef, bc as ThemeRefSchema, bd as ThemeRefStringSchema, be as ThemeTokens, bf as ThemeTokensSchema, bg as ThemeVariant, bh as ThemeVariantSchema, bi as TypeIntent, bj as TypeIntentMap, bk as TypeIntentMapSchema, bl as TypeIntentSchema, bm as TypeScale, bn as TypeScaleEntry, bo as TypeScaleEntrySchema, bp as TypeScaleSchema, bq as TypeScaleTokens, br as TypeScaleTokensSchema, bs as TypeSizeKey, bt as TypeSizeKeySchema, bu as TypeSlice, bv as TypeSliceSchema, bw as TypeSlot, bx as TypeSlotSchema, by as TypeWeight, bz as TypeWeightSchema, bA as UXHints, bB as UXHintsSchema, bC as UseDeclaration, bD as UseDeclarationSchema, bE as UserPersona, bF as UserPersonaInput, bG as UserPersonaSchema, aD as ValidatedOrbital, bH as ViewType, bI as ViewTypeSchema, bJ as isEntityCall, bK as isEntityReference, bL as isEntityReferenceAny, bM as isImportedTraitRef, bN as isOrbitalDefinition, bO as isPageReference, bP as isPageReferenceObject, bQ as isPageReferenceString, bR as isThemeReference, bS as parseEntityRef, bT as parseImportedTraitRef, bU as parseOrbitalSchema, bV as parsePageRef, bW as safeParseOrbitalSchema } from '../schema-B6gRJD4J.js';
3
+ import { a_ as ServiceParams, bm as Trait, z as Entity, O as EntityRow, a7 as FieldValue, D as DeclaredTraitConfig, bp as TraitConfig, F as EntityField, K as EntityPersistence, bn as TraitCategory, bJ as TraitScope } from '../trait-DvvM-71c.js';
4
+ export { A as AgentEffect, a as AnimationDef, b as AnimationDefInput, c as AnimationDefSchema, d as ArrayEntityField, e as AssetMap, f as AssetMapInput, g as AssetMapSchema, h as AssetMapping, i as AssetMappingInput, j as AssetMappingSchema, k as AtomicEffect, C as CallServiceConfig, l as CallServiceEffect, m as CheckpointLoadEffect, n as CheckpointSaveEffect, o as ConfigFieldDeclaration, p as ConfigFieldDeclarationSchema, q as DeclaredTraitConfigSchema, r as DerefEffect, s as DespawnEffect, t as DoEffect, E as ENTITY_ROLES, u as Effect, v as EffectInput, w as EffectSchema, x as EmitConfig, y as EmitEffect, B as EntityData, G as EntityFieldContract, H as EntityFieldContractSchema, I as EntityFieldInput, J as EntityFieldSchema, L as EntityPersistenceSchema, M as EntityRole, N as EntityRoleSchema, P as EntitySchema, Q as EnumEntityField, R as EvaluateConfig, S as EvaluateEffect, T as Event, U as EventInput, V as EventPayloadField, W as EventPayloadFieldSchema, X as EventSchema, Y as EventScope, Z as EventScopeSchema, _ as FetchEffect, $ as FetchOptions, a0 as FetchResult, a1 as Field, a2 as FieldFormat, a3 as FieldFormatSchema, a4 as FieldSchema, a5 as FieldType, a6 as FieldTypeSchema, a8 as ForwardConfig, a9 as ForwardEffect, aa as GAME_TYPES, ab as GameType, ac as GameTypeSchema, ad as Guard, ae as GuardInput, af as GuardSchema, ag as ListenSource, ah as ListenSourceSchema, ai as LogEffect, aj as McpServiceDef, ak as McpServiceDefSchema, al as NavigateEffect, am as NnConfig, an as NnLayer, ao as NotifyEffect, ap as OrbitalEntity, aq as OrbitalEntityInput, ar as OrbitalEntitySchema, as as OrbitalTraitRef, at as OrbitalTraitRefSchema, au as OsEffect, av as PayloadField, aw as PayloadFieldSchema, ax as PersistData, ay as PersistEffect, az as PersistEmitConfig, aA as PresentationType, aB as RefEffect, aC as RelationConfig, aD as RelationConfigSchema, aE as RelationEntityField, aF as RenderItemLambda, aG as RenderUIConfig, aH as RenderUIEffect, aI as RenderUINode, aJ as RequiredField, aK as RequiredFieldSchema, aL as ResolvedAsset, aM as ResolvedAssetInput, aN as ResolvedAssetSchema, aO as ResolvedPatternProps, aP as RestAuthConfig, aQ as RestAuthConfigSchema, aR as RestServiceDef, aS as RestServiceDefSchema, aT as SERVICE_TYPES, aU as ScalarEntityField, aV as SemanticAssetRef, aW as SemanticAssetRefInput, aX as SemanticAssetRefSchema, aY as ServiceDefinition, aZ as ServiceDefinitionSchema, a$ as ServiceParamsValue, b0 as ServiceRef, b1 as ServiceRefObject, b2 as ServiceRefObjectSchema, b3 as ServiceRefSchema, b4 as ServiceRefStringSchema, b5 as ServiceType, b6 as ServiceTypeSchema, b7 as SetEffect, b8 as SocketEvents, b9 as SocketEventsSchema, ba as SocketServiceDef, bb as SocketServiceDefSchema, bc as SpawnEffect, bd as State, be as StateInput, bf as StateMachine, bg as StateMachineInput, bh as StateMachineSchema, bi as StateSchema, bj as SwapEffect, bk as TrainConfig, bl as TrainEffect, bo as TraitCategorySchema, bq as TraitConfigObject, br as TraitConfigSchema, bs as TraitConfigValue, bt as TraitConfigValueSchema, bu as TraitDataEntity, bv as TraitDataEntitySchema, bw as TraitEntityField, bx as TraitEntityFieldSchema, by as TraitEventContract, bz as TraitEventContractSchema, bA as TraitEventListener, bB as TraitEventListenerSchema, bC as TraitInput, bD as TraitRef, bE as TraitRefSchema, bF as TraitReference, bG as TraitReferenceInput, bH as TraitReferenceSchema, bI as TraitSchema, bK as TraitTick, bL as TraitTickSchema, bM as TraitUIBinding, bN as Transition, bO as TransitionInput, bP as TransitionSchema, bQ as TypedEffect, bR as UISlot, bS as UISlotSchema, bT as UI_SLOTS, bU as VISUAL_STYLES, bV as VisualStyle, bW as VisualStyleSchema, bX as WatchEffect, bY as WatchOptions, bZ as atomic, b_ as callService, b$ as createAssetKey, c0 as deref, c1 as deriveCollection, c2 as despawn, c3 as doEffects, c4 as emit, c5 as findService, c6 as getDefaultAnimationsForRole, c7 as getServiceNames, c8 as getTraitConfig, c9 as getTraitName, ca as hasService, cb as isCircuitEvent, cc as isEffect, cd as isInlineTrait, ce as isMcpService, cf as isRestService, cg as isRuntimeEntity, ch as isSExprEffect, ci as isServiceReference, cj as isServiceReferenceObject, ck as isSingletonEntity, cl as isSocketService, cm as navigate, cn as normalizeTraitRef, co as notify, cp as parseAssetKey, cq as parseServiceRef, cr as persist, cs as ref, ct as renderUI, cu as set, cv as spawn, cw as swap, cx as validateAssetAnimations, cy as watch } from '../trait-DvvM-71c.js';
5
5
  import { c as EventPayloadValue, b as EventPayload, L as LogMeta, S as SExpr } from '../expression-BVRFm0sV.js';
6
6
  export { C as CORE_BINDINGS, a as CoreBinding, E as EvalContext, 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';
7
7
  import { z } from 'zod';
@@ -650,6 +650,10 @@ var TraitReferenceSchema = z.object({
650
650
  }
651
651
  );
652
652
  var TraitScopeSchema = z.enum(["instance", "collection"]);
653
+ var EntityFieldContractSchema = z.object({
654
+ requires: z.array(z.string()),
655
+ provides: z.array(z.string())
656
+ });
653
657
  var SourceBehaviorMetadataSchema = z.object({
654
658
  behavior: z.string().min(1),
655
659
  alias: z.string().min(1),
@@ -660,6 +664,10 @@ var TraitSchema = z.object({
660
664
  description: z.string().optional(),
661
665
  description_visual_prompt: z.string().optional(),
662
666
  category: TraitCategorySchema.optional(),
667
+ entityRebindable: z.boolean().optional(),
668
+ entityContract: EntityFieldContractSchema.optional(),
669
+ entityBindingDescription: z.string().optional(),
670
+ entityBindingSynonyms: z.string().optional(),
663
671
  capabilities: z.array(z.string()).optional(),
664
672
  scope: TraitScopeSchema,
665
673
  linkedEntity: z.string().optional(),
@@ -1867,6 +1875,6 @@ function isKnownValidationErrorCode(code) {
1867
1875
  return code in KNOWN_VALIDATION_ERROR_CODES;
1868
1876
  }
1869
1877
 
1870
- export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CORE_BINDINGS, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, atomic, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, despawn, doEffects, emit, findService, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityCall, isEntityReference, isEntityReferenceAny, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isTraitFieldRef, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch };
1878
+ export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CORE_BINDINGS, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, atomic, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, despawn, doEffects, emit, findService, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityCall, isEntityReference, isEntityReferenceAny, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isTraitFieldRef, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch };
1871
1879
  //# sourceMappingURL=index.js.map
1872
1880
  //# sourceMappingURL=index.js.map