@almadar/core 6.0.0 → 7.2.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.
@@ -1,224 +1,7 @@
1
+ import { S as SExpr, d as Expression } from './expression-eBO9-SQM.js';
1
2
  import { z } from 'zod';
2
3
  import { AnyPatternConfig } from '@almadar/patterns';
3
4
 
4
- /**
5
- * S-Expression Types
6
- *
7
- * Defines the S-Expression type system for guards, effects, and computed values.
8
- * S-expressions are JSON arrays where the first element is an operator string.
9
- *
10
- * @example
11
- * // Guard: health > 0
12
- * [">", "@entity.health", 0]
13
- *
14
- * // Effect: set x to x + vx
15
- * ["set", "@entity.x", ["+", "@entity.x", "@entity.vx"]]
16
- *
17
- * @packageDocumentation
18
- */
19
-
20
- /**
21
- * S-Expression type - recursive structure representing expressions.
22
- *
23
- * An S-expression is either:
24
- * - A literal value (string, number, boolean, null)
25
- * - An object literal (for payload data, props, etc.)
26
- * - A binding reference (string starting with @)
27
- * - A call expression (array with operator as first element)
28
- */
29
- type SExprAtom = string | number | boolean | null | Record<string, unknown>;
30
- type SExpr = SExprAtom | SExpr[];
31
- /**
32
- * Expression type - S-expressions only.
33
- * Used for guards, computed values, and effect expressions.
34
- *
35
- * NOTE: Legacy string format is no longer supported.
36
- * All expressions must be S-expression arrays.
37
- */
38
- type Expression = SExpr;
39
- /**
40
- * Schema for atomic S-expression values (non-array)
41
- * Includes objects for payload data, props, etc.
42
- */
43
- declare const SExprAtomSchema: z.ZodType<SExprAtom>;
44
- /**
45
- * Recursive schema for S-expressions.
46
- * Validates that arrays have at least one element and first element is a string (operator).
47
- */
48
- declare const SExprSchema: z.ZodType<SExpr>;
49
- /**
50
- * Schema for Expression type - S-expressions only.
51
- * S-expressions are arrays with operator as first element.
52
- *
53
- * NOTE: Legacy string format is no longer supported.
54
- */
55
- declare const ExpressionSchema: z.ZodType<Expression>;
56
- /**
57
- * Type guard for S-expression detection.
58
- * 100% reliable - structural check, no regex or keyword matching.
59
- *
60
- * @param value - Value to check
61
- * @returns true if value is an S-expression (array with string operator)
62
- */
63
- declare function isSExpr(value: unknown): value is SExpr[];
64
- /**
65
- * Type guard for S-expression atoms (non-array values).
66
- *
67
- * Validates that a value is an S-expression atom (literal value).
68
- * Includes null, strings, numbers, booleans, and objects. Used to
69
- * distinguish atomic values from S-expression calls (arrays).
70
- *
71
- * @param {unknown} value - Value to check
72
- * @returns {boolean} True if value is an S-expression atom, false otherwise
73
- *
74
- * @example
75
- * isSExprAtom('hello'); // returns true
76
- * isSExprAtom(42); // returns true
77
- * isSExprAtom(null); // returns true
78
- * isSExprAtom({ key: 'value' }); // returns true
79
- * isSExprAtom(['+', 1, 2]); // returns false
80
- */
81
- declare function isSExprAtom(value: unknown): value is SExprAtom;
82
- /**
83
- * Checks if a value is a binding reference.
84
- *
85
- * Validates that a string is a binding reference (starts with @).
86
- * Bindings reference runtime values like @entity.health, @payload.amount, @now.
87
- * Used for identifying bindings in S-expressions and validation.
88
- *
89
- * @param {unknown} value - Value to check
90
- * @returns {boolean} True if value is a binding reference, false otherwise
91
- *
92
- * @example
93
- * isBinding('@entity.health'); // returns true
94
- * isBinding('@payload.amount'); // returns true
95
- * isBinding('not-a-binding'); // returns false
96
- * isBinding(123); // returns false
97
- */
98
- declare function isBinding(value: unknown): value is string;
99
- /**
100
- * Checks if a value is a valid S-expression call (array with operator).
101
- *
102
- * Alias for isSExpr() - validates S-expression call structure.
103
- * Used to distinguish between S-expression calls and atom values.
104
- *
105
- * @param {unknown} value - Value to check
106
- * @returns {boolean} True if value is a valid S-expression call, false otherwise
107
- *
108
- * @example
109
- * isSExprCall(['+', 1, 2]); // returns true
110
- * isSExprCall(['set', '@entity.health', 100]); // returns true
111
- * isSExprCall('not-a-call'); // returns false
112
- */
113
- declare function isSExprCall(value: unknown): value is SExpr[];
114
- /**
115
- * Parsed binding reference
116
- */
117
- interface ParsedBinding {
118
- /** Type of binding: core (@entity, @payload, @state, @now) or entity (@EntityName) */
119
- type: 'core' | 'entity';
120
- /** The root binding name (entity, payload, state, now, or EntityName) */
121
- root: string;
122
- /** Path segments after the root (e.g., ['health'] for @entity.health) */
123
- path: string[];
124
- /** Full original binding string */
125
- original: string;
126
- }
127
- /**
128
- * Core bindings that are always available.
129
- * Phase 4.5 adds: config, computed, trait (for behavior support)
130
- */
131
- declare const CORE_BINDINGS: readonly ["entity", "payload", "state", "now", "config", "computed", "trait"];
132
- type CoreBinding = (typeof CORE_BINDINGS)[number];
133
- /**
134
- * Parses a binding reference into its components.
135
- *
136
- * Deconstructs a binding string (e.g., '@entity.health') into its constituent
137
- * parts: type, root, path, and original string. Does NOT use regex - uses
138
- * structured string operations for reliability and maintainability.
139
- *
140
- * @param {string} binding - Binding string starting with @
141
- * @returns {ParsedBinding | null} Parsed binding object or null if invalid
142
- *
143
- * @example
144
- * parseBinding('@entity.health'); // returns { type: 'core', root: 'entity', path: ['health'], original: '@entity.health' }
145
- * parseBinding('@User.name'); // returns { type: 'entity', root: 'User', path: ['name'], original: '@User.name' }
146
- * parseBinding('not-a-binding'); // returns null
147
- */
148
- declare function parseBinding(binding: string): ParsedBinding | null;
149
- /**
150
- * Validate a binding reference format.
151
- *
152
- * @param binding - Binding string to validate
153
- * @returns true if valid binding format
154
- */
155
- declare function isValidBinding(binding: string): boolean;
156
- /**
157
- * Get the operator from an S-expression call.
158
- *
159
- * @param expr - S-expression array
160
- * @returns The operator string or null if not a valid call
161
- */
162
- declare function getOperator(expr: SExpr): string | null;
163
- /**
164
- * Get the arguments from an S-expression call.
165
- *
166
- * @param expr - S-expression array
167
- * @returns Array of arguments (empty if not a valid call)
168
- */
169
- declare function getArgs(expr: SExpr): SExpr[];
170
- /**
171
- * Create an S-expression call.
172
- *
173
- * @param operator - The operator string
174
- * @param args - Arguments to the operator
175
- * @returns S-expression array
176
- */
177
- declare function sexpr(operator: string, ...args: SExpr[]): SExpr[];
178
- /**
179
- * Walk an S-expression tree and apply a visitor function to each node.
180
- *
181
- * @param expr - S-expression to walk
182
- * @param visitor - Function to call on each node
183
- */
184
- declare function walkSExpr(expr: SExpr, visitor: (node: SExpr, parent: SExpr[] | null, index: number) => void, parent?: SExpr[] | null, index?: number): void;
185
- /**
186
- * Collect all bindings referenced in an S-expression.
187
- *
188
- * @param expr - S-expression to analyze
189
- * @returns Array of binding strings found
190
- */
191
- declare function collectBindings(expr: SExpr): string[];
192
- type SExprInput = z.input<typeof SExprSchema>;
193
- type ExpressionInput = z.input<typeof ExpressionSchema>;
194
- /** Evaluation context for guards and s-expressions. Recursive. */
195
- interface EvalContext {
196
- [key: string]: string | number | boolean | Date | null | string[] | EvalContext | undefined;
197
- }
198
- /**
199
- * A single value carried by an event payload field. The top-level payload
200
- * is always an object; the VALUES in that object can be primitives, nested
201
- * objects, or arrays of the same. Arrays are allowed so real-world emits
202
- * like `{ files: [{ name, size, type }, ...] }` or `{ selected: string[] }`
203
- * are typed natively instead of forcing consumers to wrap at every call.
204
- *
205
- * `Date` is included so `EntityRow` (whose values are `FieldValue`, which
206
- * includes `Date`) is assignable to a payload field without a cast —
207
- * emitted entity rows flow through the bus without boundary widening.
208
- */
209
- type EventPayloadValue = string | number | boolean | Date | null | undefined | EventPayload | readonly EventPayloadValue[];
210
- /**
211
- * Typed event payload. Object-shaped so it's assignable to the bus's
212
- * `EventPayload` parameter without casts.
213
- */
214
- interface EventPayload {
215
- [key: string]: EventPayloadValue;
216
- }
217
- /** Structured log/event metadata. Recursive to support nested log data. */
218
- interface LogMeta {
219
- [key: string]: string | number | boolean | null | undefined | Error | LogMeta;
220
- }
221
-
222
5
  /**
223
6
  * Service Types for Orbital Schema
224
7
  *
@@ -1542,19 +1325,26 @@ declare const StateSchema: z.ZodObject<{
1542
1325
  */
1543
1326
  interface PayloadField {
1544
1327
  name: string;
1545
- type: "string" | "number" | "boolean" | "object" | "array";
1328
+ /**
1329
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
1330
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
1331
+ * 'array') are the canonical values; entity-name references like
1332
+ * 'CartItem' and array-of-entity references like '[CartItem]' are also
1333
+ * valid because the Rust IR's PayloadField.field_type is just a String.
1334
+ */
1335
+ type: string;
1546
1336
  required?: boolean;
1547
1337
  }
1548
1338
  declare const PayloadFieldSchema: z.ZodObject<{
1549
1339
  name: z.ZodString;
1550
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
1340
+ type: z.ZodString;
1551
1341
  required: z.ZodOptional<z.ZodBoolean>;
1552
1342
  }, "strip", z.ZodTypeAny, {
1553
- type: "string" | "number" | "boolean" | "object" | "array";
1343
+ type: string;
1554
1344
  name: string;
1555
1345
  required?: boolean | undefined;
1556
1346
  }, {
1557
- type: "string" | "number" | "boolean" | "object" | "array";
1347
+ type: string;
1558
1348
  name: string;
1559
1349
  required?: boolean | undefined;
1560
1350
  }>;
@@ -1581,14 +1371,14 @@ declare const EventSchema: z.ZodObject<{
1581
1371
  description: z.ZodOptional<z.ZodString>;
1582
1372
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
1583
1373
  name: z.ZodString;
1584
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
1374
+ type: z.ZodString;
1585
1375
  required: z.ZodOptional<z.ZodBoolean>;
1586
1376
  }, "strip", z.ZodTypeAny, {
1587
- type: "string" | "number" | "boolean" | "object" | "array";
1377
+ type: string;
1588
1378
  name: string;
1589
1379
  required?: boolean | undefined;
1590
1380
  }, {
1591
- type: "string" | "number" | "boolean" | "object" | "array";
1381
+ type: string;
1592
1382
  name: string;
1593
1383
  required?: boolean | undefined;
1594
1384
  }>, "many">>;
