@almadar/core 3.0.0 → 4.0.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.
@@ -2381,28 +2381,98 @@ interface TraitReference {
2381
2381
  events?: Record<string, string>;
2382
2382
  config?: Record<string, Record<string, unknown>>;
2383
2383
  appliesTo?: string[];
2384
+ /**
2385
+ * Phase F.7: replace the imported trait's `listens` array with the
2386
+ * caller-supplied list. Empty array clears all upstream listens. The
2387
+ * inliner applies this AFTER substitution, overwriting whatever the
2388
+ * upstream declared. Use sparingly: this drops external event wiring.
2389
+ */
2390
+ listens?: TraitEventListener[];
2391
+ /**
2392
+ * Phase F.7: set every emit's `scope` to the caller-supplied value.
2393
+ * `'internal'` confines emits to the orbital's internal bus; `'external'`
2394
+ * broadcasts them. Applied after substitution and listens replacement.
2395
+ */
2396
+ emitsScope?: 'internal' | 'external';
2397
+ /**
2398
+ * Phase F.8: per-transition effects override. The map's keys are event
2399
+ * names (the transition triggers, AFTER any rename via `events`). The
2400
+ * values are the SExpression effect lists that REPLACE the matching
2401
+ * transitions' `effects[]` arrays.
2402
+ *
2403
+ * This is the unified content + effect override mechanism. Whether the
2404
+ * override list contains `["render-ui", ...]` (visual content),
2405
+ * `["fetch", ...]` (data load), `["persist", ...]` (mutation), or any
2406
+ * combination, the inliner just substitutes the whole list. Identifier
2407
+ * substitution (entity refs, event refs) still runs over the merged
2408
+ * trait body, so override effects can use either upstream or caller
2409
+ * identifiers and the F.3 walker will rewrite them consistently.
2410
+ *
2411
+ * Example:
2412
+ * ```json
2413
+ * "effects": {
2414
+ * "ADD_ITEM": [
2415
+ * ["fetch", "CartItem"],
2416
+ * ["render-ui", "main", { ... }]
2417
+ * ],
2418
+ * "SAVE": [
2419
+ * ["persist", "create", "CartItem", "@payload.data"]
2420
+ * ]
2421
+ * }
2422
+ * ```
2423
+ */
2424
+ effects?: Record<string, unknown[]>;
2384
2425
  }
2385
- declare const TraitReferenceSchema: z.ZodObject<{
2426
+ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
2386
2427
  ref: z.ZodString;
2387
2428
  linkedEntity: z.ZodOptional<z.ZodString>;
2388
2429
  name: z.ZodOptional<z.ZodString>;
2389
2430
  events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2390
2431
  config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2391
2432
  appliesTo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2433
+ listens: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
2434
+ emitsScope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
2435
+ effects: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodUnknown, "many">>>;
2392
2436
  }, "strip", z.ZodTypeAny, {
2393
2437
  ref: string;
2394
2438
  name?: string | undefined;
2395
2439
  linkedEntity?: string | undefined;
2396
2440
  config?: Record<string, Record<string, unknown>> | undefined;
2441
+ effects?: Record<string, unknown[]> | undefined;
2442
+ events?: Record<string, string> | undefined;
2443
+ appliesTo?: string[] | undefined;
2444
+ listens?: unknown[] | undefined;
2445
+ emitsScope?: "internal" | "external" | undefined;
2446
+ }, {
2447
+ ref: string;
2448
+ name?: string | undefined;
2449
+ linkedEntity?: string | undefined;
2450
+ config?: Record<string, Record<string, unknown>> | undefined;
2451
+ effects?: Record<string, unknown[]> | undefined;
2452
+ events?: Record<string, string> | undefined;
2453
+ appliesTo?: string[] | undefined;
2454
+ listens?: unknown[] | undefined;
2455
+ emitsScope?: "internal" | "external" | undefined;
2456
+ }>, {
2457
+ ref: string;
2458
+ name?: string | undefined;
2459
+ linkedEntity?: string | undefined;
2460
+ config?: Record<string, Record<string, unknown>> | undefined;
2461
+ effects?: Record<string, unknown[]> | undefined;
2397
2462
  events?: Record<string, string> | undefined;
2398
2463
  appliesTo?: string[] | undefined;
2464
+ listens?: unknown[] | undefined;
2465
+ emitsScope?: "internal" | "external" | undefined;
2399
2466
  }, {
2400
2467
  ref: string;
2401
2468
  name?: string | undefined;
2402
2469
  linkedEntity?: string | undefined;
2403
2470
  config?: Record<string, Record<string, unknown>> | undefined;
2471
+ effects?: Record<string, unknown[]> | undefined;
2404
2472
  events?: Record<string, string> | undefined;
2405
2473
  appliesTo?: string[] | undefined;
2474
+ listens?: unknown[] | undefined;
2475
+ emitsScope?: "internal" | "external" | undefined;
2406
2476
  }>;
2407
2477
  /**
2408
2478
  * Simplified trait reference - supports string, reference object, or inline Trait definition
@@ -2839,6 +2909,13 @@ declare const TraitSchema: z.ZodObject<{
2839
2909
  }[] | undefined;
2840
2910
  scope?: "internal" | "external" | undefined;
2841
2911
  }[] | undefined;
2912
+ listens?: {
2913
+ event: string;
2914
+ triggers: string;
2915
+ guard?: SExpr | undefined;
2916
+ scope?: "internal" | "external" | undefined;
2917
+ payloadMapping?: Record<string, string> | undefined;
2918
+ }[] | undefined;
2842
2919
  description_visual_prompt?: string | undefined;
2843
2920
  requiredFields?: {
2844
2921
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -2909,13 +2986,6 @@ declare const TraitSchema: z.ZodObject<{
2909
2986
  appliesTo?: string[] | undefined;
2910
2987
  emits?: string[] | undefined;
2911
2988
  }[] | undefined;
2912
- listens?: {
2913
- event: string;
2914
- triggers: string;
2915
- guard?: SExpr | undefined;
2916
- scope?: "internal" | "external" | undefined;
2917
- payloadMapping?: Record<string, string> | undefined;
2918
- }[] | undefined;
2919
2989
  }, {
2920
2990
  name: string;
2921
2991
  ui?: Record<string, unknown> | undefined;
@@ -2934,6 +3004,13 @@ declare const TraitSchema: z.ZodObject<{
2934
3004
  }[] | undefined;
2935
3005
  scope?: "internal" | "external" | undefined;
2936
3006
  }[] | undefined;
3007
+ listens?: {
3008
+ event: string;
3009
+ triggers: string;
3010
+ guard?: SExpr | undefined;
3011
+ scope?: "internal" | "external" | undefined;
3012
+ payloadMapping?: Record<string, string> | undefined;
3013
+ }[] | undefined;
2937
3014
  description_visual_prompt?: string | undefined;
2938
3015
  requiredFields?: {
2939
3016
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -3004,13 +3081,6 @@ declare const TraitSchema: z.ZodObject<{
3004
3081
  appliesTo?: string[] | undefined;
3005
3082
  emits?: string[] | undefined;
3006
3083
  }[] | undefined;
3007
- listens?: {
3008
- event: string;
3009
- triggers: string;
3010
- guard?: SExpr | undefined;
3011
- scope?: "internal" | "external" | undefined;
3012
- payloadMapping?: Record<string, string> | undefined;
3013
- }[] | undefined;
3014
3084
  }>;
3015
3085
  declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3016
3086
  ref: z.ZodString;
@@ -3397,6 +3467,13 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3397
3467
  }[] | undefined;
3398
3468
  scope?: "internal" | "external" | undefined;
3399
3469
  }[] | undefined;
3470
+ listens?: {
3471
+ event: string;
3472
+ triggers: string;
3473
+ guard?: SExpr | undefined;
3474
+ scope?: "internal" | "external" | undefined;
3475
+ payloadMapping?: Record<string, string> | undefined;
3476
+ }[] | undefined;
3400
3477
  description_visual_prompt?: string | undefined;
3401
3478
  requiredFields?: {
3402
3479
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -3467,13 +3544,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3467
3544
  appliesTo?: string[] | undefined;
3468
3545
  emits?: string[] | undefined;
3469
3546
  }[] | undefined;
3470
- listens?: {
3471
- event: string;
3472
- triggers: string;
3473
- guard?: SExpr | undefined;
3474
- scope?: "internal" | "external" | undefined;
3475
- payloadMapping?: Record<string, string> | undefined;
3476
- }[] | undefined;
3477
3547
  }, {
3478
3548
  name: string;
3479
3549
  ui?: Record<string, unknown> | undefined;
@@ -3492,6 +3562,13 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3492
3562
  }[] | undefined;
3493
3563
  scope?: "internal" | "external" | undefined;
3494
3564
  }[] | undefined;
3565
+ listens?: {
3566
+ event: string;
3567
+ triggers: string;
3568
+ guard?: SExpr | undefined;
3569
+ scope?: "internal" | "external" | undefined;
3570
+ payloadMapping?: Record<string, string> | undefined;
3571
+ }[] | undefined;
3495
3572
  description_visual_prompt?: string | undefined;
3496
3573
  requiredFields?: {
3497
3574
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -3562,13 +3639,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3562
3639
  appliesTo?: string[] | undefined;
3563
3640
  emits?: string[] | undefined;
3564
3641
  }[] | undefined;
3565
- listens?: {
3566
- event: string;
3567
- triggers: string;
3568
- guard?: SExpr | undefined;
3569
- scope?: "internal" | "external" | undefined;
3570
- payloadMapping?: Record<string, string> | undefined;
3571
- }[] | undefined;
3572
3642
  }>]>;
3573
3643
  /**
3574
3644
  * Check if a trait ref is an inline Trait definition
@@ -4025,6 +4095,13 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4025
4095
  }[] | undefined;
4026
4096
  scope?: "internal" | "external" | undefined;
4027
4097
  }[] | undefined;
4098
+ listens?: {
4099
+ event: string;
4100
+ triggers: string;
4101
+ guard?: SExpr | undefined;
4102
+ scope?: "internal" | "external" | undefined;
4103
+ payloadMapping?: Record<string, string> | undefined;
4104
+ }[] | undefined;
4028
4105
  description_visual_prompt?: string | undefined;
4029
4106
  requiredFields?: {
4030
4107
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -4095,13 +4172,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4095
4172
  appliesTo?: string[] | undefined;
4096
4173
  emits?: string[] | undefined;
4097
4174
  }[] | undefined;
4098
- listens?: {
4099
- event: string;
4100
- triggers: string;
4101
- guard?: SExpr | undefined;
4102
- scope?: "internal" | "external" | undefined;
4103
- payloadMapping?: Record<string, string> | undefined;
4104
- }[] | undefined;
4105
4175
  }, {
4106
4176
  name: string;
4107
4177
  ui?: Record<string, unknown> | undefined;
@@ -4120,6 +4190,13 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4120
4190
  }[] | undefined;
4121
4191
  scope?: "internal" | "external" | undefined;
4122
4192
  }[] | undefined;
4193
+ listens?: {
4194
+ event: string;
4195
+ triggers: string;
4196
+ guard?: SExpr | undefined;
4197
+ scope?: "internal" | "external" | undefined;
4198
+ payloadMapping?: Record<string, string> | undefined;
4199
+ }[] | undefined;
4123
4200
  description_visual_prompt?: string | undefined;
4124
4201
  requiredFields?: {
4125
4202
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -4190,13 +4267,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4190
4267
  appliesTo?: string[] | undefined;
4191
4268
  emits?: string[] | undefined;
4192
4269
  }[] | undefined;
4193
- listens?: {
4194
- event: string;
4195
- triggers: string;
4196
- guard?: SExpr | undefined;
4197
- scope?: "internal" | "external" | undefined;
4198
- payloadMapping?: Record<string, string> | undefined;
4199
- }[] | undefined;
4200
4270
  }>]>;
4201
4271
 
4202
4272
  /**
@@ -5326,16 +5396,50 @@ declare const ServiceDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
5326
5396
  env?: Record<string, string> | undefined;
5327
5397
  }>]>;
5328
5398
  /**
5329
- * ServiceRef - Service can be inline definition OR reference to imported service.
5399
+ * ServiceRef - Service can be inline definition, reference object with overrides,
5400
+ * or bare string reference to an imported service.
5330
5401
  *
5331
5402
  * Reference format: "Alias.services.ServiceName"
5332
5403
  */
5333
- type ServiceRef = ServiceDefinition | string;
5404
+ type ServiceRef = ServiceDefinition | ServiceRefObject | string;
5405
+ /**
5406
+ * Phase F: Service reference object with override fields.
5407
+ *
5408
+ * Mirrors the Rust `ServiceRefObject` at
5409
+ * `orbital-rust/crates/orbital-core/src/schema/types.rs:353-375`. A caller
5410
+ * imports a service via `uses[]`, references it by `ref`, and supplies
5411
+ * any subset of these fields to override the imported service's defaults
5412
+ * during inlining.
5413
+ *
5414
+ * @example
5415
+ * ```typescript
5416
+ * const ref: ServiceRefObject = {
5417
+ * ref: "Weather.services.openweather",
5418
+ * baseUrl: "https://staging.weather.example.com",
5419
+ * headers: { "X-Tenant": "acme" },
5420
+ * };
5421
+ * ```
5422
+ */
5423
+ interface ServiceRefObject {
5424
+ /** Reference to imported service: "Alias.services.ServiceName" */
5425
+ ref: string;
5426
+ /** Override the service description */
5427
+ description?: string;
5428
+ /** Override the REST baseUrl */
5429
+ baseUrl?: string;
5430
+ /** Override or merge default headers (caller wins on key collision) */
5431
+ headers?: Record<string, string>;
5432
+ /** Override the WebSocket url */
5433
+ url?: string;
5434
+ /** Override the MCP server path */
5435
+ serverPath?: string;
5436
+ }
5334
5437
  /**
5335
- * Checks if a service reference is a string.
5438
+ * Checks if a service reference is a bare string reference.
5336
5439
  *
5337
5440
  * Type guard to determine if a service reference is a string reference
5338
- * (format: "Alias.services.ServiceName") rather than an inline service definition.
5441
+ * (format: "Alias.services.ServiceName") rather than an inline service
5442
+ * definition or a reference object.
5339
5443
  *
5340
5444
  * @param {ServiceRef} service - Service reference to check
5341
5445
  * @returns {boolean} True if service is a string reference, false otherwise
@@ -5343,12 +5447,42 @@ type ServiceRef = ServiceDefinition | string;
5343
5447
  * @example
5344
5448
  * isServiceReference("Weather.services.openweather"); // returns true
5345
5449
  * isServiceReference({ name: "weather", type: "rest" }); // returns false
5450
+ * isServiceReference({ ref: "Weather.services.openweather" }); // returns false
5346
5451
  */
