@almadar/core 7.4.0 → 7.5.1

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.
@@ -1648,9 +1648,10 @@ type PersistEffect = ['persist', 'create', string, PersistData] | ['persist', 'c
1648
1648
  * older call sites using the builder helper continue to typecheck.
1649
1649
  *
1650
1650
  * @example ['call-service', 'llm', 'generate', { userPrompt: '@entity.inputText' }]
1651
+ * @example ['call-service', 'llm', 'generate', { userPrompt: '...' }, { emit: { success: 'OK', failure: 'ERR' } }]
1651
1652
  * @example ['call-service', 'WeatherAPI', { service: 'weather', action: 'get', onSuccess: 'OK' }]
1652
1653
  */
1653
- type CallServiceEffect = ['call-service', string, string] | ['call-service', string, string, ServiceParams] | ['call-service', string, CallServiceConfig];
1654
+ type CallServiceEffect = ['call-service', string, string] | ['call-service', string, string, ServiceParams] | ['call-service', string, string, ServiceParams, PersistEmitConfig] | ['call-service', string, CallServiceConfig];
1654
1655
  /**
1655
1656
  * Spawn effect - creates a new entity instance (games).
1656
1657
  * @example ['spawn', 'Bullet', { x: '@entity.x', y: '@entity.y' }]
@@ -1857,6 +1858,19 @@ type CheckpointLoadEffect = ['checkpoint/load', string];
1857
1858
  * @example ['agent/generate', 'Summarize this schema']
1858
1859
  */
1859
1860
  type AgentEffect = [`agent/${string}`, ...SExpr[]];
1861
+ /**
1862
+ * OS effect - invokes an os/* operator.
1863
+ *
1864
+ * Covers reactive subscriptions to OS / network resources:
1865
+ * - `os/watch-http`, `os/watch-ws`, `os/watch-sse` — long-lived streams
1866
+ * that fire `on_message` / `failure` events through a trailing
1867
+ * `EmitConfig` block (see `EmitConfig` for the supported keys).
1868
+ * - `os/read-file`, `os/exec`, etc. — one-shot OS operations.
1869
+ *
1870
+ * @example ['os/watch-http', 'wss://push.example.com', { emit: { on_message: 'PUSH_RECEIVED', failure: 'PUSH_DISCONNECTED' } }]
1871
+ * @example ['os/read-file', '/etc/hosts']
1872
+ */
1873
+ type OsEffect = [`os/${string}`, ...SExpr[]];
1860
1874
  /**
1861
1875
  * Async delay effect - wait then execute effects.
1862
1876
  * @example ['async/delay', 2000, ['emit', 'TIMEOUT']]
@@ -1899,7 +1913,7 @@ type AsyncSequenceEffect = ['async/sequence', ...Effect[]];
1899
1913
  * Union of all typed effects.
1900
1914
  * Provides compile-time validation for common effect types.
1901
1915
  */
1902
- 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;
1916
+ 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 | OsEffect;
1903
1917
  /**
1904
1918
  * Effect type - typed S-expression format.
1905
1919
  *
@@ -2548,6 +2562,28 @@ type TraitConfig = TraitConfigObject;
2548
2562
  /** Zod schema for TraitConfig. Recursive via z.lazy to allow nested structures. */
2549
2563
  declare const TraitConfigValueSchema: z.ZodType<TraitConfigValue>;
2550
2564
  declare const TraitConfigSchema: z.ZodType<TraitConfig>;
2565
+ /**
2566
+ * Per-field entry in a trait's DECLARED `config { }` schema as it lives
2567
+ * on the `.orb` JSON: `{ type: "string" | "[string]" | "object" | ...,
2568
+ * default?: <value> }`. Distinct from `TraitConfigValue` (which is the
2569
+ * resolved runtime value). The runtime reads `default` to seed the
2570
+ * `@config.X` binding context when no call-site override is supplied.
2571
+ *
2572
+ * Authored as `config { foo : string = "bar" }` in `.lolo`; lowered to
2573
+ * `{ foo: { type: "string", default: "bar" } }` in `.orb`.
2574
+ */
2575
+ interface ConfigFieldDeclaration {
2576
+ readonly type: string;
2577
+ readonly default?: TraitConfigValue;
2578
+ }
2579
+ declare const ConfigFieldDeclarationSchema: z.ZodType<ConfigFieldDeclaration>;
2580
+ /**
2581
+ * Map of declared config fields keyed by name. Lives on `Trait.config`
2582
+ * and `ResolvedTrait.config` for atoms/molecules that expose typed
2583
+ * configuration to consumers.
2584
+ */
2585
+ type DeclaredTraitConfig = Readonly<Record<string, ConfigFieldDeclaration>>;
2586
+ declare const DeclaredTraitConfigSchema: z.ZodType<DeclaredTraitConfig>;
2551
2587
  /**
2552
2588
  * Categories for organizing traits
2553
2589
  */
@@ -3232,6 +3268,13 @@ interface Trait {
3232
3268
  */
3233
3269
  listens?: TraitEventListener[];
3234
3270
  ui?: TraitUIBinding;
3271
+ /**
3272
+ * Declared `config { }` schema authored on the trait. Drives
3273
+ * `@config.X` substitution: each field's `default` seeds the
3274
+ * binding context behind any caller-supplied call-site
3275
+ * `config: { ... }` override.
3276
+ */
3277
+ config?: DeclaredTraitConfig;
3235
3278
  }
3236
3279
  declare const TraitSchema: z.ZodObject<{
3237
3280
  name: z.ZodString;
@@ -3648,12 +3691,14 @@ declare const TraitSchema: z.ZodObject<{
3648
3691
  } | undefined;
3649
3692
  }>, "many">>;
3650
3693
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3694
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
3651
3695
  }, "strip", z.ZodTypeAny, {
3652
3696
  name: string;
3653
3697
  scope: "instance" | "collection";
3654
3698
  ui?: Record<string, unknown> | undefined;
3655
3699
  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;
3656
3700
  description?: string | undefined;
3701
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
3657
3702
  emits?: {
3658
3703
  event: string;
3659
3704
  description?: string | undefined;
@@ -3760,6 +3805,7 @@ declare const TraitSchema: z.ZodObject<{
3760
3805
  ui?: Record<string, unknown> | undefined;
3761
3806
  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;
3762
3807
  description?: string | undefined;
3808
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
3763
3809
  emits?: {
3764
3810
  event: string;
3765
3811
  description?: string | undefined;
@@ -4294,12 +4340,14 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4294
4340
  } | undefined;
4295
4341
  }>, "many">>;
4296
4342
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4343
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
4297
4344
  }, "strip", z.ZodTypeAny, {
4298
4345
  name: string;
4299
4346
  scope: "instance" | "collection";
4300
4347
  ui?: Record<string, unknown> | undefined;
4301
4348
  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;
4302
4349
  description?: string | undefined;
4350
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
4303
4351
  emits?: {
4304
4352
  event: string;
4305
4353
  description?: string | undefined;
@@ -4406,6 +4454,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4406
4454
  ui?: Record<string, unknown> | undefined;
4407
4455
  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;
4408
4456
  description?: string | undefined;
4457
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
4409
4458
  emits?: {
4410
4459
  event: string;
4411
4460
  description?: string | undefined;
@@ -5010,12 +5059,14 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5010
5059
  } | undefined;
5011
5060
  }>, "many">>;
5012
5061
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5062
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
5013
5063
  }, "strip", z.ZodTypeAny, {
5014
5064
  name: string;
5015
5065
  scope: "instance" | "collection";
5016
5066
  ui?: Record<string, unknown> | undefined;
5017
5067
  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;
5018
5068
  description?: string | undefined;
5069
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
5019
5070
  emits?: {
5020
5071
  event: string;
5021
5072
  description?: string | undefined;
@@ -5122,6 +5173,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
5122
5173
  ui?: Record<string, unknown> | undefined;
5123
5174
  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;
5124
5175
  description?: string | undefined;
5176
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
5125
5177
  emits?: {
5126
5178
  event: string;
5127
5179
  description?: string | undefined;
@@ -6938,12 +6990,14 @@ declare const PageRefObjectSchema: z.ZodObject<{
6938
6990
  } | undefined;
6939
6991
  }>, "many">>;
6940
6992
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6993
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
6941
6994
  }, "strip", z.ZodTypeAny, {
6942
6995
  name: string;
6943
6996
  scope: "instance" | "collection";
6944
6997
  ui?: Record<string, unknown> | undefined;
6945
6998
  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;
6946
6999
  description?: string | undefined;
7000
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
6947
7001
  emits?: {
6948
7002
  event: string;
6949
7003
  description?: string | undefined;
@@ -7050,6 +7104,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7050
7104
  ui?: Record<string, unknown> | undefined;
7051
7105
  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;
7052
7106
  description?: string | undefined;
7107
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
7053
7108
  emits?: {
7054
7109
  event: string;
7055
7110
  description?: string | undefined;
@@ -7162,6 +7217,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7162
7217
  ui?: Record<string, unknown> | undefined;
7163
7218
  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;
7164
7219
  description?: string | undefined;
7220
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
7165
7221
  emits?: {
7166
7222
  event: string;
7167
7223
  description?: string | undefined;
@@ -7280,6 +7336,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7280
7336
  ui?: Record<string, unknown> | undefined;
7281
7337
  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;
7282
7338
  description?: string | undefined;
7339
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
7283
7340
  emits?: {
7284
7341
  event: string;
7285
7342
  description?: string | undefined;
@@ -7853,12 +7910,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7853
7910
  } | undefined;
7854
7911
  }>, "many">>;
7855
7912
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
7913
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
7856
7914
  }, "strip", z.ZodTypeAny, {
7857
7915
  name: string;
7858
7916
  scope: "instance" | "collection";
7859
7917
  ui?: Record<string, unknown> | undefined;
7860
7918
  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;
7861
7919
  description?: string | undefined;
7920
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
7862
7921
  emits?: {
7863
7922
  event: string;
7864
7923
  description?: string | undefined;
@@ -7965,6 +8024,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7965
8024
  ui?: Record<string, unknown> | undefined;
7966
8025
  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;
7967
8026
  description?: string | undefined;
8027
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
7968
8028
  emits?: {
7969
8029
  event: string;
7970
8030
  description?: string | undefined;
@@ -8077,6 +8137,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8077
8137
  ui?: Record<string, unknown> | undefined;
8078
8138
  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;
8079
8139
  description?: string | undefined;
8140
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
8080
8141
  emits?: {
8081
8142
  event: string;
8082
8143
  description?: string | undefined;
@@ -8195,6 +8256,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8195
8256
  ui?: Record<string, unknown> | undefined;
8196
8257
  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;
8197
8258
  description?: string | undefined;
8259
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
8198
8260
  emits?: {
8199
8261
  event: string;
8200
8262
  description?: string | undefined;
@@ -9427,12 +9489,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9427
9489
  } | undefined;
9428
9490
  }>, "many">>;
9429
9491
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
9492
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
9430
9493
  }, "strip", z.ZodTypeAny, {
9431
9494
  name: string;
9432
9495
  scope: "instance" | "collection";
9433
9496
  ui?: Record<string, unknown> | undefined;
9434
9497
  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;
9435
9498
  description?: string | undefined;
9499
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
9436
9500
  emits?: {
9437
9501
  event: string;
9438
9502
  description?: string | undefined;
@@ -9539,6 +9603,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9539
9603
  ui?: Record<string, unknown> | undefined;
9540
9604
  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;
9541
9605
  description?: string | undefined;
9606
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
9542
9607
  emits?: {
9543
9608
  event: string;
9544
9609
  description?: string | undefined;
@@ -10105,12 +10170,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10105
10170
  } | undefined;
10106
10171
  }>, "many">>;
10107
10172
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
10173
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
10108
10174
  }, "strip", z.ZodTypeAny, {
10109
10175
  name: string;
10110
10176
  scope: "instance" | "collection";
10111
10177
  ui?: Record<string, unknown> | undefined;
10112
10178
  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;
10113
10179
  description?: string | undefined;
10180
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
10114
10181
  emits?: {
10115
10182
  event: string;
10116
10183
  description?: string | undefined;
@@ -10217,6 +10284,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10217
10284
  ui?: Record<string, unknown> | undefined;
10218
10285
  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;
10219
10286
  description?: string | undefined;
10287
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
10220
10288
  emits?: {
10221
10289
  event: string;
10222
10290
  description?: string | undefined;
@@ -10329,6 +10397,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10329
10397
  ui?: Record<string, unknown> | undefined;
10330
10398
  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;
10331
10399
  description?: string | undefined;
10400
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
10332
10401
  emits?: {
10333
10402
  event: string;
10334
10403
  description?: string | undefined;
@@ -10447,6 +10516,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10447
10516
  ui?: Record<string, unknown> | undefined;
10448
10517
  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;
10449
10518
  description?: string | undefined;
10519
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
10450
10520
  emits?: {
10451
10521
  event: string;
10452
10522
  description?: string | undefined;
@@ -10845,6 +10915,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10845
10915
  ui?: Record<string, unknown> | undefined;
10846
10916
  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;
10847
10917
  description?: string | undefined;
10918
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
10848
10919
  emits?: {
10849
10920
  event: string;
10850
10921
  description?: string | undefined;
@@ -10959,6 +11030,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10959
11030
  ui?: Record<string, unknown> | undefined;
10960
11031
  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;
10961
11032
  description?: string | undefined;
11033
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
10962
11034
  emits?: {
10963
11035
  event: string;
10964
11036
  description?: string | undefined;
@@ -11243,6 +11315,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11243
11315
  ui?: Record<string, unknown> | undefined;
11244
11316
  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;
11245
11317
  description?: string | undefined;
11318
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
11246
11319
  emits?: {
11247
11320
  event: string;
11248
11321
  description?: string | undefined;
@@ -11357,6 +11430,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11357
11430
  ui?: Record<string, unknown> | undefined;
11358
11431
  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;
11359
11432
  description?: string | undefined;
11433
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
11360
11434
  emits?: {
11361
11435
  event: string;
11362
11436
  description?: string | undefined;
@@ -12338,12 +12412,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
12338
12412
  } | undefined;
12339
12413
  }>, "many">>;
12340
12414
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
12415
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
12341
12416
  }, "strip", z.ZodTypeAny, {
12342
12417
  name: string;
12343
12418
  scope: "instance" | "collection";
12344
12419
  ui?: Record<string, unknown> | undefined;
12345
12420
  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;
12346
12421
  description?: string | undefined;
12422
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
12347
12423
  emits?: {
12348
12424
  event: string;
12349
12425
  description?: string | undefined;
@@ -12450,6 +12526,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12450
12526
  ui?: Record<string, unknown> | undefined;
12451
12527
  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;
12452
12528
  description?: string | undefined;
12529
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
12453
12530
  emits?: {
12454
12531
  event: string;
12455
12532
  description?: string | undefined;
@@ -13016,12 +13093,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
13016
13093
  } | undefined;
13017
13094
  }>, "many">>;
13018
13095
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
13096
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
13019
13097
  }, "strip", z.ZodTypeAny, {
13020
13098
  name: string;
13021
13099
  scope: "instance" | "collection";
13022
13100
  ui?: Record<string, unknown> | undefined;
13023
13101
  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;
13024
13102
  description?: string | undefined;
13103
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
13025
13104
  emits?: {
13026
13105
  event: string;
13027
13106
  description?: string | undefined;
@@ -13128,6 +13207,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13128
13207
  ui?: Record<string, unknown> | undefined;
13129
13208
  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;
13130
13209
  description?: string | undefined;
13210
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
13131
13211
  emits?: {
13132
13212
  event: string;
13133
13213
  description?: string | undefined;
@@ -13240,6 +13320,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13240
13320
  ui?: Record<string, unknown> | undefined;
13241
13321
  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;
13242
13322
  description?: string | undefined;
13323
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
13243
13324
  emits?: {
13244
13325
  event: string;
13245
13326
  description?: string | undefined;
@@ -13358,6 +13439,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13358
13439
  ui?: Record<string, unknown> | undefined;
13359
13440
  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;
13360
13441
  description?: string | undefined;
13442
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
13361
13443
  emits?: {
13362
13444
  event: string;
13363
13445
  description?: string | undefined;
@@ -13756,6 +13838,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13756
13838
  ui?: Record<string, unknown> | undefined;
13757
13839
  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;
13758
13840
  description?: string | undefined;
13841
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
13759
13842
  emits?: {
13760
13843
  event: string;
13761
13844
  description?: string | undefined;
@@ -13870,6 +13953,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13870
13953
  ui?: Record<string, unknown> | undefined;
13871
13954
  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;
13872
13955
  description?: string | undefined;
13956
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
13873
13957
  emits?: {
13874
13958
  event: string;
13875
13959
  description?: string | undefined;
@@ -14154,6 +14238,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14154
14238
  ui?: Record<string, unknown> | undefined;
14155
14239
  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;
14156
14240
  description?: string | undefined;
14241
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
14157
14242
  emits?: {
14158
14243
  event: string;
14159
14244
  description?: string | undefined;
@@ -14268,6 +14353,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14268
14353
  ui?: Record<string, unknown> | undefined;
14269
14354
  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;
14270
14355
  description?: string | undefined;
14356
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
14271
14357
  emits?: {
14272
14358
  event: string;
14273
14359
  description?: string | undefined;
@@ -15256,12 +15342,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15256
15342
  } | undefined;
15257
15343
  }>, "many">>;
15258
15344
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
15345
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
15259
15346
  }, "strip", z.ZodTypeAny, {
15260
15347
  name: string;
15261
15348
  scope: "instance" | "collection";
15262
15349
  ui?: Record<string, unknown> | undefined;
15263
15350
  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;
15264
15351
  description?: string | undefined;
15352
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
15265
15353
  emits?: {
15266
15354
  event: string;
15267
15355
  description?: string | undefined;
@@ -15368,6 +15456,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15368
15456
  ui?: Record<string, unknown> | undefined;
15369
15457
  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;
15370
15458
  description?: string | undefined;
15459
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
15371
15460
  emits?: {
15372
15461
  event: string;
15373
15462
  description?: string | undefined;
@@ -15934,12 +16023,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15934
16023
  } | undefined;
15935
16024
  }>, "many">>;
15936
16025
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
16026
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
15937
16027
  }, "strip", z.ZodTypeAny, {
15938
16028
  name: string;
15939
16029
  scope: "instance" | "collection";
15940
16030
  ui?: Record<string, unknown> | undefined;
15941
16031
  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;
15942
16032
  description?: string | undefined;
16033
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
15943
16034
  emits?: {
15944
16035
  event: string;
15945
16036
  description?: string | undefined;
@@ -16046,6 +16137,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16046
16137
  ui?: Record<string, unknown> | undefined;
16047
16138
  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;
16048
16139
  description?: string | undefined;
16140
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
16049
16141
  emits?: {
16050
16142
  event: string;
16051
16143
  description?: string | undefined;
@@ -16158,6 +16250,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16158
16250
  ui?: Record<string, unknown> | undefined;
16159
16251
  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;
16160
16252
  description?: string | undefined;
16253
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
16161
16254
  emits?: {
16162
16255
  event: string;
16163
16256
  description?: string | undefined;
@@ -16276,6 +16369,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16276
16369
  ui?: Record<string, unknown> | undefined;
16277
16370
  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;
16278
16371
  description?: string | undefined;
16372
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
16279
16373
  emits?: {
16280
16374
  event: string;
16281
16375
  description?: string | undefined;
@@ -16674,6 +16768,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16674
16768
  ui?: Record<string, unknown> | undefined;
16675
16769
  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;
16676
16770
  description?: string | undefined;
16771
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
16677
16772
  emits?: {
16678
16773
  event: string;
16679
16774
  description?: string | undefined;
@@ -16788,6 +16883,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16788
16883
  ui?: Record<string, unknown> | undefined;
16789
16884
  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;
16790
16885
  description?: string | undefined;
16886
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
16791
16887
  emits?: {
16792
16888
  event: string;
16793
16889
  description?: string | undefined;
@@ -17072,6 +17168,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17072
17168
  ui?: Record<string, unknown> | undefined;
17073
17169
  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;
17074
17170
  description?: string | undefined;
17171
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
17075
17172
  emits?: {
17076
17173
  event: string;
17077
17174
  description?: string | undefined;
@@ -17186,6 +17283,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17186
17283
  ui?: Record<string, unknown> | undefined;
17187
17284
  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;
17188
17285
  description?: string | undefined;
17286
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
17189
17287
  emits?: {
17190
17288
  event: string;
17191
17289
  description?: string | undefined;
@@ -18415,12 +18513,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18415
18513
  } | undefined;
18416
18514
  }>, "many">>;
18417
18515
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
18516
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
18418
18517
  }, "strip", z.ZodTypeAny, {
18419
18518
  name: string;
18420
18519
  scope: "instance" | "collection";
18421
18520
  ui?: Record<string, unknown> | undefined;
18422
18521
  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;
18423
18522
  description?: string | undefined;
18523
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
18424
18524
  emits?: {
18425
18525
  event: string;
18426
18526
  description?: string | undefined;
@@ -18527,6 +18627,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18527
18627
  ui?: Record<string, unknown> | undefined;
18528
18628
  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;
18529
18629
  description?: string | undefined;
18630
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
18530
18631
  emits?: {
18531
18632
  event: string;
18532
18633
  description?: string | undefined;
@@ -19093,12 +19194,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19093
19194
  } | undefined;
19094
19195
  }>, "many">>;
19095
19196
  ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19197
+ config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
19096
19198
  }, "strip", z.ZodTypeAny, {
19097
19199
  name: string;
19098
19200
  scope: "instance" | "collection";
19099
19201
  ui?: Record<string, unknown> | undefined;
19100
19202
  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;
19101
19203
  description?: string | undefined;
19204
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
19102
19205
  emits?: {
19103
19206
  event: string;
19104
19207
  description?: string | undefined;
@@ -19205,6 +19308,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19205
19308
  ui?: Record<string, unknown> | undefined;
19206
19309
  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;
19207
19310
  description?: string | undefined;
19311
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
19208
19312
  emits?: {
19209
19313
  event: string;
19210
19314
  description?: string | undefined;
@@ -19317,6 +19421,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19317
19421
  ui?: Record<string, unknown> | undefined;
19318
19422
  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;
19319
19423
  description?: string | undefined;
19424
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
19320
19425
  emits?: {
19321
19426
  event: string;
19322
19427
  description?: string | undefined;
@@ -19435,6 +19540,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19435
19540
  ui?: Record<string, unknown> | undefined;
19436
19541
  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;
19437
19542
  description?: string | undefined;
19543
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
19438
19544
  emits?: {
19439
19545
  event: string;
19440
19546
  description?: string | undefined;
@@ -19833,6 +19939,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19833
19939
  ui?: Record<string, unknown> | undefined;
19834
19940
  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;
19835
19941
  description?: string | undefined;
19942
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
19836
19943
  emits?: {
19837
19944
  event: string;
19838
19945
  description?: string | undefined;
@@ -19947,6 +20054,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19947
20054
  ui?: Record<string, unknown> | undefined;
19948
20055
  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;
19949
20056
  description?: string | undefined;
20057
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
19950
20058
  emits?: {
19951
20059
  event: string;
19952
20060
  description?: string | undefined;
@@ -20231,6 +20339,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20231
20339
  ui?: Record<string, unknown> | undefined;
20232
20340
  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;
20233
20341
  description?: string | undefined;
20342
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
20234
20343
  emits?: {
20235
20344
  event: string;
20236
20345
  description?: string | undefined;
@@ -20345,6 +20454,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20345
20454
  ui?: Record<string, unknown> | undefined;
20346
20455
  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;
20347
20456
  description?: string | undefined;
20457
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
20348
20458
  emits?: {
20349
20459
  event: string;
20350
20460
  description?: string | undefined;
@@ -20807,6 +20917,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20807
20917
  ui?: Record<string, unknown> | undefined;
20808
20918
  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;
20809
20919
  description?: string | undefined;
20920
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
20810
20921
  emits?: {
20811
20922
  event: string;
20812
20923
  description?: string | undefined;
@@ -20921,6 +21032,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20921
21032
  ui?: Record<string, unknown> | undefined;
20922
21033
  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;
20923
21034
  description?: string | undefined;
21035
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
20924
21036
  emits?: {
20925
21037
  event: string;
20926
21038
  description?: string | undefined;
@@ -21294,6 +21406,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21294
21406
  ui?: Record<string, unknown> | undefined;
21295
21407
  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;
21296
21408
  description?: string | undefined;
21409
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
21297
21410
  emits?: {
21298
21411
  event: string;
21299
21412
  description?: string | undefined;
@@ -21408,6 +21521,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21408
21521
  ui?: Record<string, unknown> | undefined;
21409
21522
  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;
21410
21523
  description?: string | undefined;
21524
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
21411
21525
  emits?: {
21412
21526
  event: string;
21413
21527
  description?: string | undefined;
@@ -21828,6 +21942,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21828
21942
  ui?: Record<string, unknown> | undefined;
21829
21943
  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;
21830
21944
  description?: string | undefined;
21945
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
21831
21946
  emits?: {
21832
21947
  event: string;
21833
21948
  description?: string | undefined;
@@ -21942,6 +22057,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21942
22057
  ui?: Record<string, unknown> | undefined;
21943
22058
  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;
21944
22059
  description?: string | undefined;
22060
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
21945
22061
  emits?: {
21946
22062
  event: string;
21947
22063
  description?: string | undefined;
@@ -22315,6 +22431,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22315
22431
  ui?: Record<string, unknown> | undefined;
22316
22432
  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;
22317
22433
  description?: string | undefined;
22434
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
22318
22435
  emits?: {
22319
22436
  event: string;
22320
22437
  description?: string | undefined;
@@ -22429,6 +22546,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22429
22546
  ui?: Record<string, unknown> | undefined;
22430
22547
  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;
22431
22548
  description?: string | undefined;
22549
+ config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
22432
22550
  emits?: {
22433
22551
  event: string;
22434
22552
  description?: string | undefined;
@@ -22755,4 +22873,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22755
22873
  type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
22756
22874
  type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
22757
22875
 
22758
- export { type DesignTokensInput as $, AGENT_DOMAIN_CATEGORIES as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Entity as E, type CheckpointLoadEffect as F, type CheckpointSaveEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type CustomPatternDefinition as L, type CustomPatternDefinitionInput as M, CustomPatternDefinitionSchema as N, type OrbitalDefinition as O, type PageRef as P, type CustomPatternMap as Q, type CustomPatternMapInput as R, type State as S, type TraitEventContract as T, type UseDeclaration as U, CustomPatternMapSchema as V, type DerefEffect as W, type DesignPreferences as X, type DesignPreferencesInput as Y, DesignPreferencesSchema as Z, type DesignTokens as _, type TraitEventListener as a, GuardSchema as a$, DesignTokensSchema as a0, type DespawnEffect as a1, type DoEffect as a2, type DomainCategory as a3, DomainCategorySchema as a4, type DomainContext as a5, type DomainContextInput as a6, DomainContextSchema as a7, type DomainVocabulary as a8, DomainVocabularySchema as a9, EventPayloadFieldSchema as aA, EventSchema as aB, type EventScope as aC, EventScopeSchema as aD, type EventSemanticRole as aE, EventSemanticRoleSchema as aF, type EventSource as aG, EventSourceSchema as aH, type FetchEffect as aI, type FetchOptions as aJ, type Field as aK, type FieldFormat as aL, FieldFormatSchema as aM, FieldSchema as aN, type FieldType as aO, FieldTypeSchema as aP, type FieldValue as aQ, type ForwardConfig as aR, type ForwardEffect as aS, type Orbital as aT, GAME_TYPES as aU, type GameSubCategory as aV, GameSubCategorySchema as aW, type GameType as aX, GameTypeSchema as aY, type Guard as aZ, type GuardInput as a_, ENTITY_ROLES as aa, type Effect as ab, type EffectInput as ac, EffectSchema as ad, type EmitConfig as ae, type EmitEffect as af, type EntityCall as ag, EntityCallSchema as ah, type EntityData as ai, type EntityFieldInput as aj, EntityFieldSchema as ak, EntityPersistenceSchema as al, EntityRefSchema as am, EntityRefStringSchema as an, type EntityRole as ao, EntityRoleSchema as ap, EntitySchema as aq, type EntitySemanticRole as ar, EntitySemanticRoleSchema as as, type EvaluateConfig as at, type EvaluateEffect as au, type Event as av, type EventInput as aw, type EventListener as ax, EventListenerSchema as ay, type EventPayloadField as az, type TraitConfig as b, type SemanticAssetRef as b$, type ListenSource as b0, ListenSourceSchema as b1, type LogEffect as b2, type McpServiceDef as b3, McpServiceDefSchema as b4, type NavigateEffect as b5, type NnConfig as b6, type NnLayer as b7, type NodeClassification as b8, NodeClassificationSchema as b9, PageTraitRefSchema as bA, type PayloadField as bB, PayloadFieldSchema as bC, type PersistData as bD, type PersistEffect as bE, type PersistEmitConfig as bF, type PresentationType as bG, type RefEffect as bH, type RelatedLink as bI, RelatedLinkSchema as bJ, type RelationConfig as bK, RelationConfigSchema as bL, type RenderItemLambda as bM, type RenderUIConfig as bN, type RenderUIEffect as bO, type RenderUINode as bP, type RequiredField as bQ, RequiredFieldSchema as bR, type ResolvedAsset as bS, type ResolvedAssetInput as bT, ResolvedAssetSchema as bU, type ResolvedPatternProps as bV, type RestAuthConfig as bW, RestAuthConfigSchema as bX, type RestServiceDef as bY, RestServiceDefSchema as bZ, SERVICE_TYPES as b_, type NotifyEffect as ba, type OrbitalConfig as bb, type OrbitalConfigInput as bc, OrbitalConfigSchema as bd, OrbitalDefinitionSchema as be, type OrbitalEntity as bf, type OrbitalEntityInput as bg, OrbitalEntitySchema as bh, type OrbitalInput as bi, type OrbitalPage as bj, type OrbitalPageInput as bk, OrbitalPageSchema as bl, type OrbitalPageStrictInput as bm, OrbitalPageStrictSchema as bn, type OrbitalSchemaInput as bo, OrbitalSchemaSchema as bp, type OrbitalTraitRef as bq, OrbitalTraitRefSchema as br, type OrbitalUnit as bs, OrbitalUnitSchema as bt, OrbitalSchema$1 as bu, PageRefObjectSchema as bv, PageRefSchema as bw, PageRefStringSchema as bx, PageSchema as by, type PageTraitRef as bz, type EntityField as c, type UISlot as c$, type SemanticAssetRefInput as c0, SemanticAssetRefSchema as c1, type ServiceDefinition as c2, ServiceDefinitionSchema as c3, type ServiceParams as c4, type ServiceRef as c5, type ServiceRefObject as c6, ServiceRefObjectSchema as c7, ServiceRefSchema as c8, ServiceRefStringSchema as c9, ThemeVariantSchema as cA, type TrainConfig as cB, type TrainEffect as cC, type TraitCategory as cD, TraitCategorySchema as cE, type TraitConfigObject as cF, TraitConfigSchema as cG, type TraitConfigValue as cH, TraitConfigValueSchema as cI, type TraitDataEntity as cJ, TraitDataEntitySchema as cK, type TraitEntityField as cL, TraitEntityFieldSchema as cM, TraitEventContractSchema as cN, TraitEventListenerSchema as cO, type TraitInput as cP, TraitRefSchema 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 TypedEffect as c_, type ServiceType as ca, ServiceTypeSchema as cb, type SetEffect as cc, type SocketEvents as cd, SocketEventsSchema as ce, type SocketServiceDef as cf, SocketServiceDefSchema as cg, type SpawnEffect as ch, type StateInput as ci, type StateMachine as cj, type StateMachineInput as ck, StateMachineSchema as cl, StateSchema as cm, type StateSemanticRole as cn, StateSemanticRoleSchema as co, type SuggestedGuard as cp, SuggestedGuardSchema as cq, type SwapEffect as cr, type ThemeDefinition as cs, ThemeDefinitionSchema as ct, type ThemeRef as cu, ThemeRefSchema as cv, ThemeRefStringSchema as cw, type ThemeTokens as cx, ThemeTokensSchema as cy, type ThemeVariant as cz, type EntityPersistence as d, set as d$, UISlotSchema as d0, UI_SLOTS as d1, type UXHints as d2, UXHintsSchema as d3, UseDeclarationSchema as d4, type UserPersona as d5, type UserPersonaInput as d6, UserPersonaSchema as d7, VISUAL_STYLES as d8, type ViewType as d9, isInlineTrait as dA, isMcpService as dB, isOrbitalDefinition as dC, isPageReference as dD, isPageReferenceObject as dE, isPageReferenceString as dF, isRestService as dG, isRuntimeEntity as dH, isSExprEffect as dI, isServiceReference as dJ, isServiceReferenceObject as dK, isSingletonEntity as dL, isSocketService as dM, isThemeReference as dN, navigate as dO, normalizeTraitRef as dP, notify as dQ, parseAssetKey as dR, parseEntityRef as dS, parseImportedTraitRef as dT, parseOrbitalSchema as dU, parsePageRef as dV, parseServiceRef as dW, persist as dX, ref as dY, renderUI as dZ, safeParseOrbitalSchema as d_, ViewTypeSchema as da, type VisualStyle as db, VisualStyleSchema as dc, type WatchEffect as dd, type WatchOptions as de, atomic as df, callService as dg, createAssetKey as dh, deref as di, deriveCollection as dj, despawn as dk, doEffects as dl, emit as dm, findService as dn, getDefaultAnimationsForRole as dp, getServiceNames as dq, getTraitConfig as dr, getTraitName as ds, hasService as dt, isCircuitEvent as du, isEffect as dv, isEntityCall as dw, isEntityReference as dx, isEntityReferenceAny as dy, isImportedTraitRef as dz, type EntityRow as e, spawn as e0, swap as e1, validateAssetAnimations as e2, watch as e3, type EntityRef as f, type TraitRef as g, type OrbitalSchema as h, type Trait as i, type Page as j, type PageRefObject as k, type TraitReference as l, ALLOWED_CUSTOM_COMPONENTS as m, type AgentDomainCategory as n, AgentDomainCategorySchema as o, type AgentEffect as p, type AllowedCustomComponent as q, type AnimationDef as r, type AnimationDefInput as s, AnimationDefSchema as t, type AssetMap as u, type AssetMapInput as v, AssetMapSchema as w, type AssetMapping as x, type AssetMappingInput as y, AssetMappingSchema as z };
22876
+ export { type DesignPreferences as $, AGENT_DOMAIN_CATEGORIES as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Entity as E, type CheckpointLoadEffect as F, type CheckpointSaveEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type ConfigFieldDeclaration as L, ConfigFieldDeclarationSchema as M, type CustomPatternDefinition as N, type OrbitalDefinition as O, type PageRef as P, type CustomPatternDefinitionInput as Q, CustomPatternDefinitionSchema as R, type State as S, type TraitEventContract as T, type UseDeclaration as U, type CustomPatternMap as V, type CustomPatternMapInput as W, CustomPatternMapSchema as X, type DeclaredTraitConfig as Y, DeclaredTraitConfigSchema as Z, type DerefEffect as _, type TraitEventListener as a, type GameType as a$, type DesignPreferencesInput as a0, DesignPreferencesSchema as a1, type DesignTokens as a2, type DesignTokensInput as a3, DesignTokensSchema as a4, type DespawnEffect as a5, type DoEffect as a6, type DomainCategory as a7, DomainCategorySchema as a8, type DomainContext as a9, type EventInput as aA, type EventListener as aB, EventListenerSchema as aC, type EventPayloadField as aD, EventPayloadFieldSchema as aE, EventSchema as aF, type EventScope as aG, EventScopeSchema as aH, type EventSemanticRole as aI, EventSemanticRoleSchema as aJ, type EventSource as aK, EventSourceSchema as aL, type FetchEffect as aM, type FetchOptions as aN, type Field as aO, type FieldFormat as aP, FieldFormatSchema as aQ, FieldSchema as aR, type FieldType as aS, FieldTypeSchema as aT, type FieldValue as aU, type ForwardConfig as aV, type ForwardEffect as aW, type Orbital as aX, GAME_TYPES as aY, type GameSubCategory as aZ, GameSubCategorySchema as a_, type DomainContextInput as aa, DomainContextSchema as ab, type DomainVocabulary as ac, DomainVocabularySchema as ad, ENTITY_ROLES as ae, type Effect as af, type EffectInput as ag, EffectSchema as ah, type EmitConfig as ai, type EmitEffect as aj, type EntityCall as ak, EntityCallSchema as al, type EntityData as am, type EntityFieldInput as an, EntityFieldSchema as ao, EntityPersistenceSchema as ap, EntityRefSchema as aq, EntityRefStringSchema as ar, type EntityRole as as, EntityRoleSchema as at, EntitySchema as au, type EntitySemanticRole as av, EntitySemanticRoleSchema as aw, type EvaluateConfig as ax, type EvaluateEffect as ay, type Event as az, type TraitConfig as b, type RestAuthConfig as b$, GameTypeSchema as b0, type Guard as b1, type GuardInput as b2, GuardSchema as b3, type ListenSource as b4, ListenSourceSchema as b5, type LogEffect as b6, type McpServiceDef as b7, McpServiceDefSchema as b8, type NavigateEffect as b9, PageRefObjectSchema as bA, PageRefSchema as bB, PageRefStringSchema as bC, PageSchema as bD, type PageTraitRef as bE, PageTraitRefSchema as bF, type PayloadField as bG, PayloadFieldSchema as bH, type PersistData as bI, type PersistEffect as bJ, type PersistEmitConfig 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 RenderItemLambda as bR, type RenderUIConfig as bS, type RenderUIEffect as bT, type RenderUINode as bU, type RequiredField as bV, RequiredFieldSchema as bW, type ResolvedAsset as bX, type ResolvedAssetInput as bY, ResolvedAssetSchema as bZ, type ResolvedPatternProps as b_, type NnConfig as ba, type NnLayer as bb, type NodeClassification as bc, NodeClassificationSchema as bd, type NotifyEffect as be, type OrbitalConfig as bf, type OrbitalConfigInput as bg, OrbitalConfigSchema as bh, OrbitalDefinitionSchema as bi, type OrbitalEntity as bj, type OrbitalEntityInput as bk, OrbitalEntitySchema as bl, type OrbitalInput as bm, type OrbitalPage as bn, type OrbitalPageInput as bo, OrbitalPageSchema as bp, type OrbitalPageStrictInput as bq, OrbitalPageStrictSchema as br, type OrbitalSchemaInput as bs, OrbitalSchemaSchema as bt, type OrbitalTraitRef as bu, OrbitalTraitRefSchema as bv, type OrbitalUnit as bw, OrbitalUnitSchema as bx, OrbitalSchema$1 as by, type OsEffect as bz, type EntityField as c, type TraitUIBinding as c$, RestAuthConfigSchema as c0, type RestServiceDef as c1, RestServiceDefSchema as c2, SERVICE_TYPES as c3, type SemanticAssetRef as c4, type SemanticAssetRefInput as c5, SemanticAssetRefSchema as c6, type ServiceDefinition as c7, ServiceDefinitionSchema as c8, type ServiceParams as c9, ThemeRefSchema as cA, ThemeRefStringSchema as cB, type ThemeTokens as cC, ThemeTokensSchema as cD, type ThemeVariant as cE, ThemeVariantSchema as cF, type TrainConfig as cG, type TrainEffect as cH, type TraitCategory as cI, TraitCategorySchema as cJ, type TraitConfigObject as cK, TraitConfigSchema as cL, type TraitConfigValue as cM, TraitConfigValueSchema as cN, type TraitDataEntity as cO, TraitDataEntitySchema as cP, type TraitEntityField as cQ, TraitEntityFieldSchema as cR, TraitEventContractSchema as cS, TraitEventListenerSchema as cT, type TraitInput as cU, TraitRefSchema as cV, type TraitReferenceInput as cW, TraitReferenceSchema as cX, TraitSchema as cY, type TraitTick as cZ, TraitTickSchema as c_, type ServiceRef as ca, type ServiceRefObject as cb, ServiceRefObjectSchema as cc, ServiceRefSchema as cd, ServiceRefStringSchema as ce, type ServiceType as cf, ServiceTypeSchema as cg, type SetEffect as ch, type SocketEvents as ci, SocketEventsSchema as cj, type SocketServiceDef as ck, SocketServiceDefSchema as cl, type SpawnEffect as cm, type StateInput as cn, type StateMachine as co, type StateMachineInput as cp, StateMachineSchema as cq, StateSchema as cr, type StateSemanticRole as cs, StateSemanticRoleSchema as ct, type SuggestedGuard as cu, SuggestedGuardSchema as cv, type SwapEffect as cw, type ThemeDefinition as cx, ThemeDefinitionSchema as cy, type ThemeRef as cz, type EntityPersistence as d, parseServiceRef as d$, type Transition as d0, type TransitionInput as d1, TransitionSchema as d2, type TypedEffect as d3, type UISlot as d4, UISlotSchema as d5, UI_SLOTS as d6, type UXHints as d7, UXHintsSchema as d8, UseDeclarationSchema as d9, isEffect as dA, isEntityCall as dB, isEntityReference as dC, isEntityReferenceAny as dD, isImportedTraitRef as dE, isInlineTrait as dF, isMcpService as dG, isOrbitalDefinition as dH, isPageReference as dI, isPageReferenceObject as dJ, isPageReferenceString as dK, isRestService as dL, isRuntimeEntity as dM, isSExprEffect as dN, isServiceReference as dO, isServiceReferenceObject as dP, isSingletonEntity as dQ, isSocketService as dR, isThemeReference as dS, navigate as dT, normalizeTraitRef as dU, notify as dV, parseAssetKey as dW, parseEntityRef as dX, parseImportedTraitRef as dY, parseOrbitalSchema as dZ, parsePageRef as d_, type UserPersona as da, type UserPersonaInput as db, UserPersonaSchema as dc, VISUAL_STYLES as dd, type ViewType as de, ViewTypeSchema as df, type VisualStyle as dg, VisualStyleSchema as dh, type WatchEffect as di, type WatchOptions as dj, atomic as dk, callService as dl, createAssetKey as dm, deref as dn, deriveCollection as dp, despawn as dq, doEffects as dr, emit as ds, findService as dt, getDefaultAnimationsForRole as du, getServiceNames as dv, getTraitConfig as dw, getTraitName as dx, hasService as dy, isCircuitEvent as dz, type EntityRow as e, persist as e0, ref as e1, renderUI as e2, safeParseOrbitalSchema as e3, set as e4, spawn as e5, swap as e6, validateAssetAnimations as e7, watch as e8, type EntityRef as f, type TraitRef as g, type OrbitalSchema as h, type Trait as i, type Page as j, type PageRefObject as k, type TraitReference as l, ALLOWED_CUSTOM_COMPONENTS as m, type AgentDomainCategory as n, AgentDomainCategorySchema as o, type AgentEffect as p, type AllowedCustomComponent as q, type AnimationDef as r, type AnimationDefInput as s, AnimationDefSchema as t, type AssetMap as u, type AssetMapInput as v, AssetMapSchema as w, type AssetMapping as x, type AssetMappingInput as y, AssetMappingSchema as z };