@almadar/core 2.9.0 → 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?: {
@@ -4241,7 +4284,7 @@ declare const DomainContextSchema: z.ZodObject<{
4241
4284
  }>, "many">>;
4242
4285
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
4243
4286
  }, "strip", z.ZodTypeAny, {
4244
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
4287
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
4245
4288
  request: string;
4246
4289
  requestFragment?: string | undefined;
4247
4290
  subDomain?: string | undefined;
@@ -4252,7 +4295,7 @@ declare const DomainContextSchema: z.ZodObject<{
4252
4295
  }[] | undefined;
4253
4296
  vocabulary?: Record<string, string> | undefined;
4254
4297
  }, {
4255
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
4298
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
4256
4299
  request: string;
4257
4300
  requestFragment?: string | undefined;
4258
4301
  subDomain?: string | undefined;
@@ -4767,13 +4810,13 @@ declare const CustomPatternDefinitionSchema: z.ZodObject<{
4767
4810
  props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4768
4811
  }, "strip", z.ZodTypeAny, {
4769
4812
  type: "custom";
4770
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
4813
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
4771
4814
  className: string;
4772
4815
  slots?: string[] | undefined;
4773
4816
  props?: string[] | undefined;
4774
4817
  }, {
4775
4818
  type: "custom";
4776
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
4819
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
4777
4820
  className: string;
4778
4821
  slots?: string[] | undefined;
4779
4822
  props?: string[] | undefined;
@@ -4790,13 +4833,13 @@ declare const CustomPatternMapSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.Z
4790
4833
  props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4791
4834
  }, "strip", z.ZodTypeAny, {
4792
4835
  type: "custom";
4793
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
4836
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
4794
4837
  className: string;
4795
4838
  slots?: string[] | undefined;
4796
4839
  props?: string[] | undefined;
4797
4840
  }, {
4798
4841
  type: "custom";
4799
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
4842
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
4800
4843
  className: string;
4801
4844
  slots?: string[] | undefined;
4802
4845
  props?: string[] | undefined;
@@ -4916,26 +4959,26 @@ declare const RestServiceDefSchema: z.ZodObject<{
4916
4959
  name: string;
4917
4960
  baseUrl: string;
4918
4961
  description?: string | undefined;
4919
- headers?: Record<string, string> | undefined;
4920
4962
  auth?: {
4921
4963
  type: "api-key" | "bearer" | "basic" | "oauth2";
4922
4964
  keyName?: string | undefined;
4923
4965
  location?: "header" | "query" | undefined;
4924
4966
  secretEnv?: string | undefined;
4925
4967
  } | undefined;
4968
+ headers?: Record<string, string> | undefined;
4926
4969
  timeout?: number | undefined;
4927
4970
  }, {
4928
4971
  type: "rest";
4929
4972
  name: string;
4930
4973
  baseUrl: string;
4931
4974
  description?: string | undefined;
4932
- headers?: Record<string, string> | undefined;
4933
4975
  auth?: {
4934
4976
  type: "api-key" | "bearer" | "basic" | "oauth2";
4935
4977
  keyName?: string | undefined;
4936
4978
  location?: "header" | "query" | undefined;
4937
4979
  secretEnv?: string | undefined;
4938
4980
  } | undefined;
4981
+ headers?: Record<string, string> | undefined;
4939
4982
  timeout?: number | undefined;
4940
4983
  }>;
4941
4984
  /**
@@ -5132,26 +5175,26 @@ declare const ServiceDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
5132
5175
  name: string;
5133
5176
  baseUrl: string;
5134
5177
  description?: string | undefined;
5135
- headers?: Record<string, string> | undefined;
5136
5178
  auth?: {
5137
5179
  type: "api-key" | "bearer" | "basic" | "oauth2";
5138
5180
  keyName?: string | undefined;
5139
5181
  location?: "header" | "query" | undefined;
5140
5182
  secretEnv?: string | undefined;
5141
5183
  } | undefined;
5184
+ headers?: Record<string, string> | undefined;
5142
5185
  timeout?: number | undefined;
5143
5186
  }, {
5144
5187
  type: "rest";
5145
5188
  name: string;
5146
5189
  baseUrl: string;
5147
5190
  description?: string | undefined;
5148
- headers?: Record<string, string> | undefined;
5149
5191
  auth?: {
5150
5192
  type: "api-key" | "bearer" | "basic" | "oauth2";
5151
5193
  keyName?: string | undefined;
5152
5194
  location?: "header" | "query" | undefined;
5153
5195
  secretEnv?: string | undefined;
5154
5196
  } | undefined;
5197
+ headers?: Record<string, string> | undefined;
5155
5198
  timeout?: number | undefined;
5156
5199
  }>, z.ZodObject<{
5157
5200
  name: z.ZodString;
@@ -5283,26 +5326,26 @@ declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.Z
5283
5326
  name: string;
5284
5327
  baseUrl: string;
5285
5328
  description?: string | undefined;
5286
- headers?: Record<string, string> | undefined;
5287
5329
  auth?: {
5288
5330
  type: "api-key" | "bearer" | "basic" | "oauth2";
5289
5331
  keyName?: string | undefined;
5290
5332
  location?: "header" | "query" | undefined;
5291
5333
  secretEnv?: string | undefined;
5292
5334
  } | undefined;
5335
+ headers?: Record<string, string> | undefined;
5293
5336
  timeout?: number | undefined;
5294
5337
  }, {
5295
5338
  type: "rest";
5296
5339
  name: string;
5297
5340
  baseUrl: string;
5298
5341
  description?: string | undefined;
5299
- headers?: Record<string, string> | undefined;
5300
5342
  auth?: {
5301
5343
  type: "api-key" | "bearer" | "basic" | "oauth2";
5302
5344
  keyName?: string | undefined;
5303
5345
  location?: "header" | "query" | undefined;
5304
5346
  secretEnv?: string | undefined;
5305
5347
  } | undefined;
5348
+ headers?: Record<string, string> | undefined;
5306
5349
  timeout?: number | undefined;
5307
5350
  }>, z.ZodObject<{
5308
5351
  name: z.ZodString;
@@ -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;
@@ -6246,26 +6293,26 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
6246
6293
  name: string;
6247
6294
  baseUrl: string;
6248
6295
  description?: string | undefined;
6249
- headers?: Record<string, string> | undefined;
6250
6296
  auth?: {
6251
6297
  type: "api-key" | "bearer" | "basic" | "oauth2";
6252
6298
  keyName?: string | undefined;
6253
6299
  location?: "header" | "query" | undefined;
6254
6300
  secretEnv?: string | undefined;
6255
6301
  } | undefined;
6302
+ headers?: Record<string, string> | undefined;
6256
6303
  timeout?: number | undefined;
6257
6304
  }, {
6258
6305
  type: "rest";
6259
6306
  name: string;
6260
6307
  baseUrl: string;
6261
6308
  description?: string | undefined;
6262
- headers?: Record<string, string> | undefined;
6263
6309
  auth?: {
6264
6310
  type: "api-key" | "bearer" | "basic" | "oauth2";
6265
6311
  keyName?: string | undefined;
6266
6312
  location?: "header" | "query" | undefined;
6267
6313
  secretEnv?: string | undefined;
6268
6314
  } | undefined;
6315
+ headers?: Record<string, string> | undefined;
6269
6316
  timeout?: number | undefined;
6270
6317
  }>, z.ZodObject<{
6271
6318
  name: z.ZodString;
@@ -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?: {
@@ -7144,7 +7191,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7144
7191
  }>, "many">>;
7145
7192
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
7146
7193
  }, "strip", z.ZodTypeAny, {
7147
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
7194
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
7148
7195
  request: string;
7149
7196
  requestFragment?: string | undefined;
7150
7197
  subDomain?: string | undefined;
@@ -7155,7 +7202,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7155
7202
  }[] | undefined;
7156
7203
  vocabulary?: Record<string, string> | undefined;
7157
7204
  }, {
7158
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
7205
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
7159
7206
  request: string;
7160
7207
  requestFragment?: string | undefined;
7161
7208
  subDomain?: string | undefined;
@@ -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?: {
@@ -7394,6 +7441,23 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7394
7441
  })[];
7395
7442
  description?: string | undefined;
7396
7443
  visual_prompt?: string | undefined;
7444
+ theme?: string | {
7445
+ name: string;
7446
+ tokens: {
7447
+ typography?: Record<string, string> | undefined;
7448
+ colors?: Record<string, string> | undefined;
7449
+ radii?: Record<string, string> | undefined;
7450
+ spacing?: Record<string, string> | undefined;
7451
+ shadows?: Record<string, string> | undefined;
7452
+ };
7453
+ variants?: Record<string, {
7454
+ typography?: Record<string, string> | undefined;
7455
+ colors?: Record<string, string> | undefined;
7456
+ radii?: Record<string, string> | undefined;
7457
+ spacing?: Record<string, string> | undefined;
7458
+ shadows?: Record<string, string> | undefined;
7459
+ }> | undefined;
7460
+ } | undefined;
7397
7461
  emits?: {
7398
7462
  event: string;
7399
7463
  originalEvent: string;
@@ -7426,35 +7490,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7426
7490
  from: string;
7427
7491
  as: string;
7428
7492
  }[] | undefined;
7429
- theme?: string | {
7430
- name: string;
7431
- tokens: {
7432
- typography?: Record<string, string> | undefined;
7433
- colors?: Record<string, string> | undefined;
7434
- radii?: Record<string, string> | undefined;
7435
- spacing?: Record<string, string> | undefined;
7436
- shadows?: Record<string, string> | undefined;
7437
- };
7438
- variants?: Record<string, {
7439
- typography?: Record<string, string> | undefined;
7440
- colors?: Record<string, string> | undefined;
7441
- radii?: Record<string, string> | undefined;
7442
- spacing?: Record<string, string> | undefined;
7443
- shadows?: Record<string, string> | undefined;
7444
- }> | undefined;
7445
- } | undefined;
7446
7493
  services?: (string | {
7447
7494
  type: "rest";
7448
7495
  name: string;
7449
7496
  baseUrl: string;
7450
7497
  description?: string | undefined;
7451
- headers?: Record<string, string> | undefined;
7452
7498
  auth?: {
7453
7499
  type: "api-key" | "bearer" | "basic" | "oauth2";
7454
7500
  keyName?: string | undefined;
7455
7501
  location?: "header" | "query" | undefined;
7456
7502
  secretEnv?: string | undefined;
7457
7503
  } | undefined;
7504
+ headers?: Record<string, string> | undefined;
7458
7505
  timeout?: number | undefined;
7459
7506
  } | {
7460
7507
  type: "socket";
@@ -7480,7 +7527,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7480
7527
  })[] | undefined;
7481
7528
  exposes?: string[] | undefined;
7482
7529
  domainContext?: {
7483
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
7530
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
7484
7531
  request: string;
7485
7532
  requestFragment?: string | undefined;
7486
7533
  subDomain?: string | undefined;
@@ -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?: {
@@ -7651,6 +7698,23 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7651
7698
  })[];
7652
7699
  description?: string | undefined;
7653
7700
  visual_prompt?: string | undefined;
7701
+ theme?: string | {
7702
+ name: string;
7703
+ tokens: {
7704
+ typography?: Record<string, string> | undefined;
7705
+ colors?: Record<string, string> | undefined;
7706
+ radii?: Record<string, string> | undefined;
7707
+ spacing?: Record<string, string> | undefined;
7708
+ shadows?: Record<string, string> | undefined;
7709
+ };
7710
+ variants?: Record<string, {
7711
+ typography?: Record<string, string> | undefined;
7712
+ colors?: Record<string, string> | undefined;
7713
+ radii?: Record<string, string> | undefined;
7714
+ spacing?: Record<string, string> | undefined;
7715
+ shadows?: Record<string, string> | undefined;
7716
+ }> | undefined;
7717
+ } | undefined;
7654
7718
  emits?: {
7655
7719
  event: string;
7656
7720
  originalEvent: string;
@@ -7683,35 +7747,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7683
7747
  from: string;
7684
7748
  as: string;
7685
7749
  }[] | undefined;
7686
- theme?: string | {
7687
- name: string;
7688
- tokens: {
7689
- typography?: Record<string, string> | undefined;
7690
- colors?: Record<string, string> | undefined;
7691
- radii?: Record<string, string> | undefined;
7692
- spacing?: Record<string, string> | undefined;
7693
- shadows?: Record<string, string> | undefined;
7694
- };
7695
- variants?: Record<string, {
7696
- typography?: Record<string, string> | undefined;
7697
- colors?: Record<string, string> | undefined;
7698
- radii?: Record<string, string> | undefined;
7699
- spacing?: Record<string, string> | undefined;
7700
- shadows?: Record<string, string> | undefined;
7701
- }> | undefined;
7702
- } | undefined;
7703
7750
  services?: (string | {
7704
7751
  type: "rest";
7705
7752
  name: string;
7706
7753
  baseUrl: string;
7707
7754
  description?: string | undefined;
7708
- headers?: Record<string, string> | undefined;
7709
7755
  auth?: {
7710
7756
  type: "api-key" | "bearer" | "basic" | "oauth2";
7711
7757
  keyName?: string | undefined;
7712
7758
  location?: "header" | "query" | undefined;
7713
7759
  secretEnv?: string | undefined;
7714
7760
  } | undefined;
7761
+ headers?: Record<string, string> | undefined;
7715
7762
  timeout?: number | undefined;
7716
7763
  } | {
7717
7764
  type: "socket";
@@ -7737,7 +7784,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
7737
7784
  })[] | undefined;
7738
7785
  exposes?: string[] | undefined;
7739
7786
  domainContext?: {
7740
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
7787
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
7741
7788
  request: string;
7742
7789
  requestFragment?: string | undefined;
7743
7790
  subDomain?: string | undefined;
@@ -7886,26 +7933,26 @@ declare const OrbitalSchema$1: z.ZodObject<{
7886
7933
  name: string;
7887
7934
  baseUrl: string;
7888
7935
  description?: string | undefined;
7889
- headers?: Record<string, string> | undefined;
7890
7936
  auth?: {
7891
7937
  type: "api-key" | "bearer" | "basic" | "oauth2";
7892
7938
  keyName?: string | undefined;
7893
7939
  location?: "header" | "query" | undefined;
7894
7940
  secretEnv?: string | undefined;
7895
7941
  } | undefined;
7942
+ headers?: Record<string, string> | undefined;
7896
7943
  timeout?: number | undefined;
7897
7944
  }, {
7898
7945
  type: "rest";
7899
7946
  name: string;
7900
7947
  baseUrl: string;
7901
7948
  description?: string | undefined;
7902
- headers?: Record<string, string> | undefined;
7903
7949
  auth?: {
7904
7950
  type: "api-key" | "bearer" | "basic" | "oauth2";
7905
7951
  keyName?: string | undefined;
7906
7952
  location?: "header" | "query" | undefined;
7907
7953
  secretEnv?: string | undefined;
7908
7954
  } | undefined;
7955
+ headers?: Record<string, string> | undefined;
7909
7956
  timeout?: number | undefined;
7910
7957
  }>, z.ZodObject<{
7911
7958
  name: z.ZodString;
@@ -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?: {
@@ -8784,7 +8831,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8784
8831
  }>, "many">>;
8785
8832
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
8786
8833
  }, "strip", z.ZodTypeAny, {
8787
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
8834
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
8788
8835
  request: string;
8789
8836
  requestFragment?: string | undefined;
8790
8837
  subDomain?: string | undefined;
@@ -8795,7 +8842,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
8795
8842
  }[] | undefined;
8796
8843
  vocabulary?: Record<string, string> | undefined;
8797
8844
  }, {
8798
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
8845
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
8799
8846
  request: string;
8800
8847
  requestFragment?: string | undefined;
8801
8848
  subDomain?: string | undefined;
@@ -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?: {
@@ -9034,6 +9081,23 @@ declare const OrbitalSchema$1: z.ZodObject<{
9034
9081
  })[];
9035
9082
  description?: string | undefined;
9036
9083
  visual_prompt?: string | undefined;
9084
+ theme?: string | {
9085
+ name: string;
9086
+ tokens: {
9087
+ typography?: Record<string, string> | undefined;
9088
+ colors?: Record<string, string> | undefined;
9089
+ radii?: Record<string, string> | undefined;
9090
+ spacing?: Record<string, string> | undefined;
9091
+ shadows?: Record<string, string> | undefined;
9092
+ };
9093
+ variants?: Record<string, {
9094
+ typography?: Record<string, string> | undefined;
9095
+ colors?: Record<string, string> | undefined;
9096
+ radii?: Record<string, string> | undefined;
9097
+ spacing?: Record<string, string> | undefined;
9098
+ shadows?: Record<string, string> | undefined;
9099
+ }> | undefined;
9100
+ } | undefined;
9037
9101
  emits?: {
9038
9102
  event: string;
9039
9103
  originalEvent: string;
@@ -9066,35 +9130,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
9066
9130
  from: string;
9067
9131
  as: string;
9068
9132
  }[] | undefined;
9069
- theme?: string | {
9070
- name: string;
9071
- tokens: {
9072
- typography?: Record<string, string> | undefined;
9073
- colors?: Record<string, string> | undefined;
9074
- radii?: Record<string, string> | undefined;
9075
- spacing?: Record<string, string> | undefined;
9076
- shadows?: Record<string, string> | undefined;
9077
- };
9078
- variants?: Record<string, {
9079
- typography?: Record<string, string> | undefined;
9080
- colors?: Record<string, string> | undefined;
9081
- radii?: Record<string, string> | undefined;
9082
- spacing?: Record<string, string> | undefined;
9083
- shadows?: Record<string, string> | undefined;
9084
- }> | undefined;
9085
- } | undefined;
9086
9133
  services?: (string | {
9087
9134
  type: "rest";
9088
9135
  name: string;
9089
9136
  baseUrl: string;
9090
9137
  description?: string | undefined;
9091
- headers?: Record<string, string> | undefined;
9092
9138
  auth?: {
9093
9139
  type: "api-key" | "bearer" | "basic" | "oauth2";
9094
9140
  keyName?: string | undefined;
9095
9141
  location?: "header" | "query" | undefined;
9096
9142
  secretEnv?: string | undefined;
9097
9143
  } | undefined;
9144
+ headers?: Record<string, string> | undefined;
9098
9145
  timeout?: number | undefined;
9099
9146
  } | {
9100
9147
  type: "socket";
@@ -9120,7 +9167,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
9120
9167
  })[] | undefined;
9121
9168
  exposes?: string[] | undefined;
9122
9169
  domainContext?: {
9123
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
9170
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
9124
9171
  request: string;
9125
9172
  requestFragment?: string | undefined;
9126
9173
  subDomain?: string | undefined;
@@ -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?: {
@@ -9291,6 +9338,23 @@ declare const OrbitalSchema$1: z.ZodObject<{
9291
9338
  })[];
9292
9339
  description?: string | undefined;
9293
9340
  visual_prompt?: string | undefined;
9341
+ theme?: string | {
9342
+ name: string;
9343
+ tokens: {
9344
+ typography?: Record<string, string> | undefined;
9345
+ colors?: Record<string, string> | undefined;
9346
+ radii?: Record<string, string> | undefined;
9347
+ spacing?: Record<string, string> | undefined;
9348
+ shadows?: Record<string, string> | undefined;
9349
+ };
9350
+ variants?: Record<string, {
9351
+ typography?: Record<string, string> | undefined;
9352
+ colors?: Record<string, string> | undefined;
9353
+ radii?: Record<string, string> | undefined;
9354
+ spacing?: Record<string, string> | undefined;
9355
+ shadows?: Record<string, string> | undefined;
9356
+ }> | undefined;
9357
+ } | undefined;
9294
9358
  emits?: {
9295
9359
  event: string;
9296
9360
  originalEvent: string;
@@ -9323,35 +9387,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
9323
9387
  from: string;
9324
9388
  as: string;
9325
9389
  }[] | undefined;
9326
- theme?: string | {
9327
- name: string;
9328
- tokens: {
9329
- typography?: Record<string, string> | undefined;
9330
- colors?: Record<string, string> | undefined;
9331
- radii?: Record<string, string> | undefined;
9332
- spacing?: Record<string, string> | undefined;
9333
- shadows?: Record<string, string> | undefined;
9334
- };
9335
- variants?: Record<string, {
9336
- typography?: Record<string, string> | undefined;
9337
- colors?: Record<string, string> | undefined;
9338
- radii?: Record<string, string> | undefined;
9339
- spacing?: Record<string, string> | undefined;
9340
- shadows?: Record<string, string> | undefined;
9341
- }> | undefined;
9342
- } | undefined;
9343
9390
  services?: (string | {
9344
9391
  type: "rest";
9345
9392
  name: string;
9346
9393
  baseUrl: string;
9347
9394
  description?: string | undefined;
9348
- headers?: Record<string, string> | undefined;
9349
9395
  auth?: {
9350
9396
  type: "api-key" | "bearer" | "basic" | "oauth2";
9351
9397
  keyName?: string | undefined;
9352
9398
  location?: "header" | "query" | undefined;
9353
9399
  secretEnv?: string | undefined;
9354
9400
  } | undefined;
9401
+ headers?: Record<string, string> | undefined;
9355
9402
  timeout?: number | undefined;
9356
9403
  } | {
9357
9404
  type: "socket";
@@ -9377,7 +9424,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
9377
9424
  })[] | undefined;
9378
9425
  exposes?: string[] | undefined;
9379
9426
  domainContext?: {
9380
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
9427
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
9381
9428
  request: string;
9382
9429
  requestFragment?: string | undefined;
9383
9430
  subDomain?: string | undefined;
@@ -9533,26 +9580,26 @@ declare const OrbitalUnitSchema: z.ZodObject<{
9533
9580
  name: string;
9534
9581
  baseUrl: string;
9535
9582
  description?: string | undefined;
9536
- headers?: Record<string, string> | undefined;
9537
9583
  auth?: {
9538
9584
  type: "api-key" | "bearer" | "basic" | "oauth2";
9539
9585
  keyName?: string | undefined;
9540
9586
  location?: "header" | "query" | undefined;
9541
9587
  secretEnv?: string | undefined;
9542
9588
  } | undefined;
9589
+ headers?: Record<string, string> | undefined;
9543
9590
  timeout?: number | undefined;
9544
9591
  }, {
9545
9592
  type: "rest";
9546
9593
  name: string;
9547
9594
  baseUrl: string;
9548
9595
  description?: string | undefined;
9549
- headers?: Record<string, string> | undefined;
9550
9596
  auth?: {
9551
9597
  type: "api-key" | "bearer" | "basic" | "oauth2";
9552
9598
  keyName?: string | undefined;
9553
9599
  location?: "header" | "query" | undefined;
9554
9600
  secretEnv?: string | undefined;
9555
9601
  } | undefined;
9602
+ headers?: Record<string, string> | undefined;
9556
9603
  timeout?: number | undefined;
9557
9604
  }>, z.ZodObject<{
9558
9605
  name: z.ZodString;
@@ -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?: {
@@ -10431,7 +10478,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10431
10478
  }>, "many">>;
10432
10479
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
10433
10480
  }, "strip", z.ZodTypeAny, {
10434
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
10481
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
10435
10482
  request: string;
10436
10483
  requestFragment?: string | undefined;
10437
10484
  subDomain?: string | undefined;
@@ -10442,7 +10489,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10442
10489
  }[] | undefined;
10443
10490
  vocabulary?: Record<string, string> | undefined;
10444
10491
  }, {
10445
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
10492
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
10446
10493
  request: string;
10447
10494
  requestFragment?: string | undefined;
10448
10495
  subDomain?: string | undefined;
@@ -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?: {
@@ -10681,6 +10728,23 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10681
10728
  })[];
10682
10729
  description?: string | undefined;
10683
10730
  visual_prompt?: string | undefined;
10731
+ theme?: string | {
10732
+ name: string;
10733
+ tokens: {
10734
+ typography?: Record<string, string> | undefined;
10735
+ colors?: Record<string, string> | undefined;
10736
+ radii?: Record<string, string> | undefined;
10737
+ spacing?: Record<string, string> | undefined;
10738
+ shadows?: Record<string, string> | undefined;
10739
+ };
10740
+ variants?: Record<string, {
10741
+ typography?: Record<string, string> | undefined;
10742
+ colors?: Record<string, string> | undefined;
10743
+ radii?: Record<string, string> | undefined;
10744
+ spacing?: Record<string, string> | undefined;
10745
+ shadows?: Record<string, string> | undefined;
10746
+ }> | undefined;
10747
+ } | undefined;
10684
10748
  emits?: {
10685
10749
  event: string;
10686
10750
  originalEvent: string;
@@ -10713,35 +10777,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10713
10777
  from: string;
10714
10778
  as: string;
10715
10779
  }[] | undefined;
10716
- theme?: string | {
10717
- name: string;
10718
- tokens: {
10719
- typography?: Record<string, string> | undefined;
10720
- colors?: Record<string, string> | undefined;
10721
- radii?: Record<string, string> | undefined;
10722
- spacing?: Record<string, string> | undefined;
10723
- shadows?: Record<string, string> | undefined;
10724
- };
10725
- variants?: Record<string, {
10726
- typography?: Record<string, string> | undefined;
10727
- colors?: Record<string, string> | undefined;
10728
- radii?: Record<string, string> | undefined;
10729
- spacing?: Record<string, string> | undefined;
10730
- shadows?: Record<string, string> | undefined;
10731
- }> | undefined;
10732
- } | undefined;
10733
10780
  services?: (string | {
10734
10781
  type: "rest";
10735
10782
  name: string;
10736
10783
  baseUrl: string;
10737
10784
  description?: string | undefined;
10738
- headers?: Record<string, string> | undefined;
10739
10785
  auth?: {
10740
10786
  type: "api-key" | "bearer" | "basic" | "oauth2";
10741
10787
  keyName?: string | undefined;
10742
10788
  location?: "header" | "query" | undefined;
10743
10789
  secretEnv?: string | undefined;
10744
10790
  } | undefined;
10791
+ headers?: Record<string, string> | undefined;
10745
10792
  timeout?: number | undefined;
10746
10793
  } | {
10747
10794
  type: "socket";
@@ -10767,7 +10814,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10767
10814
  })[] | undefined;
10768
10815
  exposes?: string[] | undefined;
10769
10816
  domainContext?: {
10770
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
10817
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
10771
10818
  request: string;
10772
10819
  requestFragment?: string | undefined;
10773
10820
  subDomain?: string | undefined;
@@ -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?: {
@@ -10938,6 +10985,23 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10938
10985
  })[];
10939
10986
  description?: string | undefined;
10940
10987
  visual_prompt?: string | undefined;
10988
+ theme?: string | {
10989
+ name: string;
10990
+ tokens: {
10991
+ typography?: Record<string, string> | undefined;
10992
+ colors?: Record<string, string> | undefined;
10993
+ radii?: Record<string, string> | undefined;
10994
+ spacing?: Record<string, string> | undefined;
10995
+ shadows?: Record<string, string> | undefined;
10996
+ };
10997
+ variants?: Record<string, {
10998
+ typography?: Record<string, string> | undefined;
10999
+ colors?: Record<string, string> | undefined;
11000
+ radii?: Record<string, string> | undefined;
11001
+ spacing?: Record<string, string> | undefined;
11002
+ shadows?: Record<string, string> | undefined;
11003
+ }> | undefined;
11004
+ } | undefined;
10941
11005
  emits?: {
10942
11006
  event: string;
10943
11007
  originalEvent: string;
@@ -10970,35 +11034,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
10970
11034
  from: string;
10971
11035
  as: string;
10972
11036
  }[] | undefined;
10973
- theme?: string | {
10974
- name: string;
10975
- tokens: {
10976
- typography?: Record<string, string> | undefined;
10977
- colors?: Record<string, string> | undefined;
10978
- radii?: Record<string, string> | undefined;
10979
- spacing?: Record<string, string> | undefined;
10980
- shadows?: Record<string, string> | undefined;
10981
- };
10982
- variants?: Record<string, {
10983
- typography?: Record<string, string> | undefined;
10984
- colors?: Record<string, string> | undefined;
10985
- radii?: Record<string, string> | undefined;
10986
- spacing?: Record<string, string> | undefined;
10987
- shadows?: Record<string, string> | undefined;
10988
- }> | undefined;
10989
- } | undefined;
10990
- services?: (string | {
10991
- type: "rest";
11037
+ services?: (string | {
11038
+ type: "rest";
10992
11039
  name: string;
10993
11040
  baseUrl: string;
10994
11041
  description?: string | undefined;
10995
- headers?: Record<string, string> | undefined;
10996
11042
  auth?: {
10997
11043
  type: "api-key" | "bearer" | "basic" | "oauth2";
10998
11044
  keyName?: string | undefined;
10999
11045
  location?: "header" | "query" | undefined;
11000
11046
  secretEnv?: string | undefined;
11001
11047
  } | undefined;
11048
+ headers?: Record<string, string> | undefined;
11002
11049
  timeout?: number | undefined;
11003
11050
  } | {
11004
11051
  type: "socket";
@@ -11024,7 +11071,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
11024
11071
  })[] | undefined;
11025
11072
  exposes?: string[] | undefined;
11026
11073
  domainContext?: {
11027
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
11074
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
11028
11075
  request: string;
11029
11076
  requestFragment?: string | undefined;
11030
11077
  subDomain?: string | undefined;
@@ -11083,13 +11130,13 @@ declare const OrbitalConfigSchema: z.ZodObject<{
11083
11130
  secondary: z.ZodOptional<z.ZodString>;
11084
11131
  mode: z.ZodOptional<z.ZodEnum<["light", "dark", "system"]>>;
11085
11132
  }, "strip", z.ZodTypeAny, {
11133
+ mode?: "system" | "light" | "dark" | undefined;
11086
11134
  primary?: string | undefined;
11087
11135
  secondary?: string | undefined;
11088
- mode?: "system" | "light" | "dark" | undefined;
11089
11136
  }, {
11137
+ mode?: "system" | "light" | "dark" | undefined;
11090
11138
  primary?: string | undefined;
11091
11139
  secondary?: string | undefined;
11092
- mode?: "system" | "light" | "dark" | undefined;
11093
11140
  }>>;
11094
11141
  features: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
11095
11142
  api: z.ZodOptional<z.ZodObject<{
@@ -11104,9 +11151,9 @@ declare const OrbitalConfigSchema: z.ZodObject<{
11104
11151
  }>>;
11105
11152
  }, "strip", z.ZodTypeAny, {
11106
11153
  theme?: {
11154
+ mode?: "system" | "light" | "dark" | undefined;
11107
11155
  primary?: string | undefined;
11108
11156
  secondary?: string | undefined;
11109
- mode?: "system" | "light" | "dark" | undefined;
11110
11157
  } | undefined;
11111
11158
  features?: Record<string, boolean> | undefined;
11112
11159
  api?: {
@@ -11115,9 +11162,9 @@ declare const OrbitalConfigSchema: z.ZodObject<{
11115
11162
  } | undefined;
11116
11163
  }, {
11117
11164
  theme?: {
11165
+ mode?: "system" | "light" | "dark" | undefined;
11118
11166
  primary?: string | undefined;
11119
11167
  secondary?: string | undefined;
11120
- mode?: "system" | "light" | "dark" | undefined;
11121
11168
  } | undefined;
11122
11169
  features?: Record<string, boolean> | undefined;
11123
11170
  api?: {
@@ -11187,7 +11234,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11187
11234
  }>, "many">>;
11188
11235
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
11189
11236
  }, "strip", z.ZodTypeAny, {
11190
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
11237
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
11191
11238
  request: string;
11192
11239
  requestFragment?: string | undefined;
11193
11240
  subDomain?: string | undefined;
@@ -11198,7 +11245,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11198
11245
  }[] | undefined;
11199
11246
  vocabulary?: Record<string, string> | undefined;
11200
11247
  }, {
11201
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
11248
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
11202
11249
  request: string;
11203
11250
  requestFragment?: string | undefined;
11204
11251
  subDomain?: string | undefined;
@@ -11295,13 +11342,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11295
11342
  props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11296
11343
  }, "strip", z.ZodTypeAny, {
11297
11344
  type: "custom";
11298
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
11345
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
11299
11346
  className: string;
11300
11347
  slots?: string[] | undefined;
11301
11348
  props?: string[] | undefined;
11302
11349
  }, {
11303
11350
  type: "custom";
11304
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
11351
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
11305
11352
  className: string;
11306
11353
  slots?: string[] | undefined;
11307
11354
  props?: string[] | undefined;
@@ -11421,26 +11468,26 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
11421
11468
  name: string;
11422
11469
  baseUrl: string;
11423
11470
  description?: string | undefined;
11424
- headers?: Record<string, string> | undefined;
11425
11471
  auth?: {
11426
11472
  type: "api-key" | "bearer" | "basic" | "oauth2";
11427
11473
  keyName?: string | undefined;
11428
11474
  location?: "header" | "query" | undefined;
11429
11475
  secretEnv?: string | undefined;
11430
11476
  } | undefined;
11477
+ headers?: Record<string, string> | undefined;
11431
11478
  timeout?: number | undefined;
11432
11479
  }, {
11433
11480
  type: "rest";
11434
11481
  name: string;
11435
11482
  baseUrl: string;
11436
11483
  description?: string | undefined;
11437
- headers?: Record<string, string> | undefined;
11438
11484
  auth?: {
11439
11485
  type: "api-key" | "bearer" | "basic" | "oauth2";
11440
11486
  keyName?: string | undefined;
11441
11487
  location?: "header" | "query" | undefined;
11442
11488
  secretEnv?: string | undefined;
11443
11489
  } | undefined;
11490
+ headers?: Record<string, string> | undefined;
11444
11491
  timeout?: number | undefined;
11445
11492
  }>, z.ZodObject<{
11446
11493
  name: z.ZodString;
@@ -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?: {
@@ -12319,7 +12366,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12319
12366
  }>, "many">>;
12320
12367
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
12321
12368
  }, "strip", z.ZodTypeAny, {
12322
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
12369
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
12323
12370
  request: string;
12324
12371
  requestFragment?: string | undefined;
12325
12372
  subDomain?: string | undefined;
@@ -12330,7 +12377,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12330
12377
  }[] | undefined;
12331
12378
  vocabulary?: Record<string, string> | undefined;
12332
12379
  }, {
12333
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
12380
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
12334
12381
  request: string;
12335
12382
  requestFragment?: string | undefined;
12336
12383
  subDomain?: string | undefined;
@@ -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?: {
@@ -12569,6 +12616,23 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12569
12616
  })[];
12570
12617
  description?: string | undefined;
12571
12618
  visual_prompt?: string | undefined;
12619
+ theme?: string | {
12620
+ name: string;
12621
+ tokens: {
12622
+ typography?: Record<string, string> | undefined;
12623
+ colors?: Record<string, string> | undefined;
12624
+ radii?: Record<string, string> | undefined;
12625
+ spacing?: Record<string, string> | undefined;
12626
+ shadows?: Record<string, string> | undefined;
12627
+ };
12628
+ variants?: Record<string, {
12629
+ typography?: Record<string, string> | undefined;
12630
+ colors?: Record<string, string> | undefined;
12631
+ radii?: Record<string, string> | undefined;
12632
+ spacing?: Record<string, string> | undefined;
12633
+ shadows?: Record<string, string> | undefined;
12634
+ }> | undefined;
12635
+ } | undefined;
12572
12636
  emits?: {
12573
12637
  event: string;
12574
12638
  originalEvent: string;
@@ -12601,35 +12665,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12601
12665
  from: string;
12602
12666
  as: string;
12603
12667
  }[] | undefined;
12604
- theme?: string | {
12605
- name: string;
12606
- tokens: {
12607
- typography?: Record<string, string> | undefined;
12608
- colors?: Record<string, string> | undefined;
12609
- radii?: Record<string, string> | undefined;
12610
- spacing?: Record<string, string> | undefined;
12611
- shadows?: Record<string, string> | undefined;
12612
- };
12613
- variants?: Record<string, {
12614
- typography?: Record<string, string> | undefined;
12615
- colors?: Record<string, string> | undefined;
12616
- radii?: Record<string, string> | undefined;
12617
- spacing?: Record<string, string> | undefined;
12618
- shadows?: Record<string, string> | undefined;
12619
- }> | undefined;
12620
- } | undefined;
12621
12668
  services?: (string | {
12622
12669
  type: "rest";
12623
12670
  name: string;
12624
12671
  baseUrl: string;
12625
12672
  description?: string | undefined;
12626
- headers?: Record<string, string> | undefined;
12627
12673
  auth?: {
12628
12674
  type: "api-key" | "bearer" | "basic" | "oauth2";
12629
12675
  keyName?: string | undefined;
12630
12676
  location?: "header" | "query" | undefined;
12631
12677
  secretEnv?: string | undefined;
12632
12678
  } | undefined;
12679
+ headers?: Record<string, string> | undefined;
12633
12680
  timeout?: number | undefined;
12634
12681
  } | {
12635
12682
  type: "socket";
@@ -12655,7 +12702,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12655
12702
  })[] | undefined;
12656
12703
  exposes?: string[] | undefined;
12657
12704
  domainContext?: {
12658
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
12705
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
12659
12706
  request: string;
12660
12707
  requestFragment?: string | undefined;
12661
12708
  subDomain?: string | undefined;
@@ -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?: {
@@ -12826,6 +12873,23 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12826
12873
  })[];
12827
12874
  description?: string | undefined;
12828
12875
  visual_prompt?: string | undefined;
12876
+ theme?: string | {
12877
+ name: string;
12878
+ tokens: {
12879
+ typography?: Record<string, string> | undefined;
12880
+ colors?: Record<string, string> | undefined;
12881
+ radii?: Record<string, string> | undefined;
12882
+ spacing?: Record<string, string> | undefined;
12883
+ shadows?: Record<string, string> | undefined;
12884
+ };
12885
+ variants?: Record<string, {
12886
+ typography?: Record<string, string> | undefined;
12887
+ colors?: Record<string, string> | undefined;
12888
+ radii?: Record<string, string> | undefined;
12889
+ spacing?: Record<string, string> | undefined;
12890
+ shadows?: Record<string, string> | undefined;
12891
+ }> | undefined;
12892
+ } | undefined;
12829
12893
  emits?: {
12830
12894
  event: string;
12831
12895
  originalEvent: string;
@@ -12858,35 +12922,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12858
12922
  from: string;
12859
12923
  as: string;
12860
12924
  }[] | undefined;
12861
- theme?: string | {
12862
- name: string;
12863
- tokens: {
12864
- typography?: Record<string, string> | undefined;
12865
- colors?: Record<string, string> | undefined;
12866
- radii?: Record<string, string> | undefined;
12867
- spacing?: Record<string, string> | undefined;
12868
- shadows?: Record<string, string> | undefined;
12869
- };
12870
- variants?: Record<string, {
12871
- typography?: Record<string, string> | undefined;
12872
- colors?: Record<string, string> | undefined;
12873
- radii?: Record<string, string> | undefined;
12874
- spacing?: Record<string, string> | undefined;
12875
- shadows?: Record<string, string> | undefined;
12876
- }> | undefined;
12877
- } | undefined;
12878
12925
  services?: (string | {
12879
12926
  type: "rest";
12880
12927
  name: string;
12881
12928
  baseUrl: string;
12882
12929
  description?: string | undefined;
12883
- headers?: Record<string, string> | undefined;
12884
12930
  auth?: {
12885
12931
  type: "api-key" | "bearer" | "basic" | "oauth2";
12886
12932
  keyName?: string | undefined;
12887
12933
  location?: "header" | "query" | undefined;
12888
12934
  secretEnv?: string | undefined;
12889
12935
  } | undefined;
12936
+ headers?: Record<string, string> | undefined;
12890
12937
  timeout?: number | undefined;
12891
12938
  } | {
12892
12939
  type: "socket";
@@ -12912,7 +12959,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12912
12959
  })[] | undefined;
12913
12960
  exposes?: string[] | undefined;
12914
12961
  domainContext?: {
12915
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
12962
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
12916
12963
  request: string;
12917
12964
  requestFragment?: string | undefined;
12918
12965
  subDomain?: string | undefined;
@@ -12974,26 +13021,26 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
12974
13021
  name: string;
12975
13022
  baseUrl: string;
12976
13023
  description?: string | undefined;
12977
- headers?: Record<string, string> | undefined;
12978
13024
  auth?: {
12979
13025
  type: "api-key" | "bearer" | "basic" | "oauth2";
12980
13026
  keyName?: string | undefined;
12981
13027
  location?: "header" | "query" | undefined;
12982
13028
  secretEnv?: string | undefined;
12983
13029
  } | undefined;
13030
+ headers?: Record<string, string> | undefined;
12984
13031
  timeout?: number | undefined;
12985
13032
  }, {
12986
13033
  type: "rest";
12987
13034
  name: string;
12988
13035
  baseUrl: string;
12989
13036
  description?: string | undefined;
12990
- headers?: Record<string, string> | undefined;
12991
13037
  auth?: {
12992
13038
  type: "api-key" | "bearer" | "basic" | "oauth2";
12993
13039
  keyName?: string | undefined;
12994
13040
  location?: "header" | "query" | undefined;
12995
13041
  secretEnv?: string | undefined;
12996
13042
  } | undefined;
13043
+ headers?: Record<string, string> | undefined;
12997
13044
  timeout?: number | undefined;
12998
13045
  }>, z.ZodObject<{
12999
13046
  name: z.ZodString;
@@ -13079,13 +13126,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13079
13126
  secondary: z.ZodOptional<z.ZodString>;
13080
13127
  mode: z.ZodOptional<z.ZodEnum<["light", "dark", "system"]>>;
13081
13128
  }, "strip", z.ZodTypeAny, {
13129
+ mode?: "system" | "light" | "dark" | undefined;
13082
13130
  primary?: string | undefined;
13083
13131
  secondary?: string | undefined;
13084
- mode?: "system" | "light" | "dark" | undefined;
13085
13132
  }, {
13133
+ mode?: "system" | "light" | "dark" | undefined;
13086
13134
  primary?: string | undefined;
13087
13135
  secondary?: string | undefined;
13088
- mode?: "system" | "light" | "dark" | undefined;
13089
13136
  }>>;
13090
13137
  features: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
13091
13138
  api: z.ZodOptional<z.ZodObject<{
@@ -13100,9 +13147,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13100
13147
  }>>;
13101
13148
  }, "strip", z.ZodTypeAny, {
13102
13149
  theme?: {
13150
+ mode?: "system" | "light" | "dark" | undefined;
13103
13151
  primary?: string | undefined;
13104
13152
  secondary?: string | undefined;
13105
- mode?: "system" | "light" | "dark" | undefined;
13106
13153
  } | undefined;
13107
13154
  features?: Record<string, boolean> | undefined;
13108
13155
  api?: {
@@ -13111,9 +13158,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13111
13158
  } | undefined;
13112
13159
  }, {
13113
13160
  theme?: {
13161
+ mode?: "system" | "light" | "dark" | undefined;
13114
13162
  primary?: string | undefined;
13115
13163
  secondary?: string | undefined;
13116
- mode?: "system" | "light" | "dark" | undefined;
13117
13164
  } | undefined;
13118
13165
  features?: Record<string, boolean> | undefined;
13119
13166
  api?: {
@@ -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?: {
@@ -13261,6 +13308,23 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13261
13308
  })[];
13262
13309
  description?: string | undefined;
13263
13310
  visual_prompt?: string | undefined;
13311
+ theme?: string | {
13312
+ name: string;
13313
+ tokens: {
13314
+ typography?: Record<string, string> | undefined;
13315
+ colors?: Record<string, string> | undefined;
13316
+ radii?: Record<string, string> | undefined;
13317
+ spacing?: Record<string, string> | undefined;
13318
+ shadows?: Record<string, string> | undefined;
13319
+ };
13320
+ variants?: Record<string, {
13321
+ typography?: Record<string, string> | undefined;
13322
+ colors?: Record<string, string> | undefined;
13323
+ radii?: Record<string, string> | undefined;
13324
+ spacing?: Record<string, string> | undefined;
13325
+ shadows?: Record<string, string> | undefined;
13326
+ }> | undefined;
13327
+ } | undefined;
13264
13328
  emits?: {
13265
13329
  event: string;
13266
13330
  originalEvent: string;
@@ -13293,35 +13357,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13293
13357
  from: string;
13294
13358
  as: string;
13295
13359
  }[] | undefined;
13296
- theme?: string | {
13297
- name: string;
13298
- tokens: {
13299
- typography?: Record<string, string> | undefined;
13300
- colors?: Record<string, string> | undefined;
13301
- radii?: Record<string, string> | undefined;
13302
- spacing?: Record<string, string> | undefined;
13303
- shadows?: Record<string, string> | undefined;
13304
- };
13305
- variants?: Record<string, {
13306
- typography?: Record<string, string> | undefined;
13307
- colors?: Record<string, string> | undefined;
13308
- radii?: Record<string, string> | undefined;
13309
- spacing?: Record<string, string> | undefined;
13310
- shadows?: Record<string, string> | undefined;
13311
- }> | undefined;
13312
- } | undefined;
13313
13360
  services?: (string | {
13314
13361
  type: "rest";
13315
13362
  name: string;
13316
13363
  baseUrl: string;
13317
13364
  description?: string | undefined;
13318
- headers?: Record<string, string> | undefined;
13319
13365
  auth?: {
13320
13366
  type: "api-key" | "bearer" | "basic" | "oauth2";
13321
13367
  keyName?: string | undefined;
13322
13368
  location?: "header" | "query" | undefined;
13323
13369
  secretEnv?: string | undefined;
13324
13370
  } | undefined;
13371
+ headers?: Record<string, string> | undefined;
13325
13372
  timeout?: number | undefined;
13326
13373
  } | {
13327
13374
  type: "socket";
@@ -13347,7 +13394,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13347
13394
  })[] | undefined;
13348
13395
  exposes?: string[] | undefined;
13349
13396
  domainContext?: {
13350
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
13397
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
13351
13398
  request: string;
13352
13399
  requestFragment?: string | undefined;
13353
13400
  subDomain?: string | undefined;
@@ -13384,9 +13431,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13384
13431
  description?: string | undefined;
13385
13432
  config?: {
13386
13433
  theme?: {
13434
+ mode?: "system" | "light" | "dark" | undefined;
13387
13435
  primary?: string | undefined;
13388
13436
  secondary?: string | undefined;
13389
- mode?: "system" | "light" | "dark" | undefined;
13390
13437
  } | undefined;
13391
13438
  features?: Record<string, boolean> | undefined;
13392
13439
  api?: {
@@ -13399,13 +13446,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13399
13446
  name: string;
13400
13447
  baseUrl: string;
13401
13448
  description?: string | undefined;
13402
- headers?: Record<string, string> | undefined;
13403
13449
  auth?: {
13404
13450
  type: "api-key" | "bearer" | "basic" | "oauth2";
13405
13451
  keyName?: string | undefined;
13406
13452
  location?: "header" | "query" | undefined;
13407
13453
  secretEnv?: string | undefined;
13408
13454
  } | undefined;
13455
+ headers?: Record<string, string> | undefined;
13409
13456
  timeout?: number | undefined;
13410
13457
  } | {
13411
13458
  type: "socket";
@@ -13430,7 +13477,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13430
13477
  env?: Record<string, string> | undefined;
13431
13478
  })[] | undefined;
13432
13479
  domainContext?: {
13433
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
13480
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
13434
13481
  request: string;
13435
13482
  requestFragment?: string | undefined;
13436
13483
  subDomain?: string | undefined;
@@ -13462,7 +13509,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13462
13509
  designTokens?: Record<string, Record<string, string>> | undefined;
13463
13510
  customPatterns?: Record<string, {
13464
13511
  type: "custom";
13465
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
13512
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
13466
13513
  className: string;
13467
13514
  slots?: string[] | undefined;
13468
13515
  props?: string[] | undefined;
@@ -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?: {
@@ -13607,6 +13654,23 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13607
13654
  })[];
13608
13655
  description?: string | undefined;
13609
13656
  visual_prompt?: string | undefined;
13657
+ theme?: string | {
13658
+ name: string;
13659
+ tokens: {
13660
+ typography?: Record<string, string> | undefined;
13661
+ colors?: Record<string, string> | undefined;
13662
+ radii?: Record<string, string> | undefined;
13663
+ spacing?: Record<string, string> | undefined;
13664
+ shadows?: Record<string, string> | undefined;
13665
+ };
13666
+ variants?: Record<string, {
13667
+ typography?: Record<string, string> | undefined;
13668
+ colors?: Record<string, string> | undefined;
13669
+ radii?: Record<string, string> | undefined;
13670
+ spacing?: Record<string, string> | undefined;
13671
+ shadows?: Record<string, string> | undefined;
13672
+ }> | undefined;
13673
+ } | undefined;
13610
13674
  emits?: {
13611
13675
  event: string;
13612
13676
  originalEvent: string;
@@ -13639,35 +13703,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13639
13703
  from: string;
13640
13704
  as: string;
13641
13705
  }[] | undefined;
13642
- theme?: string | {
13643
- name: string;
13644
- tokens: {
13645
- typography?: Record<string, string> | undefined;
13646
- colors?: Record<string, string> | undefined;
13647
- radii?: Record<string, string> | undefined;
13648
- spacing?: Record<string, string> | undefined;
13649
- shadows?: Record<string, string> | undefined;
13650
- };
13651
- variants?: Record<string, {
13652
- typography?: Record<string, string> | undefined;
13653
- colors?: Record<string, string> | undefined;
13654
- radii?: Record<string, string> | undefined;
13655
- spacing?: Record<string, string> | undefined;
13656
- shadows?: Record<string, string> | undefined;
13657
- }> | undefined;
13658
- } | undefined;
13659
13706
  services?: (string | {
13660
13707
  type: "rest";
13661
13708
  name: string;
13662
13709
  baseUrl: string;
13663
13710
  description?: string | undefined;
13664
- headers?: Record<string, string> | undefined;
13665
13711
  auth?: {
13666
13712
  type: "api-key" | "bearer" | "basic" | "oauth2";
13667
13713
  keyName?: string | undefined;
13668
13714
  location?: "header" | "query" | undefined;
13669
13715
  secretEnv?: string | undefined;
13670
13716
  } | undefined;
13717
+ headers?: Record<string, string> | undefined;
13671
13718
  timeout?: number | undefined;
13672
13719
  } | {
13673
13720
  type: "socket";
@@ -13693,7 +13740,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13693
13740
  })[] | undefined;
13694
13741
  exposes?: string[] | undefined;
13695
13742
  domainContext?: {
13696
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
13743
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
13697
13744
  request: string;
13698
13745
  requestFragment?: string | undefined;
13699
13746
  subDomain?: string | undefined;
@@ -13730,9 +13777,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13730
13777
  description?: string | undefined;
13731
13778
  config?: {
13732
13779
  theme?: {
13780
+ mode?: "system" | "light" | "dark" | undefined;
13733
13781
  primary?: string | undefined;
13734
13782
  secondary?: string | undefined;
13735
- mode?: "system" | "light" | "dark" | undefined;
13736
13783
  } | undefined;
13737
13784
  features?: Record<string, boolean> | undefined;
13738
13785
  api?: {
@@ -13745,13 +13792,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13745
13792
  name: string;
13746
13793
  baseUrl: string;
13747
13794
  description?: string | undefined;
13748
- headers?: Record<string, string> | undefined;
13749
13795
  auth?: {
13750
13796
  type: "api-key" | "bearer" | "basic" | "oauth2";
13751
13797
  keyName?: string | undefined;
13752
13798
  location?: "header" | "query" | undefined;
13753
13799
  secretEnv?: string | undefined;
13754
13800
  } | undefined;
13801
+ headers?: Record<string, string> | undefined;
13755
13802
  timeout?: number | undefined;
13756
13803
  } | {
13757
13804
  type: "socket";
@@ -13776,7 +13823,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13776
13823
  env?: Record<string, string> | undefined;
13777
13824
  })[] | undefined;
13778
13825
  domainContext?: {
13779
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
13826
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
13780
13827
  request: string;
13781
13828
  requestFragment?: string | undefined;
13782
13829
  subDomain?: string | undefined;
@@ -13808,7 +13855,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
13808
13855
  designTokens?: Record<string, Record<string, string>> | undefined;
13809
13856
  customPatterns?: Record<string, {
13810
13857
  type: "custom";
13811
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
13858
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
13812
13859
  className: string;
13813
13860
  slots?: string[] | undefined;
13814
13861
  props?: string[] | undefined;
@@ -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?: {
@@ -14000,6 +14047,23 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14000
14047
  })[];
14001
14048
  description?: string | undefined;
14002
14049
  visual_prompt?: string | undefined;
14050
+ theme?: string | {
14051
+ name: string;
14052
+ tokens: {
14053
+ typography?: Record<string, string> | undefined;
14054
+ colors?: Record<string, string> | undefined;
14055
+ radii?: Record<string, string> | undefined;
14056
+ spacing?: Record<string, string> | undefined;
14057
+ shadows?: Record<string, string> | undefined;
14058
+ };
14059
+ variants?: Record<string, {
14060
+ typography?: Record<string, string> | undefined;
14061
+ colors?: Record<string, string> | undefined;
14062
+ radii?: Record<string, string> | undefined;
14063
+ spacing?: Record<string, string> | undefined;
14064
+ shadows?: Record<string, string> | undefined;
14065
+ }> | undefined;
14066
+ } | undefined;
14003
14067
  emits?: {
14004
14068
  event: string;
14005
14069
  originalEvent: string;
@@ -14032,35 +14096,18 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14032
14096
  from: string;
14033
14097
  as: string;
14034
14098
  }[] | undefined;
14035
- theme?: string | {
14036
- name: string;
14037
- tokens: {
14038
- typography?: Record<string, string> | undefined;
14039
- colors?: Record<string, string> | undefined;
14040
- radii?: Record<string, string> | undefined;
14041
- spacing?: Record<string, string> | undefined;
14042
- shadows?: Record<string, string> | undefined;
14043
- };
14044
- variants?: Record<string, {
14045
- typography?: Record<string, string> | undefined;
14046
- colors?: Record<string, string> | undefined;
14047
- radii?: Record<string, string> | undefined;
14048
- spacing?: Record<string, string> | undefined;
14049
- shadows?: Record<string, string> | undefined;
14050
- }> | undefined;
14051
- } | undefined;
14052
14099
  services?: (string | {
14053
14100
  type: "rest";
14054
14101
  name: string;
14055
14102
  baseUrl: string;
14056
14103
  description?: string | undefined;
14057
- headers?: Record<string, string> | undefined;
14058
14104
  auth?: {
14059
14105
  type: "api-key" | "bearer" | "basic" | "oauth2";
14060
14106
  keyName?: string | undefined;
14061
14107
  location?: "header" | "query" | undefined;
14062
14108
  secretEnv?: string | undefined;
14063
14109
  } | undefined;
14110
+ headers?: Record<string, string> | undefined;
14064
14111
  timeout?: number | undefined;
14065
14112
  } | {
14066
14113
  type: "socket";
@@ -14086,7 +14133,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14086
14133
  })[] | undefined;
14087
14134
  exposes?: string[] | undefined;
14088
14135
  domainContext?: {
14089
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
14136
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
14090
14137
  request: string;
14091
14138
  requestFragment?: string | undefined;
14092
14139
  subDomain?: string | undefined;
@@ -14123,9 +14170,9 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14123
14170
  description?: string | undefined;
14124
14171
  config?: {
14125
14172
  theme?: {
14173
+ mode?: "system" | "light" | "dark" | undefined;
14126
14174
  primary?: string | undefined;
14127
14175
  secondary?: string | undefined;
14128
- mode?: "system" | "light" | "dark" | undefined;
14129
14176
  } | undefined;
14130
14177
  features?: Record<string, boolean> | undefined;
14131
14178
  api?: {
@@ -14138,13 +14185,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14138
14185
  name: string;
14139
14186
  baseUrl: string;
14140
14187
  description?: string | undefined;
14141
- headers?: Record<string, string> | undefined;
14142
14188
  auth?: {
14143
14189
  type: "api-key" | "bearer" | "basic" | "oauth2";
14144
14190
  keyName?: string | undefined;
14145
14191
  location?: "header" | "query" | undefined;
14146
14192
  secretEnv?: string | undefined;
14147
14193
  } | undefined;
14194
+ headers?: Record<string, string> | undefined;
14148
14195
  timeout?: number | undefined;
14149
14196
  } | {
14150
14197
  type: "socket";
@@ -14169,7 +14216,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14169
14216
  env?: Record<string, string> | undefined;
14170
14217
  })[] | undefined;
14171
14218
  domainContext?: {
14172
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
14219
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
14173
14220
  request: string;
14174
14221
  requestFragment?: string | undefined;
14175
14222
  subDomain?: string | undefined;
@@ -14201,7 +14248,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14201
14248
  designTokens?: Record<string, Record<string, string>> | undefined;
14202
14249
  customPatterns?: Record<string, {
14203
14250
  type: "custom";
14204
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
14251
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
14205
14252
  className: string;
14206
14253
  slots?: string[] | undefined;
14207
14254
  props?: string[] | undefined;
@@ -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?: {
@@ -14346,6 +14393,23 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14346
14393
  })[];
14347
14394
  description?: string | undefined;
14348
14395
  visual_prompt?: string | undefined;
14396
+ theme?: string | {
14397
+ name: string;
14398
+ tokens: {
14399
+ typography?: Record<string, string> | undefined;
14400
+ colors?: Record<string, string> | undefined;
14401
+ radii?: Record<string, string> | undefined;
14402
+ spacing?: Record<string, string> | undefined;
14403
+ shadows?: Record<string, string> | undefined;
14404
+ };
14405
+ variants?: Record<string, {
14406
+ typography?: Record<string, string> | undefined;
14407
+ colors?: Record<string, string> | undefined;
14408
+ radii?: Record<string, string> | undefined;
14409
+ spacing?: Record<string, string> | undefined;
14410
+ shadows?: Record<string, string> | undefined;
14411
+ }> | undefined;
14412
+ } | undefined;
14349
14413
  emits?: {
14350
14414
  event: string;
14351
14415
  originalEvent: string;
@@ -14378,35 +14442,18 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14378
14442
  from: string;
14379
14443
  as: string;
14380
14444
  }[] | undefined;
14381
- theme?: string | {
14382
- name: string;
14383
- tokens: {
14384
- typography?: Record<string, string> | undefined;
14385
- colors?: Record<string, string> | undefined;
14386
- radii?: Record<string, string> | undefined;
14387
- spacing?: Record<string, string> | undefined;
14388
- shadows?: Record<string, string> | undefined;
14389
- };
14390
- variants?: Record<string, {
14391
- typography?: Record<string, string> | undefined;
14392
- colors?: Record<string, string> | undefined;
14393
- radii?: Record<string, string> | undefined;
14394
- spacing?: Record<string, string> | undefined;
14395
- shadows?: Record<string, string> | undefined;
14396
- }> | undefined;
14397
- } | undefined;
14398
14445
  services?: (string | {
14399
14446
  type: "rest";
14400
14447
  name: string;
14401
14448
  baseUrl: string;
14402
14449
  description?: string | undefined;
14403
- headers?: Record<string, string> | undefined;
14404
14450
  auth?: {
14405
14451
  type: "api-key" | "bearer" | "basic" | "oauth2";
14406
14452
  keyName?: string | undefined;
14407
14453
  location?: "header" | "query" | undefined;
14408
14454
  secretEnv?: string | undefined;
14409
14455
  } | undefined;
14456
+ headers?: Record<string, string> | undefined;
14410
14457
  timeout?: number | undefined;
14411
14458
  } | {
14412
14459
  type: "socket";
@@ -14432,7 +14479,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14432
14479
  })[] | undefined;
14433
14480
  exposes?: string[] | undefined;
14434
14481
  domainContext?: {
14435
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
14482
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
14436
14483
  request: string;
14437
14484
  requestFragment?: string | undefined;
14438
14485
  subDomain?: string | undefined;
@@ -14469,9 +14516,9 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14469
14516
  description?: string | undefined;
14470
14517
  config?: {
14471
14518
  theme?: {
14519
+ mode?: "system" | "light" | "dark" | undefined;
14472
14520
  primary?: string | undefined;
14473
14521
  secondary?: string | undefined;
14474
- mode?: "system" | "light" | "dark" | undefined;
14475
14522
  } | undefined;
14476
14523
  features?: Record<string, boolean> | undefined;
14477
14524
  api?: {
@@ -14484,13 +14531,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14484
14531
  name: string;
14485
14532
  baseUrl: string;
14486
14533
  description?: string | undefined;
14487
- headers?: Record<string, string> | undefined;
14488
14534
  auth?: {
14489
14535
  type: "api-key" | "bearer" | "basic" | "oauth2";
14490
14536
  keyName?: string | undefined;
14491
14537
  location?: "header" | "query" | undefined;
14492
14538
  secretEnv?: string | undefined;
14493
14539
  } | undefined;
14540
+ headers?: Record<string, string> | undefined;
14494
14541
  timeout?: number | undefined;
14495
14542
  } | {
14496
14543
  type: "socket";
@@ -14515,7 +14562,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14515
14562
  env?: Record<string, string> | undefined;
14516
14563
  })[] | undefined;
14517
14564
  domainContext?: {
14518
- category: "dashboard" | "content" | "form" | "ecommerce" | "social" | "game" | "business" | "workflow";
14565
+ category: "dashboard" | "content" | "form" | "game" | "social" | "ecommerce" | "business" | "workflow";
14519
14566
  request: string;
14520
14567
  requestFragment?: string | undefined;
14521
14568
  subDomain?: string | undefined;
@@ -14547,7 +14594,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
14547
14594
  designTokens?: Record<string, Record<string, string>> | undefined;
14548
14595
  customPatterns?: Record<string, {
14549
14596
  type: "custom";
14550
- component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "footer" | "article" | "nav" | "aside" | "ul" | "ol" | "li" | "img";
14597
+ component: "main" | "button" | "form" | "header" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
14551
14598
  className: string;
14552
14599
  slots?: string[] | undefined;
14553
14600
  props?: string[] | undefined;
@@ -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 };