5347
5452
  declare function isServiceReference(service: ServiceRef): service is string;
5453
+ /**
5454
+ * Phase F: Type guard for `ServiceRefObject` (the override-carrying form).
5455
+ *
5456
+ * @param {ServiceRef} service - Service reference to check
5457
+ * @returns {boolean} True if service is a ServiceRefObject
5458
+ */
5459
+ declare function isServiceReferenceObject(service: ServiceRef): service is ServiceRefObject;
5348
5460
  /**
5349
5461
  * Validate service reference format: "Alias.services.ServiceName"
5350
5462
  */
5351
5463
  declare const ServiceRefStringSchema: z.ZodString;
5464
+ declare const ServiceRefObjectSchema: z.ZodObject<{
5465
+ ref: z.ZodString;
5466
+ description: z.ZodOptional<z.ZodString>;
5467
+ baseUrl: z.ZodOptional<z.ZodString>;
5468
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5469
+ url: z.ZodOptional<z.ZodString>;
5470
+ serverPath: z.ZodOptional<z.ZodString>;
5471
+ }, "strip", z.ZodTypeAny, {
5472
+ ref: string;
5473
+ url?: string | undefined;
5474
+ description?: string | undefined;
5475
+ baseUrl?: string | undefined;
5476
+ headers?: Record<string, string> | undefined;
5477
+ serverPath?: string | undefined;
5478
+ }, {
5479
+ ref: string;
5480
+ url?: string | undefined;
5481
+ description?: string | undefined;
5482
+ baseUrl?: string | undefined;
5483
+ headers?: Record<string, string> | undefined;
5484
+ serverPath?: string | undefined;
5485
+ }>;
5352
5486
  declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5353
5487
  name: z.ZodString;
5354
5488
  type: z.ZodLiteral<"rest">;
@@ -5475,7 +5609,28 @@ declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.Z
5475
5609
  capabilities: string[];
5476
5610
  description?: string | undefined;
5477
5611
  env?: Record<string, string> | undefined;
5478
- }>]>, z.ZodString]>;
5612
+ }>]>, z.ZodObject<{
5613
+ ref: z.ZodString;
5614
+ description: z.ZodOptional<z.ZodString>;
5615
+ baseUrl: z.ZodOptional<z.ZodString>;
5616
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5617
+ url: z.ZodOptional<z.ZodString>;
5618
+ serverPath: z.ZodOptional<z.ZodString>;
5619
+ }, "strip", z.ZodTypeAny, {
5620
+ ref: string;
5621
+ url?: string | undefined;
5622
+ description?: string | undefined;
5623
+ baseUrl?: string | undefined;
5624
+ headers?: Record<string, string> | undefined;
5625
+ serverPath?: string | undefined;
5626
+ }, {
5627
+ ref: string;
5628
+ url?: string | undefined;
5629
+ description?: string | undefined;
5630
+ baseUrl?: string | undefined;
5631
+ headers?: Record<string, string> | undefined;
5632
+ serverPath?: string | undefined;
5633
+ }>, z.ZodString]>;
5479
5634
  /**
5480
5635
  * Parses a service reference into its components.
5481
5636
  *
@@ -5699,8 +5854,13 @@ declare function isEntityReferenceAny(entity: EntityRef): entity is string | Ent
5699
5854
  declare const EntityRefStringSchema: z.ZodString;
5700
5855
  /**
5701
5856
  * Validate EntityCall (extends form) shape.
5857
+ *
5858
+ * Phase F.4 refines:
5859
+ * - The `fields` override array must not contain duplicate field names
5860
+ * (case-sensitive). Duplicates would silently shadow each other during
5861
+ * the inliner's field-merge step, so reject at the schema boundary.
5702
5862
  */
5703
- declare const EntityCallSchema: z.ZodObject<{
5863
+ declare const EntityCallSchema: z.ZodEffects<z.ZodObject<{
5704
5864
  extends: z.ZodString;
5705
5865
  name: z.ZodOptional<z.ZodString>;
5706
5866
  fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">>;
@@ -5718,6 +5878,18 @@ declare const EntityCallSchema: z.ZodObject<{
5718
5878
  persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5719
5879
  collection?: string | undefined;
5720
5880
  fields?: EntityField[] | undefined;
5881
+ }>, {
5882
+ extends: string;
5883
+ name?: string | undefined;
5884
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5885
+ collection?: string | undefined;
5886
+ fields?: EntityField[] | undefined;
5887
+ }, {
5888
+ extends: string;
5889
+ name?: string | undefined;
5890
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5891
+ collection?: string | undefined;
5892
+ fields?: EntityField[] | undefined;
5721
5893
  }>;
5722
5894
  declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5723
5895
  name: z.ZodString;
@@ -5782,7 +5954,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5782
5954
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
5783
5955
  variant?: string | undefined;
5784
5956
  } | undefined;
5785
- }>, z.ZodString, z.ZodObject<{
5957
+ }>, z.ZodString, z.ZodEffects<z.ZodObject<{
5786
5958
  extends: z.ZodString;
5787
5959
  name: z.ZodOptional<z.ZodString>;
5788
5960
  fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">>;
@@ -5800,6 +5972,18 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
5800
5972
  persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5801
5973
  collection?: string | undefined;
5802
5974
  fields?: EntityField[] | undefined;
5975
+ }>, {
5976
+ extends: string;
5977
+ name?: string | undefined;
5978
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5979
+ collection?: string | undefined;
5980
+ fields?: EntityField[] | undefined;
5981
+ }, {
5982
+ extends: string;
5983
+ name?: string | undefined;
5984
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
5985
+ collection?: string | undefined;
5986
+ fields?: EntityField[] | undefined;
5803
5987
  }>]>;
