@almadar/core 2.9.1 → 2.12.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,14 @@ 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. */
199
+ type EventPayload = Record<string, string | number | boolean | null | undefined>;
200
+ /** Structured log/event metadata. Constrains values to serializable types. */
201
+ type LogMeta = Record<string, string | number | boolean | null | undefined | Error>;
194
202
 
195
203
  /**
196
204
  * Field Types for Orbital Units
@@ -693,8 +701,8 @@ declare function validateAssetAnimations(assetRef: SemanticAssetRef, requiredAni
693
701
  * - singleton: Single global instance
694
702
  * - instance: Static data (read-only instances)
695
703
  */
696
- type EntityPersistence = 'persistent' | 'runtime' | 'singleton' | 'instance';
697
- declare const EntityPersistenceSchema: z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>;
704
+ type EntityPersistence = 'persistent' | 'runtime' | 'singleton' | 'instance' | 'local';
705
+ declare const EntityPersistenceSchema: z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>;
698
706
  /**
699
707
  * OrbitalEntity - the nucleus of an Orbital Unit.
700
708
  *
@@ -725,7 +733,7 @@ interface OrbitalEntity {
725
733
  }
726
734
  declare const OrbitalEntitySchema: z.ZodObject<{
727
735
  name: z.ZodString;
728
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
736
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
729
737
  collection: z.ZodOptional<z.ZodString>;
730
738
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
731
739
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -754,7 +762,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
754
762
  }>>;
755
763
  }, "strip", z.ZodTypeAny, {
756
764
  name: string;
757
- persistence: "persistent" | "runtime" | "singleton" | "instance";
765
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
758
766
  fields: EntityField[];
759
767
  collection?: string | undefined;
760
768
  instances?: Record<string, unknown>[] | undefined;
@@ -772,7 +780,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
772
780
  }, {
773
781
  name: string;
774
782
  fields: EntityField[];
775
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
783
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
776
784
  collection?: string | undefined;
777
785
  instances?: Record<string, unknown>[] | undefined;
778
786
  timestamps?: boolean | undefined;
@@ -793,7 +801,7 @@ type Entity = OrbitalEntity;
793
801
  /** Alias for OrbitalEntitySchema - preferred name */
