@almadar/core 5.9.0 → 6.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 +1 -1
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-CrvkqqKZ.d.ts → compose-behaviors-BLX6CbU3.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +1 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/{schema-jvDmDqz7.d.ts → schema-DnLtWO4e.d.ts} +108 -106
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -2136,8 +2136,10 @@ interface TraitEventContract {
|
|
|
2136
2136
|
event: string;
|
|
2137
2137
|
/** Human-readable description */
|
|
2138
2138
|
description?: string;
|
|
2139
|
-
/** Payload schema
|
|
2140
|
-
|
|
2139
|
+
/** Payload schema — declarative type info for the event's payload.
|
|
2140
|
+
* Distinct from the runtime payload value (`@payload.X` bindings,
|
|
2141
|
+
* `EventPayload`) which is a separate concept. */
|
|
2142
|
+
payloadSchema?: EventPayloadField[];
|
|
2141
2143
|
/**
|
|
2142
2144
|
* Event scope:
|
|
2143
2145
|
* - 'internal': Trait-to-trait within same orbital (default)
|
|
@@ -2148,7 +2150,7 @@ interface TraitEventContract {
|
|
|
2148
2150
|
declare const TraitEventContractSchema: z.ZodObject<{
|
|
2149
2151
|
event: z.ZodString;
|
|
2150
2152
|
description: z.ZodOptional<z.ZodString>;
|
|
2151
|
-
|
|
2153
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2152
2154
|
name: z.ZodString;
|
|
2153
2155
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
2154
2156
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2171,7 +2173,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
2171
2173
|
}, "strip", z.ZodTypeAny, {
|
|
2172
2174
|
event: string;
|
|
2173
2175
|
description?: string | undefined;
|
|
2174
|
-
|
|
2176
|
+
payloadSchema?: {
|
|
2175
2177
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
2176
2178
|
name: string;
|
|
2177
2179
|
required?: boolean | undefined;
|
|
@@ -2182,7 +2184,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
2182
2184
|
}, {
|
|
2183
2185
|
event: string;
|
|
2184
2186
|
description?: string | undefined;
|
|
2185
|
-
|
|
2187
|
+
payloadSchema?: {
|
|
2186
2188
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
2187
2189
|
name: string;
|
|
2188
2190
|
required?: boolean | undefined;
|
|
@@ -2855,7 +2857,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2855
2857
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2856
2858
|
event: z.ZodString;
|
|
2857
2859
|
description: z.ZodOptional<z.ZodString>;
|
|
2858
|
-
|
|
2860
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2859
2861
|
name: z.ZodString;
|
|
2860
2862
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
2861
2863
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2878,7 +2880,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2878
2880
|
}, "strip", z.ZodTypeAny, {
|
|
2879
2881
|
event: string;
|
|
2880
2882
|
description?: string | undefined;
|
|
2881
|
-
|
|
2883
|
+
payloadSchema?: {
|
|
2882
2884
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
2883
2885
|
name: string;
|
|
2884
2886
|
required?: boolean | undefined;
|
|
@@ -2889,7 +2891,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2889
2891
|
}, {
|
|
2890
2892
|
event: string;
|
|
2891
2893
|
description?: string | undefined;
|
|
2892
|
-
|
|
2894
|
+
payloadSchema?: {
|
|
2893
2895
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
2894
2896
|
name: string;
|
|
2895
2897
|
required?: boolean | undefined;
|
|
@@ -2975,7 +2977,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2975
2977
|
emits?: {
|
|
2976
2978
|
event: string;
|
|
2977
2979
|
description?: string | undefined;
|
|
2978
|
-
|
|
2980
|
+
payloadSchema?: {
|
|
2979
2981
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
2980
2982
|
name: string;
|
|
2981
2983
|
required?: boolean | undefined;
|
|
@@ -3081,7 +3083,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3081
3083
|
emits?: {
|
|
3082
3084
|
event: string;
|
|
3083
3085
|
description?: string | undefined;
|
|
3084
|
-
|
|
3086
|
+
payloadSchema?: {
|
|
3085
3087
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
3086
3088
|
name: string;
|
|
3087
3089
|
required?: boolean | undefined;
|
|
@@ -3484,7 +3486,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3484
3486
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3485
3487
|
event: z.ZodString;
|
|
3486
3488
|
description: z.ZodOptional<z.ZodString>;
|
|
3487
|
-
|
|
3489
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3488
3490
|
name: z.ZodString;
|
|
3489
3491
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
3490
3492
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3507,7 +3509,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3507
3509
|
}, "strip", z.ZodTypeAny, {
|
|
3508
3510
|
event: string;
|
|
3509
3511
|
description?: string | undefined;
|
|
3510
|
-
|
|
3512
|
+
payloadSchema?: {
|
|
3511
3513
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
3512
3514
|
name: string;
|
|
3513
3515
|
required?: boolean | undefined;
|
|
@@ -3518,7 +3520,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3518
3520
|
}, {
|
|
3519
3521
|
event: string;
|
|
3520
3522
|
description?: string | undefined;
|
|
3521
|
-
|
|
3523
|
+
payloadSchema?: {
|
|
3522
3524
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
3523
3525
|
name: string;
|
|
3524
3526
|
required?: boolean | undefined;
|
|
@@ -3604,7 +3606,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3604
3606
|
emits?: {
|
|
3605
3607
|
event: string;
|
|
3606
3608
|
description?: string | undefined;
|
|
3607
|
-
|
|
3609
|
+
payloadSchema?: {
|
|
3608
3610
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
3609
3611
|
name: string;
|
|
3610
3612
|
required?: boolean | undefined;
|
|
@@ -3710,7 +3712,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3710
3712
|
emits?: {
|
|
3711
3713
|
event: string;
|
|
3712
3714
|
description?: string | undefined;
|
|
3713
|
-
|
|
3715
|
+
payloadSchema?: {
|
|
3714
3716
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
3715
3717
|
name: string;
|
|
3716
3718
|
required?: boolean | undefined;
|
|
@@ -4183,7 +4185,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4183
4185
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4184
4186
|
event: z.ZodString;
|
|
4185
4187
|
description: z.ZodOptional<z.ZodString>;
|
|
4186
|
-
|
|
4188
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4187
4189
|
name: z.ZodString;
|
|
4188
4190
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
4189
4191
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4206,7 +4208,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4206
4208
|
}, "strip", z.ZodTypeAny, {
|
|
4207
4209
|
event: string;
|
|
4208
4210
|
description?: string | undefined;
|
|
4209
|
-
|
|
4211
|
+
payloadSchema?: {
|
|
4210
4212
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
4211
4213
|
name: string;
|
|
4212
4214
|
required?: boolean | undefined;
|
|
@@ -4217,7 +4219,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4217
4219
|
}, {
|
|
4218
4220
|
event: string;
|
|
4219
4221
|
description?: string | undefined;
|
|
4220
|
-
|
|
4222
|
+
payloadSchema?: {
|
|
4221
4223
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
4222
4224
|
name: string;
|
|
4223
4225
|
required?: boolean | undefined;
|
|
@@ -4303,7 +4305,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4303
4305
|
emits?: {
|
|
4304
4306
|
event: string;
|
|
4305
4307
|
description?: string | undefined;
|
|
4306
|
-
|
|
4308
|
+
payloadSchema?: {
|
|
4307
4309
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
4308
4310
|
name: string;
|
|
4309
4311
|
required?: boolean | undefined;
|
|
@@ -4409,7 +4411,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4409
4411
|
emits?: {
|
|
4410
4412
|
event: string;
|
|
4411
4413
|
description?: string | undefined;
|
|
4412
|
-
|
|
4414
|
+
payloadSchema?: {
|
|
4413
4415
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
4414
4416
|
name: string;
|
|
4415
4417
|
required?: boolean | undefined;
|
|
@@ -6852,7 +6854,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6852
6854
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6853
6855
|
event: z.ZodString;
|
|
6854
6856
|
description: z.ZodOptional<z.ZodString>;
|
|
6855
|
-
|
|
6857
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6856
6858
|
name: z.ZodString;
|
|
6857
6859
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
6858
6860
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6875,7 +6877,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6875
6877
|
}, "strip", z.ZodTypeAny, {
|
|
6876
6878
|
event: string;
|
|
6877
6879
|
description?: string | undefined;
|
|
6878
|
-
|
|
6880
|
+
payloadSchema?: {
|
|
6879
6881
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
6880
6882
|
name: string;
|
|
6881
6883
|
required?: boolean | undefined;
|
|
@@ -6886,7 +6888,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6886
6888
|
}, {
|
|
6887
6889
|
event: string;
|
|
6888
6890
|
description?: string | undefined;
|
|
6889
|
-
|
|
6891
|
+
payloadSchema?: {
|
|
6890
6892
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
6891
6893
|
name: string;
|
|
6892
6894
|
required?: boolean | undefined;
|
|
@@ -6972,7 +6974,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6972
6974
|
emits?: {
|
|
6973
6975
|
event: string;
|
|
6974
6976
|
description?: string | undefined;
|
|
6975
|
-
|
|
6977
|
+
payloadSchema?: {
|
|
6976
6978
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
6977
6979
|
name: string;
|
|
6978
6980
|
required?: boolean | undefined;
|
|
@@ -7078,7 +7080,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7078
7080
|
emits?: {
|
|
7079
7081
|
event: string;
|
|
7080
7082
|
description?: string | undefined;
|
|
7081
|
-
|
|
7083
|
+
payloadSchema?: {
|
|
7082
7084
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
7083
7085
|
name: string;
|
|
7084
7086
|
required?: boolean | undefined;
|
|
@@ -7190,7 +7192,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7190
7192
|
emits?: {
|
|
7191
7193
|
event: string;
|
|
7192
7194
|
description?: string | undefined;
|
|
7193
|
-
|
|
7195
|
+
payloadSchema?: {
|
|
7194
7196
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
7195
7197
|
name: string;
|
|
7196
7198
|
required?: boolean | undefined;
|
|
@@ -7308,7 +7310,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7308
7310
|
emits?: {
|
|
7309
7311
|
event: string;
|
|
7310
7312
|
description?: string | undefined;
|
|
7311
|
-
|
|
7313
|
+
payloadSchema?: {
|
|
7312
7314
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
7313
7315
|
name: string;
|
|
7314
7316
|
required?: boolean | undefined;
|
|
@@ -7767,7 +7769,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7767
7769
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7768
7770
|
event: z.ZodString;
|
|
7769
7771
|
description: z.ZodOptional<z.ZodString>;
|
|
7770
|
-
|
|
7772
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7771
7773
|
name: z.ZodString;
|
|
7772
7774
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
7773
7775
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7790,7 +7792,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7790
7792
|
}, "strip", z.ZodTypeAny, {
|
|
7791
7793
|
event: string;
|
|
7792
7794
|
description?: string | undefined;
|
|
7793
|
-
|
|
7795
|
+
payloadSchema?: {
|
|
7794
7796
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
7795
7797
|
name: string;
|
|
7796
7798
|
required?: boolean | undefined;
|
|
@@ -7801,7 +7803,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7801
7803
|
}, {
|
|
7802
7804
|
event: string;
|
|
7803
7805
|
description?: string | undefined;
|
|
7804
|
-
|
|
7806
|
+
payloadSchema?: {
|
|
7805
7807
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
7806
7808
|
name: string;
|
|
7807
7809
|
required?: boolean | undefined;
|
|
@@ -7887,7 +7889,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7887
7889
|
emits?: {
|
|
7888
7890
|
event: string;
|
|
7889
7891
|
description?: string | undefined;
|
|
7890
|
-
|
|
7892
|
+
payloadSchema?: {
|
|
7891
7893
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
7892
7894
|
name: string;
|
|
7893
7895
|
required?: boolean | undefined;
|
|
@@ -7993,7 +7995,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7993
7995
|
emits?: {
|
|
7994
7996
|
event: string;
|
|
7995
7997
|
description?: string | undefined;
|
|
7996
|
-
|
|
7998
|
+
payloadSchema?: {
|
|
7997
7999
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
7998
8000
|
name: string;
|
|
7999
8001
|
required?: boolean | undefined;
|
|
@@ -8105,7 +8107,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8105
8107
|
emits?: {
|
|
8106
8108
|
event: string;
|
|
8107
8109
|
description?: string | undefined;
|
|
8108
|
-
|
|
8110
|
+
payloadSchema?: {
|
|
8109
8111
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
8110
8112
|
name: string;
|
|
8111
8113
|
required?: boolean | undefined;
|
|
@@ -8223,7 +8225,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8223
8225
|
emits?: {
|
|
8224
8226
|
event: string;
|
|
8225
8227
|
description?: string | undefined;
|
|
8226
|
-
|
|
8228
|
+
payloadSchema?: {
|
|
8227
8229
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
8228
8230
|
name: string;
|
|
8229
8231
|
required?: boolean | undefined;
|
|
@@ -9341,7 +9343,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9341
9343
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9342
9344
|
event: z.ZodString;
|
|
9343
9345
|
description: z.ZodOptional<z.ZodString>;
|
|
9344
|
-
|
|
9346
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9345
9347
|
name: z.ZodString;
|
|
9346
9348
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
9347
9349
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9364,7 +9366,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9364
9366
|
}, "strip", z.ZodTypeAny, {
|
|
9365
9367
|
event: string;
|
|
9366
9368
|
description?: string | undefined;
|
|
9367
|
-
|
|
9369
|
+
payloadSchema?: {
|
|
9368
9370
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
9369
9371
|
name: string;
|
|
9370
9372
|
required?: boolean | undefined;
|
|
@@ -9375,7 +9377,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9375
9377
|
}, {
|
|
9376
9378
|
event: string;
|
|
9377
9379
|
description?: string | undefined;
|
|
9378
|
-
|
|
9380
|
+
payloadSchema?: {
|
|
9379
9381
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
9380
9382
|
name: string;
|
|
9381
9383
|
required?: boolean | undefined;
|
|
@@ -9461,7 +9463,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9461
9463
|
emits?: {
|
|
9462
9464
|
event: string;
|
|
9463
9465
|
description?: string | undefined;
|
|
9464
|
-
|
|
9466
|
+
payloadSchema?: {
|
|
9465
9467
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
9466
9468
|
name: string;
|
|
9467
9469
|
required?: boolean | undefined;
|
|
@@ -9567,7 +9569,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9567
9569
|
emits?: {
|
|
9568
9570
|
event: string;
|
|
9569
9571
|
description?: string | undefined;
|
|
9570
|
-
|
|
9572
|
+
payloadSchema?: {
|
|
9571
9573
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
9572
9574
|
name: string;
|
|
9573
9575
|
required?: boolean | undefined;
|
|
@@ -10019,7 +10021,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10019
10021
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10020
10022
|
event: z.ZodString;
|
|
10021
10023
|
description: z.ZodOptional<z.ZodString>;
|
|
10022
|
-
|
|
10024
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10023
10025
|
name: z.ZodString;
|
|
10024
10026
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
10025
10027
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10042,7 +10044,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10042
10044
|
}, "strip", z.ZodTypeAny, {
|
|
10043
10045
|
event: string;
|
|
10044
10046
|
description?: string | undefined;
|
|
10045
|
-
|
|
10047
|
+
payloadSchema?: {
|
|
10046
10048
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10047
10049
|
name: string;
|
|
10048
10050
|
required?: boolean | undefined;
|
|
@@ -10053,7 +10055,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10053
10055
|
}, {
|
|
10054
10056
|
event: string;
|
|
10055
10057
|
description?: string | undefined;
|
|
10056
|
-
|
|
10058
|
+
payloadSchema?: {
|
|
10057
10059
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10058
10060
|
name: string;
|
|
10059
10061
|
required?: boolean | undefined;
|
|
@@ -10139,7 +10141,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10139
10141
|
emits?: {
|
|
10140
10142
|
event: string;
|
|
10141
10143
|
description?: string | undefined;
|
|
10142
|
-
|
|
10144
|
+
payloadSchema?: {
|
|
10143
10145
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10144
10146
|
name: string;
|
|
10145
10147
|
required?: boolean | undefined;
|
|
@@ -10245,7 +10247,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10245
10247
|
emits?: {
|
|
10246
10248
|
event: string;
|
|
10247
10249
|
description?: string | undefined;
|
|
10248
|
-
|
|
10250
|
+
payloadSchema?: {
|
|
10249
10251
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10250
10252
|
name: string;
|
|
10251
10253
|
required?: boolean | undefined;
|
|
@@ -10357,7 +10359,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10357
10359
|
emits?: {
|
|
10358
10360
|
event: string;
|
|
10359
10361
|
description?: string | undefined;
|
|
10360
|
-
|
|
10362
|
+
payloadSchema?: {
|
|
10361
10363
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10362
10364
|
name: string;
|
|
10363
10365
|
required?: boolean | undefined;
|
|
@@ -10475,7 +10477,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10475
10477
|
emits?: {
|
|
10476
10478
|
event: string;
|
|
10477
10479
|
description?: string | undefined;
|
|
10478
|
-
|
|
10480
|
+
payloadSchema?: {
|
|
10479
10481
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10480
10482
|
name: string;
|
|
10481
10483
|
required?: boolean | undefined;
|
|
@@ -10873,7 +10875,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10873
10875
|
emits?: {
|
|
10874
10876
|
event: string;
|
|
10875
10877
|
description?: string | undefined;
|
|
10876
|
-
|
|
10878
|
+
payloadSchema?: {
|
|
10877
10879
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10878
10880
|
name: string;
|
|
10879
10881
|
required?: boolean | undefined;
|
|
@@ -10987,7 +10989,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10987
10989
|
emits?: {
|
|
10988
10990
|
event: string;
|
|
10989
10991
|
description?: string | undefined;
|
|
10990
|
-
|
|
10992
|
+
payloadSchema?: {
|
|
10991
10993
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
10992
10994
|
name: string;
|
|
10993
10995
|
required?: boolean | undefined;
|
|
@@ -11271,7 +11273,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11271
11273
|
emits?: {
|
|
11272
11274
|
event: string;
|
|
11273
11275
|
description?: string | undefined;
|
|
11274
|
-
|
|
11276
|
+
payloadSchema?: {
|
|
11275
11277
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
11276
11278
|
name: string;
|
|
11277
11279
|
required?: boolean | undefined;
|
|
@@ -11385,7 +11387,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11385
11387
|
emits?: {
|
|
11386
11388
|
event: string;
|
|
11387
11389
|
description?: string | undefined;
|
|
11388
|
-
|
|
11390
|
+
payloadSchema?: {
|
|
11389
11391
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
11390
11392
|
name: string;
|
|
11391
11393
|
required?: boolean | undefined;
|
|
@@ -12252,7 +12254,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12252
12254
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12253
12255
|
event: z.ZodString;
|
|
12254
12256
|
description: z.ZodOptional<z.ZodString>;
|
|
12255
|
-
|
|
12257
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12256
12258
|
name: z.ZodString;
|
|
12257
12259
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
12258
12260
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12275,7 +12277,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12275
12277
|
}, "strip", z.ZodTypeAny, {
|
|
12276
12278
|
event: string;
|
|
12277
12279
|
description?: string | undefined;
|
|
12278
|
-
|
|
12280
|
+
payloadSchema?: {
|
|
12279
12281
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
12280
12282
|
name: string;
|
|
12281
12283
|
required?: boolean | undefined;
|
|
@@ -12286,7 +12288,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12286
12288
|
}, {
|
|
12287
12289
|
event: string;
|
|
12288
12290
|
description?: string | undefined;
|
|
12289
|
-
|
|
12291
|
+
payloadSchema?: {
|
|
12290
12292
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
12291
12293
|
name: string;
|
|
12292
12294
|
required?: boolean | undefined;
|
|
@@ -12372,7 +12374,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12372
12374
|
emits?: {
|
|
12373
12375
|
event: string;
|
|
12374
12376
|
description?: string | undefined;
|
|
12375
|
-
|
|
12377
|
+
payloadSchema?: {
|
|
12376
12378
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
12377
12379
|
name: string;
|
|
12378
12380
|
required?: boolean | undefined;
|
|
@@ -12478,7 +12480,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12478
12480
|
emits?: {
|
|
12479
12481
|
event: string;
|
|
12480
12482
|
description?: string | undefined;
|
|
12481
|
-
|
|
12483
|
+
payloadSchema?: {
|
|
12482
12484
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
12483
12485
|
name: string;
|
|
12484
12486
|
required?: boolean | undefined;
|
|
@@ -12930,7 +12932,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12930
12932
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12931
12933
|
event: z.ZodString;
|
|
12932
12934
|
description: z.ZodOptional<z.ZodString>;
|
|
12933
|
-
|
|
12935
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12934
12936
|
name: z.ZodString;
|
|
12935
12937
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
12936
12938
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12953,7 +12955,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12953
12955
|
}, "strip", z.ZodTypeAny, {
|
|
12954
12956
|
event: string;
|
|
12955
12957
|
description?: string | undefined;
|
|
12956
|
-
|
|
12958
|
+
payloadSchema?: {
|
|
12957
12959
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
12958
12960
|
name: string;
|
|
12959
12961
|
required?: boolean | undefined;
|
|
@@ -12964,7 +12966,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12964
12966
|
}, {
|
|
12965
12967
|
event: string;
|
|
12966
12968
|
description?: string | undefined;
|
|
12967
|
-
|
|
12969
|
+
payloadSchema?: {
|
|
12968
12970
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
12969
12971
|
name: string;
|
|
12970
12972
|
required?: boolean | undefined;
|
|
@@ -13050,7 +13052,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13050
13052
|
emits?: {
|
|
13051
13053
|
event: string;
|
|
13052
13054
|
description?: string | undefined;
|
|
13053
|
-
|
|
13055
|
+
payloadSchema?: {
|
|
13054
13056
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
13055
13057
|
name: string;
|
|
13056
13058
|
required?: boolean | undefined;
|
|
@@ -13156,7 +13158,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13156
13158
|
emits?: {
|
|
13157
13159
|
event: string;
|
|
13158
13160
|
description?: string | undefined;
|
|
13159
|
-
|
|
13161
|
+
payloadSchema?: {
|
|
13160
13162
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
13161
13163
|
name: string;
|
|
13162
13164
|
required?: boolean | undefined;
|
|
@@ -13268,7 +13270,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13268
13270
|
emits?: {
|
|
13269
13271
|
event: string;
|
|
13270
13272
|
description?: string | undefined;
|
|
13271
|
-
|
|
13273
|
+
payloadSchema?: {
|
|
13272
13274
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
13273
13275
|
name: string;
|
|
13274
13276
|
required?: boolean | undefined;
|
|
@@ -13386,7 +13388,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13386
13388
|
emits?: {
|
|
13387
13389
|
event: string;
|
|
13388
13390
|
description?: string | undefined;
|
|
13389
|
-
|
|
13391
|
+
payloadSchema?: {
|
|
13390
13392
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
13391
13393
|
name: string;
|
|
13392
13394
|
required?: boolean | undefined;
|
|
@@ -13784,7 +13786,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13784
13786
|
emits?: {
|
|
13785
13787
|
event: string;
|
|
13786
13788
|
description?: string | undefined;
|
|
13787
|
-
|
|
13789
|
+
payloadSchema?: {
|
|
13788
13790
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
13789
13791
|
name: string;
|
|
13790
13792
|
required?: boolean | undefined;
|
|
@@ -13898,7 +13900,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13898
13900
|
emits?: {
|
|
13899
13901
|
event: string;
|
|
13900
13902
|
description?: string | undefined;
|
|
13901
|
-
|
|
13903
|
+
payloadSchema?: {
|
|
13902
13904
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
13903
13905
|
name: string;
|
|
13904
13906
|
required?: boolean | undefined;
|
|
@@ -14182,7 +14184,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14182
14184
|
emits?: {
|
|
14183
14185
|
event: string;
|
|
14184
14186
|
description?: string | undefined;
|
|
14185
|
-
|
|
14187
|
+
payloadSchema?: {
|
|
14186
14188
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
14187
14189
|
name: string;
|
|
14188
14190
|
required?: boolean | undefined;
|
|
@@ -14296,7 +14298,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14296
14298
|
emits?: {
|
|
14297
14299
|
event: string;
|
|
14298
14300
|
description?: string | undefined;
|
|
14299
|
-
|
|
14301
|
+
payloadSchema?: {
|
|
14300
14302
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
14301
14303
|
name: string;
|
|
14302
14304
|
required?: boolean | undefined;
|
|
@@ -15170,7 +15172,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15170
15172
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15171
15173
|
event: z.ZodString;
|
|
15172
15174
|
description: z.ZodOptional<z.ZodString>;
|
|
15173
|
-
|
|
15175
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15174
15176
|
name: z.ZodString;
|
|
15175
15177
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
15176
15178
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15193,7 +15195,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15193
15195
|
}, "strip", z.ZodTypeAny, {
|
|
15194
15196
|
event: string;
|
|
15195
15197
|
description?: string | undefined;
|
|
15196
|
-
|
|
15198
|
+
payloadSchema?: {
|
|
15197
15199
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
15198
15200
|
name: string;
|
|
15199
15201
|
required?: boolean | undefined;
|
|
@@ -15204,7 +15206,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15204
15206
|
}, {
|
|
15205
15207
|
event: string;
|
|
15206
15208
|
description?: string | undefined;
|
|
15207
|
-
|
|
15209
|
+
payloadSchema?: {
|
|
15208
15210
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
15209
15211
|
name: string;
|
|
15210
15212
|
required?: boolean | undefined;
|
|
@@ -15290,7 +15292,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15290
15292
|
emits?: {
|
|
15291
15293
|
event: string;
|
|
15292
15294
|
description?: string | undefined;
|
|
15293
|
-
|
|
15295
|
+
payloadSchema?: {
|
|
15294
15296
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
15295
15297
|
name: string;
|
|
15296
15298
|
required?: boolean | undefined;
|
|
@@ -15396,7 +15398,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15396
15398
|
emits?: {
|
|
15397
15399
|
event: string;
|
|
15398
15400
|
description?: string | undefined;
|
|
15399
|
-
|
|
15401
|
+
payloadSchema?: {
|
|
15400
15402
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
15401
15403
|
name: string;
|
|
15402
15404
|
required?: boolean | undefined;
|
|
@@ -15848,7 +15850,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15848
15850
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15849
15851
|
event: z.ZodString;
|
|
15850
15852
|
description: z.ZodOptional<z.ZodString>;
|
|
15851
|
-
|
|
15853
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15852
15854
|
name: z.ZodString;
|
|
15853
15855
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
15854
15856
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15871,7 +15873,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15871
15873
|
}, "strip", z.ZodTypeAny, {
|
|
15872
15874
|
event: string;
|
|
15873
15875
|
description?: string | undefined;
|
|
15874
|
-
|
|
15876
|
+
payloadSchema?: {
|
|
15875
15877
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
15876
15878
|
name: string;
|
|
15877
15879
|
required?: boolean | undefined;
|
|
@@ -15882,7 +15884,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15882
15884
|
}, {
|
|
15883
15885
|
event: string;
|
|
15884
15886
|
description?: string | undefined;
|
|
15885
|
-
|
|
15887
|
+
payloadSchema?: {
|
|
15886
15888
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
15887
15889
|
name: string;
|
|
15888
15890
|
required?: boolean | undefined;
|
|
@@ -15968,7 +15970,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15968
15970
|
emits?: {
|
|
15969
15971
|
event: string;
|
|
15970
15972
|
description?: string | undefined;
|
|
15971
|
-
|
|
15973
|
+
payloadSchema?: {
|
|
15972
15974
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
15973
15975
|
name: string;
|
|
15974
15976
|
required?: boolean | undefined;
|
|
@@ -16074,7 +16076,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16074
16076
|
emits?: {
|
|
16075
16077
|
event: string;
|
|
16076
16078
|
description?: string | undefined;
|
|
16077
|
-
|
|
16079
|
+
payloadSchema?: {
|
|
16078
16080
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
16079
16081
|
name: string;
|
|
16080
16082
|
required?: boolean | undefined;
|
|
@@ -16186,7 +16188,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16186
16188
|
emits?: {
|
|
16187
16189
|
event: string;
|
|
16188
16190
|
description?: string | undefined;
|
|
16189
|
-
|
|
16191
|
+
payloadSchema?: {
|
|
16190
16192
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
16191
16193
|
name: string;
|
|
16192
16194
|
required?: boolean | undefined;
|
|
@@ -16304,7 +16306,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16304
16306
|
emits?: {
|
|
16305
16307
|
event: string;
|
|
16306
16308
|
description?: string | undefined;
|
|
16307
|
-
|
|
16309
|
+
payloadSchema?: {
|
|
16308
16310
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
16309
16311
|
name: string;
|
|
16310
16312
|
required?: boolean | undefined;
|
|
@@ -16702,7 +16704,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16702
16704
|
emits?: {
|
|
16703
16705
|
event: string;
|
|
16704
16706
|
description?: string | undefined;
|
|
16705
|
-
|
|
16707
|
+
payloadSchema?: {
|
|
16706
16708
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
16707
16709
|
name: string;
|
|
16708
16710
|
required?: boolean | undefined;
|
|
@@ -16816,7 +16818,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16816
16818
|
emits?: {
|
|
16817
16819
|
event: string;
|
|
16818
16820
|
description?: string | undefined;
|
|
16819
|
-
|
|
16821
|
+
payloadSchema?: {
|
|
16820
16822
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
16821
16823
|
name: string;
|
|
16822
16824
|
required?: boolean | undefined;
|
|
@@ -17100,7 +17102,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17100
17102
|
emits?: {
|
|
17101
17103
|
event: string;
|
|
17102
17104
|
description?: string | undefined;
|
|
17103
|
-
|
|
17105
|
+
payloadSchema?: {
|
|
17104
17106
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
17105
17107
|
name: string;
|
|
17106
17108
|
required?: boolean | undefined;
|
|
@@ -17214,7 +17216,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17214
17216
|
emits?: {
|
|
17215
17217
|
event: string;
|
|
17216
17218
|
description?: string | undefined;
|
|
17217
|
-
|
|
17219
|
+
payloadSchema?: {
|
|
17218
17220
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
17219
17221
|
name: string;
|
|
17220
17222
|
required?: boolean | undefined;
|
|
@@ -18329,7 +18331,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18329
18331
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18330
18332
|
event: z.ZodString;
|
|
18331
18333
|
description: z.ZodOptional<z.ZodString>;
|
|
18332
|
-
|
|
18334
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18333
18335
|
name: z.ZodString;
|
|
18334
18336
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
18335
18337
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18352,7 +18354,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18352
18354
|
}, "strip", z.ZodTypeAny, {
|
|
18353
18355
|
event: string;
|
|
18354
18356
|
description?: string | undefined;
|
|
18355
|
-
|
|
18357
|
+
payloadSchema?: {
|
|
18356
18358
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
18357
18359
|
name: string;
|
|
18358
18360
|
required?: boolean | undefined;
|
|
@@ -18363,7 +18365,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18363
18365
|
}, {
|
|
18364
18366
|
event: string;
|
|
18365
18367
|
description?: string | undefined;
|
|
18366
|
-
|
|
18368
|
+
payloadSchema?: {
|
|
18367
18369
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
18368
18370
|
name: string;
|
|
18369
18371
|
required?: boolean | undefined;
|
|
@@ -18449,7 +18451,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18449
18451
|
emits?: {
|
|
18450
18452
|
event: string;
|
|
18451
18453
|
description?: string | undefined;
|
|
18452
|
-
|
|
18454
|
+
payloadSchema?: {
|
|
18453
18455
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
18454
18456
|
name: string;
|
|
18455
18457
|
required?: boolean | undefined;
|
|
@@ -18555,7 +18557,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18555
18557
|
emits?: {
|
|
18556
18558
|
event: string;
|
|
18557
18559
|
description?: string | undefined;
|
|
18558
|
-
|
|
18560
|
+
payloadSchema?: {
|
|
18559
18561
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
18560
18562
|
name: string;
|
|
18561
18563
|
required?: boolean | undefined;
|
|
@@ -19007,7 +19009,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19007
19009
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19008
19010
|
event: z.ZodString;
|
|
19009
19011
|
description: z.ZodOptional<z.ZodString>;
|
|
19010
|
-
|
|
19012
|
+
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19011
19013
|
name: z.ZodString;
|
|
19012
19014
|
type: z.ZodEnum<["string", "number", "boolean", "object", "array", "entity"]>;
|
|
19013
19015
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19030,7 +19032,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19030
19032
|
}, "strip", z.ZodTypeAny, {
|
|
19031
19033
|
event: string;
|
|
19032
19034
|
description?: string | undefined;
|
|
19033
|
-
|
|
19035
|
+
payloadSchema?: {
|
|
19034
19036
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19035
19037
|
name: string;
|
|
19036
19038
|
required?: boolean | undefined;
|
|
@@ -19041,7 +19043,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19041
19043
|
}, {
|
|
19042
19044
|
event: string;
|
|
19043
19045
|
description?: string | undefined;
|
|
19044
|
-
|
|
19046
|
+
payloadSchema?: {
|
|
19045
19047
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19046
19048
|
name: string;
|
|
19047
19049
|
required?: boolean | undefined;
|
|
@@ -19127,7 +19129,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19127
19129
|
emits?: {
|
|
19128
19130
|
event: string;
|
|
19129
19131
|
description?: string | undefined;
|
|
19130
|
-
|
|
19132
|
+
payloadSchema?: {
|
|
19131
19133
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19132
19134
|
name: string;
|
|
19133
19135
|
required?: boolean | undefined;
|
|
@@ -19233,7 +19235,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19233
19235
|
emits?: {
|
|
19234
19236
|
event: string;
|
|
19235
19237
|
description?: string | undefined;
|
|
19236
|
-
|
|
19238
|
+
payloadSchema?: {
|
|
19237
19239
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19238
19240
|
name: string;
|
|
19239
19241
|
required?: boolean | undefined;
|
|
@@ -19345,7 +19347,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19345
19347
|
emits?: {
|
|
19346
19348
|
event: string;
|
|
19347
19349
|
description?: string | undefined;
|
|
19348
|
-
|
|
19350
|
+
payloadSchema?: {
|
|
19349
19351
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19350
19352
|
name: string;
|
|
19351
19353
|
required?: boolean | undefined;
|
|
@@ -19463,7 +19465,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19463
19465
|
emits?: {
|
|
19464
19466
|
event: string;
|
|
19465
19467
|
description?: string | undefined;
|
|
19466
|
-
|
|
19468
|
+
payloadSchema?: {
|
|
19467
19469
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19468
19470
|
name: string;
|
|
19469
19471
|
required?: boolean | undefined;
|
|
@@ -19861,7 +19863,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19861
19863
|
emits?: {
|
|
19862
19864
|
event: string;
|
|
19863
19865
|
description?: string | undefined;
|
|
19864
|
-
|
|
19866
|
+
payloadSchema?: {
|
|
19865
19867
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19866
19868
|
name: string;
|
|
19867
19869
|
required?: boolean | undefined;
|
|
@@ -19975,7 +19977,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19975
19977
|
emits?: {
|
|
19976
19978
|
event: string;
|
|
19977
19979
|
description?: string | undefined;
|
|
19978
|
-
|
|
19980
|
+
payloadSchema?: {
|
|
19979
19981
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
19980
19982
|
name: string;
|
|
19981
19983
|
required?: boolean | undefined;
|
|
@@ -20259,7 +20261,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20259
20261
|
emits?: {
|
|
20260
20262
|
event: string;
|
|
20261
20263
|
description?: string | undefined;
|
|
20262
|
-
|
|
20264
|
+
payloadSchema?: {
|
|
20263
20265
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
20264
20266
|
name: string;
|
|
20265
20267
|
required?: boolean | undefined;
|
|
@@ -20373,7 +20375,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20373
20375
|
emits?: {
|
|
20374
20376
|
event: string;
|
|
20375
20377
|
description?: string | undefined;
|
|
20376
|
-
|
|
20378
|
+
payloadSchema?: {
|
|
20377
20379
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
20378
20380
|
name: string;
|
|
20379
20381
|
required?: boolean | undefined;
|
|
@@ -20835,7 +20837,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20835
20837
|
emits?: {
|
|
20836
20838
|
event: string;
|
|
20837
20839
|
description?: string | undefined;
|
|
20838
|
-
|
|
20840
|
+
payloadSchema?: {
|
|
20839
20841
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
20840
20842
|
name: string;
|
|
20841
20843
|
required?: boolean | undefined;
|
|
@@ -20949,7 +20951,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20949
20951
|
emits?: {
|
|
20950
20952
|
event: string;
|
|
20951
20953
|
description?: string | undefined;
|
|
20952
|
-
|
|
20954
|
+
payloadSchema?: {
|
|
20953
20955
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
20954
20956
|
name: string;
|
|
20955
20957
|
required?: boolean | undefined;
|
|
@@ -21322,7 +21324,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21322
21324
|
emits?: {
|
|
21323
21325
|
event: string;
|
|
21324
21326
|
description?: string | undefined;
|
|
21325
|
-
|
|
21327
|
+
payloadSchema?: {
|
|
21326
21328
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
21327
21329
|
name: string;
|
|
21328
21330
|
required?: boolean | undefined;
|
|
@@ -21436,7 +21438,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21436
21438
|
emits?: {
|
|
21437
21439
|
event: string;
|
|
21438
21440
|
description?: string | undefined;
|
|
21439
|
-
|
|
21441
|
+
payloadSchema?: {
|
|
21440
21442
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
21441
21443
|
name: string;
|
|
21442
21444
|
required?: boolean | undefined;
|
|
@@ -21856,7 +21858,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21856
21858
|
emits?: {
|
|
21857
21859
|
event: string;
|
|
21858
21860
|
description?: string | undefined;
|
|
21859
|
-
|
|
21861
|
+
payloadSchema?: {
|
|
21860
21862
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
21861
21863
|
name: string;
|
|
21862
21864
|
required?: boolean | undefined;
|
|
@@ -21970,7 +21972,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21970
21972
|
emits?: {
|
|
21971
21973
|
event: string;
|
|
21972
21974
|
description?: string | undefined;
|
|
21973
|
-
|
|
21975
|
+
payloadSchema?: {
|
|
21974
21976
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
21975
21977
|
name: string;
|
|
21976
21978
|
required?: boolean | undefined;
|
|
@@ -22343,7 +22345,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22343
22345
|
emits?: {
|
|
22344
22346
|
event: string;
|
|
22345
22347
|
description?: string | undefined;
|
|
22346
|
-
|
|
22348
|
+
payloadSchema?: {
|
|
22347
22349
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
22348
22350
|
name: string;
|
|
22349
22351
|
required?: boolean | undefined;
|
|
@@ -22457,7 +22459,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22457
22459
|
emits?: {
|
|
22458
22460
|
event: string;
|
|
22459
22461
|
description?: string | undefined;
|
|
22460
|
-
|
|
22462
|
+
payloadSchema?: {
|
|
22461
22463
|
type: "string" | "number" | "boolean" | "object" | "array" | "entity";
|
|
22462
22464
|
name: string;
|
|
22463
22465
|
required?: boolean | undefined;
|