5804
5988
  /**
5805
5989
  * PageRefObject - Reference to imported page with optional override arguments.
@@ -6296,6 +6480,13 @@ declare const PageRefObjectSchema: z.ZodObject<{
6296
6480
  }[] | undefined;
6297
6481
  scope?: "internal" | "external" | undefined;
6298
6482
  }[] | undefined;
6483
+ listens?: {
6484
+ event: string;
6485
+ triggers: string;
6486
+ guard?: SExpr | undefined;
6487
+ scope?: "internal" | "external" | undefined;
6488
+ payloadMapping?: Record<string, string> | undefined;
6489
+ }[] | undefined;
6299
6490
  description_visual_prompt?: string | undefined;
6300
6491
  requiredFields?: {
6301
6492
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -6366,13 +6557,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
6366
6557
  appliesTo?: string[] | undefined;
6367
6558
  emits?: string[] | undefined;
6368
6559
  }[] | undefined;
6369
- listens?: {
6370
- event: string;
6371
- triggers: string;
6372
- guard?: SExpr | undefined;
6373
- scope?: "internal" | "external" | undefined;
6374
- payloadMapping?: Record<string, string> | undefined;
6375
- }[] | undefined;
6376
6560
  }, {
6377
6561
  name: string;
6378
6562
  ui?: Record<string, unknown> | undefined;
@@ -6391,6 +6575,13 @@ declare const PageRefObjectSchema: z.ZodObject<{
6391
6575
  }[] | undefined;
6392
6576
  scope?: "internal" | "external" | undefined;
6393
6577
  }[] | undefined;
6578
+ listens?: {
6579
+ event: string;
6580
+ triggers: string;
6581
+ guard?: SExpr | undefined;
6582
+ scope?: "internal" | "external" | undefined;
6583
+ payloadMapping?: Record<string, string> | undefined;
6584
+ }[] | undefined;
6394
6585
  description_visual_prompt?: string | undefined;
6395
6586
  requiredFields?: {
6396
6587
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -6461,13 +6652,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
6461
6652
  appliesTo?: string[] | undefined;
6462
6653
  emits?: string[] | undefined;
6463
6654
  }[] | undefined;
6464
- listens?: {
6465
- event: string;
6466
- triggers: string;
6467
- guard?: SExpr | undefined;
6468
- scope?: "internal" | "external" | undefined;
6469
- payloadMapping?: Record<string, string> | undefined;
6470
- }[] | undefined;
6471
6655
  }>]>, "many">>;
6472
6656
  }, "strip", z.ZodTypeAny, {
6473
6657
  ref: string;
@@ -6491,6 +6675,13 @@ declare const PageRefObjectSchema: z.ZodObject<{
6491
6675
  }[] | undefined;
6492
6676
  scope?: "internal" | "external" | undefined;
6493
6677
  }[] | undefined;
6678
+ listens?: {
6679
+ event: string;
6680
+ triggers: string;
6681
+ guard?: SExpr | undefined;
6682
+ scope?: "internal" | "external" | undefined;
6683
+ payloadMapping?: Record<string, string> | undefined;
6684
+ }[] | undefined;
6494
6685
  description_visual_prompt?: string | undefined;
6495
6686
  requiredFields?: {
6496
6687
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -6561,13 +6752,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
6561
6752
  appliesTo?: string[] | undefined;
6562
6753
  emits?: string[] | undefined;
6563
6754
  }[] | undefined;
6564
- listens?: {
6565
- event: string;
6566
- triggers: string;
6567
- guard?: SExpr | undefined;
6568
- scope?: "internal" | "external" | undefined;
6569
- payloadMapping?: Record<string, string> | undefined;
6570
- }[] | undefined;
6571
6755
  } | {
6572
6756
  ref: string;
6573
6757
  name?: string | undefined;
@@ -6597,6 +6781,13 @@ declare const PageRefObjectSchema: z.ZodObject<{
6597
6781
  }[] | undefined;
6598
6782
  scope?: "internal" | "external" | undefined;
6599
6783
  }[] | undefined;
6784
+ listens?: {
6785
+ event: string;
6786
+ triggers: string;
6787
+ guard?: SExpr | undefined;
6788
+ scope?: "internal" | "external" | undefined;
6789
+ payloadMapping?: Record<string, string> | undefined;
6790
+ }[] | undefined;
6600
6791
  description_visual_prompt?: string | undefined;
6601
6792
  requiredFields?: {
6602
6793
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -6667,13 +6858,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
6667
6858
  appliesTo?: string[] | undefined;
6668
6859
  emits?: string[] | undefined;
6669
6860
  }[] | undefined;
6670
- listens?: {
6671
- event: string;
6672
- triggers: string;
6673
- guard?: SExpr | undefined;
6674
- scope?: "internal" | "external" | undefined;
6675
- payloadMapping?: Record<string, string> | undefined;
6676
- }[] | undefined;
6677
6861
  } | {
6678
6862
  ref: string;
6679
6863
  name?: string | undefined;
@@ -7115,6 +7299,13 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7115
7299
  }[] | undefined;
7116
7300
  scope?: "internal" | "external" | undefined;
7117
7301
  }[] | undefined;
7302
+ listens?: {
7303
+ event: string;
7304
+ triggers: string;
7305
+ guard?: SExpr | undefined;
7306
+ scope?: "internal" | "external" | undefined;
7307
+ payloadMapping?: Record<string, string> | undefined;
7308
+ }[] | undefined;
7118
7309
  description_visual_prompt?: string | undefined;
7119
7310
  requiredFields?: {
7120
7311
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -7185,13 +7376,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7185
7376
  appliesTo?: string[] | undefined;
7186
7377
  emits?: string[] | undefined;
7187
7378
  }[] | undefined;
7188
- listens?: {
7189
- event: string;
7190
- triggers: string;
7191
- guard?: SExpr | undefined;
7192
- scope?: "internal" | "external" | undefined;
7193
- payloadMapping?: Record<string, string> | undefined;
7194
- }[] | undefined;
7195
7379
  }, {
7196
7380
  name: string;
7197
7381
  ui?: Record<string, unknown> | undefined;
@@ -7210,6 +7394,13 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7210
7394
  }[] | undefined;
7211
7395
  scope?: "internal" | "external" | undefined;
7212
7396
  }[] | undefined;
7397
+ listens?: {
7398
+ event: string;
7399
+ triggers: string;
7400
+ guard?: SExpr | undefined;
7401
+ scope?: "internal" | "external" | undefined;
7402
+ payloadMapping?: Record<string, string> | undefined;
7403
+ }[] | undefined;
7213
7404
  description_visual_prompt?: string | undefined;
7214
7405
  requiredFields?: {
7215
7406
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -7280,13 +7471,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7280
7471
  appliesTo?: string[] | undefined;
7281
7472
  emits?: string[] | undefined;
7282
7473
  }[] | undefined;
7283
- listens?: {
7284
- event: string;
7285
- triggers: string;
7286
- guard?: SExpr | undefined;
7287
- scope?: "internal" | "external" | undefined;
7288
- payloadMapping?: Record<string, string> | undefined;
7289
- }[] | undefined;
7290
7474
  }>]>, "many">>;
7291
7475
  }, "strip", z.ZodTypeAny, {
7292
7476
  ref: string;
@@ -7310,6 +7494,13 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7310
7494
  }[] | undefined;
7311
7495
  scope?: "internal" | "external" | undefined;
7312
7496
  }[] | undefined;
7497
+ listens?: {
7498
+ event: string;
7499
+ triggers: string;
7500
+ guard?: SExpr | undefined;
7501
+ scope?: "internal" | "external" | undefined;
7502
+ payloadMapping?: Record<string, string> | undefined;
7503
+ }[] | undefined;
7313
7504
  description_visual_prompt?: string | undefined;
7314
7505
  requiredFields?: {
7315
7506
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -7380,13 +7571,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7380
7571
  appliesTo?: string[] | undefined;
7381
7572
  emits?: string[] | undefined;
7382
7573
  }[] | undefined;
7383
- listens?: {
7384
- event: string;
7385
- triggers: string;
7386
- guard?: SExpr | undefined;
7387
- scope?: "internal" | "external" | undefined;
7388
- payloadMapping?: Record<string, string> | undefined;
7389
- }[] | undefined;
7390
7574
  } | {
7391
7575
  ref: string;
7392
7576
  name?: string | undefined;
@@ -7416,6 +7600,13 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7416
7600
  }[] | undefined;
7417
7601
  scope?: "internal" | "external" | undefined;
7418
7602
  }[] | undefined;
7603
+ listens?: {
7604
+ event: string;
7605
+ triggers: string;
7606
+ guard?: SExpr | undefined;
7607
+ scope?: "internal" | "external" | undefined;
7608
+ payloadMapping?: Record<string, string> | undefined;
7609
+ }[] | undefined;
7419
7610
  description_visual_prompt?: string | undefined;
7420
7611
  requiredFields?: {
7421
7612
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -7486,13 +7677,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7486
7677
  appliesTo?: string[] | undefined;
7487
7678
  emits?: string[] | undefined;
7488
7679
  }[] | undefined;
7489
- listens?: {
7490
- event: string;
7491
- triggers: string;
7492
- guard?: SExpr | undefined;
7493
- scope?: "internal" | "external" | undefined;
7494
- payloadMapping?: Record<string, string> | undefined;
7495
- }[] | undefined;
7496
7680
  } | {
7497
7681
  ref: string;
7498
7682
  name?: string | undefined;
@@ -8093,7 +8277,28 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
8093
8277
  capabilities: string[];
8094
8278
  description?: string | undefined;
8095
8279
  env?: Record<string, string> | undefined;
8096
- }>]>, z.ZodString]>, "many">>;
8280
+ }>]>, z.ZodObject<{
8281
+ ref: z.ZodString;
8282
+ description: z.ZodOptional<z.ZodString>;
8283
+ baseUrl: z.ZodOptional<z.ZodString>;
8284
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8285
+ url: z.ZodOptional<z.ZodString>;
8286
+ serverPath: z.ZodOptional<z.ZodString>;
8287
+ }, "strip", z.ZodTypeAny, {
8288
+ ref: string;
8289
+ url?: string | undefined;
8290
+ description?: string | undefined;
8291
+ baseUrl?: string | undefined;
8292
+ headers?: Record<string, string> | undefined;
8293
+ serverPath?: string | undefined;
8294
+ }, {
8295
+ ref: string;
8296
+ url?: string | undefined;
8297
+ description?: string | undefined;
8298
+ baseUrl?: string | undefined;
8299
+ headers?: Record<string, string> | undefined;
8300
+ serverPath?: string | undefined;
8301
+ }>, z.ZodString]>, "many">>;
8097
8302
  entity: z.ZodUnion<[z.ZodObject<{
8098
8303
  name: z.ZodString;
8099
8304
  persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
@@ -8157,7 +8362,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
8157
8362
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
8158
8363
  variant?: string | undefined;
8159
8364
  } | undefined;
8160
- }>, z.ZodString, z.ZodObject<{
8365
+ }>, z.ZodString, z.ZodEffects<z.ZodObject<{
8161
8366
  extends: z.ZodString;
8162
8367
  name: z.ZodOptional<z.ZodString>;
8163
8368
  fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">>;
@@ -8175,6 +8380,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
8175
8380
  persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
8176
8381
  collection?: string | undefined;
8177
8382
  fields?: EntityField[] | undefined;
8383
+ }>, {
8384
+ extends: string;
8385
+ name?: string | undefined;
8386
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
8387
+ collection?: string | undefined;
8388
+ fields?: EntityField[] | undefined;
8389
+ }, {
8390
+ extends: string;
8391
+ name?: string | undefined;
8392
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
8393
+ collection?: string | undefined;
8394
+ fields?: EntityField[] | undefined;
8178
8395
  }>]>;
8179
8396
  traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
8180
8397
  ref: z.ZodString;
@@ -8561,6 +8778,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
8561
8778
  }[] | undefined;
8562
8779
  scope?: "internal" | "external" | undefined;
8563
8780
  }[] | undefined;
8781
+ listens?: {
8782
+ event: string;
8783
+ triggers: string;
8784
+ guard?: SExpr | undefined;
8785
+ scope?: "internal" | "external" | undefined;
8786
+ payloadMapping?: Record<string, string> | undefined;
8787
+ }[] | undefined;
8564
8788
  description_visual_prompt?: string | undefined;
8565
8789
  requiredFields?: {
8566
8790
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -8631,13 +8855,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
8631
8855
  appliesTo?: string[] | undefined;
8632
8856
  emits?: string[] | undefined;
8633
8857
  }[] | undefined;
8634
- listens?: {
8635
- event: string;
8636
- triggers: string;
8637
- guard?: SExpr | undefined;
8638
- scope?: "internal" | "external" | undefined;
8639
- payloadMapping?: Record<string, string> | undefined;
8640
- }[] | undefined;
8641
8858
  }, {
8642
8859
  name: string;
8643
8860
  ui?: Record<string, unknown> | undefined;
@@ -8656,6 +8873,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
8656
8873
  }[] | undefined;
8657
8874
  scope?: "internal" | "external" | undefined;
8658
8875
  }[] | undefined;
8876
+ listens?: {
8877
+ event: string;
8878
+ triggers: string;
8879
+ guard?: SExpr | undefined;
8880
+ scope?: "internal" | "external" | undefined;
8881
+ payloadMapping?: Record<string, string> | undefined;
8882
+ }[] | undefined;
8659
8883
  description_visual_prompt?: string | undefined;
8660
8884
  requiredFields?: {
8661
8885
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -8726,13 +8950,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
8726
8950
  appliesTo?: string[] | undefined;
8727
8951
  emits?: string[] | undefined;
8728
8952
  }[] | undefined;
8729
- listens?: {
8730
- event: string;
8731
- triggers: string;
8732
- guard?: SExpr | undefined;
8733
- scope?: "internal" | "external" | undefined;
8734
- payloadMapping?: Record<string, string> | undefined;
8735
- }[] | undefined;
8736
8953
  }>]>, "many">;
8737
8954
  pages: z.ZodArray<z.ZodUnion<[z.ZodObject<{
8738
8955
  name: z.ZodString;
@@ -9167,6 +9384,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9167
9384
  }[] | undefined;
9168
9385
  scope?: "internal" | "external" | undefined;
9169
9386
  }[] | undefined;
9387
+ listens?: {
9388
+ event: string;
9389
+ triggers: string;
9390
+ guard?: SExpr | undefined;
9391
+ scope?: "internal" | "external" | undefined;
9392
+ payloadMapping?: Record<string, string> | undefined;
9393
+ }[] | undefined;
9170
9394
  description_visual_prompt?: string | undefined;
9171
9395
  requiredFields?: {
9172
9396
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -9237,13 +9461,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9237
9461
  appliesTo?: string[] | undefined;
9238
9462
  emits?: string[] | undefined;
9239
9463
  }[] | undefined;
9240
- listens?: {
9241
- event: string;
9242
- triggers: string;
9243
- guard?: SExpr | undefined;
9244
- scope?: "internal" | "external" | undefined;
9245
- payloadMapping?: Record<string, string> | undefined;
9246
- }[] | undefined;
9247
9464
  }, {
9248
9465
  name: string;
9249
9466
  ui?: Record<string, unknown> | undefined;
@@ -9262,6 +9479,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9262
9479
  }[] | undefined;
9263
9480
  scope?: "internal" | "external" | undefined;
9264
9481
  }[] | undefined;
9482
+ listens?: {
9483
+ event: string;
9484
+ triggers: string;
9485
+ guard?: SExpr | undefined;
9486
+ scope?: "internal" | "external" | undefined;
9487
+ payloadMapping?: Record<string, string> | undefined;
9488
+ }[] | undefined;
9265
9489
  description_visual_prompt?: string | undefined;
9266
9490
  requiredFields?: {
9267
9491
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -9332,13 +9556,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9332
9556
  appliesTo?: string[] | undefined;
9333
9557
  emits?: string[] | undefined;
9334
9558
  }[] | undefined;
9335
- listens?: {
9336
- event: string;
9337
- triggers: string;
9338
- guard?: SExpr | undefined;
9339
- scope?: "internal" | "external" | undefined;
9340
- payloadMapping?: Record<string, string> | undefined;
9341
- }[] | undefined;
9342
9559
  }>]>, "many">>;
9343
9560
  }, "strip", z.ZodTypeAny, {
9344
9561
  ref: string;
@@ -9362,6 +9579,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9362
9579
  }[] | undefined;
9363
9580
  scope?: "internal" | "external" | undefined;
9364
9581
  }[] | undefined;
9582
+ listens?: {
9583
+ event: string;
9584
+ triggers: string;
9585
+ guard?: SExpr | undefined;
9586
+ scope?: "internal" | "external" | undefined;
9587
+ payloadMapping?: Record<string, string> | undefined;
9588
+ }[] | undefined;
9365
9589
  description_visual_prompt?: string | undefined;
9366
9590
  requiredFields?: {
9367
9591
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -9432,13 +9656,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9432
9656
  appliesTo?: string[] | undefined;
9433
9657
  emits?: string[] | undefined;
9434
9658
  }[] | undefined;
9435
- listens?: {
9436
- event: string;
9437
- triggers: string;
9438
- guard?: SExpr | undefined;
9439
- scope?: "internal" | "external" | undefined;
9440
- payloadMapping?: Record<string, string> | undefined;
9441
- }[] | undefined;
9442
9659
  } | {
9443
9660
  ref: string;
9444
9661
  name?: string | undefined;
@@ -9468,6 +9685,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9468
9685
  }[] | undefined;
9469
9686
  scope?: "internal" | "external" | undefined;
9470
9687
  }[] | undefined;
9688
+ listens?: {
9689
+ event: string;
9690
+ triggers: string;
9691
+ guard?: SExpr | undefined;
9692
+ scope?: "internal" | "external" | undefined;
9693
+ payloadMapping?: Record<string, string> | undefined;
9694
+ }[] | undefined;
9471
9695
  description_visual_prompt?: string | undefined;
9472
9696
  requiredFields?: {
9473
9697
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -9538,13 +9762,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9538
9762
  appliesTo?: string[] | undefined;
9539
9763
  emits?: string[] | undefined;
9540
9764
  }[] | undefined;
9541
- listens?: {
9542
- event: string;
9543
- triggers: string;
9544
- guard?: SExpr | undefined;
9545
- scope?: "internal" | "external" | undefined;
9546
- payloadMapping?: Record<string, string> | undefined;
9547
- }[] | undefined;
9548
9765
  } | {
9549
9766
  ref: string;
9550
9767
  name?: string | undefined;
@@ -9838,6 +10055,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9838
10055
  }[] | undefined;
9839
10056
  scope?: "internal" | "external" | undefined;
9840
10057
  }[] | undefined;
10058
+ listens?: {
10059
+ event: string;
10060
+ triggers: string;
10061
+ guard?: SExpr | undefined;
10062
+ scope?: "internal" | "external" | undefined;
10063
+ payloadMapping?: Record<string, string> | undefined;
10064
+ }[] | undefined;
9841
10065
  description_visual_prompt?: string | undefined;
9842
10066
  requiredFields?: {
9843
10067
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -9908,13 +10132,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9908
10132
  appliesTo?: string[] | undefined;
9909
10133
  emits?: string[] | undefined;
9910
10134
  }[] | undefined;
9911
- listens?: {
9912
- event: string;
9913
- triggers: string;
9914
- guard?: SExpr | undefined;
9915
- scope?: "internal" | "external" | undefined;
9916
- payloadMapping?: Record<string, string> | undefined;
9917
- }[] | undefined;
9918
10135
  } | {
9919
10136
  ref: string;
9920
10137
  name?: string | undefined;
@@ -9956,6 +10173,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9956
10173
  }[] | undefined;
9957
10174
  scope?: "internal" | "external" | undefined;
9958
10175
  }[] | undefined;
10176
+ listens?: {
10177
+ event: string;
10178
+ triggers: string;
10179
+ guard?: SExpr | undefined;
10180
+ scope?: "internal" | "external" | undefined;
10181
+ payloadMapping?: Record<string, string> | undefined;
10182
+ }[] | undefined;
9959
10183
  description_visual_prompt?: string | undefined;
9960
10184
  requiredFields?: {
9961
10185
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -10026,13 +10250,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10026
10250
  appliesTo?: string[] | undefined;
10027
10251
  emits?: string[] | undefined;
10028
10252
  }[] | undefined;
10029
- listens?: {
10030
- event: string;
10031
- triggers: string;
10032
- guard?: SExpr | undefined;
10033
- scope?: "internal" | "external" | undefined;
10034
- payloadMapping?: Record<string, string> | undefined;
10035
- }[] | undefined;
10036
10253
  } | {
10037
10254
  ref: string;
10038
10255
  name?: string | undefined;
@@ -10126,6 +10343,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10126
10343
  capabilities: string[];
10127
10344
  description?: string | undefined;
10128
10345
  env?: Record<string, string> | undefined;
10346
+ } | {
10347
+ ref: string;
10348
+ url?: string | undefined;
10349
+ description?: string | undefined;
10350
+ baseUrl?: string | undefined;
10351
+ headers?: Record<string, string> | undefined;
10352
+ serverPath?: string | undefined;
10129
10353
  })[] | undefined;
10130
10354
  exposes?: string[] | undefined;
10131
10355
  domainContext?: {
@@ -10206,6 +10430,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10206
10430
  }[] | undefined;
10207
10431
  scope?: "internal" | "external" | undefined;
10208
10432
  }[] | undefined;
10433
+ listens?: {
10434
+ event: string;
10435
+ triggers: string;
10436
+ guard?: SExpr | undefined;
10437
+ scope?: "internal" | "external" | undefined;
10438
+ payloadMapping?: Record<string, string> | undefined;
10439
+ }[] | undefined;
10209
10440
  description_visual_prompt?: string | undefined;
10210
10441
  requiredFields?: {
10211
10442
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -10276,13 +10507,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10276
10507
  appliesTo?: string[] | undefined;
10277
10508
  emits?: string[] | undefined;
10278
10509
  }[] | undefined;
10279
- listens?: {
10280
- event: string;
10281
- triggers: string;
10282
- guard?: SExpr | undefined;
10283
- scope?: "internal" | "external" | undefined;
10284
- payloadMapping?: Record<string, string> | undefined;
10285
- }[] | undefined;
10286
10510
  } | {
10287
10511
  ref: string;
10288
10512
  name?: string | undefined;
@@ -10324,6 +10548,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10324
10548
  }[] | undefined;
10325
10549
  scope?: "internal" | "external" | undefined;
10326
10550
  }[] | undefined;
10551
+ listens?: {
10552
+ event: string;
10553
+ triggers: string;
10554
+ guard?: SExpr | undefined;
10555
+ scope?: "internal" | "external" | undefined;
10556
+ payloadMapping?: Record<string, string> | undefined;
10557
+ }[] | undefined;
10327
10558
  description_visual_prompt?: string | undefined;
10328
10559
  requiredFields?: {
10329
10560
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -10394,13 +10625,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10394
10625
  appliesTo?: string[] | undefined;
10395
10626
  emits?: string[] | undefined;
10396
10627
  }[] | undefined;
10397
- listens?: {
10398
- event: string;
10399
- triggers: string;
10400
- guard?: SExpr | undefined;
10401
- scope?: "internal" | "external" | undefined;
10402
- payloadMapping?: Record<string, string> | undefined;
10403
- }[] | undefined;
10404
10628
  } | {
10405
10629
  ref: string;
10406
10630
  name?: string | undefined;
@@ -10494,6 +10718,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10494
10718
  capabilities: string[];
10495
10719
  description?: string | undefined;
10496
10720
  env?: Record<string, string> | undefined;
10721
+ } | {
10722
+ ref: string;
10723
+ url?: string | undefined;
10724
+ description?: string | undefined;
10725
+ baseUrl?: string | undefined;
10726
+ headers?: Record<string, string> | undefined;
10727
+ serverPath?: string | undefined;
10497
10728
  })[] | undefined;
10498
10729
  exposes?: string[] | undefined;
10499
10730
  domainContext?: {
@@ -10744,7 +10975,28 @@ declare const OrbitalSchema$1: z.ZodObject<{
10744
10975
  capabilities: string[];
10745
10976
  description?: string | undefined;
10746
10977
  env?: Record<string, string> | undefined;
10747
- }>]>, z.ZodString]>, "many">>;
10978
+ }>]>, z.ZodObject<{
10979
+ ref: z.ZodString;
10980
+ description: z.ZodOptional<z.ZodString>;
10981
+ baseUrl: z.ZodOptional<z.ZodString>;
10982
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
10983
+ url: z.ZodOptional<z.ZodString>;
10984
+ serverPath: z.ZodOptional<z.ZodString>;
10985
+ }, "strip", z.ZodTypeAny, {
10986
+ ref: string;
10987
+ url?: string | undefined;
10988
+ description?: string | undefined;
10989
+ baseUrl?: string | undefined;
10990
+ headers?: Record<string, string> | undefined;
10991
+ serverPath?: string | undefined;
10992
+ }, {
10993
+ ref: string;
10994
+ url?: string | undefined;
10995
+ description?: string | undefined;
10996
+ baseUrl?: string | undefined;
10997
+ headers?: Record<string, string> | undefined;
10998
+ serverPath?: string | undefined;
10999
+ }>, z.ZodString]>, "many">>;
10748
11000
  entity: z.ZodUnion<[z.ZodObject<{
10749
11001
  name: z.ZodString;
10750
11002
  persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
@@ -10808,7 +11060,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
10808
11060
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
10809
11061
  variant?: string | undefined;
10810
11062
  } | undefined;
10811
- }>, z.ZodString, z.ZodObject<{
11063
+ }>, z.ZodString, z.ZodEffects<z.ZodObject<{
10812
11064
  extends: z.ZodString;
10813
11065
  name: z.ZodOptional<z.ZodString>;
10814
11066
  fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">>;
@@ -10826,6 +11078,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
10826
11078
  persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
10827
11079
  collection?: string | undefined;
10828
11080
  fields?: EntityField[] | undefined;
11081
+ }>, {
11082
+ extends: string;
11083
+ name?: string | undefined;
11084
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
11085
+ collection?: string | undefined;
11086
+ fields?: EntityField[] | undefined;
11087
+ }, {
11088
+ extends: string;
11089
+ name?: string | undefined;
11090
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
11091
+ collection?: string | undefined;
11092
+ fields?: EntityField[] | undefined;
10829
11093
  }>]>;
10830
11094
  traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
10831
11095
  ref: z.ZodString;
@@ -11212,6 +11476,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
11212
11476
  }[] | undefined;
11213
11477
  scope?: "internal" | "external" | undefined;
11214
11478
  }[] | undefined;
11479
+ listens?: {
11480
+ event: string;
11481
+ triggers: string;
11482
+ guard?: SExpr | undefined;
11483
+ scope?: "internal" | "external" | undefined;
11484
+ payloadMapping?: Record<string, string> | undefined;
11485
+ }[] | undefined;
11215
11486
  description_visual_prompt?: string | undefined;
11216
11487
  requiredFields?: {
11217
11488
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -11282,13 +11553,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
11282
11553
  appliesTo?: string[] | undefined;
11283
11554
  emits?: string[] | undefined;
11284
11555
  }[] | undefined;
11285
- listens?: {
11286
- event: string;
11287
- triggers: string;
11288
- guard?: SExpr | undefined;
11289
- scope?: "internal" | "external" | undefined;
11290
- payloadMapping?: Record<string, string> | undefined;
11291
- }[] | undefined;
11292
11556
  }, {
11293
11557
  name: string;
11294
11558
  ui?: Record<string, unknown> | undefined;
@@ -11307,6 +11571,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
11307
11571
  }[] | undefined;
11308
11572
  scope?: "internal" | "external" | undefined;
11309
11573
  }[] | undefined;
11574
+ listens?: {
11575
+ event: string;
11576
+ triggers: string;
11577
+ guard?: SExpr | undefined;
11578
+ scope?: "internal" | "external" | undefined;
11579
+ payloadMapping?: Record<string, string> | undefined;
11580
+ }[] | undefined;
11310
11581
  description_visual_prompt?: string | undefined;
11311
11582
  requiredFields?: {
11312
11583
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -11377,13 +11648,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
11377
11648
  appliesTo?: string[] | undefined;
11378
11649
  emits?: string[] | undefined;
11379
11650
  }[] | undefined;
11380
- listens?: {
11381
- event: string;
11382
- triggers: string;
11383
- guard?: SExpr | undefined;
11384
- scope?: "internal" | "external" | undefined;
11385
- payloadMapping?: Record<string, string> | undefined;
11386
- }[] | undefined;
11387
11651
  }>]>, "many">;
11388
11652
  pages: z.ZodArray<z.ZodUnion<[z.ZodObject<{
11389
11653
  name: z.ZodString;
@@ -11818,6 +12082,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
11818
12082
  }[] | undefined;
11819
12083
  scope?: "internal" | "external" | undefined;
11820
12084
  }[] | undefined;
12085
+ listens?: {
12086
+ event: string;
12087
+ triggers: string;
12088
+ guard?: SExpr | undefined;
12089
+ scope?: "internal" | "external" | undefined;
12090
+ payloadMapping?: Record<string, string> | undefined;
12091
+ }[] | undefined;
11821
12092
  description_visual_prompt?: string | undefined;
11822
12093
  requiredFields?: {
11823
12094
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -11888,13 +12159,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
11888
12159
  appliesTo?: string[] | undefined;
11889
12160
  emits?: string[] | undefined;
11890
12161
  }[] | undefined;
11891
- listens?: {
11892
- event: string;
11893
- triggers: string;
11894
- guard?: SExpr | undefined;
11895
- scope?: "internal" | "external" | undefined;
11896
- payloadMapping?: Record<string, string> | undefined;
11897
- }[] | undefined;
11898
12162
  }, {
11899
12163
  name: string;
11900
12164
  ui?: Record<string, unknown> | undefined;
@@ -11913,6 +12177,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
11913
12177
  }[] | undefined;
11914
12178
  scope?: "internal" | "external" | undefined;
11915
12179
  }[] | undefined;
12180
+ listens?: {
12181
+ event: string;
12182
+ triggers: string;
12183
+ guard?: SExpr | undefined;
12184
+ scope?: "internal" | "external" | undefined;
12185
+ payloadMapping?: Record<string, string> | undefined;
12186
+ }[] | undefined;
11916
12187
  description_visual_prompt?: string | undefined;
11917
12188
  requiredFields?: {
11918
12189
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -11983,13 +12254,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
11983
12254
  appliesTo?: string[] | undefined;
11984
12255
  emits?: string[] | undefined;
11985
12256
  }[] | undefined;
11986
- listens?: {
11987
- event: string;
11988
- triggers: string;
11989
- guard?: SExpr | undefined;
11990
- scope?: "internal" | "external" | undefined;
11991
- payloadMapping?: Record<string, string> | undefined;
11992
- }[] | undefined;
11993
12257
  }>]>, "many">>;
11994
12258
  }, "strip", z.ZodTypeAny, {
11995
12259
  ref: string;
@@ -12013,6 +12277,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
12013
12277
  }[] | undefined;
12014
12278
  scope?: "internal" | "external" | undefined;
12015
12279
  }[] | undefined;
12280
+ listens?: {
12281
+ event: string;
12282
+ triggers: string;
12283
+ guard?: SExpr | undefined;
12284
+ scope?: "internal" | "external" | undefined;
12285
+ payloadMapping?: Record<string, string> | undefined;
12286
+ }[] | undefined;
12016
12287
  description_visual_prompt?: string | undefined;
12017
12288
  requiredFields?: {
12018
12289
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -12083,13 +12354,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
12083
12354
  appliesTo?: string[] | undefined;
12084
12355
  emits?: string[] | undefined;
12085
12356
  }[] | undefined;
12086
- listens?: {
12087
- event: string;
12088
- triggers: string;
12089
- guard?: SExpr | undefined;
12090
- scope?: "internal" | "external" | undefined;
12091
- payloadMapping?: Record<string, string> | undefined;
12092
- }[] | undefined;
12093
12357
  } | {
12094
12358
  ref: string;
12095
12359
  name?: string | undefined;
@@ -12119,6 +12383,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
12119
12383
  }[] | undefined;
12120
12384
  scope?: "internal" | "external" | undefined;
12121
12385
  }[] | undefined;
12386
+ listens?: {
12387
+ event: string;
12388
+ triggers: string;
12389
+ guard?: SExpr | undefined;
12390
+ scope?: "internal" | "external" | undefined;
12391
+ payloadMapping?: Record<string, string> | undefined;
12392
+ }[] | undefined;
12122
12393
  description_visual_prompt?: string | undefined;
12123
12394
  requiredFields?: {
12124
12395
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -12189,13 +12460,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
12189
12460
  appliesTo?: string[] | undefined;
12190
12461
  emits?: string[] | undefined;
12191
12462
  }[] | undefined;
12192
- listens?: {
12193
- event: string;
12194
- triggers: string;
12195
- guard?: SExpr | undefined;
12196
- scope?: "internal" | "external" | undefined;
12197
- payloadMapping?: Record<string, string> | undefined;
12198
- }[] | undefined;
12199
12463
  } | {
12200
12464
  ref: string;
12201
12465
  name?: string | undefined;
@@ -12489,6 +12753,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
12489
12753
  }[] | undefined;
12490
12754
  scope?: "internal" | "external" | undefined;
12491
12755
  }[] | undefined;
12756
+ listens?: {
12757
+ event: string;
12758
+ triggers: string;
12759
+ guard?: SExpr | undefined;
12760
+ scope?: "internal" | "external" | undefined;
12761
+ payloadMapping?: Record<string, string> | undefined;
12762
+ }[] | undefined;
12492
12763
  description_visual_prompt?: string | undefined;
12493
12764
  requiredFields?: {
12494
12765
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -12559,13 +12830,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
12559
12830
  appliesTo?: string[] | undefined;
12560
12831
  emits?: string[] | undefined;
12561
12832
  }[] | undefined;
12562
- listens?: {
12563
- event: string;
12564
- triggers: string;
12565
- guard?: SExpr | undefined;
12566
- scope?: "internal" | "external" | undefined;
12567
- payloadMapping?: Record<string, string> | undefined;
12568
- }[] | undefined;
12569
12833
  } | {
12570
12834
  ref: string;
12571
12835
  name?: string | undefined;
@@ -12607,6 +12871,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
12607
12871
  }[] | undefined;
12608
12872
  scope?: "internal" | "external" | undefined;
12609
12873
  }[] | undefined;
12874
+ listens?: {
12875
+ event: string;
12876
+ triggers: string;
12877
+ guard?: SExpr | undefined;
12878
+ scope?: "internal" | "external" | undefined;
12879
+ payloadMapping?: Record<string, string> | undefined;
12880
+ }[] | undefined;
12610
12881
  description_visual_prompt?: string | undefined;
12611
12882
  requiredFields?: {
12612
12883
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -12677,13 +12948,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
12677
12948
  appliesTo?: string[] | undefined;
12678
12949
  emits?: string[] | undefined;
12679
12950
  }[] | undefined;
12680
- listens?: {
12681
- event: string;
12682
- triggers: string;
12683
- guard?: SExpr | undefined;
12684
- scope?: "internal" | "external" | undefined;
12685
- payloadMapping?: Record<string, string> | undefined;
12686
- }[] | undefined;
12687
12951
  } | {
12688
12952
  ref: string;
12689
12953
  name?: string | undefined;
@@ -12777,6 +13041,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
12777
13041
  capabilities: string[];
12778
13042
  description?: string | undefined;
12779
13043
  env?: Record<string, string> | undefined;
13044
+ } | {
13045
+ ref: string;
13046
+ url?: string | undefined;
13047
+ description?: string | undefined;
13048
+ baseUrl?: string | undefined;
13049
+ headers?: Record<string, string> | undefined;
13050
+ serverPath?: string | undefined;
12780
13051
  })[] | undefined;
12781
13052
  exposes?: string[] | undefined;
12782
13053
  domainContext?: {
@@ -12857,6 +13128,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
12857
13128
  }[] | undefined;
12858
13129
  scope?: "internal" | "external" | undefined;
12859
13130
  }[] | undefined;
13131
+ listens?: {
13132
+ event: string;
13133
+ triggers: string;
13134
+ guard?: SExpr | undefined;
13135
+ scope?: "internal" | "external" | undefined;
13136
+ payloadMapping?: Record<string, string> | undefined;
13137
+ }[] | undefined;
12860
13138
  description_visual_prompt?: string | undefined;
12861
13139
  requiredFields?: {
12862
13140
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -12927,13 +13205,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
12927
13205
  appliesTo?: string[] | undefined;
12928
13206
  emits?: string[] | undefined;
12929
13207
  }[] | undefined;
12930
- listens?: {
12931
- event: string;
12932
- triggers: string;
12933
- guard?: SExpr | undefined;
12934
- scope?: "internal" | "external" | undefined;
12935
- payloadMapping?: Record<string, string> | undefined;
12936
- }[] | undefined;
12937
13208
  } | {
12938
13209
  ref: string;
12939
13210
  name?: string | undefined;
@@ -12975,6 +13246,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
12975
13246
  }[] | undefined;
12976
13247
  scope?: "internal" | "external" | undefined;
12977
13248
  }[] | undefined;
13249
+ listens?: {
13250
+ event: string;
13251
+ triggers: string;
13252
+ guard?: SExpr | undefined;
13253
+ scope?: "internal" | "external" | undefined;
13254
+ payloadMapping?: Record<string, string> | undefined;
13255
+ }[] | undefined;
12978
13256
  description_visual_prompt?: string | undefined;
12979
13257
  requiredFields?: {
12980
13258
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -13045,13 +13323,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
13045
13323
  appliesTo?: string[] | undefined;
13046
13324
  emits?: string[] | undefined;
13047
13325
  }[] | undefined;
13048
- listens?: {
13049
- event: string;
13050
- triggers: string;
13051
- guard?: SExpr | undefined;
13052
- scope?: "internal" | "external" | undefined;
13053
- payloadMapping?: Record<string, string> | undefined;
13054
- }[] | undefined;
13055
13326
  } | {
13056
13327
  ref: string;
13057
13328
  name?: string | undefined;
@@ -13145,6 +13416,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
13145
13416
  capabilities: string[];
13146
13417
  description?: string | undefined;
13147
13418
  env?: Record<string, string> | undefined;
13419
+ } | {
13420
+ ref: string;
13421
+ url?: string | undefined;
13422
+ description?: string | undefined;
13423
+ baseUrl?: string | undefined;
13424
+ headers?: Record<string, string> | undefined;
13425
+ serverPath?: string | undefined;
13148
13426
  })[] | undefined;
13149
13427
  exposes?: string[] | undefined;
13150
13428
  domainContext?: {
@@ -13402,7 +13680,28 @@ declare const OrbitalUnitSchema: z.ZodObject<{
13402
13680
  capabilities: string[];
13403
13681
  description?: string | undefined;
13404
13682
  env?: Record<string, string> | undefined;
13405
- }>]>, z.ZodString]>, "many">>;
13683
+ }>]>, z.ZodObject<{
13684
+ ref: z.ZodString;
13685
+ description: z.ZodOptional<z.ZodString>;
13686
+ baseUrl: z.ZodOptional<z.ZodString>;
13687
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
13688
+ url: z.ZodOptional<z.ZodString>;
13689
+ serverPath: z.ZodOptional<z.ZodString>;
13690
+ }, "strip", z.ZodTypeAny, {
13691
+ ref: string;
13692
+ url?: string | undefined;
13693
+ description?: string | undefined;
13694
+ baseUrl?: string | undefined;
13695
+ headers?: Record<string, string> | undefined;
13696
+ serverPath?: string | undefined;
13697
+ }, {
13698
+ ref: string;
13699
+ url?: string | undefined;
13700
+ description?: string | undefined;
13701
+ baseUrl?: string | undefined;
13702
+ headers?: Record<string, string> | undefined;
13703
+ serverPath?: string | undefined;
13704
+ }>, z.ZodString]>, "many">>;
13406
13705
  entity: z.ZodUnion<[z.ZodObject<{
13407
13706
  name: z.ZodString;
13408
13707
  persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
@@ -13466,7 +13765,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
13466
13765
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
13467
13766
  variant?: string | undefined;
13468
13767
  } | undefined;
13469
- }>, z.ZodString, z.ZodObject<{
13768
+ }>, z.ZodString, z.ZodEffects<z.ZodObject<{
13470
13769
  extends: z.ZodString;
13471
13770
  name: z.ZodOptional<z.ZodString>;
13472
13771
  fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">>;
@@ -13484,6 +13783,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
13484
13783
  persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
13485
13784
  collection?: string | undefined;
13486
13785
  fields?: EntityField[] | undefined;
13786
+ }>, {
13787
+ extends: string;
13788
+ name?: string | undefined;
13789
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
13790
+ collection?: string | undefined;
13791
+ fields?: EntityField[] | undefined;
13792
+ }, {
13793
+ extends: string;
13794
+ name?: string | undefined;
13795
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
13796
+ collection?: string | undefined;
13797
+ fields?: EntityField[] | undefined;
13487
13798
  }>]>;
13488
13799
  traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
13489
13800
  ref: z.ZodString;
@@ -13870,6 +14181,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
13870
14181
  }[] | undefined;
13871
14182
  scope?: "internal" | "external" | undefined;
13872
14183
  }[] | undefined;
14184
+ listens?: {
14185
+ event: string;
14186
+ triggers: string;
14187
+ guard?: SExpr | undefined;
14188
+ scope?: "internal" | "external" | undefined;
14189
+ payloadMapping?: Record<string, string> | undefined;
14190
+ }[] | undefined;
13873
14191
  description_visual_prompt?: string | undefined;
13874
14192
  requiredFields?: {
13875
14193
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -13940,13 +14258,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
13940
14258
  appliesTo?: string[] | undefined;
13941
14259
  emits?: string[] | undefined;
13942
14260
  }[] | undefined;
13943
- listens?: {
13944
- event: string;
13945
- triggers: string;
13946
- guard?: SExpr | undefined;
13947
- scope?: "internal" | "external" | undefined;
13948
- payloadMapping?: Record<string, string> | undefined;
13949
- }[] | undefined;
13950
14261
  }, {
13951
14262
  name: string;
13952
14263
  ui?: Record<string, unknown> | undefined;
@@ -13965,6 +14276,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
13965
14276
  }[] | undefined;
13966
14277
  scope?: "internal" | "external" | undefined;
13967
14278
  }[] | undefined;
14279
+ listens?: {
14280
+ event: string;
14281
+ triggers: string;
14282
+ guard?: SExpr | undefined;
14283
+ scope?: "internal" | "external" | undefined;
14284
+ payloadMapping?: Record<string, string> | undefined;
14285
+ }[] | undefined;
13968
14286
  description_visual_prompt?: string | undefined;
13969
14287
  requiredFields?: {
13970
14288
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -14035,13 +14353,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14035
14353
  appliesTo?: string[] | undefined;
14036
14354
  emits?: string[] | undefined;
14037
14355
  }[] | undefined;
14038
- listens?: {
14039
- event: string;
14040
- triggers: string;
14041
- guard?: SExpr | undefined;
14042
- scope?: "internal" | "external" | undefined;
14043
- payloadMapping?: Record<string, string> | undefined;
14044
- }[] | undefined;
14045
14356
  }>]>, "many">;
14046
14357
  pages: z.ZodArray<z.ZodUnion<[z.ZodObject<{
14047
14358
  name: z.ZodString;
@@ -14476,6 +14787,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14476
14787
  }[] | undefined;
14477
14788
  scope?: "internal" | "external" | undefined;
14478
14789
  }[] | undefined;
14790
+ listens?: {
14791
+ event: string;
14792
+ triggers: string;
14793
+ guard?: SExpr | undefined;
14794
+ scope?: "internal" | "external" | undefined;
14795
+ payloadMapping?: Record<string, string> | undefined;
14796
+ }[] | undefined;
14479
14797
  description_visual_prompt?: string | undefined;
14480
14798
  requiredFields?: {
14481
14799
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -14546,13 +14864,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14546
14864
  appliesTo?: string[] | undefined;
14547
14865
  emits?: string[] | undefined;
14548
14866
  }[] | undefined;
14549
- listens?: {
14550
- event: string;
14551
- triggers: string;
14552
- guard?: SExpr | undefined;
14553
- scope?: "internal" | "external" | undefined;
14554
- payloadMapping?: Record<string, string> | undefined;
14555
- }[] | undefined;
14556
14867
  }, {
14557
14868
  name: string;
14558
14869
  ui?: Record<string, unknown> | undefined;
@@ -14571,6 +14882,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14571
14882
  }[] | undefined;
14572
14883
  scope?: "internal" | "external" | undefined;
14573
14884
  }[] | undefined;
14885
+ listens?: {
14886
+ event: string;
14887
+ triggers: string;
14888
+ guard?: SExpr | undefined;
14889
+ scope?: "internal" | "external" | undefined;
14890
+ payloadMapping?: Record<string, string> | undefined;
14891
+ }[] | undefined;
14574
14892
  description_visual_prompt?: string | undefined;
14575
14893
  requiredFields?: {
14576
14894
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -14641,13 +14959,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14641
14959
  appliesTo?: string[] | undefined;
14642
14960
  emits?: string[] | undefined;
14643
14961
  }[] | undefined;
14644
- listens?: {
14645
- event: string;
14646
- triggers: string;
14647
- guard?: SExpr | undefined;
14648
- scope?: "internal" | "external" | undefined;
14649
- payloadMapping?: Record<string, string> | undefined;
14650
- }[] | undefined;
14651
14962
  }>]>, "many">>;
14652
14963
  }, "strip", z.ZodTypeAny, {
14653
14964
  ref: string;
@@ -14671,6 +14982,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14671
14982
  }[] | undefined;
14672
14983
  scope?: "internal" | "external" | undefined;
14673
14984
  }[] | undefined;
14985
+ listens?: {
14986
+ event: string;
14987
+ triggers: string;
14988
+ guard?: SExpr | undefined;
14989
+ scope?: "internal" | "external" | undefined;
14990
+ payloadMapping?: Record<string, string> | undefined;
14991
+ }[] | undefined;
14674
14992
  description_visual_prompt?: string | undefined;
14675
14993
  requiredFields?: {
14676
14994
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -14741,13 +15059,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14741
15059
  appliesTo?: string[] | undefined;
14742
15060
  emits?: string[] | undefined;
14743
15061
  }[] | undefined;
14744
- listens?: {
14745
- event: string;
14746
- triggers: string;
14747
- guard?: SExpr | undefined;
14748
- scope?: "internal" | "external" | undefined;
14749
- payloadMapping?: Record<string, string> | undefined;
14750
- }[] | undefined;
14751
15062
  } | {
14752
15063
  ref: string;
14753
15064
  name?: string | undefined;
@@ -14777,6 +15088,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14777
15088
  }[] | undefined;
14778
15089
  scope?: "internal" | "external" | undefined;
14779
15090
  }[] | undefined;
15091
+ listens?: {
15092
+ event: string;
15093
+ triggers: string;
15094
+ guard?: SExpr | undefined;
15095
+ scope?: "internal" | "external" | undefined;
15096
+ payloadMapping?: Record<string, string> | undefined;
15097
+ }[] | undefined;
14780
15098
  description_visual_prompt?: string | undefined;
14781
15099
  requiredFields?: {
14782
15100
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -14847,13 +15165,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14847
15165
  appliesTo?: string[] | undefined;
14848
15166
  emits?: string[] | undefined;
14849
15167
  }[] | undefined;
14850
- listens?: {
14851
- event: string;
14852
- triggers: string;
14853
- guard?: SExpr | undefined;
14854
- scope?: "internal" | "external" | undefined;
14855
- payloadMapping?: Record<string, string> | undefined;
14856
- }[] | undefined;
14857
15168
  } | {
14858
15169
  ref: string;
14859
15170
  name?: string | undefined;
@@ -15147,6 +15458,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15147
15458
  }[] | undefined;
15148
15459
  scope?: "internal" | "external" | undefined;
15149
15460
  }[] | undefined;
15461
+ listens?: {
15462
+ event: string;
15463
+ triggers: string;
15464
+ guard?: SExpr | undefined;
15465
+ scope?: "internal" | "external" | undefined;
15466
+ payloadMapping?: Record<string, string> | undefined;
15467
+ }[] | undefined;
15150
15468
  description_visual_prompt?: string | undefined;
15151
15469
  requiredFields?: {
15152
15470
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -15217,13 +15535,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15217
15535
  appliesTo?: string[] | undefined;
15218
15536
  emits?: string[] | undefined;
15219
15537
  }[] | undefined;
15220
- listens?: {
15221
- event: string;
15222
- triggers: string;
15223
- guard?: SExpr | undefined;
15224
- scope?: "internal" | "external" | undefined;
15225
- payloadMapping?: Record<string, string> | undefined;
15226
- }[] | undefined;
15227
15538
  } | {
15228
15539
  ref: string;
15229
15540
  name?: string | undefined;
@@ -15265,6 +15576,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15265
15576
  }[] | undefined;
15266
15577
  scope?: "internal" | "external" | undefined;
15267
15578
  }[] | undefined;
15579
+ listens?: {
15580
+ event: string;
15581
+ triggers: string;
15582
+ guard?: SExpr | undefined;
15583
+ scope?: "internal" | "external" | undefined;
15584
+ payloadMapping?: Record<string, string> | undefined;
15585
+ }[] | undefined;
15268
15586
  description_visual_prompt?: string | undefined;
15269
15587
  requiredFields?: {
15270
15588
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -15335,13 +15653,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15335
15653
  appliesTo?: string[] | undefined;
15336
15654
  emits?: string[] | undefined;
15337
15655
  }[] | undefined;
15338
- listens?: {
15339
- event: string;
15340
- triggers: string;
15341
- guard?: SExpr | undefined;
15342
- scope?: "internal" | "external" | undefined;
15343
- payloadMapping?: Record<string, string> | undefined;
15344
- }[] | undefined;
15345
15656
  } | {
15346
15657
  ref: string;
15347
15658
  name?: string | undefined;
@@ -15435,6 +15746,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15435
15746
  capabilities: string[];
15436
15747
  description?: string | undefined;
15437
15748
  env?: Record<string, string> | undefined;
15749
+ } | {
15750
+ ref: string;
15751
+ url?: string | undefined;
15752
+ description?: string | undefined;
15753
+ baseUrl?: string | undefined;
15754
+ headers?: Record<string, string> | undefined;
15755
+ serverPath?: string | undefined;
15438
15756
  })[] | undefined;
15439
15757
  exposes?: string[] | undefined;
15440
15758
  domainContext?: {
@@ -15515,6 +15833,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15515
15833
  }[] | undefined;
15516
15834
  scope?: "internal" | "external" | undefined;
15517
15835
  }[] | undefined;
15836
+ listens?: {
15837
+ event: string;
15838
+ triggers: string;
15839
+ guard?: SExpr | undefined;
15840
+ scope?: "internal" | "external" | undefined;
15841
+ payloadMapping?: Record<string, string> | undefined;
15842
+ }[] | undefined;
15518
15843
  description_visual_prompt?: string | undefined;
15519
15844
  requiredFields?: {
15520
15845
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -15585,13 +15910,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15585
15910
  appliesTo?: string[] | undefined;
15586
15911
  emits?: string[] | undefined;
15587
15912
  }[] | undefined;
15588
- listens?: {
15589
- event: string;
15590
- triggers: string;
15591
- guard?: SExpr | undefined;
15592
- scope?: "internal" | "external" | undefined;
15593
- payloadMapping?: Record<string, string> | undefined;
15594
- }[] | undefined;
15595
15913
  } | {
15596
15914
  ref: string;
15597
15915
  name?: string | undefined;
@@ -15633,6 +15951,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15633
15951
  }[] | undefined;
15634
15952
  scope?: "internal" | "external" | undefined;
15635
15953
  }[] | undefined;
15954
+ listens?: {
15955
+ event: string;
15956
+ triggers: string;
15957
+ guard?: SExpr | undefined;
15958
+ scope?: "internal" | "external" | undefined;
15959
+ payloadMapping?: Record<string, string> | undefined;
15960
+ }[] | undefined;
15636
15961
  description_visual_prompt?: string | undefined;
15637
15962
  requiredFields?: {
15638
15963
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -15703,13 +16028,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15703
16028
  appliesTo?: string[] | undefined;
15704
16029
  emits?: string[] | undefined;
15705
16030
  }[] | undefined;
15706
- listens?: {
15707
- event: string;
15708
- triggers: string;
15709
- guard?: SExpr | undefined;
15710
- scope?: "internal" | "external" | undefined;
15711
- payloadMapping?: Record<string, string> | undefined;
15712
- }[] | undefined;
15713
16031
  } | {
15714
16032
  ref: string;
15715
16033
  name?: string | undefined;
@@ -15803,6 +16121,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15803
16121
  capabilities: string[];
15804
16122
  description?: string | undefined;
15805
16123
  env?: Record<string, string> | undefined;
16124
+ } | {
16125
+ ref: string;
16126
+ url?: string | undefined;
16127
+ description?: string | undefined;
16128
+ baseUrl?: string | undefined;
16129
+ headers?: Record<string, string> | undefined;
16130
+ serverPath?: string | undefined;
15806
16131
  })[] | undefined;
15807
16132
  exposes?: string[] | undefined;
15808
16133
  domainContext?: {
@@ -16301,7 +16626,28 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
16301
16626
  capabilities: string[];
16302
16627
  description?: string | undefined;
16303
16628
  env?: Record<string, string> | undefined;
16304
- }>]>, z.ZodString]>, "many">>;
16629
+ }>]>, z.ZodObject<{
16630
+ ref: z.ZodString;
16631
+ description: z.ZodOptional<z.ZodString>;
16632
+ baseUrl: z.ZodOptional<z.ZodString>;
16633
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
16634
+ url: z.ZodOptional<z.ZodString>;
16635
+ serverPath: z.ZodOptional<z.ZodString>;
16636
+ }, "strip", z.ZodTypeAny, {
16637
+ ref: string;
16638
+ url?: string | undefined;
16639
+ description?: string | undefined;
16640
+ baseUrl?: string | undefined;
16641
+ headers?: Record<string, string> | undefined;
16642
+ serverPath?: string | undefined;
16643
+ }, {
16644
+ ref: string;
16645
+ url?: string | undefined;
16646
+ description?: string | undefined;
16647
+ baseUrl?: string | undefined;
16648
+ headers?: Record<string, string> | undefined;
16649
+ serverPath?: string | undefined;
16650
+ }>, z.ZodString]>, "many">>;
16305
16651
  entity: z.ZodUnion<[z.ZodObject<{
16306
16652
  name: z.ZodString;
16307
16653
  persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime", "singleton", "instance", "local"]>>;
@@ -16365,7 +16711,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
16365
16711
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
16366
16712
  variant?: string | undefined;
16367
16713
  } | undefined;
16368
- }>, z.ZodString, z.ZodObject<{
16714
+ }>, z.ZodString, z.ZodEffects<z.ZodObject<{
16369
16715
  extends: z.ZodString;
16370
16716
  name: z.ZodOptional<z.ZodString>;
16371
16717
  fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, EntityField>, "many">>;
@@ -16383,6 +16729,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
16383
16729
  persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
16384
16730
  collection?: string | undefined;
16385
16731
  fields?: EntityField[] | undefined;
16732
+ }>, {
16733
+ extends: string;
16734
+ name?: string | undefined;
16735
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
16736
+ collection?: string | undefined;
16737
+ fields?: EntityField[] | undefined;
16738
+ }, {
16739
+ extends: string;
16740
+ name?: string | undefined;
16741
+ persistence?: "persistent" | "runtime" | "singleton" | "instance" | "local" | undefined;
16742
+ collection?: string | undefined;
16743
+ fields?: EntityField[] | undefined;
16386
16744
  }>]>;
16387
16745
  traits: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<{
16388
16746
  ref: z.ZodString;
@@ -16769,6 +17127,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
16769
17127
  }[] | undefined;
16770
17128
  scope?: "internal" | "external" | undefined;
16771
17129
  }[] | undefined;
17130
+ listens?: {
17131
+ event: string;
17132
+ triggers: string;
17133
+ guard?: SExpr | undefined;
17134
+ scope?: "internal" | "external" | undefined;
17135
+ payloadMapping?: Record<string, string> | undefined;
17136
+ }[] | undefined;
16772
17137
  description_visual_prompt?: string | undefined;
16773
17138
  requiredFields?: {
16774
17139
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -16839,13 +17204,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
16839
17204
  appliesTo?: string[] | undefined;
16840
17205
  emits?: string[] | undefined;
16841
17206
  }[] | undefined;
16842
- listens?: {
16843
- event: string;
16844
- triggers: string;
16845
- guard?: SExpr | undefined;
16846
- scope?: "internal" | "external" | undefined;
16847
- payloadMapping?: Record<string, string> | undefined;
16848
- }[] | undefined;
16849
17207
  }, {
16850
17208
  name: string;
16851
17209
  ui?: Record<string, unknown> | undefined;
@@ -16864,6 +17222,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
16864
17222
  }[] | undefined;
16865
17223
  scope?: "internal" | "external" | undefined;
16866
17224
  }[] | undefined;
17225
+ listens?: {
17226
+ event: string;
17227
+ triggers: string;
17228
+ guard?: SExpr | undefined;
17229
+ scope?: "internal" | "external" | undefined;
17230
+ payloadMapping?: Record<string, string> | undefined;
17231
+ }[] | undefined;
16867
17232
  description_visual_prompt?: string | undefined;
16868
17233
  requiredFields?: {
16869
17234
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -16934,13 +17299,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
16934
17299
  appliesTo?: string[] | undefined;
16935
17300
  emits?: string[] | undefined;
16936
17301
  }[] | undefined;
16937
- listens?: {
16938
- event: string;
16939
- triggers: string;
16940
- guard?: SExpr | undefined;
16941
- scope?: "internal" | "external" | undefined;
16942
- payloadMapping?: Record<string, string> | undefined;
16943
- }[] | undefined;
16944
17302
  }>]>, "many">;
16945
17303
  pages: z.ZodArray<z.ZodUnion<[z.ZodObject<{
16946
17304
  name: z.ZodString;
@@ -17375,6 +17733,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17375
17733
  }[] | undefined;
17376
17734
  scope?: "internal" | "external" | undefined;
17377
17735
  }[] | undefined;
17736
+ listens?: {
17737
+ event: string;
17738
+ triggers: string;
17739
+ guard?: SExpr | undefined;
17740
+ scope?: "internal" | "external" | undefined;
17741
+ payloadMapping?: Record<string, string> | undefined;
17742
+ }[] | undefined;
17378
17743
  description_visual_prompt?: string | undefined;
17379
17744
  requiredFields?: {
17380
17745
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -17445,13 +17810,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17445
17810
  appliesTo?: string[] | undefined;
17446
17811
  emits?: string[] | undefined;
17447
17812
  }[] | undefined;
17448
- listens?: {
17449
- event: string;
17450
- triggers: string;
17451
- guard?: SExpr | undefined;
17452
- scope?: "internal" | "external" | undefined;
17453
- payloadMapping?: Record<string, string> | undefined;
17454
- }[] | undefined;
17455
17813
  }, {
17456
17814
  name: string;
17457
17815
  ui?: Record<string, unknown> | undefined;
@@ -17470,6 +17828,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17470
17828
  }[] | undefined;
17471
17829
  scope?: "internal" | "external" | undefined;
17472
17830
  }[] | undefined;
17831
+ listens?: {
17832
+ event: string;
17833
+ triggers: string;
17834
+ guard?: SExpr | undefined;
17835
+ scope?: "internal" | "external" | undefined;
17836
+ payloadMapping?: Record<string, string> | undefined;
17837
+ }[] | undefined;
17473
17838
  description_visual_prompt?: string | undefined;
17474
17839
  requiredFields?: {
17475
17840
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -17540,13 +17905,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17540
17905
  appliesTo?: string[] | undefined;
17541
17906
  emits?: string[] | undefined;
17542
17907
  }[] | undefined;
17543
- listens?: {
17544
- event: string;
17545
- triggers: string;
17546
- guard?: SExpr | undefined;
17547
- scope?: "internal" | "external" | undefined;
17548
- payloadMapping?: Record<string, string> | undefined;
17549
- }[] | undefined;
17550
17908
  }>]>, "many">>;
17551
17909
  }, "strip", z.ZodTypeAny, {
17552
17910
  ref: string;
@@ -17570,6 +17928,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17570
17928
  }[] | undefined;
17571
17929
  scope?: "internal" | "external" | undefined;
17572
17930
  }[] | undefined;
17931
+ listens?: {
17932
+ event: string;
17933
+ triggers: string;
17934
+ guard?: SExpr | undefined;
17935
+ scope?: "internal" | "external" | undefined;
17936
+ payloadMapping?: Record<string, string> | undefined;
17937
+ }[] | undefined;
17573
17938
  description_visual_prompt?: string | undefined;
17574
17939
  requiredFields?: {
17575
17940
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -17640,13 +18005,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17640
18005
  appliesTo?: string[] | undefined;
17641
18006
  emits?: string[] | undefined;
17642
18007
  }[] | undefined;
17643
- listens?: {
17644
- event: string;
17645
- triggers: string;
17646
- guard?: SExpr | undefined;
17647
- scope?: "internal" | "external" | undefined;
17648
- payloadMapping?: Record<string, string> | undefined;
17649
- }[] | undefined;
17650
18008
  } | {
17651
18009
  ref: string;
17652
18010
  name?: string | undefined;
@@ -17676,6 +18034,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17676
18034
  }[] | undefined;
17677
18035
  scope?: "internal" | "external" | undefined;
17678
18036
  }[] | undefined;
18037
+ listens?: {
18038
+ event: string;
18039
+ triggers: string;
18040
+ guard?: SExpr | undefined;
18041
+ scope?: "internal" | "external" | undefined;
18042
+ payloadMapping?: Record<string, string> | undefined;
18043
+ }[] | undefined;
17679
18044
  description_visual_prompt?: string | undefined;
17680
18045
  requiredFields?: {
17681
18046
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -17746,13 +18111,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17746
18111
  appliesTo?: string[] | undefined;
17747
18112
  emits?: string[] | undefined;
17748
18113
  }[] | undefined;
17749
- listens?: {
17750
- event: string;
17751
- triggers: string;
17752
- guard?: SExpr | undefined;
17753
- scope?: "internal" | "external" | undefined;
17754
- payloadMapping?: Record<string, string> | undefined;
17755
- }[] | undefined;
17756
18114
  } | {
17757
18115
  ref: string;
17758
18116
  name?: string | undefined;
@@ -18046,6 +18404,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18046
18404
  }[] | undefined;
18047
18405
  scope?: "internal" | "external" | undefined;
18048
18406
  }[] | undefined;
18407
+ listens?: {
18408
+ event: string;
18409
+ triggers: string;
18410
+ guard?: SExpr | undefined;
18411
+ scope?: "internal" | "external" | undefined;
18412
+ payloadMapping?: Record<string, string> | undefined;
18413
+ }[] | undefined;
18049
18414
  description_visual_prompt?: string | undefined;
18050
18415
  requiredFields?: {
18051
18416
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -18116,13 +18481,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18116
18481
  appliesTo?: string[] | undefined;
18117
18482
  emits?: string[] | undefined;
18118
18483
  }[] | undefined;
18119
- listens?: {
18120
- event: string;
18121
- triggers: string;
18122
- guard?: SExpr | undefined;
18123
- scope?: "internal" | "external" | undefined;
18124
- payloadMapping?: Record<string, string> | undefined;
18125
- }[] | undefined;
18126
18484
  } | {
18127
18485
  ref: string;
18128
18486
  name?: string | undefined;
@@ -18164,6 +18522,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18164
18522
  }[] | undefined;
18165
18523
  scope?: "internal" | "external" | undefined;
18166
18524
  }[] | undefined;
18525
+ listens?: {
18526
+ event: string;
18527
+ triggers: string;
18528
+ guard?: SExpr | undefined;
18529
+ scope?: "internal" | "external" | undefined;
18530
+ payloadMapping?: Record<string, string> | undefined;
18531
+ }[] | undefined;
18167
18532
  description_visual_prompt?: string | undefined;
18168
18533
  requiredFields?: {
18169
18534
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -18234,13 +18599,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18234
18599
  appliesTo?: string[] | undefined;
18235
18600
  emits?: string[] | undefined;
18236
18601
  }[] | undefined;
18237
- listens?: {
18238
- event: string;
18239
- triggers: string;
18240
- guard?: SExpr | undefined;
18241
- scope?: "internal" | "external" | undefined;
18242
- payloadMapping?: Record<string, string> | undefined;
18243
- }[] | undefined;
18244
18602
  } | {
18245
18603
  ref: string;
18246
18604
  name?: string | undefined;
@@ -18334,6 +18692,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18334
18692
  capabilities: string[];
18335
18693
  description?: string | undefined;
18336
18694
  env?: Record<string, string> | undefined;
18695
+ } | {
18696
+ ref: string;
18697
+ url?: string | undefined;
18698
+ description?: string | undefined;
18699
+ baseUrl?: string | undefined;
18700
+ headers?: Record<string, string> | undefined;
18701
+ serverPath?: string | undefined;
18337
18702
  })[] | undefined;
18338
18703
  exposes?: string[] | undefined;
18339
18704
  domainContext?: {
@@ -18414,6 +18779,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18414
18779
  }[] | undefined;
18415
18780
  scope?: "internal" | "external" | undefined;
18416
18781
  }[] | undefined;
18782
+ listens?: {
18783
+ event: string;
18784
+ triggers: string;
18785
+ guard?: SExpr | undefined;
18786
+ scope?: "internal" | "external" | undefined;
18787
+ payloadMapping?: Record<string, string> | undefined;
18788
+ }[] | undefined;
18417
18789
  description_visual_prompt?: string | undefined;
18418
18790
  requiredFields?: {
18419
18791
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -18484,13 +18856,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18484
18856
  appliesTo?: string[] | undefined;
18485
18857
  emits?: string[] | undefined;
18486
18858
  }[] | undefined;
18487
- listens?: {
18488
- event: string;
18489
- triggers: string;
18490
- guard?: SExpr | undefined;
18491
- scope?: "internal" | "external" | undefined;
18492
- payloadMapping?: Record<string, string> | undefined;
18493
- }[] | undefined;
18494
18859
  } | {
18495
18860
  ref: string;
18496
18861
  name?: string | undefined;
@@ -18532,6 +18897,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18532
18897
  }[] | undefined;
18533
18898
  scope?: "internal" | "external" | undefined;
18534
18899
  }[] | undefined;
18900
+ listens?: {
18901
+ event: string;
18902
+ triggers: string;
18903
+ guard?: SExpr | undefined;
18904
+ scope?: "internal" | "external" | undefined;
18905
+ payloadMapping?: Record<string, string> | undefined;
18906
+ }[] | undefined;
18535
18907
  description_visual_prompt?: string | undefined;
18536
18908
  requiredFields?: {
18537
18909
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -18602,13 +18974,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18602
18974
  appliesTo?: string[] | undefined;
18603
18975
  emits?: string[] | undefined;
18604
18976
  }[] | undefined;
18605
- listens?: {
18606
- event: string;
18607
- triggers: string;
18608
- guard?: SExpr | undefined;
18609
- scope?: "internal" | "external" | undefined;
18610
- payloadMapping?: Record<string, string> | undefined;
18611
- }[] | undefined;
18612
18977
  } | {
18613
18978
  ref: string;
18614
18979
  name?: string | undefined;
@@ -18702,6 +19067,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18702
19067
  capabilities: string[];
18703
19068
  description?: string | undefined;
18704
19069
  env?: Record<string, string> | undefined;
19070
+ } | {
19071
+ ref: string;
19072
+ url?: string | undefined;
19073
+ description?: string | undefined;
19074
+ baseUrl?: string | undefined;
19075
+ headers?: Record<string, string> | undefined;
19076
+ serverPath?: string | undefined;
18705
19077
  })[] | undefined;
18706
19078
  exposes?: string[] | undefined;
18707
19079
  domainContext?: {
@@ -18960,6 +19332,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18960
19332
  }[] | undefined;
18961
19333
  scope?: "internal" | "external" | undefined;
18962
19334
  }[] | undefined;
19335
+ listens?: {
19336
+ event: string;
19337
+ triggers: string;
19338
+ guard?: SExpr | undefined;
19339
+ scope?: "internal" | "external" | undefined;
19340
+ payloadMapping?: Record<string, string> | undefined;
19341
+ }[] | undefined;
18963
19342
  description_visual_prompt?: string | undefined;
18964
19343
  requiredFields?: {
18965
19344
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -19030,13 +19409,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19030
19409
  appliesTo?: string[] | undefined;
19031
19410
  emits?: string[] | undefined;
19032
19411
  }[] | undefined;
19033
- listens?: {
19034
- event: string;
19035
- triggers: string;
19036
- guard?: SExpr | undefined;
19037
- scope?: "internal" | "external" | undefined;
19038
- payloadMapping?: Record<string, string> | undefined;
19039
- }[] | undefined;
19040
19412
  } | {
19041
19413
  ref: string;
19042
19414
  name?: string | undefined;
@@ -19078,6 +19450,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19078
19450
  }[] | undefined;
19079
19451
  scope?: "internal" | "external" | undefined;
19080
19452
  }[] | undefined;
19453
+ listens?: {
19454
+ event: string;
19455
+ triggers: string;
19456
+ guard?: SExpr | undefined;
19457
+ scope?: "internal" | "external" | undefined;
19458
+ payloadMapping?: Record<string, string> | undefined;
19459
+ }[] | undefined;
19081
19460
  description_visual_prompt?: string | undefined;
19082
19461
  requiredFields?: {
19083
19462
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -19148,13 +19527,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19148
19527
  appliesTo?: string[] | undefined;
19149
19528
  emits?: string[] | undefined;
19150
19529
  }[] | undefined;
19151
- listens?: {
19152
- event: string;
19153
- triggers: string;
19154
- guard?: SExpr | undefined;
19155
- scope?: "internal" | "external" | undefined;
19156
- payloadMapping?: Record<string, string> | undefined;
19157
- }[] | undefined;
19158
19530
  } | {
19159
19531
  ref: string;
19160
19532
  name?: string | undefined;
@@ -19248,6 +19620,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19248
19620
  capabilities: string[];
19249
19621
  description?: string | undefined;
19250
19622
  env?: Record<string, string> | undefined;
19623
+ } | {
19624
+ ref: string;
19625
+ url?: string | undefined;
19626
+ description?: string | undefined;
19627
+ baseUrl?: string | undefined;
19628
+ headers?: Record<string, string> | undefined;
19629
+ serverPath?: string | undefined;
19251
19630
  })[] | undefined;
19252
19631
  exposes?: string[] | undefined;
19253
19632
  domainContext?: {
@@ -19417,6 +19796,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19417
19796
  }[] | undefined;
19418
19797
  scope?: "internal" | "external" | undefined;
19419
19798
  }[] | undefined;
19799
+ listens?: {
19800
+ event: string;
19801
+ triggers: string;
19802
+ guard?: SExpr | undefined;
19803
+ scope?: "internal" | "external" | undefined;
19804
+ payloadMapping?: Record<string, string> | undefined;
19805
+ }[] | undefined;
19420
19806
  description_visual_prompt?: string | undefined;
19421
19807
  requiredFields?: {
19422
19808
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -19487,13 +19873,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19487
19873
  appliesTo?: string[] | undefined;
19488
19874
  emits?: string[] | undefined;
19489
19875
  }[] | undefined;
19490
- listens?: {
19491
- event: string;
19492
- triggers: string;
19493
- guard?: SExpr | undefined;
19494
- scope?: "internal" | "external" | undefined;
19495
- payloadMapping?: Record<string, string> | undefined;
19496
- }[] | undefined;
19497
19876
  } | {
19498
19877
  ref: string;
19499
19878
  name?: string | undefined;
@@ -19535,6 +19914,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19535
19914
  }[] | undefined;
19536
19915
  scope?: "internal" | "external" | undefined;
19537
19916
  }[] | undefined;
19917
+ listens?: {
19918
+ event: string;
19919
+ triggers: string;
19920
+ guard?: SExpr | undefined;
19921
+ scope?: "internal" | "external" | undefined;
19922
+ payloadMapping?: Record<string, string> | undefined;
19923
+ }[] | undefined;
19538
19924
  description_visual_prompt?: string | undefined;
19539
19925
  requiredFields?: {
19540
19926
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -19605,13 +19991,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19605
19991
  appliesTo?: string[] | undefined;
19606
19992
  emits?: string[] | undefined;
19607
19993
  }[] | undefined;
19608
- listens?: {
19609
- event: string;
19610
- triggers: string;
19611
- guard?: SExpr | undefined;
19612
- scope?: "internal" | "external" | undefined;
19613
- payloadMapping?: Record<string, string> | undefined;
19614
- }[] | undefined;
19615
19994
  } | {
19616
19995
  ref: string;
19617
19996
  name?: string | undefined;
@@ -19705,6 +20084,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19705
20084
  capabilities: string[];
19706
20085
  description?: string | undefined;
19707
20086
  env?: Record<string, string> | undefined;
20087
+ } | {
20088
+ ref: string;
20089
+ url?: string | undefined;
20090
+ description?: string | undefined;
20091
+ baseUrl?: string | undefined;
20092
+ headers?: Record<string, string> | undefined;
20093
+ serverPath?: string | undefined;
19708
20094
  })[] | undefined;
19709
20095
  exposes?: string[] | undefined;
19710
20096
  domainContext?: {
@@ -19921,6 +20307,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
19921
20307
  }[] | undefined;
19922
20308
  scope?: "internal" | "external" | undefined;
19923
20309
  }[] | undefined;
20310
+ listens?: {
20311
+ event: string;
20312
+ triggers: string;
20313
+ guard?: SExpr | undefined;
20314
+ scope?: "internal" | "external" | undefined;
20315
+ payloadMapping?: Record<string, string> | undefined;
20316
+ }[] | undefined;
19924
20317
  description_visual_prompt?: string | undefined;
19925
20318
  requiredFields?: {
19926
20319
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -19991,13 +20384,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
19991
20384
  appliesTo?: string[] | undefined;
19992
20385
  emits?: string[] | undefined;
19993
20386
  }[] | undefined;
19994
- listens?: {
19995
- event: string;
19996
- triggers: string;
19997
- guard?: SExpr | undefined;
19998
- scope?: "internal" | "external" | undefined;
19999
- payloadMapping?: Record<string, string> | undefined;
20000
- }[] | undefined;
20001
20387
  } | {
20002
20388
  ref: string;
20003
20389
  name?: string | undefined;
@@ -20039,6 +20425,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20039
20425
  }[] | undefined;
20040
20426
  scope?: "internal" | "external" | undefined;
20041
20427
  }[] | undefined;
20428
+ listens?: {
20429
+ event: string;
20430
+ triggers: string;
20431
+ guard?: SExpr | undefined;
20432
+ scope?: "internal" | "external" | undefined;
20433
+ payloadMapping?: Record<string, string> | undefined;
20434
+ }[] | undefined;
20042
20435
  description_visual_prompt?: string | undefined;
20043
20436
  requiredFields?: {
20044
20437
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -20109,13 +20502,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20109
20502
  appliesTo?: string[] | undefined;
20110
20503
  emits?: string[] | undefined;
20111
20504
  }[] | undefined;
20112
- listens?: {
20113
- event: string;
20114
- triggers: string;
20115
- guard?: SExpr | undefined;
20116
- scope?: "internal" | "external" | undefined;
20117
- payloadMapping?: Record<string, string> | undefined;
20118
- }[] | undefined;
20119
20505
  } | {
20120
20506
  ref: string;
20121
20507
  name?: string | undefined;
@@ -20209,6 +20595,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20209
20595
  capabilities: string[];
20210
20596
  description?: string | undefined;
20211
20597
  env?: Record<string, string> | undefined;
20598
+ } | {
20599
+ ref: string;
20600
+ url?: string | undefined;
20601
+ description?: string | undefined;
20602
+ baseUrl?: string | undefined;
20603
+ headers?: Record<string, string> | undefined;
20604
+ serverPath?: string | undefined;
20212
20605
  })[] | undefined;
20213
20606
  exposes?: string[] | undefined;
20214
20607
  domainContext?: {
@@ -20378,6 +20771,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20378
20771
  }[] | undefined;
20379
20772
  scope?: "internal" | "external" | undefined;
20380
20773
  }[] | undefined;
20774
+ listens?: {
20775
+ event: string;
20776
+ triggers: string;
20777
+ guard?: SExpr | undefined;
20778
+ scope?: "internal" | "external" | undefined;
20779
+ payloadMapping?: Record<string, string> | undefined;
20780
+ }[] | undefined;
20381
20781
  description_visual_prompt?: string | undefined;
20382
20782
  requiredFields?: {
20383
20783
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -20448,13 +20848,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20448
20848
  appliesTo?: string[] | undefined;
20449
20849
  emits?: string[] | undefined;
20450
20850
  }[] | undefined;
20451
- listens?: {
20452
- event: string;
20453
- triggers: string;
20454
- guard?: SExpr | undefined;
20455
- scope?: "internal" | "external" | undefined;
20456
- payloadMapping?: Record<string, string> | undefined;
20457
- }[] | undefined;
20458
20851
  } | {
20459
20852
  ref: string;
20460
20853
  name?: string | undefined;
@@ -20496,6 +20889,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20496
20889
  }[] | undefined;
20497
20890
  scope?: "internal" | "external" | undefined;
20498
20891
  }[] | undefined;
20892
+ listens?: {
20893
+ event: string;
20894
+ triggers: string;
20895
+ guard?: SExpr | undefined;
20896
+ scope?: "internal" | "external" | undefined;
20897
+ payloadMapping?: Record<string, string> | undefined;
20898
+ }[] | undefined;
20499
20899
  description_visual_prompt?: string | undefined;
20500
20900
  requiredFields?: {
20501
20901
  type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
@@ -20566,13 +20966,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20566
20966
  appliesTo?: string[] | undefined;
20567
20967
  emits?: string[] | undefined;
20568
20968
  }[] | undefined;
20569
- listens?: {
20570
- event: string;
20571
- triggers: string;
20572
- guard?: SExpr | undefined;
20573
- scope?: "internal" | "external" | undefined;
20574
- payloadMapping?: Record<string, string> | undefined;
20575
- }[] | undefined;
20576
20969
  } | {
20577
20970
  ref: string;
20578
20971
  name?: string | undefined;
@@ -20666,6 +21059,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20666
21059
  capabilities: string[];
20667
21060
  description?: string | undefined;
20668
21061
  env?: Record<string, string> | undefined;
21062
+ } | {
21063
+ ref: string;
21064
+ url?: string | undefined;
21065
+ description?: string | undefined;
21066
+ baseUrl?: string | undefined;
21067
+ headers?: Record<string, string> | undefined;
21068
+ serverPath?: string | undefined;
20669
21069
  })[] | undefined;
20670
21070
  exposes?: string[] | undefined;
20671
21071
  domainContext?: {
@@ -20793,4 +21193,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
20793
21193
  type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
20794
21194
  type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
20795
21195
 
20796
- export { ENTITY_ROLES as $, AGENT_DOMAIN_CATEGORIES as A, type CustomPatternDefinition as B, CORE_BINDINGS as C, type CustomPatternDefinitionInput as D, type EntityField as E, CustomPatternDefinitionSchema as F, type CustomPatternMap as G, type CustomPatternMapInput as H, CustomPatternMapSchema as I, type DerefEffect as J, type DesignPreferences as K, type DesignPreferencesInput as L, DesignPreferencesSchema as M, type DesignTokens as N, type OrbitalDefinition as O, type Page as P, type DesignTokensInput as Q, DesignTokensSchema as R, type State as S, type TraitEventContract as T, type DomainCategory as U, DomainCategorySchema as V, type DomainContext as W, type DomainContextInput as X, DomainContextSchema as Y, type DomainVocabulary as Z, DomainVocabularySchema as _, type EntityPersistence as a, type OrbitalInput as a$, type Effect as a0, type EffectInput as a1, EffectSchema as a2, type EntityCall as a3, EntityCallSchema as a4, type EntityData as a5, type EntityFieldInput as a6, EntityFieldSchema as a7, EntityPersistenceSchema as a8, type EntityRef as a9, type FieldFormat as aA, FieldFormatSchema as aB, FieldSchema as aC, type FieldType as aD, FieldTypeSchema as aE, type FieldValue as aF, type Orbital as aG, GAME_TYPES as aH, type GameSubCategory as aI, GameSubCategorySchema as aJ, type GameType as aK, GameTypeSchema as aL, type Guard as aM, type GuardInput as aN, GuardSchema as aO, type LogMeta as aP, type McpServiceDef as aQ, McpServiceDefSchema as aR, type NodeClassification as aS, NodeClassificationSchema as aT, type OrbitalConfig as aU, type OrbitalConfigInput as aV, OrbitalConfigSchema as aW, OrbitalDefinitionSchema as aX, type OrbitalEntity as aY, type OrbitalEntityInput as aZ, OrbitalEntitySchema as a_, EntityRefSchema as aa, EntityRefStringSchema as ab, type EntityRole as ac, EntityRoleSchema as ad, EntitySchema as ae, type EntitySemanticRole as af, EntitySemanticRoleSchema as ag, type EvalContext as ah, type Event as ai, type EventInput as aj, type EventListener as ak, EventListenerSchema as al, type EventPayload as am, type EventPayloadField as an, EventPayloadFieldSchema as ao, EventSchema as ap, type EventScope as aq, EventScopeSchema as ar, type EventSemanticRole as as, EventSemanticRoleSchema as at, type EventSource as au, EventSourceSchema as av, type Expression as aw, type ExpressionInput as ax, ExpressionSchema as ay, type Field as az, type EntityRow as b, type StateMachine as b$, type OrbitalPage as b0, type OrbitalPageInput as b1, OrbitalPageSchema as b2, type OrbitalPageStrictInput as b3, OrbitalPageStrictSchema as b4, type OrbitalSchemaInput as b5, OrbitalSchemaSchema as b6, type OrbitalTraitRef as b7, OrbitalTraitRefSchema as b8, type OrbitalUnit as b9, type ResolvedPatternProps as bA, type RestAuthConfig as bB, RestAuthConfigSchema as bC, type RestServiceDef as bD, RestServiceDefSchema as bE, SERVICE_TYPES as bF, type SExpr as bG, type SExprAtom as bH, SExprAtomSchema as bI, type SExprInput as bJ, SExprSchema as bK, type SemanticAssetRef as bL, type SemanticAssetRefInput as bM, SemanticAssetRefSchema as bN, type ServiceDefinition as bO, ServiceDefinitionSchema as bP, type ServiceParams as bQ, type ServiceRef as bR, ServiceRefSchema as bS, ServiceRefStringSchema as bT, type ServiceType as bU, ServiceTypeSchema as bV, type SocketEvents as bW, SocketEventsSchema as bX, type SocketServiceDef as bY, SocketServiceDefSchema as bZ, type StateInput as b_, OrbitalUnitSchema as ba, OrbitalSchema$1 as bb, type PageRef as bc, type PageRefObject as bd, PageRefObjectSchema as be, PageRefSchema as bf, PageRefStringSchema as bg, PageSchema as bh, type PageTraitRef as bi, PageTraitRefSchema as bj, type ParsedBinding as bk, type PayloadField as bl, PayloadFieldSchema as bm, type PresentationType as bn, type RefEffect as bo, type RelatedLink as bp, RelatedLinkSchema as bq, type RelationConfig as br, RelationConfigSchema as bs, type RenderUIConfig 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 OrbitalSchema as c, doEffects as c$, type StateMachineInput as c0, StateMachineSchema as c1, StateSchema as c2, type StateSemanticRole as c3, StateSemanticRoleSchema as c4, type SuggestedGuard as c5, SuggestedGuardSchema as c6, type SwapEffect as c7, type ThemeDefinition as c8, ThemeDefinitionSchema as c9, type Transition as cA, type TransitionInput as cB, TransitionSchema as cC, type UISlot as cD, UISlotSchema as cE, UI_SLOTS as cF, type UXHints as cG, UXHintsSchema as cH, type UseDeclaration as cI, UseDeclarationSchema as cJ, type UserPersona as cK, type UserPersonaInput as cL, UserPersonaSchema as cM, VISUAL_STYLES as cN, type ViewType as cO, ViewTypeSchema as cP, type VisualStyle as cQ, VisualStyleSchema as cR, type WatchEffect as cS, type WatchOptions as cT, atomic as cU, callService as cV, collectBindings as cW, createAssetKey as cX, deref as cY, deriveCollection as cZ, despawn as c_, type ThemeRef as ca, ThemeRefSchema as cb, ThemeRefStringSchema as cc, type ThemeTokens as cd, ThemeTokensSchema as ce, type ThemeVariant as cf, ThemeVariantSchema as cg, type TraitCategory as ch, TraitCategorySchema as ci, type TraitDataEntity as cj, TraitDataEntitySchema as ck, type TraitEntityField as cl, TraitEntityFieldSchema as cm, TraitEventContractSchema as cn, type TraitEventListener as co, TraitEventListenerSchema as cp, type TraitInput as cq, type TraitRef as cr, TraitRefSchema as cs, type TraitReference as ct, type TraitReferenceInput as cu, TraitReferenceSchema as cv, TraitSchema as cw, type TraitTick as cx, TraitTickSchema as cy, type TraitUIBinding as cz, type Trait as d, emit as d0, findService as d1, getArgs as d2, getDefaultAnimationsForRole as d3, getOperator as d4, getServiceNames as d5, getTraitConfig as d6, getTraitName as d7, hasService as d8, isBinding as d9, notify as dA, parseAssetKey as dB, parseBinding as dC, parseEntityRef as dD, parseImportedTraitRef as dE, parseOrbitalSchema as dF, parsePageRef as dG, parseServiceRef as dH, persist as dI, ref as dJ, renderUI as dK, safeParseOrbitalSchema as dL, set as dM, sexpr as dN, spawn as dO, swap as dP, validateAssetAnimations as dQ, walkSExpr as dR, watch as dS, isCircuitEvent as da, isEffect as db, isEntityCall as dc, isEntityReference as dd, isEntityReferenceAny as de, isImportedTraitRef as df, isInlineTrait as dg, isMcpService as dh, isOrbitalDefinition as di, isPageReference as dj, isPageReferenceObject as dk, isPageReferenceString as dl, isRestService as dm, isRuntimeEntity as dn, isSExpr as dp, isSExprAtom as dq, isSExprCall as dr, isSExprEffect as ds, isServiceReference as dt, isSingletonEntity as du, isSocketService as dv, isThemeReference as dw, isValidBinding as dx, navigate as dy, normalizeTraitRef as dz, type Entity as e, ALLOWED_CUSTOM_COMPONENTS as f, type AgentDomainCategory as g, AgentDomainCategorySchema as h, type AgentEffect as i, type AllowedCustomComponent as j, type AnimationDef as k, type AnimationDefInput as l, AnimationDefSchema as m, type AssetMap as n, type AssetMapInput as o, AssetMapSchema as p, type AssetMapping as q, type AssetMappingInput as r, AssetMappingSchema as s, type AtomicEffect as t, type CallServiceConfig as u, type ComputedEventContract as v, ComputedEventContractSchema as w, type ComputedEventListener as x, ComputedEventListenerSchema as y, type CoreBinding as z };
21196
+ export { ENTITY_ROLES as $, AGENT_DOMAIN_CATEGORIES as A, type CustomPatternDefinition as B, CORE_BINDINGS as C, type CustomPatternDefinitionInput as D, type EntityField as E, CustomPatternDefinitionSchema as F, type CustomPatternMap as G, type CustomPatternMapInput as H, CustomPatternMapSchema as I, type DerefEffect as J, type DesignPreferences as K, type DesignPreferencesInput as L, DesignPreferencesSchema as M, type DesignTokens as N, type OrbitalDefinition as O, type Page as P, type DesignTokensInput as Q, DesignTokensSchema as R, type State as S, type TraitEventContract as T, type DomainCategory as U, DomainCategorySchema as V, type DomainContext as W, type DomainContextInput as X, DomainContextSchema as Y, type DomainVocabulary as Z, DomainVocabularySchema as _, type EntityPersistence as a, type OrbitalInput as a$, type Effect as a0, type EffectInput as a1, EffectSchema as a2, type EntityCall as a3, EntityCallSchema as a4, type EntityData as a5, type EntityFieldInput as a6, EntityFieldSchema as a7, EntityPersistenceSchema as a8, type EntityRef as a9, type FieldFormat as aA, FieldFormatSchema as aB, FieldSchema as aC, type FieldType as aD, FieldTypeSchema as aE, type FieldValue as aF, type Orbital as aG, GAME_TYPES as aH, type GameSubCategory as aI, GameSubCategorySchema as aJ, type GameType as aK, GameTypeSchema as aL, type Guard as aM, type GuardInput as aN, GuardSchema as aO, type LogMeta as aP, type McpServiceDef as aQ, McpServiceDefSchema as aR, type NodeClassification as aS, NodeClassificationSchema as aT, type OrbitalConfig as aU, type OrbitalConfigInput as aV, OrbitalConfigSchema as aW, OrbitalDefinitionSchema as aX, type OrbitalEntity as aY, type OrbitalEntityInput as aZ, OrbitalEntitySchema as a_, EntityRefSchema as aa, EntityRefStringSchema as ab, type EntityRole as ac, EntityRoleSchema as ad, EntitySchema as ae, type EntitySemanticRole as af, EntitySemanticRoleSchema as ag, type EvalContext as ah, type Event as ai, type EventInput as aj, type EventListener as ak, EventListenerSchema as al, type EventPayload as am, type EventPayloadField as an, EventPayloadFieldSchema as ao, EventSchema as ap, type EventScope as aq, EventScopeSchema as ar, type EventSemanticRole as as, EventSemanticRoleSchema as at, type EventSource as au, EventSourceSchema as av, type Expression as aw, type ExpressionInput as ax, ExpressionSchema as ay, type Field as az, type EntityRow as b, SocketServiceDefSchema as b$, type OrbitalPage as b0, type OrbitalPageInput as b1, OrbitalPageSchema as b2, type OrbitalPageStrictInput as b3, OrbitalPageStrictSchema as b4, type OrbitalSchemaInput as b5, OrbitalSchemaSchema as b6, type OrbitalTraitRef as b7, OrbitalTraitRefSchema as b8, type OrbitalUnit as b9, type ResolvedPatternProps as bA, type RestAuthConfig as bB, RestAuthConfigSchema as bC, type RestServiceDef as bD, RestServiceDefSchema as bE, SERVICE_TYPES as bF, type SExpr as bG, type SExprAtom as bH, SExprAtomSchema as bI, type SExprInput as bJ, SExprSchema as bK, type SemanticAssetRef as bL, type SemanticAssetRefInput as bM, SemanticAssetRefSchema as bN, type ServiceDefinition as bO, ServiceDefinitionSchema as bP, type ServiceParams as bQ, type ServiceRef as bR, type ServiceRefObject as bS, ServiceRefObjectSchema as bT, ServiceRefSchema as bU, ServiceRefStringSchema as bV, type ServiceType as bW, ServiceTypeSchema as bX, type SocketEvents as bY, SocketEventsSchema as bZ, type SocketServiceDef as b_, OrbitalUnitSchema as ba, OrbitalSchema$1 as bb, type PageRef as bc, type PageRefObject as bd, PageRefObjectSchema as be, PageRefSchema as bf, PageRefStringSchema as bg, PageSchema as bh, type PageTraitRef as bi, PageTraitRefSchema as bj, type ParsedBinding as bk, type PayloadField as bl, PayloadFieldSchema as bm, type PresentationType as bn, type RefEffect as bo, type RelatedLink as bp, RelatedLinkSchema as bq, type RelationConfig as br, RelationConfigSchema as bs, type RenderUIConfig 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 OrbitalSchema as c, deriveCollection as c$, type StateInput as c0, type StateMachine as c1, type StateMachineInput as c2, StateMachineSchema as c3, StateSchema as c4, type StateSemanticRole as c5, StateSemanticRoleSchema as c6, type SuggestedGuard as c7, SuggestedGuardSchema as c8, type SwapEffect as c9, TraitTickSchema as cA, type TraitUIBinding as cB, type Transition as cC, type TransitionInput as cD, TransitionSchema as cE, type UISlot as cF, UISlotSchema as cG, UI_SLOTS as cH, type UXHints as cI, UXHintsSchema as cJ, type UseDeclaration as cK, UseDeclarationSchema as cL, type UserPersona as cM, type UserPersonaInput as cN, UserPersonaSchema as cO, VISUAL_STYLES as cP, type ViewType as cQ, ViewTypeSchema as cR, type VisualStyle as cS, VisualStyleSchema as cT, type WatchEffect as cU, type WatchOptions as cV, atomic as cW, callService as cX, collectBindings as cY, createAssetKey as cZ, deref as c_, type ThemeDefinition as ca, ThemeDefinitionSchema as cb, type ThemeRef as cc, ThemeRefSchema as cd, ThemeRefStringSchema as ce, type ThemeTokens as cf, ThemeTokensSchema as cg, type ThemeVariant as ch, ThemeVariantSchema as ci, type TraitCategory as cj, TraitCategorySchema as ck, type TraitDataEntity as cl, TraitDataEntitySchema as cm, type TraitEntityField as cn, TraitEntityFieldSchema as co, TraitEventContractSchema as cp, type TraitEventListener as cq, TraitEventListenerSchema as cr, type TraitInput as cs, type TraitRef as ct, TraitRefSchema as cu, type TraitReference as cv, type TraitReferenceInput as cw, TraitReferenceSchema as cx, TraitSchema as cy, type TraitTick as cz, type Trait as d, despawn as d0, doEffects as d1, emit as d2, findService as d3, getArgs as d4, getDefaultAnimationsForRole as d5, getOperator as d6, getServiceNames as d7, getTraitConfig as d8, getTraitName as d9, isValidBinding as dA, navigate as dB, normalizeTraitRef as dC, notify as dD, parseAssetKey as dE, parseBinding as dF, parseEntityRef as dG, parseImportedTraitRef as dH, parseOrbitalSchema as dI, parsePageRef as dJ, parseServiceRef as dK, persist as dL, ref as dM, renderUI as dN, safeParseOrbitalSchema as dO, set as dP, sexpr as dQ, spawn as dR, swap as dS, validateAssetAnimations as dT, walkSExpr as dU, watch as dV, hasService as da, isBinding as db, isCircuitEvent as dc, isEffect as dd, isEntityCall as de, isEntityReference as df, isEntityReferenceAny as dg, isImportedTraitRef as dh, isInlineTrait as di, isMcpService as dj, isOrbitalDefinition as dk, isPageReference as dl, isPageReferenceObject as dm, isPageReferenceString as dn, isRestService as dp, isRuntimeEntity as dq, isSExpr as dr, isSExprAtom as ds, isSExprCall as dt, isSExprEffect as du, isServiceReference as dv, isServiceReferenceObject as dw, isSingletonEntity as dx, isSocketService as dy, isThemeReference as dz, type Entity as e, ALLOWED_CUSTOM_COMPONENTS as f, type AgentDomainCategory as g, AgentDomainCategorySchema as h, type AgentEffect as i, type AllowedCustomComponent as j, type AnimationDef as k, type AnimationDefInput as l, AnimationDefSchema as m, type AssetMap as n, type AssetMapInput as o, AssetMapSchema as p, type AssetMapping as q, type AssetMappingInput as r, AssetMappingSchema as s, type AtomicEffect as t, type CallServiceConfig as u, type ComputedEventContract as v, ComputedEventContractSchema as w, type ComputedEventListener as x, ComputedEventListenerSchema as y, type CoreBinding as z };