@almadar/core 2.11.0 → 2.13.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.
@@ -191,6 +191,18 @@ declare function walkSExpr(expr: SExpr, visitor: (node: SExpr, parent: SExpr[] |
191
191
  declare function collectBindings(expr: SExpr): string[];
192
192
  type SExprInput = z.input<typeof SExprSchema>;
193
193
  type ExpressionInput = z.input<typeof ExpressionSchema>;
194
+ /** Evaluation context for guards and s-expressions. Recursive. */
195
+ interface EvalContext {
196
+ [key: string]: string | number | boolean | Date | null | string[] | EvalContext | undefined;
197
+ }
198
+ /** Typed event payload map. Recursive to support nested objects like `{ data: { id: "..." } }`. */
199
+ interface EventPayload {
200
+ [key: string]: string | number | boolean | null | undefined | EventPayload;
201
+ }
202
+ /** Structured log/event metadata. Recursive to support nested log data. */
203
+ interface LogMeta {
204
+ [key: string]: string | number | boolean | null | undefined | Error | LogMeta;
205
+ }
194
206
 
195
207
  /**
196
208
  * Field Types for Orbital Units
@@ -693,8 +705,8 @@ declare function validateAssetAnimations(assetRef: SemanticAssetRef, requiredAni
693
705
  * - singleton: Single global instance
694
706
  * - instance: Static data (read-only instances)
695
707
  */
696
- type EntityPersistence = 'persistent' | 'runtime' | 'singleton' | 'instance';
697
- declare const EntityPersistenceSchema: z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>;
708
+ type EntityPersistence = 'persistent' | 'runtime' | 'singleton' | 'instance' | 'local';
709
+ declare const EntityPersistenceSchema: z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>;
698
710
  /**
699
711
  * OrbitalEntity - the nucleus of an Orbital Unit.
700
712
  *
@@ -711,7 +723,7 @@ interface OrbitalEntity {
711
723
  /** Entity fields */
712
724
  fields: EntityField[];
713
725
  /** Pre-authored instances (seed data or static reference data) */
714
- instances?: Record<string, unknown>[];
726
+ instances?: EntityRow[];
715
727
  /** Auto-add createdAt/updatedAt timestamps */
716
728
  timestamps?: boolean;
717
729
  /** Soft delete support */
@@ -725,7 +737,7 @@ interface OrbitalEntity {
725
737
  }
726
738
  declare const OrbitalEntitySchema: z.ZodObject<{
727
739
  name: z.ZodString;
728
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
740
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
729
741
  collection: z.ZodOptional<z.ZodString>;
730
742
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
731
743
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -754,7 +766,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
754
766
  }>>;
755
767
  }, "strip", z.ZodTypeAny, {
756
768
  name: string;
757
- persistence: "persistent" | "runtime" | "singleton" | "instance";
769
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
758
770
  fields: EntityField[];
759
771
  collection?: string | undefined;
760
772
  instances?: Record<string, unknown>[] | undefined;
@@ -772,7 +784,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
772
784
  }, {
773
785
  name: string;
774
786
  fields: EntityField[];
775
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
787
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
776
788
  collection?: string | undefined;
777
789
  instances?: Record<string, unknown>[] | undefined;
778
790
  timestamps?: boolean | undefined;
@@ -793,7 +805,7 @@ type Entity = OrbitalEntity;
793
805
  /** Alias for OrbitalEntitySchema - preferred name */
794
806
  declare const EntitySchema: z.ZodObject<{
795
807
  name: z.ZodString;
796
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
808
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
797
809
  collection: z.ZodOptional<z.ZodString>;
798
810
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
799
811
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -822,7 +834,7 @@ declare const EntitySchema: z.ZodObject<{
822
834
  }>>;
823
835
  }, "strip", z.ZodTypeAny, {
824
836
  name: string;
825
- persistence: "persistent" | "runtime" | "singleton" | "instance";
837
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
826
838
  fields: EntityField[];
827
839
  collection?: string | undefined;
828
840
  instances?: Record<string, unknown>[] | undefined;
@@ -840,7 +852,7 @@ declare const EntitySchema: z.ZodObject<{
840
852
  }, {
841
853
  name: string;
842
854
  fields: EntityField[];
843
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
855
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
844
856
  collection?: string | undefined;
845
857
  instances?: Record<string, unknown>[] | undefined;
846
858
  timestamps?: boolean | undefined;
@@ -898,6 +910,33 @@ declare function isRuntimeEntity(entity: OrbitalEntity): boolean;
898
910
  * isSingletonEntity({ persistence: 'persistent' }); // returns false
899
911
  */
900
912
  declare function isSingletonEntity(entity: OrbitalEntity): boolean;
913
+ /**
914
+ * A single field value at runtime.
915
+ * Union of all possible types from FieldType: string, number, boolean, date, array, nested.
916
+ */
917
+ type FieldValue = string | number | boolean | Date | null | string[] | FieldValue[];
918
+ /**
919
+ * One instance of an entity with actual field values.
920
+ * The shape is determined by the Entity definition at schema time.
921
+ *
922
+ * @example
923
+ * // Entity defines: Patient { fullName: string, age: number, active: boolean }
924
+ * // EntityRow is: { id: "p1", fullName: "Sarah", age: 34, active: true }
925
+ */
926
+ type EntityRow = {
927
+ id?: string;
928
+ } & Record<string, FieldValue>;
929
+ /**
930
+ * Collection of entity instances keyed by entity name.
931
+ * Used by OrbPreview mockData, OrbitalServerRuntime state, data grids, etc.
932
+ *
933
+ * @example
934
+ * const data: EntityData = {
935
+ * Patient: [{ id: "1", fullName: "Sarah", age: 34 }],
936
+ * QueueEntry: [{ id: "1", patientName: "Sarah", waitMinutes: 12 }],
937
+ * };
938
+ */
939
+ type EntityData = Record<string, EntityRow[]>;
901
940
 
902
941
  /**
903
942
  * Page Types for Orbital Units
@@ -1299,6 +1338,14 @@ type CheckpointSaveEffect = ['checkpoint/save', string, unknown];
1299
1338
  * @example ['checkpoint/load', '/path/to/model.pt']
1300
1339
  */
1301
1340
  type CheckpointLoadEffect = ['checkpoint/load', string];
1341
+ /**
1342
+ * Agent effect - invokes an agent/* operator.
1343
+ * Covers all 22 operators in the std-agent category.
1344
+ * @example ['agent/memorize', 'use data-grid for tables', 'preference']
1345
+ * @example ['agent/recall', 'user preferences']
1346
+ * @example ['agent/generate', 'Summarize this schema']
1347
+ */
1348
+ type AgentEffect = [`agent/${string}`, ...SExpr[]];
1302
1349
  /**
1303
1350
  * Async delay effect - wait then execute effects.
1304
1351
  * @example ['async/delay', 2000, ['emit', 'TIMEOUT']]
@@ -1341,7 +1388,7 @@ type AsyncSequenceEffect = ['async/sequence', ...Effect[]];
1341
1388
  * Union of all typed effects.
1342
1389
  * Provides compile-time validation for common effect types.
1343
1390
  */
1344
- type TypedEffect = RenderUIEffect | NavigateEffect | EmitEffect | SetEffect | PersistEffect | CallServiceEffect | SpawnEffect | DespawnEffect | DoEffect | NotifyEffect | FetchEffect | IfEffect | WhenEffect | LetEffect | LogEffect | WaitEffect | RefEffect | DerefEffect | SwapEffect | WatchEffect | AtomicEffect | AsyncDelayEffect | AsyncDebounceEffect | AsyncThrottleEffect | AsyncIntervalEffect | AsyncRaceEffect | AsyncAllEffect | AsyncSequenceEffect | ForwardEffect | TrainEffect | EvaluateEffect | CheckpointSaveEffect | CheckpointLoadEffect;
1391
+ type TypedEffect = RenderUIEffect | NavigateEffect | EmitEffect | SetEffect | PersistEffect | CallServiceEffect | SpawnEffect | DespawnEffect | DoEffect | NotifyEffect | FetchEffect | IfEffect | WhenEffect | LetEffect | LogEffect | WaitEffect | RefEffect | DerefEffect | SwapEffect | WatchEffect | AtomicEffect | AsyncDelayEffect | AsyncDebounceEffect | AsyncThrottleEffect | AsyncIntervalEffect | AsyncRaceEffect | AsyncAllEffect | AsyncSequenceEffect | ForwardEffect | TrainEffect | EvaluateEffect | CheckpointSaveEffect | CheckpointLoadEffect | AgentEffect;
1345
1392
  /**
1346
1393
  * Effect type - typed S-expression format.
1347
1394
  *
@@ -1557,6 +1604,19 @@ declare function watch(binding: string, event: string, options: WatchOptions): W
1557
1604
  * // returns ["atomic", ["set", "@entity.x", 10], ["set", "@entity.y", 20]]
1558
1605
  */
1559
1606
  declare function atomic(...effects: SExpr[]): AtomicEffect;
1607
+ /** Resolved pattern props for render-ui effects at runtime. Recursive for nested pattern configs. */
1608
+ interface ResolvedPatternProps {
1609
+ [prop: string]: string | number | boolean | null | undefined | ResolvedPatternProps | ResolvedPatternProps[];
1610
+ }
1611
+ /** A node in a render-ui effect tree. */
1612
+ interface RenderUINode {
1613
+ type: string;
1614
+ props?: ResolvedPatternProps;
1615
+ children?: RenderUINode[];
1616
+ content?: string;
1617
+ entity?: string;
1618
+ renderItem?: RenderUINode;
1619
+ }
1560
1620
 
1561
1621
  /**
1562
1622
  * Represents a state in the state machine
@@ -1975,8 +2035,8 @@ declare function isCircuitEvent(event: string): boolean;
1975
2035
  /**
1976
2036
  * Categories for organizing traits
1977
2037
  */
1978
- type TraitCategory = 'lifecycle' | 'temporal' | 'validation' | 'notification' | 'integration' | 'interaction' | 'game-core' | 'game-character' | 'game-ai' | 'game-combat' | 'game-items' | 'game-cards' | 'game-board' | 'game-puzzle';
1979
- declare const TraitCategorySchema: z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>;
2038
+ type TraitCategory = 'lifecycle' | 'temporal' | 'validation' | 'notification' | 'integration' | 'interaction' | 'agent' | 'game-core' | 'game-character' | 'game-ai' | 'game-combat' | 'game-items' | 'game-cards' | 'game-board' | 'game-puzzle';
2039
+ declare const TraitCategorySchema: 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"]>;
1980
2040
  /**
1981
2041
  * Field types for trait data entities
1982
2042
  */
@@ -2394,7 +2454,7 @@ declare const TraitSchema: z.ZodObject<{
2394
2454
  name: z.ZodString;
2395
2455
  description: z.ZodOptional<z.ZodString>;
2396
2456
  description_visual_prompt: z.ZodOptional<z.ZodString>;
2397
- category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
2457
+ 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"]>>;
2398
2458
  linkedEntity: z.ZodOptional<z.ZodString>;
2399
2459
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2400
2460
  name: z.ZodString;
@@ -2742,7 +2802,7 @@ declare const TraitSchema: z.ZodObject<{
2742
2802
  }, "strip", z.ZodTypeAny, {
2743
2803
  name: string;
2744
2804
  ui?: Record<string, unknown> | undefined;
2745
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
2805
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
2746
2806
  description?: string | undefined;
2747
2807
  linkedEntity?: string | undefined;
2748
2808
  emits?: {
@@ -2837,7 +2897,7 @@ declare const TraitSchema: z.ZodObject<{
2837
2897
  }, {
2838
2898
  name: string;
2839
2899
  ui?: Record<string, unknown> | undefined;
2840
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
2900
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
2841
2901
  description?: string | undefined;
2842
2902
  linkedEntity?: string | undefined;
2843
2903
  emits?: {
@@ -2946,7 +3006,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
2946
3006
  name: z.ZodString;
2947
3007
  description: z.ZodOptional<z.ZodString>;
2948
3008
  description_visual_prompt: z.ZodOptional<z.ZodString>;
2949
- category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
3009
+ 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"]>>;
2950
3010
  linkedEntity: z.ZodOptional<z.ZodString>;
2951
3011
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2952
3012
  name: z.ZodString;
@@ -3294,7 +3354,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3294
3354
  }, "strip", z.ZodTypeAny, {
3295
3355
  name: string;
3296
3356
  ui?: Record<string, unknown> | undefined;
3297
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
3357
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
3298
3358
  description?: string | undefined;
3299
3359
  linkedEntity?: string | undefined;
3300
3360
  emits?: {
@@ -3389,7 +3449,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3389
3449
  }, {
3390
3450
  name: string;
3391
3451
  ui?: Record<string, unknown> | undefined;
3392
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
3452
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
3393
3453
  description?: string | undefined;
3394
3454
  linkedEntity?: string | undefined;
3395
3455
  emits?: {
@@ -3568,7 +3628,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3568
3628
  name: z.ZodString;
3569
3629
  description: z.ZodOptional<z.ZodString>;
3570
3630
  description_visual_prompt: z.ZodOptional<z.ZodString>;
3571
- category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
3631
+ 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"]>>;
3572
3632
  linkedEntity: z.ZodOptional<z.ZodString>;
3573
3633
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
3574
3634
  name: z.ZodString;
@@ -3916,7 +3976,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3916
3976
  }, "strip", z.ZodTypeAny, {
3917
3977
  name: string;
3918
3978
  ui?: Record<string, unknown> | undefined;
3919
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
3979
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
3920
3980
  description?: string | undefined;
3921
3981
  linkedEntity?: string | undefined;
3922
3982
  emits?: {
@@ -4011,7 +4071,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4011
4071
  }, {
4012
4072
  name: string;
4013
4073
  ui?: Record<string, unknown> | undefined;
4014
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
4074
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
4015
4075
  description?: string | undefined;
4016
4076
  linkedEntity?: string | undefined;
4017
4077
  emits?: {
@@ -5453,6 +5513,10 @@ declare function findService(services: ServiceDefinition[], name: string): Servi
5453
5513
  * Check if a service name exists (case-insensitive).
5454
5514
  */
5455
5515
  declare function hasService(services: ServiceDefinition[], name: string): boolean;
5516
+ /** Parameters passed to call-service effects. Recursive for nested request shapes. */
5517
+ interface ServiceParams {
5518
+ [key: string]: string | number | boolean | Date | null | string[] | ServiceParams | undefined;
5519
+ }
5456
5520
 
5457
5521
  /**
5458
5522
  * UseDeclaration - Import an external Orbital as a namespace.
@@ -5535,7 +5599,7 @@ declare function isEntityReference(entity: EntityRef): entity is string;
5535
5599
  declare const EntityRefStringSchema: z.ZodString;
5536
5600
  declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5537
5601
  name: z.ZodString;
5538
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
5602
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
5539
5603
  collection: z.ZodOptional<z.ZodString>;
5540
5604
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
5541
5605
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -5564,7 +5628,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5564
5628
  }>>;
5565
5629
  }, "strip", z.ZodTypeAny, {
5566
5630
  name: string;
5567
- persistence: "persistent" | "runtime" | "singleton" | "instance";
5631
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
5568
5632
  fields: EntityField[];
5569
5633
  collection?: string | undefined;
5570
5634
  instances?: Record<string, unknown>[] | undefined;
@@ -5582,7 +5646,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5582
5646
  }, {
5583
5647
  name: string;
5584
5648
  fields: EntityField[];
5585
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
5649
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5586
5650
  collection?: string | undefined;
5587
5651
  instances?: Record<string, unknown>[] | undefined;
5588
5652
  timestamps?: boolean | undefined;
@@ -6347,7 +6411,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6347
6411
  }>]>, z.ZodString]>, "many">>;
6348
6412
  entity: z.ZodUnion<[z.ZodObject<{
6349
6413
  name: z.ZodString;
6350
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
6414
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
6351
6415
  collection: z.ZodOptional<z.ZodString>;
6352
6416
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
6353
6417
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -6376,7 +6440,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6376
6440
  }>>;
6377
6441
  }, "strip", z.ZodTypeAny, {
6378
6442
  name: string;
6379
- persistence: "persistent" | "runtime" | "singleton" | "instance";
6443
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
6380
6444
  fields: EntityField[];
6381
6445
  collection?: string | undefined;
6382
6446
  instances?: Record<string, unknown>[] | undefined;
@@ -6394,7 +6458,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6394
6458
  }, {
6395
6459
  name: string;
6396
6460
  fields: EntityField[];
6397
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
6461
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
6398
6462
  collection?: string | undefined;
6399
6463
  instances?: Record<string, unknown>[] | undefined;
6400
6464
  timestamps?: boolean | undefined;
@@ -6425,7 +6489,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6425
6489
  name: z.ZodString;
6426
6490
  description: z.ZodOptional<z.ZodString>;
6427
6491
  description_visual_prompt: z.ZodOptional<z.ZodString>;
6428
- category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
6492
+ 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"]>>;
6429
6493
  linkedEntity: z.ZodOptional<z.ZodString>;
6430
6494
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
6431
6495
  name: z.ZodString;
@@ -6773,7 +6837,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6773
6837
  }, "strip", z.ZodTypeAny, {
6774
6838
  name: string;
6775
6839
  ui?: Record<string, unknown> | undefined;
6776
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
6840
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
6777
6841
  description?: string | undefined;
6778
6842
  linkedEntity?: string | undefined;
6779
6843
  emits?: {
@@ -6868,7 +6932,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6868
6932
  }, {
6869
6933
  name: string;
6870
6934
  ui?: Record<string, unknown> | undefined;
6871
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
6935
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
6872
6936
  description?: string | undefined;
6873
6937
  linkedEntity?: string | undefined;
6874
6938
  emits?: {
@@ -7259,7 +7323,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7259
7323
  }, "strip", z.ZodTypeAny, {
7260
7324
  entity: string | {
7261
7325
  name: string;
7262
- persistence: "persistent" | "runtime" | "singleton" | "instance";
7326
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
7263
7327
  fields: EntityField[];
7264
7328
  collection?: string | undefined;
7265
7329
  instances?: Record<string, unknown>[] | undefined;
@@ -7279,7 +7343,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7279
7343
  traits: (string | {
7280
7344
  name: string;
7281
7345
  ui?: Record<string, unknown> | undefined;
7282
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
7346
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
7283
7347
  description?: string | undefined;
7284
7348
  linkedEntity?: string | undefined;
7285
7349
  emits?: {
@@ -7517,7 +7581,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7517
7581
  entity: string | {
7518
7582
  name: string;
7519
7583
  fields: EntityField[];
7520
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
7584
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
7521
7585
  collection?: string | undefined;
7522
7586
  instances?: Record<string, unknown>[] | undefined;
7523
7587
  timestamps?: boolean | undefined;
@@ -7536,7 +7600,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7536
7600
  traits: (string | {
7537
7601
  name: string;
7538
7602
  ui?: Record<string, unknown> | undefined;
7539
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
7603
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
7540
7604
  description?: string | undefined;
7541
7605
  linkedEntity?: string | undefined;
7542
7606
  emits?: {
@@ -7987,7 +8051,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
7987
8051
  }>]>, z.ZodString]>, "many">>;
7988
8052
  entity: z.ZodUnion<[z.ZodObject<{
7989
8053
  name: z.ZodString;
7990
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
8054
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
7991
8055
  collection: z.ZodOptional<z.ZodString>;
7992
8056
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
7993
8057
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -8016,7 +8080,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8016
8080
  }>>;
8017
8081
  }, "strip", z.ZodTypeAny, {
8018
8082
  name: string;
8019
- persistence: "persistent" | "runtime" | "singleton" | "instance";
8083
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
8020
8084
  fields: EntityField[];
8021
8085
  collection?: string | undefined;
8022
8086
  instances?: Record<string, unknown>[] | undefined;
@@ -8034,7 +8098,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8034
8098
  }, {
8035
8099
  name: string;
8036
8100
  fields: EntityField[];
8037
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
8101
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
8038
8102
  collection?: string | undefined;
8039
8103
  instances?: Record<string, unknown>[] | undefined;
8040
8104
  timestamps?: boolean | undefined;
@@ -8065,7 +8129,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8065
8129
  name: z.ZodString;
8066
8130
  description: z.ZodOptional<z.ZodString>;
8067
8131
  description_visual_prompt: z.ZodOptional<z.ZodString>;
8068
- category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
8132
+ 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"]>>;
8069
8133
  linkedEntity: z.ZodOptional<z.ZodString>;
8070
8134
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
8071
8135
  name: z.ZodString;
@@ -8413,7 +8477,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8413
8477
  }, "strip", z.ZodTypeAny, {
8414
8478
  name: string;
8415
8479
  ui?: Record<string, unknown> | undefined;
8416
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
8480
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
8417
8481
  description?: string | undefined;
8418
8482
  linkedEntity?: string | undefined;
8419
8483
  emits?: {
@@ -8508,7 +8572,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8508
8572
  }, {
8509
8573
  name: string;
8510
8574
  ui?: Record<string, unknown> | undefined;
8511
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
8575
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
8512
8576
  description?: string | undefined;
8513
8577
  linkedEntity?: string | undefined;
8514
8578
  emits?: {
@@ -8899,7 +8963,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8899
8963
  }, "strip", z.ZodTypeAny, {
8900
8964
  entity: string | {
8901
8965
  name: string;
8902
- persistence: "persistent" | "runtime" | "singleton" | "instance";
8966
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
8903
8967
  fields: EntityField[];
8904
8968
  collection?: string | undefined;
8905
8969
  instances?: Record<string, unknown>[] | undefined;
@@ -8919,7 +8983,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8919
8983
  traits: (string | {
8920
8984
  name: string;
8921
8985
  ui?: Record<string, unknown> | undefined;
8922
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
8986
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
8923
8987
  description?: string | undefined;
8924
8988
  linkedEntity?: string | undefined;
8925
8989
  emits?: {
@@ -9157,7 +9221,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
9157
9221
  entity: string | {
9158
9222
  name: string;
9159
9223
  fields: EntityField[];
9160
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
9224
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
9161
9225
  collection?: string | undefined;
9162
9226
  instances?: Record<string, unknown>[] | undefined;
9163
9227
  timestamps?: boolean | undefined;
@@ -9176,7 +9240,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
9176
9240
  traits: (string | {
9177
9241
  name: string;
9178
9242
  ui?: Record<string, unknown> | undefined;
9179
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
9243
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
9180
9244
  description?: string | undefined;
9181
9245
  linkedEntity?: string | undefined;
9182
9246
  emits?: {
@@ -9634,7 +9698,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9634
9698
  }>]>, z.ZodString]>, "many">>;
9635
9699
  entity: z.ZodUnion<[z.ZodObject<{
9636
9700
  name: z.ZodString;
9637
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
9701
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
9638
9702
  collection: z.ZodOptional<z.ZodString>;
9639
9703
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
9640
9704
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -9663,7 +9727,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9663
9727
  }>>;
9664
9728
  }, "strip", z.ZodTypeAny, {
9665
9729
  name: string;
9666
- persistence: "persistent" | "runtime" | "singleton" | "instance";
9730
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
9667
9731
  fields: EntityField[];
9668
9732
  collection?: string | undefined;
9669
9733
  instances?: Record<string, unknown>[] | undefined;
@@ -9681,7 +9745,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9681
9745
  }, {
9682
9746
  name: string;
9683
9747
  fields: EntityField[];
9684
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
9748
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
9685
9749
  collection?: string | undefined;
9686
9750
  instances?: Record<string, unknown>[] | undefined;
9687
9751
  timestamps?: boolean | undefined;
@@ -9712,7 +9776,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9712
9776
  name: z.ZodString;
9713
9777
  description: z.ZodOptional<z.ZodString>;
9714
9778
  description_visual_prompt: z.ZodOptional<z.ZodString>;
9715
- category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
9779
+ 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"]>>;
9716
9780
  linkedEntity: z.ZodOptional<z.ZodString>;
9717
9781
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
9718
9782
  name: z.ZodString;
@@ -10060,7 +10124,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10060
10124
  }, "strip", z.ZodTypeAny, {
10061
10125
  name: string;
10062
10126
  ui?: Record<string, unknown> | undefined;
10063
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10127
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10064
10128
  description?: string | undefined;
10065
10129
  linkedEntity?: string | undefined;
10066
10130
  emits?: {
@@ -10155,7 +10219,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10155
10219
  }, {
10156
10220
  name: string;
10157
10221
  ui?: Record<string, unknown> | undefined;
10158
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10222
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10159
10223
  description?: string | undefined;
10160
10224
  linkedEntity?: string | undefined;
10161
10225
  emits?: {
@@ -10546,7 +10610,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10546
10610
  }, "strip", z.ZodTypeAny, {
10547
10611
  entity: string | {
10548
10612
  name: string;
10549
- persistence: "persistent" | "runtime" | "singleton" | "instance";
10613
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
10550
10614
  fields: EntityField[];
10551
10615
  collection?: string | undefined;
10552
10616
  instances?: Record<string, unknown>[] | undefined;
@@ -10566,7 +10630,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10566
10630
  traits: (string | {
10567
10631
  name: string;
10568
10632
  ui?: Record<string, unknown> | undefined;
10569
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10633
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10570
10634
  description?: string | undefined;
10571
10635
  linkedEntity?: string | undefined;
10572
10636
  emits?: {
@@ -10804,7 +10868,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10804
10868
  entity: string | {
10805
10869
  name: string;
10806
10870
  fields: EntityField[];
10807
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
10871
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
10808
10872
  collection?: string | undefined;
10809
10873
  instances?: Record<string, unknown>[] | undefined;
10810
10874
  timestamps?: boolean | undefined;
@@ -10823,7 +10887,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10823
10887
  traits: (string | {
10824
10888
  name: string;
10825
10889
  ui?: Record<string, unknown> | undefined;
10826
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10890
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
10827
10891
  description?: string | undefined;
10828
10892
  linkedEntity?: string | undefined;
10829
10893
  emits?: {
@@ -11522,7 +11586,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11522
11586
  }>]>, z.ZodString]>, "many">>;
11523
11587
  entity: z.ZodUnion<[z.ZodObject<{
11524
11588
  name: z.ZodString;
11525
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
11589
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
11526
11590
  collection: z.ZodOptional<z.ZodString>;
11527
11591
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
11528
11592
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -11551,7 +11615,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11551
11615
  }>>;
11552
11616
  }, "strip", z.ZodTypeAny, {
11553
11617
  name: string;
11554
- persistence: "persistent" | "runtime" | "singleton" | "instance";
11618
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
11555
11619
  fields: EntityField[];
11556
11620
  collection?: string | undefined;
11557
11621
  instances?: Record<string, unknown>[] | undefined;
@@ -11569,7 +11633,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11569
11633
  }, {
11570
11634
  name: string;
11571
11635
  fields: EntityField[];
11572
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
11636
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
11573
11637
  collection?: string | undefined;
11574
11638
  instances?: Record<string, unknown>[] | undefined;
11575
11639
  timestamps?: boolean | undefined;
@@ -11600,7 +11664,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11600
11664
  name: z.ZodString;
11601
11665
  description: z.ZodOptional<z.ZodString>;
11602
11666
  description_visual_prompt: z.ZodOptional<z.ZodString>;
11603
- category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
11667
+ 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"]>>;
11604
11668
  linkedEntity: z.ZodOptional<z.ZodString>;
11605
11669
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
11606
11670
  name: z.ZodString;
@@ -11948,7 +12012,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11948
12012
  }, "strip", z.ZodTypeAny, {
11949
12013
  name: string;
11950
12014
  ui?: Record<string, unknown> | undefined;
11951
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
12015
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
11952
12016
  description?: string | undefined;
11953
12017
  linkedEntity?: string | undefined;
11954
12018
  emits?: {
@@ -12043,7 +12107,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12043
12107
  }, {
12044
12108
  name: string;
12045
12109
  ui?: Record<string, unknown> | undefined;
12046
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
12110
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
12047
12111
  description?: string | undefined;
12048
12112
  linkedEntity?: string | undefined;
12049
12113
  emits?: {
@@ -12434,7 +12498,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12434
12498
  }, "strip", z.ZodTypeAny, {
12435
12499
  entity: string | {
12436
12500
  name: string;
12437
- persistence: "persistent" | "runtime" | "singleton" | "instance";
12501
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
12438
12502
  fields: EntityField[];
12439
12503
  collection?: string | undefined;
12440
12504
  instances?: Record<string, unknown>[] | undefined;
@@ -12454,7 +12518,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12454
12518
  traits: (string | {
12455
12519
  name: string;
12456
12520
  ui?: Record<string, unknown> | undefined;
12457
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
12521
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
12458
12522
  description?: string | undefined;
12459
12523
  linkedEntity?: string | undefined;
12460
12524
  emits?: {
@@ -12692,7 +12756,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12692
12756
  entity: string | {
12693
12757
  name: string;
12694
12758
  fields: EntityField[];
12695
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
12759
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
12696
12760
  collection?: string | undefined;
12697
12761
  instances?: Record<string, unknown>[] | undefined;
12698
12762
  timestamps?: boolean | undefined;
@@ -12711,7 +12775,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12711
12775
  traits: (string | {
12712
12776
  name: string;
12713
12777
  ui?: Record<string, unknown> | undefined;
12714
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
12778
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
12715
12779
  description?: string | undefined;
12716
12780
  linkedEntity?: string | undefined;
12717
12781
  emits?: {
@@ -13126,7 +13190,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13126
13190
  orbitals: {
13127
13191
  entity: string | {
13128
13192
  name: string;
13129
- persistence: "persistent" | "runtime" | "singleton" | "instance";
13193
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
13130
13194
  fields: EntityField[];
13131
13195
  collection?: string | undefined;
13132
13196
  instances?: Record<string, unknown>[] | undefined;
@@ -13146,7 +13210,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13146
13210
  traits: (string | {
13147
13211
  name: string;
13148
13212
  ui?: Record<string, unknown> | undefined;
13149
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
13213
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
13150
13214
  description?: string | undefined;
13151
13215
  linkedEntity?: string | undefined;
13152
13216
  emits?: {
@@ -13473,7 +13537,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13473
13537
  entity: string | {
13474
13538
  name: string;
13475
13539
  fields: EntityField[];
13476
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
13540
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
13477
13541
  collection?: string | undefined;
13478
13542
  instances?: Record<string, unknown>[] | undefined;
13479
13543
  timestamps?: boolean | undefined;
@@ -13492,7 +13556,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13492
13556
  traits: (string | {
13493
13557
  name: string;
13494
13558
  ui?: Record<string, unknown> | undefined;
13495
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
13559
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
13496
13560
  description?: string | undefined;
13497
13561
  linkedEntity?: string | undefined;
13498
13562
  emits?: {
@@ -13866,7 +13930,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
13866
13930
  entity: string | {
13867
13931
  name: string;
13868
13932
  fields: EntityField[];
13869
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
13933
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
13870
13934
  collection?: string | undefined;
13871
13935
  instances?: Record<string, unknown>[] | undefined;
13872
13936
  timestamps?: boolean | undefined;
@@ -13885,7 +13949,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
13885
13949
  traits: (string | {
13886
13950
  name: string;
13887
13951
  ui?: Record<string, unknown> | undefined;
13888
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
13952
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
13889
13953
  description?: string | undefined;
13890
13954
  linkedEntity?: string | undefined;
13891
13955
  emits?: {
@@ -14211,7 +14275,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14211
14275
  orbitals: {
14212
14276
  entity: string | {
14213
14277
  name: string;
14214
- persistence: "persistent" | "runtime" | "singleton" | "instance";
14278
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
14215
14279
  fields: EntityField[];
14216
14280
  collection?: string | undefined;
14217
14281
  instances?: Record<string, unknown>[] | undefined;
@@ -14231,7 +14295,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14231
14295
  traits: (string | {
14232
14296
  name: string;
14233
14297
  ui?: Record<string, unknown> | undefined;
14234
- category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
14298
+ category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
14235
14299
  description?: string | undefined;
14236
14300
  linkedEntity?: string | undefined;
14237
14301
  emits?: {
@@ -14556,4 +14620,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14556
14620
  type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
14557
14621
  type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
14558
14622
 
14559
- export { type EffectInput as $, AGENT_DOMAIN_CATEGORIES as A, CustomPatternDefinitionSchema as B, CORE_BINDINGS as C, type CustomPatternMap as D, type EntityField as E, type CustomPatternMapInput as F, CustomPatternMapSchema as G, type DerefEffect as H, type DesignPreferences as I, type DesignPreferencesInput as J, DesignPreferencesSchema as K, type DesignTokens as L, type DesignTokensInput as M, DesignTokensSchema as N, type OrbitalDefinition as O, type Page as P, type DomainCategory as Q, DomainCategorySchema as R, type State as S, type TraitEventContract as T, type DomainContext as U, type DomainContextInput as V, DomainContextSchema as W, type DomainVocabulary as X, DomainVocabularySchema as Y, ENTITY_ROLES as Z, type Effect as _, type EntityPersistence as a, OrbitalTraitRefSchema as a$, EffectSchema as a0, type EntityFieldInput as a1, EntityFieldSchema as a2, EntityPersistenceSchema as a3, type EntityRef as a4, EntityRefSchema as a5, EntityRefStringSchema as a6, type EntityRole as a7, EntityRoleSchema as a8, EntitySchema as a9, type GameSubCategory as aA, GameSubCategorySchema as aB, type GameType as aC, GameTypeSchema as aD, type Guard as aE, type GuardInput as aF, GuardSchema as aG, type McpServiceDef as aH, McpServiceDefSchema as aI, type NodeClassification as aJ, NodeClassificationSchema as aK, type OrbitalConfig as aL, type OrbitalConfigInput as aM, OrbitalConfigSchema as aN, OrbitalDefinitionSchema as aO, type OrbitalEntity as aP, type OrbitalEntityInput as aQ, OrbitalEntitySchema as aR, type OrbitalInput as aS, type OrbitalPage as aT, type OrbitalPageInput as aU, OrbitalPageSchema as aV, type OrbitalPageStrictInput as aW, OrbitalPageStrictSchema as aX, type OrbitalSchemaInput as aY, OrbitalSchemaSchema as aZ, type OrbitalTraitRef as a_, type EntitySemanticRole as aa, EntitySemanticRoleSchema as ab, type Event as ac, type EventInput as ad, type EventListener as ae, EventListenerSchema as af, type EventPayloadField as ag, EventPayloadFieldSchema as ah, EventSchema as ai, type EventScope as aj, EventScopeSchema as ak, type EventSemanticRole as al, EventSemanticRoleSchema as am, type EventSource as an, EventSourceSchema as ao, type Expression as ap, type ExpressionInput as aq, ExpressionSchema as ar, type Field as as, type FieldFormat as at, FieldFormatSchema as au, FieldSchema as av, type FieldType as aw, FieldTypeSchema as ax, type Orbital as ay, GAME_TYPES as az, type OrbitalSchema as b, ThemeRefSchema as b$, type OrbitalUnit as b0, OrbitalUnitSchema as b1, OrbitalSchema$1 as b2, type PageRef as b3, type PageRefObject as b4, PageRefObjectSchema as b5, PageRefSchema as b6, PageRefStringSchema as b7, PageSchema as b8, type PageTraitRef as b9, type SemanticAssetRef as bA, type SemanticAssetRefInput as bB, SemanticAssetRefSchema as bC, type ServiceDefinition as bD, ServiceDefinitionSchema as bE, type ServiceRef as bF, ServiceRefSchema as bG, ServiceRefStringSchema as bH, type ServiceType as bI, ServiceTypeSchema as bJ, type SocketEvents as bK, SocketEventsSchema as bL, type SocketServiceDef as bM, SocketServiceDefSchema as bN, type StateInput as bO, type StateMachine as bP, type StateMachineInput as bQ, StateMachineSchema as bR, StateSchema as bS, type StateSemanticRole as bT, StateSemanticRoleSchema as bU, type SuggestedGuard as bV, SuggestedGuardSchema as bW, type SwapEffect as bX, type ThemeDefinition as bY, ThemeDefinitionSchema as bZ, type ThemeRef as b_, PageTraitRefSchema as ba, type ParsedBinding as bb, type PayloadField as bc, PayloadFieldSchema as bd, type PresentationType as be, type RefEffect as bf, type RelatedLink as bg, RelatedLinkSchema as bh, type RelationConfig as bi, RelationConfigSchema as bj, type RenderUIConfig as bk, type RequiredField as bl, RequiredFieldSchema as bm, type ResolvedAsset as bn, type ResolvedAssetInput as bo, ResolvedAssetSchema as bp, type RestAuthConfig as bq, RestAuthConfigSchema as br, type RestServiceDef as bs, RestServiceDefSchema as bt, SERVICE_TYPES as bu, type SExpr as bv, type SExprAtom as bw, SExprAtomSchema as bx, type SExprInput as by, SExprSchema as bz, type Trait as c, isEffect as c$, ThemeRefStringSchema as c0, type ThemeTokens as c1, ThemeTokensSchema as c2, type ThemeVariant as c3, ThemeVariantSchema as c4, type TraitCategory as c5, TraitCategorySchema as c6, type TraitDataEntity as c7, TraitDataEntitySchema as c8, type TraitEntityField as c9, UserPersonaSchema as cA, VISUAL_STYLES as cB, type ViewType as cC, ViewTypeSchema as cD, type VisualStyle as cE, VisualStyleSchema as cF, type WatchEffect as cG, type WatchOptions as cH, atomic as cI, callService as cJ, collectBindings as cK, createAssetKey as cL, deref as cM, deriveCollection as cN, despawn as cO, doEffects as cP, emit as cQ, findService as cR, getArgs as cS, getDefaultAnimationsForRole as cT, getOperator as cU, getServiceNames as cV, getTraitConfig as cW, getTraitName as cX, hasService as cY, isBinding as cZ, isCircuitEvent as c_, TraitEntityFieldSchema as ca, TraitEventContractSchema as cb, type TraitEventListener as cc, TraitEventListenerSchema as cd, type TraitInput as ce, type TraitRef as cf, TraitRefSchema as cg, type TraitReference as ch, type TraitReferenceInput as ci, TraitReferenceSchema as cj, TraitSchema as ck, type TraitTick as cl, TraitTickSchema as cm, type TraitUIBinding as cn, type Transition as co, type TransitionInput as cp, TransitionSchema as cq, type UISlot as cr, UISlotSchema as cs, UI_SLOTS as ct, type UXHints as cu, UXHintsSchema as cv, type UseDeclaration as cw, UseDeclarationSchema as cx, type UserPersona as cy, type UserPersonaInput as cz, type Entity as d, isEntityReference as d0, isImportedTraitRef as d1, isInlineTrait as d2, isMcpService as d3, isOrbitalDefinition as d4, isPageReference as d5, isPageReferenceObject as d6, isPageReferenceString as d7, isRestService as d8, isRuntimeEntity as d9, spawn as dA, swap as dB, validateAssetAnimations as dC, walkSExpr as dD, watch as dE, isSExpr as da, isSExprAtom as db, isSExprCall as dc, isSExprEffect as dd, isServiceReference as de, isSingletonEntity as df, isSocketService as dg, isThemeReference as dh, isValidBinding as di, navigate as dj, normalizeTraitRef as dk, notify as dl, parseAssetKey as dm, parseBinding as dn, parseEntityRef as dp, parseImportedTraitRef as dq, parseOrbitalSchema as dr, parsePageRef as ds, parseServiceRef as dt, persist as du, ref as dv, renderUI as dw, safeParseOrbitalSchema as dx, set as dy, sexpr as dz, ALLOWED_CUSTOM_COMPONENTS as e, type AgentDomainCategory as f, AgentDomainCategorySchema as g, type AllowedCustomComponent as h, type AnimationDef as i, type AnimationDefInput as j, AnimationDefSchema as k, type AssetMap as l, type AssetMapInput as m, AssetMapSchema as n, type AssetMapping as o, type AssetMappingInput as p, AssetMappingSchema as q, type AtomicEffect as r, type CallServiceConfig as s, type ComputedEventContract as t, ComputedEventContractSchema as u, type ComputedEventListener as v, ComputedEventListenerSchema as w, type CoreBinding as x, type CustomPatternDefinition as y, type CustomPatternDefinitionInput as z };
14623
+ export { ENTITY_ROLES as $, AGENT_DOMAIN_CATEGORIES as A, type CustomPatternDefinition as B, CORE_BINDINGS as C, type CustomPatternDefinitionInput as D, type EntityField as E, CustomPatternDefinitionSchema as F, type CustomPatternMap as G, type CustomPatternMapInput as H, CustomPatternMapSchema as I, type DerefEffect as J, type DesignPreferences as K, type DesignPreferencesInput as L, DesignPreferencesSchema as M, type DesignTokens as N, type OrbitalDefinition as O, type Page as P, type DesignTokensInput as Q, DesignTokensSchema as R, type State as S, type TraitEventContract as T, type DomainCategory as U, DomainCategorySchema as V, type DomainContext as W, type DomainContextInput as X, DomainContextSchema as Y, type DomainVocabulary as Z, DomainVocabularySchema as _, type EntityPersistence as a, type OrbitalPageInput as a$, type Effect as a0, type EffectInput as a1, EffectSchema as a2, type EntityData as a3, type EntityFieldInput as a4, EntityFieldSchema as a5, EntityPersistenceSchema as a6, type EntityRef as a7, EntityRefSchema as a8, EntityRefStringSchema as a9, FieldSchema as aA, type FieldType as aB, FieldTypeSchema as aC, type FieldValue as aD, type Orbital as aE, GAME_TYPES as aF, type GameSubCategory as aG, GameSubCategorySchema as aH, type GameType as aI, GameTypeSchema as aJ, type Guard as aK, type GuardInput as aL, GuardSchema as aM, type LogMeta as aN, type McpServiceDef as aO, McpServiceDefSchema as aP, type NodeClassification as aQ, NodeClassificationSchema as aR, type OrbitalConfig as aS, type OrbitalConfigInput as aT, OrbitalConfigSchema as aU, OrbitalDefinitionSchema as aV, type OrbitalEntity as aW, type OrbitalEntityInput as aX, OrbitalEntitySchema as aY, type OrbitalInput as aZ, type OrbitalPage as a_, type EntityRole as aa, EntityRoleSchema as ab, EntitySchema as ac, type EntitySemanticRole as ad, EntitySemanticRoleSchema as ae, type EvalContext as af, type Event as ag, type EventInput as ah, type EventListener as ai, EventListenerSchema as aj, type EventPayload as ak, type EventPayloadField as al, EventPayloadFieldSchema as am, EventSchema as an, type EventScope as ao, EventScopeSchema as ap, type EventSemanticRole as aq, EventSemanticRoleSchema as ar, type EventSource as as, EventSourceSchema as at, type Expression as au, type ExpressionInput as av, ExpressionSchema as aw, type Field as ax, type FieldFormat as ay, FieldFormatSchema as az, type EntityRow as b, StateMachineSchema as b$, OrbitalPageSchema as b0, type OrbitalPageStrictInput as b1, OrbitalPageStrictSchema as b2, type OrbitalSchemaInput as b3, OrbitalSchemaSchema as b4, type OrbitalTraitRef as b5, OrbitalTraitRefSchema as b6, type OrbitalUnit as b7, OrbitalUnitSchema as b8, OrbitalSchema$1 as b9, RestAuthConfigSchema as bA, type RestServiceDef as bB, RestServiceDefSchema as bC, SERVICE_TYPES as bD, type SExpr as bE, type SExprAtom as bF, SExprAtomSchema as bG, type SExprInput as bH, SExprSchema as bI, type SemanticAssetRef as bJ, type SemanticAssetRefInput as bK, SemanticAssetRefSchema as bL, type ServiceDefinition as bM, ServiceDefinitionSchema as bN, type ServiceParams as bO, type ServiceRef as bP, ServiceRefSchema as bQ, ServiceRefStringSchema as bR, type ServiceType as bS, ServiceTypeSchema as bT, type SocketEvents as bU, SocketEventsSchema as bV, type SocketServiceDef as bW, SocketServiceDefSchema as bX, type StateInput as bY, type StateMachine as bZ, type StateMachineInput as b_, type PageRef as ba, type PageRefObject as bb, PageRefObjectSchema as bc, PageRefSchema as bd, PageRefStringSchema as be, PageSchema as bf, type PageTraitRef as bg, PageTraitRefSchema as bh, type ParsedBinding as bi, type PayloadField as bj, PayloadFieldSchema as bk, type PresentationType as bl, type RefEffect as bm, type RelatedLink as bn, RelatedLinkSchema as bo, type RelationConfig as bp, RelationConfigSchema as bq, type RenderUIConfig as br, type RenderUINode as bs, type RequiredField as bt, RequiredFieldSchema as bu, type ResolvedAsset as bv, type ResolvedAssetInput as bw, ResolvedAssetSchema as bx, type ResolvedPatternProps as by, type RestAuthConfig as bz, type OrbitalSchema as c, findService as c$, StateSchema as c0, type StateSemanticRole as c1, StateSemanticRoleSchema as c2, type SuggestedGuard as c3, SuggestedGuardSchema as c4, type SwapEffect as c5, type ThemeDefinition as c6, ThemeDefinitionSchema as c7, type ThemeRef as c8, ThemeRefSchema as c9, TransitionSchema as cA, type UISlot as cB, UISlotSchema as cC, UI_SLOTS as cD, type UXHints as cE, UXHintsSchema as cF, type UseDeclaration as cG, UseDeclarationSchema as cH, type UserPersona as cI, type UserPersonaInput as cJ, UserPersonaSchema as cK, VISUAL_STYLES as cL, type ViewType as cM, ViewTypeSchema as cN, type VisualStyle as cO, VisualStyleSchema as cP, type WatchEffect as cQ, type WatchOptions as cR, atomic as cS, callService as cT, collectBindings as cU, createAssetKey as cV, deref as cW, deriveCollection as cX, despawn as cY, doEffects as cZ, emit as c_, ThemeRefStringSchema as ca, type ThemeTokens as cb, ThemeTokensSchema as cc, type ThemeVariant as cd, ThemeVariantSchema as ce, type TraitCategory as cf, TraitCategorySchema as cg, type TraitDataEntity as ch, TraitDataEntitySchema as ci, type TraitEntityField as cj, TraitEntityFieldSchema as ck, TraitEventContractSchema as cl, type TraitEventListener as cm, TraitEventListenerSchema as cn, type TraitInput as co, type TraitRef as cp, TraitRefSchema as cq, type TraitReference as cr, type TraitReferenceInput as cs, TraitReferenceSchema as ct, TraitSchema as cu, type TraitTick as cv, TraitTickSchema as cw, type TraitUIBinding as cx, type Transition as cy, type TransitionInput as cz, type Trait as d, getArgs as d0, getDefaultAnimationsForRole as d1, getOperator as d2, getServiceNames as d3, getTraitConfig as d4, getTraitName as d5, hasService as d6, isBinding as d7, isCircuitEvent as d8, isEffect as d9, parseImportedTraitRef as dA, parseOrbitalSchema as dB, parsePageRef as dC, parseServiceRef as dD, persist as dE, ref as dF, renderUI as dG, safeParseOrbitalSchema as dH, set as dI, sexpr as dJ, spawn as dK, swap as dL, validateAssetAnimations as dM, walkSExpr as dN, watch as dO, isEntityReference as da, isImportedTraitRef as db, isInlineTrait as dc, isMcpService as dd, isOrbitalDefinition as de, isPageReference as df, isPageReferenceObject as dg, isPageReferenceString as dh, isRestService as di, isRuntimeEntity as dj, isSExpr as dk, isSExprAtom as dl, isSExprCall as dm, isSExprEffect as dn, isServiceReference as dp, isSingletonEntity as dq, isSocketService as dr, isThemeReference as ds, isValidBinding as dt, navigate as du, normalizeTraitRef as dv, notify as dw, parseAssetKey as dx, parseBinding as dy, parseEntityRef as dz, type Entity as e, ALLOWED_CUSTOM_COMPONENTS as f, type AgentDomainCategory as g, AgentDomainCategorySchema as h, type AgentEffect as i, type AllowedCustomComponent as j, type AnimationDef as k, type AnimationDefInput as l, AnimationDefSchema as m, type AssetMap as n, type AssetMapInput as o, AssetMapSchema as p, type AssetMapping as q, type AssetMappingInput as r, AssetMappingSchema as s, type AtomicEffect as t, type CallServiceConfig as u, type ComputedEventContract as v, ComputedEventContractSchema as w, type ComputedEventListener as x, ComputedEventListenerSchema as y, type CoreBinding as z };