794
802
  declare const EntitySchema: z.ZodObject<{
795
803
  name: z.ZodString;
796
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
804
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
797
805
  collection: z.ZodOptional<z.ZodString>;
798
806
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
799
807
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -822,7 +830,7 @@ declare const EntitySchema: z.ZodObject<{
822
830
  }>>;
823
831
  }, "strip", z.ZodTypeAny, {
824
832
  name: string;
825
- persistence: "persistent" | "runtime" | "singleton" | "instance";
833
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
826
834
  fields: EntityField[];
827
835
  collection?: string | undefined;
828
836
  instances?: Record<string, unknown>[] | undefined;
@@ -840,7 +848,7 @@ declare const EntitySchema: z.ZodObject<{
840
848
  }, {
841
849
  name: string;
842
850
  fields: EntityField[];
843
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
851
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
844
852
  collection?: string | undefined;
845
853
  instances?: Record<string, unknown>[] | undefined;
846
854
  timestamps?: boolean | undefined;
@@ -898,6 +906,33 @@ declare function isRuntimeEntity(entity: OrbitalEntity): boolean;
898
906
  * isSingletonEntity({ persistence: 'persistent' }); // returns false
899
907
  */
900
908
  declare function isSingletonEntity(entity: OrbitalEntity): boolean;
909
+ /**
910
+ * A single field value at runtime.
911
+ * Union of all possible types from FieldType: string, number, boolean, date, array, nested.
912
+ */
913
+ type FieldValue = string | number | boolean | Date | null | string[] | FieldValue[];
914
+ /**
915
+ * One instance of an entity with actual field values.
916
+ * The shape is determined by the Entity definition at schema time.
917
+ *
918
+ * @example
919
+ * // Entity defines: Patient { fullName: string, age: number, active: boolean }
920
+ * // EntityRow is: { id: "p1", fullName: "Sarah", age: 34, active: true }
921
+ */
922
+ type EntityRow = {
923
+ id?: string;
924
+ } & Record<string, FieldValue>;
925
+ /**
926
+ * Collection of entity instances keyed by entity name.
927
+ * Used by OrbPreview mockData, OrbitalServerRuntime state, data grids, etc.
928
+ *
929
+ * @example
930
+ * const data: EntityData = {
931
+ * Patient: [{ id: "1", fullName: "Sarah", age: 34 }],
932
+ * QueueEntry: [{ id: "1", patientName: "Sarah", waitMinutes: 12 }],
933
+ * };
934
+ */
935
+ type EntityData = Record<string, EntityRow[]>;
901
936
 
902
937
  /**
903
938
  * Page Types for Orbital Units
@@ -1108,15 +1143,6 @@ declare const PageSchema: z.ZodObject<{
1108
1143
  isInitial?: boolean | undefined;
1109
1144
  }>;
1110
1145
 
1111
- /**
1112
- * Effect Types (Self-Contained)
1113
- *
1114
- * Defines effect types for trait transitions and ticks.
1115
- * Effects are S-expressions (arrays) that describe actions to perform.
1116
- *
1117
- * @packageDocumentation
1118
- */
1119
-
1120
1146
  /**
1121
1147
  * Known UI slots where content can be rendered
1122
1148
  */
@@ -1299,6 +1325,14 @@ type CheckpointSaveEffect = ['checkpoint/save', string, unknown];
1299
1325
  * @example ['checkpoint/load', '/path/to/model.pt']
1300
1326
  */
1301
1327
  type CheckpointLoadEffect = ['checkpoint/load', string];
1328
+ /**
1329
+ * Agent effect - invokes an agent/* operator.
1330
+ * Covers all 22 operators in the std-agent category.
1331
+ * @example ['agent/memorize', 'use data-grid for tables', 'preference']
1332
+ * @example ['agent/recall', 'user preferences']
1333
+ * @example ['agent/generate', 'Summarize this schema']
1334
+ */
1335
+ type AgentEffect = [`agent/${string}`, ...SExpr[]];
1302
1336
  /**
1303
1337
  * Async delay effect - wait then execute effects.
1304
1338
  * @example ['async/delay', 2000, ['emit', 'TIMEOUT']]
@@ -1341,7 +1375,7 @@ type AsyncSequenceEffect = ['async/sequence', ...Effect[]];
1341
1375
  * Union of all typed effects.
1342
1376
  * Provides compile-time validation for common effect types.
1343
1377
  */
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;
1378
+ 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
1379
  /**
1346
1380
  * Effect type - typed S-expression format.
1347
1381
  *
@@ -1557,6 +1591,15 @@ declare function watch(binding: string, event: string, options: WatchOptions): W
1557
1591
  * // returns ["atomic", ["set", "@entity.x", 10], ["set", "@entity.y", 20]]
1558
1592
  */
1559
1593
  declare function atomic(...effects: SExpr[]): AtomicEffect;
1594
+ /** A node in a render-ui effect tree. */
1595
+ interface RenderUINode {
1596
+ type: string;
1597
+ props?: Record<string, FieldValue | string | undefined>;
1598
+ children?: RenderUINode[];
1599
+ content?: string;
1600
+ entity?: string;
1601
+ renderItem?: RenderUINode;
1602
+ }
1560
1603
 
1561
1604
  /**
1562
1605
  * Represents a state in the state machine
@@ -1975,8 +2018,8 @@ declare function isCircuitEvent(event: string): boolean;
1975
2018
  /**
1976
2019
  * Categories for organizing traits
1977
2020
  */
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"]>;
2021
+ 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';
2022
+ 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
2023
  /**
1981
2024
  * Field types for trait data entities
1982
2025
  */
@@ -2394,7 +2437,7 @@ declare const TraitSchema: z.ZodObject<{
2394
2437
  name: z.ZodString;
2395
2438
  description: z.ZodOptional<z.ZodString>;
2396
2439
  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"]>>;
2440
+ 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
2441
  linkedEntity: z.ZodOptional<z.ZodString>;
2399
2442
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2400
2443
  name: z.ZodString;
@@ -2742,7 +2785,7 @@ declare const TraitSchema: z.ZodObject<{
2742
2785
  }, "strip", z.ZodTypeAny, {
2743
2786
  name: string;
2744
2787
  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;
2788
+ 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
2789
  description?: string | undefined;
2747
2790
  linkedEntity?: string | undefined;
2748
2791
  emits?: {
@@ -2837,7 +2880,7 @@ declare const TraitSchema: z.ZodObject<{
2837
2880
  }, {
2838
2881
  name: string;
2839
2882
  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;
2883
+ 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
2884
  description?: string | undefined;
2842
2885
  linkedEntity?: string | undefined;
2843
2886
  emits?: {
@@ -2946,7 +2989,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
2946
2989
  name: z.ZodString;
2947
2990
  description: z.ZodOptional<z.ZodString>;
2948
2991
  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"]>>;
2992
+ 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
2993
  linkedEntity: z.ZodOptional<z.ZodString>;
2951
2994
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2952
2995
  name: z.ZodString;
@@ -3294,7 +3337,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3294
3337
  }, "strip", z.ZodTypeAny, {
3295
3338
  name: string;
3296
3339
  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;
3340
+ 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
3341
  description?: string | undefined;
3299
3342
  linkedEntity?: string | undefined;
3300
3343
  emits?: {
@@ -3389,7 +3432,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3389
3432
  }, {
3390
3433
  name: string;
3391
3434
  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;
3435
+ 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
3436
  description?: string | undefined;
3394
3437
  linkedEntity?: string | undefined;
3395
3438
  emits?: {
@@ -3568,7 +3611,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3568
3611
  name: z.ZodString;
3569
3612
  description: z.ZodOptional<z.ZodString>;
3570
3613
  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"]>>;
3614
+ 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
3615
  linkedEntity: z.ZodOptional<z.ZodString>;
3573
3616
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
3574
3617
  name: z.ZodString;
@@ -3916,7 +3959,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3916
3959
  }, "strip", z.ZodTypeAny, {
3917
3960
  name: string;
3918
3961
  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;
3962
+ 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
3963
  description?: string | undefined;
3921
3964
  linkedEntity?: string | undefined;
3922
3965
  emits?: {
@@ -4011,7 +4054,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4011
4054
  }, {
4012
4055
  name: string;
4013
4056
  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;
4057
+ 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
4058
  description?: string | undefined;
4016
4059
  linkedEntity?: string | undefined;
4017
4060
  emits?: {
@@ -5453,6 +5496,10 @@ declare function findService(services: ServiceDefinition[], name: string): Servi
5453
5496
  * Check if a service name exists (case-insensitive).
5454
5497
  */
5455
5498
  declare function hasService(services: ServiceDefinition[], name: string): boolean;
5499
+ /** Parameters passed to call-service effects. Recursive for nested request shapes. */
5500
+ interface ServiceParams {
5501
+ [key: string]: string | number | boolean | Date | null | string[] | ServiceParams | undefined;
5502
+ }
5456
5503
 
5457
5504
  /**
5458
5505
  * UseDeclaration - Import an external Orbital as a namespace.
@@ -5535,7 +5582,7 @@ declare function isEntityReference(entity: EntityRef): entity is string;
5535
5582
  declare const EntityRefStringSchema: z.ZodString;
5536
5583
  declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5537
5584
  name: z.ZodString;
5538
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
5585
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
5539
5586
  collection: z.ZodOptional<z.ZodString>;
5540
5587
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
5541
5588
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -5564,7 +5611,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5564
5611
  }>>;
5565
5612
  }, "strip", z.ZodTypeAny, {
5566
5613
  name: string;
5567
- persistence: "persistent" | "runtime" | "singleton" | "instance";
5614
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
5568
5615
  fields: EntityField[];
5569
5616
  collection?: string | undefined;
5570
5617
  instances?: Record<string, unknown>[] | undefined;
@@ -5582,7 +5629,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5582
5629
  }, {
5583
5630
  name: string;
5584
5631
  fields: EntityField[];
5585
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
5632
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5586
5633
  collection?: string | undefined;
5587
5634
  instances?: Record<string, unknown>[] | undefined;
5588
5635
  timestamps?: boolean | undefined;
@@ -6347,7 +6394,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6347
6394
  }>]>, z.ZodString]>, "many">>;
6348
6395
  entity: z.ZodUnion<[z.ZodObject<{
6349
6396
  name: z.ZodString;
6350
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
6397
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
6351
6398
  collection: z.ZodOptional<z.ZodString>;
6352
6399
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
6353
6400
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -6376,7 +6423,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6376
6423
  }>>;
6377
6424
  }, "strip", z.ZodTypeAny, {
6378
6425
  name: string;
6379
- persistence: "persistent" | "runtime" | "singleton" | "instance";
6426
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
6380
6427
  fields: EntityField[];
6381
6428
  collection?: string | undefined;
6382
6429
  instances?: Record<string, unknown>[] | undefined;
@@ -6394,7 +6441,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6394
6441
  }, {
6395
6442
  name: string;
6396
6443
  fields: EntityField[];
6397
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
6444
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
6398
6445
  collection?: string | undefined;
6399
6446
  instances?: Record<string, unknown>[] | undefined;
6400
6447
  timestamps?: boolean | undefined;
@@ -6425,7 +6472,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6425
6472
  name: z.ZodString;
6426
6473
  description: z.ZodOptional<z.ZodString>;
6427
6474
  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"]>>;
6475
+ 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
6476
  linkedEntity: z.ZodOptional<z.ZodString>;
6430
6477
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
6431
6478
  name: z.ZodString;
@@ -6773,7 +6820,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6773
6820
  }, "strip", z.ZodTypeAny, {
6774
6821
  name: string;
6775
6822
  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;
6823
+ 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
6824
  description?: string | undefined;
6778
6825
  linkedEntity?: string | undefined;
6779
6826
  emits?: {
@@ -6868,7 +6915,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6868
6915
  }, {
6869
6916
  name: string;
6870
6917
  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;
6918
+ 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
6919
  description?: string | undefined;
6873
6920
  linkedEntity?: string | undefined;
6874
6921
  emits?: {
@@ -7259,7 +7306,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7259
7306
  }, "strip", z.ZodTypeAny, {
7260
7307
  entity: string | {
7261
7308
  name: string;
7262
- persistence: "persistent" | "runtime" | "singleton" | "instance";
7309
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
7263
7310
  fields: EntityField[];
7264
7311
  collection?: string | undefined;
7265
7312
  instances?: Record<string, unknown>[] | undefined;
@@ -7279,7 +7326,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7279
7326
  traits: (string | {
7280
7327
  name: string;
7281
7328
  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;
7329
+ 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
7330
  description?: string | undefined;
7284
7331
  linkedEntity?: string | undefined;
7285
7332
  emits?: {
@@ -7517,7 +7564,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7517
7564
  entity: string | {
7518
7565
  name: string;
7519
7566
  fields: EntityField[];
7520
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
7567
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
7521
7568
  collection?: string | undefined;
7522
7569
  instances?: Record<string, unknown>[] | undefined;
7523
7570
  timestamps?: boolean | undefined;
@@ -7536,7 +7583,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7536
7583
  traits: (string | {
7537
7584
  name: string;
7538
7585
  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;
7586
+ 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
7587
  description?: string | undefined;
7541
7588
  linkedEntity?: string | undefined;
7542
7589
  emits?: {
@@ -7987,7 +8034,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
7987
8034
  }>]>, z.ZodString]>, "many">>;
7988
8035
  entity: z.ZodUnion<[z.ZodObject<{
7989
8036
  name: z.ZodString;
7990
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
8037
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
7991
8038
  collection: z.ZodOptional<z.ZodString>;
7992
8039
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
7993
8040
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -8016,7 +8063,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8016
8063
  }>>;
8017
8064
  }, "strip", z.ZodTypeAny, {
8018
8065
  name: string;
8019
- persistence: "persistent" | "runtime" | "singleton" | "instance";
8066
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
8020
8067
  fields: EntityField[];
8021
8068
  collection?: string | undefined;
8022
8069
  instances?: Record<string, unknown>[] | undefined;
@@ -8034,7 +8081,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8034
8081
  }, {
8035
8082
  name: string;
8036
8083
  fields: EntityField[];
8037
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
8084
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
8038
8085
  collection?: string | undefined;
8039
8086
  instances?: Record<string, unknown>[] | undefined;
8040
8087
  timestamps?: boolean | undefined;
@@ -8065,7 +8112,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8065
8112
  name: z.ZodString;
8066
8113
  description: z.ZodOptional<z.ZodString>;
8067
8114
  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"]>>;
8115
+ 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
8116
  linkedEntity: z.ZodOptional<z.ZodString>;
8070
8117
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
8071
8118
  name: z.ZodString;
@@ -8413,7 +8460,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8413
8460
  }, "strip", z.ZodTypeAny, {
8414
8461
  name: string;
8415
8462
  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;
8463
+ 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
8464
  description?: string | undefined;
8418
8465
  linkedEntity?: string | undefined;
8419
8466
  emits?: {
@@ -8508,7 +8555,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8508
8555
  }, {
8509
8556
  name: string;
8510
8557
  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;
8558
+ 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
8559
  description?: string | undefined;
8513
8560
  linkedEntity?: string | undefined;
8514
8561
  emits?: {
@@ -8899,7 +8946,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8899
8946
  }, "strip", z.ZodTypeAny, {
8900
8947
  entity: string | {
8901
8948
  name: string;
8902
- persistence: "persistent" | "runtime" | "singleton" | "instance";
8949
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
8903
8950
  fields: EntityField[];
8904
8951
  collection?: string | undefined;
8905
8952
  instances?: Record<string, unknown>[] | undefined;
@@ -8919,7 +8966,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8919
8966
  traits: (string | {
8920
8967
  name: string;
8921
8968
  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;
8969
+ 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
8970
  description?: string | undefined;
8924
8971
  linkedEntity?: string | undefined;
8925
8972
  emits?: {
@@ -9157,7 +9204,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
9157
9204
  entity: string | {
9158
9205
  name: string;
9159
9206
  fields: EntityField[];
9160
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
9207
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
9161
9208
  collection?: string | undefined;
9162
9209
  instances?: Record<string, unknown>[] | undefined;
9163
9210
  timestamps?: boolean | undefined;
@@ -9176,7 +9223,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
9176
9223
  traits: (string | {
9177
9224
  name: string;
9178
9225
  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;
9226
+ 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
9227
  description?: string | undefined;
9181
9228
  linkedEntity?: string | undefined;
9182
9229
  emits?: {
@@ -9634,7 +9681,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9634
9681
  }>]>, z.ZodString]>, "many">>;
9635
9682
  entity: z.ZodUnion<[z.ZodObject<{
9636
9683
  name: z.ZodString;
9637
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
9684
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
9638
9685
  collection: z.ZodOptional<z.ZodString>;
9639
9686
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
9640
9687
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -9663,7 +9710,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9663
9710
  }>>;
9664
9711
  }, "strip", z.ZodTypeAny, {
9665
9712
  name: string;
9666
- persistence: "persistent" | "runtime" | "singleton" | "instance";
9713
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
9667
9714
  fields: EntityField[];
9668
9715
  collection?: string | undefined;
9669
9716
  instances?: Record<string, unknown>[] | undefined;
@@ -9681,7 +9728,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9681
9728
  }, {
9682
9729
  name: string;
9683
9730
  fields: EntityField[];
9684
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
9731
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
9685
9732
  collection?: string | undefined;
9686
9733
  instances?: Record<string, unknown>[] | undefined;
9687
9734
  timestamps?: boolean | undefined;
@@ -9712,7 +9759,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9712
9759
  name: z.ZodString;
9713
9760
  description: z.ZodOptional<z.ZodString>;
9714
9761
  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"]>>;
9762
+ 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
9763
  linkedEntity: z.ZodOptional<z.ZodString>;
9717
9764
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
9718
9765
  name: z.ZodString;
@@ -10060,7 +10107,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10060
10107
  }, "strip", z.ZodTypeAny, {
10061
10108
  name: string;
10062
10109
  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;
10110
+ 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
10111
  description?: string | undefined;
10065
10112
  linkedEntity?: string | undefined;
10066
10113
  emits?: {
@@ -10155,7 +10202,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10155
10202
  }, {
10156
10203
  name: string;
10157
10204
  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;
10205
+ 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
10206
  description?: string | undefined;
10160
10207
  linkedEntity?: string | undefined;
10161
10208
  emits?: {
@@ -10546,7 +10593,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10546
10593
  }, "strip", z.ZodTypeAny, {
10547
10594
  entity: string | {
10548
10595
  name: string;
10549
- persistence: "persistent" | "runtime" | "singleton" | "instance";
10596
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
10550
10597
  fields: EntityField[];
10551
10598
  collection?: string | undefined;
10552
10599
  instances?: Record<string, unknown>[] | undefined;
@@ -10566,7 +10613,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10566
10613
  traits: (string | {
10567
10614
  name: string;
10568
10615
  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;
10616
+ 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
10617
  description?: string | undefined;
10571
10618
  linkedEntity?: string | undefined;
10572
10619
  emits?: {
@@ -10804,7 +10851,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10804
10851
  entity: string | {
10805
10852
  name: string;
10806
10853
  fields: EntityField[];
10807
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
10854
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
10808
10855
  collection?: string | undefined;
10809
10856
  instances?: Record<string, unknown>[] | undefined;
10810
10857
  timestamps?: boolean | undefined;
@@ -10823,7 +10870,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10823
10870
  traits: (string | {
10824
10871
  name: string;
10825
10872
  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;
10873
+ 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
10874
  description?: string | undefined;
10828
10875
  linkedEntity?: string | undefined;
10829
10876
  emits?: {
@@ -11522,7 +11569,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11522
11569
  }>]>, z.ZodString]>, "many">>;
11523
11570
  entity: z.ZodUnion<[z.ZodObject<{
11524
11571
  name: z.ZodString;
11525
- persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance"]>>;
11572
+ persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
11526
11573
  collection: z.ZodOptional<z.ZodString>;
11527
11574
  fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">;
11528
11575
  instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
@@ -11551,7 +11598,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11551
11598
  }>>;
11552
11599
  }, "strip", z.ZodTypeAny, {
11553
11600
  name: string;
11554
- persistence: "persistent" | "runtime" | "singleton" | "instance";
11601
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
11555
11602
  fields: EntityField[];
11556
11603
  collection?: string | undefined;
11557
11604
  instances?: Record<string, unknown>[] | undefined;
@@ -11569,7 +11616,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11569
11616
  }, {
11570
11617
  name: string;
11571
11618
  fields: EntityField[];
11572
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
11619
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
11573
11620
  collection?: string | undefined;
11574
11621
  instances?: Record<string, unknown>[] | undefined;
11575
11622
  timestamps?: boolean | undefined;
@@ -11600,7 +11647,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11600
11647
  name: z.ZodString;
11601
11648
  description: z.ZodOptional<z.ZodString>;
11602
11649
  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"]>>;
11650
+ 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
11651
  linkedEntity: z.ZodOptional<z.ZodString>;
11605
11652
  requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
11606
11653
  name: z.ZodString;
@@ -11948,7 +11995,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11948
11995
  }, "strip", z.ZodTypeAny, {
11949
11996
  name: string;
11950
11997
  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;
11998
+ 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
11999
  description?: string | undefined;
11953
12000
  linkedEntity?: string | undefined;
11954
12001
  emits?: {
@@ -12043,7 +12090,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12043
12090
  }, {
12044
12091
  name: string;
12045
12092
  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;
12093
+ 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
12094
  description?: string | undefined;
12048
12095
  linkedEntity?: string | undefined;
12049
12096
  emits?: {
@@ -12434,7 +12481,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12434
12481
  }, "strip", z.ZodTypeAny, {
12435
12482
  entity: string | {
12436
12483
  name: string;
12437
- persistence: "persistent" | "runtime" | "singleton" | "instance";
12484
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
12438
12485
  fields: EntityField[];
12439
12486
  collection?: string | undefined;
12440
12487
  instances?: Record<string, unknown>[] | undefined;
@@ -12454,7 +12501,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12454
12501
  traits: (string | {
12455
12502
  name: string;
12456
12503
  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;
12504
+ 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
12505
  description?: string | undefined;
12459
12506
  linkedEntity?: string | undefined;
12460
12507
  emits?: {
@@ -12692,7 +12739,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12692
12739
  entity: string | {
12693
12740
  name: string;
12694
12741
  fields: EntityField[];
12695
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
12742
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
12696
12743
  collection?: string | undefined;
12697
12744
  instances?: Record<string, unknown>[] | undefined;
12698
12745
  timestamps?: boolean | undefined;
@@ -12711,7 +12758,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12711
12758
  traits: (string | {
12712
12759
  name: string;
12713
12760
  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;
12761
+ 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
12762
  description?: string | undefined;
12716
12763
  linkedEntity?: string | undefined;
12717
12764
  emits?: {
@@ -13126,7 +13173,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13126
13173
  orbitals: {
13127
13174
  entity: string | {
13128
13175
  name: string;
13129
- persistence: "persistent" | "runtime" | "singleton" | "instance";
13176
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
13130
13177
  fields: EntityField[];
13131
13178
  collection?: string | undefined;
13132
13179
  instances?: Record<string, unknown>[] | undefined;
@@ -13146,7 +13193,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13146
13193
  traits: (string | {
13147
13194
  name: string;
13148
13195
  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;
13196
+ 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
13197
  description?: string | undefined;
13151
13198
  linkedEntity?: string | undefined;
13152
13199
  emits?: {
@@ -13473,7 +13520,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13473
13520
  entity: string | {
13474
13521
  name: string;
13475
13522
  fields: EntityField[];
13476
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
13523
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
13477
13524
  collection?: string | undefined;
13478
13525
  instances?: Record<string, unknown>[] | undefined;
13479
13526
  timestamps?: boolean | undefined;
@@ -13492,7 +13539,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13492
13539
  traits: (string | {
13493
13540
  name: string;
13494
13541
  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;
13542
+ 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
13543
  description?: string | undefined;
13497
13544
  linkedEntity?: string | undefined;
13498
13545
  emits?: {
@@ -13866,7 +13913,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
13866
13913
  entity: string | {
13867
13914
  name: string;
13868
13915
  fields: EntityField[];
13869
- persistence?: "persistent" | "runtime" | "singleton" | "instance" | undefined;
13916
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
13870
13917
  collection?: string | undefined;
13871
13918
  instances?: Record<string, unknown>[] | undefined;
13872
13919
  timestamps?: boolean | undefined;
@@ -13885,7 +13932,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
13885
13932
  traits: (string | {
13886
13933
  name: string;
13887
13934
  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;
13935
+ 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
13936
  description?: string | undefined;
13890
13937
  linkedEntity?: string | undefined;
13891
13938
  emits?: {
@@ -14211,7 +14258,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14211
14258
  orbitals: {
14212
14259
  entity: string | {
14213
14260
  name: string;
14214
- persistence: "persistent" | "runtime" | "singleton" | "instance";
14261
+ persistence: "persistent" | "runtime" | "singleton" | "instance" | "local";
14215
14262
  fields: EntityField[];
14216
14263
  collection?: string | undefined;
14217
14264
  instances?: Record<string, unknown>[] | undefined;
@@ -14231,7 +14278,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14231
14278
  traits: (string | {
14232
14279
  name: string;
14233
14280
  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;
14281
+ 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
14282
  description?: string | undefined;
14236
14283
  linkedEntity?: string | undefined;
14237
14284
  emits?: {
@@ -14556,4 +14603,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14556
14603
  type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
14557
14604
  type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
14558
14605
 
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 };
14606
+ export { type Effect as $, AGENT_DOMAIN_CATEGORIES as A, type CustomPatternDefinitionInput as B, CORE_BINDINGS as C, CustomPatternDefinitionSchema as D, type EntityField as E, type CustomPatternMap as F, type CustomPatternMapInput as G, CustomPatternMapSchema as H, type DerefEffect as I, type DesignPreferences as J, type DesignPreferencesInput as K, DesignPreferencesSchema as L, type DesignTokens as M, type DesignTokensInput as N, type OrbitalDefinition as O, type Page as P, DesignTokensSchema as Q, type DomainCategory as R, type State as S, type TraitEventContract as T, DomainCategorySchema as U, type DomainContext as V, type DomainContextInput as W, DomainContextSchema as X, type DomainVocabulary as Y, DomainVocabularySchema as Z, ENTITY_ROLES as _, type EntityPersistence as a, type OrbitalPageInput as a$, type EffectInput as a0, EffectSchema as a1, type EntityData as a2, type EntityFieldInput as a3, EntityFieldSchema as a4, EntityPersistenceSchema as a5, type EntityRef as a6, EntityRefSchema as a7, EntityRefStringSchema as a8, type EntityRole 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_, EntityRoleSchema as aa, type EntityRow 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 OrbitalSchema as b, StateSchema 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, type RestServiceDef as bA, RestServiceDefSchema as bB, SERVICE_TYPES as bC, type SExpr as bD, type SExprAtom as bE, SExprAtomSchema as bF, type SExprInput as bG, SExprSchema as bH, type SemanticAssetRef as bI, type SemanticAssetRefInput as bJ, SemanticAssetRefSchema as bK, type ServiceDefinition as bL, ServiceDefinitionSchema as bM, type ServiceParams as bN, type ServiceRef as bO, ServiceRefSchema as bP, ServiceRefStringSchema as bQ, type ServiceType as bR, ServiceTypeSchema as bS, type SocketEvents as bT, SocketEventsSchema as bU, type SocketServiceDef as bV, SocketServiceDefSchema as bW, type StateInput as bX, type StateMachine as bY, type StateMachineInput as bZ, StateMachineSchema 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 RestAuthConfig as by, RestAuthConfigSchema as bz, type Trait as c, getArgs as c$, type StateSemanticRole as c0, StateSemanticRoleSchema as c1, type SuggestedGuard as c2, SuggestedGuardSchema as c3, type SwapEffect as c4, type ThemeDefinition as c5, ThemeDefinitionSchema as c6, type ThemeRef as c7, ThemeRefSchema as c8, ThemeRefStringSchema as c9, type UISlot as cA, UISlotSchema as cB, UI_SLOTS as cC, type UXHints as cD, UXHintsSchema as cE, type UseDeclaration as cF, UseDeclarationSchema as cG, type UserPersona as cH, type UserPersonaInput as cI, UserPersonaSchema as cJ, VISUAL_STYLES as cK, type ViewType as cL, ViewTypeSchema as cM, type VisualStyle as cN, VisualStyleSchema as cO, type WatchEffect as cP, type WatchOptions as cQ, atomic as cR, callService as cS, collectBindings as cT, createAssetKey as cU, deref as cV, deriveCollection as cW, despawn as cX, doEffects as cY, emit as cZ, findService as c_, type ThemeTokens as ca, ThemeTokensSchema as cb, type ThemeVariant as cc, ThemeVariantSchema as cd, type TraitCategory as ce, TraitCategorySchema as cf, type TraitDataEntity as cg, TraitDataEntitySchema as ch, type TraitEntityField as ci, TraitEntityFieldSchema as cj, TraitEventContractSchema as ck, type TraitEventListener as cl, TraitEventListenerSchema as cm, type TraitInput as cn, type TraitRef as co, TraitRefSchema as cp, type TraitReference as cq, type TraitReferenceInput as cr, TraitReferenceSchema as cs, TraitSchema as ct, type TraitTick as cu, TraitTickSchema as cv, type TraitUIBinding as cw, type Transition as cx, type TransitionInput as cy, TransitionSchema as cz, type Entity as d, getDefaultAnimationsForRole as d0, getOperator as d1, getServiceNames as d2, getTraitConfig as d3, getTraitName as d4, hasService as d5, isBinding as d6, isCircuitEvent as d7, isEffect as d8, isEntityReference as d9, parseOrbitalSchema as dA, parsePageRef as dB, parseServiceRef as dC, persist as dD, ref as dE, renderUI as dF, safeParseOrbitalSchema as dG, set as dH, sexpr as dI, spawn as dJ, swap as dK, validateAssetAnimations as dL, walkSExpr as dM, watch as dN, isImportedTraitRef as da, isInlineTrait as db, isMcpService as dc, isOrbitalDefinition as dd, isPageReference as de, isPageReferenceObject as df, isPageReferenceString as dg, isRestService as dh, isRuntimeEntity as di, isSExpr as dj, isSExprAtom as dk, isSExprCall as dl, isSExprEffect as dm, isServiceReference as dn, isSingletonEntity as dp, isSocketService as dq, isThemeReference as dr, isValidBinding as ds, navigate as dt, normalizeTraitRef as du, notify as dv, parseAssetKey as dw, parseBinding as dx, parseEntityRef as dy, parseImportedTraitRef as dz, ALLOWED_CUSTOM_COMPONENTS as e, type AgentDomainCategory as f, AgentDomainCategorySchema as g, type AgentEffect as h, type AllowedCustomComponent as i, type AnimationDef as j, type AnimationDefInput as k, AnimationDefSchema as l, type AssetMap as m, type AssetMapInput as n, AssetMapSchema as o, type AssetMapping as p, type AssetMappingInput as q, AssetMappingSchema as r, type AtomicEffect as s, type CallServiceConfig as t, type ComputedEventContract as u, ComputedEventContractSchema as v, type ComputedEventListener as w, ComputedEventListenerSchema as x, type CoreBinding as y, type CustomPatternDefinition as z };