@almadar/core 6.0.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.
- package/dist/builders.d.ts +2 -2
- package/dist/builders.js +23 -5
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-BLX6CbU3.d.ts → compose-behaviors-Bb1eCS7J.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +23 -5
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +26 -6
- package/dist/index.js.map +1 -1
- package/dist/{schema-DnLtWO4e.d.ts → schema-BmRZkOwH.d.ts} +432 -343
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +23 -5
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1542,19 +1542,26 @@ declare const StateSchema: z.ZodObject<{
|
|
|
1542
1542
|
*/
|
|
1543
1543
|
interface PayloadField {
|
|
1544
1544
|
name: string;
|
|
1545
|
-
|
|
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.
|
|
1557
|
+
type: z.ZodString;
|
|
1551
1558
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1552
1559
|
}, "strip", z.ZodTypeAny, {
|
|
1553
|
-
type:
|
|
1560
|
+
type: string;
|
|
1554
1561
|
name: string;
|
|
1555
1562
|
required?: boolean | undefined;
|
|
1556
1563
|
}, {
|
|
1557
|
-
type:
|
|
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.
|
|
1591
|
+
type: z.ZodString;
|
|
1585
1592
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1586
1593
|
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
type:
|
|
1594
|
+
type: string;
|
|
1588
1595
|
name: string;
|
|
1589
1596
|
required?: boolean | undefined;
|
|
1590
1597
|
}, {
|
|
1591
|
-
type:
|
|
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:
|
|
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:
|
|
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.
|
|
1754
|
+
type: z.ZodString;
|
|
1748
1755
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1749
1756
|
}, "strip", z.ZodTypeAny, {
|
|
1750
|
-
type:
|
|
1757
|
+
type: string;
|
|
1751
1758
|
name: string;
|
|
1752
1759
|
required?: boolean | undefined;
|
|
1753
1760
|
}, {
|
|
1754
|
-
type:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
-
|
|
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:
|
|
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:
|
|
2141
|
+
type: string;
|
|
2125
2142
|
name: string;
|
|
2126
2143
|
required?: boolean | undefined;
|
|
2127
2144
|
description?: string | undefined;
|
|
@@ -2148,22 +2165,39 @@ interface TraitEventContract {
|
|
|
2148
2165
|
scope?: EventScope;
|
|
2149
2166
|
}
|
|
2150
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
|
+
*/
|
|
2151
2175
|
event: z.ZodString;
|
|
2152
2176
|
description: z.ZodOptional<z.ZodString>;
|
|
2153
2177
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2154
2178
|
name: z.ZodString;
|
|
2155
|
-
|
|
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;
|
|
2156
2190
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2157
2191
|
description: z.ZodOptional<z.ZodString>;
|
|
2158
2192
|
entityType: z.ZodOptional<z.ZodString>;
|
|
2159
2193
|
}, "strip", z.ZodTypeAny, {
|
|
2160
|
-
type:
|
|
2194
|
+
type: string;
|
|
2161
2195
|
name: string;
|
|
2162
2196
|
required?: boolean | undefined;
|
|
2163
2197
|
description?: string | undefined;
|
|
2164
2198
|
entityType?: string | undefined;
|
|
2165
2199
|
}, {
|
|
2166
|
-
type:
|
|
2200
|
+
type: string;
|
|
2167
2201
|
name: string;
|
|
2168
2202
|
required?: boolean | undefined;
|
|
2169
2203
|
description?: string | undefined;
|
|
@@ -2174,7 +2208,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
2174
2208
|
event: string;
|
|
2175
2209
|
description?: string | undefined;
|
|
2176
2210
|
payloadSchema?: {
|
|
2177
|
-
type:
|
|
2211
|
+
type: string;
|
|
2178
2212
|
name: string;
|
|
2179
2213
|
required?: boolean | undefined;
|
|
2180
2214
|
description?: string | undefined;
|
|
@@ -2185,7 +2219,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
2185
2219
|
event: string;
|
|
2186
2220
|
description?: string | undefined;
|
|
2187
2221
|
payloadSchema?: {
|
|
2188
|
-
type:
|
|
2222
|
+
type: string;
|
|
2189
2223
|
name: string;
|
|
2190
2224
|
required?: boolean | undefined;
|
|
2191
2225
|
description?: string | undefined;
|
|
@@ -2680,14 +2714,14 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2680
2714
|
description: z.ZodOptional<z.ZodString>;
|
|
2681
2715
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2682
2716
|
name: z.ZodString;
|
|
2683
|
-
type: z.
|
|
2717
|
+
type: z.ZodString;
|
|
2684
2718
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2685
2719
|
}, "strip", z.ZodTypeAny, {
|
|
2686
|
-
type:
|
|
2720
|
+
type: string;
|
|
2687
2721
|
name: string;
|
|
2688
2722
|
required?: boolean | undefined;
|
|
2689
2723
|
}, {
|
|
2690
|
-
type:
|
|
2724
|
+
type: string;
|
|
2691
2725
|
name: string;
|
|
2692
2726
|
required?: boolean | undefined;
|
|
2693
2727
|
}>, "many">>;
|
|
@@ -2698,7 +2732,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2698
2732
|
key: string;
|
|
2699
2733
|
description?: string | undefined;
|
|
2700
2734
|
payloadSchema?: {
|
|
2701
|
-
type:
|
|
2735
|
+
type: string;
|
|
2702
2736
|
name: string;
|
|
2703
2737
|
required?: boolean | undefined;
|
|
2704
2738
|
}[] | undefined;
|
|
@@ -2709,7 +2743,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2709
2743
|
key: string;
|
|
2710
2744
|
description?: string | undefined;
|
|
2711
2745
|
payloadSchema?: {
|
|
2712
|
-
type:
|
|
2746
|
+
type: string;
|
|
2713
2747
|
name: string;
|
|
2714
2748
|
required?: boolean | undefined;
|
|
2715
2749
|
}[] | undefined;
|
|
@@ -2757,7 +2791,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2757
2791
|
key: string;
|
|
2758
2792
|
description?: string | undefined;
|
|
2759
2793
|
payloadSchema?: {
|
|
2760
|
-
type:
|
|
2794
|
+
type: string;
|
|
2761
2795
|
name: string;
|
|
2762
2796
|
required?: boolean | undefined;
|
|
2763
2797
|
}[] | undefined;
|
|
@@ -2792,7 +2826,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2792
2826
|
key: string;
|
|
2793
2827
|
description?: string | undefined;
|
|
2794
2828
|
payloadSchema?: {
|
|
2795
|
-
type:
|
|
2829
|
+
type: string;
|
|
2796
2830
|
name: string;
|
|
2797
2831
|
required?: boolean | undefined;
|
|
2798
2832
|
}[] | undefined;
|
|
@@ -2855,22 +2889,39 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2855
2889
|
emits?: string[] | undefined;
|
|
2856
2890
|
}>, "many">>;
|
|
2857
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
|
+
*/
|
|
2858
2899
|
event: z.ZodString;
|
|
2859
2900
|
description: z.ZodOptional<z.ZodString>;
|
|
2860
2901
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2861
2902
|
name: z.ZodString;
|
|
2862
|
-
|
|
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;
|
|
2863
2914
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2864
2915
|
description: z.ZodOptional<z.ZodString>;
|
|
2865
2916
|
entityType: z.ZodOptional<z.ZodString>;
|
|
2866
2917
|
}, "strip", z.ZodTypeAny, {
|
|
2867
|
-
type:
|
|
2918
|
+
type: string;
|
|
2868
2919
|
name: string;
|
|
2869
2920
|
required?: boolean | undefined;
|
|
2870
2921
|
description?: string | undefined;
|
|
2871
2922
|
entityType?: string | undefined;
|
|
2872
2923
|
}, {
|
|
2873
|
-
type:
|
|
2924
|
+
type: string;
|
|
2874
2925
|
name: string;
|
|
2875
2926
|
required?: boolean | undefined;
|
|
2876
2927
|
description?: string | undefined;
|
|
@@ -2881,7 +2932,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2881
2932
|
event: string;
|
|
2882
2933
|
description?: string | undefined;
|
|
2883
2934
|
payloadSchema?: {
|
|
2884
|
-
type:
|
|
2935
|
+
type: string;
|
|
2885
2936
|
name: string;
|
|
2886
2937
|
required?: boolean | undefined;
|
|
2887
2938
|
description?: string | undefined;
|
|
@@ -2892,7 +2943,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2892
2943
|
event: string;
|
|
2893
2944
|
description?: string | undefined;
|
|
2894
2945
|
payloadSchema?: {
|
|
2895
|
-
type:
|
|
2946
|
+
type: string;
|
|
2896
2947
|
name: string;
|
|
2897
2948
|
required?: boolean | undefined;
|
|
2898
2949
|
description?: string | undefined;
|
|
@@ -2978,7 +3029,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2978
3029
|
event: string;
|
|
2979
3030
|
description?: string | undefined;
|
|
2980
3031
|
payloadSchema?: {
|
|
2981
|
-
type:
|
|
3032
|
+
type: string;
|
|
2982
3033
|
name: string;
|
|
2983
3034
|
required?: boolean | undefined;
|
|
2984
3035
|
description?: string | undefined;
|
|
@@ -3032,7 +3083,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3032
3083
|
key: string;
|
|
3033
3084
|
description?: string | undefined;
|
|
3034
3085
|
payloadSchema?: {
|
|
3035
|
-
type:
|
|
3086
|
+
type: string;
|
|
3036
3087
|
name: string;
|
|
3037
3088
|
required?: boolean | undefined;
|
|
3038
3089
|
}[] | undefined;
|
|
@@ -3084,7 +3135,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3084
3135
|
event: string;
|
|
3085
3136
|
description?: string | undefined;
|
|
3086
3137
|
payloadSchema?: {
|
|
3087
|
-
type:
|
|
3138
|
+
type: string;
|
|
3088
3139
|
name: string;
|
|
3089
3140
|
required?: boolean | undefined;
|
|
3090
3141
|
description?: string | undefined;
|
|
@@ -3138,7 +3189,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3138
3189
|
key: string;
|
|
3139
3190
|
description?: string | undefined;
|
|
3140
3191
|
payloadSchema?: {
|
|
3141
|
-
type:
|
|
3192
|
+
type: string;
|
|
3142
3193
|
name: string;
|
|
3143
3194
|
required?: boolean | undefined;
|
|
3144
3195
|
}[] | undefined;
|
|
@@ -3309,14 +3360,14 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3309
3360
|
description: z.ZodOptional<z.ZodString>;
|
|
3310
3361
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3311
3362
|
name: z.ZodString;
|
|
3312
|
-
type: z.
|
|
3363
|
+
type: z.ZodString;
|
|
3313
3364
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3314
3365
|
}, "strip", z.ZodTypeAny, {
|
|
3315
|
-
type:
|
|
3366
|
+
type: string;
|
|
3316
3367
|
name: string;
|
|
3317
3368
|
required?: boolean | undefined;
|
|
3318
3369
|
}, {
|
|
3319
|
-
type:
|
|
3370
|
+
type: string;
|
|
3320
3371
|
name: string;
|
|
3321
3372
|
required?: boolean | undefined;
|
|
3322
3373
|
}>, "many">>;
|
|
@@ -3327,7 +3378,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3327
3378
|
key: string;
|
|
3328
3379
|
description?: string | undefined;
|
|
3329
3380
|
payloadSchema?: {
|
|
3330
|
-
type:
|
|
3381
|
+
type: string;
|
|
3331
3382
|
name: string;
|
|
3332
3383
|
required?: boolean | undefined;
|
|
3333
3384
|
}[] | undefined;
|
|
@@ -3338,7 +3389,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3338
3389
|
key: string;
|
|
3339
3390
|
description?: string | undefined;
|
|
3340
3391
|
payloadSchema?: {
|
|
3341
|
-
type:
|
|
3392
|
+
type: string;
|
|
3342
3393
|
name: string;
|
|
3343
3394
|
required?: boolean | undefined;
|
|
3344
3395
|
}[] | undefined;
|
|
@@ -3386,7 +3437,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3386
3437
|
key: string;
|
|
3387
3438
|
description?: string | undefined;
|
|
3388
3439
|
payloadSchema?: {
|
|
3389
|
-
type:
|
|
3440
|
+
type: string;
|
|
3390
3441
|
name: string;
|
|
3391
3442
|
required?: boolean | undefined;
|
|
3392
3443
|
}[] | undefined;
|
|
@@ -3421,7 +3472,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3421
3472
|
key: string;
|
|
3422
3473
|
description?: string | undefined;
|
|
3423
3474
|
payloadSchema?: {
|
|
3424
|
-
type:
|
|
3475
|
+
type: string;
|
|
3425
3476
|
name: string;
|
|
3426
3477
|
required?: boolean | undefined;
|
|
3427
3478
|
}[] | undefined;
|
|
@@ -3484,22 +3535,39 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3484
3535
|
emits?: string[] | undefined;
|
|
3485
3536
|
}>, "many">>;
|
|
3486
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
|
+
*/
|
|
3487
3545
|
event: z.ZodString;
|
|
3488
3546
|
description: z.ZodOptional<z.ZodString>;
|
|
3489
3547
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3490
3548
|
name: z.ZodString;
|
|
3491
|
-
|
|
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;
|
|
3492
3560
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3493
3561
|
description: z.ZodOptional<z.ZodString>;
|
|
3494
3562
|
entityType: z.ZodOptional<z.ZodString>;
|
|
3495
3563
|
}, "strip", z.ZodTypeAny, {
|
|
3496
|
-
type:
|
|
3564
|
+
type: string;
|
|
3497
3565
|
name: string;
|
|
3498
3566
|
required?: boolean | undefined;
|
|
3499
3567
|
description?: string | undefined;
|
|
3500
3568
|
entityType?: string | undefined;
|
|
3501
3569
|
}, {
|
|
3502
|
-
type:
|
|
3570
|
+
type: string;
|
|
3503
3571
|
name: string;
|
|
3504
3572
|
required?: boolean | undefined;
|
|
3505
3573
|
description?: string | undefined;
|
|
@@ -3510,7 +3578,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3510
3578
|
event: string;
|
|
3511
3579
|
description?: string | undefined;
|
|
3512
3580
|
payloadSchema?: {
|
|
3513
|
-
type:
|
|
3581
|
+
type: string;
|
|
3514
3582
|
name: string;
|
|
3515
3583
|
required?: boolean | undefined;
|
|
3516
3584
|
description?: string | undefined;
|
|
@@ -3521,7 +3589,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3521
3589
|
event: string;
|
|
3522
3590
|
description?: string | undefined;
|
|
3523
3591
|
payloadSchema?: {
|
|
3524
|
-
type:
|
|
3592
|
+
type: string;
|
|
3525
3593
|
name: string;
|
|
3526
3594
|
required?: boolean | undefined;
|
|
3527
3595
|
description?: string | undefined;
|
|
@@ -3607,7 +3675,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3607
3675
|
event: string;
|
|
3608
3676
|
description?: string | undefined;
|
|
3609
3677
|
payloadSchema?: {
|
|
3610
|
-
type:
|
|
3678
|
+
type: string;
|
|
3611
3679
|
name: string;
|
|
3612
3680
|
required?: boolean | undefined;
|
|
3613
3681
|
description?: string | undefined;
|
|
@@ -3661,7 +3729,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3661
3729
|
key: string;
|
|
3662
3730
|
description?: string | undefined;
|
|
3663
3731
|
payloadSchema?: {
|
|
3664
|
-
type:
|
|
3732
|
+
type: string;
|
|
3665
3733
|
name: string;
|
|
3666
3734
|
required?: boolean | undefined;
|
|
3667
3735
|
}[] | undefined;
|
|
@@ -3713,7 +3781,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3713
3781
|
event: string;
|
|
3714
3782
|
description?: string | undefined;
|
|
3715
3783
|
payloadSchema?: {
|
|
3716
|
-
type:
|
|
3784
|
+
type: string;
|
|
3717
3785
|
name: string;
|
|
3718
3786
|
required?: boolean | undefined;
|
|
3719
3787
|
description?: string | undefined;
|
|
@@ -3767,7 +3835,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3767
3835
|
key: string;
|
|
3768
3836
|
description?: string | undefined;
|
|
3769
3837
|
payloadSchema?: {
|
|
3770
|
-
type:
|
|
3838
|
+
type: string;
|
|
3771
3839
|
name: string;
|
|
3772
3840
|
required?: boolean | undefined;
|
|
3773
3841
|
}[] | undefined;
|
|
@@ -4008,14 +4076,14 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4008
4076
|
description: z.ZodOptional<z.ZodString>;
|
|
4009
4077
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4010
4078
|
name: z.ZodString;
|
|
4011
|
-
type: z.
|
|
4079
|
+
type: z.ZodString;
|
|
4012
4080
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4013
4081
|
}, "strip", z.ZodTypeAny, {
|
|
4014
|
-
type:
|
|
4082
|
+
type: string;
|
|
4015
4083
|
name: string;
|
|
4016
4084
|
required?: boolean | undefined;
|
|
4017
4085
|
}, {
|
|
4018
|
-
type:
|
|
4086
|
+
type: string;
|
|
4019
4087
|
name: string;
|
|
4020
4088
|
required?: boolean | undefined;
|
|
4021
4089
|
}>, "many">>;
|
|
@@ -4026,7 +4094,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4026
4094
|
key: string;
|
|
4027
4095
|
description?: string | undefined;
|
|
4028
4096
|
payloadSchema?: {
|
|
4029
|
-
type:
|
|
4097
|
+
type: string;
|
|
4030
4098
|
name: string;
|
|
4031
4099
|
required?: boolean | undefined;
|
|
4032
4100
|
}[] | undefined;
|
|
@@ -4037,7 +4105,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4037
4105
|
key: string;
|
|
4038
4106
|
description?: string | undefined;
|
|
4039
4107
|
payloadSchema?: {
|
|
4040
|
-
type:
|
|
4108
|
+
type: string;
|
|
4041
4109
|
name: string;
|
|
4042
4110
|
required?: boolean | undefined;
|
|
4043
4111
|
}[] | undefined;
|
|
@@ -4085,7 +4153,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4085
4153
|
key: string;
|
|
4086
4154
|
description?: string | undefined;
|
|
4087
4155
|
payloadSchema?: {
|
|
4088
|
-
type:
|
|
4156
|
+
type: string;
|
|
4089
4157
|
name: string;
|
|
4090
4158
|
required?: boolean | undefined;
|
|
4091
4159
|
}[] | undefined;
|
|
@@ -4120,7 +4188,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4120
4188
|
key: string;
|
|
4121
4189
|
description?: string | undefined;
|
|
4122
4190
|
payloadSchema?: {
|
|
4123
|
-
type:
|
|
4191
|
+
type: string;
|
|
4124
4192
|
name: string;
|
|
4125
4193
|
required?: boolean | undefined;
|
|
4126
4194
|
}[] | undefined;
|
|
@@ -4183,22 +4251,39 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4183
4251
|
emits?: string[] | undefined;
|
|
4184
4252
|
}>, "many">>;
|
|
4185
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
|
+
*/
|
|
4186
4261
|
event: z.ZodString;
|
|
4187
4262
|
description: z.ZodOptional<z.ZodString>;
|
|
4188
4263
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4189
4264
|
name: z.ZodString;
|
|
4190
|
-
|
|
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;
|
|
4191
4276
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4192
4277
|
description: z.ZodOptional<z.ZodString>;
|
|
4193
4278
|
entityType: z.ZodOptional<z.ZodString>;
|
|
4194
4279
|
}, "strip", z.ZodTypeAny, {
|
|
4195
|
-
type:
|
|
4280
|
+
type: string;
|
|
4196
4281
|
name: string;
|
|
4197
4282
|
required?: boolean | undefined;
|
|
4198
4283
|
description?: string | undefined;
|
|
4199
4284
|
entityType?: string | undefined;
|
|
4200
4285
|
}, {
|
|
4201
|
-
type:
|
|
4286
|
+
type: string;
|
|
4202
4287
|
name: string;
|
|
4203
4288
|
required?: boolean | undefined;
|
|
4204
4289
|
description?: string | undefined;
|
|
@@ -4209,7 +4294,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4209
4294
|
event: string;
|
|
4210
4295
|
description?: string | undefined;
|
|
4211
4296
|
payloadSchema?: {
|
|
4212
|
-
type:
|
|
4297
|
+
type: string;
|
|
4213
4298
|
name: string;
|
|
4214
4299
|
required?: boolean | undefined;
|
|
4215
4300
|
description?: string | undefined;
|
|
@@ -4220,7 +4305,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4220
4305
|
event: string;
|
|
4221
4306
|
description?: string | undefined;
|
|
4222
4307
|
payloadSchema?: {
|
|
4223
|
-
type:
|
|
4308
|
+
type: string;
|
|
4224
4309
|
name: string;
|
|
4225
4310
|
required?: boolean | undefined;
|
|
4226
4311
|
description?: string | undefined;
|
|
@@ -4306,7 +4391,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4306
4391
|
event: string;
|
|
4307
4392
|
description?: string | undefined;
|
|
4308
4393
|
payloadSchema?: {
|
|
4309
|
-
type:
|
|
4394
|
+
type: string;
|
|
4310
4395
|
name: string;
|
|
4311
4396
|
required?: boolean | undefined;
|
|
4312
4397
|
description?: string | undefined;
|
|
@@ -4360,7 +4445,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4360
4445
|
key: string;
|
|
4361
4446
|
description?: string | undefined;
|
|
4362
4447
|
payloadSchema?: {
|
|
4363
|
-
type:
|
|
4448
|
+
type: string;
|
|
4364
4449
|
name: string;
|
|
4365
4450
|
required?: boolean | undefined;
|
|
4366
4451
|
}[] | undefined;
|
|
@@ -4412,7 +4497,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4412
4497
|
event: string;
|
|
4413
4498
|
description?: string | undefined;
|
|
4414
4499
|
payloadSchema?: {
|
|
4415
|
-
type:
|
|
4500
|
+
type: string;
|
|
4416
4501
|
name: string;
|
|
4417
4502
|
required?: boolean | undefined;
|
|
4418
4503
|
description?: string | undefined;
|
|
@@ -4466,7 +4551,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4466
4551
|
key: string;
|
|
4467
4552
|
description?: string | undefined;
|
|
4468
4553
|
payloadSchema?: {
|
|
4469
|
-
type:
|
|
4554
|
+
type: string;
|
|
4470
4555
|
name: string;
|
|
4471
4556
|
required?: boolean | undefined;
|
|
4472
4557
|
}[] | undefined;
|
|
@@ -4607,8 +4692,12 @@ declare const FieldFormatSchema: z.ZodEnum<["email", "url", "phone", "date", "da
|
|
|
4607
4692
|
* Entity field definition.
|
|
4608
4693
|
*/
|
|
4609
4694
|
interface EntityField {
|
|
4610
|
-
/**
|
|
4611
|
-
|
|
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;
|
|
4612
4701
|
/** Data type */
|
|
4613
4702
|
type: FieldType;
|
|
4614
4703
|
/** Whether the field is required */
|
|
@@ -6677,14 +6766,14 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6677
6766
|
description: z.ZodOptional<z.ZodString>;
|
|
6678
6767
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6679
6768
|
name: z.ZodString;
|
|
6680
|
-
type: z.
|
|
6769
|
+
type: z.ZodString;
|
|
6681
6770
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6682
6771
|
}, "strip", z.ZodTypeAny, {
|
|
6683
|
-
type:
|
|
6772
|
+
type: string;
|
|
6684
6773
|
name: string;
|
|
6685
6774
|
required?: boolean | undefined;
|
|
6686
6775
|
}, {
|
|
6687
|
-
type:
|
|
6776
|
+
type: string;
|
|
6688
6777
|
name: string;
|
|
6689
6778
|
required?: boolean | undefined;
|
|
6690
6779
|
}>, "many">>;
|
|
@@ -6695,7 +6784,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6695
6784
|
key: string;
|
|
6696
6785
|
description?: string | undefined;
|
|
6697
6786
|
payloadSchema?: {
|
|
6698
|
-
type:
|
|
6787
|
+
type: string;
|
|
6699
6788
|
name: string;
|
|
6700
6789
|
required?: boolean | undefined;
|
|
6701
6790
|
}[] | undefined;
|
|
@@ -6706,7 +6795,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6706
6795
|
key: string;
|
|
6707
6796
|
description?: string | undefined;
|
|
6708
6797
|
payloadSchema?: {
|
|
6709
|
-
type:
|
|
6798
|
+
type: string;
|
|
6710
6799
|
name: string;
|
|
6711
6800
|
required?: boolean | undefined;
|
|
6712
6801
|
}[] | undefined;
|
|
@@ -6754,7 +6843,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6754
6843
|
key: string;
|
|
6755
6844
|
description?: string | undefined;
|
|
6756
6845
|
payloadSchema?: {
|
|
6757
|
-
type:
|
|
6846
|
+
type: string;
|
|
6758
6847
|
name: string;
|
|
6759
6848
|
required?: boolean | undefined;
|
|
6760
6849
|
}[] | undefined;
|
|
@@ -6789,7 +6878,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6789
6878
|
key: string;
|
|
6790
6879
|
description?: string | undefined;
|
|
6791
6880
|
payloadSchema?: {
|
|
6792
|
-
type:
|
|
6881
|
+
type: string;
|
|
6793
6882
|
name: string;
|
|
6794
6883
|
required?: boolean | undefined;
|
|
6795
6884
|
}[] | undefined;
|
|
@@ -6856,18 +6945,18 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6856
6945
|
description: z.ZodOptional<z.ZodString>;
|
|
6857
6946
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6858
6947
|
name: z.ZodString;
|
|
6859
|
-
type: z.
|
|
6948
|
+
type: z.ZodString;
|
|
6860
6949
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6861
6950
|
description: z.ZodOptional<z.ZodString>;
|
|
6862
6951
|
entityType: z.ZodOptional<z.ZodString>;
|
|
6863
6952
|
}, "strip", z.ZodTypeAny, {
|
|
6864
|
-
type:
|
|
6953
|
+
type: string;
|
|
6865
6954
|
name: string;
|
|
6866
6955
|
required?: boolean | undefined;
|
|
6867
6956
|
description?: string | undefined;
|
|
6868
6957
|
entityType?: string | undefined;
|
|
6869
6958
|
}, {
|
|
6870
|
-
type:
|
|
6959
|
+
type: string;
|
|
6871
6960
|
name: string;
|
|
6872
6961
|
required?: boolean | undefined;
|
|
6873
6962
|
description?: string | undefined;
|
|
@@ -6878,7 +6967,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6878
6967
|
event: string;
|
|
6879
6968
|
description?: string | undefined;
|
|
6880
6969
|
payloadSchema?: {
|
|
6881
|
-
type:
|
|
6970
|
+
type: string;
|
|
6882
6971
|
name: string;
|
|
6883
6972
|
required?: boolean | undefined;
|
|
6884
6973
|
description?: string | undefined;
|
|
@@ -6889,7 +6978,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6889
6978
|
event: string;
|
|
6890
6979
|
description?: string | undefined;
|
|
6891
6980
|
payloadSchema?: {
|
|
6892
|
-
type:
|
|
6981
|
+
type: string;
|
|
6893
6982
|
name: string;
|
|
6894
6983
|
required?: boolean | undefined;
|
|
6895
6984
|
description?: string | undefined;
|
|
@@ -6975,7 +7064,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6975
7064
|
event: string;
|
|
6976
7065
|
description?: string | undefined;
|
|
6977
7066
|
payloadSchema?: {
|
|
6978
|
-
type:
|
|
7067
|
+
type: string;
|
|
6979
7068
|
name: string;
|
|
6980
7069
|
required?: boolean | undefined;
|
|
6981
7070
|
description?: string | undefined;
|
|
@@ -7029,7 +7118,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7029
7118
|
key: string;
|
|
7030
7119
|
description?: string | undefined;
|
|
7031
7120
|
payloadSchema?: {
|
|
7032
|
-
type:
|
|
7121
|
+
type: string;
|
|
7033
7122
|
name: string;
|
|
7034
7123
|
required?: boolean | undefined;
|
|
7035
7124
|
}[] | undefined;
|
|
@@ -7081,7 +7170,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7081
7170
|
event: string;
|
|
7082
7171
|
description?: string | undefined;
|
|
7083
7172
|
payloadSchema?: {
|
|
7084
|
-
type:
|
|
7173
|
+
type: string;
|
|
7085
7174
|
name: string;
|
|
7086
7175
|
required?: boolean | undefined;
|
|
7087
7176
|
description?: string | undefined;
|
|
@@ -7135,7 +7224,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7135
7224
|
key: string;
|
|
7136
7225
|
description?: string | undefined;
|
|
7137
7226
|
payloadSchema?: {
|
|
7138
|
-
type:
|
|
7227
|
+
type: string;
|
|
7139
7228
|
name: string;
|
|
7140
7229
|
required?: boolean | undefined;
|
|
7141
7230
|
}[] | undefined;
|
|
@@ -7193,7 +7282,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7193
7282
|
event: string;
|
|
7194
7283
|
description?: string | undefined;
|
|
7195
7284
|
payloadSchema?: {
|
|
7196
|
-
type:
|
|
7285
|
+
type: string;
|
|
7197
7286
|
name: string;
|
|
7198
7287
|
required?: boolean | undefined;
|
|
7199
7288
|
description?: string | undefined;
|
|
@@ -7247,7 +7336,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7247
7336
|
key: string;
|
|
7248
7337
|
description?: string | undefined;
|
|
7249
7338
|
payloadSchema?: {
|
|
7250
|
-
type:
|
|
7339
|
+
type: string;
|
|
7251
7340
|
name: string;
|
|
7252
7341
|
required?: boolean | undefined;
|
|
7253
7342
|
}[] | undefined;
|
|
@@ -7311,7 +7400,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7311
7400
|
event: string;
|
|
7312
7401
|
description?: string | undefined;
|
|
7313
7402
|
payloadSchema?: {
|
|
7314
|
-
type:
|
|
7403
|
+
type: string;
|
|
7315
7404
|
name: string;
|
|
7316
7405
|
required?: boolean | undefined;
|
|
7317
7406
|
description?: string | undefined;
|
|
@@ -7365,7 +7454,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7365
7454
|
key: string;
|
|
7366
7455
|
description?: string | undefined;
|
|
7367
7456
|
payloadSchema?: {
|
|
7368
|
-
type:
|
|
7457
|
+
type: string;
|
|
7369
7458
|
name: string;
|
|
7370
7459
|
required?: boolean | undefined;
|
|
7371
7460
|
}[] | undefined;
|
|
@@ -7592,14 +7681,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7592
7681
|
description: z.ZodOptional<z.ZodString>;
|
|
7593
7682
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7594
7683
|
name: z.ZodString;
|
|
7595
|
-
type: z.
|
|
7684
|
+
type: z.ZodString;
|
|
7596
7685
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7597
7686
|
}, "strip", z.ZodTypeAny, {
|
|
7598
|
-
type:
|
|
7687
|
+
type: string;
|
|
7599
7688
|
name: string;
|
|
7600
7689
|
required?: boolean | undefined;
|
|
7601
7690
|
}, {
|
|
7602
|
-
type:
|
|
7691
|
+
type: string;
|
|
7603
7692
|
name: string;
|
|
7604
7693
|
required?: boolean | undefined;
|
|
7605
7694
|
}>, "many">>;
|
|
@@ -7610,7 +7699,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7610
7699
|
key: string;
|
|
7611
7700
|
description?: string | undefined;
|
|
7612
7701
|
payloadSchema?: {
|
|
7613
|
-
type:
|
|
7702
|
+
type: string;
|
|
7614
7703
|
name: string;
|
|
7615
7704
|
required?: boolean | undefined;
|
|
7616
7705
|
}[] | undefined;
|
|
@@ -7621,7 +7710,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7621
7710
|
key: string;
|
|
7622
7711
|
description?: string | undefined;
|
|
7623
7712
|
payloadSchema?: {
|
|
7624
|
-
type:
|
|
7713
|
+
type: string;
|
|
7625
7714
|
name: string;
|
|
7626
7715
|
required?: boolean | undefined;
|
|
7627
7716
|
}[] | undefined;
|
|
@@ -7669,7 +7758,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7669
7758
|
key: string;
|
|
7670
7759
|
description?: string | undefined;
|
|
7671
7760
|
payloadSchema?: {
|
|
7672
|
-
type:
|
|
7761
|
+
type: string;
|
|
7673
7762
|
name: string;
|
|
7674
7763
|
required?: boolean | undefined;
|
|
7675
7764
|
}[] | undefined;
|
|
@@ -7704,7 +7793,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7704
7793
|
key: string;
|
|
7705
7794
|
description?: string | undefined;
|
|
7706
7795
|
payloadSchema?: {
|
|
7707
|
-
type:
|
|
7796
|
+
type: string;
|
|
7708
7797
|
name: string;
|
|
7709
7798
|
required?: boolean | undefined;
|
|
7710
7799
|
}[] | undefined;
|
|
@@ -7771,18 +7860,18 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7771
7860
|
description: z.ZodOptional<z.ZodString>;
|
|
7772
7861
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7773
7862
|
name: z.ZodString;
|
|
7774
|
-
type: z.
|
|
7863
|
+
type: z.ZodString;
|
|
7775
7864
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7776
7865
|
description: z.ZodOptional<z.ZodString>;
|
|
7777
7866
|
entityType: z.ZodOptional<z.ZodString>;
|
|
7778
7867
|
}, "strip", z.ZodTypeAny, {
|
|
7779
|
-
type:
|
|
7868
|
+
type: string;
|
|
7780
7869
|
name: string;
|
|
7781
7870
|
required?: boolean | undefined;
|
|
7782
7871
|
description?: string | undefined;
|
|
7783
7872
|
entityType?: string | undefined;
|
|
7784
7873
|
}, {
|
|
7785
|
-
type:
|
|
7874
|
+
type: string;
|
|
7786
7875
|
name: string;
|
|
7787
7876
|
required?: boolean | undefined;
|
|
7788
7877
|
description?: string | undefined;
|
|
@@ -7793,7 +7882,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7793
7882
|
event: string;
|
|
7794
7883
|
description?: string | undefined;
|
|
7795
7884
|
payloadSchema?: {
|
|
7796
|
-
type:
|
|
7885
|
+
type: string;
|
|
7797
7886
|
name: string;
|
|
7798
7887
|
required?: boolean | undefined;
|
|
7799
7888
|
description?: string | undefined;
|
|
@@ -7804,7 +7893,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7804
7893
|
event: string;
|
|
7805
7894
|
description?: string | undefined;
|
|
7806
7895
|
payloadSchema?: {
|
|
7807
|
-
type:
|
|
7896
|
+
type: string;
|
|
7808
7897
|
name: string;
|
|
7809
7898
|
required?: boolean | undefined;
|
|
7810
7899
|
description?: string | undefined;
|
|
@@ -7890,7 +7979,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7890
7979
|
event: string;
|
|
7891
7980
|
description?: string | undefined;
|
|
7892
7981
|
payloadSchema?: {
|
|
7893
|
-
type:
|
|
7982
|
+
type: string;
|
|
7894
7983
|
name: string;
|
|
7895
7984
|
required?: boolean | undefined;
|
|
7896
7985
|
description?: string | undefined;
|
|
@@ -7944,7 +8033,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7944
8033
|
key: string;
|
|
7945
8034
|
description?: string | undefined;
|
|
7946
8035
|
payloadSchema?: {
|
|
7947
|
-
type:
|
|
8036
|
+
type: string;
|
|
7948
8037
|
name: string;
|
|
7949
8038
|
required?: boolean | undefined;
|
|
7950
8039
|
}[] | undefined;
|
|
@@ -7996,7 +8085,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7996
8085
|
event: string;
|
|
7997
8086
|
description?: string | undefined;
|
|
7998
8087
|
payloadSchema?: {
|
|
7999
|
-
type:
|
|
8088
|
+
type: string;
|
|
8000
8089
|
name: string;
|
|
8001
8090
|
required?: boolean | undefined;
|
|
8002
8091
|
description?: string | undefined;
|
|
@@ -8050,7 +8139,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8050
8139
|
key: string;
|
|
8051
8140
|
description?: string | undefined;
|
|
8052
8141
|
payloadSchema?: {
|
|
8053
|
-
type:
|
|
8142
|
+
type: string;
|
|
8054
8143
|
name: string;
|
|
8055
8144
|
required?: boolean | undefined;
|
|
8056
8145
|
}[] | undefined;
|
|
@@ -8108,7 +8197,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8108
8197
|
event: string;
|
|
8109
8198
|
description?: string | undefined;
|
|
8110
8199
|
payloadSchema?: {
|
|
8111
|
-
type:
|
|
8200
|
+
type: string;
|
|
8112
8201
|
name: string;
|
|
8113
8202
|
required?: boolean | undefined;
|
|
8114
8203
|
description?: string | undefined;
|
|
@@ -8162,7 +8251,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8162
8251
|
key: string;
|
|
8163
8252
|
description?: string | undefined;
|
|
8164
8253
|
payloadSchema?: {
|
|
8165
|
-
type:
|
|
8254
|
+
type: string;
|
|
8166
8255
|
name: string;
|
|
8167
8256
|
required?: boolean | undefined;
|
|
8168
8257
|
}[] | undefined;
|
|
@@ -8226,7 +8315,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8226
8315
|
event: string;
|
|
8227
8316
|
description?: string | undefined;
|
|
8228
8317
|
payloadSchema?: {
|
|
8229
|
-
type:
|
|
8318
|
+
type: string;
|
|
8230
8319
|
name: string;
|
|
8231
8320
|
required?: boolean | undefined;
|
|
8232
8321
|
description?: string | undefined;
|
|
@@ -8280,7 +8369,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8280
8369
|
key: string;
|
|
8281
8370
|
description?: string | undefined;
|
|
8282
8371
|
payloadSchema?: {
|
|
8283
|
-
type:
|
|
8372
|
+
type: string;
|
|
8284
8373
|
name: string;
|
|
8285
8374
|
required?: boolean | undefined;
|
|
8286
8375
|
}[] | undefined;
|
|
@@ -8478,18 +8567,18 @@ declare const ComputedEventContractSchema: z.ZodObject<{
|
|
|
8478
8567
|
description: z.ZodOptional<z.ZodString>;
|
|
8479
8568
|
payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8480
8569
|
name: z.ZodString;
|
|
8481
|
-
type: z.
|
|
8570
|
+
type: z.ZodString;
|
|
8482
8571
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8483
8572
|
description: z.ZodOptional<z.ZodString>;
|
|
8484
8573
|
entityType: z.ZodOptional<z.ZodString>;
|
|
8485
8574
|
}, "strip", z.ZodTypeAny, {
|
|
8486
|
-
type:
|
|
8575
|
+
type: string;
|
|
8487
8576
|
name: string;
|
|
8488
8577
|
required?: boolean | undefined;
|
|
8489
8578
|
description?: string | undefined;
|
|
8490
8579
|
entityType?: string | undefined;
|
|
8491
8580
|
}, {
|
|
8492
|
-
type:
|
|
8581
|
+
type: string;
|
|
8493
8582
|
name: string;
|
|
8494
8583
|
required?: boolean | undefined;
|
|
8495
8584
|
description?: string | undefined;
|
|
@@ -8505,7 +8594,7 @@ declare const ComputedEventContractSchema: z.ZodObject<{
|
|
|
8505
8594
|
originalEvent: string;
|
|
8506
8595
|
description?: string | undefined;
|
|
8507
8596
|
payload?: {
|
|
8508
|
-
type:
|
|
8597
|
+
type: string;
|
|
8509
8598
|
name: string;
|
|
8510
8599
|
required?: boolean | undefined;
|
|
8511
8600
|
description?: string | undefined;
|
|
@@ -8521,7 +8610,7 @@ declare const ComputedEventContractSchema: z.ZodObject<{
|
|
|
8521
8610
|
originalEvent: string;
|
|
8522
8611
|
description?: string | undefined;
|
|
8523
8612
|
payload?: {
|
|
8524
|
-
type:
|
|
8613
|
+
type: string;
|
|
8525
8614
|
name: string;
|
|
8526
8615
|
required?: boolean | undefined;
|
|
8527
8616
|
description?: string | undefined;
|
|
@@ -9166,14 +9255,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9166
9255
|
description: z.ZodOptional<z.ZodString>;
|
|
9167
9256
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9168
9257
|
name: z.ZodString;
|
|
9169
|
-
type: z.
|
|
9258
|
+
type: z.ZodString;
|
|
9170
9259
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
9171
9260
|
}, "strip", z.ZodTypeAny, {
|
|
9172
|
-
type:
|
|
9261
|
+
type: string;
|
|
9173
9262
|
name: string;
|
|
9174
9263
|
required?: boolean | undefined;
|
|
9175
9264
|
}, {
|
|
9176
|
-
type:
|
|
9265
|
+
type: string;
|
|
9177
9266
|
name: string;
|
|
9178
9267
|
required?: boolean | undefined;
|
|
9179
9268
|
}>, "many">>;
|
|
@@ -9184,7 +9273,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9184
9273
|
key: string;
|
|
9185
9274
|
description?: string | undefined;
|
|
9186
9275
|
payloadSchema?: {
|
|
9187
|
-
type:
|
|
9276
|
+
type: string;
|
|
9188
9277
|
name: string;
|
|
9189
9278
|
required?: boolean | undefined;
|
|
9190
9279
|
}[] | undefined;
|
|
@@ -9195,7 +9284,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9195
9284
|
key: string;
|
|
9196
9285
|
description?: string | undefined;
|
|
9197
9286
|
payloadSchema?: {
|
|
9198
|
-
type:
|
|
9287
|
+
type: string;
|
|
9199
9288
|
name: string;
|
|
9200
9289
|
required?: boolean | undefined;
|
|
9201
9290
|
}[] | undefined;
|
|
@@ -9243,7 +9332,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9243
9332
|
key: string;
|
|
9244
9333
|
description?: string | undefined;
|
|
9245
9334
|
payloadSchema?: {
|
|
9246
|
-
type:
|
|
9335
|
+
type: string;
|
|
9247
9336
|
name: string;
|
|
9248
9337
|
required?: boolean | undefined;
|
|
9249
9338
|
}[] | undefined;
|
|
@@ -9278,7 +9367,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9278
9367
|
key: string;
|
|
9279
9368
|
description?: string | undefined;
|
|
9280
9369
|
payloadSchema?: {
|
|
9281
|
-
type:
|
|
9370
|
+
type: string;
|
|
9282
9371
|
name: string;
|
|
9283
9372
|
required?: boolean | undefined;
|
|
9284
9373
|
}[] | undefined;
|
|
@@ -9345,18 +9434,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9345
9434
|
description: z.ZodOptional<z.ZodString>;
|
|
9346
9435
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9347
9436
|
name: z.ZodString;
|
|
9348
|
-
type: z.
|
|
9437
|
+
type: z.ZodString;
|
|
9349
9438
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
9350
9439
|
description: z.ZodOptional<z.ZodString>;
|
|
9351
9440
|
entityType: z.ZodOptional<z.ZodString>;
|
|
9352
9441
|
}, "strip", z.ZodTypeAny, {
|
|
9353
|
-
type:
|
|
9442
|
+
type: string;
|
|
9354
9443
|
name: string;
|
|
9355
9444
|
required?: boolean | undefined;
|
|
9356
9445
|
description?: string | undefined;
|
|
9357
9446
|
entityType?: string | undefined;
|
|
9358
9447
|
}, {
|
|
9359
|
-
type:
|
|
9448
|
+
type: string;
|
|
9360
9449
|
name: string;
|
|
9361
9450
|
required?: boolean | undefined;
|
|
9362
9451
|
description?: string | undefined;
|
|
@@ -9367,7 +9456,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9367
9456
|
event: string;
|
|
9368
9457
|
description?: string | undefined;
|
|
9369
9458
|
payloadSchema?: {
|
|
9370
|
-
type:
|
|
9459
|
+
type: string;
|
|
9371
9460
|
name: string;
|
|
9372
9461
|
required?: boolean | undefined;
|
|
9373
9462
|
description?: string | undefined;
|
|
@@ -9378,7 +9467,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9378
9467
|
event: string;
|
|
9379
9468
|
description?: string | undefined;
|
|
9380
9469
|
payloadSchema?: {
|
|
9381
|
-
type:
|
|
9470
|
+
type: string;
|
|
9382
9471
|
name: string;
|
|
9383
9472
|
required?: boolean | undefined;
|
|
9384
9473
|
description?: string | undefined;
|
|
@@ -9464,7 +9553,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9464
9553
|
event: string;
|
|
9465
9554
|
description?: string | undefined;
|
|
9466
9555
|
payloadSchema?: {
|
|
9467
|
-
type:
|
|
9556
|
+
type: string;
|
|
9468
9557
|
name: string;
|
|
9469
9558
|
required?: boolean | undefined;
|
|
9470
9559
|
description?: string | undefined;
|
|
@@ -9518,7 +9607,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9518
9607
|
key: string;
|
|
9519
9608
|
description?: string | undefined;
|
|
9520
9609
|
payloadSchema?: {
|
|
9521
|
-
type:
|
|
9610
|
+
type: string;
|
|
9522
9611
|
name: string;
|
|
9523
9612
|
required?: boolean | undefined;
|
|
9524
9613
|
}[] | undefined;
|
|
@@ -9570,7 +9659,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9570
9659
|
event: string;
|
|
9571
9660
|
description?: string | undefined;
|
|
9572
9661
|
payloadSchema?: {
|
|
9573
|
-
type:
|
|
9662
|
+
type: string;
|
|
9574
9663
|
name: string;
|
|
9575
9664
|
required?: boolean | undefined;
|
|
9576
9665
|
description?: string | undefined;
|
|
@@ -9624,7 +9713,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9624
9713
|
key: string;
|
|
9625
9714
|
description?: string | undefined;
|
|
9626
9715
|
payloadSchema?: {
|
|
9627
|
-
type:
|
|
9716
|
+
type: string;
|
|
9628
9717
|
name: string;
|
|
9629
9718
|
required?: boolean | undefined;
|
|
9630
9719
|
}[] | undefined;
|
|
@@ -9844,14 +9933,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9844
9933
|
description: z.ZodOptional<z.ZodString>;
|
|
9845
9934
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9846
9935
|
name: z.ZodString;
|
|
9847
|
-
type: z.
|
|
9936
|
+
type: z.ZodString;
|
|
9848
9937
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
9849
9938
|
}, "strip", z.ZodTypeAny, {
|
|
9850
|
-
type:
|
|
9939
|
+
type: string;
|
|
9851
9940
|
name: string;
|
|
9852
9941
|
required?: boolean | undefined;
|
|
9853
9942
|
}, {
|
|
9854
|
-
type:
|
|
9943
|
+
type: string;
|
|
9855
9944
|
name: string;
|
|
9856
9945
|
required?: boolean | undefined;
|
|
9857
9946
|
}>, "many">>;
|
|
@@ -9862,7 +9951,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9862
9951
|
key: string;
|
|
9863
9952
|
description?: string | undefined;
|
|
9864
9953
|
payloadSchema?: {
|
|
9865
|
-
type:
|
|
9954
|
+
type: string;
|
|
9866
9955
|
name: string;
|
|
9867
9956
|
required?: boolean | undefined;
|
|
9868
9957
|
}[] | undefined;
|
|
@@ -9873,7 +9962,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9873
9962
|
key: string;
|
|
9874
9963
|
description?: string | undefined;
|
|
9875
9964
|
payloadSchema?: {
|
|
9876
|
-
type:
|
|
9965
|
+
type: string;
|
|
9877
9966
|
name: string;
|
|
9878
9967
|
required?: boolean | undefined;
|
|
9879
9968
|
}[] | undefined;
|
|
@@ -9921,7 +10010,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9921
10010
|
key: string;
|
|
9922
10011
|
description?: string | undefined;
|
|
9923
10012
|
payloadSchema?: {
|
|
9924
|
-
type:
|
|
10013
|
+
type: string;
|
|
9925
10014
|
name: string;
|
|
9926
10015
|
required?: boolean | undefined;
|
|
9927
10016
|
}[] | undefined;
|
|
@@ -9956,7 +10045,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9956
10045
|
key: string;
|
|
9957
10046
|
description?: string | undefined;
|
|
9958
10047
|
payloadSchema?: {
|
|
9959
|
-
type:
|
|
10048
|
+
type: string;
|
|
9960
10049
|
name: string;
|
|
9961
10050
|
required?: boolean | undefined;
|
|
9962
10051
|
}[] | undefined;
|
|
@@ -10023,18 +10112,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10023
10112
|
description: z.ZodOptional<z.ZodString>;
|
|
10024
10113
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10025
10114
|
name: z.ZodString;
|
|
10026
|
-
type: z.
|
|
10115
|
+
type: z.ZodString;
|
|
10027
10116
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
10028
10117
|
description: z.ZodOptional<z.ZodString>;
|
|
10029
10118
|
entityType: z.ZodOptional<z.ZodString>;
|
|
10030
10119
|
}, "strip", z.ZodTypeAny, {
|
|
10031
|
-
type:
|
|
10120
|
+
type: string;
|
|
10032
10121
|
name: string;
|
|
10033
10122
|
required?: boolean | undefined;
|
|
10034
10123
|
description?: string | undefined;
|
|
10035
10124
|
entityType?: string | undefined;
|
|
10036
10125
|
}, {
|
|
10037
|
-
type:
|
|
10126
|
+
type: string;
|
|
10038
10127
|
name: string;
|
|
10039
10128
|
required?: boolean | undefined;
|
|
10040
10129
|
description?: string | undefined;
|
|
@@ -10045,7 +10134,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10045
10134
|
event: string;
|
|
10046
10135
|
description?: string | undefined;
|
|
10047
10136
|
payloadSchema?: {
|
|
10048
|
-
type:
|
|
10137
|
+
type: string;
|
|
10049
10138
|
name: string;
|
|
10050
10139
|
required?: boolean | undefined;
|
|
10051
10140
|
description?: string | undefined;
|
|
@@ -10056,7 +10145,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10056
10145
|
event: string;
|
|
10057
10146
|
description?: string | undefined;
|
|
10058
10147
|
payloadSchema?: {
|
|
10059
|
-
type:
|
|
10148
|
+
type: string;
|
|
10060
10149
|
name: string;
|
|
10061
10150
|
required?: boolean | undefined;
|
|
10062
10151
|
description?: string | undefined;
|
|
@@ -10142,7 +10231,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10142
10231
|
event: string;
|
|
10143
10232
|
description?: string | undefined;
|
|
10144
10233
|
payloadSchema?: {
|
|
10145
|
-
type:
|
|
10234
|
+
type: string;
|
|
10146
10235
|
name: string;
|
|
10147
10236
|
required?: boolean | undefined;
|
|
10148
10237
|
description?: string | undefined;
|
|
@@ -10196,7 +10285,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10196
10285
|
key: string;
|
|
10197
10286
|
description?: string | undefined;
|
|
10198
10287
|
payloadSchema?: {
|
|
10199
|
-
type:
|
|
10288
|
+
type: string;
|
|
10200
10289
|
name: string;
|
|
10201
10290
|
required?: boolean | undefined;
|
|
10202
10291
|
}[] | undefined;
|
|
@@ -10248,7 +10337,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10248
10337
|
event: string;
|
|
10249
10338
|
description?: string | undefined;
|
|
10250
10339
|
payloadSchema?: {
|
|
10251
|
-
type:
|
|
10340
|
+
type: string;
|
|
10252
10341
|
name: string;
|
|
10253
10342
|
required?: boolean | undefined;
|
|
10254
10343
|
description?: string | undefined;
|
|
@@ -10302,7 +10391,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10302
10391
|
key: string;
|
|
10303
10392
|
description?: string | undefined;
|
|
10304
10393
|
payloadSchema?: {
|
|
10305
|
-
type:
|
|
10394
|
+
type: string;
|
|
10306
10395
|
name: string;
|
|
10307
10396
|
required?: boolean | undefined;
|
|
10308
10397
|
}[] | undefined;
|
|
@@ -10360,7 +10449,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10360
10449
|
event: string;
|
|
10361
10450
|
description?: string | undefined;
|
|
10362
10451
|
payloadSchema?: {
|
|
10363
|
-
type:
|
|
10452
|
+
type: string;
|
|
10364
10453
|
name: string;
|
|
10365
10454
|
required?: boolean | undefined;
|
|
10366
10455
|
description?: string | undefined;
|
|
@@ -10414,7 +10503,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10414
10503
|
key: string;
|
|
10415
10504
|
description?: string | undefined;
|
|
10416
10505
|
payloadSchema?: {
|
|
10417
|
-
type:
|
|
10506
|
+
type: string;
|
|
10418
10507
|
name: string;
|
|
10419
10508
|
required?: boolean | undefined;
|
|
10420
10509
|
}[] | undefined;
|
|
@@ -10478,7 +10567,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10478
10567
|
event: string;
|
|
10479
10568
|
description?: string | undefined;
|
|
10480
10569
|
payloadSchema?: {
|
|
10481
|
-
type:
|
|
10570
|
+
type: string;
|
|
10482
10571
|
name: string;
|
|
10483
10572
|
required?: boolean | undefined;
|
|
10484
10573
|
description?: string | undefined;
|
|
@@ -10532,7 +10621,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10532
10621
|
key: string;
|
|
10533
10622
|
description?: string | undefined;
|
|
10534
10623
|
payloadSchema?: {
|
|
10535
|
-
type:
|
|
10624
|
+
type: string;
|
|
10536
10625
|
name: string;
|
|
10537
10626
|
required?: boolean | undefined;
|
|
10538
10627
|
}[] | undefined;
|
|
@@ -10601,18 +10690,18 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10601
10690
|
description: z.ZodOptional<z.ZodString>;
|
|
10602
10691
|
payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10603
10692
|
name: z.ZodString;
|
|
10604
|
-
type: z.
|
|
10693
|
+
type: z.ZodString;
|
|
10605
10694
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
10606
10695
|
description: z.ZodOptional<z.ZodString>;
|
|
10607
10696
|
entityType: z.ZodOptional<z.ZodString>;
|
|
10608
10697
|
}, "strip", z.ZodTypeAny, {
|
|
10609
|
-
type:
|
|
10698
|
+
type: string;
|
|
10610
10699
|
name: string;
|
|
10611
10700
|
required?: boolean | undefined;
|
|
10612
10701
|
description?: string | undefined;
|
|
10613
10702
|
entityType?: string | undefined;
|
|
10614
10703
|
}, {
|
|
10615
|
-
type:
|
|
10704
|
+
type: string;
|
|
10616
10705
|
name: string;
|
|
10617
10706
|
required?: boolean | undefined;
|
|
10618
10707
|
description?: string | undefined;
|
|
@@ -10628,7 +10717,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10628
10717
|
originalEvent: string;
|
|
10629
10718
|
description?: string | undefined;
|
|
10630
10719
|
payload?: {
|
|
10631
|
-
type:
|
|
10720
|
+
type: string;
|
|
10632
10721
|
name: string;
|
|
10633
10722
|
required?: boolean | undefined;
|
|
10634
10723
|
description?: string | undefined;
|
|
@@ -10644,7 +10733,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10644
10733
|
originalEvent: string;
|
|
10645
10734
|
description?: string | undefined;
|
|
10646
10735
|
payload?: {
|
|
10647
|
-
type:
|
|
10736
|
+
type: string;
|
|
10648
10737
|
name: string;
|
|
10649
10738
|
required?: boolean | undefined;
|
|
10650
10739
|
description?: string | undefined;
|
|
@@ -10876,7 +10965,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10876
10965
|
event: string;
|
|
10877
10966
|
description?: string | undefined;
|
|
10878
10967
|
payloadSchema?: {
|
|
10879
|
-
type:
|
|
10968
|
+
type: string;
|
|
10880
10969
|
name: string;
|
|
10881
10970
|
required?: boolean | undefined;
|
|
10882
10971
|
description?: string | undefined;
|
|
@@ -10930,7 +11019,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10930
11019
|
key: string;
|
|
10931
11020
|
description?: string | undefined;
|
|
10932
11021
|
payloadSchema?: {
|
|
10933
|
-
type:
|
|
11022
|
+
type: string;
|
|
10934
11023
|
name: string;
|
|
10935
11024
|
required?: boolean | undefined;
|
|
10936
11025
|
}[] | undefined;
|
|
@@ -10990,7 +11079,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10990
11079
|
event: string;
|
|
10991
11080
|
description?: string | undefined;
|
|
10992
11081
|
payloadSchema?: {
|
|
10993
|
-
type:
|
|
11082
|
+
type: string;
|
|
10994
11083
|
name: string;
|
|
10995
11084
|
required?: boolean | undefined;
|
|
10996
11085
|
description?: string | undefined;
|
|
@@ -11044,7 +11133,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11044
11133
|
key: string;
|
|
11045
11134
|
description?: string | undefined;
|
|
11046
11135
|
payloadSchema?: {
|
|
11047
|
-
type:
|
|
11136
|
+
type: string;
|
|
11048
11137
|
name: string;
|
|
11049
11138
|
required?: boolean | undefined;
|
|
11050
11139
|
}[] | undefined;
|
|
@@ -11122,7 +11211,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11122
11211
|
originalEvent: string;
|
|
11123
11212
|
description?: string | undefined;
|
|
11124
11213
|
payload?: {
|
|
11125
|
-
type:
|
|
11214
|
+
type: string;
|
|
11126
11215
|
name: string;
|
|
11127
11216
|
required?: boolean | undefined;
|
|
11128
11217
|
description?: string | undefined;
|
|
@@ -11274,7 +11363,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11274
11363
|
event: string;
|
|
11275
11364
|
description?: string | undefined;
|
|
11276
11365
|
payloadSchema?: {
|
|
11277
|
-
type:
|
|
11366
|
+
type: string;
|
|
11278
11367
|
name: string;
|
|
11279
11368
|
required?: boolean | undefined;
|
|
11280
11369
|
description?: string | undefined;
|
|
@@ -11328,7 +11417,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11328
11417
|
key: string;
|
|
11329
11418
|
description?: string | undefined;
|
|
11330
11419
|
payloadSchema?: {
|
|
11331
|
-
type:
|
|
11420
|
+
type: string;
|
|
11332
11421
|
name: string;
|
|
11333
11422
|
required?: boolean | undefined;
|
|
11334
11423
|
}[] | undefined;
|
|
@@ -11388,7 +11477,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11388
11477
|
event: string;
|
|
11389
11478
|
description?: string | undefined;
|
|
11390
11479
|
payloadSchema?: {
|
|
11391
|
-
type:
|
|
11480
|
+
type: string;
|
|
11392
11481
|
name: string;
|
|
11393
11482
|
required?: boolean | undefined;
|
|
11394
11483
|
description?: string | undefined;
|
|
@@ -11442,7 +11531,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11442
11531
|
key: string;
|
|
11443
11532
|
description?: string | undefined;
|
|
11444
11533
|
payloadSchema?: {
|
|
11445
|
-
type:
|
|
11534
|
+
type: string;
|
|
11446
11535
|
name: string;
|
|
11447
11536
|
required?: boolean | undefined;
|
|
11448
11537
|
}[] | undefined;
|
|
@@ -11520,7 +11609,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11520
11609
|
originalEvent: string;
|
|
11521
11610
|
description?: string | undefined;
|
|
11522
11611
|
payload?: {
|
|
11523
|
-
type:
|
|
11612
|
+
type: string;
|
|
11524
11613
|
name: string;
|
|
11525
11614
|
required?: boolean | undefined;
|
|
11526
11615
|
description?: string | undefined;
|
|
@@ -12077,14 +12166,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12077
12166
|
description: z.ZodOptional<z.ZodString>;
|
|
12078
12167
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12079
12168
|
name: z.ZodString;
|
|
12080
|
-
type: z.
|
|
12169
|
+
type: z.ZodString;
|
|
12081
12170
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
12082
12171
|
}, "strip", z.ZodTypeAny, {
|
|
12083
|
-
type:
|
|
12172
|
+
type: string;
|
|
12084
12173
|
name: string;
|
|
12085
12174
|
required?: boolean | undefined;
|
|
12086
12175
|
}, {
|
|
12087
|
-
type:
|
|
12176
|
+
type: string;
|
|
12088
12177
|
name: string;
|
|
12089
12178
|
required?: boolean | undefined;
|
|
12090
12179
|
}>, "many">>;
|
|
@@ -12095,7 +12184,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12095
12184
|
key: string;
|
|
12096
12185
|
description?: string | undefined;
|
|
12097
12186
|
payloadSchema?: {
|
|
12098
|
-
type:
|
|
12187
|
+
type: string;
|
|
12099
12188
|
name: string;
|
|
12100
12189
|
required?: boolean | undefined;
|
|
12101
12190
|
}[] | undefined;
|
|
@@ -12106,7 +12195,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12106
12195
|
key: string;
|
|
12107
12196
|
description?: string | undefined;
|
|
12108
12197
|
payloadSchema?: {
|
|
12109
|
-
type:
|
|
12198
|
+
type: string;
|
|
12110
12199
|
name: string;
|
|
12111
12200
|
required?: boolean | undefined;
|
|
12112
12201
|
}[] | undefined;
|
|
@@ -12154,7 +12243,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12154
12243
|
key: string;
|
|
12155
12244
|
description?: string | undefined;
|
|
12156
12245
|
payloadSchema?: {
|
|
12157
|
-
type:
|
|
12246
|
+
type: string;
|
|
12158
12247
|
name: string;
|
|
12159
12248
|
required?: boolean | undefined;
|
|
12160
12249
|
}[] | undefined;
|
|
@@ -12189,7 +12278,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12189
12278
|
key: string;
|
|
12190
12279
|
description?: string | undefined;
|
|
12191
12280
|
payloadSchema?: {
|
|
12192
|
-
type:
|
|
12281
|
+
type: string;
|
|
12193
12282
|
name: string;
|
|
12194
12283
|
required?: boolean | undefined;
|
|
12195
12284
|
}[] | undefined;
|
|
@@ -12256,18 +12345,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12256
12345
|
description: z.ZodOptional<z.ZodString>;
|
|
12257
12346
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12258
12347
|
name: z.ZodString;
|
|
12259
|
-
type: z.
|
|
12348
|
+
type: z.ZodString;
|
|
12260
12349
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
12261
12350
|
description: z.ZodOptional<z.ZodString>;
|
|
12262
12351
|
entityType: z.ZodOptional<z.ZodString>;
|
|
12263
12352
|
}, "strip", z.ZodTypeAny, {
|
|
12264
|
-
type:
|
|
12353
|
+
type: string;
|
|
12265
12354
|
name: string;
|
|
12266
12355
|
required?: boolean | undefined;
|
|
12267
12356
|
description?: string | undefined;
|
|
12268
12357
|
entityType?: string | undefined;
|
|
12269
12358
|
}, {
|
|
12270
|
-
type:
|
|
12359
|
+
type: string;
|
|
12271
12360
|
name: string;
|
|
12272
12361
|
required?: boolean | undefined;
|
|
12273
12362
|
description?: string | undefined;
|
|
@@ -12278,7 +12367,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12278
12367
|
event: string;
|
|
12279
12368
|
description?: string | undefined;
|
|
12280
12369
|
payloadSchema?: {
|
|
12281
|
-
type:
|
|
12370
|
+
type: string;
|
|
12282
12371
|
name: string;
|
|
12283
12372
|
required?: boolean | undefined;
|
|
12284
12373
|
description?: string | undefined;
|
|
@@ -12289,7 +12378,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12289
12378
|
event: string;
|
|
12290
12379
|
description?: string | undefined;
|
|
12291
12380
|
payloadSchema?: {
|
|
12292
|
-
type:
|
|
12381
|
+
type: string;
|
|
12293
12382
|
name: string;
|
|
12294
12383
|
required?: boolean | undefined;
|
|
12295
12384
|
description?: string | undefined;
|
|
@@ -12375,7 +12464,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12375
12464
|
event: string;
|
|
12376
12465
|
description?: string | undefined;
|
|
12377
12466
|
payloadSchema?: {
|
|
12378
|
-
type:
|
|
12467
|
+
type: string;
|
|
12379
12468
|
name: string;
|
|
12380
12469
|
required?: boolean | undefined;
|
|
12381
12470
|
description?: string | undefined;
|
|
@@ -12429,7 +12518,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12429
12518
|
key: string;
|
|
12430
12519
|
description?: string | undefined;
|
|
12431
12520
|
payloadSchema?: {
|
|
12432
|
-
type:
|
|
12521
|
+
type: string;
|
|
12433
12522
|
name: string;
|
|
12434
12523
|
required?: boolean | undefined;
|
|
12435
12524
|
}[] | undefined;
|
|
@@ -12481,7 +12570,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12481
12570
|
event: string;
|
|
12482
12571
|
description?: string | undefined;
|
|
12483
12572
|
payloadSchema?: {
|
|
12484
|
-
type:
|
|
12573
|
+
type: string;
|
|
12485
12574
|
name: string;
|
|
12486
12575
|
required?: boolean | undefined;
|
|
12487
12576
|
description?: string | undefined;
|
|
@@ -12535,7 +12624,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12535
12624
|
key: string;
|
|
12536
12625
|
description?: string | undefined;
|
|
12537
12626
|
payloadSchema?: {
|
|
12538
|
-
type:
|
|
12627
|
+
type: string;
|
|
12539
12628
|
name: string;
|
|
12540
12629
|
required?: boolean | undefined;
|
|
12541
12630
|
}[] | undefined;
|
|
@@ -12755,14 +12844,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12755
12844
|
description: z.ZodOptional<z.ZodString>;
|
|
12756
12845
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12757
12846
|
name: z.ZodString;
|
|
12758
|
-
type: z.
|
|
12847
|
+
type: z.ZodString;
|
|
12759
12848
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
12760
12849
|
}, "strip", z.ZodTypeAny, {
|
|
12761
|
-
type:
|
|
12850
|
+
type: string;
|
|
12762
12851
|
name: string;
|
|
12763
12852
|
required?: boolean | undefined;
|
|
12764
12853
|
}, {
|
|
12765
|
-
type:
|
|
12854
|
+
type: string;
|
|
12766
12855
|
name: string;
|
|
12767
12856
|
required?: boolean | undefined;
|
|
12768
12857
|
}>, "many">>;
|
|
@@ -12773,7 +12862,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12773
12862
|
key: string;
|
|
12774
12863
|
description?: string | undefined;
|
|
12775
12864
|
payloadSchema?: {
|
|
12776
|
-
type:
|
|
12865
|
+
type: string;
|
|
12777
12866
|
name: string;
|
|
12778
12867
|
required?: boolean | undefined;
|
|
12779
12868
|
}[] | undefined;
|
|
@@ -12784,7 +12873,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12784
12873
|
key: string;
|
|
12785
12874
|
description?: string | undefined;
|
|
12786
12875
|
payloadSchema?: {
|
|
12787
|
-
type:
|
|
12876
|
+
type: string;
|
|
12788
12877
|
name: string;
|
|
12789
12878
|
required?: boolean | undefined;
|
|
12790
12879
|
}[] | undefined;
|
|
@@ -12832,7 +12921,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12832
12921
|
key: string;
|
|
12833
12922
|
description?: string | undefined;
|
|
12834
12923
|
payloadSchema?: {
|
|
12835
|
-
type:
|
|
12924
|
+
type: string;
|
|
12836
12925
|
name: string;
|
|
12837
12926
|
required?: boolean | undefined;
|
|
12838
12927
|
}[] | undefined;
|
|
@@ -12867,7 +12956,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12867
12956
|
key: string;
|
|
12868
12957
|
description?: string | undefined;
|
|
12869
12958
|
payloadSchema?: {
|
|
12870
|
-
type:
|
|
12959
|
+
type: string;
|
|
12871
12960
|
name: string;
|
|
12872
12961
|
required?: boolean | undefined;
|
|
12873
12962
|
}[] | undefined;
|
|
@@ -12934,18 +13023,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12934
13023
|
description: z.ZodOptional<z.ZodString>;
|
|
12935
13024
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12936
13025
|
name: z.ZodString;
|
|
12937
|
-
type: z.
|
|
13026
|
+
type: z.ZodString;
|
|
12938
13027
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
12939
13028
|
description: z.ZodOptional<z.ZodString>;
|
|
12940
13029
|
entityType: z.ZodOptional<z.ZodString>;
|
|
12941
13030
|
}, "strip", z.ZodTypeAny, {
|
|
12942
|
-
type:
|
|
13031
|
+
type: string;
|
|
12943
13032
|
name: string;
|
|
12944
13033
|
required?: boolean | undefined;
|
|
12945
13034
|
description?: string | undefined;
|
|
12946
13035
|
entityType?: string | undefined;
|
|
12947
13036
|
}, {
|
|
12948
|
-
type:
|
|
13037
|
+
type: string;
|
|
12949
13038
|
name: string;
|
|
12950
13039
|
required?: boolean | undefined;
|
|
12951
13040
|
description?: string | undefined;
|
|
@@ -12956,7 +13045,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12956
13045
|
event: string;
|
|
12957
13046
|
description?: string | undefined;
|
|
12958
13047
|
payloadSchema?: {
|
|
12959
|
-
type:
|
|
13048
|
+
type: string;
|
|
12960
13049
|
name: string;
|
|
12961
13050
|
required?: boolean | undefined;
|
|
12962
13051
|
description?: string | undefined;
|
|
@@ -12967,7 +13056,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12967
13056
|
event: string;
|
|
12968
13057
|
description?: string | undefined;
|
|
12969
13058
|
payloadSchema?: {
|
|
12970
|
-
type:
|
|
13059
|
+
type: string;
|
|
12971
13060
|
name: string;
|
|
12972
13061
|
required?: boolean | undefined;
|
|
12973
13062
|
description?: string | undefined;
|
|
@@ -13053,7 +13142,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13053
13142
|
event: string;
|
|
13054
13143
|
description?: string | undefined;
|
|
13055
13144
|
payloadSchema?: {
|
|
13056
|
-
type:
|
|
13145
|
+
type: string;
|
|
13057
13146
|
name: string;
|
|
13058
13147
|
required?: boolean | undefined;
|
|
13059
13148
|
description?: string | undefined;
|
|
@@ -13107,7 +13196,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13107
13196
|
key: string;
|
|
13108
13197
|
description?: string | undefined;
|
|
13109
13198
|
payloadSchema?: {
|
|
13110
|
-
type:
|
|
13199
|
+
type: string;
|
|
13111
13200
|
name: string;
|
|
13112
13201
|
required?: boolean | undefined;
|
|
13113
13202
|
}[] | undefined;
|
|
@@ -13159,7 +13248,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13159
13248
|
event: string;
|
|
13160
13249
|
description?: string | undefined;
|
|
13161
13250
|
payloadSchema?: {
|
|
13162
|
-
type:
|
|
13251
|
+
type: string;
|
|
13163
13252
|
name: string;
|
|
13164
13253
|
required?: boolean | undefined;
|
|
13165
13254
|
description?: string | undefined;
|
|
@@ -13213,7 +13302,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13213
13302
|
key: string;
|
|
13214
13303
|
description?: string | undefined;
|
|
13215
13304
|
payloadSchema?: {
|
|
13216
|
-
type:
|
|
13305
|
+
type: string;
|
|
13217
13306
|
name: string;
|
|
13218
13307
|
required?: boolean | undefined;
|
|
13219
13308
|
}[] | undefined;
|
|
@@ -13271,7 +13360,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13271
13360
|
event: string;
|
|
13272
13361
|
description?: string | undefined;
|
|
13273
13362
|
payloadSchema?: {
|
|
13274
|
-
type:
|
|
13363
|
+
type: string;
|
|
13275
13364
|
name: string;
|
|
13276
13365
|
required?: boolean | undefined;
|
|
13277
13366
|
description?: string | undefined;
|
|
@@ -13325,7 +13414,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13325
13414
|
key: string;
|
|
13326
13415
|
description?: string | undefined;
|
|
13327
13416
|
payloadSchema?: {
|
|
13328
|
-
type:
|
|
13417
|
+
type: string;
|
|
13329
13418
|
name: string;
|
|
13330
13419
|
required?: boolean | undefined;
|
|
13331
13420
|
}[] | undefined;
|
|
@@ -13389,7 +13478,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13389
13478
|
event: string;
|
|
13390
13479
|
description?: string | undefined;
|
|
13391
13480
|
payloadSchema?: {
|
|
13392
|
-
type:
|
|
13481
|
+
type: string;
|
|
13393
13482
|
name: string;
|
|
13394
13483
|
required?: boolean | undefined;
|
|
13395
13484
|
description?: string | undefined;
|
|
@@ -13443,7 +13532,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13443
13532
|
key: string;
|
|
13444
13533
|
description?: string | undefined;
|
|
13445
13534
|
payloadSchema?: {
|
|
13446
|
-
type:
|
|
13535
|
+
type: string;
|
|
13447
13536
|
name: string;
|
|
13448
13537
|
required?: boolean | undefined;
|
|
13449
13538
|
}[] | undefined;
|
|
@@ -13512,18 +13601,18 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13512
13601
|
description: z.ZodOptional<z.ZodString>;
|
|
13513
13602
|
payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13514
13603
|
name: z.ZodString;
|
|
13515
|
-
type: z.
|
|
13604
|
+
type: z.ZodString;
|
|
13516
13605
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
13517
13606
|
description: z.ZodOptional<z.ZodString>;
|
|
13518
13607
|
entityType: z.ZodOptional<z.ZodString>;
|
|
13519
13608
|
}, "strip", z.ZodTypeAny, {
|
|
13520
|
-
type:
|
|
13609
|
+
type: string;
|
|
13521
13610
|
name: string;
|
|
13522
13611
|
required?: boolean | undefined;
|
|
13523
13612
|
description?: string | undefined;
|
|
13524
13613
|
entityType?: string | undefined;
|
|
13525
13614
|
}, {
|
|
13526
|
-
type:
|
|
13615
|
+
type: string;
|
|
13527
13616
|
name: string;
|
|
13528
13617
|
required?: boolean | undefined;
|
|
13529
13618
|
description?: string | undefined;
|
|
@@ -13539,7 +13628,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13539
13628
|
originalEvent: string;
|
|
13540
13629
|
description?: string | undefined;
|
|
13541
13630
|
payload?: {
|
|
13542
|
-
type:
|
|
13631
|
+
type: string;
|
|
13543
13632
|
name: string;
|
|
13544
13633
|
required?: boolean | undefined;
|
|
13545
13634
|
description?: string | undefined;
|
|
@@ -13555,7 +13644,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13555
13644
|
originalEvent: string;
|
|
13556
13645
|
description?: string | undefined;
|
|
13557
13646
|
payload?: {
|
|
13558
|
-
type:
|
|
13647
|
+
type: string;
|
|
13559
13648
|
name: string;
|
|
13560
13649
|
required?: boolean | undefined;
|
|
13561
13650
|
description?: string | undefined;
|
|
@@ -13787,7 +13876,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13787
13876
|
event: string;
|
|
13788
13877
|
description?: string | undefined;
|
|
13789
13878
|
payloadSchema?: {
|
|
13790
|
-
type:
|
|
13879
|
+
type: string;
|
|
13791
13880
|
name: string;
|
|
13792
13881
|
required?: boolean | undefined;
|
|
13793
13882
|
description?: string | undefined;
|
|
@@ -13841,7 +13930,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13841
13930
|
key: string;
|
|
13842
13931
|
description?: string | undefined;
|
|
13843
13932
|
payloadSchema?: {
|
|
13844
|
-
type:
|
|
13933
|
+
type: string;
|
|
13845
13934
|
name: string;
|
|
13846
13935
|
required?: boolean | undefined;
|
|
13847
13936
|
}[] | undefined;
|
|
@@ -13901,7 +13990,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13901
13990
|
event: string;
|
|
13902
13991
|
description?: string | undefined;
|
|
13903
13992
|
payloadSchema?: {
|
|
13904
|
-
type:
|
|
13993
|
+
type: string;
|
|
13905
13994
|
name: string;
|
|
13906
13995
|
required?: boolean | undefined;
|
|
13907
13996
|
description?: string | undefined;
|
|
@@ -13955,7 +14044,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13955
14044
|
key: string;
|
|
13956
14045
|
description?: string | undefined;
|
|
13957
14046
|
payloadSchema?: {
|
|
13958
|
-
type:
|
|
14047
|
+
type: string;
|
|
13959
14048
|
name: string;
|
|
13960
14049
|
required?: boolean | undefined;
|
|
13961
14050
|
}[] | undefined;
|
|
@@ -14033,7 +14122,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14033
14122
|
originalEvent: string;
|
|
14034
14123
|
description?: string | undefined;
|
|
14035
14124
|
payload?: {
|
|
14036
|
-
type:
|
|
14125
|
+
type: string;
|
|
14037
14126
|
name: string;
|
|
14038
14127
|
required?: boolean | undefined;
|
|
14039
14128
|
description?: string | undefined;
|
|
@@ -14185,7 +14274,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14185
14274
|
event: string;
|
|
14186
14275
|
description?: string | undefined;
|
|
14187
14276
|
payloadSchema?: {
|
|
14188
|
-
type:
|
|
14277
|
+
type: string;
|
|
14189
14278
|
name: string;
|
|
14190
14279
|
required?: boolean | undefined;
|
|
14191
14280
|
description?: string | undefined;
|
|
@@ -14239,7 +14328,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14239
14328
|
key: string;
|
|
14240
14329
|
description?: string | undefined;
|
|
14241
14330
|
payloadSchema?: {
|
|
14242
|
-
type:
|
|
14331
|
+
type: string;
|
|
14243
14332
|
name: string;
|
|
14244
14333
|
required?: boolean | undefined;
|
|
14245
14334
|
}[] | undefined;
|
|
@@ -14299,7 +14388,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14299
14388
|
event: string;
|
|
14300
14389
|
description?: string | undefined;
|
|
14301
14390
|
payloadSchema?: {
|
|
14302
|
-
type:
|
|
14391
|
+
type: string;
|
|
14303
14392
|
name: string;
|
|
14304
14393
|
required?: boolean | undefined;
|
|
14305
14394
|
description?: string | undefined;
|
|
@@ -14353,7 +14442,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14353
14442
|
key: string;
|
|
14354
14443
|
description?: string | undefined;
|
|
14355
14444
|
payloadSchema?: {
|
|
14356
|
-
type:
|
|
14445
|
+
type: string;
|
|
14357
14446
|
name: string;
|
|
14358
14447
|
required?: boolean | undefined;
|
|
14359
14448
|
}[] | undefined;
|
|
@@ -14431,7 +14520,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14431
14520
|
originalEvent: string;
|
|
14432
14521
|
description?: string | undefined;
|
|
14433
14522
|
payload?: {
|
|
14434
|
-
type:
|
|
14523
|
+
type: string;
|
|
14435
14524
|
name: string;
|
|
14436
14525
|
required?: boolean | undefined;
|
|
14437
14526
|
description?: string | undefined;
|
|
@@ -14995,14 +15084,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14995
15084
|
description: z.ZodOptional<z.ZodString>;
|
|
14996
15085
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14997
15086
|
name: z.ZodString;
|
|
14998
|
-
type: z.
|
|
15087
|
+
type: z.ZodString;
|
|
14999
15088
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
15000
15089
|
}, "strip", z.ZodTypeAny, {
|
|
15001
|
-
type:
|
|
15090
|
+
type: string;
|
|
15002
15091
|
name: string;
|
|
15003
15092
|
required?: boolean | undefined;
|
|
15004
15093
|
}, {
|
|
15005
|
-
type:
|
|
15094
|
+
type: string;
|
|
15006
15095
|
name: string;
|
|
15007
15096
|
required?: boolean | undefined;
|
|
15008
15097
|
}>, "many">>;
|
|
@@ -15013,7 +15102,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15013
15102
|
key: string;
|
|
15014
15103
|
description?: string | undefined;
|
|
15015
15104
|
payloadSchema?: {
|
|
15016
|
-
type:
|
|
15105
|
+
type: string;
|
|
15017
15106
|
name: string;
|
|
15018
15107
|
required?: boolean | undefined;
|
|
15019
15108
|
}[] | undefined;
|
|
@@ -15024,7 +15113,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15024
15113
|
key: string;
|
|
15025
15114
|
description?: string | undefined;
|
|
15026
15115
|
payloadSchema?: {
|
|
15027
|
-
type:
|
|
15116
|
+
type: string;
|
|
15028
15117
|
name: string;
|
|
15029
15118
|
required?: boolean | undefined;
|
|
15030
15119
|
}[] | undefined;
|
|
@@ -15072,7 +15161,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15072
15161
|
key: string;
|
|
15073
15162
|
description?: string | undefined;
|
|
15074
15163
|
payloadSchema?: {
|
|
15075
|
-
type:
|
|
15164
|
+
type: string;
|
|
15076
15165
|
name: string;
|
|
15077
15166
|
required?: boolean | undefined;
|
|
15078
15167
|
}[] | undefined;
|
|
@@ -15107,7 +15196,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15107
15196
|
key: string;
|
|
15108
15197
|
description?: string | undefined;
|
|
15109
15198
|
payloadSchema?: {
|
|
15110
|
-
type:
|
|
15199
|
+
type: string;
|
|
15111
15200
|
name: string;
|
|
15112
15201
|
required?: boolean | undefined;
|
|
15113
15202
|
}[] | undefined;
|
|
@@ -15174,18 +15263,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15174
15263
|
description: z.ZodOptional<z.ZodString>;
|
|
15175
15264
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15176
15265
|
name: z.ZodString;
|
|
15177
|
-
type: z.
|
|
15266
|
+
type: z.ZodString;
|
|
15178
15267
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
15179
15268
|
description: z.ZodOptional<z.ZodString>;
|
|
15180
15269
|
entityType: z.ZodOptional<z.ZodString>;
|
|
15181
15270
|
}, "strip", z.ZodTypeAny, {
|
|
15182
|
-
type:
|
|
15271
|
+
type: string;
|
|
15183
15272
|
name: string;
|
|
15184
15273
|
required?: boolean | undefined;
|
|
15185
15274
|
description?: string | undefined;
|
|
15186
15275
|
entityType?: string | undefined;
|
|
15187
15276
|
}, {
|
|
15188
|
-
type:
|
|
15277
|
+
type: string;
|
|
15189
15278
|
name: string;
|
|
15190
15279
|
required?: boolean | undefined;
|
|
15191
15280
|
description?: string | undefined;
|
|
@@ -15196,7 +15285,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15196
15285
|
event: string;
|
|
15197
15286
|
description?: string | undefined;
|
|
15198
15287
|
payloadSchema?: {
|
|
15199
|
-
type:
|
|
15288
|
+
type: string;
|
|
15200
15289
|
name: string;
|
|
15201
15290
|
required?: boolean | undefined;
|
|
15202
15291
|
description?: string | undefined;
|
|
@@ -15207,7 +15296,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15207
15296
|
event: string;
|
|
15208
15297
|
description?: string | undefined;
|
|
15209
15298
|
payloadSchema?: {
|
|
15210
|
-
type:
|
|
15299
|
+
type: string;
|
|
15211
15300
|
name: string;
|
|
15212
15301
|
required?: boolean | undefined;
|
|
15213
15302
|
description?: string | undefined;
|
|
@@ -15293,7 +15382,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15293
15382
|
event: string;
|
|
15294
15383
|
description?: string | undefined;
|
|
15295
15384
|
payloadSchema?: {
|
|
15296
|
-
type:
|
|
15385
|
+
type: string;
|
|
15297
15386
|
name: string;
|
|
15298
15387
|
required?: boolean | undefined;
|
|
15299
15388
|
description?: string | undefined;
|
|
@@ -15347,7 +15436,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15347
15436
|
key: string;
|
|
15348
15437
|
description?: string | undefined;
|
|
15349
15438
|
payloadSchema?: {
|
|
15350
|
-
type:
|
|
15439
|
+
type: string;
|
|
15351
15440
|
name: string;
|
|
15352
15441
|
required?: boolean | undefined;
|
|
15353
15442
|
}[] | undefined;
|
|
@@ -15399,7 +15488,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15399
15488
|
event: string;
|
|
15400
15489
|
description?: string | undefined;
|
|
15401
15490
|
payloadSchema?: {
|
|
15402
|
-
type:
|
|
15491
|
+
type: string;
|
|
15403
15492
|
name: string;
|
|
15404
15493
|
required?: boolean | undefined;
|
|
15405
15494
|
description?: string | undefined;
|
|
@@ -15453,7 +15542,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15453
15542
|
key: string;
|
|
15454
15543
|
description?: string | undefined;
|
|
15455
15544
|
payloadSchema?: {
|
|
15456
|
-
type:
|
|
15545
|
+
type: string;
|
|
15457
15546
|
name: string;
|
|
15458
15547
|
required?: boolean | undefined;
|
|
15459
15548
|
}[] | undefined;
|
|
@@ -15673,14 +15762,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15673
15762
|
description: z.ZodOptional<z.ZodString>;
|
|
15674
15763
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15675
15764
|
name: z.ZodString;
|
|
15676
|
-
type: z.
|
|
15765
|
+
type: z.ZodString;
|
|
15677
15766
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
15678
15767
|
}, "strip", z.ZodTypeAny, {
|
|
15679
|
-
type:
|
|
15768
|
+
type: string;
|
|
15680
15769
|
name: string;
|
|
15681
15770
|
required?: boolean | undefined;
|
|
15682
15771
|
}, {
|
|
15683
|
-
type:
|
|
15772
|
+
type: string;
|
|
15684
15773
|
name: string;
|
|
15685
15774
|
required?: boolean | undefined;
|
|
15686
15775
|
}>, "many">>;
|
|
@@ -15691,7 +15780,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15691
15780
|
key: string;
|
|
15692
15781
|
description?: string | undefined;
|
|
15693
15782
|
payloadSchema?: {
|
|
15694
|
-
type:
|
|
15783
|
+
type: string;
|
|
15695
15784
|
name: string;
|
|
15696
15785
|
required?: boolean | undefined;
|
|
15697
15786
|
}[] | undefined;
|
|
@@ -15702,7 +15791,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15702
15791
|
key: string;
|
|
15703
15792
|
description?: string | undefined;
|
|
15704
15793
|
payloadSchema?: {
|
|
15705
|
-
type:
|
|
15794
|
+
type: string;
|
|
15706
15795
|
name: string;
|
|
15707
15796
|
required?: boolean | undefined;
|
|
15708
15797
|
}[] | undefined;
|
|
@@ -15750,7 +15839,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15750
15839
|
key: string;
|
|
15751
15840
|
description?: string | undefined;
|
|
15752
15841
|
payloadSchema?: {
|
|
15753
|
-
type:
|
|
15842
|
+
type: string;
|
|
15754
15843
|
name: string;
|
|
15755
15844
|
required?: boolean | undefined;
|
|
15756
15845
|
}[] | undefined;
|
|
@@ -15785,7 +15874,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15785
15874
|
key: string;
|
|
15786
15875
|
description?: string | undefined;
|
|
15787
15876
|
payloadSchema?: {
|
|
15788
|
-
type:
|
|
15877
|
+
type: string;
|
|
15789
15878
|
name: string;
|
|
15790
15879
|
required?: boolean | undefined;
|
|
15791
15880
|
}[] | undefined;
|
|
@@ -15852,18 +15941,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15852
15941
|
description: z.ZodOptional<z.ZodString>;
|
|
15853
15942
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15854
15943
|
name: z.ZodString;
|
|
15855
|
-
type: z.
|
|
15944
|
+
type: z.ZodString;
|
|
15856
15945
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
15857
15946
|
description: z.ZodOptional<z.ZodString>;
|
|
15858
15947
|
entityType: z.ZodOptional<z.ZodString>;
|
|
15859
15948
|
}, "strip", z.ZodTypeAny, {
|
|
15860
|
-
type:
|
|
15949
|
+
type: string;
|
|
15861
15950
|
name: string;
|
|
15862
15951
|
required?: boolean | undefined;
|
|
15863
15952
|
description?: string | undefined;
|
|
15864
15953
|
entityType?: string | undefined;
|
|
15865
15954
|
}, {
|
|
15866
|
-
type:
|
|
15955
|
+
type: string;
|
|
15867
15956
|
name: string;
|
|
15868
15957
|
required?: boolean | undefined;
|
|
15869
15958
|
description?: string | undefined;
|
|
@@ -15874,7 +15963,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15874
15963
|
event: string;
|
|
15875
15964
|
description?: string | undefined;
|
|
15876
15965
|
payloadSchema?: {
|
|
15877
|
-
type:
|
|
15966
|
+
type: string;
|
|
15878
15967
|
name: string;
|
|
15879
15968
|
required?: boolean | undefined;
|
|
15880
15969
|
description?: string | undefined;
|
|
@@ -15885,7 +15974,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15885
15974
|
event: string;
|
|
15886
15975
|
description?: string | undefined;
|
|
15887
15976
|
payloadSchema?: {
|
|
15888
|
-
type:
|
|
15977
|
+
type: string;
|
|
15889
15978
|
name: string;
|
|
15890
15979
|
required?: boolean | undefined;
|
|
15891
15980
|
description?: string | undefined;
|
|
@@ -15971,7 +16060,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15971
16060
|
event: string;
|
|
15972
16061
|
description?: string | undefined;
|
|
15973
16062
|
payloadSchema?: {
|
|
15974
|
-
type:
|
|
16063
|
+
type: string;
|
|
15975
16064
|
name: string;
|
|
15976
16065
|
required?: boolean | undefined;
|
|
15977
16066
|
description?: string | undefined;
|
|
@@ -16025,7 +16114,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16025
16114
|
key: string;
|
|
16026
16115
|
description?: string | undefined;
|
|
16027
16116
|
payloadSchema?: {
|
|
16028
|
-
type:
|
|
16117
|
+
type: string;
|
|
16029
16118
|
name: string;
|
|
16030
16119
|
required?: boolean | undefined;
|
|
16031
16120
|
}[] | undefined;
|
|
@@ -16077,7 +16166,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16077
16166
|
event: string;
|
|
16078
16167
|
description?: string | undefined;
|
|
16079
16168
|
payloadSchema?: {
|
|
16080
|
-
type:
|
|
16169
|
+
type: string;
|
|
16081
16170
|
name: string;
|
|
16082
16171
|
required?: boolean | undefined;
|
|
16083
16172
|
description?: string | undefined;
|
|
@@ -16131,7 +16220,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16131
16220
|
key: string;
|
|
16132
16221
|
description?: string | undefined;
|
|
16133
16222
|
payloadSchema?: {
|
|
16134
|
-
type:
|
|
16223
|
+
type: string;
|
|
16135
16224
|
name: string;
|
|
16136
16225
|
required?: boolean | undefined;
|
|
16137
16226
|
}[] | undefined;
|
|
@@ -16189,7 +16278,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16189
16278
|
event: string;
|
|
16190
16279
|
description?: string | undefined;
|
|
16191
16280
|
payloadSchema?: {
|
|
16192
|
-
type:
|
|
16281
|
+
type: string;
|
|
16193
16282
|
name: string;
|
|
16194
16283
|
required?: boolean | undefined;
|
|
16195
16284
|
description?: string | undefined;
|
|
@@ -16243,7 +16332,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16243
16332
|
key: string;
|
|
16244
16333
|
description?: string | undefined;
|
|
16245
16334
|
payloadSchema?: {
|
|
16246
|
-
type:
|
|
16335
|
+
type: string;
|
|
16247
16336
|
name: string;
|
|
16248
16337
|
required?: boolean | undefined;
|
|
16249
16338
|
}[] | undefined;
|
|
@@ -16307,7 +16396,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16307
16396
|
event: string;
|
|
16308
16397
|
description?: string | undefined;
|
|
16309
16398
|
payloadSchema?: {
|
|
16310
|
-
type:
|
|
16399
|
+
type: string;
|
|
16311
16400
|
name: string;
|
|
16312
16401
|
required?: boolean | undefined;
|
|
16313
16402
|
description?: string | undefined;
|
|
@@ -16361,7 +16450,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16361
16450
|
key: string;
|
|
16362
16451
|
description?: string | undefined;
|
|
16363
16452
|
payloadSchema?: {
|
|
16364
|
-
type:
|
|
16453
|
+
type: string;
|
|
16365
16454
|
name: string;
|
|
16366
16455
|
required?: boolean | undefined;
|
|
16367
16456
|
}[] | undefined;
|
|
@@ -16430,18 +16519,18 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16430
16519
|
description: z.ZodOptional<z.ZodString>;
|
|
16431
16520
|
payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16432
16521
|
name: z.ZodString;
|
|
16433
|
-
type: z.
|
|
16522
|
+
type: z.ZodString;
|
|
16434
16523
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
16435
16524
|
description: z.ZodOptional<z.ZodString>;
|
|
16436
16525
|
entityType: z.ZodOptional<z.ZodString>;
|
|
16437
16526
|
}, "strip", z.ZodTypeAny, {
|
|
16438
|
-
type:
|
|
16527
|
+
type: string;
|
|
16439
16528
|
name: string;
|
|
16440
16529
|
required?: boolean | undefined;
|
|
16441
16530
|
description?: string | undefined;
|
|
16442
16531
|
entityType?: string | undefined;
|
|
16443
16532
|
}, {
|
|
16444
|
-
type:
|
|
16533
|
+
type: string;
|
|
16445
16534
|
name: string;
|
|
16446
16535
|
required?: boolean | undefined;
|
|
16447
16536
|
description?: string | undefined;
|
|
@@ -16457,7 +16546,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16457
16546
|
originalEvent: string;
|
|
16458
16547
|
description?: string | undefined;
|
|
16459
16548
|
payload?: {
|
|
16460
|
-
type:
|
|
16549
|
+
type: string;
|
|
16461
16550
|
name: string;
|
|
16462
16551
|
required?: boolean | undefined;
|
|
16463
16552
|
description?: string | undefined;
|
|
@@ -16473,7 +16562,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16473
16562
|
originalEvent: string;
|
|
16474
16563
|
description?: string | undefined;
|
|
16475
16564
|
payload?: {
|
|
16476
|
-
type:
|
|
16565
|
+
type: string;
|
|
16477
16566
|
name: string;
|
|
16478
16567
|
required?: boolean | undefined;
|
|
16479
16568
|
description?: string | undefined;
|
|
@@ -16705,7 +16794,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16705
16794
|
event: string;
|
|
16706
16795
|
description?: string | undefined;
|
|
16707
16796
|
payloadSchema?: {
|
|
16708
|
-
type:
|
|
16797
|
+
type: string;
|
|
16709
16798
|
name: string;
|
|
16710
16799
|
required?: boolean | undefined;
|
|
16711
16800
|
description?: string | undefined;
|
|
@@ -16759,7 +16848,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16759
16848
|
key: string;
|
|
16760
16849
|
description?: string | undefined;
|
|
16761
16850
|
payloadSchema?: {
|
|
16762
|
-
type:
|
|
16851
|
+
type: string;
|
|
16763
16852
|
name: string;
|
|
16764
16853
|
required?: boolean | undefined;
|
|
16765
16854
|
}[] | undefined;
|
|
@@ -16819,7 +16908,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16819
16908
|
event: string;
|
|
16820
16909
|
description?: string | undefined;
|
|
16821
16910
|
payloadSchema?: {
|
|
16822
|
-
type:
|
|
16911
|
+
type: string;
|
|
16823
16912
|
name: string;
|
|
16824
16913
|
required?: boolean | undefined;
|
|
16825
16914
|
description?: string | undefined;
|
|
@@ -16873,7 +16962,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16873
16962
|
key: string;
|
|
16874
16963
|
description?: string | undefined;
|
|
16875
16964
|
payloadSchema?: {
|
|
16876
|
-
type:
|
|
16965
|
+
type: string;
|
|
16877
16966
|
name: string;
|
|
16878
16967
|
required?: boolean | undefined;
|
|
16879
16968
|
}[] | undefined;
|
|
@@ -16951,7 +17040,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16951
17040
|
originalEvent: string;
|
|
16952
17041
|
description?: string | undefined;
|
|
16953
17042
|
payload?: {
|
|
16954
|
-
type:
|
|
17043
|
+
type: string;
|
|
16955
17044
|
name: string;
|
|
16956
17045
|
required?: boolean | undefined;
|
|
16957
17046
|
description?: string | undefined;
|
|
@@ -17103,7 +17192,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17103
17192
|
event: string;
|
|
17104
17193
|
description?: string | undefined;
|
|
17105
17194
|
payloadSchema?: {
|
|
17106
|
-
type:
|
|
17195
|
+
type: string;
|
|
17107
17196
|
name: string;
|
|
17108
17197
|
required?: boolean | undefined;
|
|
17109
17198
|
description?: string | undefined;
|
|
@@ -17157,7 +17246,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17157
17246
|
key: string;
|
|
17158
17247
|
description?: string | undefined;
|
|
17159
17248
|
payloadSchema?: {
|
|
17160
|
-
type:
|
|
17249
|
+
type: string;
|
|
17161
17250
|
name: string;
|
|
17162
17251
|
required?: boolean | undefined;
|
|
17163
17252
|
}[] | undefined;
|
|
@@ -17217,7 +17306,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17217
17306
|
event: string;
|
|
17218
17307
|
description?: string | undefined;
|
|
17219
17308
|
payloadSchema?: {
|
|
17220
|
-
type:
|
|
17309
|
+
type: string;
|
|
17221
17310
|
name: string;
|
|
17222
17311
|
required?: boolean | undefined;
|
|
17223
17312
|
description?: string | undefined;
|
|
@@ -17271,7 +17360,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17271
17360
|
key: string;
|
|
17272
17361
|
description?: string | undefined;
|
|
17273
17362
|
payloadSchema?: {
|
|
17274
|
-
type:
|
|
17363
|
+
type: string;
|
|
17275
17364
|
name: string;
|
|
17276
17365
|
required?: boolean | undefined;
|
|
17277
17366
|
}[] | undefined;
|
|
@@ -17349,7 +17438,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17349
17438
|
originalEvent: string;
|
|
17350
17439
|
description?: string | undefined;
|
|
17351
17440
|
payload?: {
|
|
17352
|
-
type:
|
|
17441
|
+
type: string;
|
|
17353
17442
|
name: string;
|
|
17354
17443
|
required?: boolean | undefined;
|
|
17355
17444
|
description?: string | undefined;
|
|
@@ -18154,14 +18243,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18154
18243
|
description: z.ZodOptional<z.ZodString>;
|
|
18155
18244
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18156
18245
|
name: z.ZodString;
|
|
18157
|
-
type: z.
|
|
18246
|
+
type: z.ZodString;
|
|
18158
18247
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
18159
18248
|
}, "strip", z.ZodTypeAny, {
|
|
18160
|
-
type:
|
|
18249
|
+
type: string;
|
|
18161
18250
|
name: string;
|
|
18162
18251
|
required?: boolean | undefined;
|
|
18163
18252
|
}, {
|
|
18164
|
-
type:
|
|
18253
|
+
type: string;
|
|
18165
18254
|
name: string;
|
|
18166
18255
|
required?: boolean | undefined;
|
|
18167
18256
|
}>, "many">>;
|
|
@@ -18172,7 +18261,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18172
18261
|
key: string;
|
|
18173
18262
|
description?: string | undefined;
|
|
18174
18263
|
payloadSchema?: {
|
|
18175
|
-
type:
|
|
18264
|
+
type: string;
|
|
18176
18265
|
name: string;
|
|
18177
18266
|
required?: boolean | undefined;
|
|
18178
18267
|
}[] | undefined;
|
|
@@ -18183,7 +18272,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18183
18272
|
key: string;
|
|
18184
18273
|
description?: string | undefined;
|
|
18185
18274
|
payloadSchema?: {
|
|
18186
|
-
type:
|
|
18275
|
+
type: string;
|
|
18187
18276
|
name: string;
|
|
18188
18277
|
required?: boolean | undefined;
|
|
18189
18278
|
}[] | undefined;
|
|
@@ -18231,7 +18320,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18231
18320
|
key: string;
|
|
18232
18321
|
description?: string | undefined;
|
|
18233
18322
|
payloadSchema?: {
|
|
18234
|
-
type:
|
|
18323
|
+
type: string;
|
|
18235
18324
|
name: string;
|
|
18236
18325
|
required?: boolean | undefined;
|
|
18237
18326
|
}[] | undefined;
|
|
@@ -18266,7 +18355,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18266
18355
|
key: string;
|
|
18267
18356
|
description?: string | undefined;
|
|
18268
18357
|
payloadSchema?: {
|
|
18269
|
-
type:
|
|
18358
|
+
type: string;
|
|
18270
18359
|
name: string;
|
|
18271
18360
|
required?: boolean | undefined;
|
|
18272
18361
|
}[] | undefined;
|
|
@@ -18333,18 +18422,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18333
18422
|
description: z.ZodOptional<z.ZodString>;
|
|
18334
18423
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18335
18424
|
name: z.ZodString;
|
|
18336
|
-
type: z.
|
|
18425
|
+
type: z.ZodString;
|
|
18337
18426
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
18338
18427
|
description: z.ZodOptional<z.ZodString>;
|
|
18339
18428
|
entityType: z.ZodOptional<z.ZodString>;
|
|
18340
18429
|
}, "strip", z.ZodTypeAny, {
|
|
18341
|
-
type:
|
|
18430
|
+
type: string;
|
|
18342
18431
|
name: string;
|
|
18343
18432
|
required?: boolean | undefined;
|
|
18344
18433
|
description?: string | undefined;
|
|
18345
18434
|
entityType?: string | undefined;
|
|
18346
18435
|
}, {
|
|
18347
|
-
type:
|
|
18436
|
+
type: string;
|
|
18348
18437
|
name: string;
|
|
18349
18438
|
required?: boolean | undefined;
|
|
18350
18439
|
description?: string | undefined;
|
|
@@ -18355,7 +18444,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18355
18444
|
event: string;
|
|
18356
18445
|
description?: string | undefined;
|
|
18357
18446
|
payloadSchema?: {
|
|
18358
|
-
type:
|
|
18447
|
+
type: string;
|
|
18359
18448
|
name: string;
|
|
18360
18449
|
required?: boolean | undefined;
|
|
18361
18450
|
description?: string | undefined;
|
|
@@ -18366,7 +18455,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18366
18455
|
event: string;
|
|
18367
18456
|
description?: string | undefined;
|
|
18368
18457
|
payloadSchema?: {
|
|
18369
|
-
type:
|
|
18458
|
+
type: string;
|
|
18370
18459
|
name: string;
|
|
18371
18460
|
required?: boolean | undefined;
|
|
18372
18461
|
description?: string | undefined;
|
|
@@ -18452,7 +18541,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18452
18541
|
event: string;
|
|
18453
18542
|
description?: string | undefined;
|
|
18454
18543
|
payloadSchema?: {
|
|
18455
|
-
type:
|
|
18544
|
+
type: string;
|
|
18456
18545
|
name: string;
|
|
18457
18546
|
required?: boolean | undefined;
|
|
18458
18547
|
description?: string | undefined;
|
|
@@ -18506,7 +18595,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18506
18595
|
key: string;
|
|
18507
18596
|
description?: string | undefined;
|
|
18508
18597
|
payloadSchema?: {
|
|
18509
|
-
type:
|
|
18598
|
+
type: string;
|
|
18510
18599
|
name: string;
|
|
18511
18600
|
required?: boolean | undefined;
|
|
18512
18601
|
}[] | undefined;
|
|
@@ -18558,7 +18647,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18558
18647
|
event: string;
|
|
18559
18648
|
description?: string | undefined;
|
|
18560
18649
|
payloadSchema?: {
|
|
18561
|
-
type:
|
|
18650
|
+
type: string;
|
|
18562
18651
|
name: string;
|
|
18563
18652
|
required?: boolean | undefined;
|
|
18564
18653
|
description?: string | undefined;
|
|
@@ -18612,7 +18701,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18612
18701
|
key: string;
|
|
18613
18702
|
description?: string | undefined;
|
|
18614
18703
|
payloadSchema?: {
|
|
18615
|
-
type:
|
|
18704
|
+
type: string;
|
|
18616
18705
|
name: string;
|
|
18617
18706
|
required?: boolean | undefined;
|
|
18618
18707
|
}[] | undefined;
|
|
@@ -18832,14 +18921,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18832
18921
|
description: z.ZodOptional<z.ZodString>;
|
|
18833
18922
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18834
18923
|
name: z.ZodString;
|
|
18835
|
-
type: z.
|
|
18924
|
+
type: z.ZodString;
|
|
18836
18925
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
18837
18926
|
}, "strip", z.ZodTypeAny, {
|
|
18838
|
-
type:
|
|
18927
|
+
type: string;
|
|
18839
18928
|
name: string;
|
|
18840
18929
|
required?: boolean | undefined;
|
|
18841
18930
|
}, {
|
|
18842
|
-
type:
|
|
18931
|
+
type: string;
|
|
18843
18932
|
name: string;
|
|
18844
18933
|
required?: boolean | undefined;
|
|
18845
18934
|
}>, "many">>;
|
|
@@ -18850,7 +18939,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18850
18939
|
key: string;
|
|
18851
18940
|
description?: string | undefined;
|
|
18852
18941
|
payloadSchema?: {
|
|
18853
|
-
type:
|
|
18942
|
+
type: string;
|
|
18854
18943
|
name: string;
|
|
18855
18944
|
required?: boolean | undefined;
|
|
18856
18945
|
}[] | undefined;
|
|
@@ -18861,7 +18950,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18861
18950
|
key: string;
|
|
18862
18951
|
description?: string | undefined;
|
|
18863
18952
|
payloadSchema?: {
|
|
18864
|
-
type:
|
|
18953
|
+
type: string;
|
|
18865
18954
|
name: string;
|
|
18866
18955
|
required?: boolean | undefined;
|
|
18867
18956
|
}[] | undefined;
|
|
@@ -18909,7 +18998,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18909
18998
|
key: string;
|
|
18910
18999
|
description?: string | undefined;
|
|
18911
19000
|
payloadSchema?: {
|
|
18912
|
-
type:
|
|
19001
|
+
type: string;
|
|
18913
19002
|
name: string;
|
|
18914
19003
|
required?: boolean | undefined;
|
|
18915
19004
|
}[] | undefined;
|
|
@@ -18944,7 +19033,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18944
19033
|
key: string;
|
|
18945
19034
|
description?: string | undefined;
|
|
18946
19035
|
payloadSchema?: {
|
|
18947
|
-
type:
|
|
19036
|
+
type: string;
|
|
18948
19037
|
name: string;
|
|
18949
19038
|
required?: boolean | undefined;
|
|
18950
19039
|
}[] | undefined;
|
|
@@ -19011,18 +19100,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19011
19100
|
description: z.ZodOptional<z.ZodString>;
|
|
19012
19101
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19013
19102
|
name: z.ZodString;
|
|
19014
|
-
type: z.
|
|
19103
|
+
type: z.ZodString;
|
|
19015
19104
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
19016
19105
|
description: z.ZodOptional<z.ZodString>;
|
|
19017
19106
|
entityType: z.ZodOptional<z.ZodString>;
|
|
19018
19107
|
}, "strip", z.ZodTypeAny, {
|
|
19019
|
-
type:
|
|
19108
|
+
type: string;
|
|
19020
19109
|
name: string;
|
|
19021
19110
|
required?: boolean | undefined;
|
|
19022
19111
|
description?: string | undefined;
|
|
19023
19112
|
entityType?: string | undefined;
|
|
19024
19113
|
}, {
|
|
19025
|
-
type:
|
|
19114
|
+
type: string;
|
|
19026
19115
|
name: string;
|
|
19027
19116
|
required?: boolean | undefined;
|
|
19028
19117
|
description?: string | undefined;
|
|
@@ -19033,7 +19122,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19033
19122
|
event: string;
|
|
19034
19123
|
description?: string | undefined;
|
|
19035
19124
|
payloadSchema?: {
|
|
19036
|
-
type:
|
|
19125
|
+
type: string;
|
|
19037
19126
|
name: string;
|
|
19038
19127
|
required?: boolean | undefined;
|
|
19039
19128
|
description?: string | undefined;
|
|
@@ -19044,7 +19133,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19044
19133
|
event: string;
|
|
19045
19134
|
description?: string | undefined;
|
|
19046
19135
|
payloadSchema?: {
|
|
19047
|
-
type:
|
|
19136
|
+
type: string;
|
|
19048
19137
|
name: string;
|
|
19049
19138
|
required?: boolean | undefined;
|
|
19050
19139
|
description?: string | undefined;
|
|
@@ -19130,7 +19219,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19130
19219
|
event: string;
|
|
19131
19220
|
description?: string | undefined;
|
|
19132
19221
|
payloadSchema?: {
|
|
19133
|
-
type:
|
|
19222
|
+
type: string;
|
|
19134
19223
|
name: string;
|
|
19135
19224
|
required?: boolean | undefined;
|
|
19136
19225
|
description?: string | undefined;
|
|
@@ -19184,7 +19273,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19184
19273
|
key: string;
|
|
19185
19274
|
description?: string | undefined;
|
|
19186
19275
|
payloadSchema?: {
|
|
19187
|
-
type:
|
|
19276
|
+
type: string;
|
|
19188
19277
|
name: string;
|
|
19189
19278
|
required?: boolean | undefined;
|
|
19190
19279
|
}[] | undefined;
|
|
@@ -19236,7 +19325,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19236
19325
|
event: string;
|
|
19237
19326
|
description?: string | undefined;
|
|
19238
19327
|
payloadSchema?: {
|
|
19239
|
-
type:
|
|
19328
|
+
type: string;
|
|
19240
19329
|
name: string;
|
|
19241
19330
|
required?: boolean | undefined;
|
|
19242
19331
|
description?: string | undefined;
|
|
@@ -19290,7 +19379,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19290
19379
|
key: string;
|
|
19291
19380
|
description?: string | undefined;
|
|
19292
19381
|
payloadSchema?: {
|
|
19293
|
-
type:
|
|
19382
|
+
type: string;
|
|
19294
19383
|
name: string;
|
|
19295
19384
|
required?: boolean | undefined;
|
|
19296
19385
|
}[] | undefined;
|
|
@@ -19348,7 +19437,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19348
19437
|
event: string;
|
|
19349
19438
|
description?: string | undefined;
|
|
19350
19439
|
payloadSchema?: {
|
|
19351
|
-
type:
|
|
19440
|
+
type: string;
|
|
19352
19441
|
name: string;
|
|
19353
19442
|
required?: boolean | undefined;
|
|
19354
19443
|
description?: string | undefined;
|
|
@@ -19402,7 +19491,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19402
19491
|
key: string;
|
|
19403
19492
|
description?: string | undefined;
|
|
19404
19493
|
payloadSchema?: {
|
|
19405
|
-
type:
|
|
19494
|
+
type: string;
|
|
19406
19495
|
name: string;
|
|
19407
19496
|
required?: boolean | undefined;
|
|
19408
19497
|
}[] | undefined;
|
|
@@ -19466,7 +19555,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19466
19555
|
event: string;
|
|
19467
19556
|
description?: string | undefined;
|
|
19468
19557
|
payloadSchema?: {
|
|
19469
|
-
type:
|
|
19558
|
+
type: string;
|
|
19470
19559
|
name: string;
|
|
19471
19560
|
required?: boolean | undefined;
|
|
19472
19561
|
description?: string | undefined;
|
|
@@ -19520,7 +19609,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19520
19609
|
key: string;
|
|
19521
19610
|
description?: string | undefined;
|
|
19522
19611
|
payloadSchema?: {
|
|
19523
|
-
type:
|
|
19612
|
+
type: string;
|
|
19524
19613
|
name: string;
|
|
19525
19614
|
required?: boolean | undefined;
|
|
19526
19615
|
}[] | undefined;
|
|
@@ -19589,18 +19678,18 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19589
19678
|
description: z.ZodOptional<z.ZodString>;
|
|
19590
19679
|
payload: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19591
19680
|
name: z.ZodString;
|
|
19592
|
-
type: z.
|
|
19681
|
+
type: z.ZodString;
|
|
19593
19682
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
19594
19683
|
description: z.ZodOptional<z.ZodString>;
|
|
19595
19684
|
entityType: z.ZodOptional<z.ZodString>;
|
|
19596
19685
|
}, "strip", z.ZodTypeAny, {
|
|
19597
|
-
type:
|
|
19686
|
+
type: string;
|
|
19598
19687
|
name: string;
|
|
19599
19688
|
required?: boolean | undefined;
|
|
19600
19689
|
description?: string | undefined;
|
|
19601
19690
|
entityType?: string | undefined;
|
|
19602
19691
|
}, {
|
|
19603
|
-
type:
|
|
19692
|
+
type: string;
|
|
19604
19693
|
name: string;
|
|
19605
19694
|
required?: boolean | undefined;
|
|
19606
19695
|
description?: string | undefined;
|
|
@@ -19616,7 +19705,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19616
19705
|
originalEvent: string;
|
|
19617
19706
|
description?: string | undefined;
|
|
19618
19707
|
payload?: {
|
|
19619
|
-
type:
|
|
19708
|
+
type: string;
|
|
19620
19709
|
name: string;
|
|
19621
19710
|
required?: boolean | undefined;
|
|
19622
19711
|
description?: string | undefined;
|
|
@@ -19632,7 +19721,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19632
19721
|
originalEvent: string;
|
|
19633
19722
|
description?: string | undefined;
|
|
19634
19723
|
payload?: {
|
|
19635
|
-
type:
|
|
19724
|
+
type: string;
|
|
19636
19725
|
name: string;
|
|
19637
19726
|
required?: boolean | undefined;
|
|
19638
19727
|
description?: string | undefined;
|
|
@@ -19864,7 +19953,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19864
19953
|
event: string;
|
|
19865
19954
|
description?: string | undefined;
|
|
19866
19955
|
payloadSchema?: {
|
|
19867
|
-
type:
|
|
19956
|
+
type: string;
|
|
19868
19957
|
name: string;
|
|
19869
19958
|
required?: boolean | undefined;
|
|
19870
19959
|
description?: string | undefined;
|
|
@@ -19918,7 +20007,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19918
20007
|
key: string;
|
|
19919
20008
|
description?: string | undefined;
|
|
19920
20009
|
payloadSchema?: {
|
|
19921
|
-
type:
|
|
20010
|
+
type: string;
|
|
19922
20011
|
name: string;
|
|
19923
20012
|
required?: boolean | undefined;
|
|
19924
20013
|
}[] | undefined;
|
|
@@ -19978,7 +20067,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19978
20067
|
event: string;
|
|
19979
20068
|
description?: string | undefined;
|
|
19980
20069
|
payloadSchema?: {
|
|
19981
|
-
type:
|
|
20070
|
+
type: string;
|
|
19982
20071
|
name: string;
|
|
19983
20072
|
required?: boolean | undefined;
|
|
19984
20073
|
description?: string | undefined;
|
|
@@ -20032,7 +20121,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20032
20121
|
key: string;
|
|
20033
20122
|
description?: string | undefined;
|
|
20034
20123
|
payloadSchema?: {
|
|
20035
|
-
type:
|
|
20124
|
+
type: string;
|
|
20036
20125
|
name: string;
|
|
20037
20126
|
required?: boolean | undefined;
|
|
20038
20127
|
}[] | undefined;
|
|
@@ -20110,7 +20199,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20110
20199
|
originalEvent: string;
|
|
20111
20200
|
description?: string | undefined;
|
|
20112
20201
|
payload?: {
|
|
20113
|
-
type:
|
|
20202
|
+
type: string;
|
|
20114
20203
|
name: string;
|
|
20115
20204
|
required?: boolean | undefined;
|
|
20116
20205
|
description?: string | undefined;
|
|
@@ -20262,7 +20351,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20262
20351
|
event: string;
|
|
20263
20352
|
description?: string | undefined;
|
|
20264
20353
|
payloadSchema?: {
|
|
20265
|
-
type:
|
|
20354
|
+
type: string;
|
|
20266
20355
|
name: string;
|
|
20267
20356
|
required?: boolean | undefined;
|
|
20268
20357
|
description?: string | undefined;
|
|
@@ -20316,7 +20405,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20316
20405
|
key: string;
|
|
20317
20406
|
description?: string | undefined;
|
|
20318
20407
|
payloadSchema?: {
|
|
20319
|
-
type:
|
|
20408
|
+
type: string;
|
|
20320
20409
|
name: string;
|
|
20321
20410
|
required?: boolean | undefined;
|
|
20322
20411
|
}[] | undefined;
|
|
@@ -20376,7 +20465,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20376
20465
|
event: string;
|
|
20377
20466
|
description?: string | undefined;
|
|
20378
20467
|
payloadSchema?: {
|
|
20379
|
-
type:
|
|
20468
|
+
type: string;
|
|
20380
20469
|
name: string;
|
|
20381
20470
|
required?: boolean | undefined;
|
|
20382
20471
|
description?: string | undefined;
|
|
@@ -20430,7 +20519,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20430
20519
|
key: string;
|
|
20431
20520
|
description?: string | undefined;
|
|
20432
20521
|
payloadSchema?: {
|
|
20433
|
-
type:
|
|
20522
|
+
type: string;
|
|
20434
20523
|
name: string;
|
|
20435
20524
|
required?: boolean | undefined;
|
|
20436
20525
|
}[] | undefined;
|
|
@@ -20508,7 +20597,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20508
20597
|
originalEvent: string;
|
|
20509
20598
|
description?: string | undefined;
|
|
20510
20599
|
payload?: {
|
|
20511
|
-
type:
|
|
20600
|
+
type: string;
|
|
20512
20601
|
name: string;
|
|
20513
20602
|
required?: boolean | undefined;
|
|
20514
20603
|
description?: string | undefined;
|
|
@@ -20838,7 +20927,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20838
20927
|
event: string;
|
|
20839
20928
|
description?: string | undefined;
|
|
20840
20929
|
payloadSchema?: {
|
|
20841
|
-
type:
|
|
20930
|
+
type: string;
|
|
20842
20931
|
name: string;
|
|
20843
20932
|
required?: boolean | undefined;
|
|
20844
20933
|
description?: string | undefined;
|
|
@@ -20892,7 +20981,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20892
20981
|
key: string;
|
|
20893
20982
|
description?: string | undefined;
|
|
20894
20983
|
payloadSchema?: {
|
|
20895
|
-
type:
|
|
20984
|
+
type: string;
|
|
20896
20985
|
name: string;
|
|
20897
20986
|
required?: boolean | undefined;
|
|
20898
20987
|
}[] | undefined;
|
|
@@ -20952,7 +21041,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20952
21041
|
event: string;
|
|
20953
21042
|
description?: string | undefined;
|
|
20954
21043
|
payloadSchema?: {
|
|
20955
|
-
type:
|
|
21044
|
+
type: string;
|
|
20956
21045
|
name: string;
|
|
20957
21046
|
required?: boolean | undefined;
|
|
20958
21047
|
description?: string | undefined;
|
|
@@ -21006,7 +21095,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21006
21095
|
key: string;
|
|
21007
21096
|
description?: string | undefined;
|
|
21008
21097
|
payloadSchema?: {
|
|
21009
|
-
type:
|
|
21098
|
+
type: string;
|
|
21010
21099
|
name: string;
|
|
21011
21100
|
required?: boolean | undefined;
|
|
21012
21101
|
}[] | undefined;
|
|
@@ -21084,7 +21173,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21084
21173
|
originalEvent: string;
|
|
21085
21174
|
description?: string | undefined;
|
|
21086
21175
|
payload?: {
|
|
21087
|
-
type:
|
|
21176
|
+
type: string;
|
|
21088
21177
|
name: string;
|
|
21089
21178
|
required?: boolean | undefined;
|
|
21090
21179
|
description?: string | undefined;
|
|
@@ -21325,7 +21414,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21325
21414
|
event: string;
|
|
21326
21415
|
description?: string | undefined;
|
|
21327
21416
|
payloadSchema?: {
|
|
21328
|
-
type:
|
|
21417
|
+
type: string;
|
|
21329
21418
|
name: string;
|
|
21330
21419
|
required?: boolean | undefined;
|
|
21331
21420
|
description?: string | undefined;
|
|
@@ -21379,7 +21468,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21379
21468
|
key: string;
|
|
21380
21469
|
description?: string | undefined;
|
|
21381
21470
|
payloadSchema?: {
|
|
21382
|
-
type:
|
|
21471
|
+
type: string;
|
|
21383
21472
|
name: string;
|
|
21384
21473
|
required?: boolean | undefined;
|
|
21385
21474
|
}[] | undefined;
|
|
@@ -21439,7 +21528,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21439
21528
|
event: string;
|
|
21440
21529
|
description?: string | undefined;
|
|
21441
21530
|
payloadSchema?: {
|
|
21442
|
-
type:
|
|
21531
|
+
type: string;
|
|
21443
21532
|
name: string;
|
|
21444
21533
|
required?: boolean | undefined;
|
|
21445
21534
|
description?: string | undefined;
|
|
@@ -21493,7 +21582,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21493
21582
|
key: string;
|
|
21494
21583
|
description?: string | undefined;
|
|
21495
21584
|
payloadSchema?: {
|
|
21496
|
-
type:
|
|
21585
|
+
type: string;
|
|
21497
21586
|
name: string;
|
|
21498
21587
|
required?: boolean | undefined;
|
|
21499
21588
|
}[] | undefined;
|
|
@@ -21571,7 +21660,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21571
21660
|
originalEvent: string;
|
|
21572
21661
|
description?: string | undefined;
|
|
21573
21662
|
payload?: {
|
|
21574
|
-
type:
|
|
21663
|
+
type: string;
|
|
21575
21664
|
name: string;
|
|
21576
21665
|
required?: boolean | undefined;
|
|
21577
21666
|
description?: string | undefined;
|
|
@@ -21859,7 +21948,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21859
21948
|
event: string;
|
|
21860
21949
|
description?: string | undefined;
|
|
21861
21950
|
payloadSchema?: {
|
|
21862
|
-
type:
|
|
21951
|
+
type: string;
|
|
21863
21952
|
name: string;
|
|
21864
21953
|
required?: boolean | undefined;
|
|
21865
21954
|
description?: string | undefined;
|
|
@@ -21913,7 +22002,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21913
22002
|
key: string;
|
|
21914
22003
|
description?: string | undefined;
|
|
21915
22004
|
payloadSchema?: {
|
|
21916
|
-
type:
|
|
22005
|
+
type: string;
|
|
21917
22006
|
name: string;
|
|
21918
22007
|
required?: boolean | undefined;
|
|
21919
22008
|
}[] | undefined;
|
|
@@ -21973,7 +22062,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21973
22062
|
event: string;
|
|
21974
22063
|
description?: string | undefined;
|
|
21975
22064
|
payloadSchema?: {
|
|
21976
|
-
type:
|
|
22065
|
+
type: string;
|
|
21977
22066
|
name: string;
|
|
21978
22067
|
required?: boolean | undefined;
|
|
21979
22068
|
description?: string | undefined;
|
|
@@ -22027,7 +22116,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22027
22116
|
key: string;
|
|
22028
22117
|
description?: string | undefined;
|
|
22029
22118
|
payloadSchema?: {
|
|
22030
|
-
type:
|
|
22119
|
+
type: string;
|
|
22031
22120
|
name: string;
|
|
22032
22121
|
required?: boolean | undefined;
|
|
22033
22122
|
}[] | undefined;
|
|
@@ -22105,7 +22194,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22105
22194
|
originalEvent: string;
|
|
22106
22195
|
description?: string | undefined;
|
|
22107
22196
|
payload?: {
|
|
22108
|
-
type:
|
|
22197
|
+
type: string;
|
|
22109
22198
|
name: string;
|
|
22110
22199
|
required?: boolean | undefined;
|
|
22111
22200
|
description?: string | undefined;
|
|
@@ -22346,7 +22435,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22346
22435
|
event: string;
|
|
22347
22436
|
description?: string | undefined;
|
|
22348
22437
|
payloadSchema?: {
|
|
22349
|
-
type:
|
|
22438
|
+
type: string;
|
|
22350
22439
|
name: string;
|
|
22351
22440
|
required?: boolean | undefined;
|
|
22352
22441
|
description?: string | undefined;
|
|
@@ -22400,7 +22489,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22400
22489
|
key: string;
|
|
22401
22490
|
description?: string | undefined;
|
|
22402
22491
|
payloadSchema?: {
|
|
22403
|
-
type:
|
|
22492
|
+
type: string;
|
|
22404
22493
|
name: string;
|
|
22405
22494
|
required?: boolean | undefined;
|
|
22406
22495
|
}[] | undefined;
|
|
@@ -22460,7 +22549,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22460
22549
|
event: string;
|
|
22461
22550
|
description?: string | undefined;
|
|
22462
22551
|
payloadSchema?: {
|
|
22463
|
-
type:
|
|
22552
|
+
type: string;
|
|
22464
22553
|
name: string;
|
|
22465
22554
|
required?: boolean | undefined;
|
|
22466
22555
|
description?: string | undefined;
|
|
@@ -22514,7 +22603,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22514
22603
|
key: string;
|
|
22515
22604
|
description?: string | undefined;
|
|
22516
22605
|
payloadSchema?: {
|
|
22517
|
-
type:
|
|
22606
|
+
type: string;
|
|
22518
22607
|
name: string;
|
|
22519
22608
|
required?: boolean | undefined;
|
|
22520
22609
|
}[] | undefined;
|
|
@@ -22592,7 +22681,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22592
22681
|
originalEvent: string;
|
|
22593
22682
|
description?: string | undefined;
|
|
22594
22683
|
payload?: {
|
|
22595
|
-
type:
|
|
22684
|
+
type: string;
|
|
22596
22685
|
name: string;
|
|
22597
22686
|
required?: boolean | undefined;
|
|
22598
22687
|
description?: string | undefined;
|