@@ -1599,7 +1389,7 @@ declare const EventSchema: z.ZodObject<{
1599
1389
  key: string;
1600
1390
  description?: string | undefined;
1601
1391
  payloadSchema?: {
1602
- type: "string" | "number" | "boolean" | "object" | "array";
1392
+ type: string;
1603
1393
  name: string;
1604
1394
  required?: boolean | undefined;
1605
1395
  }[] | undefined;
@@ -1610,7 +1400,7 @@ declare const EventSchema: z.ZodObject<{
1610
1400
  key: string;
1611
1401
  description?: string | undefined;
1612
1402
  payloadSchema?: {
1613
- type: "string" | "number" | "boolean" | "object" | "array";
1403
+ type: string;
1614
1404
  name: string;
1615
1405
  required?: boolean | undefined;
1616
1406
  }[] | undefined;
@@ -1744,14 +1534,14 @@ declare const StateMachineSchema: z.ZodObject<{
1744
1534
  description: z.ZodOptional<z.ZodString>;
1745
1535
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
1746
1536
  name: z.ZodString;
1747
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
1537
+ type: z.ZodString;
1748
1538
  required: z.ZodOptional<z.ZodBoolean>;
1749
1539
  }, "strip", z.ZodTypeAny, {
1750
- type: "string" | "number" | "boolean" | "object" | "array";
1540
+ type: string;
1751
1541
  name: string;
1752
1542
  required?: boolean | undefined;
1753
1543
  }, {
1754
- type: "string" | "number" | "boolean" | "object" | "array";
1544
+ type: string;
1755
1545
  name: string;
1756
1546
  required?: boolean | undefined;
1757
1547
  }>, "many">>;
@@ -1762,7 +1552,7 @@ declare const StateMachineSchema: z.ZodObject<{
1762
1552
  key: string;
1763
1553
  description?: string | undefined;
1764
1554
  payloadSchema?: {
1765
- type: "string" | "number" | "boolean" | "object" | "array";
1555
+ type: string;
1766
1556
  name: string;
1767
1557
  required?: boolean | undefined;
1768
1558
  }[] | undefined;
@@ -1773,7 +1563,7 @@ declare const StateMachineSchema: z.ZodObject<{
1773
1563
  key: string;
1774
1564
  description?: string | undefined;
1775
1565
  payloadSchema?: {
1776
- type: "string" | "number" | "boolean" | "object" | "array";
1566
+ type: string;
1777
1567
  name: string;
1778
1568
  required?: boolean | undefined;
1779
1569
  }[] | undefined;
@@ -1821,7 +1611,7 @@ declare const StateMachineSchema: z.ZodObject<{
1821
1611
  key: string;
1822
1612
  description?: string | undefined;
1823
1613
  payloadSchema?: {
1824
- type: "string" | "number" | "boolean" | "object" | "array";
1614
+ type: string;
1825
1615
  name: string;
1826
1616
  required?: boolean | undefined;
1827
1617
  }[] | undefined;
@@ -1856,7 +1646,7 @@ declare const StateMachineSchema: z.ZodObject<{
1856
1646
  key: string;
1857
1647
  description?: string | undefined;
1858
1648
  payloadSchema?: {
1859
- type: "string" | "number" | "boolean" | "object" | "array";
1649
+ type: string;
1860
1650
  name: string;
1861
1651
  required?: boolean | undefined;
1862
1652
  }[] | undefined;
@@ -2110,18 +1900,28 @@ interface EventPayloadField {
2110
1900
  }
2111
1901
  declare const EventPayloadFieldSchema: z.ZodObject<{
2112
1902
  name: z.ZodString;
2113
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
1903
+ /**
1904
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
1905
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
1906
+ * 'array') are the canonical values; entity-name references like
1907
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
1908
+ * are also valid because the Rust IR's PayloadField.field_type is
1909
+ * just a String. Only enforced narrowly at the call site (e.g.
1910
+ * emit-literal type-mismatch warnings in
1911
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
1912
+ */
1913
+ type: z.ZodString;
2114
1914
  required: z.ZodOptional<z.ZodBoolean>;
2115
1915
  description: z.ZodOptional<z.ZodString>;
2116
1916
  entityType: z.ZodOptional<z.ZodString>;
2117
1917
  }, "strip", z.ZodTypeAny, {
2118
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
1918
+ type: string;
2119
1919
  name: string;
2120
1920
  required?: boolean | undefined;
2121
1921
  description?: string | undefined;
2122
1922
  entityType?: string | undefined;
2123
1923
  }, {
2124
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
1924
+ type: string;
2125
1925
  name: string;
2126
1926
  required?: boolean | undefined;
2127
1927
  description?: string | undefined;
@@ -2148,22 +1948,39 @@ interface TraitEventContract {
2148
1948
  scope?: EventScope;
2149
1949
  }
2150
1950
  declare const TraitEventContractSchema: z.ZodObject<{
1951
+ /**
1952
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
1953
+ * starts with a letter, then any letters / digits / underscores. Both
1954
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
1955
+ * post-Phase 2.5 nominal-event type system (events declared via
1956
+ * `type X = Event<T>`).
1957
+ */
2151
1958
  event: z.ZodString;
2152
1959
  description: z.ZodOptional<z.ZodString>;
2153
1960
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2154
1961
  name: z.ZodString;
2155
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
1962
+ /**
1963
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
1964
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
1965
+ * 'array') are the canonical values; entity-name references like
1966
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
1967
+ * are also valid because the Rust IR's PayloadField.field_type is
1968
+ * just a String. Only enforced narrowly at the call site (e.g.
1969
+ * emit-literal type-mismatch warnings in
1970
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
1971
+ */
1972
+ type: z.ZodString;
2156
1973
  required: z.ZodOptional<z.ZodBoolean>;
2157
1974
  description: z.ZodOptional<z.ZodString>;
2158
1975
  entityType: z.ZodOptional<z.ZodString>;
2159
1976
  }, "strip", z.ZodTypeAny, {
2160
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
1977
+ type: string;
2161
1978
  name: string;
2162
1979
  required?: boolean | undefined;
2163
1980
  description?: string | undefined;
2164
1981
  entityType?: string | undefined;
2165
1982
  }, {
2166
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
1983
+ type: string;
2167
1984
  name: string;
2168
1985
  required?: boolean | undefined;
2169
1986
  description?: string | undefined;
@@ -2174,7 +1991,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
2174
1991
  event: string;
2175
1992
  description?: string | undefined;
2176
1993
  payloadSchema?: {
2177
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
1994
+ type: string;
2178
1995
  name: string;
2179
1996
  required?: boolean | undefined;
2180
1997
  description?: string | undefined;
@@ -2185,7 +2002,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
2185
2002
  event: string;
2186
2003
  description?: string | undefined;
2187
2004
  payloadSchema?: {
2188
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2005
+ type: string;
2189
2006
  name: string;
2190
2007
  required?: boolean | undefined;
2191
2008
  description?: string | undefined;
@@ -2680,14 +2497,14 @@ declare const TraitSchema: z.ZodObject<{
2680
2497
  description: z.ZodOptional<z.ZodString>;
2681
2498
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2682
2499
  name: z.ZodString;
2683
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
2500
+ type: z.ZodString;
2684
2501
  required: z.ZodOptional<z.ZodBoolean>;
2685
2502
  }, "strip", z.ZodTypeAny, {
2686
- type: "string" | "number" | "boolean" | "object" | "array";
2503
+ type: string;
2687
2504
  name: string;
2688
2505
  required?: boolean | undefined;
2689
2506
  }, {
2690
- type: "string" | "number" | "boolean" | "object" | "array";
2507
+ type: string;
2691
2508
  name: string;
2692
2509
  required?: boolean | undefined;
2693
2510
  }>, "many">>;
@@ -2698,7 +2515,7 @@ declare const TraitSchema: z.ZodObject<{
2698
2515
  key: string;
2699
2516
  description?: string | undefined;
2700
2517
  payloadSchema?: {
2701
- type: "string" | "number" | "boolean" | "object" | "array";
2518
+ type: string;
2702
2519
  name: string;
2703
2520
  required?: boolean | undefined;
2704
2521
  }[] | undefined;
@@ -2709,7 +2526,7 @@ declare const TraitSchema: z.ZodObject<{
2709
2526
  key: string;
2710
2527
  description?: string | undefined;
2711
2528
  payloadSchema?: {
2712
- type: "string" | "number" | "boolean" | "object" | "array";
2529
+ type: string;
2713
2530
  name: string;
2714
2531
  required?: boolean | undefined;
2715
2532
  }[] | undefined;
@@ -2757,7 +2574,7 @@ declare const TraitSchema: z.ZodObject<{
2757
2574
  key: string;
2758
2575
  description?: string | undefined;
2759
2576
  payloadSchema?: {
2760
- type: "string" | "number" | "boolean" | "object" | "array";
2577
+ type: string;
2761
2578
  name: string;
2762
2579
  required?: boolean | undefined;
2763
2580
  }[] | undefined;
@@ -2792,7 +2609,7 @@ declare const TraitSchema: z.ZodObject<{
2792
2609
  key: string;
2793
2610
  description?: string | undefined;
2794
2611
  payloadSchema?: {
2795
- type: "string" | "number" | "boolean" | "object" | "array";
2612
+ type: string;
2796
2613
  name: string;
2797
2614
  required?: boolean | undefined;
2798
2615
  }[] | undefined;
@@ -2855,22 +2672,39 @@ declare const TraitSchema: z.ZodObject<{
2855
2672
  emits?: string[] | undefined;
2856
2673
  }>, "many">>;
2857
2674
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
2675
+ /**
2676
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
2677
+ * starts with a letter, then any letters / digits / underscores. Both
2678
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
2679
+ * post-Phase 2.5 nominal-event type system (events declared via
2680
+ * `type X = Event<T>`).
2681
+ */
2858
2682
  event: z.ZodString;
2859
2683
  description: z.ZodOptional<z.ZodString>;
2860
2684
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2861
2685
  name: z.ZodString;
2862
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
2686
+ /**
2687
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
2688
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
2689
+ * 'array') are the canonical values; entity-name references like
2690
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
2691
+ * are also valid because the Rust IR's PayloadField.field_type is
2692
+ * just a String. Only enforced narrowly at the call site (e.g.
2693
+ * emit-literal type-mismatch warnings in
2694
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
2695
+ */
2696
+ type: z.ZodString;
2863
2697
  required: z.ZodOptional<z.ZodBoolean>;
2864
2698
  description: z.ZodOptional<z.ZodString>;
2865
2699
  entityType: z.ZodOptional<z.ZodString>;
2866
2700
  }, "strip", z.ZodTypeAny, {
2867
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2701
+ type: string;
2868
2702
  name: string;
2869
2703
  required?: boolean | undefined;
2870
2704
  description?: string | undefined;
2871
2705
  entityType?: string | undefined;
2872
2706
  }, {
2873
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2707
+ type: string;
2874
2708
  name: string;
2875
2709
  required?: boolean | undefined;
2876
2710
  description?: string | undefined;
@@ -2881,7 +2715,7 @@ declare const TraitSchema: z.ZodObject<{
2881
2715
  event: string;
2882
2716
  description?: string | undefined;
2883
2717
  payloadSchema?: {
2884
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2718
+ type: string;
2885
2719
  name: string;
2886
2720
  required?: boolean | undefined;
2887
2721
  description?: string | undefined;
@@ -2892,7 +2726,7 @@ declare const TraitSchema: z.ZodObject<{
2892
2726
  event: string;
2893
2727
  description?: string | undefined;
2894
2728
  payloadSchema?: {
2895
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2729
+ type: string;
2896
2730
  name: string;
2897
2731
  required?: boolean | undefined;
2898
2732
  description?: string | undefined;
@@ -2978,7 +2812,7 @@ declare const TraitSchema: z.ZodObject<{
2978
2812
  event: string;
2979
2813
  description?: string | undefined;
2980
2814
  payloadSchema?: {
2981
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2815
+ type: string;
2982
2816
  name: string;
2983
2817
  required?: boolean | undefined;
2984
2818
  description?: string | undefined;
@@ -3032,7 +2866,7 @@ declare const TraitSchema: z.ZodObject<{
3032
2866
  key: string;
3033
2867
  description?: string | undefined;
3034
2868
  payloadSchema?: {
3035
- type: "string" | "number" | "boolean" | "object" | "array";
2869
+ type: string;
3036
2870
  name: string;
3037
2871
  required?: boolean | undefined;
3038
2872
  }[] | undefined;
@@ -3084,7 +2918,7 @@ declare const TraitSchema: z.ZodObject<{
3084
2918
  event: string;
3085
2919
  description?: string | undefined;
3086
2920
  payloadSchema?: {
3087
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2921
+ type: string;
3088
2922
  name: string;
3089
2923
  required?: boolean | undefined;
3090
2924
  description?: string | undefined;
@@ -3138,7 +2972,7 @@ declare const TraitSchema: z.ZodObject<{
3138
2972
  key: string;
3139
2973
  description?: string | undefined;
3140
2974
  payloadSchema?: {
3141
- type: "string" | "number" | "boolean" | "object" | "array";
2975
+ type: string;
3142
2976
  name: string;
3143
2977
  required?: boolean | undefined;
3144
2978
  }[] | undefined;
@@ -3309,14 +3143,14 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3309
3143
  description: z.ZodOptional<z.ZodString>;
3310
3144
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3311
3145
  name: z.ZodString;
3312
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
3146
+ type: z.ZodString;
3313
3147
  required: z.ZodOptional<z.ZodBoolean>;
3314
3148
  }, "strip", z.ZodTypeAny, {
3315
- type: "string" | "number" | "boolean" | "object" | "array";
3149
+ type: string;
3316
3150
  name: string;
3317
3151
  required?: boolean | undefined;
3318
3152
  }, {
3319
- type: "string" | "number" | "boolean" | "object" | "array";
3153
+ type: string;
3320
3154
  name: string;
3321
3155
  required?: boolean | undefined;
3322
3156
  }>, "many">>;
@@ -3327,7 +3161,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3327
3161
  key: string;
3328
3162
  description?: string | undefined;
3329
3163
  payloadSchema?: {
3330
- type: "string" | "number" | "boolean" | "object" | "array";
3164
+ type: string;
3331
3165
  name: string;
3332
3166
  required?: boolean | undefined;
3333
3167
  }[] | undefined;
@@ -3338,7 +3172,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3338
3172
  key: string;
3339
3173
  description?: string | undefined;
3340
3174
  payloadSchema?: {
3341
- type: "string" | "number" | "boolean" | "object" | "array";
3175
+ type: string;
3342
3176
  name: string;
3343
3177
  required?: boolean | undefined;
3344
3178
  }[] | undefined;
@@ -3386,7 +3220,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3386
3220
  key: string;
3387
3221
  description?: string | undefined;
3388
3222
  payloadSchema?: {
3389
- type: "string" | "number" | "boolean" | "object" | "array";
3223
+ type: string;
3390
3224
  name: string;
3391
3225
  required?: boolean | undefined;
3392
3226
  }[] | undefined;
@@ -3421,7 +3255,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3421
3255
  key: string;
3422
3256
  description?: string | undefined;
3423
3257
  payloadSchema?: {
3424
- type: "string" | "number" | "boolean" | "object" | "array";
3258
+ type: string;
3425
3259
  name: string;
3426
3260
  required?: boolean | undefined;
3427
3261
  }[] | undefined;
@@ -3484,22 +3318,39 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3484
3318
  emits?: string[] | undefined;
3485
3319
  }>, "many">>;
3486
3320
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
3321
+ /**
3322
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
3323
+ * starts with a letter, then any letters / digits / underscores. Both
3324
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
3325
+ * post-Phase 2.5 nominal-event type system (events declared via
3326
+ * `type X = Event<T>`).
3327
+ */
3487
3328
  event: z.ZodString;
3488
3329
  description: z.ZodOptional<z.ZodString>;
3489
3330
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3490
3331
  name: z.ZodString;
3491
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
3332
+ /**
3333
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
3334
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
3335
+ * 'array') are the canonical values; entity-name references like
3336
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
3337
+ * are also valid because the Rust IR's PayloadField.field_type is
3338
+ * just a String. Only enforced narrowly at the call site (e.g.
3339
+ * emit-literal type-mismatch warnings in
3340
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
3341
+ */
3342
+ type: z.ZodString;
3492
3343
  required: z.ZodOptional<z.ZodBoolean>;
3493
3344
  description: z.ZodOptional<z.ZodString>;
3494
3345
  entityType: z.ZodOptional<z.ZodString>;
3495
3346
  }, "strip", z.ZodTypeAny, {
3496
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3347
+ type: string;
3497
3348
  name: string;
3498
3349
  required?: boolean | undefined;
3499
3350
  description?: string | undefined;
3500
3351
  entityType?: string | undefined;
3501
3352
  }, {
3502
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3353
+ type: string;
3503
3354
  name: string;
3504
3355
  required?: boolean | undefined;
3505
3356
  description?: string | undefined;
@@ -3510,7 +3361,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3510
3361
  event: string;
3511
3362
  description?: string | undefined;
3512
3363
  payloadSchema?: {
3513
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3364
+ type: string;
3514
3365
  name: string;
3515
3366
  required?: boolean | undefined;
3516
3367
  description?: string | undefined;
@@ -3521,7 +3372,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3521
3372
  event: string;
3522
3373
  description?: string | undefined;
3523
3374
  payloadSchema?: {
3524
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3375
+ type: string;
3525
3376
  name: string;
3526
3377
  required?: boolean | undefined;
3527
3378
  description?: string | undefined;
@@ -3607,7 +3458,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3607
3458
  event: string;
3608
3459
  description?: string | undefined;
3609
3460
  payloadSchema?: {
3610
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3461
+ type: string;
3611
3462
  name: string;
3612
3463
  required?: boolean | undefined;
3613
3464
  description?: string | undefined;
@@ -3661,7 +3512,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3661
3512
  key: string;
3662
3513
  description?: string | undefined;
3663
3514
  payloadSchema?: {
3664
- type: "string" | "number" | "boolean" | "object" | "array";
3515
+ type: string;
3665
3516
  name: string;
3666
3517
  required?: boolean | undefined;
3667
3518
  }[] | undefined;
@@ -3713,7 +3564,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3713
3564
  event: string;
3714
3565
  description?: string | undefined;
3715
3566
  payloadSchema?: {
3716
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3567
+ type: string;
3717
3568
  name: string;
3718
3569
  required?: boolean | undefined;
3719
3570
  description?: string | undefined;
@@ -3767,7 +3618,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3767
3618
  key: string;
3768
3619
  description?: string | undefined;
3769
3620
  payloadSchema?: {
3770
- type: "string" | "number" | "boolean" | "object" | "array";
3621
+ type: string;
3771
3622
  name: string;
3772
3623
  required?: boolean | undefined;
3773
3624
  }[] | undefined;
@@ -4008,14 +3859,14 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4008
3859
  description: z.ZodOptional<z.ZodString>;
4009
3860
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
4010
3861
  name: z.ZodString;
4011
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
3862
+ type: z.ZodString;
4012
3863
  required: z.ZodOptional<z.ZodBoolean>;
4013
3864
  }, "strip", z.ZodTypeAny, {
4014
- type: "string" | "number" | "boolean" | "object" | "array";
3865
+ type: string;
4015
3866
  name: string;
4016
3867
  required?: boolean | undefined;
4017
3868
  }, {
4018
- type: "string" | "number" | "boolean" | "object" | "array";
3869
+ type: string;
4019
3870
  name: string;
4020
3871
  required?: boolean | undefined;
4021
3872
  }>, "many">>;
@@ -4026,7 +3877,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4026
3877
  key: string;
4027
3878
  description?: string | undefined;
4028
3879
  payloadSchema?: {
4029
- type: "string" | "number" | "boolean" | "object" | "array";
3880
+ type: string;
4030
3881
  name: string;
4031
3882
  required?: boolean | undefined;
4032
3883
  }[] | undefined;
@@ -4037,7 +3888,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4037
3888
  key: string;
4038
3889
  description?: string | undefined;
4039
3890
  payloadSchema?: {
4040
- type: "string" | "number" | "boolean" | "object" | "array";
3891
+ type: string;
4041
3892
  name: string;
4042
3893
  required?: boolean | undefined;
4043
3894
  }[] | undefined;
@@ -4085,7 +3936,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4085
3936
  key: string;
4086
3937
  description?: string | undefined;
4087
3938
  payloadSchema?: {
4088
- type: "string" | "number" | "boolean" | "object" | "array";
3939
+ type: string;
4089
3940
  name: string;
4090
3941
  required?: boolean | undefined;
4091
3942
  }[] | undefined;
@@ -4120,7 +3971,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4120
3971
  key: string;
4121
3972
  description?: string | undefined;
4122
3973
  payloadSchema?: {
4123
- type: "string" | "number" | "boolean" | "object" | "array";
3974
+ type: string;
4124
3975
  name: string;
4125
3976
  required?: boolean | undefined;
4126
3977
  }[] | undefined;
@@ -4183,22 +4034,39 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4183
4034
  emits?: string[] | undefined;
4184
4035
  }>, "many">>;
4185
4036
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
4037
+ /**
4038
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
4039
+ * starts with a letter, then any letters / digits / underscores. Both
4040
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
4041
+ * post-Phase 2.5 nominal-event type system (events declared via
4042
+ * `type X = Event<T>`).
4043
+ */
4186
4044
  event: z.ZodString;
4187
4045
  description: z.ZodOptional<z.ZodString>;
4188
4046
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
4189
4047
  name: z.ZodString;
4190
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
4048
+ /**
4049
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
4050
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
4051
+ * 'array') are the canonical values; entity-name references like
4052
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
4053
+ * are also valid because the Rust IR's PayloadField.field_type is
4054
+ * just a String. Only enforced narrowly at the call site (e.g.
4055
+ * emit-literal type-mismatch warnings in
4056
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
4057
+ */
4058
+ type: z.ZodString;
4191
4059
  required: z.ZodOptional<z.ZodBoolean>;
4192
4060
  description: z.ZodOptional<z.ZodString>;
4193
4061
  entityType: z.ZodOptional<z.ZodString>;
4194
4062
  }, "strip", z.ZodTypeAny, {
4195
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4063
+ type: string;
4196
4064
  name: string;
4197
4065
  required?: boolean | undefined;
4198
4066
  description?: string | undefined;
4199
4067
  entityType?: string | undefined;
4200
4068
  }, {
4201
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4069
+ type: string;
4202
4070
  name: string;
4203
4071
  required?: boolean | undefined;
4204
4072
  description?: string | undefined;
@@ -4209,7 +4077,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4209
4077
  event: string;
4210
4078
  description?: string | undefined;
4211
4079
  payloadSchema?: {
4212
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4080
+ type: string;
4213
4081
  name: string;
4214
4082
  required?: boolean | undefined;
4215
4083
  description?: string | undefined;
@@ -4220,7 +4088,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4220
4088
  event: string;
4221
4089
  description?: string | undefined;
4222
4090
  payloadSchema?: {
4223
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4091
+ type: string;
4224
4092
  name: string;
4225
4093
  required?: boolean | undefined;
4226
4094
  description?: string | undefined;
@@ -4306,7 +4174,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4306
4174
  event: string;
4307
4175
  description?: string | undefined;
4308
4176
  payloadSchema?: {
4309
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4177
+ type: string;
4310
4178
  name: string;
4311
4179
  required?: boolean | undefined;
4312
4180
  description?: string | undefined;
@@ -4360,7 +4228,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4360
4228
  key: string;
4361
4229
  description?: string | undefined;
4362
4230
  payloadSchema?: {
4363
- type: "string" | "number" | "boolean" | "object" | "array";
4231
+ type: string;
4364
4232
  name: string;
4365
4233
  required?: boolean | undefined;
4366
4234
  }[] | undefined;
@@ -4412,7 +4280,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4412
4280
  event: string;
4413
4281
  description?: string | undefined;
4414
4282
  payloadSchema?: {
4415
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4283
+ type: string;
4416
4284
  name: string;
4417
4285
  required?: boolean | undefined;
4418
4286
  description?: string | undefined;
@@ -4466,7 +4334,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4466
4334
  key: string;
4467
4335
  description?: string | undefined;
4468
4336
  payloadSchema?: {
4469
- type: "string" | "number" | "boolean" | "object" | "array";
4337
+ type: string;
4470
4338
  name: string;
4471
4339
  required?: boolean | undefined;
4472
4340
  }[] | undefined;
@@ -4607,8 +4475,12 @@ declare const FieldFormatSchema: z.ZodEnum<["email", "url", "phone", "date", "da
4607
4475
  * Entity field definition.
4608
4476
  */
4609
4477
  interface EntityField {
4610
- /** Field name (camelCase) */
4611
- name: string;
4478
+ /**
4479
+ * Field name (camelCase). Optional for nested item/property descriptors
4480
+ * where the name is implied by the parent (`items`, `properties[k]`).
4481
+ * Mirrors Rust's `FieldDefinition.name: Option<String>`.
4482
+ */
4483
+ name?: string;
4612
4484
  /** Data type */
4613
4485
  type: FieldType;
4614
4486
  /** Whether the field is required */
@@ -6677,14 +6549,14 @@ declare const PageRefObjectSchema: z.ZodObject<{
6677
6549
  description: z.ZodOptional<z.ZodString>;
6678
6550
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
6679
6551
  name: z.ZodString;
6680
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
6552
+ type: z.ZodString;
6681
6553
  required: z.ZodOptional<z.ZodBoolean>;
6682
6554
  }, "strip", z.ZodTypeAny, {
6683
- type: "string" | "number" | "boolean" | "object" | "array";
6555
+ type: string;
6684
6556
  name: string;
6685
6557
  required?: boolean | undefined;
6686
6558
  }, {
6687
- type: "string" | "number" | "boolean" | "object" | "array";
6559
+ type: string;
6688
6560
  name: string;
6689
6561
  required?: boolean | undefined;
6690
6562
  }>, "many">>;
@@ -6695,7 +6567,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6695
6567
  key: string;
6696
6568
  description?: string | undefined;
6697
6569
  payloadSchema?: {
6698
- type: "string" | "number" | "boolean" | "object" | "array";
6570
+ type: string;
6699
6571
  name: string;
6700
6572
  required?: boolean | undefined;
6701
6573
  }[] | undefined;
@@ -6706,7 +6578,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6706
6578
  key: string;
6707
6579
  description?: string | undefined;
6708
6580
  payloadSchema?: {
6709
- type: "string" | "number" | "boolean" | "object" | "array";
6581
+ type: string;
6710
6582
  name: string;
6711
6583
  required?: boolean | undefined;
6712
6584
  }[] | undefined;
@@ -6754,7 +6626,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6754
6626
  key: string;
6755
6627
  description?: string | undefined;
6756
6628
  payloadSchema?: {
6757
- type: "string" | "number" | "boolean" | "object" | "array";
6629
+ type: string;
6758
6630
  name: string;
6759
6631
  required?: boolean | undefined;
6760
6632
  }[] | undefined;
@@ -6789,7 +6661,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6789
6661
  key: string;
6790
6662
  description?: string | undefined;
6791
6663
  payloadSchema?: {
6792
- type: "string" | "number" | "boolean" | "object" | "array";
6664
+ type: string;
6793
6665
  name: string;
6794
6666
  required?: boolean | undefined;
6795
6667
  }[] | undefined;
@@ -6856,18 +6728,18 @@ declare const PageRefObjectSchema: z.ZodObject<{
6856
6728
  description: z.ZodOptional<z.ZodString>;
6857
6729
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
6858
6730
  name: z.ZodString;
6859
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
6731
+ type: z.ZodString;
6860
6732
  required: z.ZodOptional<z.ZodBoolean>;
6861
6733
  description: z.ZodOptional<z.ZodString>;
6862
6734
  entityType: z.ZodOptional<z.ZodString>;
6863
6735
  }, "strip", z.ZodTypeAny, {
6864
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6736
+ type: string;
6865
6737
  name: string;
6866
6738
  required?: boolean | undefined;
6867
6739
  description?: string | undefined;
6868
6740
  entityType?: string | undefined;
6869
6741
  }, {
6870
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6742
+ type: string;
6871
6743
  name: string;
6872
6744
  required?: boolean | undefined;
6873
6745
  description?: string | undefined;
@@ -6878,7 +6750,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6878
6750
  event: string;
6879
6751
  description?: string | undefined;
6880
6752
  payloadSchema?: {
6881
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6753
+ type: string;
6882
6754
  name: string;
6883
6755
  required?: boolean | undefined;
6884
6756
  description?: string | undefined;
@@ -6889,7 +6761,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6889
6761
  event: string;
6890
6762
  description?: string | undefined;
6891
6763
  payloadSchema?: {
6892
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6764
+ type: string;
6893
6765
  name: string;
6894
6766
  required?: boolean | undefined;
6895
6767
  description?: string | undefined;
@@ -6975,7 +6847,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6975
6847
  event: string;
6976
6848
  description?: string | undefined;
6977
6849
  payloadSchema?: {
6978
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6850
+ type: string;
6979
6851
  name: string;
6980
6852
  required?: boolean | undefined;
6981
6853
  description?: string | undefined;
@@ -7029,7 +6901,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7029
6901
  key: string;
7030
6902
  description?: string | undefined;
7031
6903
  payloadSchema?: {
7032
- type: "string" | "number" | "boolean" | "object" | "array";
6904
+ type: string;
7033
6905
  name: string;
7034
6906
  required?: boolean | undefined;
7035
6907
  }[] | undefined;
@@ -7081,7 +6953,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7081
6953
  event: string;
7082
6954
  description?: string | undefined;
7083
6955
  payloadSchema?: {
7084
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6956
+ type: string;
7085
6957
  name: string;
7086
6958
  required?: boolean | undefined;
7087
6959
  description?: string | undefined;
@@ -7135,7 +7007,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7135
7007
  key: string;
7136
7008
  description?: string | undefined;
7137
7009
  payloadSchema?: {
7138
- type: "string" | "number" | "boolean" | "object" | "array";
7010
+ type: string;
7139
7011
  name: string;
7140
7012
  required?: boolean | undefined;
7141
7013
  }[] | undefined;
@@ -7193,7 +7065,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7193
7065
  event: string;
7194
7066
  description?: string | undefined;
7195
7067
  payloadSchema?: {
7196
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7068
+ type: string;
7197
7069
  name: string;
7198
7070
  required?: boolean | undefined;
7199
7071
  description?: string | undefined;
@@ -7247,7 +7119,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7247
7119
  key: string;
7248
7120
  description?: string | undefined;
7249
7121
  payloadSchema?: {
7250
- type: "string" | "number" | "boolean" | "object" | "array";
7122
+ type: string;
7251
7123
  name: string;
7252
7124
  required?: boolean | undefined;
7253
7125
  }[] | undefined;
@@ -7311,7 +7183,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7311
7183
  event: string;
7312
7184
  description?: string | undefined;
7313
7185
  payloadSchema?: {
7314
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7186
+ type: string;
7315
7187
  name: string;
7316
7188
  required?: boolean | undefined;
7317
7189
  description?: string | undefined;
@@ -7365,7 +7237,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7365
7237
  key: string;
7366
7238
  description?: string | undefined;
7367
7239
  payloadSchema?: {
7368
- type: "string" | "number" | "boolean" | "object" | "array";
7240
+ type: string;
7369
7241
  name: string;
7370
7242
  required?: boolean | undefined;
7371
7243
  }[] | undefined;
@@ -7592,14 +7464,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7592
7464
  description: z.ZodOptional<z.ZodString>;
7593
7465
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
7594
7466
  name: z.ZodString;
7595
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
7467
+ type: z.ZodString;
7596
7468
  required: z.ZodOptional<z.ZodBoolean>;
7597
7469
  }, "strip", z.ZodTypeAny, {
7598
- type: "string" | "number" | "boolean" | "object" | "array";
7470
+ type: string;
7599
7471
  name: string;
7600
7472
  required?: boolean | undefined;
7601
7473
  }, {
7602
- type: "string" | "number" | "boolean" | "object" | "array";
7474
+ type: string;
7603
7475
  name: string;
7604
7476
  required?: boolean | undefined;
7605
7477
  }>, "many">>;
@@ -7610,7 +7482,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7610
7482
  key: string;
7611
7483
  description?: string | undefined;
7612
7484
  payloadSchema?: {
7613
- type: "string" | "number" | "boolean" | "object" | "array";
7485
+ type: string;
7614
7486
  name: string;
7615
7487
  required?: boolean | undefined;
7616
7488
  }[] | undefined;
@@ -7621,7 +7493,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7621
7493
  key: string;
7622
7494
  description?: string | undefined;
7623
7495
  payloadSchema?: {
7624
- type: "string" | "number" | "boolean" | "object" | "array";
7496
+ type: string;
7625
7497
  name: string;
7626
7498
  required?: boolean | undefined;
7627
7499
  }[] | undefined;
@@ -7669,7 +7541,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7669
7541
  key: string;
7670
7542
  description?: string | undefined;
7671
7543
  payloadSchema?: {
7672
- type: "string" | "number" | "boolean" | "object" | "array";
7544
+ type: string;
7673
7545
  name: string;
7674
7546
  required?: boolean | undefined;
7675
7547
  }[] | undefined;
@@ -7704,7 +7576,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7704
7576
  key: string;
7705
7577
  description?: string | undefined;
7706
7578
  payloadSchema?: {
7707
- type: "string" | "number" | "boolean" | "object" | "array";
7579
+ type: string;
7708
7580
  name: string;
7709
7581
  required?: boolean | undefined;
7710
7582
  }[] | undefined;
@@ -7771,18 +7643,18 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7771
7643
  description: z.ZodOptional<z.ZodString>;
7772
7644
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
7773
7645
  name: z.ZodString;
7774
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
7646
+ type: z.ZodString;
7775
7647
  required: z.ZodOptional<z.ZodBoolean>;
7776
7648
  description: z.ZodOptional<z.ZodString>;
7777
7649
  entityType: z.ZodOptional<z.ZodString>;
7778
7650
  }, "strip", z.ZodTypeAny, {
7779
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7651
+ type: string;
7780
7652
  name: string;
7781
7653
  required?: boolean | undefined;
7782
7654
  description?: string | undefined;
7783
7655
  entityType?: string | undefined;
7784
7656
  }, {
7785
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7657
+ type: string;
7786
7658
  name: string;
7787
7659
  required?: boolean | undefined;
7788
7660
  description?: string | undefined;
@@ -7793,7 +7665,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7793
7665
  event: string;
7794
7666
  description?: string | undefined;
7795
7667
  payloadSchema?: {
7796
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7668
+ type: string;
7797
7669
  name: string;
7798
7670
  required?: boolean | undefined;
7799
7671
  description?: string | undefined;
@@ -7804,7 +7676,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7804
7676
  event: string;
7805
7677
  description?: string | undefined;
7806
7678
  payloadSchema?: {
7807
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7679
+ type: string;
7808
7680
  name: string;
7809
7681
  required?: boolean | undefined;
7810
7682
  description?: string | undefined;
@@ -7890,7 +7762,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7890
7762
  event: string;
7891
7763
  description?: string | undefined;
7892
7764
  payloadSchema?: {
7893
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7765
+ type: string;
7894
7766
  name: string;
7895
7767
  required?: boolean | undefined;
7896
7768
  description?: string | undefined;
@@ -7944,7 +7816,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7944
7816
  key: string;
7945
7817
  description?: string | undefined;
7946
7818
  payloadSchema?: {
7947
- type: "string" | "number" | "boolean" | "object" | "array";
7819
+ type: string;
7948
7820
  name: string;
7949
7821
  required?: boolean | undefined;
7950
7822
  }[] | undefined;
@@ -7996,7 +7868,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7996
7868
  event: string;
7997
7869
  description?: string | undefined;
7998
7870
  payloadSchema?: {
7999
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7871
+ type: string;
8000
7872
  name: string;
8001
7873
  required?: boolean | undefined;
8002
7874
  description?: string | undefined;
@@ -8050,7 +7922,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8050
7922
  key: string;
8051
7923
  description?: string | undefined;
8052
7924
  payloadSchema?: {
8053
- type: "string" | "number" | "boolean" | "object" | "array";
7925
+ type: string;
8054
7926
  name: string;
8055
7927
  required?: boolean | undefined;
8056
7928
  }[] | undefined;
@@ -8108,7 +7980,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8108
7980
  event: string;
8109
7981
  description?: string | undefined;
8110
7982
  payloadSchema?: {
8111
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7983
+ type: string;
8112
7984
  name: string;
8113
7985
  required?: boolean | undefined;
8114
7986
  description?: string | undefined;
@@ -8162,7 +8034,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8162
8034
  key: string;
8163
8035
  description?: string | undefined;
8164
8036
  payloadSchema?: {
8165
- type: "string" | "number" | "boolean" | "object" | "array";
8037
+ type: string;
8166
8038
  name: string;
8167
8039
  required?: boolean | undefined;
8168
8040
  }[] | undefined;
@@ -8226,7 +8098,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8226
8098
  event: string;
8227
8099
  description?: string | undefined;
8228
8100
  payloadSchema?: {
8229
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8101
+ type: string;
8230
8102
  name: string;
8231
8103
  required?: boolean | undefined;
8232
8104
  description?: string | undefined;
@@ -8280,7 +8152,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8280
8152
  key: string;
8281
8153
  description?: string | undefined;
8282
8154
  payloadSchema?: {
8283
- type: "string" | "number" | "boolean" | "object" | "array";
8155
+ type: string;
8284
8156
  name: string;
8285
8157
  required?: boolean | undefined;
8286
8158
  }[] | undefined;
@@ -8478,18 +8350,18 @@ declare const ComputedEventContractSchema: z.ZodObject<{
8478
8350
  description: z.ZodOptional<z.ZodString>;
8479
8351
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
8480
8352
  name: z.ZodString;
8481
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
8353
+ type: z.ZodString;
8482
8354
  required: z.ZodOptional<z.ZodBoolean>;
8483
8355
  description: z.ZodOptional<z.ZodString>;
8484
8356
  entityType: z.ZodOptional<z.ZodString>;
8485
8357
  }, "strip", z.ZodTypeAny, {
8486
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8358
+ type: string;
8487
8359
  name: string;
8488
8360
  required?: boolean | undefined;
8489
8361
  description?: string | undefined;
8490
8362
  entityType?: string | undefined;
8491
8363
  }, {
8492
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8364
+ type: string;
8493
8365
  name: string;
8494
8366
  required?: boolean | undefined;
8495
8367
  description?: string | undefined;
@@ -8505,7 +8377,7 @@ declare const ComputedEventContractSchema: z.ZodObject<{
8505
8377
  originalEvent: string;
8506
8378
  description?: string | undefined;
8507
8379
  payload?: {
8508
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8380
+ type: string;
8509
8381
  name: string;
8510
8382
  required?: boolean | undefined;
8511
8383
  description?: string | undefined;
@@ -8521,7 +8393,7 @@ declare const ComputedEventContractSchema: z.ZodObject<{
8521
8393
  originalEvent: string;
8522
8394
  description?: string | undefined;
8523
8395
  payload?: {
8524
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8396
+ type: string;
8525
8397
  name: string;
8526
8398
  required?: boolean | undefined;
8527
8399
  description?: string | undefined;
@@ -9166,14 +9038,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9166
9038
  description: z.ZodOptional<z.ZodString>;
9167
9039
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
9168
9040
  name: z.ZodString;
9169
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
9041
+ type: z.ZodString;
9170
9042
  required: z.ZodOptional<z.ZodBoolean>;
9171
9043
  }, "strip", z.ZodTypeAny, {
9172
- type: "string" | "number" | "boolean" | "object" | "array";
9044
+ type: string;
9173
9045
  name: string;
9174
9046
  required?: boolean | undefined;
9175
9047
  }, {
9176
- type: "string" | "number" | "boolean" | "object" | "array";
9048
+ type: string;
9177
9049
  name: string;
9178
9050
  required?: boolean | undefined;
9179
9051
  }>, "many">>;
@@ -9184,7 +9056,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9184
9056
  key: string;
9185
9057
  description?: string | undefined;
9186
9058
  payloadSchema?: {
9187
- type: "string" | "number" | "boolean" | "object" | "array";
9059
+ type: string;
9188
9060
  name: string;
9189
9061
  required?: boolean | undefined;
9190
9062
  }[] | undefined;
@@ -9195,7 +9067,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9195
9067
  key: string;
9196
9068
  description?: string | undefined;
9197
9069
  payloadSchema?: {
9198
- type: "string" | "number" | "boolean" | "object" | "array";
9070
+ type: string;
9199
9071
  name: string;
9200
9072
  required?: boolean | undefined;
9201
9073
  }[] | undefined;
@@ -9243,7 +9115,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9243
9115
  key: string;
9244
9116
  description?: string | undefined;
9245
9117
  payloadSchema?: {
9246
- type: "string" | "number" | "boolean" | "object" | "array";
9118
+ type: string;
9247
9119
  name: string;
9248
9120
  required?: boolean | undefined;
9249
9121
  }[] | undefined;
@@ -9278,7 +9150,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9278
9150
  key: string;
9279
9151
  description?: string | undefined;
9280
9152
  payloadSchema?: {
9281
- type: "string" | "number" | "boolean" | "object" | "array";
9153
+ type: string;
9282
9154
  name: string;
9283
9155
  required?: boolean | undefined;
9284
9156
  }[] | undefined;
@@ -9345,18 +9217,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9345
9217
  description: z.ZodOptional<z.ZodString>;
9346
9218
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
9347
9219
  name: z.ZodString;
9348
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
9220
+ type: z.ZodString;
9349
9221
  required: z.ZodOptional<z.ZodBoolean>;
9350
9222
  description: z.ZodOptional<z.ZodString>;
9351
9223
  entityType: z.ZodOptional<z.ZodString>;
9352
9224
  }, "strip", z.ZodTypeAny, {
9353
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9225
+ type: string;
9354
9226
  name: string;
9355
9227
  required?: boolean | undefined;
9356
9228
  description?: string | undefined;
9357
9229
  entityType?: string | undefined;
9358
9230
  }, {
9359
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9231
+ type: string;
9360
9232
  name: string;
9361
9233
  required?: boolean | undefined;
9362
9234
  description?: string | undefined;
@@ -9367,7 +9239,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9367
9239
  event: string;
9368
9240
  description?: string | undefined;
9369
9241
  payloadSchema?: {
9370
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9242
+ type: string;
9371
9243
  name: string;
9372
9244
  required?: boolean | undefined;
9373
9245
  description?: string | undefined;
@@ -9378,7 +9250,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9378
9250
  event: string;
9379
9251
  description?: string | undefined;
9380
9252
  payloadSchema?: {
9381
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9253
+ type: string;
9382
9254
  name: string;
9383
9255
  required?: boolean | undefined;
9384
9256
  description?: string | undefined;
@@ -9464,7 +9336,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9464
9336
  event: string;
9465
9337
  description?: string | undefined;
9466
9338
  payloadSchema?: {
9467
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9339
+ type: string;
9468
9340
  name: string;
9469
9341
  required?: boolean | undefined;
9470
9342
  description?: string | undefined;
@@ -9518,7 +9390,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9518
9390
  key: string;
9519
9391
  description?: string | undefined;
9520
9392
  payloadSchema?: {
9521
- type: "string" | "number" | "boolean" | "object" | "array";
9393
+ type: string;
9522
9394
  name: string;
9523
9395
  required?: boolean | undefined;
9524
9396
  }[] | undefined;
@@ -9570,7 +9442,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9570
9442
  event: string;
9571
9443
  description?: string | undefined;
9572
9444
  payloadSchema?: {
9573
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9445
+ type: string;
9574
9446
  name: string;
9575
9447
  required?: boolean | undefined;
9576
9448
  description?: string | undefined;
@@ -9624,7 +9496,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9624
9496
  key: string;
9625
9497
  description?: string | undefined;
9626
9498
  payloadSchema?: {
9627
- type: "string" | "number" | "boolean" | "object" | "array";
9499
+ type: string;
9628
9500
  name: string;
9629
9501
  required?: boolean | undefined;
9630
9502
  }[] | undefined;
@@ -9844,14 +9716,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9844
9716
  description: z.ZodOptional<z.ZodString>;
9845
9717
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
9846
9718
  name: z.ZodString;
9847
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
9719
+ type: z.ZodString;
9848
9720
  required: z.ZodOptional<z.ZodBoolean>;
9849
9721
  }, "strip", z.ZodTypeAny, {
9850
- type: "string" | "number" | "boolean" | "object" | "array";
9722
+ type: string;
9851
9723
  name: string;
9852
9724
  required?: boolean | undefined;
9853
9725
  }, {
9854
- type: "string" | "number" | "boolean" | "object" | "array";
9726
+ type: string;
9855
9727
  name: string;
9856
9728
  required?: boolean | undefined;
9857
9729
  }>, "many">>;
@@ -9862,7 +9734,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9862
9734
  key: string;
9863
9735
  description?: string | undefined;
9864
9736
  payloadSchema?: {
9865
- type: "string" | "number" | "boolean" | "object" | "array";
9737
+ type: string;
9866
9738
  name: string;
9867
9739
  required?: boolean | undefined;
9868
9740
  }[] | undefined;
@@ -9873,7 +9745,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9873
9745
  key: string;
9874
9746
  description?: string | undefined;
9875
9747
  payloadSchema?: {
9876
- type: "string" | "number" | "boolean" | "object" | "array";
9748
+ type: string;
9877
9749
  name: string;
9878
9750
  required?: boolean | undefined;
9879
9751
  }[] | undefined;
@@ -9921,7 +9793,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9921
9793
  key: string;
9922
9794
  description?: string | undefined;
9923
9795
  payloadSchema?: {
9924
- type: "string" | "number" | "boolean" | "object" | "array";
9796
+ type: string;
9925
9797
  name: string;
9926
9798
  required?: boolean | undefined;
9927
9799
  }[] | undefined;
@@ -9956,7 +9828,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9956
9828
  key: string;
9957
9829
  description?: string | undefined;
9958
9830
  payloadSchema?: {
9959
- type: "string" | "number" | "boolean" | "object" | "array";
9831
+ type: string;
9960
9832
  name: string;
9961
9833
  required?: boolean | undefined;
9962
9834
  }[] | undefined;
@@ -10023,18 +9895,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10023
9895
  description: z.ZodOptional<z.ZodString>;
10024
9896
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
10025
9897
  name: z.ZodString;
10026
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
9898
+ type: z.ZodString;
10027
9899
  required: z.ZodOptional<z.ZodBoolean>;
10028
9900
  description: z.ZodOptional<z.ZodString>;
10029
9901
  entityType: z.ZodOptional<z.ZodString>;
10030
9902
  }, "strip", z.ZodTypeAny, {
10031
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9903
+ type: string;
10032
9904
  name: string;
10033
9905
  required?: boolean | undefined;
10034
9906
  description?: string | undefined;
10035
9907
  entityType?: string | undefined;
10036
9908
  }, {
10037
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9909
+ type: string;
10038
9910
  name: string;
10039
9911
  required?: boolean | undefined;
10040
9912
  description?: string | undefined;
@@ -10045,7 +9917,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10045
9917
  event: string;
10046
9918
  description?: string | undefined;
10047
9919
  payloadSchema?: {
10048
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9920
+ type: string;
10049
9921
  name: string;
10050
9922
  required?: boolean | undefined;
10051
9923
  description?: string | undefined;
@@ -10056,7 +9928,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10056
9928
  event: string;
10057
9929
  description?: string | undefined;
10058
9930
  payloadSchema?: {
10059
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9931
+ type: string;
10060
9932
  name: string;
10061
9933
  required?: boolean | undefined;
10062
9934
  description?: string | undefined;
@@ -10142,7 +10014,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10142
10014
  event: string;
10143
10015
  description?: string | undefined;
10144
10016
  payloadSchema?: {
10145
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10017
+ type: string;
10146
10018
  name: string;
10147
10019
  required?: boolean | undefined;
10148
10020
  description?: string | undefined;
@@ -10196,7 +10068,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10196
10068
  key: string;
10197
10069
  description?: string | undefined;
10198
10070
  payloadSchema?: {
10199
- type: "string" | "number" | "boolean" | "object" | "array";
10071
+ type: string;
10200
10072
  name: string;
10201
10073
  required?: boolean | undefined;
10202
10074
  }[] | undefined;
@@ -10248,7 +10120,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10248
10120
  event: string;
10249
10121
  description?: string | undefined;
10250
10122
  payloadSchema?: {
10251
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10123
+ type: string;
10252
10124
  name: string;
10253
10125
  required?: boolean | undefined;
10254
10126
  description?: string | undefined;
@@ -10302,7 +10174,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10302
10174
  key: string;
10303
10175
  description?: string | undefined;
10304
10176
  payloadSchema?: {
10305
- type: "string" | "number" | "boolean" | "object" | "array";
10177
+ type: string;
10306
10178
  name: string;
10307
10179
  required?: boolean | undefined;
10308
10180
  }[] | undefined;
@@ -10360,7 +10232,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10360
10232
  event: string;
10361
10233
  description?: string | undefined;
10362
10234
  payloadSchema?: {
10363
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10235
+ type: string;
10364
10236
  name: string;
10365
10237
  required?: boolean | undefined;
10366
10238
  description?: string | undefined;
@@ -10414,7 +10286,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10414
10286
  key: string;
10415
10287
  description?: string | undefined;
10416
10288
  payloadSchema?: {
10417
- type: "string" | "number" | "boolean" | "object" | "array";
10289
+ type: string;
10418
10290
  name: string;
10419
10291
  required?: boolean | undefined;
10420
10292
  }[] | undefined;
@@ -10478,7 +10350,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10478
10350
  event: string;
10479
10351
  description?: string | undefined;
10480
10352
  payloadSchema?: {
10481
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10353
+ type: string;
10482
10354
  name: string;
10483
10355
  required?: boolean | undefined;
10484
10356
  description?: string | undefined;
@@ -10532,7 +10404,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10532
10404
  key: string;
10533
10405
  description?: string | undefined;
10534
10406
  payloadSchema?: {
10535
- type: "string" | "number" | "boolean" | "object" | "array";
10407
+ type: string;
10536
10408
  name: string;
10537
10409
  required?: boolean | undefined;
10538
10410
  }[] | undefined;
@@ -10601,18 +10473,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10601
10473
  description: z.ZodOptional<z.ZodString>;
10602
10474
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
10603
10475
  name: z.ZodString;
10604
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
10476
+ type: z.ZodString;
10605
10477
  required: z.ZodOptional<z.ZodBoolean>;
10606
10478
  description: z.ZodOptional<z.ZodString>;
10607
10479
  entityType: z.ZodOptional<z.ZodString>;
10608
10480
  }, "strip", z.ZodTypeAny, {
10609
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10481
+ type: string;
10610
10482
  name: string;
10611
10483
  required?: boolean | undefined;
10612
10484
  description?: string | undefined;
10613
10485
  entityType?: string | undefined;
10614
10486
  }, {
10615
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10487
+ type: string;
10616
10488
  name: string;
10617
10489
  required?: boolean | undefined;
10618
10490
  description?: string | undefined;
@@ -10628,7 +10500,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10628
10500
  originalEvent: string;
10629
10501
  description?: string | undefined;
10630
10502
  payload?: {
10631
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10503
+ type: string;
10632
10504
  name: string;
10633
10505
  required?: boolean | undefined;
10634
10506
  description?: string | undefined;
@@ -10644,7 +10516,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10644
10516
  originalEvent: string;
10645
10517
  description?: string | undefined;
10646
10518
  payload?: {
10647
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10519
+ type: string;
10648
10520
  name: string;
10649
10521
  required?: boolean | undefined;
10650
10522
  description?: string | undefined;
@@ -10876,7 +10748,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10876
10748
  event: string;
10877
10749
  description?: string | undefined;
10878
10750
  payloadSchema?: {
10879
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10751
+ type: string;
10880
10752
  name: string;
10881
10753
  required?: boolean | undefined;
10882
10754
  description?: string | undefined;
@@ -10930,7 +10802,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10930
10802
  key: string;
10931
10803
  description?: string | undefined;
10932
10804
  payloadSchema?: {
10933
- type: "string" | "number" | "boolean" | "object" | "array";
10805
+ type: string;
10934
10806
  name: string;
10935
10807
  required?: boolean | undefined;
10936
10808
  }[] | undefined;
@@ -10990,7 +10862,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10990
10862
  event: string;
10991
10863
  description?: string | undefined;
10992
10864
  payloadSchema?: {
10993
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10865
+ type: string;
10994
10866
  name: string;
10995
10867
  required?: boolean | undefined;
10996
10868
  description?: string | undefined;
@@ -11044,7 +10916,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11044
10916
  key: string;
11045
10917
  description?: string | undefined;
11046
10918
  payloadSchema?: {
11047
- type: "string" | "number" | "boolean" | "object" | "array";
10919
+ type: string;
11048
10920
  name: string;
11049
10921
  required?: boolean | undefined;
11050
10922
  }[] | undefined;
@@ -11122,7 +10994,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11122
10994
  originalEvent: string;
11123
10995
  description?: string | undefined;
11124
10996
  payload?: {
11125
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10997
+ type: string;
11126
10998
  name: string;
11127
10999
  required?: boolean | undefined;
11128
11000
  description?: string | undefined;
@@ -11274,7 +11146,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11274
11146
  event: string;
11275
11147
  description?: string | undefined;
11276
11148
  payloadSchema?: {
11277
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11149
+ type: string;
11278
11150
  name: string;
11279
11151
  required?: boolean | undefined;
11280
11152
  description?: string | undefined;
@@ -11328,7 +11200,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11328
11200
  key: string;
11329
11201
  description?: string | undefined;
11330
11202
  payloadSchema?: {
11331
- type: "string" | "number" | "boolean" | "object" | "array";
11203
+ type: string;
11332
11204
  name: string;
11333
11205
  required?: boolean | undefined;
11334
11206
  }[] | undefined;
@@ -11388,7 +11260,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11388
11260
  event: string;
11389
11261
  description?: string | undefined;
11390
11262
  payloadSchema?: {
11391
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11263
+ type: string;
11392
11264
  name: string;
11393
11265
  required?: boolean | undefined;
11394
11266
  description?: string | undefined;
@@ -11442,7 +11314,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11442
11314
  key: string;
11443
11315
  description?: string | undefined;
11444
11316
  payloadSchema?: {
11445
- type: "string" | "number" | "boolean" | "object" | "array";
11317
+ type: string;
11446
11318
  name: string;
11447
11319
  required?: boolean | undefined;
11448
11320
  }[] | undefined;
@@ -11520,7 +11392,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11520
11392
  originalEvent: string;
11521
11393
  description?: string | undefined;
11522
11394
  payload?: {
11523
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11395
+ type: string;
11524
11396
  name: string;
11525
11397
  required?: boolean | undefined;
11526
11398
  description?: string | undefined;
@@ -12077,14 +11949,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
12077
11949
  description: z.ZodOptional<z.ZodString>;
12078
11950
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12079
11951
  name: z.ZodString;
12080
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
11952
+ type: z.ZodString;
12081
11953
  required: z.ZodOptional<z.ZodBoolean>;
12082
11954
  }, "strip", z.ZodTypeAny, {
12083
- type: "string" | "number" | "boolean" | "object" | "array";
11955
+ type: string;
12084
11956
  name: string;
12085
11957
  required?: boolean | undefined;
12086
11958
  }, {
12087
- type: "string" | "number" | "boolean" | "object" | "array";
11959
+ type: string;
12088
11960
  name: string;
12089
11961
  required?: boolean | undefined;
12090
11962
  }>, "many">>;
@@ -12095,7 +11967,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12095
11967
  key: string;
12096
11968
  description?: string | undefined;
12097
11969
  payloadSchema?: {
12098
- type: "string" | "number" | "boolean" | "object" | "array";
11970
+ type: string;
12099
11971
  name: string;
12100
11972
  required?: boolean | undefined;
12101
11973
  }[] | undefined;
@@ -12106,7 +11978,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12106
11978
  key: string;
12107
11979
  description?: string | undefined;
12108
11980
  payloadSchema?: {
12109
- type: "string" | "number" | "boolean" | "object" | "array";
11981
+ type: string;
12110
11982
  name: string;
12111
11983
  required?: boolean | undefined;
12112
11984
  }[] | undefined;
@@ -12154,7 +12026,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12154
12026
  key: string;
12155
12027
  description?: string | undefined;
12156
12028
  payloadSchema?: {
12157
- type: "string" | "number" | "boolean" | "object" | "array";
12029
+ type: string;
12158
12030
  name: string;
12159
12031
  required?: boolean | undefined;
12160
12032
  }[] | undefined;
@@ -12189,7 +12061,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12189
12061
  key: string;
12190
12062
  description?: string | undefined;
12191
12063
  payloadSchema?: {
12192
- type: "string" | "number" | "boolean" | "object" | "array";
12064
+ type: string;
12193
12065
  name: string;
12194
12066
  required?: boolean | undefined;
12195
12067
  }[] | undefined;
@@ -12256,18 +12128,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
12256
12128
  description: z.ZodOptional<z.ZodString>;
12257
12129
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12258
12130
  name: z.ZodString;
12259
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
12131
+ type: z.ZodString;
12260
12132
  required: z.ZodOptional<z.ZodBoolean>;
12261
12133
  description: z.ZodOptional<z.ZodString>;
12262
12134
  entityType: z.ZodOptional<z.ZodString>;
12263
12135
  }, "strip", z.ZodTypeAny, {
12264
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12136
+ type: string;
12265
12137
  name: string;
12266
12138
  required?: boolean | undefined;
12267
12139
  description?: string | undefined;
12268
12140
  entityType?: string | undefined;
12269
12141
  }, {
12270
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12142
+ type: string;
12271
12143
  name: string;
12272
12144
  required?: boolean | undefined;
12273
12145
  description?: string | undefined;
@@ -12278,7 +12150,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12278
12150
  event: string;
12279
12151
  description?: string | undefined;
12280
12152
  payloadSchema?: {
12281
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12153
+ type: string;
12282
12154
  name: string;
12283
12155
  required?: boolean | undefined;
12284
12156
  description?: string | undefined;
@@ -12289,7 +12161,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12289
12161
  event: string;
12290
12162
  description?: string | undefined;
12291
12163
  payloadSchema?: {
12292
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12164
+ type: string;
12293
12165
  name: string;
12294
12166
  required?: boolean | undefined;
12295
12167
  description?: string | undefined;
@@ -12375,7 +12247,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12375
12247
  event: string;
12376
12248
  description?: string | undefined;
12377
12249
  payloadSchema?: {
12378
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12250
+ type: string;
12379
12251
  name: string;
12380
12252
  required?: boolean | undefined;
12381
12253
  description?: string | undefined;
@@ -12429,7 +12301,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12429
12301
  key: string;
12430
12302
  description?: string | undefined;
12431
12303
  payloadSchema?: {
12432
- type: "string" | "number" | "boolean" | "object" | "array";
12304
+ type: string;
12433
12305
  name: string;
12434
12306
  required?: boolean | undefined;
12435
12307
  }[] | undefined;
@@ -12481,7 +12353,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12481
12353
  event: string;
12482
12354
  description?: string | undefined;
12483
12355
  payloadSchema?: {
12484
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12356
+ type: string;
12485
12357
  name: string;
12486
12358
  required?: boolean | undefined;
12487
12359
  description?: string | undefined;
@@ -12535,7 +12407,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12535
12407
  key: string;
12536
12408
  description?: string | undefined;
12537
12409
  payloadSchema?: {
12538
- type: "string" | "number" | "boolean" | "object" | "array";
12410
+ type: string;
12539
12411
  name: string;
12540
12412
  required?: boolean | undefined;
12541
12413
  }[] | undefined;
@@ -12755,14 +12627,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
12755
12627
  description: z.ZodOptional<z.ZodString>;
12756
12628
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12757
12629
  name: z.ZodString;
12758
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
12630
+ type: z.ZodString;
12759
12631
  required: z.ZodOptional<z.ZodBoolean>;
12760
12632
  }, "strip", z.ZodTypeAny, {
12761
- type: "string" | "number" | "boolean" | "object" | "array";
12633
+ type: string;
12762
12634
  name: string;
12763
12635
  required?: boolean | undefined;
12764
12636
  }, {
12765
- type: "string" | "number" | "boolean" | "object" | "array";
12637
+ type: string;
12766
12638
  name: string;
12767
12639
  required?: boolean | undefined;
12768
12640
  }>, "many">>;
@@ -12773,7 +12645,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12773
12645
  key: string;
12774
12646
  description?: string | undefined;
12775
12647
  payloadSchema?: {
12776
- type: "string" | "number" | "boolean" | "object" | "array";
12648
+ type: string;
12777
12649
  name: string;
12778
12650
  required?: boolean | undefined;
12779
12651
  }[] | undefined;
@@ -12784,7 +12656,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12784
12656
  key: string;
12785
12657
  description?: string | undefined;
12786
12658
  payloadSchema?: {
12787
- type: "string" | "number" | "boolean" | "object" | "array";
12659
+ type: string;
12788
12660
  name: string;
12789
12661
  required?: boolean | undefined;
12790
12662
  }[] | undefined;
@@ -12832,7 +12704,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12832
12704
  key: string;
12833
12705
  description?: string | undefined;
12834
12706
  payloadSchema?: {
12835
- type: "string" | "number" | "boolean" | "object" | "array";
12707
+ type: string;
12836
12708
  name: string;
12837
12709
  required?: boolean | undefined;
12838
12710
  }[] | undefined;
@@ -12867,7 +12739,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12867
12739
  key: string;
12868
12740
  description?: string | undefined;
12869
12741
  payloadSchema?: {
12870
- type: "string" | "number" | "boolean" | "object" | "array";
12742
+ type: string;
12871
12743
  name: string;
12872
12744
  required?: boolean | undefined;
12873
12745
  }[] | undefined;
@@ -12934,18 +12806,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
12934
12806
  description: z.ZodOptional<z.ZodString>;
12935
12807
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12936
12808
  name: z.ZodString;
12937
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
12809
+ type: z.ZodString;
12938
12810
  required: z.ZodOptional<z.ZodBoolean>;
12939
12811
  description: z.ZodOptional<z.ZodString>;
12940
12812
  entityType: z.ZodOptional<z.ZodString>;
12941
12813
  }, "strip", z.ZodTypeAny, {
12942
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12814
+ type: string;
12943
12815
  name: string;
12944
12816
  required?: boolean | undefined;
12945
12817
  description?: string | undefined;
12946
12818
  entityType?: string | undefined;
12947
12819
  }, {
12948
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12820
+ type: string;
12949
12821
  name: string;
12950
12822
  required?: boolean | undefined;
12951
12823
  description?: string | undefined;
@@ -12956,7 +12828,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12956
12828
  event: string;
12957
12829
  description?: string | undefined;
12958
12830
  payloadSchema?: {
12959
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12831
+ type: string;
12960
12832
  name: string;
12961
12833
  required?: boolean | undefined;
12962
12834
  description?: string | undefined;
@@ -12967,7 +12839,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12967
12839
  event: string;
12968
12840
  description?: string | undefined;
12969
12841
  payloadSchema?: {
12970
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12842
+ type: string;
12971
12843
  name: string;
12972
12844
  required?: boolean | undefined;
12973
12845
  description?: string | undefined;
@@ -13053,7 +12925,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13053
12925
  event: string;
13054
12926
  description?: string | undefined;
13055
12927
  payloadSchema?: {
13056
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12928
+ type: string;
13057
12929
  name: string;
13058
12930
  required?: boolean | undefined;
13059
12931
  description?: string | undefined;
@@ -13107,7 +12979,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13107
12979
  key: string;
13108
12980
  description?: string | undefined;
13109
12981
  payloadSchema?: {
13110
- type: "string" | "number" | "boolean" | "object" | "array";
12982
+ type: string;
13111
12983
  name: string;
13112
12984
  required?: boolean | undefined;
13113
12985
  }[] | undefined;
@@ -13159,7 +13031,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13159
13031
  event: string;
13160
13032
  description?: string | undefined;
13161
13033
  payloadSchema?: {
13162
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13034
+ type: string;
13163
13035
  name: string;
13164
13036
  required?: boolean | undefined;
13165
13037
  description?: string | undefined;
@@ -13213,7 +13085,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13213
13085
  key: string;
13214
13086
  description?: string | undefined;
13215
13087
  payloadSchema?: {
13216
- type: "string" | "number" | "boolean" | "object" | "array";
13088
+ type: string;
13217
13089
  name: string;
13218
13090
  required?: boolean | undefined;
13219
13091
  }[] | undefined;
@@ -13271,7 +13143,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13271
13143
  event: string;
13272
13144
  description?: string | undefined;
13273
13145
  payloadSchema?: {
13274
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13146
+ type: string;
13275
13147
  name: string;
13276
13148
  required?: boolean | undefined;
13277
13149
  description?: string | undefined;
@@ -13325,7 +13197,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13325
13197
  key: string;
13326
13198
  description?: string | undefined;
13327
13199
  payloadSchema?: {
13328
- type: "string" | "number" | "boolean" | "object" | "array";
13200
+ type: string;
13329
13201
  name: string;
13330
13202
  required?: boolean | undefined;
13331
13203
  }[] | undefined;
@@ -13389,7 +13261,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13389
13261
  event: string;
13390
13262
  description?: string | undefined;
13391
13263
  payloadSchema?: {
13392
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13264
+ type: string;
13393
13265
  name: string;
13394
13266
  required?: boolean | undefined;
13395
13267
  description?: string | undefined;
@@ -13443,7 +13315,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13443
13315
  key: string;
13444
13316
  description?: string | undefined;
13445
13317
  payloadSchema?: {
13446
- type: "string" | "number" | "boolean" | "object" | "array";
13318
+ type: string;
13447
13319
  name: string;
13448
13320
  required?: boolean | undefined;
13449
13321
  }[] | undefined;
@@ -13512,18 +13384,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
13512
13384
  description: z.ZodOptional<z.ZodString>;
13513
13385
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
13514
13386
  name: z.ZodString;
13515
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
13387
+ type: z.ZodString;
13516
13388
  required: z.ZodOptional<z.ZodBoolean>;
13517
13389
  description: z.ZodOptional<z.ZodString>;
13518
13390
  entityType: z.ZodOptional<z.ZodString>;
13519
13391
  }, "strip", z.ZodTypeAny, {
13520
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13392
+ type: string;
13521
13393
  name: string;
13522
13394
  required?: boolean | undefined;
13523
13395
  description?: string | undefined;
13524
13396
  entityType?: string | undefined;
13525
13397
  }, {
13526
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13398
+ type: string;
13527
13399
  name: string;
13528
13400
  required?: boolean | undefined;
13529
13401
  description?: string | undefined;
@@ -13539,7 +13411,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13539
13411
  originalEvent: string;
13540
13412
  description?: string | undefined;
13541
13413
  payload?: {
13542
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13414
+ type: string;
13543
13415
  name: string;
13544
13416
  required?: boolean | undefined;
13545
13417
  description?: string | undefined;
@@ -13555,7 +13427,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13555
13427
  originalEvent: string;
13556
13428
  description?: string | undefined;
13557
13429
  payload?: {
13558
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13430
+ type: string;
13559
13431
  name: string;
13560
13432
  required?: boolean | undefined;
13561
13433
  description?: string | undefined;
@@ -13787,7 +13659,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13787
13659
  event: string;
13788
13660
  description?: string | undefined;
13789
13661
  payloadSchema?: {
13790
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13662
+ type: string;
13791
13663
  name: string;
13792
13664
  required?: boolean | undefined;
13793
13665
  description?: string | undefined;
@@ -13841,7 +13713,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13841
13713
  key: string;
13842
13714
  description?: string | undefined;
13843
13715
  payloadSchema?: {
13844
- type: "string" | "number" | "boolean" | "object" | "array";
13716
+ type: string;
13845
13717
  name: string;
13846
13718
  required?: boolean | undefined;
13847
13719
  }[] | undefined;
@@ -13901,7 +13773,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13901
13773
  event: string;
13902
13774
  description?: string | undefined;
13903
13775
  payloadSchema?: {
13904
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13776
+ type: string;
13905
13777
  name: string;
13906
13778
  required?: boolean | undefined;
13907
13779
  description?: string | undefined;
@@ -13955,7 +13827,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13955
13827
  key: string;
13956
13828
  description?: string | undefined;
13957
13829
  payloadSchema?: {
13958
- type: "string" | "number" | "boolean" | "object" | "array";
13830
+ type: string;
13959
13831
  name: string;
13960
13832
  required?: boolean | undefined;
13961
13833
  }[] | undefined;
@@ -14033,7 +13905,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14033
13905
  originalEvent: string;
14034
13906
  description?: string | undefined;
14035
13907
  payload?: {
14036
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13908
+ type: string;
14037
13909
  name: string;
14038
13910
  required?: boolean | undefined;
14039
13911
  description?: string | undefined;
@@ -14185,7 +14057,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14185
14057
  event: string;
14186
14058
  description?: string | undefined;
14187
14059
  payloadSchema?: {
14188
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
14060
+ type: string;
14189
14061
  name: string;
14190
14062
  required?: boolean | undefined;
14191
14063
  description?: string | undefined;
@@ -14239,7 +14111,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14239
14111
  key: string;
14240
14112
  description?: string | undefined;
14241
14113
  payloadSchema?: {
14242
- type: "string" | "number" | "boolean" | "object" | "array";
14114
+ type: string;
14243
14115
  name: string;
14244
14116
  required?: boolean | undefined;
14245
14117
  }[] | undefined;
@@ -14299,7 +14171,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14299
14171
  event: string;
14300
14172
  description?: string | undefined;
14301
14173
  payloadSchema?: {
14302
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
14174
+ type: string;
14303
14175
  name: string;
14304
14176
  required?: boolean | undefined;
14305
14177
  description?: string | undefined;
@@ -14353,7 +14225,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14353
14225
  key: string;
14354
14226
  description?: string | undefined;
14355
14227
  payloadSchema?: {
14356
- type: "string" | "number" | "boolean" | "object" | "array";
14228
+ type: string;
14357
14229
  name: string;
14358
14230
  required?: boolean | undefined;
14359
14231
  }[] | undefined;
@@ -14431,7 +14303,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14431
14303
  originalEvent: string;
14432
14304
  description?: string | undefined;
14433
14305
  payload?: {
14434
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
14306
+ type: string;
14435
14307
  name: string;
14436
14308
  required?: boolean | undefined;
14437
14309
  description?: string | undefined;
@@ -14995,14 +14867,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14995
14867
  description: z.ZodOptional<z.ZodString>;
14996
14868
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
14997
14869
  name: z.ZodString;
14998
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
14870
+ type: z.ZodString;
14999
14871
  required: z.ZodOptional<z.ZodBoolean>;
15000
14872
  }, "strip", z.ZodTypeAny, {
15001
- type: "string" | "number" | "boolean" | "object" | "array";
14873
+ type: string;
15002
14874
  name: string;
15003
14875
  required?: boolean | undefined;
15004
14876
  }, {
15005
- type: "string" | "number" | "boolean" | "object" | "array";
14877
+ type: string;
15006
14878
  name: string;
15007
14879
  required?: boolean | undefined;
15008
14880
  }>, "many">>;
@@ -15013,7 +14885,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15013
14885
  key: string;
15014
14886
  description?: string | undefined;
15015
14887
  payloadSchema?: {
15016
- type: "string" | "number" | "boolean" | "object" | "array";
14888
+ type: string;
15017
14889
  name: string;
15018
14890
  required?: boolean | undefined;
15019
14891
  }[] | undefined;
@@ -15024,7 +14896,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15024
14896
  key: string;
15025
14897
  description?: string | undefined;
15026
14898
  payloadSchema?: {
15027
- type: "string" | "number" | "boolean" | "object" | "array";
14899
+ type: string;
15028
14900
  name: string;
15029
14901
  required?: boolean | undefined;
15030
14902
  }[] | undefined;
@@ -15072,7 +14944,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15072
14944
  key: string;
15073
14945
  description?: string | undefined;
15074
14946
  payloadSchema?: {
15075
- type: "string" | "number" | "boolean" | "object" | "array";
14947
+ type: string;
15076
14948
  name: string;
15077
14949
  required?: boolean | undefined;
15078
14950
  }[] | undefined;
@@ -15107,7 +14979,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15107
14979
  key: string;
15108
14980
  description?: string | undefined;
15109
14981
  payloadSchema?: {
15110
- type: "string" | "number" | "boolean" | "object" | "array";
14982
+ type: string;
15111
14983
  name: string;
15112
14984
  required?: boolean | undefined;
15113
14985
  }[] | undefined;
@@ -15174,18 +15046,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15174
15046
  description: z.ZodOptional<z.ZodString>;
15175
15047
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
15176
15048
  name: z.ZodString;
15177
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
15049
+ type: z.ZodString;
15178
15050
  required: z.ZodOptional<z.ZodBoolean>;
15179
15051
  description: z.ZodOptional<z.ZodString>;
15180
15052
  entityType: z.ZodOptional<z.ZodString>;
15181
15053
  }, "strip", z.ZodTypeAny, {
15182
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15054
+ type: string;
15183
15055
  name: string;
15184
15056
  required?: boolean | undefined;
15185
15057
  description?: string | undefined;
15186
15058
  entityType?: string | undefined;
15187
15059
  }, {
15188
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15060
+ type: string;
15189
15061
  name: string;
15190
15062
  required?: boolean | undefined;
15191
15063
  description?: string | undefined;
@@ -15196,7 +15068,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15196
15068
  event: string;
15197
15069
  description?: string | undefined;
15198
15070
  payloadSchema?: {
15199
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15071
+ type: string;
15200
15072
  name: string;
15201
15073
  required?: boolean | undefined;
15202
15074
  description?: string | undefined;
@@ -15207,7 +15079,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15207
15079
  event: string;
15208
15080
  description?: string | undefined;
15209
15081
  payloadSchema?: {
15210
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15082
+ type: string;
15211
15083
  name: string;
15212
15084
  required?: boolean | undefined;
15213
15085
  description?: string | undefined;
@@ -15293,7 +15165,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15293
15165
  event: string;
15294
15166
  description?: string | undefined;
15295
15167
  payloadSchema?: {
15296
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15168
+ type: string;
15297
15169
  name: string;
15298
15170
  required?: boolean | undefined;
15299
15171
  description?: string | undefined;
@@ -15347,7 +15219,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15347
15219
  key: string;
15348
15220
  description?: string | undefined;
15349
15221
  payloadSchema?: {
15350
- type: "string" | "number" | "boolean" | "object" | "array";
15222
+ type: string;
15351
15223
  name: string;
15352
15224
  required?: boolean | undefined;
15353
15225
  }[] | undefined;
@@ -15399,7 +15271,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15399
15271
  event: string;
15400
15272
  description?: string | undefined;
15401
15273
  payloadSchema?: {
15402
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15274
+ type: string;
15403
15275
  name: string;
15404
15276
  required?: boolean | undefined;
15405
15277
  description?: string | undefined;
@@ -15453,7 +15325,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15453
15325
  key: string;
15454
15326
  description?: string | undefined;
15455
15327
  payloadSchema?: {
15456
- type: "string" | "number" | "boolean" | "object" | "array";
15328
+ type: string;
15457
15329
  name: string;
15458
15330
  required?: boolean | undefined;
15459
15331
  }[] | undefined;
@@ -15673,14 +15545,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15673
15545
  description: z.ZodOptional<z.ZodString>;
15674
15546
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
15675
15547
  name: z.ZodString;
15676
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
15548
+ type: z.ZodString;
15677
15549
  required: z.ZodOptional<z.ZodBoolean>;
15678
15550
  }, "strip", z.ZodTypeAny, {
15679
- type: "string" | "number" | "boolean" | "object" | "array";
15551
+ type: string;
15680
15552
  name: string;
15681
15553
  required?: boolean | undefined;
15682
15554
  }, {
15683
- type: "string" | "number" | "boolean" | "object" | "array";
15555
+ type: string;
15684
15556
  name: string;
15685
15557
  required?: boolean | undefined;
15686
15558
  }>, "many">>;
@@ -15691,7 +15563,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15691
15563
  key: string;
15692
15564
  description?: string | undefined;
15693
15565
  payloadSchema?: {
15694
- type: "string" | "number" | "boolean" | "object" | "array";
15566
+ type: string;
15695
15567
  name: string;
15696
15568
  required?: boolean | undefined;
15697
15569
  }[] | undefined;
@@ -15702,7 +15574,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15702
15574
  key: string;
15703
15575
  description?: string | undefined;
15704
15576
  payloadSchema?: {
15705
- type: "string" | "number" | "boolean" | "object" | "array";
15577
+ type: string;
15706
15578
  name: string;
15707
15579
  required?: boolean | undefined;
15708
15580
  }[] | undefined;
@@ -15750,7 +15622,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15750
15622
  key: string;
15751
15623
  description?: string | undefined;
15752
15624
  payloadSchema?: {
15753
- type: "string" | "number" | "boolean" | "object" | "array";
15625
+ type: string;
15754
15626
  name: string;
15755
15627
  required?: boolean | undefined;
15756
15628
  }[] | undefined;
@@ -15785,7 +15657,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15785
15657
  key: string;
15786
15658
  description?: string | undefined;
15787
15659
  payloadSchema?: {
15788
- type: "string" | "number" | "boolean" | "object" | "array";
15660
+ type: string;
15789
15661
  name: string;
15790
15662
  required?: boolean | undefined;
15791
15663
  }[] | undefined;
@@ -15852,18 +15724,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15852
15724
  description: z.ZodOptional<z.ZodString>;
15853
15725
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
15854
15726
  name: z.ZodString;
15855
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
15727
+ type: z.ZodString;
15856
15728
  required: z.ZodOptional<z.ZodBoolean>;
15857
15729
  description: z.ZodOptional<z.ZodString>;
15858
15730
  entityType: z.ZodOptional<z.ZodString>;
15859
15731
  }, "strip", z.ZodTypeAny, {
15860
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15732
+ type: string;
15861
15733
  name: string;
15862
15734
  required?: boolean | undefined;
15863
15735
  description?: string | undefined;
15864
15736
  entityType?: string | undefined;
15865
15737
  }, {
15866
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15738
+ type: string;
15867
15739
  name: string;
15868
15740
  required?: boolean | undefined;
15869
15741
  description?: string | undefined;
@@ -15874,7 +15746,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15874
15746
  event: string;
15875
15747
  description?: string | undefined;
15876
15748
  payloadSchema?: {
15877
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15749
+ type: string;
15878
15750
  name: string;
15879
15751
  required?: boolean | undefined;
15880
15752
  description?: string | undefined;
@@ -15885,7 +15757,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15885
15757
  event: string;
15886
15758
  description?: string | undefined;
15887
15759
  payloadSchema?: {
15888
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15760
+ type: string;
15889
15761
  name: string;
15890
15762
  required?: boolean | undefined;
15891
15763
  description?: string | undefined;
@@ -15971,7 +15843,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15971
15843
  event: string;
15972
15844
  description?: string | undefined;
15973
15845
  payloadSchema?: {
15974
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15846
+ type: string;
15975
15847
  name: string;
15976
15848
  required?: boolean | undefined;
15977
15849
  description?: string | undefined;
@@ -16025,7 +15897,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16025
15897
  key: string;
16026
15898
  description?: string | undefined;
16027
15899
  payloadSchema?: {
16028
- type: "string" | "number" | "boolean" | "object" | "array";
15900
+ type: string;
16029
15901
  name: string;
16030
15902
  required?: boolean | undefined;
16031
15903
  }[] | undefined;
@@ -16077,7 +15949,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16077
15949
  event: string;
16078
15950
  description?: string | undefined;
16079
15951
  payloadSchema?: {
16080
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15952
+ type: string;
16081
15953
  name: string;
16082
15954
  required?: boolean | undefined;
16083
15955
  description?: string | undefined;
@@ -16131,7 +16003,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16131
16003
  key: string;
16132
16004
  description?: string | undefined;
16133
16005
  payloadSchema?: {
16134
- type: "string" | "number" | "boolean" | "object" | "array";
16006
+ type: string;
16135
16007
  name: string;
16136
16008
  required?: boolean | undefined;
16137
16009
  }[] | undefined;
@@ -16189,7 +16061,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16189
16061
  event: string;
16190
16062
  description?: string | undefined;
16191
16063
  payloadSchema?: {
16192
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16064
+ type: string;
16193
16065
  name: string;
16194
16066
  required?: boolean | undefined;
16195
16067
  description?: string | undefined;
@@ -16243,7 +16115,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16243
16115
  key: string;
16244
16116
  description?: string | undefined;
16245
16117
  payloadSchema?: {
16246
- type: "string" | "number" | "boolean" | "object" | "array";
16118
+ type: string;
16247
16119
  name: string;
16248
16120
  required?: boolean | undefined;
16249
16121
  }[] | undefined;
@@ -16307,7 +16179,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16307
16179
  event: string;
16308
16180
  description?: string | undefined;
16309
16181
  payloadSchema?: {
16310
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16182
+ type: string;
16311
16183
  name: string;
16312
16184
  required?: boolean | undefined;
16313
16185
  description?: string | undefined;
@@ -16361,7 +16233,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16361
16233
  key: string;
16362
16234
  description?: string | undefined;
16363
16235
  payloadSchema?: {
16364
- type: "string" | "number" | "boolean" | "object" | "array";
16236
+ type: string;
16365
16237
  name: string;
16366
16238
  required?: boolean | undefined;
16367
16239
  }[] | undefined;
@@ -16430,18 +16302,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16430
16302
  description: z.ZodOptional<z.ZodString>;
16431
16303
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
16432
16304
  name: z.ZodString;
16433
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
16305
+ type: z.ZodString;
16434
16306
  required: z.ZodOptional<z.ZodBoolean>;
16435
16307
  description: z.ZodOptional<z.ZodString>;
16436
16308
  entityType: z.ZodOptional<z.ZodString>;
16437
16309
  }, "strip", z.ZodTypeAny, {
16438
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16310
+ type: string;
16439
16311
  name: string;
16440
16312
  required?: boolean | undefined;
16441
16313
  description?: string | undefined;
16442
16314
  entityType?: string | undefined;
16443
16315
  }, {
16444
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16316
+ type: string;
16445
16317
  name: string;
16446
16318
  required?: boolean | undefined;
16447
16319
  description?: string | undefined;
@@ -16457,7 +16329,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16457
16329
  originalEvent: string;
16458
16330
  description?: string | undefined;
16459
16331
  payload?: {
16460
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16332
+ type: string;
16461
16333
  name: string;
16462
16334
  required?: boolean | undefined;
16463
16335
  description?: string | undefined;
@@ -16473,7 +16345,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16473
16345
  originalEvent: string;
16474
16346
  description?: string | undefined;
16475
16347
  payload?: {
16476
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16348
+ type: string;
16477
16349
  name: string;
16478
16350
  required?: boolean | undefined;
16479
16351
  description?: string | undefined;
@@ -16705,7 +16577,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16705
16577
  event: string;
16706
16578
  description?: string | undefined;
16707
16579
  payloadSchema?: {
16708
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16580
+ type: string;
16709
16581
  name: string;
16710
16582
  required?: boolean | undefined;
16711
16583
  description?: string | undefined;
@@ -16759,7 +16631,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16759
16631
  key: string;
16760
16632
  description?: string | undefined;
16761
16633
  payloadSchema?: {
16762
- type: "string" | "number" | "boolean" | "object" | "array";
16634
+ type: string;
16763
16635
  name: string;
16764
16636
  required?: boolean | undefined;
16765
16637
  }[] | undefined;
@@ -16819,7 +16691,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16819
16691
  event: string;
16820
16692
  description?: string | undefined;
16821
16693
  payloadSchema?: {
16822
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16694
+ type: string;
16823
16695
  name: string;
16824
16696
  required?: boolean | undefined;
16825
16697
  description?: string | undefined;
@@ -16873,7 +16745,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16873
16745
  key: string;
16874
16746
  description?: string | undefined;
16875
16747
  payloadSchema?: {
16876
- type: "string" | "number" | "boolean" | "object" | "array";
16748
+ type: string;
16877
16749
  name: string;
16878
16750
  required?: boolean | undefined;
16879
16751
  }[] | undefined;
@@ -16951,7 +16823,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16951
16823
  originalEvent: string;
16952
16824
  description?: string | undefined;
16953
16825
  payload?: {
16954
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16826
+ type: string;
16955
16827
  name: string;
16956
16828
  required?: boolean | undefined;
16957
16829
  description?: string | undefined;
@@ -17103,7 +16975,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17103
16975
  event: string;
17104
16976
  description?: string | undefined;
17105
16977
  payloadSchema?: {
17106
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16978
+ type: string;
17107
16979
  name: string;
17108
16980
  required?: boolean | undefined;
17109
16981
  description?: string | undefined;
@@ -17157,7 +17029,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17157
17029
  key: string;
17158
17030
  description?: string | undefined;
17159
17031
  payloadSchema?: {
17160
- type: "string" | "number" | "boolean" | "object" | "array";
17032
+ type: string;
17161
17033
  name: string;
17162
17034
  required?: boolean | undefined;
17163
17035
  }[] | undefined;
@@ -17217,7 +17089,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17217
17089
  event: string;
17218
17090
  description?: string | undefined;
17219
17091
  payloadSchema?: {
17220
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
17092
+ type: string;
17221
17093
  name: string;
17222
17094
  required?: boolean | undefined;
17223
17095
  description?: string | undefined;
@@ -17271,7 +17143,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17271
17143
  key: string;
17272
17144
  description?: string | undefined;
17273
17145
  payloadSchema?: {
17274
- type: "string" | "number" | "boolean" | "object" | "array";
17146
+ type: string;
17275
17147
  name: string;
17276
17148
  required?: boolean | undefined;
17277
17149
  }[] | undefined;
@@ -17349,7 +17221,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17349
17221
  originalEvent: string;
17350
17222
  description?: string | undefined;
17351
17223
  payload?: {
17352
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
17224
+ type: string;
17353
17225
  name: string;
17354
17226
  required?: boolean | undefined;
17355
17227
  description?: string | undefined;
@@ -18154,14 +18026,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18154
18026
  description: z.ZodOptional<z.ZodString>;
18155
18027
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
18156
18028
  name: z.ZodString;
18157
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
18029
+ type: z.ZodString;
18158
18030
  required: z.ZodOptional<z.ZodBoolean>;
18159
18031
  }, "strip", z.ZodTypeAny, {
18160
- type: "string" | "number" | "boolean" | "object" | "array";
18032
+ type: string;
18161
18033
  name: string;
18162
18034
  required?: boolean | undefined;
18163
18035
  }, {
18164
- type: "string" | "number" | "boolean" | "object" | "array";
18036
+ type: string;
18165
18037
  name: string;
18166
18038
  required?: boolean | undefined;
18167
18039
  }>, "many">>;
@@ -18172,7 +18044,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18172
18044
  key: string;
18173
18045
  description?: string | undefined;
18174
18046
  payloadSchema?: {
18175
- type: "string" | "number" | "boolean" | "object" | "array";
18047
+ type: string;
18176
18048
  name: string;
18177
18049
  required?: boolean | undefined;
18178
18050
  }[] | undefined;
@@ -18183,7 +18055,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18183
18055
  key: string;
18184
18056
  description?: string | undefined;
18185
18057
  payloadSchema?: {
18186
- type: "string" | "number" | "boolean" | "object" | "array";
18058
+ type: string;
18187
18059
  name: string;
18188
18060
  required?: boolean | undefined;
18189
18061
  }[] | undefined;
@@ -18231,7 +18103,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18231
18103
  key: string;
18232
18104
  description?: string | undefined;
18233
18105
  payloadSchema?: {
18234
- type: "string" | "number" | "boolean" | "object" | "array";
18106
+ type: string;
18235
18107
  name: string;
18236
18108
  required?: boolean | undefined;
18237
18109
  }[] | undefined;
@@ -18266,7 +18138,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18266
18138
  key: string;
18267
18139
  description?: string | undefined;
18268
18140
  payloadSchema?: {
18269
- type: "string" | "number" | "boolean" | "object" | "array";
18141
+ type: string;
18270
18142
  name: string;
18271
18143
  required?: boolean | undefined;
18272
18144
  }[] | undefined;
@@ -18333,18 +18205,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18333
18205
  description: z.ZodOptional<z.ZodString>;
18334
18206
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
18335
18207
  name: z.ZodString;
18336
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
18208
+ type: z.ZodString;
18337
18209
  required: z.ZodOptional<z.ZodBoolean>;
18338
18210
  description: z.ZodOptional<z.ZodString>;
18339
18211
  entityType: z.ZodOptional<z.ZodString>;
18340
18212
  }, "strip", z.ZodTypeAny, {
18341
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18213
+ type: string;
18342
18214
  name: string;
18343
18215
  required?: boolean | undefined;
18344
18216
  description?: string | undefined;
18345
18217
  entityType?: string | undefined;
18346
18218
  }, {
18347
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18219
+ type: string;
18348
18220
  name: string;
18349
18221
  required?: boolean | undefined;
18350
18222
  description?: string | undefined;
@@ -18355,7 +18227,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18355
18227
  event: string;
18356
18228
  description?: string | undefined;
18357
18229
  payloadSchema?: {
18358
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18230
+ type: string;
18359
18231
  name: string;
18360
18232
  required?: boolean | undefined;
18361
18233
  description?: string | undefined;
@@ -18366,7 +18238,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18366
18238
  event: string;
18367
18239
  description?: string | undefined;
18368
18240
  payloadSchema?: {
18369
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18241
+ type: string;
18370
18242
  name: string;
18371
18243
  required?: boolean | undefined;
18372
18244
  description?: string | undefined;
@@ -18452,7 +18324,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18452
18324
  event: string;
18453
18325
  description?: string | undefined;
18454
18326
  payloadSchema?: {
18455
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18327
+ type: string;
18456
18328
  name: string;
18457
18329
  required?: boolean | undefined;
18458
18330
  description?: string | undefined;
@@ -18506,7 +18378,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18506
18378
  key: string;
18507
18379
  description?: string | undefined;
18508
18380
  payloadSchema?: {
18509
- type: "string" | "number" | "boolean" | "object" | "array";
18381
+ type: string;
18510
18382
  name: string;
18511
18383
  required?: boolean | undefined;
18512
18384
  }[] | undefined;
@@ -18558,7 +18430,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18558
18430
  event: string;
18559
18431
  description?: string | undefined;
18560
18432
  payloadSchema?: {
18561
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18433
+ type: string;
18562
18434
  name: string;
18563
18435
  required?: boolean | undefined;
18564
18436
  description?: string | undefined;
@@ -18612,7 +18484,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18612
18484
  key: string;
18613
18485
  description?: string | undefined;
18614
18486
  payloadSchema?: {
18615
- type: "string" | "number" | "boolean" | "object" | "array";
18487
+ type: string;
18616
18488
  name: string;
18617
18489
  required?: boolean | undefined;
18618
18490
  }[] | undefined;
@@ -18832,14 +18704,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18832
18704
  description: z.ZodOptional<z.ZodString>;
18833
18705
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
18834
18706
  name: z.ZodString;
18835
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
18707
+ type: z.ZodString;
18836
18708
  required: z.ZodOptional<z.ZodBoolean>;
18837
18709
  }, "strip", z.ZodTypeAny, {
18838
- type: "string" | "number" | "boolean" | "object" | "array";
18710
+ type: string;
18839
18711
  name: string;
18840
18712
  required?: boolean | undefined;
18841
18713
  }, {
18842
- type: "string" | "number" | "boolean" | "object" | "array";
18714
+ type: string;
18843
18715
  name: string;
18844
18716
  required?: boolean | undefined;
18845
18717
  }>, "many">>;
@@ -18850,7 +18722,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18850
18722
  key: string;
18851
18723
  description?: string | undefined;
18852
18724
  payloadSchema?: {
18853
- type: "string" | "number" | "boolean" | "object" | "array";
18725
+ type: string;
18854
18726
  name: string;
18855
18727
  required?: boolean | undefined;
18856
18728
  }[] | undefined;
@@ -18861,7 +18733,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18861
18733
  key: string;
18862
18734
  description?: string | undefined;
18863
18735
  payloadSchema?: {
18864
- type: "string" | "number" | "boolean" | "object" | "array";
18736
+ type: string;
18865
18737
  name: string;
18866
18738
  required?: boolean | undefined;
18867
18739
  }[] | undefined;
@@ -18909,7 +18781,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18909
18781
  key: string;
18910
18782
  description?: string | undefined;
18911
18783
  payloadSchema?: {
18912
- type: "string" | "number" | "boolean" | "object" | "array";
18784
+ type: string;
18913
18785
  name: string;
18914
18786
  required?: boolean | undefined;
18915
18787
  }[] | undefined;
@@ -18944,7 +18816,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18944
18816
  key: string;
18945
18817
  description?: string | undefined;
18946
18818
  payloadSchema?: {
18947
- type: "string" | "number" | "boolean" | "object" | "array";
18819
+ type: string;
18948
18820
  name: string;
18949
18821
  required?: boolean | undefined;
18950
18822
  }[] | undefined;
@@ -19011,18 +18883,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19011
18883
  description: z.ZodOptional<z.ZodString>;
19012
18884
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
19013
18885
  name: z.ZodString;
19014
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
18886
+ type: z.ZodString;
19015
18887
  required: z.ZodOptional<z.ZodBoolean>;
19016
18888
  description: z.ZodOptional<z.ZodString>;
19017
18889
  entityType: z.ZodOptional<z.ZodString>;
19018
18890
  }, "strip", z.ZodTypeAny, {
19019
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18891
+ type: string;
19020
18892
  name: string;
19021
18893
  required?: boolean | undefined;
19022
18894
  description?: string | undefined;
19023
18895
  entityType?: string | undefined;
19024
18896
  }, {
19025
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18897
+ type: string;
19026
18898
  name: string;
19027
18899
  required?: boolean | undefined;
19028
18900
  description?: string | undefined;
@@ -19033,7 +18905,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19033
18905
  event: string;
19034
18906
  description?: string | undefined;
19035
18907
  payloadSchema?: {
19036
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18908
+ type: string;
19037
18909
  name: string;
19038
18910
  required?: boolean | undefined;
19039
18911
  description?: string | undefined;
@@ -19044,7 +18916,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19044
18916
  event: string;
19045
18917
  description?: string | undefined;
19046
18918
  payloadSchema?: {
19047
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18919
+ type: string;
19048
18920
  name: string;
19049
18921
  required?: boolean | undefined;
19050
18922
  description?: string | undefined;
@@ -19130,7 +19002,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19130
19002
  event: string;
19131
19003
  description?: string | undefined;
19132
19004
  payloadSchema?: {
19133
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19005
+ type: string;
19134
19006
  name: string;
19135
19007
  required?: boolean | undefined;
19136
19008
  description?: string | undefined;
@@ -19184,7 +19056,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19184
19056
  key: string;
19185
19057
  description?: string | undefined;
19186
19058
  payloadSchema?: {
19187
- type: "string" | "number" | "boolean" | "object" | "array";
19059
+ type: string;
19188
19060
  name: string;
19189
19061
  required?: boolean | undefined;
19190
19062
  }[] | undefined;
@@ -19236,7 +19108,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19236
19108
  event: string;
19237
19109
  description?: string | undefined;
19238
19110
  payloadSchema?: {
19239
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19111
+ type: string;
19240
19112
  name: string;
19241
19113
  required?: boolean | undefined;
19242
19114
  description?: string | undefined;
@@ -19290,7 +19162,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19290
19162
  key: string;
19291
19163
  description?: string | undefined;
19292
19164
  payloadSchema?: {
19293
- type: "string" | "number" | "boolean" | "object" | "array";
19165
+ type: string;
19294
19166
  name: string;
19295
19167
  required?: boolean | undefined;
19296
19168
  }[] | undefined;
@@ -19348,7 +19220,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19348
19220
  event: string;
19349
19221
  description?: string | undefined;
19350
19222
  payloadSchema?: {
19351
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19223
+ type: string;
19352
19224
  name: string;
19353
19225
  required?: boolean | undefined;
19354
19226
  description?: string | undefined;
@@ -19402,7 +19274,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19402
19274
  key: string;
19403
19275
  description?: string | undefined;
19404
19276
  payloadSchema?: {
19405
- type: "string" | "number" | "boolean" | "object" | "array";
19277
+ type: string;
19406
19278
  name: string;
19407
19279
  required?: boolean | undefined;
19408
19280
  }[] | undefined;
@@ -19466,7 +19338,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19466
19338
  event: string;
19467
19339
  description?: string | undefined;
19468
19340
  payloadSchema?: {
19469
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19341
+ type: string;
19470
19342
  name: string;
19471
19343
  required?: boolean | undefined;
19472
19344
  description?: string | undefined;
@@ -19520,7 +19392,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19520
19392
  key: string;
19521
19393
  description?: string | undefined;
19522
19394
  payloadSchema?: {
19523
- type: "string" | "number" | "boolean" | "object" | "array";
19395
+ type: string;
19524
19396
  name: string;
19525
19397
  required?: boolean | undefined;
19526
19398
  }[] | undefined;
@@ -19589,18 +19461,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19589
19461
  description: z.ZodOptional<z.ZodString>;
19590
19462
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
19591
19463
  name: z.ZodString;
19592
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
19464
+ type: z.ZodString;
19593
19465
  required: z.ZodOptional<z.ZodBoolean>;
19594
19466
  description: z.ZodOptional<z.ZodString>;
19595
19467
  entityType: z.ZodOptional<z.ZodString>;
19596
19468
  }, "strip", z.ZodTypeAny, {
19597
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19469
+ type: string;
19598
19470
  name: string;
19599
19471
  required?: boolean | undefined;
19600
19472
  description?: string | undefined;
19601
19473
  entityType?: string | undefined;
19602
19474
  }, {
19603
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19475
+ type: string;
19604
19476
  name: string;
19605
19477
  required?: boolean | undefined;
19606
19478
  description?: string | undefined;
@@ -19616,7 +19488,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19616
19488
  originalEvent: string;
19617
19489
  description?: string | undefined;
19618
19490
  payload?: {
19619
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19491
+ type: string;
19620
19492
  name: string;
19621
19493
  required?: boolean | undefined;
19622
19494
  description?: string | undefined;
@@ -19632,7 +19504,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19632
19504
  originalEvent: string;
19633
19505
  description?: string | undefined;
19634
19506
  payload?: {
19635
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19507
+ type: string;
19636
19508
  name: string;
19637
19509
  required?: boolean | undefined;
19638
19510
  description?: string | undefined;
@@ -19864,7 +19736,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19864
19736
  event: string;
19865
19737
  description?: string | undefined;
19866
19738
  payloadSchema?: {
19867
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19739
+ type: string;
19868
19740
  name: string;
19869
19741
  required?: boolean | undefined;
19870
19742
  description?: string | undefined;
@@ -19918,7 +19790,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19918
19790
  key: string;
19919
19791
  description?: string | undefined;
19920
19792
  payloadSchema?: {
19921
- type: "string" | "number" | "boolean" | "object" | "array";
19793
+ type: string;
19922
19794
  name: string;
19923
19795
  required?: boolean | undefined;
19924
19796
  }[] | undefined;
@@ -19978,7 +19850,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19978
19850
  event: string;
19979
19851
  description?: string | undefined;
19980
19852
  payloadSchema?: {
19981
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19853
+ type: string;
19982
19854
  name: string;
19983
19855
  required?: boolean | undefined;
19984
19856
  description?: string | undefined;
@@ -20032,7 +19904,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20032
19904
  key: string;
20033
19905
  description?: string | undefined;
20034
19906
  payloadSchema?: {
20035
- type: "string" | "number" | "boolean" | "object" | "array";
19907
+ type: string;
20036
19908
  name: string;
20037
19909
  required?: boolean | undefined;
20038
19910
  }[] | undefined;
@@ -20110,7 +19982,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20110
19982
  originalEvent: string;
20111
19983
  description?: string | undefined;
20112
19984
  payload?: {
20113
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19985
+ type: string;
20114
19986
  name: string;
20115
19987
  required?: boolean | undefined;
20116
19988
  description?: string | undefined;
@@ -20262,7 +20134,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20262
20134
  event: string;
20263
20135
  description?: string | undefined;
20264
20136
  payloadSchema?: {
20265
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20137
+ type: string;
20266
20138
  name: string;
20267
20139
  required?: boolean | undefined;
20268
20140
  description?: string | undefined;
@@ -20316,7 +20188,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20316
20188
  key: string;
20317
20189
  description?: string | undefined;
20318
20190
  payloadSchema?: {
20319
- type: "string" | "number" | "boolean" | "object" | "array";
20191
+ type: string;
20320
20192
  name: string;
20321
20193
  required?: boolean | undefined;
20322
20194
  }[] | undefined;
@@ -20376,7 +20248,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20376
20248
  event: string;
20377
20249
  description?: string | undefined;
20378
20250
  payloadSchema?: {
20379
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20251
+ type: string;
20380
20252
  name: string;
20381
20253
  required?: boolean | undefined;
20382
20254
  description?: string | undefined;
@@ -20430,7 +20302,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20430
20302
  key: string;
20431
20303
  description?: string | undefined;
20432
20304
  payloadSchema?: {
20433
- type: "string" | "number" | "boolean" | "object" | "array";
20305
+ type: string;
20434
20306
  name: string;
20435
20307
  required?: boolean | undefined;
20436
20308
  }[] | undefined;
@@ -20508,7 +20380,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20508
20380
  originalEvent: string;
20509
20381
  description?: string | undefined;
20510
20382
  payload?: {
20511
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20383
+ type: string;
20512
20384
  name: string;
20513
20385
  required?: boolean | undefined;
20514
20386
  description?: string | undefined;
@@ -20838,7 +20710,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20838
20710
  event: string;
20839
20711
  description?: string | undefined;
20840
20712
  payloadSchema?: {
20841
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20713
+ type: string;
20842
20714
  name: string;
20843
20715
  required?: boolean | undefined;
20844
20716
  description?: string | undefined;
@@ -20892,7 +20764,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20892
20764
  key: string;
20893
20765
  description?: string | undefined;
20894
20766
  payloadSchema?: {
20895
- type: "string" | "number" | "boolean" | "object" | "array";
20767
+ type: string;
20896
20768
  name: string;
20897
20769
  required?: boolean | undefined;
20898
20770
  }[] | undefined;
@@ -20952,7 +20824,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20952
20824
  event: string;
20953
20825
  description?: string | undefined;
20954
20826
  payloadSchema?: {
20955
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20827
+ type: string;
20956
20828
  name: string;
20957
20829
  required?: boolean | undefined;
20958
20830
  description?: string | undefined;
@@ -21006,7 +20878,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21006
20878
  key: string;
21007
20879
  description?: string | undefined;
21008
20880
  payloadSchema?: {
21009
- type: "string" | "number" | "boolean" | "object" | "array";
20881
+ type: string;
21010
20882
  name: string;
21011
20883
  required?: boolean | undefined;
21012
20884
  }[] | undefined;
@@ -21084,7 +20956,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21084
20956
  originalEvent: string;
21085
20957
  description?: string | undefined;
21086
20958
  payload?: {
21087
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20959
+ type: string;
21088
20960
  name: string;
21089
20961
  required?: boolean | undefined;
21090
20962
  description?: string | undefined;
@@ -21325,7 +21197,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21325
21197
  event: string;
21326
21198
  description?: string | undefined;
21327
21199
  payloadSchema?: {
21328
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21200
+ type: string;
21329
21201
  name: string;
21330
21202
  required?: boolean | undefined;
21331
21203
  description?: string | undefined;
@@ -21379,7 +21251,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21379
21251
  key: string;
21380
21252
  description?: string | undefined;
21381
21253
  payloadSchema?: {
21382
- type: "string" | "number" | "boolean" | "object" | "array";
21254
+ type: string;
21383
21255
  name: string;
21384
21256
  required?: boolean | undefined;
21385
21257
  }[] | undefined;
@@ -21439,7 +21311,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21439
21311
  event: string;
21440
21312
  description?: string | undefined;
21441
21313
  payloadSchema?: {
21442
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21314
+ type: string;
21443
21315
  name: string;
21444
21316
  required?: boolean | undefined;
21445
21317
  description?: string | undefined;
@@ -21493,7 +21365,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21493
21365
  key: string;
21494
21366
  description?: string | undefined;
21495
21367
  payloadSchema?: {
21496
- type: "string" | "number" | "boolean" | "object" | "array";
21368
+ type: string;
21497
21369
  name: string;
21498
21370
  required?: boolean | undefined;
21499
21371
  }[] | undefined;
@@ -21571,7 +21443,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21571
21443
  originalEvent: string;
21572
21444
  description?: string | undefined;
21573
21445
  payload?: {
21574
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21446
+ type: string;
21575
21447
  name: string;
21576
21448
  required?: boolean | undefined;
21577
21449
  description?: string | undefined;
@@ -21859,7 +21731,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21859
21731
  event: string;
21860
21732
  description?: string | undefined;
21861
21733
  payloadSchema?: {
21862
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21734
+ type: string;
21863
21735
  name: string;
21864
21736
  required?: boolean | undefined;
21865
21737
  description?: string | undefined;
@@ -21913,7 +21785,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21913
21785
  key: string;
21914
21786
  description?: string | undefined;
21915
21787
  payloadSchema?: {
21916
- type: "string" | "number" | "boolean" | "object" | "array";
21788
+ type: string;
21917
21789
  name: string;
21918
21790
  required?: boolean | undefined;
21919
21791
  }[] | undefined;
@@ -21973,7 +21845,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21973
21845
  event: string;
21974
21846
  description?: string | undefined;
21975
21847
  payloadSchema?: {
21976
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21848
+ type: string;
21977
21849
  name: string;
21978
21850
  required?: boolean | undefined;
21979
21851
  description?: string | undefined;
@@ -22027,7 +21899,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22027
21899
  key: string;
22028
21900
  description?: string | undefined;
22029
21901
  payloadSchema?: {
22030
- type: "string" | "number" | "boolean" | "object" | "array";
21902
+ type: string;
22031
21903
  name: string;
22032
21904
  required?: boolean | undefined;
22033
21905
  }[] | undefined;
@@ -22105,7 +21977,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22105
21977
  originalEvent: string;
22106
21978
  description?: string | undefined;
22107
21979
  payload?: {
22108
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21980
+ type: string;
22109
21981
  name: string;
22110
21982
  required?: boolean | undefined;
22111
21983
  description?: string | undefined;
@@ -22346,7 +22218,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22346
22218
  event: string;
22347
22219
  description?: string | undefined;
22348
22220
  payloadSchema?: {
22349
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22221
+ type: string;
22350
22222
  name: string;
22351
22223
  required?: boolean | undefined;
22352
22224
  description?: string | undefined;
@@ -22400,7 +22272,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22400
22272
  key: string;
22401
22273
  description?: string | undefined;
22402
22274
  payloadSchema?: {
22403
- type: "string" | "number" | "boolean" | "object" | "array";
22275
+ type: string;
22404
22276
  name: string;
22405
22277
  required?: boolean | undefined;
22406
22278
  }[] | undefined;
@@ -22460,7 +22332,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22460
22332
  event: string;
22461
22333
  description?: string | undefined;
22462
22334
  payloadSchema?: {
22463
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22335
+ type: string;
22464
22336
  name: string;
22465
22337
  required?: boolean | undefined;
22466
22338
  description?: string | undefined;
@@ -22514,7 +22386,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22514
22386
  key: string;
22515
22387
  description?: string | undefined;
22516
22388
  payloadSchema?: {
22517
- type: "string" | "number" | "boolean" | "object" | "array";
22389
+ type: string;
22518
22390
  name: string;
22519
22391
  required?: boolean | undefined;
22520
22392
  }[] | undefined;
@@ -22592,7 +22464,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22592
22464
  originalEvent: string;
22593
22465
  description?: string | undefined;
22594
22466
  payload?: {
22595
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22467
+ type: string;
22596
22468
  name: string;
22597
22469
  required?: boolean | undefined;
22598
22470
  description?: string | undefined;
@@ -22782,4 +22654,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22782
22654
  type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
22783
22655
  type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
22784
22656
 
22785
- export { type DesignTokens as $, AGENT_DOMAIN_CATEGORIES as A, AssetMappingSchema as B, type AtomicEffect as C, CORE_BINDINGS as D, type Entity as E, type CallServiceConfig as F, type CallServiceEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type CoreBinding as L, type CustomPatternDefinition as M, type CustomPatternDefinitionInput as N, type OrbitalDefinition as O, type PageRef as P, CustomPatternDefinitionSchema as Q, type CustomPatternMap as R, type SExpr as S, type TraitEventContract as T, type UseDeclaration as U, type CustomPatternMapInput as V, CustomPatternMapSchema as W, type DerefEffect as X, type DesignPreferences as Y, type DesignPreferencesInput as Z, DesignPreferencesSchema as _, type TraitEventListener as a, type Guard as a$, type DesignTokensInput as a0, DesignTokensSchema as a1, type DespawnEffect as a2, type DoEffect as a3, type DomainCategory as a4, DomainCategorySchema as a5, type DomainContext as a6, type DomainContextInput as a7, DomainContextSchema as a8, type DomainVocabulary as a9, type EventPayloadField as aA, EventPayloadFieldSchema as aB, type EventPayloadValue as aC, EventSchema as aD, type EventScope as aE, EventScopeSchema as aF, type EventSemanticRole as aG, EventSemanticRoleSchema as aH, type EventSource as aI, EventSourceSchema as aJ, type Expression as aK, type ExpressionInput as aL, ExpressionSchema as aM, type FetchEffect as aN, type Field as aO, type FieldFormat as aP, FieldFormatSchema as aQ, FieldSchema as aR, type FieldType as aS, FieldTypeSchema as aT, type FieldValue as aU, type Orbital as aV, GAME_TYPES as aW, type GameSubCategory as aX, GameSubCategorySchema as aY, type GameType as aZ, GameTypeSchema as a_, DomainVocabularySchema as aa, ENTITY_ROLES as ab, type Effect as ac, type EffectInput as ad, EffectSchema as ae, type EmitConfig as af, type EmitEffect as ag, type EntityCall as ah, EntityCallSchema as ai, type EntityData as aj, type EntityFieldInput as ak, EntityFieldSchema as al, EntityPersistenceSchema as am, EntityRefSchema as an, EntityRefStringSchema as ao, type EntityRole as ap, EntityRoleSchema as aq, EntitySchema as ar, type EntitySemanticRole as as, EntitySemanticRoleSchema as at, type EvalContext as au, type Event as av, type EventInput as aw, type EventListener as ax, EventListenerSchema as ay, type EventPayload as az, type TraitConfig as b, type SExprAtom as b$, type GuardInput as b0, GuardSchema as b1, type ListenSource as b2, ListenSourceSchema as b3, type LogEffect as b4, type LogMeta as b5, type McpServiceDef as b6, McpServiceDefSchema as b7, type NavigateEffect as b8, type NodeClassification as b9, type PageTraitRef as bA, PageTraitRefSchema as bB, type ParsedBinding as bC, type PayloadField as bD, PayloadFieldSchema as bE, type PersistEffect as bF, type PresentationType as bG, type RefEffect as bH, type RelatedLink as bI, RelatedLinkSchema as bJ, type RelationConfig as bK, RelationConfigSchema as bL, type RenderItemLambda as bM, type RenderUIConfig as bN, type RenderUIEffect as bO, type RenderUINode as bP, type RequiredField as bQ, RequiredFieldSchema as bR, type ResolvedAsset as bS, type ResolvedAssetInput as bT, ResolvedAssetSchema as bU, type ResolvedPatternProps as bV, type RestAuthConfig as bW, RestAuthConfigSchema as bX, type RestServiceDef as bY, RestServiceDefSchema as bZ, SERVICE_TYPES as b_, NodeClassificationSchema as ba, type NotifyEffect as bb, type OrbitalConfig as bc, type OrbitalConfigInput as bd, OrbitalConfigSchema as be, OrbitalDefinitionSchema as bf, type OrbitalEntity as bg, type OrbitalEntityInput as bh, OrbitalEntitySchema as bi, type OrbitalInput as bj, type OrbitalPage as bk, type OrbitalPageInput as bl, OrbitalPageSchema as bm, type OrbitalPageStrictInput as bn, OrbitalPageStrictSchema as bo, type OrbitalSchemaInput as bp, OrbitalSchemaSchema as bq, type OrbitalTraitRef as br, OrbitalTraitRefSchema as bs, type OrbitalUnit as bt, OrbitalUnitSchema as bu, OrbitalSchema$1 as bv, PageRefObjectSchema as bw, PageRefSchema as bx, PageRefStringSchema as by, PageSchema as bz, type EntityField as c, TransitionSchema as c$, SExprAtomSchema as c0, type SExprInput as c1, SExprSchema as c2, type SemanticAssetRef as c3, type SemanticAssetRefInput as c4, SemanticAssetRefSchema as c5, type ServiceDefinition as c6, ServiceDefinitionSchema as c7, type ServiceParams as c8, type ServiceRef as c9, ThemeRefStringSchema as cA, type ThemeTokens as cB, ThemeTokensSchema as cC, type ThemeVariant as cD, ThemeVariantSchema as cE, type TraitCategory as cF, TraitCategorySchema as cG, type TraitConfigObject as cH, TraitConfigSchema as cI, type TraitConfigValue as cJ, TraitConfigValueSchema as cK, type TraitDataEntity as cL, TraitDataEntitySchema as cM, type TraitEntityField as cN, TraitEntityFieldSchema as cO, TraitEventContractSchema as cP, TraitEventListenerSchema as cQ, type TraitInput as cR, TraitRefSchema as cS, type TraitReferenceInput as cT, TraitReferenceSchema as cU, TraitSchema as cV, type TraitTick as cW, TraitTickSchema as cX, type TraitUIBinding as cY, type Transition as cZ, type TransitionInput as c_, type ServiceRefObject as ca, ServiceRefObjectSchema as cb, ServiceRefSchema as cc, ServiceRefStringSchema as cd, type ServiceType as ce, ServiceTypeSchema as cf, type SetEffect as cg, type SocketEvents as ch, SocketEventsSchema as ci, type SocketServiceDef as cj, SocketServiceDefSchema as ck, type SpawnEffect as cl, type StateInput as cm, type StateMachine as cn, type StateMachineInput as co, StateMachineSchema as cp, StateSchema as cq, type StateSemanticRole as cr, StateSemanticRoleSchema as cs, type SuggestedGuard as ct, SuggestedGuardSchema as cu, type SwapEffect as cv, type ThemeDefinition as cw, ThemeDefinitionSchema as cx, type ThemeRef as cy, ThemeRefSchema as cz, type EntityPersistence as d, parseAssetKey as d$, type TypedEffect as d0, type UISlot as d1, UISlotSchema as d2, UI_SLOTS as d3, type UXHints as d4, UXHintsSchema as d5, UseDeclarationSchema as d6, type UserPersona as d7, type UserPersonaInput as d8, UserPersonaSchema as d9, 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 dO, isSExprAtom as dP, isSExprCall as dQ, isSExprEffect as dR, isServiceReference as dS, isServiceReferenceObject as dT, isSingletonEntity as dU, isSocketService as dV, isThemeReference as dW, isValidBinding as dX, navigate as dY, normalizeTraitRef as dZ, notify as d_, VISUAL_STYLES as da, type ViewType as db, ViewTypeSchema as dc, type VisualStyle as dd, VisualStyleSchema as de, type WatchEffect as df, type WatchOptions as dg, atomic as dh, callService as di, collectBindings as dj, createAssetKey as dk, deref as dl, deriveCollection as dm, despawn as dn, doEffects as dp, emit as dq, findService as dr, getArgs as ds, getDefaultAnimationsForRole as dt, getOperator as du, getServiceNames as dv, getTraitConfig as dw, getTraitName as dx, hasService as dy, isBinding as dz, type EntityRow as e, parseBinding as e0, parseEntityRef as e1, parseImportedTraitRef as e2, parseOrbitalSchema as e3, parsePageRef as e4, parseServiceRef as e5, persist as e6, ref as e7, renderUI as e8, safeParseOrbitalSchema as e9, set as ea, sexpr as eb, spawn as ec, swap as ed, validateAssetAnimations as ee, walkSExpr as ef, watch as eg, type EntityRef as f, type TraitRef as g, type OrbitalSchema as h, type Trait as i, type Page as j, type PageRefObject as k, type TraitReference as l, type State as m, ALLOWED_CUSTOM_COMPONENTS as n, type AgentDomainCategory as o, AgentDomainCategorySchema as p, type AgentEffect as q, type AllowedCustomComponent as r, type AnimationDef as s, type AnimationDefInput as t, AnimationDefSchema as u, type AssetMap as v, type AssetMapInput as w, AssetMapSchema as x, type AssetMapping as y, type AssetMappingInput as z };
22657
+ export { type DespawnEffect as $, AGENT_DOMAIN_CATEGORIES as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Entity as E, type ComputedEventContract as F, ComputedEventContractSchema as G, type ComputedEventListener as H, ComputedEventListenerSchema as I, type CustomPatternDefinition as J, type CustomPatternDefinitionInput as K, CustomPatternDefinitionSchema as L, type CustomPatternMap as M, type CustomPatternMapInput as N, type OrbitalDefinition as O, type PageRef as P, CustomPatternMapSchema as Q, type DerefEffect as R, type State as S, type TraitEventContract as T, type UseDeclaration as U, type DesignPreferences as V, type DesignPreferencesInput as W, DesignPreferencesSchema as X, type DesignTokens as Y, type DesignTokensInput as Z, DesignTokensSchema as _, type TraitEventListener as a, type NodeClassification as a$, type DoEffect as a0, type DomainCategory as a1, DomainCategorySchema as a2, type DomainContext as a3, type DomainContextInput as a4, DomainContextSchema as a5, type DomainVocabulary as a6, DomainVocabularySchema as a7, ENTITY_ROLES as a8, type Effect as a9, type EventSemanticRole as aA, EventSemanticRoleSchema as aB, type EventSource as aC, EventSourceSchema as aD, type FetchEffect as aE, type Field as aF, type FieldFormat as aG, FieldFormatSchema as aH, FieldSchema as aI, type FieldType as aJ, FieldTypeSchema as aK, type FieldValue as aL, type Orbital as aM, GAME_TYPES as aN, type GameSubCategory as aO, GameSubCategorySchema as aP, type GameType as aQ, GameTypeSchema as aR, type Guard as aS, type GuardInput as aT, GuardSchema as aU, type ListenSource as aV, ListenSourceSchema as aW, type LogEffect as aX, type McpServiceDef as aY, McpServiceDefSchema as aZ, type NavigateEffect as a_, type EffectInput as aa, EffectSchema as ab, type EmitConfig as ac, type EmitEffect as ad, type EntityCall as ae, EntityCallSchema as af, type EntityData as ag, type EntityFieldInput as ah, EntityFieldSchema as ai, EntityPersistenceSchema as aj, EntityRefSchema as ak, EntityRefStringSchema as al, type EntityRole as am, EntityRoleSchema as an, EntitySchema as ao, type EntitySemanticRole as ap, EntitySemanticRoleSchema as aq, type Event as ar, type EventInput as as, type EventListener as at, EventListenerSchema as au, type EventPayloadField as av, EventPayloadFieldSchema as aw, EventSchema as ax, type EventScope as ay, EventScopeSchema as az, type TraitConfig as b, type ServiceType as b$, NodeClassificationSchema as b0, type NotifyEffect as b1, type OrbitalConfig as b2, type OrbitalConfigInput as b3, OrbitalConfigSchema as b4, OrbitalDefinitionSchema as b5, type OrbitalEntity as b6, type OrbitalEntityInput as b7, OrbitalEntitySchema as b8, type OrbitalInput as b9, RelationConfigSchema as bA, type RenderItemLambda as bB, type RenderUIConfig as bC, type RenderUIEffect as bD, type RenderUINode as bE, type RequiredField as bF, RequiredFieldSchema as bG, type ResolvedAsset as bH, type ResolvedAssetInput as bI, ResolvedAssetSchema as bJ, type ResolvedPatternProps as bK, type RestAuthConfig as bL, RestAuthConfigSchema as bM, type RestServiceDef as bN, RestServiceDefSchema as bO, SERVICE_TYPES as bP, type SemanticAssetRef as bQ, type SemanticAssetRefInput as bR, SemanticAssetRefSchema as bS, type ServiceDefinition as bT, ServiceDefinitionSchema as bU, type ServiceParams as bV, type ServiceRef as bW, type ServiceRefObject as bX, ServiceRefObjectSchema as bY, ServiceRefSchema as bZ, ServiceRefStringSchema as b_, type OrbitalPage as ba, type OrbitalPageInput as bb, OrbitalPageSchema as bc, type OrbitalPageStrictInput as bd, OrbitalPageStrictSchema as be, type OrbitalSchemaInput as bf, OrbitalSchemaSchema as bg, type OrbitalTraitRef as bh, OrbitalTraitRefSchema as bi, type OrbitalUnit as bj, OrbitalUnitSchema as bk, OrbitalSchema$1 as bl, PageRefObjectSchema as bm, PageRefSchema as bn, PageRefStringSchema as bo, PageSchema as bp, type PageTraitRef as bq, PageTraitRefSchema as br, type PayloadField as bs, PayloadFieldSchema as bt, type PersistEffect as bu, type PresentationType as bv, type RefEffect as bw, type RelatedLink as bx, RelatedLinkSchema as by, type RelationConfig as bz, type EntityField as c, VisualStyleSchema as c$, ServiceTypeSchema as c0, type SetEffect as c1, type SocketEvents as c2, SocketEventsSchema as c3, type SocketServiceDef as c4, SocketServiceDefSchema as c5, type SpawnEffect as c6, type StateInput as c7, type StateMachine as c8, type StateMachineInput as c9, TraitEventContractSchema as cA, TraitEventListenerSchema as cB, type TraitInput as cC, TraitRefSchema as cD, type TraitReferenceInput as cE, TraitReferenceSchema as cF, TraitSchema as cG, type TraitTick as cH, TraitTickSchema as cI, type TraitUIBinding as cJ, type Transition as cK, type TransitionInput as cL, TransitionSchema as cM, type TypedEffect as cN, type UISlot as cO, UISlotSchema as cP, UI_SLOTS as cQ, type UXHints as cR, UXHintsSchema as cS, UseDeclarationSchema as cT, type UserPersona as cU, type UserPersonaInput as cV, UserPersonaSchema as cW, VISUAL_STYLES as cX, type ViewType as cY, ViewTypeSchema as cZ, type VisualStyle as c_, StateMachineSchema as ca, StateSchema as cb, type StateSemanticRole as cc, StateSemanticRoleSchema as cd, type SuggestedGuard as ce, SuggestedGuardSchema as cf, type SwapEffect as cg, type ThemeDefinition as ch, ThemeDefinitionSchema as ci, type ThemeRef as cj, ThemeRefSchema as ck, ThemeRefStringSchema as cl, type ThemeTokens as cm, ThemeTokensSchema as cn, type ThemeVariant as co, ThemeVariantSchema as cp, type TraitCategory as cq, TraitCategorySchema as cr, type TraitConfigObject as cs, TraitConfigSchema as ct, type TraitConfigValue as cu, TraitConfigValueSchema as cv, type TraitDataEntity as cw, TraitDataEntitySchema as cx, type TraitEntityField as cy, TraitEntityFieldSchema as cz, type EntityPersistence as d, type WatchEffect as d0, type WatchOptions as d1, atomic as d2, callService as d3, createAssetKey as d4, deref as d5, deriveCollection as d6, despawn as d7, doEffects as d8, emit as d9, isThemeReference as dA, navigate as dB, normalizeTraitRef as dC, notify as dD, parseAssetKey as dE, parseEntityRef as dF, parseImportedTraitRef as dG, parseOrbitalSchema as dH, parsePageRef as dI, parseServiceRef as dJ, persist as dK, ref as dL, renderUI as dM, safeParseOrbitalSchema as dN, set as dO, spawn as dP, swap as dQ, validateAssetAnimations as dR, watch as dS, findService as da, getDefaultAnimationsForRole as db, getServiceNames as dc, getTraitConfig as dd, getTraitName as de, hasService as df, isCircuitEvent as dg, isEffect as dh, isEntityCall as di, isEntityReference as dj, isEntityReferenceAny as dk, isImportedTraitRef as dl, isInlineTrait as dm, isMcpService as dn, isOrbitalDefinition as dp, isPageReference as dq, isPageReferenceObject as dr, isPageReferenceString as ds, isRestService as dt, isRuntimeEntity as du, isSExprEffect as dv, isServiceReference as dw, isServiceReferenceObject as dx, isSingletonEntity as dy, isSocketService as dz, type EntityRow as e, type EntityRef as f, type TraitRef as g, type OrbitalSchema as h, type Trait as i, type Page as j, type PageRefObject as k, type TraitReference as l, ALLOWED_CUSTOM_COMPONENTS as m, type AgentDomainCategory as n, AgentDomainCategorySchema as o, type AgentEffect as p, type AllowedCustomComponent as q, type AnimationDef as r, type AnimationDefInput as s, AnimationDefSchema as t, type AssetMap as u, type AssetMapInput as v, AssetMapSchema as w, type AssetMapping as x, type AssetMappingInput as y, AssetMappingSchema as z };