@almadar/core 5.9.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1542,19 +1542,26 @@ declare const StateSchema: z.ZodObject<{
1542
1542
  */
1543
1543
  interface PayloadField {
1544
1544
  name: string;
1545
- type: "string" | "number" | "boolean" | "object" | "array";
1545
+ /**
1546
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
1547
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
1548
+ * 'array') are the canonical values; entity-name references like
1549
+ * 'CartItem' and array-of-entity references like '[CartItem]' are also
1550
+ * valid because the Rust IR's PayloadField.field_type is just a String.
1551
+ */
1552
+ type: string;
1546
1553
  required?: boolean;
1547
1554
  }
1548
1555
  declare const PayloadFieldSchema: z.ZodObject<{
1549
1556
  name: z.ZodString;
1550
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
1557
+ type: z.ZodString;
1551
1558
  required: z.ZodOptional<z.ZodBoolean>;
1552
1559
  }, "strip", z.ZodTypeAny, {
1553
- type: "string" | "number" | "boolean" | "object" | "array";
1560
+ type: string;
1554
1561
  name: string;
1555
1562
  required?: boolean | undefined;
1556
1563
  }, {
1557
- type: "string" | "number" | "boolean" | "object" | "array";
1564
+ type: string;
1558
1565
  name: string;
1559
1566
  required?: boolean | undefined;
1560
1567
  }>;
@@ -1581,14 +1588,14 @@ declare const EventSchema: z.ZodObject<{
1581
1588
  description: z.ZodOptional<z.ZodString>;
1582
1589
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
1583
1590
  name: z.ZodString;
1584
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
1591
+ type: z.ZodString;
1585
1592
  required: z.ZodOptional<z.ZodBoolean>;
1586
1593
  }, "strip", z.ZodTypeAny, {
1587
- type: "string" | "number" | "boolean" | "object" | "array";
1594
+ type: string;
1588
1595
  name: string;
1589
1596
  required?: boolean | undefined;
1590
1597
  }, {
1591
- type: "string" | "number" | "boolean" | "object" | "array";
1598
+ type: string;
1592
1599
  name: string;
1593
1600
  required?: boolean | undefined;
1594
1601
  }>, "many">>;
@@ -1599,7 +1606,7 @@ declare const EventSchema: z.ZodObject<{
1599
1606
  key: string;
1600
1607
  description?: string | undefined;
1601
1608
  payloadSchema?: {
1602
- type: "string" | "number" | "boolean" | "object" | "array";
1609
+ type: string;
1603
1610
  name: string;
1604
1611
  required?: boolean | undefined;
1605
1612
  }[] | undefined;
@@ -1610,7 +1617,7 @@ declare const EventSchema: z.ZodObject<{
1610
1617
  key: string;
1611
1618
  description?: string | undefined;
1612
1619
  payloadSchema?: {
1613
- type: "string" | "number" | "boolean" | "object" | "array";
1620
+ type: string;
1614
1621
  name: string;
1615
1622
  required?: boolean | undefined;
1616
1623
  }[] | undefined;
@@ -1744,14 +1751,14 @@ declare const StateMachineSchema: z.ZodObject<{
1744
1751
  description: z.ZodOptional<z.ZodString>;
1745
1752
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
1746
1753
  name: z.ZodString;
1747
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
1754
+ type: z.ZodString;
1748
1755
  required: z.ZodOptional<z.ZodBoolean>;
1749
1756
  }, "strip", z.ZodTypeAny, {
1750
- type: "string" | "number" | "boolean" | "object" | "array";
1757
+ type: string;
1751
1758
  name: string;
1752
1759
  required?: boolean | undefined;
1753
1760
  }, {
1754
- type: "string" | "number" | "boolean" | "object" | "array";
1761
+ type: string;
1755
1762
  name: string;
1756
1763
  required?: boolean | undefined;
1757
1764
  }>, "many">>;
@@ -1762,7 +1769,7 @@ declare const StateMachineSchema: z.ZodObject<{
1762
1769
  key: string;
1763
1770
  description?: string | undefined;
1764
1771
  payloadSchema?: {
1765
- type: "string" | "number" | "boolean" | "object" | "array";
1772
+ type: string;
1766
1773
  name: string;
1767
1774
  required?: boolean | undefined;
1768
1775
  }[] | undefined;
@@ -1773,7 +1780,7 @@ declare const StateMachineSchema: z.ZodObject<{
1773
1780
  key: string;
1774
1781
  description?: string | undefined;
1775
1782
  payloadSchema?: {
1776
- type: "string" | "number" | "boolean" | "object" | "array";
1783
+ type: string;
1777
1784
  name: string;
1778
1785
  required?: boolean | undefined;
1779
1786
  }[] | undefined;
@@ -1821,7 +1828,7 @@ declare const StateMachineSchema: z.ZodObject<{
1821
1828
  key: string;
1822
1829
  description?: string | undefined;
1823
1830
  payloadSchema?: {
1824
- type: "string" | "number" | "boolean" | "object" | "array";
1831
+ type: string;
1825
1832
  name: string;
1826
1833
  required?: boolean | undefined;
1827
1834
  }[] | undefined;
@@ -1856,7 +1863,7 @@ declare const StateMachineSchema: z.ZodObject<{
1856
1863
  key: string;
1857
1864
  description?: string | undefined;
1858
1865
  payloadSchema?: {
1859
- type: "string" | "number" | "boolean" | "object" | "array";
1866
+ type: string;
1860
1867
  name: string;
1861
1868
  required?: boolean | undefined;
1862
1869
  }[] | undefined;
@@ -2110,18 +2117,28 @@ interface EventPayloadField {
2110
2117
  }
2111
2118
  declare const EventPayloadFieldSchema: z.ZodObject<{
2112
2119
  name: z.ZodString;
2113
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
2120
+ /**
2121
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
2122
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
2123
+ * 'array') are the canonical values; entity-name references like
2124
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
2125
+ * are also valid because the Rust IR's PayloadField.field_type is
2126
+ * just a String. Only enforced narrowly at the call site (e.g.
2127
+ * emit-literal type-mismatch warnings in
2128
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
2129
+ */
2130
+ type: z.ZodString;
2114
2131
  required: z.ZodOptional<z.ZodBoolean>;
2115
2132
  description: z.ZodOptional<z.ZodString>;
2116
2133
  entityType: z.ZodOptional<z.ZodString>;
2117
2134
  }, "strip", z.ZodTypeAny, {
2118
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2135
+ type: string;
2119
2136
  name: string;
2120
2137
  required?: boolean | undefined;
2121
2138
  description?: string | undefined;
2122
2139
  entityType?: string | undefined;
2123
2140
  }, {
2124
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2141
+ type: string;
2125
2142
  name: string;
2126
2143
  required?: boolean | undefined;
2127
2144
  description?: string | undefined;
@@ -2136,8 +2153,10 @@ interface TraitEventContract {
2136
2153
  event: string;
2137
2154
  /** Human-readable description */
2138
2155
  description?: string;
2139
- /** Payload schema - what data this event carries */
2140
- payload?: EventPayloadField[];
2156
+ /** Payload schema declarative type info for the event's payload.
2157
+ * Distinct from the runtime payload value (`@payload.X` bindings,
2158
+ * `EventPayload`) which is a separate concept. */
2159
+ payloadSchema?: EventPayloadField[];
2141
2160
  /**
2142
2161
  * Event scope:
2143
2162
  * - 'internal': Trait-to-trait within same orbital (default)
@@ -2146,22 +2165,39 @@ interface TraitEventContract {
2146
2165
  scope?: EventScope;
2147
2166
  }
2148
2167
  declare const TraitEventContractSchema: z.ZodObject<{
2168
+ /**
2169
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
2170
+ * starts with a letter, then any letters / digits / underscores. Both
2171
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
2172
+ * post-Phase 2.5 nominal-event type system (events declared via
2173
+ * `type X = Event<T>`).
2174
+ */
2149
2175
  event: z.ZodString;
2150
2176
  description: z.ZodOptional<z.ZodString>;
2151
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
2177
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2152
2178
  name: z.ZodString;
2153
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
2179
+ /**
2180
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
2181
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
2182
+ * 'array') are the canonical values; entity-name references like
2183
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
2184
+ * are also valid because the Rust IR's PayloadField.field_type is
2185
+ * just a String. Only enforced narrowly at the call site (e.g.
2186
+ * emit-literal type-mismatch warnings in
2187
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
2188
+ */
2189
+ type: z.ZodString;
2154
2190
  required: z.ZodOptional<z.ZodBoolean>;
2155
2191
  description: z.ZodOptional<z.ZodString>;
2156
2192
  entityType: z.ZodOptional<z.ZodString>;
2157
2193
  }, "strip", z.ZodTypeAny, {
2158
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2194
+ type: string;
2159
2195
  name: string;
2160
2196
  required?: boolean | undefined;
2161
2197
  description?: string | undefined;
2162
2198
  entityType?: string | undefined;
2163
2199
  }, {
2164
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2200
+ type: string;
2165
2201
  name: string;
2166
2202
  required?: boolean | undefined;
2167
2203
  description?: string | undefined;
@@ -2171,8 +2207,8 @@ declare const TraitEventContractSchema: z.ZodObject<{
2171
2207
  }, "strip", z.ZodTypeAny, {
2172
2208
  event: string;
2173
2209
  description?: string | undefined;
2174
- payload?: {
2175
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2210
+ payloadSchema?: {
2211
+ type: string;
2176
2212
  name: string;
2177
2213
  required?: boolean | undefined;
2178
2214
  description?: string | undefined;
@@ -2182,8 +2218,8 @@ declare const TraitEventContractSchema: z.ZodObject<{
2182
2218
  }, {
2183
2219
  event: string;
2184
2220
  description?: string | undefined;
2185
- payload?: {
2186
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2221
+ payloadSchema?: {
2222
+ type: string;
2187
2223
  name: string;
2188
2224
  required?: boolean | undefined;
2189
2225
  description?: string | undefined;
@@ -2678,14 +2714,14 @@ declare const TraitSchema: z.ZodObject<{
2678
2714
  description: z.ZodOptional<z.ZodString>;
2679
2715
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2680
2716
  name: z.ZodString;
2681
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
2717
+ type: z.ZodString;
2682
2718
  required: z.ZodOptional<z.ZodBoolean>;
2683
2719
  }, "strip", z.ZodTypeAny, {
2684
- type: "string" | "number" | "boolean" | "object" | "array";
2720
+ type: string;
2685
2721
  name: string;
2686
2722
  required?: boolean | undefined;
2687
2723
  }, {
2688
- type: "string" | "number" | "boolean" | "object" | "array";
2724
+ type: string;
2689
2725
  name: string;
2690
2726
  required?: boolean | undefined;
2691
2727
  }>, "many">>;
@@ -2696,7 +2732,7 @@ declare const TraitSchema: z.ZodObject<{
2696
2732
  key: string;
2697
2733
  description?: string | undefined;
2698
2734
  payloadSchema?: {
2699
- type: "string" | "number" | "boolean" | "object" | "array";
2735
+ type: string;
2700
2736
  name: string;
2701
2737
  required?: boolean | undefined;
2702
2738
  }[] | undefined;
@@ -2707,7 +2743,7 @@ declare const TraitSchema: z.ZodObject<{
2707
2743
  key: string;
2708
2744
  description?: string | undefined;
2709
2745
  payloadSchema?: {
2710
- type: "string" | "number" | "boolean" | "object" | "array";
2746
+ type: string;
2711
2747
  name: string;
2712
2748
  required?: boolean | undefined;
2713
2749
  }[] | undefined;
@@ -2755,7 +2791,7 @@ declare const TraitSchema: z.ZodObject<{
2755
2791
  key: string;
2756
2792
  description?: string | undefined;
2757
2793
  payloadSchema?: {
2758
- type: "string" | "number" | "boolean" | "object" | "array";
2794
+ type: string;
2759
2795
  name: string;
2760
2796
  required?: boolean | undefined;
2761
2797
  }[] | undefined;
@@ -2790,7 +2826,7 @@ declare const TraitSchema: z.ZodObject<{
2790
2826
  key: string;
2791
2827
  description?: string | undefined;
2792
2828
  payloadSchema?: {
2793
- type: "string" | "number" | "boolean" | "object" | "array";
2829
+ type: string;
2794
2830
  name: string;
2795
2831
  required?: boolean | undefined;
2796
2832
  }[] | undefined;
@@ -2853,22 +2889,39 @@ declare const TraitSchema: z.ZodObject<{
2853
2889
  emits?: string[] | undefined;
2854
2890
  }>, "many">>;
2855
2891
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
2892
+ /**
2893
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
2894
+ * starts with a letter, then any letters / digits / underscores. Both
2895
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
2896
+ * post-Phase 2.5 nominal-event type system (events declared via
2897
+ * `type X = Event<T>`).
2898
+ */
2856
2899
  event: z.ZodString;
2857
2900
  description: z.ZodOptional<z.ZodString>;
2858
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
2901
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
2859
2902
  name: z.ZodString;
2860
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
2903
+ /**
2904
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
2905
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
2906
+ * 'array') are the canonical values; entity-name references like
2907
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
2908
+ * are also valid because the Rust IR's PayloadField.field_type is
2909
+ * just a String. Only enforced narrowly at the call site (e.g.
2910
+ * emit-literal type-mismatch warnings in
2911
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
2912
+ */
2913
+ type: z.ZodString;
2861
2914
  required: z.ZodOptional<z.ZodBoolean>;
2862
2915
  description: z.ZodOptional<z.ZodString>;
2863
2916
  entityType: z.ZodOptional<z.ZodString>;
2864
2917
  }, "strip", z.ZodTypeAny, {
2865
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2918
+ type: string;
2866
2919
  name: string;
2867
2920
  required?: boolean | undefined;
2868
2921
  description?: string | undefined;
2869
2922
  entityType?: string | undefined;
2870
2923
  }, {
2871
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2924
+ type: string;
2872
2925
  name: string;
2873
2926
  required?: boolean | undefined;
2874
2927
  description?: string | undefined;
@@ -2878,8 +2931,8 @@ declare const TraitSchema: z.ZodObject<{
2878
2931
  }, "strip", z.ZodTypeAny, {
2879
2932
  event: string;
2880
2933
  description?: string | undefined;
2881
- payload?: {
2882
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2934
+ payloadSchema?: {
2935
+ type: string;
2883
2936
  name: string;
2884
2937
  required?: boolean | undefined;
2885
2938
  description?: string | undefined;
@@ -2889,8 +2942,8 @@ declare const TraitSchema: z.ZodObject<{
2889
2942
  }, {
2890
2943
  event: string;
2891
2944
  description?: string | undefined;
2892
- payload?: {
2893
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
2945
+ payloadSchema?: {
2946
+ type: string;
2894
2947
  name: string;
2895
2948
  required?: boolean | undefined;
2896
2949
  description?: string | undefined;
@@ -2975,8 +3028,8 @@ declare const TraitSchema: z.ZodObject<{
2975
3028
  emits?: {
2976
3029
  event: string;
2977
3030
  description?: string | undefined;
2978
- payload?: {
2979
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3031
+ payloadSchema?: {
3032
+ type: string;
2980
3033
  name: string;
2981
3034
  required?: boolean | undefined;
2982
3035
  description?: string | undefined;
@@ -3030,7 +3083,7 @@ declare const TraitSchema: z.ZodObject<{
3030
3083
  key: string;
3031
3084
  description?: string | undefined;
3032
3085
  payloadSchema?: {
3033
- type: "string" | "number" | "boolean" | "object" | "array";
3086
+ type: string;
3034
3087
  name: string;
3035
3088
  required?: boolean | undefined;
3036
3089
  }[] | undefined;
@@ -3081,8 +3134,8 @@ declare const TraitSchema: z.ZodObject<{
3081
3134
  emits?: {
3082
3135
  event: string;
3083
3136
  description?: string | undefined;
3084
- payload?: {
3085
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3137
+ payloadSchema?: {
3138
+ type: string;
3086
3139
  name: string;
3087
3140
  required?: boolean | undefined;
3088
3141
  description?: string | undefined;
@@ -3136,7 +3189,7 @@ declare const TraitSchema: z.ZodObject<{
3136
3189
  key: string;
3137
3190
  description?: string | undefined;
3138
3191
  payloadSchema?: {
3139
- type: "string" | "number" | "boolean" | "object" | "array";
3192
+ type: string;
3140
3193
  name: string;
3141
3194
  required?: boolean | undefined;
3142
3195
  }[] | undefined;
@@ -3307,14 +3360,14 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3307
3360
  description: z.ZodOptional<z.ZodString>;
3308
3361
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3309
3362
  name: z.ZodString;
3310
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
3363
+ type: z.ZodString;
3311
3364
  required: z.ZodOptional<z.ZodBoolean>;
3312
3365
  }, "strip", z.ZodTypeAny, {
3313
- type: "string" | "number" | "boolean" | "object" | "array";
3366
+ type: string;
3314
3367
  name: string;
3315
3368
  required?: boolean | undefined;
3316
3369
  }, {
3317
- type: "string" | "number" | "boolean" | "object" | "array";
3370
+ type: string;
3318
3371
  name: string;
3319
3372
  required?: boolean | undefined;
3320
3373
  }>, "many">>;
@@ -3325,7 +3378,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3325
3378
  key: string;
3326
3379
  description?: string | undefined;
3327
3380
  payloadSchema?: {
3328
- type: "string" | "number" | "boolean" | "object" | "array";
3381
+ type: string;
3329
3382
  name: string;
3330
3383
  required?: boolean | undefined;
3331
3384
  }[] | undefined;
@@ -3336,7 +3389,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3336
3389
  key: string;
3337
3390
  description?: string | undefined;
3338
3391
  payloadSchema?: {
3339
- type: "string" | "number" | "boolean" | "object" | "array";
3392
+ type: string;
3340
3393
  name: string;
3341
3394
  required?: boolean | undefined;
3342
3395
  }[] | undefined;
@@ -3384,7 +3437,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3384
3437
  key: string;
3385
3438
  description?: string | undefined;
3386
3439
  payloadSchema?: {
3387
- type: "string" | "number" | "boolean" | "object" | "array";
3440
+ type: string;
3388
3441
  name: string;
3389
3442
  required?: boolean | undefined;
3390
3443
  }[] | undefined;
@@ -3419,7 +3472,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3419
3472
  key: string;
3420
3473
  description?: string | undefined;
3421
3474
  payloadSchema?: {
3422
- type: "string" | "number" | "boolean" | "object" | "array";
3475
+ type: string;
3423
3476
  name: string;
3424
3477
  required?: boolean | undefined;
3425
3478
  }[] | undefined;
@@ -3482,22 +3535,39 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3482
3535
  emits?: string[] | undefined;
3483
3536
  }>, "many">>;
3484
3537
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
3538
+ /**
3539
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
3540
+ * starts with a letter, then any letters / digits / underscores. Both
3541
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
3542
+ * post-Phase 2.5 nominal-event type system (events declared via
3543
+ * `type X = Event<T>`).
3544
+ */
3485
3545
  event: z.ZodString;
3486
3546
  description: z.ZodOptional<z.ZodString>;
3487
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
3547
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
3488
3548
  name: z.ZodString;
3489
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
3549
+ /**
3550
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
3551
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
3552
+ * 'array') are the canonical values; entity-name references like
3553
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
3554
+ * are also valid because the Rust IR's PayloadField.field_type is
3555
+ * just a String. Only enforced narrowly at the call site (e.g.
3556
+ * emit-literal type-mismatch warnings in
3557
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
3558
+ */
3559
+ type: z.ZodString;
3490
3560
  required: z.ZodOptional<z.ZodBoolean>;
3491
3561
  description: z.ZodOptional<z.ZodString>;
3492
3562
  entityType: z.ZodOptional<z.ZodString>;
3493
3563
  }, "strip", z.ZodTypeAny, {
3494
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3564
+ type: string;
3495
3565
  name: string;
3496
3566
  required?: boolean | undefined;
3497
3567
  description?: string | undefined;
3498
3568
  entityType?: string | undefined;
3499
3569
  }, {
3500
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3570
+ type: string;
3501
3571
  name: string;
3502
3572
  required?: boolean | undefined;
3503
3573
  description?: string | undefined;
@@ -3507,8 +3577,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3507
3577
  }, "strip", z.ZodTypeAny, {
3508
3578
  event: string;
3509
3579
  description?: string | undefined;
3510
- payload?: {
3511
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3580
+ payloadSchema?: {
3581
+ type: string;
3512
3582
  name: string;
3513
3583
  required?: boolean | undefined;
3514
3584
  description?: string | undefined;
@@ -3518,8 +3588,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3518
3588
  }, {
3519
3589
  event: string;
3520
3590
  description?: string | undefined;
3521
- payload?: {
3522
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3591
+ payloadSchema?: {
3592
+ type: string;
3523
3593
  name: string;
3524
3594
  required?: boolean | undefined;
3525
3595
  description?: string | undefined;
@@ -3604,8 +3674,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3604
3674
  emits?: {
3605
3675
  event: string;
3606
3676
  description?: string | undefined;
3607
- payload?: {
3608
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3677
+ payloadSchema?: {
3678
+ type: string;
3609
3679
  name: string;
3610
3680
  required?: boolean | undefined;
3611
3681
  description?: string | undefined;
@@ -3659,7 +3729,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3659
3729
  key: string;
3660
3730
  description?: string | undefined;
3661
3731
  payloadSchema?: {
3662
- type: "string" | "number" | "boolean" | "object" | "array";
3732
+ type: string;
3663
3733
  name: string;
3664
3734
  required?: boolean | undefined;
3665
3735
  }[] | undefined;
@@ -3710,8 +3780,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3710
3780
  emits?: {
3711
3781
  event: string;
3712
3782
  description?: string | undefined;
3713
- payload?: {
3714
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
3783
+ payloadSchema?: {
3784
+ type: string;
3715
3785
  name: string;
3716
3786
  required?: boolean | undefined;
3717
3787
  description?: string | undefined;
@@ -3765,7 +3835,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
3765
3835
  key: string;
3766
3836
  description?: string | undefined;
3767
3837
  payloadSchema?: {
3768
- type: "string" | "number" | "boolean" | "object" | "array";
3838
+ type: string;
3769
3839
  name: string;
3770
3840
  required?: boolean | undefined;
3771
3841
  }[] | undefined;
@@ -4006,14 +4076,14 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4006
4076
  description: z.ZodOptional<z.ZodString>;
4007
4077
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
4008
4078
  name: z.ZodString;
4009
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
4079
+ type: z.ZodString;
4010
4080
  required: z.ZodOptional<z.ZodBoolean>;
4011
4081
  }, "strip", z.ZodTypeAny, {
4012
- type: "string" | "number" | "boolean" | "object" | "array";
4082
+ type: string;
4013
4083
  name: string;
4014
4084
  required?: boolean | undefined;
4015
4085
  }, {
4016
- type: "string" | "number" | "boolean" | "object" | "array";
4086
+ type: string;
4017
4087
  name: string;
4018
4088
  required?: boolean | undefined;
4019
4089
  }>, "many">>;
@@ -4024,7 +4094,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4024
4094
  key: string;
4025
4095
  description?: string | undefined;
4026
4096
  payloadSchema?: {
4027
- type: "string" | "number" | "boolean" | "object" | "array";
4097
+ type: string;
4028
4098
  name: string;
4029
4099
  required?: boolean | undefined;
4030
4100
  }[] | undefined;
@@ -4035,7 +4105,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4035
4105
  key: string;
4036
4106
  description?: string | undefined;
4037
4107
  payloadSchema?: {
4038
- type: "string" | "number" | "boolean" | "object" | "array";
4108
+ type: string;
4039
4109
  name: string;
4040
4110
  required?: boolean | undefined;
4041
4111
  }[] | undefined;
@@ -4083,7 +4153,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4083
4153
  key: string;
4084
4154
  description?: string | undefined;
4085
4155
  payloadSchema?: {
4086
- type: "string" | "number" | "boolean" | "object" | "array";
4156
+ type: string;
4087
4157
  name: string;
4088
4158
  required?: boolean | undefined;
4089
4159
  }[] | undefined;
@@ -4118,7 +4188,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4118
4188
  key: string;
4119
4189
  description?: string | undefined;
4120
4190
  payloadSchema?: {
4121
- type: "string" | "number" | "boolean" | "object" | "array";
4191
+ type: string;
4122
4192
  name: string;
4123
4193
  required?: boolean | undefined;
4124
4194
  }[] | undefined;
@@ -4181,22 +4251,39 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4181
4251
  emits?: string[] | undefined;
4182
4252
  }>, "many">>;
4183
4253
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
4254
+ /**
4255
+ * Event name. Mirrors the Rust validator's `is_valid_event_identifier`:
4256
+ * starts with a letter, then any letters / digits / underscores. Both
4257
+ * UPPER_SNAKE_CASE and PascalCase shapes are valid identifiers in the
4258
+ * post-Phase 2.5 nominal-event type system (events declared via
4259
+ * `type X = Event<T>`).
4260
+ */
4184
4261
  event: z.ZodString;
4185
4262
  description: z.ZodOptional<z.ZodString>;
4186
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
4263
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
4187
4264
  name: z.ZodString;
4188
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
4265
+ /**
4266
+ * Field type. Mirrors the Rust validator's acceptance: any non-empty
4267
+ * string. Primitives ('string' | 'number' | 'boolean' | 'object' |
4268
+ * 'array') are the canonical values; entity-name references like
4269
+ * 'ModalRecord' and array-of-entity references like '[ModalRecord]'
4270
+ * are also valid because the Rust IR's PayloadField.field_type is
4271
+ * just a String. Only enforced narrowly at the call site (e.g.
4272
+ * emit-literal type-mismatch warnings in
4273
+ * orbital-compiler/phases/validation/emit_payload.rs) — not here.
4274
+ */
4275
+ type: z.ZodString;
4189
4276
  required: z.ZodOptional<z.ZodBoolean>;
4190
4277
  description: z.ZodOptional<z.ZodString>;
4191
4278
  entityType: z.ZodOptional<z.ZodString>;
4192
4279
  }, "strip", z.ZodTypeAny, {
4193
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4280
+ type: string;
4194
4281
  name: string;
4195
4282
  required?: boolean | undefined;
4196
4283
  description?: string | undefined;
4197
4284
  entityType?: string | undefined;
4198
4285
  }, {
4199
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4286
+ type: string;
4200
4287
  name: string;
4201
4288
  required?: boolean | undefined;
4202
4289
  description?: string | undefined;
@@ -4206,8 +4293,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4206
4293
  }, "strip", z.ZodTypeAny, {
4207
4294
  event: string;
4208
4295
  description?: string | undefined;
4209
- payload?: {
4210
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4296
+ payloadSchema?: {
4297
+ type: string;
4211
4298
  name: string;
4212
4299
  required?: boolean | undefined;
4213
4300
  description?: string | undefined;
@@ -4217,8 +4304,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4217
4304
  }, {
4218
4305
  event: string;
4219
4306
  description?: string | undefined;
4220
- payload?: {
4221
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4307
+ payloadSchema?: {
4308
+ type: string;
4222
4309
  name: string;
4223
4310
  required?: boolean | undefined;
4224
4311
  description?: string | undefined;
@@ -4303,8 +4390,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4303
4390
  emits?: {
4304
4391
  event: string;
4305
4392
  description?: string | undefined;
4306
- payload?: {
4307
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4393
+ payloadSchema?: {
4394
+ type: string;
4308
4395
  name: string;
4309
4396
  required?: boolean | undefined;
4310
4397
  description?: string | undefined;
@@ -4358,7 +4445,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4358
4445
  key: string;
4359
4446
  description?: string | undefined;
4360
4447
  payloadSchema?: {
4361
- type: "string" | "number" | "boolean" | "object" | "array";
4448
+ type: string;
4362
4449
  name: string;
4363
4450
  required?: boolean | undefined;
4364
4451
  }[] | undefined;
@@ -4409,8 +4496,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4409
4496
  emits?: {
4410
4497
  event: string;
4411
4498
  description?: string | undefined;
4412
- payload?: {
4413
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
4499
+ payloadSchema?: {
4500
+ type: string;
4414
4501
  name: string;
4415
4502
  required?: boolean | undefined;
4416
4503
  description?: string | undefined;
@@ -4464,7 +4551,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
4464
4551
  key: string;
4465
4552
  description?: string | undefined;
4466
4553
  payloadSchema?: {
4467
- type: "string" | "number" | "boolean" | "object" | "array";
4554
+ type: string;
4468
4555
  name: string;
4469
4556
  required?: boolean | undefined;
4470
4557
  }[] | undefined;
@@ -4605,8 +4692,12 @@ declare const FieldFormatSchema: z.ZodEnum<["email", "url", "phone", "date", "da
4605
4692
  * Entity field definition.
4606
4693
  */
4607
4694
  interface EntityField {
4608
- /** Field name (camelCase) */
4609
- name: string;
4695
+ /**
4696
+ * Field name (camelCase). Optional for nested item/property descriptors
4697
+ * where the name is implied by the parent (`items`, `properties[k]`).
4698
+ * Mirrors Rust's `FieldDefinition.name: Option<String>`.
4699
+ */
4700
+ name?: string;
4610
4701
  /** Data type */
4611
4702
  type: FieldType;
4612
4703
  /** Whether the field is required */
@@ -6675,14 +6766,14 @@ declare const PageRefObjectSchema: z.ZodObject<{
6675
6766
  description: z.ZodOptional<z.ZodString>;
6676
6767
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
6677
6768
  name: z.ZodString;
6678
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
6769
+ type: z.ZodString;
6679
6770
  required: z.ZodOptional<z.ZodBoolean>;
6680
6771
  }, "strip", z.ZodTypeAny, {
6681
- type: "string" | "number" | "boolean" | "object" | "array";
6772
+ type: string;
6682
6773
  name: string;
6683
6774
  required?: boolean | undefined;
6684
6775
  }, {
6685
- type: "string" | "number" | "boolean" | "object" | "array";
6776
+ type: string;
6686
6777
  name: string;
6687
6778
  required?: boolean | undefined;
6688
6779
  }>, "many">>;
@@ -6693,7 +6784,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6693
6784
  key: string;
6694
6785
  description?: string | undefined;
6695
6786
  payloadSchema?: {
6696
- type: "string" | "number" | "boolean" | "object" | "array";
6787
+ type: string;
6697
6788
  name: string;
6698
6789
  required?: boolean | undefined;
6699
6790
  }[] | undefined;
@@ -6704,7 +6795,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6704
6795
  key: string;
6705
6796
  description?: string | undefined;
6706
6797
  payloadSchema?: {
6707
- type: "string" | "number" | "boolean" | "object" | "array";
6798
+ type: string;
6708
6799
  name: string;
6709
6800
  required?: boolean | undefined;
6710
6801
  }[] | undefined;
@@ -6752,7 +6843,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6752
6843
  key: string;
6753
6844
  description?: string | undefined;
6754
6845
  payloadSchema?: {
6755
- type: "string" | "number" | "boolean" | "object" | "array";
6846
+ type: string;
6756
6847
  name: string;
6757
6848
  required?: boolean | undefined;
6758
6849
  }[] | undefined;
@@ -6787,7 +6878,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
6787
6878
  key: string;
6788
6879
  description?: string | undefined;
6789
6880
  payloadSchema?: {
6790
- type: "string" | "number" | "boolean" | "object" | "array";
6881
+ type: string;
6791
6882
  name: string;
6792
6883
  required?: boolean | undefined;
6793
6884
  }[] | undefined;
@@ -6852,20 +6943,20 @@ declare const PageRefObjectSchema: z.ZodObject<{
6852
6943
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
6853
6944
  event: z.ZodString;
6854
6945
  description: z.ZodOptional<z.ZodString>;
6855
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
6946
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
6856
6947
  name: z.ZodString;
6857
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
6948
+ type: z.ZodString;
6858
6949
  required: z.ZodOptional<z.ZodBoolean>;
6859
6950
  description: z.ZodOptional<z.ZodString>;
6860
6951
  entityType: z.ZodOptional<z.ZodString>;
6861
6952
  }, "strip", z.ZodTypeAny, {
6862
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6953
+ type: string;
6863
6954
  name: string;
6864
6955
  required?: boolean | undefined;
6865
6956
  description?: string | undefined;
6866
6957
  entityType?: string | undefined;
6867
6958
  }, {
6868
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6959
+ type: string;
6869
6960
  name: string;
6870
6961
  required?: boolean | undefined;
6871
6962
  description?: string | undefined;
@@ -6875,8 +6966,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
6875
6966
  }, "strip", z.ZodTypeAny, {
6876
6967
  event: string;
6877
6968
  description?: string | undefined;
6878
- payload?: {
6879
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6969
+ payloadSchema?: {
6970
+ type: string;
6880
6971
  name: string;
6881
6972
  required?: boolean | undefined;
6882
6973
  description?: string | undefined;
@@ -6886,8 +6977,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
6886
6977
  }, {
6887
6978
  event: string;
6888
6979
  description?: string | undefined;
6889
- payload?: {
6890
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
6980
+ payloadSchema?: {
6981
+ type: string;
6891
6982
  name: string;
6892
6983
  required?: boolean | undefined;
6893
6984
  description?: string | undefined;
@@ -6972,8 +7063,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
6972
7063
  emits?: {
6973
7064
  event: string;
6974
7065
  description?: string | undefined;
6975
- payload?: {
6976
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7066
+ payloadSchema?: {
7067
+ type: string;
6977
7068
  name: string;
6978
7069
  required?: boolean | undefined;
6979
7070
  description?: string | undefined;
@@ -7027,7 +7118,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7027
7118
  key: string;
7028
7119
  description?: string | undefined;
7029
7120
  payloadSchema?: {
7030
- type: "string" | "number" | "boolean" | "object" | "array";
7121
+ type: string;
7031
7122
  name: string;
7032
7123
  required?: boolean | undefined;
7033
7124
  }[] | undefined;
@@ -7078,8 +7169,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
7078
7169
  emits?: {
7079
7170
  event: string;
7080
7171
  description?: string | undefined;
7081
- payload?: {
7082
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7172
+ payloadSchema?: {
7173
+ type: string;
7083
7174
  name: string;
7084
7175
  required?: boolean | undefined;
7085
7176
  description?: string | undefined;
@@ -7133,7 +7224,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7133
7224
  key: string;
7134
7225
  description?: string | undefined;
7135
7226
  payloadSchema?: {
7136
- type: "string" | "number" | "boolean" | "object" | "array";
7227
+ type: string;
7137
7228
  name: string;
7138
7229
  required?: boolean | undefined;
7139
7230
  }[] | undefined;
@@ -7190,8 +7281,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
7190
7281
  emits?: {
7191
7282
  event: string;
7192
7283
  description?: string | undefined;
7193
- payload?: {
7194
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7284
+ payloadSchema?: {
7285
+ type: string;
7195
7286
  name: string;
7196
7287
  required?: boolean | undefined;
7197
7288
  description?: string | undefined;
@@ -7245,7 +7336,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7245
7336
  key: string;
7246
7337
  description?: string | undefined;
7247
7338
  payloadSchema?: {
7248
- type: "string" | "number" | "boolean" | "object" | "array";
7339
+ type: string;
7249
7340
  name: string;
7250
7341
  required?: boolean | undefined;
7251
7342
  }[] | undefined;
@@ -7308,8 +7399,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
7308
7399
  emits?: {
7309
7400
  event: string;
7310
7401
  description?: string | undefined;
7311
- payload?: {
7312
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7402
+ payloadSchema?: {
7403
+ type: string;
7313
7404
  name: string;
7314
7405
  required?: boolean | undefined;
7315
7406
  description?: string | undefined;
@@ -7363,7 +7454,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
7363
7454
  key: string;
7364
7455
  description?: string | undefined;
7365
7456
  payloadSchema?: {
7366
- type: "string" | "number" | "boolean" | "object" | "array";
7457
+ type: string;
7367
7458
  name: string;
7368
7459
  required?: boolean | undefined;
7369
7460
  }[] | undefined;
@@ -7590,14 +7681,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7590
7681
  description: z.ZodOptional<z.ZodString>;
7591
7682
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
7592
7683
  name: z.ZodString;
7593
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
7684
+ type: z.ZodString;
7594
7685
  required: z.ZodOptional<z.ZodBoolean>;
7595
7686
  }, "strip", z.ZodTypeAny, {
7596
- type: "string" | "number" | "boolean" | "object" | "array";
7687
+ type: string;
7597
7688
  name: string;
7598
7689
  required?: boolean | undefined;
7599
7690
  }, {
7600
- type: "string" | "number" | "boolean" | "object" | "array";
7691
+ type: string;
7601
7692
  name: string;
7602
7693
  required?: boolean | undefined;
7603
7694
  }>, "many">>;
@@ -7608,7 +7699,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7608
7699
  key: string;
7609
7700
  description?: string | undefined;
7610
7701
  payloadSchema?: {
7611
- type: "string" | "number" | "boolean" | "object" | "array";
7702
+ type: string;
7612
7703
  name: string;
7613
7704
  required?: boolean | undefined;
7614
7705
  }[] | undefined;
@@ -7619,7 +7710,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7619
7710
  key: string;
7620
7711
  description?: string | undefined;
7621
7712
  payloadSchema?: {
7622
- type: "string" | "number" | "boolean" | "object" | "array";
7713
+ type: string;
7623
7714
  name: string;
7624
7715
  required?: boolean | undefined;
7625
7716
  }[] | undefined;
@@ -7667,7 +7758,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7667
7758
  key: string;
7668
7759
  description?: string | undefined;
7669
7760
  payloadSchema?: {
7670
- type: "string" | "number" | "boolean" | "object" | "array";
7761
+ type: string;
7671
7762
  name: string;
7672
7763
  required?: boolean | undefined;
7673
7764
  }[] | undefined;
@@ -7702,7 +7793,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7702
7793
  key: string;
7703
7794
  description?: string | undefined;
7704
7795
  payloadSchema?: {
7705
- type: "string" | "number" | "boolean" | "object" | "array";
7796
+ type: string;
7706
7797
  name: string;
7707
7798
  required?: boolean | undefined;
7708
7799
  }[] | undefined;
@@ -7767,20 +7858,20 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7767
7858
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
7768
7859
  event: z.ZodString;
7769
7860
  description: z.ZodOptional<z.ZodString>;
7770
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
7861
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
7771
7862
  name: z.ZodString;
7772
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
7863
+ type: z.ZodString;
7773
7864
  required: z.ZodOptional<z.ZodBoolean>;
7774
7865
  description: z.ZodOptional<z.ZodString>;
7775
7866
  entityType: z.ZodOptional<z.ZodString>;
7776
7867
  }, "strip", z.ZodTypeAny, {
7777
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7868
+ type: string;
7778
7869
  name: string;
7779
7870
  required?: boolean | undefined;
7780
7871
  description?: string | undefined;
7781
7872
  entityType?: string | undefined;
7782
7873
  }, {
7783
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7874
+ type: string;
7784
7875
  name: string;
7785
7876
  required?: boolean | undefined;
7786
7877
  description?: string | undefined;
@@ -7790,8 +7881,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7790
7881
  }, "strip", z.ZodTypeAny, {
7791
7882
  event: string;
7792
7883
  description?: string | undefined;
7793
- payload?: {
7794
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7884
+ payloadSchema?: {
7885
+ type: string;
7795
7886
  name: string;
7796
7887
  required?: boolean | undefined;
7797
7888
  description?: string | undefined;
@@ -7801,8 +7892,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7801
7892
  }, {
7802
7893
  event: string;
7803
7894
  description?: string | undefined;
7804
- payload?: {
7805
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7895
+ payloadSchema?: {
7896
+ type: string;
7806
7897
  name: string;
7807
7898
  required?: boolean | undefined;
7808
7899
  description?: string | undefined;
@@ -7887,8 +7978,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7887
7978
  emits?: {
7888
7979
  event: string;
7889
7980
  description?: string | undefined;
7890
- payload?: {
7891
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
7981
+ payloadSchema?: {
7982
+ type: string;
7892
7983
  name: string;
7893
7984
  required?: boolean | undefined;
7894
7985
  description?: string | undefined;
@@ -7942,7 +8033,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7942
8033
  key: string;
7943
8034
  description?: string | undefined;
7944
8035
  payloadSchema?: {
7945
- type: "string" | "number" | "boolean" | "object" | "array";
8036
+ type: string;
7946
8037
  name: string;
7947
8038
  required?: boolean | undefined;
7948
8039
  }[] | undefined;
@@ -7993,8 +8084,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7993
8084
  emits?: {
7994
8085
  event: string;
7995
8086
  description?: string | undefined;
7996
- payload?: {
7997
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8087
+ payloadSchema?: {
8088
+ type: string;
7998
8089
  name: string;
7999
8090
  required?: boolean | undefined;
8000
8091
  description?: string | undefined;
@@ -8048,7 +8139,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8048
8139
  key: string;
8049
8140
  description?: string | undefined;
8050
8141
  payloadSchema?: {
8051
- type: "string" | "number" | "boolean" | "object" | "array";
8142
+ type: string;
8052
8143
  name: string;
8053
8144
  required?: boolean | undefined;
8054
8145
  }[] | undefined;
@@ -8105,8 +8196,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8105
8196
  emits?: {
8106
8197
  event: string;
8107
8198
  description?: string | undefined;
8108
- payload?: {
8109
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8199
+ payloadSchema?: {
8200
+ type: string;
8110
8201
  name: string;
8111
8202
  required?: boolean | undefined;
8112
8203
  description?: string | undefined;
@@ -8160,7 +8251,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8160
8251
  key: string;
8161
8252
  description?: string | undefined;
8162
8253
  payloadSchema?: {
8163
- type: "string" | "number" | "boolean" | "object" | "array";
8254
+ type: string;
8164
8255
  name: string;
8165
8256
  required?: boolean | undefined;
8166
8257
  }[] | undefined;
@@ -8223,8 +8314,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8223
8314
  emits?: {
8224
8315
  event: string;
8225
8316
  description?: string | undefined;
8226
- payload?: {
8227
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8317
+ payloadSchema?: {
8318
+ type: string;
8228
8319
  name: string;
8229
8320
  required?: boolean | undefined;
8230
8321
  description?: string | undefined;
@@ -8278,7 +8369,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
8278
8369
  key: string;
8279
8370
  description?: string | undefined;
8280
8371
  payloadSchema?: {
8281
- type: "string" | "number" | "boolean" | "object" | "array";
8372
+ type: string;
8282
8373
  name: string;
8283
8374
  required?: boolean | undefined;
8284
8375
  }[] | undefined;
@@ -8476,18 +8567,18 @@ declare const ComputedEventContractSchema: z.ZodObject<{
8476
8567
  description: z.ZodOptional<z.ZodString>;
8477
8568
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
8478
8569
  name: z.ZodString;
8479
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
8570
+ type: z.ZodString;
8480
8571
  required: z.ZodOptional<z.ZodBoolean>;
8481
8572
  description: z.ZodOptional<z.ZodString>;
8482
8573
  entityType: z.ZodOptional<z.ZodString>;
8483
8574
  }, "strip", z.ZodTypeAny, {
8484
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8575
+ type: string;
8485
8576
  name: string;
8486
8577
  required?: boolean | undefined;
8487
8578
  description?: string | undefined;
8488
8579
  entityType?: string | undefined;
8489
8580
  }, {
8490
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8581
+ type: string;
8491
8582
  name: string;
8492
8583
  required?: boolean | undefined;
8493
8584
  description?: string | undefined;
@@ -8503,7 +8594,7 @@ declare const ComputedEventContractSchema: z.ZodObject<{
8503
8594
  originalEvent: string;
8504
8595
  description?: string | undefined;
8505
8596
  payload?: {
8506
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8597
+ type: string;
8507
8598
  name: string;
8508
8599
  required?: boolean | undefined;
8509
8600
  description?: string | undefined;
@@ -8519,7 +8610,7 @@ declare const ComputedEventContractSchema: z.ZodObject<{
8519
8610
  originalEvent: string;
8520
8611
  description?: string | undefined;
8521
8612
  payload?: {
8522
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
8613
+ type: string;
8523
8614
  name: string;
8524
8615
  required?: boolean | undefined;
8525
8616
  description?: string | undefined;
@@ -9164,14 +9255,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9164
9255
  description: z.ZodOptional<z.ZodString>;
9165
9256
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
9166
9257
  name: z.ZodString;
9167
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
9258
+ type: z.ZodString;
9168
9259
  required: z.ZodOptional<z.ZodBoolean>;
9169
9260
  }, "strip", z.ZodTypeAny, {
9170
- type: "string" | "number" | "boolean" | "object" | "array";
9261
+ type: string;
9171
9262
  name: string;
9172
9263
  required?: boolean | undefined;
9173
9264
  }, {
9174
- type: "string" | "number" | "boolean" | "object" | "array";
9265
+ type: string;
9175
9266
  name: string;
9176
9267
  required?: boolean | undefined;
9177
9268
  }>, "many">>;
@@ -9182,7 +9273,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9182
9273
  key: string;
9183
9274
  description?: string | undefined;
9184
9275
  payloadSchema?: {
9185
- type: "string" | "number" | "boolean" | "object" | "array";
9276
+ type: string;
9186
9277
  name: string;
9187
9278
  required?: boolean | undefined;
9188
9279
  }[] | undefined;
@@ -9193,7 +9284,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9193
9284
  key: string;
9194
9285
  description?: string | undefined;
9195
9286
  payloadSchema?: {
9196
- type: "string" | "number" | "boolean" | "object" | "array";
9287
+ type: string;
9197
9288
  name: string;
9198
9289
  required?: boolean | undefined;
9199
9290
  }[] | undefined;
@@ -9241,7 +9332,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9241
9332
  key: string;
9242
9333
  description?: string | undefined;
9243
9334
  payloadSchema?: {
9244
- type: "string" | "number" | "boolean" | "object" | "array";
9335
+ type: string;
9245
9336
  name: string;
9246
9337
  required?: boolean | undefined;
9247
9338
  }[] | undefined;
@@ -9276,7 +9367,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9276
9367
  key: string;
9277
9368
  description?: string | undefined;
9278
9369
  payloadSchema?: {
9279
- type: "string" | "number" | "boolean" | "object" | "array";
9370
+ type: string;
9280
9371
  name: string;
9281
9372
  required?: boolean | undefined;
9282
9373
  }[] | undefined;
@@ -9341,20 +9432,20 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9341
9432
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
9342
9433
  event: z.ZodString;
9343
9434
  description: z.ZodOptional<z.ZodString>;
9344
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
9435
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
9345
9436
  name: z.ZodString;
9346
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
9437
+ type: z.ZodString;
9347
9438
  required: z.ZodOptional<z.ZodBoolean>;
9348
9439
  description: z.ZodOptional<z.ZodString>;
9349
9440
  entityType: z.ZodOptional<z.ZodString>;
9350
9441
  }, "strip", z.ZodTypeAny, {
9351
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9442
+ type: string;
9352
9443
  name: string;
9353
9444
  required?: boolean | undefined;
9354
9445
  description?: string | undefined;
9355
9446
  entityType?: string | undefined;
9356
9447
  }, {
9357
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9448
+ type: string;
9358
9449
  name: string;
9359
9450
  required?: boolean | undefined;
9360
9451
  description?: string | undefined;
@@ -9364,8 +9455,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9364
9455
  }, "strip", z.ZodTypeAny, {
9365
9456
  event: string;
9366
9457
  description?: string | undefined;
9367
- payload?: {
9368
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9458
+ payloadSchema?: {
9459
+ type: string;
9369
9460
  name: string;
9370
9461
  required?: boolean | undefined;
9371
9462
  description?: string | undefined;
@@ -9375,8 +9466,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9375
9466
  }, {
9376
9467
  event: string;
9377
9468
  description?: string | undefined;
9378
- payload?: {
9379
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9469
+ payloadSchema?: {
9470
+ type: string;
9380
9471
  name: string;
9381
9472
  required?: boolean | undefined;
9382
9473
  description?: string | undefined;
@@ -9461,8 +9552,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9461
9552
  emits?: {
9462
9553
  event: string;
9463
9554
  description?: string | undefined;
9464
- payload?: {
9465
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9555
+ payloadSchema?: {
9556
+ type: string;
9466
9557
  name: string;
9467
9558
  required?: boolean | undefined;
9468
9559
  description?: string | undefined;
@@ -9516,7 +9607,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9516
9607
  key: string;
9517
9608
  description?: string | undefined;
9518
9609
  payloadSchema?: {
9519
- type: "string" | "number" | "boolean" | "object" | "array";
9610
+ type: string;
9520
9611
  name: string;
9521
9612
  required?: boolean | undefined;
9522
9613
  }[] | undefined;
@@ -9567,8 +9658,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9567
9658
  emits?: {
9568
9659
  event: string;
9569
9660
  description?: string | undefined;
9570
- payload?: {
9571
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
9661
+ payloadSchema?: {
9662
+ type: string;
9572
9663
  name: string;
9573
9664
  required?: boolean | undefined;
9574
9665
  description?: string | undefined;
@@ -9622,7 +9713,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9622
9713
  key: string;
9623
9714
  description?: string | undefined;
9624
9715
  payloadSchema?: {
9625
- type: "string" | "number" | "boolean" | "object" | "array";
9716
+ type: string;
9626
9717
  name: string;
9627
9718
  required?: boolean | undefined;
9628
9719
  }[] | undefined;
@@ -9842,14 +9933,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9842
9933
  description: z.ZodOptional<z.ZodString>;
9843
9934
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
9844
9935
  name: z.ZodString;
9845
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
9936
+ type: z.ZodString;
9846
9937
  required: z.ZodOptional<z.ZodBoolean>;
9847
9938
  }, "strip", z.ZodTypeAny, {
9848
- type: "string" | "number" | "boolean" | "object" | "array";
9939
+ type: string;
9849
9940
  name: string;
9850
9941
  required?: boolean | undefined;
9851
9942
  }, {
9852
- type: "string" | "number" | "boolean" | "object" | "array";
9943
+ type: string;
9853
9944
  name: string;
9854
9945
  required?: boolean | undefined;
9855
9946
  }>, "many">>;
@@ -9860,7 +9951,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9860
9951
  key: string;
9861
9952
  description?: string | undefined;
9862
9953
  payloadSchema?: {
9863
- type: "string" | "number" | "boolean" | "object" | "array";
9954
+ type: string;
9864
9955
  name: string;
9865
9956
  required?: boolean | undefined;
9866
9957
  }[] | undefined;
@@ -9871,7 +9962,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9871
9962
  key: string;
9872
9963
  description?: string | undefined;
9873
9964
  payloadSchema?: {
9874
- type: "string" | "number" | "boolean" | "object" | "array";
9965
+ type: string;
9875
9966
  name: string;
9876
9967
  required?: boolean | undefined;
9877
9968
  }[] | undefined;
@@ -9919,7 +10010,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9919
10010
  key: string;
9920
10011
  description?: string | undefined;
9921
10012
  payloadSchema?: {
9922
- type: "string" | "number" | "boolean" | "object" | "array";
10013
+ type: string;
9923
10014
  name: string;
9924
10015
  required?: boolean | undefined;
9925
10016
  }[] | undefined;
@@ -9954,7 +10045,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9954
10045
  key: string;
9955
10046
  description?: string | undefined;
9956
10047
  payloadSchema?: {
9957
- type: "string" | "number" | "boolean" | "object" | "array";
10048
+ type: string;
9958
10049
  name: string;
9959
10050
  required?: boolean | undefined;
9960
10051
  }[] | undefined;
@@ -10019,20 +10110,20 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10019
10110
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
10020
10111
  event: z.ZodString;
10021
10112
  description: z.ZodOptional<z.ZodString>;
10022
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
10113
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
10023
10114
  name: z.ZodString;
10024
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
10115
+ type: z.ZodString;
10025
10116
  required: z.ZodOptional<z.ZodBoolean>;
10026
10117
  description: z.ZodOptional<z.ZodString>;
10027
10118
  entityType: z.ZodOptional<z.ZodString>;
10028
10119
  }, "strip", z.ZodTypeAny, {
10029
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10120
+ type: string;
10030
10121
  name: string;
10031
10122
  required?: boolean | undefined;
10032
10123
  description?: string | undefined;
10033
10124
  entityType?: string | undefined;
10034
10125
  }, {
10035
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10126
+ type: string;
10036
10127
  name: string;
10037
10128
  required?: boolean | undefined;
10038
10129
  description?: string | undefined;
@@ -10042,8 +10133,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10042
10133
  }, "strip", z.ZodTypeAny, {
10043
10134
  event: string;
10044
10135
  description?: string | undefined;
10045
- payload?: {
10046
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10136
+ payloadSchema?: {
10137
+ type: string;
10047
10138
  name: string;
10048
10139
  required?: boolean | undefined;
10049
10140
  description?: string | undefined;
@@ -10053,8 +10144,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10053
10144
  }, {
10054
10145
  event: string;
10055
10146
  description?: string | undefined;
10056
- payload?: {
10057
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10147
+ payloadSchema?: {
10148
+ type: string;
10058
10149
  name: string;
10059
10150
  required?: boolean | undefined;
10060
10151
  description?: string | undefined;
@@ -10139,8 +10230,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10139
10230
  emits?: {
10140
10231
  event: string;
10141
10232
  description?: string | undefined;
10142
- payload?: {
10143
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10233
+ payloadSchema?: {
10234
+ type: string;
10144
10235
  name: string;
10145
10236
  required?: boolean | undefined;
10146
10237
  description?: string | undefined;
@@ -10194,7 +10285,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10194
10285
  key: string;
10195
10286
  description?: string | undefined;
10196
10287
  payloadSchema?: {
10197
- type: "string" | "number" | "boolean" | "object" | "array";
10288
+ type: string;
10198
10289
  name: string;
10199
10290
  required?: boolean | undefined;
10200
10291
  }[] | undefined;
@@ -10245,8 +10336,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10245
10336
  emits?: {
10246
10337
  event: string;
10247
10338
  description?: string | undefined;
10248
- payload?: {
10249
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10339
+ payloadSchema?: {
10340
+ type: string;
10250
10341
  name: string;
10251
10342
  required?: boolean | undefined;
10252
10343
  description?: string | undefined;
@@ -10300,7 +10391,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10300
10391
  key: string;
10301
10392
  description?: string | undefined;
10302
10393
  payloadSchema?: {
10303
- type: "string" | "number" | "boolean" | "object" | "array";
10394
+ type: string;
10304
10395
  name: string;
10305
10396
  required?: boolean | undefined;
10306
10397
  }[] | undefined;
@@ -10357,8 +10448,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10357
10448
  emits?: {
10358
10449
  event: string;
10359
10450
  description?: string | undefined;
10360
- payload?: {
10361
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10451
+ payloadSchema?: {
10452
+ type: string;
10362
10453
  name: string;
10363
10454
  required?: boolean | undefined;
10364
10455
  description?: string | undefined;
@@ -10412,7 +10503,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10412
10503
  key: string;
10413
10504
  description?: string | undefined;
10414
10505
  payloadSchema?: {
10415
- type: "string" | "number" | "boolean" | "object" | "array";
10506
+ type: string;
10416
10507
  name: string;
10417
10508
  required?: boolean | undefined;
10418
10509
  }[] | undefined;
@@ -10475,8 +10566,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10475
10566
  emits?: {
10476
10567
  event: string;
10477
10568
  description?: string | undefined;
10478
- payload?: {
10479
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10569
+ payloadSchema?: {
10570
+ type: string;
10480
10571
  name: string;
10481
10572
  required?: boolean | undefined;
10482
10573
  description?: string | undefined;
@@ -10530,7 +10621,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10530
10621
  key: string;
10531
10622
  description?: string | undefined;
10532
10623
  payloadSchema?: {
10533
- type: "string" | "number" | "boolean" | "object" | "array";
10624
+ type: string;
10534
10625
  name: string;
10535
10626
  required?: boolean | undefined;
10536
10627
  }[] | undefined;
@@ -10599,18 +10690,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10599
10690
  description: z.ZodOptional<z.ZodString>;
10600
10691
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
10601
10692
  name: z.ZodString;
10602
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
10693
+ type: z.ZodString;
10603
10694
  required: z.ZodOptional<z.ZodBoolean>;
10604
10695
  description: z.ZodOptional<z.ZodString>;
10605
10696
  entityType: z.ZodOptional<z.ZodString>;
10606
10697
  }, "strip", z.ZodTypeAny, {
10607
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10698
+ type: string;
10608
10699
  name: string;
10609
10700
  required?: boolean | undefined;
10610
10701
  description?: string | undefined;
10611
10702
  entityType?: string | undefined;
10612
10703
  }, {
10613
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10704
+ type: string;
10614
10705
  name: string;
10615
10706
  required?: boolean | undefined;
10616
10707
  description?: string | undefined;
@@ -10626,7 +10717,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10626
10717
  originalEvent: string;
10627
10718
  description?: string | undefined;
10628
10719
  payload?: {
10629
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10720
+ type: string;
10630
10721
  name: string;
10631
10722
  required?: boolean | undefined;
10632
10723
  description?: string | undefined;
@@ -10642,7 +10733,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10642
10733
  originalEvent: string;
10643
10734
  description?: string | undefined;
10644
10735
  payload?: {
10645
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10736
+ type: string;
10646
10737
  name: string;
10647
10738
  required?: boolean | undefined;
10648
10739
  description?: string | undefined;
@@ -10873,8 +10964,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10873
10964
  emits?: {
10874
10965
  event: string;
10875
10966
  description?: string | undefined;
10876
- payload?: {
10877
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
10967
+ payloadSchema?: {
10968
+ type: string;
10878
10969
  name: string;
10879
10970
  required?: boolean | undefined;
10880
10971
  description?: string | undefined;
@@ -10928,7 +11019,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10928
11019
  key: string;
10929
11020
  description?: string | undefined;
10930
11021
  payloadSchema?: {
10931
- type: "string" | "number" | "boolean" | "object" | "array";
11022
+ type: string;
10932
11023
  name: string;
10933
11024
  required?: boolean | undefined;
10934
11025
  }[] | undefined;
@@ -10987,8 +11078,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10987
11078
  emits?: {
10988
11079
  event: string;
10989
11080
  description?: string | undefined;
10990
- payload?: {
10991
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11081
+ payloadSchema?: {
11082
+ type: string;
10992
11083
  name: string;
10993
11084
  required?: boolean | undefined;
10994
11085
  description?: string | undefined;
@@ -11042,7 +11133,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11042
11133
  key: string;
11043
11134
  description?: string | undefined;
11044
11135
  payloadSchema?: {
11045
- type: "string" | "number" | "boolean" | "object" | "array";
11136
+ type: string;
11046
11137
  name: string;
11047
11138
  required?: boolean | undefined;
11048
11139
  }[] | undefined;
@@ -11120,7 +11211,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11120
11211
  originalEvent: string;
11121
11212
  description?: string | undefined;
11122
11213
  payload?: {
11123
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11214
+ type: string;
11124
11215
  name: string;
11125
11216
  required?: boolean | undefined;
11126
11217
  description?: string | undefined;
@@ -11271,8 +11362,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11271
11362
  emits?: {
11272
11363
  event: string;
11273
11364
  description?: string | undefined;
11274
- payload?: {
11275
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11365
+ payloadSchema?: {
11366
+ type: string;
11276
11367
  name: string;
11277
11368
  required?: boolean | undefined;
11278
11369
  description?: string | undefined;
@@ -11326,7 +11417,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11326
11417
  key: string;
11327
11418
  description?: string | undefined;
11328
11419
  payloadSchema?: {
11329
- type: "string" | "number" | "boolean" | "object" | "array";
11420
+ type: string;
11330
11421
  name: string;
11331
11422
  required?: boolean | undefined;
11332
11423
  }[] | undefined;
@@ -11385,8 +11476,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11385
11476
  emits?: {
11386
11477
  event: string;
11387
11478
  description?: string | undefined;
11388
- payload?: {
11389
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11479
+ payloadSchema?: {
11480
+ type: string;
11390
11481
  name: string;
11391
11482
  required?: boolean | undefined;
11392
11483
  description?: string | undefined;
@@ -11440,7 +11531,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11440
11531
  key: string;
11441
11532
  description?: string | undefined;
11442
11533
  payloadSchema?: {
11443
- type: "string" | "number" | "boolean" | "object" | "array";
11534
+ type: string;
11444
11535
  name: string;
11445
11536
  required?: boolean | undefined;
11446
11537
  }[] | undefined;
@@ -11518,7 +11609,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11518
11609
  originalEvent: string;
11519
11610
  description?: string | undefined;
11520
11611
  payload?: {
11521
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
11612
+ type: string;
11522
11613
  name: string;
11523
11614
  required?: boolean | undefined;
11524
11615
  description?: string | undefined;
@@ -12075,14 +12166,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
12075
12166
  description: z.ZodOptional<z.ZodString>;
12076
12167
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12077
12168
  name: z.ZodString;
12078
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
12169
+ type: z.ZodString;
12079
12170
  required: z.ZodOptional<z.ZodBoolean>;
12080
12171
  }, "strip", z.ZodTypeAny, {
12081
- type: "string" | "number" | "boolean" | "object" | "array";
12172
+ type: string;
12082
12173
  name: string;
12083
12174
  required?: boolean | undefined;
12084
12175
  }, {
12085
- type: "string" | "number" | "boolean" | "object" | "array";
12176
+ type: string;
12086
12177
  name: string;
12087
12178
  required?: boolean | undefined;
12088
12179
  }>, "many">>;
@@ -12093,7 +12184,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12093
12184
  key: string;
12094
12185
  description?: string | undefined;
12095
12186
  payloadSchema?: {
12096
- type: "string" | "number" | "boolean" | "object" | "array";
12187
+ type: string;
12097
12188
  name: string;
12098
12189
  required?: boolean | undefined;
12099
12190
  }[] | undefined;
@@ -12104,7 +12195,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12104
12195
  key: string;
12105
12196
  description?: string | undefined;
12106
12197
  payloadSchema?: {
12107
- type: "string" | "number" | "boolean" | "object" | "array";
12198
+ type: string;
12108
12199
  name: string;
12109
12200
  required?: boolean | undefined;
12110
12201
  }[] | undefined;
@@ -12152,7 +12243,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12152
12243
  key: string;
12153
12244
  description?: string | undefined;
12154
12245
  payloadSchema?: {
12155
- type: "string" | "number" | "boolean" | "object" | "array";
12246
+ type: string;
12156
12247
  name: string;
12157
12248
  required?: boolean | undefined;
12158
12249
  }[] | undefined;
@@ -12187,7 +12278,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12187
12278
  key: string;
12188
12279
  description?: string | undefined;
12189
12280
  payloadSchema?: {
12190
- type: "string" | "number" | "boolean" | "object" | "array";
12281
+ type: string;
12191
12282
  name: string;
12192
12283
  required?: boolean | undefined;
12193
12284
  }[] | undefined;
@@ -12252,20 +12343,20 @@ declare const OrbitalSchema$1: z.ZodObject<{
12252
12343
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
12253
12344
  event: z.ZodString;
12254
12345
  description: z.ZodOptional<z.ZodString>;
12255
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
12346
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12256
12347
  name: z.ZodString;
12257
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
12348
+ type: z.ZodString;
12258
12349
  required: z.ZodOptional<z.ZodBoolean>;
12259
12350
  description: z.ZodOptional<z.ZodString>;
12260
12351
  entityType: z.ZodOptional<z.ZodString>;
12261
12352
  }, "strip", z.ZodTypeAny, {
12262
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12353
+ type: string;
12263
12354
  name: string;
12264
12355
  required?: boolean | undefined;
12265
12356
  description?: string | undefined;
12266
12357
  entityType?: string | undefined;
12267
12358
  }, {
12268
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12359
+ type: string;
12269
12360
  name: string;
12270
12361
  required?: boolean | undefined;
12271
12362
  description?: string | undefined;
@@ -12275,8 +12366,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
12275
12366
  }, "strip", z.ZodTypeAny, {
12276
12367
  event: string;
12277
12368
  description?: string | undefined;
12278
- payload?: {
12279
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12369
+ payloadSchema?: {
12370
+ type: string;
12280
12371
  name: string;
12281
12372
  required?: boolean | undefined;
12282
12373
  description?: string | undefined;
@@ -12286,8 +12377,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
12286
12377
  }, {
12287
12378
  event: string;
12288
12379
  description?: string | undefined;
12289
- payload?: {
12290
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12380
+ payloadSchema?: {
12381
+ type: string;
12291
12382
  name: string;
12292
12383
  required?: boolean | undefined;
12293
12384
  description?: string | undefined;
@@ -12372,8 +12463,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
12372
12463
  emits?: {
12373
12464
  event: string;
12374
12465
  description?: string | undefined;
12375
- payload?: {
12376
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12466
+ payloadSchema?: {
12467
+ type: string;
12377
12468
  name: string;
12378
12469
  required?: boolean | undefined;
12379
12470
  description?: string | undefined;
@@ -12427,7 +12518,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12427
12518
  key: string;
12428
12519
  description?: string | undefined;
12429
12520
  payloadSchema?: {
12430
- type: "string" | "number" | "boolean" | "object" | "array";
12521
+ type: string;
12431
12522
  name: string;
12432
12523
  required?: boolean | undefined;
12433
12524
  }[] | undefined;
@@ -12478,8 +12569,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
12478
12569
  emits?: {
12479
12570
  event: string;
12480
12571
  description?: string | undefined;
12481
- payload?: {
12482
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
12572
+ payloadSchema?: {
12573
+ type: string;
12483
12574
  name: string;
12484
12575
  required?: boolean | undefined;
12485
12576
  description?: string | undefined;
@@ -12533,7 +12624,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12533
12624
  key: string;
12534
12625
  description?: string | undefined;
12535
12626
  payloadSchema?: {
12536
- type: "string" | "number" | "boolean" | "object" | "array";
12627
+ type: string;
12537
12628
  name: string;
12538
12629
  required?: boolean | undefined;
12539
12630
  }[] | undefined;
@@ -12753,14 +12844,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
12753
12844
  description: z.ZodOptional<z.ZodString>;
12754
12845
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12755
12846
  name: z.ZodString;
12756
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
12847
+ type: z.ZodString;
12757
12848
  required: z.ZodOptional<z.ZodBoolean>;
12758
12849
  }, "strip", z.ZodTypeAny, {
12759
- type: "string" | "number" | "boolean" | "object" | "array";
12850
+ type: string;
12760
12851
  name: string;
12761
12852
  required?: boolean | undefined;
12762
12853
  }, {
12763
- type: "string" | "number" | "boolean" | "object" | "array";
12854
+ type: string;
12764
12855
  name: string;
12765
12856
  required?: boolean | undefined;
12766
12857
  }>, "many">>;
@@ -12771,7 +12862,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12771
12862
  key: string;
12772
12863
  description?: string | undefined;
12773
12864
  payloadSchema?: {
12774
- type: "string" | "number" | "boolean" | "object" | "array";
12865
+ type: string;
12775
12866
  name: string;
12776
12867
  required?: boolean | undefined;
12777
12868
  }[] | undefined;
@@ -12782,7 +12873,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12782
12873
  key: string;
12783
12874
  description?: string | undefined;
12784
12875
  payloadSchema?: {
12785
- type: "string" | "number" | "boolean" | "object" | "array";
12876
+ type: string;
12786
12877
  name: string;
12787
12878
  required?: boolean | undefined;
12788
12879
  }[] | undefined;
@@ -12830,7 +12921,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12830
12921
  key: string;
12831
12922
  description?: string | undefined;
12832
12923
  payloadSchema?: {
12833
- type: "string" | "number" | "boolean" | "object" | "array";
12924
+ type: string;
12834
12925
  name: string;
12835
12926
  required?: boolean | undefined;
12836
12927
  }[] | undefined;
@@ -12865,7 +12956,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12865
12956
  key: string;
12866
12957
  description?: string | undefined;
12867
12958
  payloadSchema?: {
12868
- type: "string" | "number" | "boolean" | "object" | "array";
12959
+ type: string;
12869
12960
  name: string;
12870
12961
  required?: boolean | undefined;
12871
12962
  }[] | undefined;
@@ -12930,20 +13021,20 @@ declare const OrbitalSchema$1: z.ZodObject<{
12930
13021
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
12931
13022
  event: z.ZodString;
12932
13023
  description: z.ZodOptional<z.ZodString>;
12933
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
13024
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
12934
13025
  name: z.ZodString;
12935
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
13026
+ type: z.ZodString;
12936
13027
  required: z.ZodOptional<z.ZodBoolean>;
12937
13028
  description: z.ZodOptional<z.ZodString>;
12938
13029
  entityType: z.ZodOptional<z.ZodString>;
12939
13030
  }, "strip", z.ZodTypeAny, {
12940
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13031
+ type: string;
12941
13032
  name: string;
12942
13033
  required?: boolean | undefined;
12943
13034
  description?: string | undefined;
12944
13035
  entityType?: string | undefined;
12945
13036
  }, {
12946
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13037
+ type: string;
12947
13038
  name: string;
12948
13039
  required?: boolean | undefined;
12949
13040
  description?: string | undefined;
@@ -12953,8 +13044,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
12953
13044
  }, "strip", z.ZodTypeAny, {
12954
13045
  event: string;
12955
13046
  description?: string | undefined;
12956
- payload?: {
12957
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13047
+ payloadSchema?: {
13048
+ type: string;
12958
13049
  name: string;
12959
13050
  required?: boolean | undefined;
12960
13051
  description?: string | undefined;
@@ -12964,8 +13055,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
12964
13055
  }, {
12965
13056
  event: string;
12966
13057
  description?: string | undefined;
12967
- payload?: {
12968
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13058
+ payloadSchema?: {
13059
+ type: string;
12969
13060
  name: string;
12970
13061
  required?: boolean | undefined;
12971
13062
  description?: string | undefined;
@@ -13050,8 +13141,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
13050
13141
  emits?: {
13051
13142
  event: string;
13052
13143
  description?: string | undefined;
13053
- payload?: {
13054
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13144
+ payloadSchema?: {
13145
+ type: string;
13055
13146
  name: string;
13056
13147
  required?: boolean | undefined;
13057
13148
  description?: string | undefined;
@@ -13105,7 +13196,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13105
13196
  key: string;
13106
13197
  description?: string | undefined;
13107
13198
  payloadSchema?: {
13108
- type: "string" | "number" | "boolean" | "object" | "array";
13199
+ type: string;
13109
13200
  name: string;
13110
13201
  required?: boolean | undefined;
13111
13202
  }[] | undefined;
@@ -13156,8 +13247,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
13156
13247
  emits?: {
13157
13248
  event: string;
13158
13249
  description?: string | undefined;
13159
- payload?: {
13160
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13250
+ payloadSchema?: {
13251
+ type: string;
13161
13252
  name: string;
13162
13253
  required?: boolean | undefined;
13163
13254
  description?: string | undefined;
@@ -13211,7 +13302,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13211
13302
  key: string;
13212
13303
  description?: string | undefined;
13213
13304
  payloadSchema?: {
13214
- type: "string" | "number" | "boolean" | "object" | "array";
13305
+ type: string;
13215
13306
  name: string;
13216
13307
  required?: boolean | undefined;
13217
13308
  }[] | undefined;
@@ -13268,8 +13359,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
13268
13359
  emits?: {
13269
13360
  event: string;
13270
13361
  description?: string | undefined;
13271
- payload?: {
13272
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13362
+ payloadSchema?: {
13363
+ type: string;
13273
13364
  name: string;
13274
13365
  required?: boolean | undefined;
13275
13366
  description?: string | undefined;
@@ -13323,7 +13414,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13323
13414
  key: string;
13324
13415
  description?: string | undefined;
13325
13416
  payloadSchema?: {
13326
- type: "string" | "number" | "boolean" | "object" | "array";
13417
+ type: string;
13327
13418
  name: string;
13328
13419
  required?: boolean | undefined;
13329
13420
  }[] | undefined;
@@ -13386,8 +13477,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
13386
13477
  emits?: {
13387
13478
  event: string;
13388
13479
  description?: string | undefined;
13389
- payload?: {
13390
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13480
+ payloadSchema?: {
13481
+ type: string;
13391
13482
  name: string;
13392
13483
  required?: boolean | undefined;
13393
13484
  description?: string | undefined;
@@ -13441,7 +13532,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13441
13532
  key: string;
13442
13533
  description?: string | undefined;
13443
13534
  payloadSchema?: {
13444
- type: "string" | "number" | "boolean" | "object" | "array";
13535
+ type: string;
13445
13536
  name: string;
13446
13537
  required?: boolean | undefined;
13447
13538
  }[] | undefined;
@@ -13510,18 +13601,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
13510
13601
  description: z.ZodOptional<z.ZodString>;
13511
13602
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
13512
13603
  name: z.ZodString;
13513
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
13604
+ type: z.ZodString;
13514
13605
  required: z.ZodOptional<z.ZodBoolean>;
13515
13606
  description: z.ZodOptional<z.ZodString>;
13516
13607
  entityType: z.ZodOptional<z.ZodString>;
13517
13608
  }, "strip", z.ZodTypeAny, {
13518
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13609
+ type: string;
13519
13610
  name: string;
13520
13611
  required?: boolean | undefined;
13521
13612
  description?: string | undefined;
13522
13613
  entityType?: string | undefined;
13523
13614
  }, {
13524
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13615
+ type: string;
13525
13616
  name: string;
13526
13617
  required?: boolean | undefined;
13527
13618
  description?: string | undefined;
@@ -13537,7 +13628,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13537
13628
  originalEvent: string;
13538
13629
  description?: string | undefined;
13539
13630
  payload?: {
13540
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13631
+ type: string;
13541
13632
  name: string;
13542
13633
  required?: boolean | undefined;
13543
13634
  description?: string | undefined;
@@ -13553,7 +13644,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13553
13644
  originalEvent: string;
13554
13645
  description?: string | undefined;
13555
13646
  payload?: {
13556
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13647
+ type: string;
13557
13648
  name: string;
13558
13649
  required?: boolean | undefined;
13559
13650
  description?: string | undefined;
@@ -13784,8 +13875,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
13784
13875
  emits?: {
13785
13876
  event: string;
13786
13877
  description?: string | undefined;
13787
- payload?: {
13788
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13878
+ payloadSchema?: {
13879
+ type: string;
13789
13880
  name: string;
13790
13881
  required?: boolean | undefined;
13791
13882
  description?: string | undefined;
@@ -13839,7 +13930,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13839
13930
  key: string;
13840
13931
  description?: string | undefined;
13841
13932
  payloadSchema?: {
13842
- type: "string" | "number" | "boolean" | "object" | "array";
13933
+ type: string;
13843
13934
  name: string;
13844
13935
  required?: boolean | undefined;
13845
13936
  }[] | undefined;
@@ -13898,8 +13989,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
13898
13989
  emits?: {
13899
13990
  event: string;
13900
13991
  description?: string | undefined;
13901
- payload?: {
13902
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
13992
+ payloadSchema?: {
13993
+ type: string;
13903
13994
  name: string;
13904
13995
  required?: boolean | undefined;
13905
13996
  description?: string | undefined;
@@ -13953,7 +14044,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13953
14044
  key: string;
13954
14045
  description?: string | undefined;
13955
14046
  payloadSchema?: {
13956
- type: "string" | "number" | "boolean" | "object" | "array";
14047
+ type: string;
13957
14048
  name: string;
13958
14049
  required?: boolean | undefined;
13959
14050
  }[] | undefined;
@@ -14031,7 +14122,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14031
14122
  originalEvent: string;
14032
14123
  description?: string | undefined;
14033
14124
  payload?: {
14034
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
14125
+ type: string;
14035
14126
  name: string;
14036
14127
  required?: boolean | undefined;
14037
14128
  description?: string | undefined;
@@ -14182,8 +14273,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
14182
14273
  emits?: {
14183
14274
  event: string;
14184
14275
  description?: string | undefined;
14185
- payload?: {
14186
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
14276
+ payloadSchema?: {
14277
+ type: string;
14187
14278
  name: string;
14188
14279
  required?: boolean | undefined;
14189
14280
  description?: string | undefined;
@@ -14237,7 +14328,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14237
14328
  key: string;
14238
14329
  description?: string | undefined;
14239
14330
  payloadSchema?: {
14240
- type: "string" | "number" | "boolean" | "object" | "array";
14331
+ type: string;
14241
14332
  name: string;
14242
14333
  required?: boolean | undefined;
14243
14334
  }[] | undefined;
@@ -14296,8 +14387,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
14296
14387
  emits?: {
14297
14388
  event: string;
14298
14389
  description?: string | undefined;
14299
- payload?: {
14300
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
14390
+ payloadSchema?: {
14391
+ type: string;
14301
14392
  name: string;
14302
14393
  required?: boolean | undefined;
14303
14394
  description?: string | undefined;
@@ -14351,7 +14442,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14351
14442
  key: string;
14352
14443
  description?: string | undefined;
14353
14444
  payloadSchema?: {
14354
- type: "string" | "number" | "boolean" | "object" | "array";
14445
+ type: string;
14355
14446
  name: string;
14356
14447
  required?: boolean | undefined;
14357
14448
  }[] | undefined;
@@ -14429,7 +14520,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14429
14520
  originalEvent: string;
14430
14521
  description?: string | undefined;
14431
14522
  payload?: {
14432
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
14523
+ type: string;
14433
14524
  name: string;
14434
14525
  required?: boolean | undefined;
14435
14526
  description?: string | undefined;
@@ -14993,14 +15084,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
14993
15084
  description: z.ZodOptional<z.ZodString>;
14994
15085
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
14995
15086
  name: z.ZodString;
14996
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
15087
+ type: z.ZodString;
14997
15088
  required: z.ZodOptional<z.ZodBoolean>;
14998
15089
  }, "strip", z.ZodTypeAny, {
14999
- type: "string" | "number" | "boolean" | "object" | "array";
15090
+ type: string;
15000
15091
  name: string;
15001
15092
  required?: boolean | undefined;
15002
15093
  }, {
15003
- type: "string" | "number" | "boolean" | "object" | "array";
15094
+ type: string;
15004
15095
  name: string;
15005
15096
  required?: boolean | undefined;
15006
15097
  }>, "many">>;
@@ -15011,7 +15102,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15011
15102
  key: string;
15012
15103
  description?: string | undefined;
15013
15104
  payloadSchema?: {
15014
- type: "string" | "number" | "boolean" | "object" | "array";
15105
+ type: string;
15015
15106
  name: string;
15016
15107
  required?: boolean | undefined;
15017
15108
  }[] | undefined;
@@ -15022,7 +15113,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15022
15113
  key: string;
15023
15114
  description?: string | undefined;
15024
15115
  payloadSchema?: {
15025
- type: "string" | "number" | "boolean" | "object" | "array";
15116
+ type: string;
15026
15117
  name: string;
15027
15118
  required?: boolean | undefined;
15028
15119
  }[] | undefined;
@@ -15070,7 +15161,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15070
15161
  key: string;
15071
15162
  description?: string | undefined;
15072
15163
  payloadSchema?: {
15073
- type: "string" | "number" | "boolean" | "object" | "array";
15164
+ type: string;
15074
15165
  name: string;
15075
15166
  required?: boolean | undefined;
15076
15167
  }[] | undefined;
@@ -15105,7 +15196,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15105
15196
  key: string;
15106
15197
  description?: string | undefined;
15107
15198
  payloadSchema?: {
15108
- type: "string" | "number" | "boolean" | "object" | "array";
15199
+ type: string;
15109
15200
  name: string;
15110
15201
  required?: boolean | undefined;
15111
15202
  }[] | undefined;
@@ -15170,20 +15261,20 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15170
15261
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
15171
15262
  event: z.ZodString;
15172
15263
  description: z.ZodOptional<z.ZodString>;
15173
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
15264
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
15174
15265
  name: z.ZodString;
15175
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
15266
+ type: z.ZodString;
15176
15267
  required: z.ZodOptional<z.ZodBoolean>;
15177
15268
  description: z.ZodOptional<z.ZodString>;
15178
15269
  entityType: z.ZodOptional<z.ZodString>;
15179
15270
  }, "strip", z.ZodTypeAny, {
15180
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15271
+ type: string;
15181
15272
  name: string;
15182
15273
  required?: boolean | undefined;
15183
15274
  description?: string | undefined;
15184
15275
  entityType?: string | undefined;
15185
15276
  }, {
15186
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15277
+ type: string;
15187
15278
  name: string;
15188
15279
  required?: boolean | undefined;
15189
15280
  description?: string | undefined;
@@ -15193,8 +15284,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15193
15284
  }, "strip", z.ZodTypeAny, {
15194
15285
  event: string;
15195
15286
  description?: string | undefined;
15196
- payload?: {
15197
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15287
+ payloadSchema?: {
15288
+ type: string;
15198
15289
  name: string;
15199
15290
  required?: boolean | undefined;
15200
15291
  description?: string | undefined;
@@ -15204,8 +15295,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15204
15295
  }, {
15205
15296
  event: string;
15206
15297
  description?: string | undefined;
15207
- payload?: {
15208
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15298
+ payloadSchema?: {
15299
+ type: string;
15209
15300
  name: string;
15210
15301
  required?: boolean | undefined;
15211
15302
  description?: string | undefined;
@@ -15290,8 +15381,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15290
15381
  emits?: {
15291
15382
  event: string;
15292
15383
  description?: string | undefined;
15293
- payload?: {
15294
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15384
+ payloadSchema?: {
15385
+ type: string;
15295
15386
  name: string;
15296
15387
  required?: boolean | undefined;
15297
15388
  description?: string | undefined;
@@ -15345,7 +15436,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15345
15436
  key: string;
15346
15437
  description?: string | undefined;
15347
15438
  payloadSchema?: {
15348
- type: "string" | "number" | "boolean" | "object" | "array";
15439
+ type: string;
15349
15440
  name: string;
15350
15441
  required?: boolean | undefined;
15351
15442
  }[] | undefined;
@@ -15396,8 +15487,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15396
15487
  emits?: {
15397
15488
  event: string;
15398
15489
  description?: string | undefined;
15399
- payload?: {
15400
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15490
+ payloadSchema?: {
15491
+ type: string;
15401
15492
  name: string;
15402
15493
  required?: boolean | undefined;
15403
15494
  description?: string | undefined;
@@ -15451,7 +15542,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15451
15542
  key: string;
15452
15543
  description?: string | undefined;
15453
15544
  payloadSchema?: {
15454
- type: "string" | "number" | "boolean" | "object" | "array";
15545
+ type: string;
15455
15546
  name: string;
15456
15547
  required?: boolean | undefined;
15457
15548
  }[] | undefined;
@@ -15671,14 +15762,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15671
15762
  description: z.ZodOptional<z.ZodString>;
15672
15763
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
15673
15764
  name: z.ZodString;
15674
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
15765
+ type: z.ZodString;
15675
15766
  required: z.ZodOptional<z.ZodBoolean>;
15676
15767
  }, "strip", z.ZodTypeAny, {
15677
- type: "string" | "number" | "boolean" | "object" | "array";
15768
+ type: string;
15678
15769
  name: string;
15679
15770
  required?: boolean | undefined;
15680
15771
  }, {
15681
- type: "string" | "number" | "boolean" | "object" | "array";
15772
+ type: string;
15682
15773
  name: string;
15683
15774
  required?: boolean | undefined;
15684
15775
  }>, "many">>;
@@ -15689,7 +15780,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15689
15780
  key: string;
15690
15781
  description?: string | undefined;
15691
15782
  payloadSchema?: {
15692
- type: "string" | "number" | "boolean" | "object" | "array";
15783
+ type: string;
15693
15784
  name: string;
15694
15785
  required?: boolean | undefined;
15695
15786
  }[] | undefined;
@@ -15700,7 +15791,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15700
15791
  key: string;
15701
15792
  description?: string | undefined;
15702
15793
  payloadSchema?: {
15703
- type: "string" | "number" | "boolean" | "object" | "array";
15794
+ type: string;
15704
15795
  name: string;
15705
15796
  required?: boolean | undefined;
15706
15797
  }[] | undefined;
@@ -15748,7 +15839,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15748
15839
  key: string;
15749
15840
  description?: string | undefined;
15750
15841
  payloadSchema?: {
15751
- type: "string" | "number" | "boolean" | "object" | "array";
15842
+ type: string;
15752
15843
  name: string;
15753
15844
  required?: boolean | undefined;
15754
15845
  }[] | undefined;
@@ -15783,7 +15874,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15783
15874
  key: string;
15784
15875
  description?: string | undefined;
15785
15876
  payloadSchema?: {
15786
- type: "string" | "number" | "boolean" | "object" | "array";
15877
+ type: string;
15787
15878
  name: string;
15788
15879
  required?: boolean | undefined;
15789
15880
  }[] | undefined;
@@ -15848,20 +15939,20 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15848
15939
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
15849
15940
  event: z.ZodString;
15850
15941
  description: z.ZodOptional<z.ZodString>;
15851
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
15942
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
15852
15943
  name: z.ZodString;
15853
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
15944
+ type: z.ZodString;
15854
15945
  required: z.ZodOptional<z.ZodBoolean>;
15855
15946
  description: z.ZodOptional<z.ZodString>;
15856
15947
  entityType: z.ZodOptional<z.ZodString>;
15857
15948
  }, "strip", z.ZodTypeAny, {
15858
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15949
+ type: string;
15859
15950
  name: string;
15860
15951
  required?: boolean | undefined;
15861
15952
  description?: string | undefined;
15862
15953
  entityType?: string | undefined;
15863
15954
  }, {
15864
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15955
+ type: string;
15865
15956
  name: string;
15866
15957
  required?: boolean | undefined;
15867
15958
  description?: string | undefined;
@@ -15871,8 +15962,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15871
15962
  }, "strip", z.ZodTypeAny, {
15872
15963
  event: string;
15873
15964
  description?: string | undefined;
15874
- payload?: {
15875
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15965
+ payloadSchema?: {
15966
+ type: string;
15876
15967
  name: string;
15877
15968
  required?: boolean | undefined;
15878
15969
  description?: string | undefined;
@@ -15882,8 +15973,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15882
15973
  }, {
15883
15974
  event: string;
15884
15975
  description?: string | undefined;
15885
- payload?: {
15886
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
15976
+ payloadSchema?: {
15977
+ type: string;
15887
15978
  name: string;
15888
15979
  required?: boolean | undefined;
15889
15980
  description?: string | undefined;
@@ -15968,8 +16059,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15968
16059
  emits?: {
15969
16060
  event: string;
15970
16061
  description?: string | undefined;
15971
- payload?: {
15972
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16062
+ payloadSchema?: {
16063
+ type: string;
15973
16064
  name: string;
15974
16065
  required?: boolean | undefined;
15975
16066
  description?: string | undefined;
@@ -16023,7 +16114,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16023
16114
  key: string;
16024
16115
  description?: string | undefined;
16025
16116
  payloadSchema?: {
16026
- type: "string" | "number" | "boolean" | "object" | "array";
16117
+ type: string;
16027
16118
  name: string;
16028
16119
  required?: boolean | undefined;
16029
16120
  }[] | undefined;
@@ -16074,8 +16165,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16074
16165
  emits?: {
16075
16166
  event: string;
16076
16167
  description?: string | undefined;
16077
- payload?: {
16078
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16168
+ payloadSchema?: {
16169
+ type: string;
16079
16170
  name: string;
16080
16171
  required?: boolean | undefined;
16081
16172
  description?: string | undefined;
@@ -16129,7 +16220,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16129
16220
  key: string;
16130
16221
  description?: string | undefined;
16131
16222
  payloadSchema?: {
16132
- type: "string" | "number" | "boolean" | "object" | "array";
16223
+ type: string;
16133
16224
  name: string;
16134
16225
  required?: boolean | undefined;
16135
16226
  }[] | undefined;
@@ -16186,8 +16277,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16186
16277
  emits?: {
16187
16278
  event: string;
16188
16279
  description?: string | undefined;
16189
- payload?: {
16190
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16280
+ payloadSchema?: {
16281
+ type: string;
16191
16282
  name: string;
16192
16283
  required?: boolean | undefined;
16193
16284
  description?: string | undefined;
@@ -16241,7 +16332,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16241
16332
  key: string;
16242
16333
  description?: string | undefined;
16243
16334
  payloadSchema?: {
16244
- type: "string" | "number" | "boolean" | "object" | "array";
16335
+ type: string;
16245
16336
  name: string;
16246
16337
  required?: boolean | undefined;
16247
16338
  }[] | undefined;
@@ -16304,8 +16395,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16304
16395
  emits?: {
16305
16396
  event: string;
16306
16397
  description?: string | undefined;
16307
- payload?: {
16308
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16398
+ payloadSchema?: {
16399
+ type: string;
16309
16400
  name: string;
16310
16401
  required?: boolean | undefined;
16311
16402
  description?: string | undefined;
@@ -16359,7 +16450,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16359
16450
  key: string;
16360
16451
  description?: string | undefined;
16361
16452
  payloadSchema?: {
16362
- type: "string" | "number" | "boolean" | "object" | "array";
16453
+ type: string;
16363
16454
  name: string;
16364
16455
  required?: boolean | undefined;
16365
16456
  }[] | undefined;
@@ -16428,18 +16519,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16428
16519
  description: z.ZodOptional<z.ZodString>;
16429
16520
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
16430
16521
  name: z.ZodString;
16431
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
16522
+ type: z.ZodString;
16432
16523
  required: z.ZodOptional<z.ZodBoolean>;
16433
16524
  description: z.ZodOptional<z.ZodString>;
16434
16525
  entityType: z.ZodOptional<z.ZodString>;
16435
16526
  }, "strip", z.ZodTypeAny, {
16436
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16527
+ type: string;
16437
16528
  name: string;
16438
16529
  required?: boolean | undefined;
16439
16530
  description?: string | undefined;
16440
16531
  entityType?: string | undefined;
16441
16532
  }, {
16442
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16533
+ type: string;
16443
16534
  name: string;
16444
16535
  required?: boolean | undefined;
16445
16536
  description?: string | undefined;
@@ -16455,7 +16546,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16455
16546
  originalEvent: string;
16456
16547
  description?: string | undefined;
16457
16548
  payload?: {
16458
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16549
+ type: string;
16459
16550
  name: string;
16460
16551
  required?: boolean | undefined;
16461
16552
  description?: string | undefined;
@@ -16471,7 +16562,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16471
16562
  originalEvent: string;
16472
16563
  description?: string | undefined;
16473
16564
  payload?: {
16474
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16565
+ type: string;
16475
16566
  name: string;
16476
16567
  required?: boolean | undefined;
16477
16568
  description?: string | undefined;
@@ -16702,8 +16793,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16702
16793
  emits?: {
16703
16794
  event: string;
16704
16795
  description?: string | undefined;
16705
- payload?: {
16706
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16796
+ payloadSchema?: {
16797
+ type: string;
16707
16798
  name: string;
16708
16799
  required?: boolean | undefined;
16709
16800
  description?: string | undefined;
@@ -16757,7 +16848,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16757
16848
  key: string;
16758
16849
  description?: string | undefined;
16759
16850
  payloadSchema?: {
16760
- type: "string" | "number" | "boolean" | "object" | "array";
16851
+ type: string;
16761
16852
  name: string;
16762
16853
  required?: boolean | undefined;
16763
16854
  }[] | undefined;
@@ -16816,8 +16907,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16816
16907
  emits?: {
16817
16908
  event: string;
16818
16909
  description?: string | undefined;
16819
- payload?: {
16820
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
16910
+ payloadSchema?: {
16911
+ type: string;
16821
16912
  name: string;
16822
16913
  required?: boolean | undefined;
16823
16914
  description?: string | undefined;
@@ -16871,7 +16962,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16871
16962
  key: string;
16872
16963
  description?: string | undefined;
16873
16964
  payloadSchema?: {
16874
- type: "string" | "number" | "boolean" | "object" | "array";
16965
+ type: string;
16875
16966
  name: string;
16876
16967
  required?: boolean | undefined;
16877
16968
  }[] | undefined;
@@ -16949,7 +17040,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16949
17040
  originalEvent: string;
16950
17041
  description?: string | undefined;
16951
17042
  payload?: {
16952
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
17043
+ type: string;
16953
17044
  name: string;
16954
17045
  required?: boolean | undefined;
16955
17046
  description?: string | undefined;
@@ -17100,8 +17191,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17100
17191
  emits?: {
17101
17192
  event: string;
17102
17193
  description?: string | undefined;
17103
- payload?: {
17104
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
17194
+ payloadSchema?: {
17195
+ type: string;
17105
17196
  name: string;
17106
17197
  required?: boolean | undefined;
17107
17198
  description?: string | undefined;
@@ -17155,7 +17246,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17155
17246
  key: string;
17156
17247
  description?: string | undefined;
17157
17248
  payloadSchema?: {
17158
- type: "string" | "number" | "boolean" | "object" | "array";
17249
+ type: string;
17159
17250
  name: string;
17160
17251
  required?: boolean | undefined;
17161
17252
  }[] | undefined;
@@ -17214,8 +17305,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17214
17305
  emits?: {
17215
17306
  event: string;
17216
17307
  description?: string | undefined;
17217
- payload?: {
17218
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
17308
+ payloadSchema?: {
17309
+ type: string;
17219
17310
  name: string;
17220
17311
  required?: boolean | undefined;
17221
17312
  description?: string | undefined;
@@ -17269,7 +17360,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17269
17360
  key: string;
17270
17361
  description?: string | undefined;
17271
17362
  payloadSchema?: {
17272
- type: "string" | "number" | "boolean" | "object" | "array";
17363
+ type: string;
17273
17364
  name: string;
17274
17365
  required?: boolean | undefined;
17275
17366
  }[] | undefined;
@@ -17347,7 +17438,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17347
17438
  originalEvent: string;
17348
17439
  description?: string | undefined;
17349
17440
  payload?: {
17350
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
17441
+ type: string;
17351
17442
  name: string;
17352
17443
  required?: boolean | undefined;
17353
17444
  description?: string | undefined;
@@ -18152,14 +18243,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18152
18243
  description: z.ZodOptional<z.ZodString>;
18153
18244
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
18154
18245
  name: z.ZodString;
18155
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
18246
+ type: z.ZodString;
18156
18247
  required: z.ZodOptional<z.ZodBoolean>;
18157
18248
  }, "strip", z.ZodTypeAny, {
18158
- type: "string" | "number" | "boolean" | "object" | "array";
18249
+ type: string;
18159
18250
  name: string;
18160
18251
  required?: boolean | undefined;
18161
18252
  }, {
18162
- type: "string" | "number" | "boolean" | "object" | "array";
18253
+ type: string;
18163
18254
  name: string;
18164
18255
  required?: boolean | undefined;
18165
18256
  }>, "many">>;
@@ -18170,7 +18261,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18170
18261
  key: string;
18171
18262
  description?: string | undefined;
18172
18263
  payloadSchema?: {
18173
- type: "string" | "number" | "boolean" | "object" | "array";
18264
+ type: string;
18174
18265
  name: string;
18175
18266
  required?: boolean | undefined;
18176
18267
  }[] | undefined;
@@ -18181,7 +18272,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18181
18272
  key: string;
18182
18273
  description?: string | undefined;
18183
18274
  payloadSchema?: {
18184
- type: "string" | "number" | "boolean" | "object" | "array";
18275
+ type: string;
18185
18276
  name: string;
18186
18277
  required?: boolean | undefined;
18187
18278
  }[] | undefined;
@@ -18229,7 +18320,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18229
18320
  key: string;
18230
18321
  description?: string | undefined;
18231
18322
  payloadSchema?: {
18232
- type: "string" | "number" | "boolean" | "object" | "array";
18323
+ type: string;
18233
18324
  name: string;
18234
18325
  required?: boolean | undefined;
18235
18326
  }[] | undefined;
@@ -18264,7 +18355,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18264
18355
  key: string;
18265
18356
  description?: string | undefined;
18266
18357
  payloadSchema?: {
18267
- type: "string" | "number" | "boolean" | "object" | "array";
18358
+ type: string;
18268
18359
  name: string;
18269
18360
  required?: boolean | undefined;
18270
18361
  }[] | undefined;
@@ -18329,20 +18420,20 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18329
18420
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
18330
18421
  event: z.ZodString;
18331
18422
  description: z.ZodOptional<z.ZodString>;
18332
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
18423
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
18333
18424
  name: z.ZodString;
18334
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
18425
+ type: z.ZodString;
18335
18426
  required: z.ZodOptional<z.ZodBoolean>;
18336
18427
  description: z.ZodOptional<z.ZodString>;
18337
18428
  entityType: z.ZodOptional<z.ZodString>;
18338
18429
  }, "strip", z.ZodTypeAny, {
18339
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18430
+ type: string;
18340
18431
  name: string;
18341
18432
  required?: boolean | undefined;
18342
18433
  description?: string | undefined;
18343
18434
  entityType?: string | undefined;
18344
18435
  }, {
18345
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18436
+ type: string;
18346
18437
  name: string;
18347
18438
  required?: boolean | undefined;
18348
18439
  description?: string | undefined;
@@ -18352,8 +18443,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18352
18443
  }, "strip", z.ZodTypeAny, {
18353
18444
  event: string;
18354
18445
  description?: string | undefined;
18355
- payload?: {
18356
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18446
+ payloadSchema?: {
18447
+ type: string;
18357
18448
  name: string;
18358
18449
  required?: boolean | undefined;
18359
18450
  description?: string | undefined;
@@ -18363,8 +18454,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18363
18454
  }, {
18364
18455
  event: string;
18365
18456
  description?: string | undefined;
18366
- payload?: {
18367
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18457
+ payloadSchema?: {
18458
+ type: string;
18368
18459
  name: string;
18369
18460
  required?: boolean | undefined;
18370
18461
  description?: string | undefined;
@@ -18449,8 +18540,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18449
18540
  emits?: {
18450
18541
  event: string;
18451
18542
  description?: string | undefined;
18452
- payload?: {
18453
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18543
+ payloadSchema?: {
18544
+ type: string;
18454
18545
  name: string;
18455
18546
  required?: boolean | undefined;
18456
18547
  description?: string | undefined;
@@ -18504,7 +18595,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18504
18595
  key: string;
18505
18596
  description?: string | undefined;
18506
18597
  payloadSchema?: {
18507
- type: "string" | "number" | "boolean" | "object" | "array";
18598
+ type: string;
18508
18599
  name: string;
18509
18600
  required?: boolean | undefined;
18510
18601
  }[] | undefined;
@@ -18555,8 +18646,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18555
18646
  emits?: {
18556
18647
  event: string;
18557
18648
  description?: string | undefined;
18558
- payload?: {
18559
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
18649
+ payloadSchema?: {
18650
+ type: string;
18560
18651
  name: string;
18561
18652
  required?: boolean | undefined;
18562
18653
  description?: string | undefined;
@@ -18610,7 +18701,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18610
18701
  key: string;
18611
18702
  description?: string | undefined;
18612
18703
  payloadSchema?: {
18613
- type: "string" | "number" | "boolean" | "object" | "array";
18704
+ type: string;
18614
18705
  name: string;
18615
18706
  required?: boolean | undefined;
18616
18707
  }[] | undefined;
@@ -18830,14 +18921,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18830
18921
  description: z.ZodOptional<z.ZodString>;
18831
18922
  payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
18832
18923
  name: z.ZodString;
18833
- type: z.ZodEnum<["string", "number", "boolean", "object", "array"]>;
18924
+ type: z.ZodString;
18834
18925
  required: z.ZodOptional<z.ZodBoolean>;
18835
18926
  }, "strip", z.ZodTypeAny, {
18836
- type: "string" | "number" | "boolean" | "object" | "array";
18927
+ type: string;
18837
18928
  name: string;
18838
18929
  required?: boolean | undefined;
18839
18930
  }, {
18840
- type: "string" | "number" | "boolean" | "object" | "array";
18931
+ type: string;
18841
18932
  name: string;
18842
18933
  required?: boolean | undefined;
18843
18934
  }>, "many">>;
@@ -18848,7 +18939,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18848
18939
  key: string;
18849
18940
  description?: string | undefined;
18850
18941
  payloadSchema?: {
18851
- type: "string" | "number" | "boolean" | "object" | "array";
18942
+ type: string;
18852
18943
  name: string;
18853
18944
  required?: boolean | undefined;
18854
18945
  }[] | undefined;
@@ -18859,7 +18950,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18859
18950
  key: string;
18860
18951
  description?: string | undefined;
18861
18952
  payloadSchema?: {
18862
- type: "string" | "number" | "boolean" | "object" | "array";
18953
+ type: string;
18863
18954
  name: string;
18864
18955
  required?: boolean | undefined;
18865
18956
  }[] | undefined;
@@ -18907,7 +18998,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18907
18998
  key: string;
18908
18999
  description?: string | undefined;
18909
19000
  payloadSchema?: {
18910
- type: "string" | "number" | "boolean" | "object" | "array";
19001
+ type: string;
18911
19002
  name: string;
18912
19003
  required?: boolean | undefined;
18913
19004
  }[] | undefined;
@@ -18942,7 +19033,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18942
19033
  key: string;
18943
19034
  description?: string | undefined;
18944
19035
  payloadSchema?: {
18945
- type: "string" | "number" | "boolean" | "object" | "array";
19036
+ type: string;
18946
19037
  name: string;
18947
19038
  required?: boolean | undefined;
18948
19039
  }[] | undefined;
@@ -19007,20 +19098,20 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19007
19098
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
19008
19099
  event: z.ZodString;
19009
19100
  description: z.ZodOptional<z.ZodString>;
19010
- payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
19101
+ payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
19011
19102
  name: z.ZodString;
19012
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
19103
+ type: z.ZodString;
19013
19104
  required: z.ZodOptional<z.ZodBoolean>;
19014
19105
  description: z.ZodOptional<z.ZodString>;
19015
19106
  entityType: z.ZodOptional<z.ZodString>;
19016
19107
  }, "strip", z.ZodTypeAny, {
19017
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19108
+ type: string;
19018
19109
  name: string;
19019
19110
  required?: boolean | undefined;
19020
19111
  description?: string | undefined;
19021
19112
  entityType?: string | undefined;
19022
19113
  }, {
19023
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19114
+ type: string;
19024
19115
  name: string;
19025
19116
  required?: boolean | undefined;
19026
19117
  description?: string | undefined;
@@ -19030,8 +19121,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19030
19121
  }, "strip", z.ZodTypeAny, {
19031
19122
  event: string;
19032
19123
  description?: string | undefined;
19033
- payload?: {
19034
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19124
+ payloadSchema?: {
19125
+ type: string;
19035
19126
  name: string;
19036
19127
  required?: boolean | undefined;
19037
19128
  description?: string | undefined;
@@ -19041,8 +19132,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19041
19132
  }, {
19042
19133
  event: string;
19043
19134
  description?: string | undefined;
19044
- payload?: {
19045
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19135
+ payloadSchema?: {
19136
+ type: string;
19046
19137
  name: string;
19047
19138
  required?: boolean | undefined;
19048
19139
  description?: string | undefined;
@@ -19127,8 +19218,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19127
19218
  emits?: {
19128
19219
  event: string;
19129
19220
  description?: string | undefined;
19130
- payload?: {
19131
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19221
+ payloadSchema?: {
19222
+ type: string;
19132
19223
  name: string;
19133
19224
  required?: boolean | undefined;
19134
19225
  description?: string | undefined;
@@ -19182,7 +19273,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19182
19273
  key: string;
19183
19274
  description?: string | undefined;
19184
19275
  payloadSchema?: {
19185
- type: "string" | "number" | "boolean" | "object" | "array";
19276
+ type: string;
19186
19277
  name: string;
19187
19278
  required?: boolean | undefined;
19188
19279
  }[] | undefined;
@@ -19233,8 +19324,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19233
19324
  emits?: {
19234
19325
  event: string;
19235
19326
  description?: string | undefined;
19236
- payload?: {
19237
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19327
+ payloadSchema?: {
19328
+ type: string;
19238
19329
  name: string;
19239
19330
  required?: boolean | undefined;
19240
19331
  description?: string | undefined;
@@ -19288,7 +19379,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19288
19379
  key: string;
19289
19380
  description?: string | undefined;
19290
19381
  payloadSchema?: {
19291
- type: "string" | "number" | "boolean" | "object" | "array";
19382
+ type: string;
19292
19383
  name: string;
19293
19384
  required?: boolean | undefined;
19294
19385
  }[] | undefined;
@@ -19345,8 +19436,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19345
19436
  emits?: {
19346
19437
  event: string;
19347
19438
  description?: string | undefined;
19348
- payload?: {
19349
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19439
+ payloadSchema?: {
19440
+ type: string;
19350
19441
  name: string;
19351
19442
  required?: boolean | undefined;
19352
19443
  description?: string | undefined;
@@ -19400,7 +19491,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19400
19491
  key: string;
19401
19492
  description?: string | undefined;
19402
19493
  payloadSchema?: {
19403
- type: "string" | "number" | "boolean" | "object" | "array";
19494
+ type: string;
19404
19495
  name: string;
19405
19496
  required?: boolean | undefined;
19406
19497
  }[] | undefined;
@@ -19463,8 +19554,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19463
19554
  emits?: {
19464
19555
  event: string;
19465
19556
  description?: string | undefined;
19466
- payload?: {
19467
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19557
+ payloadSchema?: {
19558
+ type: string;
19468
19559
  name: string;
19469
19560
  required?: boolean | undefined;
19470
19561
  description?: string | undefined;
@@ -19518,7 +19609,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19518
19609
  key: string;
19519
19610
  description?: string | undefined;
19520
19611
  payloadSchema?: {
19521
- type: "string" | "number" | "boolean" | "object" | "array";
19612
+ type: string;
19522
19613
  name: string;
19523
19614
  required?: boolean | undefined;
19524
19615
  }[] | undefined;
@@ -19587,18 +19678,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19587
19678
  description: z.ZodOptional<z.ZodString>;
19588
19679
  payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
19589
19680
  name: z.ZodString;
19590
- type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
19681
+ type: z.ZodString;
19591
19682
  required: z.ZodOptional<z.ZodBoolean>;
19592
19683
  description: z.ZodOptional<z.ZodString>;
19593
19684
  entityType: z.ZodOptional<z.ZodString>;
19594
19685
  }, "strip", z.ZodTypeAny, {
19595
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19686
+ type: string;
19596
19687
  name: string;
19597
19688
  required?: boolean | undefined;
19598
19689
  description?: string | undefined;
19599
19690
  entityType?: string | undefined;
19600
19691
  }, {
19601
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19692
+ type: string;
19602
19693
  name: string;
19603
19694
  required?: boolean | undefined;
19604
19695
  description?: string | undefined;
@@ -19614,7 +19705,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19614
19705
  originalEvent: string;
19615
19706
  description?: string | undefined;
19616
19707
  payload?: {
19617
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19708
+ type: string;
19618
19709
  name: string;
19619
19710
  required?: boolean | undefined;
19620
19711
  description?: string | undefined;
@@ -19630,7 +19721,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19630
19721
  originalEvent: string;
19631
19722
  description?: string | undefined;
19632
19723
  payload?: {
19633
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19724
+ type: string;
19634
19725
  name: string;
19635
19726
  required?: boolean | undefined;
19636
19727
  description?: string | undefined;
@@ -19861,8 +19952,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19861
19952
  emits?: {
19862
19953
  event: string;
19863
19954
  description?: string | undefined;
19864
- payload?: {
19865
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
19955
+ payloadSchema?: {
19956
+ type: string;
19866
19957
  name: string;
19867
19958
  required?: boolean | undefined;
19868
19959
  description?: string | undefined;
@@ -19916,7 +20007,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19916
20007
  key: string;
19917
20008
  description?: string | undefined;
19918
20009
  payloadSchema?: {
19919
- type: "string" | "number" | "boolean" | "object" | "array";
20010
+ type: string;
19920
20011
  name: string;
19921
20012
  required?: boolean | undefined;
19922
20013
  }[] | undefined;
@@ -19975,8 +20066,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19975
20066
  emits?: {
19976
20067
  event: string;
19977
20068
  description?: string | undefined;
19978
- payload?: {
19979
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20069
+ payloadSchema?: {
20070
+ type: string;
19980
20071
  name: string;
19981
20072
  required?: boolean | undefined;
19982
20073
  description?: string | undefined;
@@ -20030,7 +20121,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20030
20121
  key: string;
20031
20122
  description?: string | undefined;
20032
20123
  payloadSchema?: {
20033
- type: "string" | "number" | "boolean" | "object" | "array";
20124
+ type: string;
20034
20125
  name: string;
20035
20126
  required?: boolean | undefined;
20036
20127
  }[] | undefined;
@@ -20108,7 +20199,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20108
20199
  originalEvent: string;
20109
20200
  description?: string | undefined;
20110
20201
  payload?: {
20111
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20202
+ type: string;
20112
20203
  name: string;
20113
20204
  required?: boolean | undefined;
20114
20205
  description?: string | undefined;
@@ -20259,8 +20350,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20259
20350
  emits?: {
20260
20351
  event: string;
20261
20352
  description?: string | undefined;
20262
- payload?: {
20263
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20353
+ payloadSchema?: {
20354
+ type: string;
20264
20355
  name: string;
20265
20356
  required?: boolean | undefined;
20266
20357
  description?: string | undefined;
@@ -20314,7 +20405,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20314
20405
  key: string;
20315
20406
  description?: string | undefined;
20316
20407
  payloadSchema?: {
20317
- type: "string" | "number" | "boolean" | "object" | "array";
20408
+ type: string;
20318
20409
  name: string;
20319
20410
  required?: boolean | undefined;
20320
20411
  }[] | undefined;
@@ -20373,8 +20464,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20373
20464
  emits?: {
20374
20465
  event: string;
20375
20466
  description?: string | undefined;
20376
- payload?: {
20377
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20467
+ payloadSchema?: {
20468
+ type: string;
20378
20469
  name: string;
20379
20470
  required?: boolean | undefined;
20380
20471
  description?: string | undefined;
@@ -20428,7 +20519,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20428
20519
  key: string;
20429
20520
  description?: string | undefined;
20430
20521
  payloadSchema?: {
20431
- type: "string" | "number" | "boolean" | "object" | "array";
20522
+ type: string;
20432
20523
  name: string;
20433
20524
  required?: boolean | undefined;
20434
20525
  }[] | undefined;
@@ -20506,7 +20597,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20506
20597
  originalEvent: string;
20507
20598
  description?: string | undefined;
20508
20599
  payload?: {
20509
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20600
+ type: string;
20510
20601
  name: string;
20511
20602
  required?: boolean | undefined;
20512
20603
  description?: string | undefined;
@@ -20835,8 +20926,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20835
20926
  emits?: {
20836
20927
  event: string;
20837
20928
  description?: string | undefined;
20838
- payload?: {
20839
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
20929
+ payloadSchema?: {
20930
+ type: string;
20840
20931
  name: string;
20841
20932
  required?: boolean | undefined;
20842
20933
  description?: string | undefined;
@@ -20890,7 +20981,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20890
20981
  key: string;
20891
20982
  description?: string | undefined;
20892
20983
  payloadSchema?: {
20893
- type: "string" | "number" | "boolean" | "object" | "array";
20984
+ type: string;
20894
20985
  name: string;
20895
20986
  required?: boolean | undefined;
20896
20987
  }[] | undefined;
@@ -20949,8 +21040,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20949
21040
  emits?: {
20950
21041
  event: string;
20951
21042
  description?: string | undefined;
20952
- payload?: {
20953
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21043
+ payloadSchema?: {
21044
+ type: string;
20954
21045
  name: string;
20955
21046
  required?: boolean | undefined;
20956
21047
  description?: string | undefined;
@@ -21004,7 +21095,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21004
21095
  key: string;
21005
21096
  description?: string | undefined;
21006
21097
  payloadSchema?: {
21007
- type: "string" | "number" | "boolean" | "object" | "array";
21098
+ type: string;
21008
21099
  name: string;
21009
21100
  required?: boolean | undefined;
21010
21101
  }[] | undefined;
@@ -21082,7 +21173,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21082
21173
  originalEvent: string;
21083
21174
  description?: string | undefined;
21084
21175
  payload?: {
21085
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21176
+ type: string;
21086
21177
  name: string;
21087
21178
  required?: boolean | undefined;
21088
21179
  description?: string | undefined;
@@ -21322,8 +21413,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21322
21413
  emits?: {
21323
21414
  event: string;
21324
21415
  description?: string | undefined;
21325
- payload?: {
21326
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21416
+ payloadSchema?: {
21417
+ type: string;
21327
21418
  name: string;
21328
21419
  required?: boolean | undefined;
21329
21420
  description?: string | undefined;
@@ -21377,7 +21468,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21377
21468
  key: string;
21378
21469
  description?: string | undefined;
21379
21470
  payloadSchema?: {
21380
- type: "string" | "number" | "boolean" | "object" | "array";
21471
+ type: string;
21381
21472
  name: string;
21382
21473
  required?: boolean | undefined;
21383
21474
  }[] | undefined;
@@ -21436,8 +21527,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21436
21527
  emits?: {
21437
21528
  event: string;
21438
21529
  description?: string | undefined;
21439
- payload?: {
21440
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21530
+ payloadSchema?: {
21531
+ type: string;
21441
21532
  name: string;
21442
21533
  required?: boolean | undefined;
21443
21534
  description?: string | undefined;
@@ -21491,7 +21582,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21491
21582
  key: string;
21492
21583
  description?: string | undefined;
21493
21584
  payloadSchema?: {
21494
- type: "string" | "number" | "boolean" | "object" | "array";
21585
+ type: string;
21495
21586
  name: string;
21496
21587
  required?: boolean | undefined;
21497
21588
  }[] | undefined;
@@ -21569,7 +21660,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21569
21660
  originalEvent: string;
21570
21661
  description?: string | undefined;
21571
21662
  payload?: {
21572
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21663
+ type: string;
21573
21664
  name: string;
21574
21665
  required?: boolean | undefined;
21575
21666
  description?: string | undefined;
@@ -21856,8 +21947,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21856
21947
  emits?: {
21857
21948
  event: string;
21858
21949
  description?: string | undefined;
21859
- payload?: {
21860
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
21950
+ payloadSchema?: {
21951
+ type: string;
21861
21952
  name: string;
21862
21953
  required?: boolean | undefined;
21863
21954
  description?: string | undefined;
@@ -21911,7 +22002,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21911
22002
  key: string;
21912
22003
  description?: string | undefined;
21913
22004
  payloadSchema?: {
21914
- type: "string" | "number" | "boolean" | "object" | "array";
22005
+ type: string;
21915
22006
  name: string;
21916
22007
  required?: boolean | undefined;
21917
22008
  }[] | undefined;
@@ -21970,8 +22061,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21970
22061
  emits?: {
21971
22062
  event: string;
21972
22063
  description?: string | undefined;
21973
- payload?: {
21974
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22064
+ payloadSchema?: {
22065
+ type: string;
21975
22066
  name: string;
21976
22067
  required?: boolean | undefined;
21977
22068
  description?: string | undefined;
@@ -22025,7 +22116,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22025
22116
  key: string;
22026
22117
  description?: string | undefined;
22027
22118
  payloadSchema?: {
22028
- type: "string" | "number" | "boolean" | "object" | "array";
22119
+ type: string;
22029
22120
  name: string;
22030
22121
  required?: boolean | undefined;
22031
22122
  }[] | undefined;
@@ -22103,7 +22194,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22103
22194
  originalEvent: string;
22104
22195
  description?: string | undefined;
22105
22196
  payload?: {
22106
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22197
+ type: string;
22107
22198
  name: string;
22108
22199
  required?: boolean | undefined;
22109
22200
  description?: string | undefined;
@@ -22343,8 +22434,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22343
22434
  emits?: {
22344
22435
  event: string;
22345
22436
  description?: string | undefined;
22346
- payload?: {
22347
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22437
+ payloadSchema?: {
22438
+ type: string;
22348
22439
  name: string;
22349
22440
  required?: boolean | undefined;
22350
22441
  description?: string | undefined;
@@ -22398,7 +22489,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22398
22489
  key: string;
22399
22490
  description?: string | undefined;
22400
22491
  payloadSchema?: {
22401
- type: "string" | "number" | "boolean" | "object" | "array";
22492
+ type: string;
22402
22493
  name: string;
22403
22494
  required?: boolean | undefined;
22404
22495
  }[] | undefined;
@@ -22457,8 +22548,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22457
22548
  emits?: {
22458
22549
  event: string;
22459
22550
  description?: string | undefined;
22460
- payload?: {
22461
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22551
+ payloadSchema?: {
22552
+ type: string;
22462
22553
  name: string;
22463
22554
  required?: boolean | undefined;
22464
22555
  description?: string | undefined;
@@ -22512,7 +22603,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22512
22603
  key: string;
22513
22604
  description?: string | undefined;
22514
22605
  payloadSchema?: {
22515
- type: "string" | "number" | "boolean" | "object" | "array";
22606
+ type: string;
22516
22607
  name: string;
22517
22608
  required?: boolean | undefined;
22518
22609
  }[] | undefined;
@@ -22590,7 +22681,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22590
22681
  originalEvent: string;
22591
22682
  description?: string | undefined;
22592
22683
  payload?: {
22593
- type: "string" | "number" | "boolean" | "object" | "array" | "entity";
22684
+ type: string;
22594
22685
  name: string;
22595
22686
  required?: boolean | undefined;
22596
22687
  description?: string | undefined;