@almadar/core 7.14.0 → 7.14.2
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 +3 -3
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-BSw8Is-V.d.ts → compose-behaviors-7NS0qVIh.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +2 -2
- package/dist/domain-language/index.js +1 -0
- package/dist/domain-language/index.js.map +1 -1
- package/dist/{expression-DfPiB-UG.d.ts → expression-CkBbMSmB.d.ts} +1 -1
- package/dist/index.d.ts +70 -6
- package/dist/index.js +136 -1
- package/dist/index.js.map +1 -1
- package/dist/{schema-Bryabp9C.d.ts → schema-BAT_cYlE.d.ts} +249 -218
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/types/index.d.ts +21 -8
- package/dist/types/index.js +1 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as SExpr, b as EventPayload, d as Expression } from './expression-
|
|
1
|
+
import { S as SExpr, b as EventPayload, d as Expression } from './expression-CkBbMSmB.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { AnyPatternConfig } from '@almadar/patterns';
|
|
4
4
|
|
|
@@ -3030,8 +3030,6 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3030
3030
|
event: string;
|
|
3031
3031
|
triggers: string;
|
|
3032
3032
|
guard?: SExpr | undefined;
|
|
3033
|
-
scope?: "internal" | "external" | undefined;
|
|
3034
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
3035
3033
|
source?: {
|
|
3036
3034
|
kind: "any";
|
|
3037
3035
|
} | {
|
|
@@ -3042,12 +3040,12 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3042
3040
|
orbital: string;
|
|
3043
3041
|
kind: "orbital";
|
|
3044
3042
|
} | undefined;
|
|
3043
|
+
scope?: "internal" | "external" | undefined;
|
|
3044
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
3045
3045
|
}, {
|
|
3046
3046
|
event: string;
|
|
3047
3047
|
triggers: string;
|
|
3048
3048
|
guard?: SExpr | undefined;
|
|
3049
|
-
scope?: "internal" | "external" | undefined;
|
|
3050
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
3051
3049
|
source?: {
|
|
3052
3050
|
kind: "any";
|
|
3053
3051
|
} | {
|
|
@@ -3058,6 +3056,8 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3058
3056
|
orbital: string;
|
|
3059
3057
|
kind: "orbital";
|
|
3060
3058
|
} | undefined;
|
|
3059
|
+
scope?: "internal" | "external" | undefined;
|
|
3060
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
3061
3061
|
}>;
|
|
3062
3062
|
/**
|
|
3063
3063
|
* Field required by a trait from its linkedEntity
|
|
@@ -3684,8 +3684,6 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3684
3684
|
event: string;
|
|
3685
3685
|
triggers: string;
|
|
3686
3686
|
guard?: SExpr | undefined;
|
|
3687
|
-
scope?: "internal" | "external" | undefined;
|
|
3688
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
3689
3687
|
source?: {
|
|
3690
3688
|
kind: "any";
|
|
3691
3689
|
} | {
|
|
@@ -3696,12 +3694,12 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3696
3694
|
orbital: string;
|
|
3697
3695
|
kind: "orbital";
|
|
3698
3696
|
} | undefined;
|
|
3697
|
+
scope?: "internal" | "external" | undefined;
|
|
3698
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
3699
3699
|
}, {
|
|
3700
3700
|
event: string;
|
|
3701
3701
|
triggers: string;
|
|
3702
3702
|
guard?: SExpr | undefined;
|
|
3703
|
-
scope?: "internal" | "external" | undefined;
|
|
3704
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
3705
3703
|
source?: {
|
|
3706
3704
|
kind: "any";
|
|
3707
3705
|
} | {
|
|
@@ -3712,6 +3710,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3712
3710
|
orbital: string;
|
|
3713
3711
|
kind: "orbital";
|
|
3714
3712
|
} | undefined;
|
|
3713
|
+
scope?: "internal" | "external" | undefined;
|
|
3714
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
3715
3715
|
}>, "many">>;
|
|
3716
3716
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3717
3717
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -3739,8 +3739,6 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3739
3739
|
event: string;
|
|
3740
3740
|
triggers: string;
|
|
3741
3741
|
guard?: SExpr | undefined;
|
|
3742
|
-
scope?: "internal" | "external" | undefined;
|
|
3743
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
3744
3742
|
source?: {
|
|
3745
3743
|
kind: "any";
|
|
3746
3744
|
} | {
|
|
@@ -3751,6 +3749,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3751
3749
|
orbital: string;
|
|
3752
3750
|
kind: "orbital";
|
|
3753
3751
|
} | undefined;
|
|
3752
|
+
scope?: "internal" | "external" | undefined;
|
|
3753
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
3754
3754
|
}[] | undefined;
|
|
3755
3755
|
description_visual_prompt?: string | undefined;
|
|
3756
3756
|
requiredFields?: {
|
|
@@ -3846,8 +3846,6 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3846
3846
|
event: string;
|
|
3847
3847
|
triggers: string;
|
|
3848
3848
|
guard?: SExpr | undefined;
|
|
3849
|
-
scope?: "internal" | "external" | undefined;
|
|
3850
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
3851
3849
|
source?: {
|
|
3852
3850
|
kind: "any";
|
|
3853
3851
|
} | {
|
|
@@ -3858,6 +3856,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3858
3856
|
orbital: string;
|
|
3859
3857
|
kind: "orbital";
|
|
3860
3858
|
} | undefined;
|
|
3859
|
+
scope?: "internal" | "external" | undefined;
|
|
3860
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
3861
3861
|
}[] | undefined;
|
|
3862
3862
|
description_visual_prompt?: string | undefined;
|
|
3863
3863
|
requiredFields?: {
|
|
@@ -4333,8 +4333,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4333
4333
|
event: string;
|
|
4334
4334
|
triggers: string;
|
|
4335
4335
|
guard?: SExpr | undefined;
|
|
4336
|
-
scope?: "internal" | "external" | undefined;
|
|
4337
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
4338
4336
|
source?: {
|
|
4339
4337
|
kind: "any";
|
|
4340
4338
|
} | {
|
|
@@ -4345,12 +4343,12 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4345
4343
|
orbital: string;
|
|
4346
4344
|
kind: "orbital";
|
|
4347
4345
|
} | undefined;
|
|
4346
|
+
scope?: "internal" | "external" | undefined;
|
|
4347
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
4348
4348
|
}, {
|
|
4349
4349
|
event: string;
|
|
4350
4350
|
triggers: string;
|
|
4351
4351
|
guard?: SExpr | undefined;
|
|
4352
|
-
scope?: "internal" | "external" | undefined;
|
|
4353
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
4354
4352
|
source?: {
|
|
4355
4353
|
kind: "any";
|
|
4356
4354
|
} | {
|
|
@@ -4361,6 +4359,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4361
4359
|
orbital: string;
|
|
4362
4360
|
kind: "orbital";
|
|
4363
4361
|
} | undefined;
|
|
4362
|
+
scope?: "internal" | "external" | undefined;
|
|
4363
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
4364
4364
|
}>, "many">>;
|
|
4365
4365
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4366
4366
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -4388,8 +4388,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4388
4388
|
event: string;
|
|
4389
4389
|
triggers: string;
|
|
4390
4390
|
guard?: SExpr | undefined;
|
|
4391
|
-
scope?: "internal" | "external" | undefined;
|
|
4392
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
4393
4391
|
source?: {
|
|
4394
4392
|
kind: "any";
|
|
4395
4393
|
} | {
|
|
@@ -4400,6 +4398,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4400
4398
|
orbital: string;
|
|
4401
4399
|
kind: "orbital";
|
|
4402
4400
|
} | undefined;
|
|
4401
|
+
scope?: "internal" | "external" | undefined;
|
|
4402
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
4403
4403
|
}[] | undefined;
|
|
4404
4404
|
description_visual_prompt?: string | undefined;
|
|
4405
4405
|
requiredFields?: {
|
|
@@ -4495,8 +4495,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4495
4495
|
event: string;
|
|
4496
4496
|
triggers: string;
|
|
4497
4497
|
guard?: SExpr | undefined;
|
|
4498
|
-
scope?: "internal" | "external" | undefined;
|
|
4499
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
4500
4498
|
source?: {
|
|
4501
4499
|
kind: "any";
|
|
4502
4500
|
} | {
|
|
@@ -4507,6 +4505,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4507
4505
|
orbital: string;
|
|
4508
4506
|
kind: "orbital";
|
|
4509
4507
|
} | undefined;
|
|
4508
|
+
scope?: "internal" | "external" | undefined;
|
|
4509
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
4510
4510
|
}[] | undefined;
|
|
4511
4511
|
description_visual_prompt?: string | undefined;
|
|
4512
4512
|
requiredFields?: {
|
|
@@ -5052,8 +5052,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5052
5052
|
event: string;
|
|
5053
5053
|
triggers: string;
|
|
5054
5054
|
guard?: SExpr | undefined;
|
|
5055
|
-
scope?: "internal" | "external" | undefined;
|
|
5056
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
5057
5055
|
source?: {
|
|
5058
5056
|
kind: "any";
|
|
5059
5057
|
} | {
|
|
@@ -5064,12 +5062,12 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5064
5062
|
orbital: string;
|
|
5065
5063
|
kind: "orbital";
|
|
5066
5064
|
} | undefined;
|
|
5065
|
+
scope?: "internal" | "external" | undefined;
|
|
5066
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
5067
5067
|
}, {
|
|
5068
5068
|
event: string;
|
|
5069
5069
|
triggers: string;
|
|
5070
5070
|
guard?: SExpr | undefined;
|
|
5071
|
-
scope?: "internal" | "external" | undefined;
|
|
5072
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
5073
5071
|
source?: {
|
|
5074
5072
|
kind: "any";
|
|
5075
5073
|
} | {
|
|
@@ -5080,6 +5078,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5080
5078
|
orbital: string;
|
|
5081
5079
|
kind: "orbital";
|
|
5082
5080
|
} | undefined;
|
|
5081
|
+
scope?: "internal" | "external" | undefined;
|
|
5082
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
5083
5083
|
}>, "many">>;
|
|
5084
5084
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5085
5085
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -5107,8 +5107,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5107
5107
|
event: string;
|
|
5108
5108
|
triggers: string;
|
|
5109
5109
|
guard?: SExpr | undefined;
|
|
5110
|
-
scope?: "internal" | "external" | undefined;
|
|
5111
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
5112
5110
|
source?: {
|
|
5113
5111
|
kind: "any";
|
|
5114
5112
|
} | {
|
|
@@ -5119,6 +5117,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5119
5117
|
orbital: string;
|
|
5120
5118
|
kind: "orbital";
|
|
5121
5119
|
} | undefined;
|
|
5120
|
+
scope?: "internal" | "external" | undefined;
|
|
5121
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
5122
5122
|
}[] | undefined;
|
|
5123
5123
|
description_visual_prompt?: string | undefined;
|
|
5124
5124
|
requiredFields?: {
|
|
@@ -5214,8 +5214,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5214
5214
|
event: string;
|
|
5215
5215
|
triggers: string;
|
|
5216
5216
|
guard?: SExpr | undefined;
|
|
5217
|
-
scope?: "internal" | "external" | undefined;
|
|
5218
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
5219
5217
|
source?: {
|
|
5220
5218
|
kind: "any";
|
|
5221
5219
|
} | {
|
|
@@ -5226,6 +5224,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5226
5224
|
orbital: string;
|
|
5227
5225
|
kind: "orbital";
|
|
5228
5226
|
} | undefined;
|
|
5227
|
+
scope?: "internal" | "external" | undefined;
|
|
5228
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
5229
5229
|
}[] | undefined;
|
|
5230
5230
|
description_visual_prompt?: string | undefined;
|
|
5231
5231
|
requiredFields?: {
|
|
@@ -6159,13 +6159,13 @@ declare const CustomPatternDefinitionSchema: z.ZodObject<{
|
|
|
6159
6159
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6160
6160
|
}, "strip", z.ZodTypeAny, {
|
|
6161
6161
|
type: "custom";
|
|
6162
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
6162
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6163
6163
|
className: string;
|
|
6164
6164
|
slots?: string[] | undefined;
|
|
6165
6165
|
props?: string[] | undefined;
|
|
6166
6166
|
}, {
|
|
6167
6167
|
type: "custom";
|
|
6168
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
6168
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6169
6169
|
className: string;
|
|
6170
6170
|
slots?: string[] | undefined;
|
|
6171
6171
|
props?: string[] | undefined;
|
|
@@ -6182,13 +6182,13 @@ declare const CustomPatternMapSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.Z
|
|
|
6182
6182
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6183
6183
|
}, "strip", z.ZodTypeAny, {
|
|
6184
6184
|
type: "custom";
|
|
6185
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
6185
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6186
6186
|
className: string;
|
|
6187
6187
|
slots?: string[] | undefined;
|
|
6188
6188
|
props?: string[] | undefined;
|
|
6189
6189
|
}, {
|
|
6190
6190
|
type: "custom";
|
|
6191
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
6191
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6192
6192
|
className: string;
|
|
6193
6193
|
slots?: string[] | undefined;
|
|
6194
6194
|
props?: string[] | undefined;
|
|
@@ -6983,8 +6983,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6983
6983
|
event: string;
|
|
6984
6984
|
triggers: string;
|
|
6985
6985
|
guard?: SExpr | undefined;
|
|
6986
|
-
scope?: "internal" | "external" | undefined;
|
|
6987
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
6988
6986
|
source?: {
|
|
6989
6987
|
kind: "any";
|
|
6990
6988
|
} | {
|
|
@@ -6995,12 +6993,12 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6995
6993
|
orbital: string;
|
|
6996
6994
|
kind: "orbital";
|
|
6997
6995
|
} | undefined;
|
|
6996
|
+
scope?: "internal" | "external" | undefined;
|
|
6997
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
6998
6998
|
}, {
|
|
6999
6999
|
event: string;
|
|
7000
7000
|
triggers: string;
|
|
7001
7001
|
guard?: SExpr | undefined;
|
|
7002
|
-
scope?: "internal" | "external" | undefined;
|
|
7003
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7004
7002
|
source?: {
|
|
7005
7003
|
kind: "any";
|
|
7006
7004
|
} | {
|
|
@@ -7011,6 +7009,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7011
7009
|
orbital: string;
|
|
7012
7010
|
kind: "orbital";
|
|
7013
7011
|
} | undefined;
|
|
7012
|
+
scope?: "internal" | "external" | undefined;
|
|
7013
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7014
7014
|
}>, "many">>;
|
|
7015
7015
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7016
7016
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -7038,8 +7038,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7038
7038
|
event: string;
|
|
7039
7039
|
triggers: string;
|
|
7040
7040
|
guard?: SExpr | undefined;
|
|
7041
|
-
scope?: "internal" | "external" | undefined;
|
|
7042
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7043
7041
|
source?: {
|
|
7044
7042
|
kind: "any";
|
|
7045
7043
|
} | {
|
|
@@ -7050,6 +7048,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7050
7048
|
orbital: string;
|
|
7051
7049
|
kind: "orbital";
|
|
7052
7050
|
} | undefined;
|
|
7051
|
+
scope?: "internal" | "external" | undefined;
|
|
7052
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7053
7053
|
}[] | undefined;
|
|
7054
7054
|
description_visual_prompt?: string | undefined;
|
|
7055
7055
|
requiredFields?: {
|
|
@@ -7145,8 +7145,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7145
7145
|
event: string;
|
|
7146
7146
|
triggers: string;
|
|
7147
7147
|
guard?: SExpr | undefined;
|
|
7148
|
-
scope?: "internal" | "external" | undefined;
|
|
7149
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7150
7148
|
source?: {
|
|
7151
7149
|
kind: "any";
|
|
7152
7150
|
} | {
|
|
@@ -7157,6 +7155,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7157
7155
|
orbital: string;
|
|
7158
7156
|
kind: "orbital";
|
|
7159
7157
|
} | undefined;
|
|
7158
|
+
scope?: "internal" | "external" | undefined;
|
|
7159
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7160
7160
|
}[] | undefined;
|
|
7161
7161
|
description_visual_prompt?: string | undefined;
|
|
7162
7162
|
requiredFields?: {
|
|
@@ -7258,8 +7258,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7258
7258
|
event: string;
|
|
7259
7259
|
triggers: string;
|
|
7260
7260
|
guard?: SExpr | undefined;
|
|
7261
|
-
scope?: "internal" | "external" | undefined;
|
|
7262
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7263
7261
|
source?: {
|
|
7264
7262
|
kind: "any";
|
|
7265
7263
|
} | {
|
|
@@ -7270,6 +7268,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7270
7268
|
orbital: string;
|
|
7271
7269
|
kind: "orbital";
|
|
7272
7270
|
} | undefined;
|
|
7271
|
+
scope?: "internal" | "external" | undefined;
|
|
7272
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7273
7273
|
}[] | undefined;
|
|
7274
7274
|
description_visual_prompt?: string | undefined;
|
|
7275
7275
|
requiredFields?: {
|
|
@@ -7377,8 +7377,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7377
7377
|
event: string;
|
|
7378
7378
|
triggers: string;
|
|
7379
7379
|
guard?: SExpr | undefined;
|
|
7380
|
-
scope?: "internal" | "external" | undefined;
|
|
7381
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7382
7380
|
source?: {
|
|
7383
7381
|
kind: "any";
|
|
7384
7382
|
} | {
|
|
@@ -7389,6 +7387,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7389
7387
|
orbital: string;
|
|
7390
7388
|
kind: "orbital";
|
|
7391
7389
|
} | undefined;
|
|
7390
|
+
scope?: "internal" | "external" | undefined;
|
|
7391
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7392
7392
|
}[] | undefined;
|
|
7393
7393
|
description_visual_prompt?: string | undefined;
|
|
7394
7394
|
requiredFields?: {
|
|
@@ -7903,8 +7903,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7903
7903
|
event: string;
|
|
7904
7904
|
triggers: string;
|
|
7905
7905
|
guard?: SExpr | undefined;
|
|
7906
|
-
scope?: "internal" | "external" | undefined;
|
|
7907
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7908
7906
|
source?: {
|
|
7909
7907
|
kind: "any";
|
|
7910
7908
|
} | {
|
|
@@ -7915,12 +7913,12 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7915
7913
|
orbital: string;
|
|
7916
7914
|
kind: "orbital";
|
|
7917
7915
|
} | undefined;
|
|
7916
|
+
scope?: "internal" | "external" | undefined;
|
|
7917
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7918
7918
|
}, {
|
|
7919
7919
|
event: string;
|
|
7920
7920
|
triggers: string;
|
|
7921
7921
|
guard?: SExpr | undefined;
|
|
7922
|
-
scope?: "internal" | "external" | undefined;
|
|
7923
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7924
7922
|
source?: {
|
|
7925
7923
|
kind: "any";
|
|
7926
7924
|
} | {
|
|
@@ -7931,6 +7929,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7931
7929
|
orbital: string;
|
|
7932
7930
|
kind: "orbital";
|
|
7933
7931
|
} | undefined;
|
|
7932
|
+
scope?: "internal" | "external" | undefined;
|
|
7933
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7934
7934
|
}>, "many">>;
|
|
7935
7935
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7936
7936
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -7958,8 +7958,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7958
7958
|
event: string;
|
|
7959
7959
|
triggers: string;
|
|
7960
7960
|
guard?: SExpr | undefined;
|
|
7961
|
-
scope?: "internal" | "external" | undefined;
|
|
7962
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
7963
7961
|
source?: {
|
|
7964
7962
|
kind: "any";
|
|
7965
7963
|
} | {
|
|
@@ -7970,6 +7968,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7970
7968
|
orbital: string;
|
|
7971
7969
|
kind: "orbital";
|
|
7972
7970
|
} | undefined;
|
|
7971
|
+
scope?: "internal" | "external" | undefined;
|
|
7972
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
7973
7973
|
}[] | undefined;
|
|
7974
7974
|
description_visual_prompt?: string | undefined;
|
|
7975
7975
|
requiredFields?: {
|
|
@@ -8065,8 +8065,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8065
8065
|
event: string;
|
|
8066
8066
|
triggers: string;
|
|
8067
8067
|
guard?: SExpr | undefined;
|
|
8068
|
-
scope?: "internal" | "external" | undefined;
|
|
8069
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
8070
8068
|
source?: {
|
|
8071
8069
|
kind: "any";
|
|
8072
8070
|
} | {
|
|
@@ -8077,6 +8075,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8077
8075
|
orbital: string;
|
|
8078
8076
|
kind: "orbital";
|
|
8079
8077
|
} | undefined;
|
|
8078
|
+
scope?: "internal" | "external" | undefined;
|
|
8079
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
8080
8080
|
}[] | undefined;
|
|
8081
8081
|
description_visual_prompt?: string | undefined;
|
|
8082
8082
|
requiredFields?: {
|
|
@@ -8178,8 +8178,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8178
8178
|
event: string;
|
|
8179
8179
|
triggers: string;
|
|
8180
8180
|
guard?: SExpr | undefined;
|
|
8181
|
-
scope?: "internal" | "external" | undefined;
|
|
8182
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
8183
8181
|
source?: {
|
|
8184
8182
|
kind: "any";
|
|
8185
8183
|
} | {
|
|
@@ -8190,6 +8188,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8190
8188
|
orbital: string;
|
|
8191
8189
|
kind: "orbital";
|
|
8192
8190
|
} | undefined;
|
|
8191
|
+
scope?: "internal" | "external" | undefined;
|
|
8192
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
8193
8193
|
}[] | undefined;
|
|
8194
8194
|
description_visual_prompt?: string | undefined;
|
|
8195
8195
|
requiredFields?: {
|
|
@@ -8297,8 +8297,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8297
8297
|
event: string;
|
|
8298
8298
|
triggers: string;
|
|
8299
8299
|
guard?: SExpr | undefined;
|
|
8300
|
-
scope?: "internal" | "external" | undefined;
|
|
8301
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
8302
8300
|
source?: {
|
|
8303
8301
|
kind: "any";
|
|
8304
8302
|
} | {
|
|
@@ -8309,6 +8307,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8309
8307
|
orbital: string;
|
|
8310
8308
|
kind: "orbital";
|
|
8311
8309
|
} | undefined;
|
|
8310
|
+
scope?: "internal" | "external" | undefined;
|
|
8311
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
8312
8312
|
}[] | undefined;
|
|
8313
8313
|
description_visual_prompt?: string | undefined;
|
|
8314
8314
|
requiredFields?: {
|
|
@@ -8622,22 +8622,22 @@ declare const ComputedEventListenerSchema: z.ZodObject<{
|
|
|
8622
8622
|
payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8623
8623
|
}, "strip", z.ZodTypeAny, {
|
|
8624
8624
|
event: string;
|
|
8625
|
-
triggers: string;
|
|
8626
8625
|
source: {
|
|
8627
8626
|
trait: string;
|
|
8628
8627
|
transition?: string | undefined;
|
|
8629
8628
|
tick?: string | undefined;
|
|
8630
8629
|
};
|
|
8630
|
+
triggers: string;
|
|
8631
8631
|
guard?: SExpr | undefined;
|
|
8632
8632
|
payloadMapping?: Record<string, string> | undefined;
|
|
8633
8633
|
}, {
|
|
8634
8634
|
event: string;
|
|
8635
|
-
triggers: string;
|
|
8636
8635
|
source: {
|
|
8637
8636
|
trait: string;
|
|
8638
8637
|
transition?: string | undefined;
|
|
8639
8638
|
tick?: string | undefined;
|
|
8640
8639
|
};
|
|
8640
|
+
triggers: string;
|
|
8641
8641
|
guard?: SExpr | undefined;
|
|
8642
8642
|
payloadMapping?: Record<string, string> | undefined;
|
|
8643
8643
|
}>;
|
|
@@ -9496,8 +9496,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9496
9496
|
event: string;
|
|
9497
9497
|
triggers: string;
|
|
9498
9498
|
guard?: SExpr | undefined;
|
|
9499
|
-
scope?: "internal" | "external" | undefined;
|
|
9500
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
9501
9499
|
source?: {
|
|
9502
9500
|
kind: "any";
|
|
9503
9501
|
} | {
|
|
@@ -9508,12 +9506,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9508
9506
|
orbital: string;
|
|
9509
9507
|
kind: "orbital";
|
|
9510
9508
|
} | undefined;
|
|
9509
|
+
scope?: "internal" | "external" | undefined;
|
|
9510
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
9511
9511
|
}, {
|
|
9512
9512
|
event: string;
|
|
9513
9513
|
triggers: string;
|
|
9514
9514
|
guard?: SExpr | undefined;
|
|
9515
|
-
scope?: "internal" | "external" | undefined;
|
|
9516
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
9517
9515
|
source?: {
|
|
9518
9516
|
kind: "any";
|
|
9519
9517
|
} | {
|
|
@@ -9524,6 +9522,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9524
9522
|
orbital: string;
|
|
9525
9523
|
kind: "orbital";
|
|
9526
9524
|
} | undefined;
|
|
9525
|
+
scope?: "internal" | "external" | undefined;
|
|
9526
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
9527
9527
|
}>, "many">>;
|
|
9528
9528
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9529
9529
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -9551,8 +9551,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9551
9551
|
event: string;
|
|
9552
9552
|
triggers: string;
|
|
9553
9553
|
guard?: SExpr | undefined;
|
|
9554
|
-
scope?: "internal" | "external" | undefined;
|
|
9555
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
9556
9554
|
source?: {
|
|
9557
9555
|
kind: "any";
|
|
9558
9556
|
} | {
|
|
@@ -9563,6 +9561,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9563
9561
|
orbital: string;
|
|
9564
9562
|
kind: "orbital";
|
|
9565
9563
|
} | undefined;
|
|
9564
|
+
scope?: "internal" | "external" | undefined;
|
|
9565
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
9566
9566
|
}[] | undefined;
|
|
9567
9567
|
description_visual_prompt?: string | undefined;
|
|
9568
9568
|
requiredFields?: {
|
|
@@ -9658,8 +9658,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9658
9658
|
event: string;
|
|
9659
9659
|
triggers: string;
|
|
9660
9660
|
guard?: SExpr | undefined;
|
|
9661
|
-
scope?: "internal" | "external" | undefined;
|
|
9662
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
9663
9661
|
source?: {
|
|
9664
9662
|
kind: "any";
|
|
9665
9663
|
} | {
|
|
@@ -9670,6 +9668,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9670
9668
|
orbital: string;
|
|
9671
9669
|
kind: "orbital";
|
|
9672
9670
|
} | undefined;
|
|
9671
|
+
scope?: "internal" | "external" | undefined;
|
|
9672
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
9673
9673
|
}[] | undefined;
|
|
9674
9674
|
description_visual_prompt?: string | undefined;
|
|
9675
9675
|
requiredFields?: {
|
|
@@ -10177,8 +10177,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10177
10177
|
event: string;
|
|
10178
10178
|
triggers: string;
|
|
10179
10179
|
guard?: SExpr | undefined;
|
|
10180
|
-
scope?: "internal" | "external" | undefined;
|
|
10181
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
10182
10180
|
source?: {
|
|
10183
10181
|
kind: "any";
|
|
10184
10182
|
} | {
|
|
@@ -10189,12 +10187,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10189
10187
|
orbital: string;
|
|
10190
10188
|
kind: "orbital";
|
|
10191
10189
|
} | undefined;
|
|
10190
|
+
scope?: "internal" | "external" | undefined;
|
|
10191
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
10192
10192
|
}, {
|
|
10193
10193
|
event: string;
|
|
10194
10194
|
triggers: string;
|
|
10195
10195
|
guard?: SExpr | undefined;
|
|
10196
|
-
scope?: "internal" | "external" | undefined;
|
|
10197
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
10198
10196
|
source?: {
|
|
10199
10197
|
kind: "any";
|
|
10200
10198
|
} | {
|
|
@@ -10205,6 +10203,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10205
10203
|
orbital: string;
|
|
10206
10204
|
kind: "orbital";
|
|
10207
10205
|
} | undefined;
|
|
10206
|
+
scope?: "internal" | "external" | undefined;
|
|
10207
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
10208
10208
|
}>, "many">>;
|
|
10209
10209
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10210
10210
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -10232,8 +10232,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10232
10232
|
event: string;
|
|
10233
10233
|
triggers: string;
|
|
10234
10234
|
guard?: SExpr | undefined;
|
|
10235
|
-
scope?: "internal" | "external" | undefined;
|
|
10236
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
10237
10235
|
source?: {
|
|
10238
10236
|
kind: "any";
|
|
10239
10237
|
} | {
|
|
@@ -10244,6 +10242,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10244
10242
|
orbital: string;
|
|
10245
10243
|
kind: "orbital";
|
|
10246
10244
|
} | undefined;
|
|
10245
|
+
scope?: "internal" | "external" | undefined;
|
|
10246
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
10247
10247
|
}[] | undefined;
|
|
10248
10248
|
description_visual_prompt?: string | undefined;
|
|
10249
10249
|
requiredFields?: {
|
|
@@ -10339,8 +10339,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10339
10339
|
event: string;
|
|
10340
10340
|
triggers: string;
|
|
10341
10341
|
guard?: SExpr | undefined;
|
|
10342
|
-
scope?: "internal" | "external" | undefined;
|
|
10343
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
10344
10342
|
source?: {
|
|
10345
10343
|
kind: "any";
|
|
10346
10344
|
} | {
|
|
@@ -10351,6 +10349,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10351
10349
|
orbital: string;
|
|
10352
10350
|
kind: "orbital";
|
|
10353
10351
|
} | undefined;
|
|
10352
|
+
scope?: "internal" | "external" | undefined;
|
|
10353
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
10354
10354
|
}[] | undefined;
|
|
10355
10355
|
description_visual_prompt?: string | undefined;
|
|
10356
10356
|
requiredFields?: {
|
|
@@ -10452,8 +10452,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10452
10452
|
event: string;
|
|
10453
10453
|
triggers: string;
|
|
10454
10454
|
guard?: SExpr | undefined;
|
|
10455
|
-
scope?: "internal" | "external" | undefined;
|
|
10456
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
10457
10455
|
source?: {
|
|
10458
10456
|
kind: "any";
|
|
10459
10457
|
} | {
|
|
@@ -10464,6 +10462,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10464
10462
|
orbital: string;
|
|
10465
10463
|
kind: "orbital";
|
|
10466
10464
|
} | undefined;
|
|
10465
|
+
scope?: "internal" | "external" | undefined;
|
|
10466
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
10467
10467
|
}[] | undefined;
|
|
10468
10468
|
description_visual_prompt?: string | undefined;
|
|
10469
10469
|
requiredFields?: {
|
|
@@ -10571,8 +10571,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10571
10571
|
event: string;
|
|
10572
10572
|
triggers: string;
|
|
10573
10573
|
guard?: SExpr | undefined;
|
|
10574
|
-
scope?: "internal" | "external" | undefined;
|
|
10575
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
10576
10574
|
source?: {
|
|
10577
10575
|
kind: "any";
|
|
10578
10576
|
} | {
|
|
@@ -10583,6 +10581,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10583
10581
|
orbital: string;
|
|
10584
10582
|
kind: "orbital";
|
|
10585
10583
|
} | undefined;
|
|
10584
|
+
scope?: "internal" | "external" | undefined;
|
|
10585
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
10586
10586
|
}[] | undefined;
|
|
10587
10587
|
description_visual_prompt?: string | undefined;
|
|
10588
10588
|
requiredFields?: {
|
|
@@ -10751,22 +10751,22 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10751
10751
|
payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10752
10752
|
}, "strip", z.ZodTypeAny, {
|
|
10753
10753
|
event: string;
|
|
10754
|
-
triggers: string;
|
|
10755
10754
|
source: {
|
|
10756
10755
|
trait: string;
|
|
10757
10756
|
transition?: string | undefined;
|
|
10758
10757
|
tick?: string | undefined;
|
|
10759
10758
|
};
|
|
10759
|
+
triggers: string;
|
|
10760
10760
|
guard?: SExpr | undefined;
|
|
10761
10761
|
payloadMapping?: Record<string, string> | undefined;
|
|
10762
10762
|
}, {
|
|
10763
10763
|
event: string;
|
|
10764
|
-
triggers: string;
|
|
10765
10764
|
source: {
|
|
10766
10765
|
trait: string;
|
|
10767
10766
|
transition?: string | undefined;
|
|
10768
10767
|
tick?: string | undefined;
|
|
10769
10768
|
};
|
|
10769
|
+
triggers: string;
|
|
10770
10770
|
guard?: SExpr | undefined;
|
|
10771
10771
|
payloadMapping?: Record<string, string> | undefined;
|
|
10772
10772
|
}>, "many">>;
|
|
@@ -10970,8 +10970,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10970
10970
|
event: string;
|
|
10971
10971
|
triggers: string;
|
|
10972
10972
|
guard?: SExpr | undefined;
|
|
10973
|
-
scope?: "internal" | "external" | undefined;
|
|
10974
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
10975
10973
|
source?: {
|
|
10976
10974
|
kind: "any";
|
|
10977
10975
|
} | {
|
|
@@ -10982,6 +10980,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10982
10980
|
orbital: string;
|
|
10983
10981
|
kind: "orbital";
|
|
10984
10982
|
} | undefined;
|
|
10983
|
+
scope?: "internal" | "external" | undefined;
|
|
10984
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
10985
10985
|
}[] | undefined;
|
|
10986
10986
|
description_visual_prompt?: string | undefined;
|
|
10987
10987
|
requiredFields?: {
|
|
@@ -11085,8 +11085,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11085
11085
|
event: string;
|
|
11086
11086
|
triggers: string;
|
|
11087
11087
|
guard?: SExpr | undefined;
|
|
11088
|
-
scope?: "internal" | "external" | undefined;
|
|
11089
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
11090
11088
|
source?: {
|
|
11091
11089
|
kind: "any";
|
|
11092
11090
|
} | {
|
|
@@ -11097,6 +11095,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11097
11095
|
orbital: string;
|
|
11098
11096
|
kind: "orbital";
|
|
11099
11097
|
} | undefined;
|
|
11098
|
+
scope?: "internal" | "external" | undefined;
|
|
11099
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
11100
11100
|
}[] | undefined;
|
|
11101
11101
|
description_visual_prompt?: string | undefined;
|
|
11102
11102
|
requiredFields?: {
|
|
@@ -11213,12 +11213,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11213
11213
|
}[] | undefined;
|
|
11214
11214
|
listens?: {
|
|
11215
11215
|
event: string;
|
|
11216
|
-
triggers: string;
|
|
11217
11216
|
source: {
|
|
11218
11217
|
trait: string;
|
|
11219
11218
|
transition?: string | undefined;
|
|
11220
11219
|
tick?: string | undefined;
|
|
11221
11220
|
};
|
|
11221
|
+
triggers: string;
|
|
11222
11222
|
guard?: SExpr | undefined;
|
|
11223
11223
|
payloadMapping?: Record<string, string> | undefined;
|
|
11224
11224
|
}[] | undefined;
|
|
@@ -11370,8 +11370,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11370
11370
|
event: string;
|
|
11371
11371
|
triggers: string;
|
|
11372
11372
|
guard?: SExpr | undefined;
|
|
11373
|
-
scope?: "internal" | "external" | undefined;
|
|
11374
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
11375
11373
|
source?: {
|
|
11376
11374
|
kind: "any";
|
|
11377
11375
|
} | {
|
|
@@ -11382,6 +11380,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11382
11380
|
orbital: string;
|
|
11383
11381
|
kind: "orbital";
|
|
11384
11382
|
} | undefined;
|
|
11383
|
+
scope?: "internal" | "external" | undefined;
|
|
11384
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
11385
11385
|
}[] | undefined;
|
|
11386
11386
|
description_visual_prompt?: string | undefined;
|
|
11387
11387
|
requiredFields?: {
|
|
@@ -11485,8 +11485,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11485
11485
|
event: string;
|
|
11486
11486
|
triggers: string;
|
|
11487
11487
|
guard?: SExpr | undefined;
|
|
11488
|
-
scope?: "internal" | "external" | undefined;
|
|
11489
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
11490
11488
|
source?: {
|
|
11491
11489
|
kind: "any";
|
|
11492
11490
|
} | {
|
|
@@ -11497,6 +11495,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11497
11495
|
orbital: string;
|
|
11498
11496
|
kind: "orbital";
|
|
11499
11497
|
} | undefined;
|
|
11498
|
+
scope?: "internal" | "external" | undefined;
|
|
11499
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
11500
11500
|
}[] | undefined;
|
|
11501
11501
|
description_visual_prompt?: string | undefined;
|
|
11502
11502
|
requiredFields?: {
|
|
@@ -11613,12 +11613,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11613
11613
|
}[] | undefined;
|
|
11614
11614
|
listens?: {
|
|
11615
11615
|
event: string;
|
|
11616
|
-
triggers: string;
|
|
11617
11616
|
source: {
|
|
11618
11617
|
trait: string;
|
|
11619
11618
|
transition?: string | undefined;
|
|
11620
11619
|
tick?: string | undefined;
|
|
11621
11620
|
};
|
|
11621
|
+
triggers: string;
|
|
11622
11622
|
guard?: SExpr | undefined;
|
|
11623
11623
|
payloadMapping?: Record<string, string> | undefined;
|
|
11624
11624
|
}[] | undefined;
|
|
@@ -12419,8 +12419,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12419
12419
|
event: string;
|
|
12420
12420
|
triggers: string;
|
|
12421
12421
|
guard?: SExpr | undefined;
|
|
12422
|
-
scope?: "internal" | "external" | undefined;
|
|
12423
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
12424
12422
|
source?: {
|
|
12425
12423
|
kind: "any";
|
|
12426
12424
|
} | {
|
|
@@ -12431,12 +12429,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12431
12429
|
orbital: string;
|
|
12432
12430
|
kind: "orbital";
|
|
12433
12431
|
} | undefined;
|
|
12432
|
+
scope?: "internal" | "external" | undefined;
|
|
12433
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
12434
12434
|
}, {
|
|
12435
12435
|
event: string;
|
|
12436
12436
|
triggers: string;
|
|
12437
12437
|
guard?: SExpr | undefined;
|
|
12438
|
-
scope?: "internal" | "external" | undefined;
|
|
12439
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
12440
12438
|
source?: {
|
|
12441
12439
|
kind: "any";
|
|
12442
12440
|
} | {
|
|
@@ -12447,6 +12445,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12447
12445
|
orbital: string;
|
|
12448
12446
|
kind: "orbital";
|
|
12449
12447
|
} | undefined;
|
|
12448
|
+
scope?: "internal" | "external" | undefined;
|
|
12449
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
12450
12450
|
}>, "many">>;
|
|
12451
12451
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12452
12452
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -12474,8 +12474,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12474
12474
|
event: string;
|
|
12475
12475
|
triggers: string;
|
|
12476
12476
|
guard?: SExpr | undefined;
|
|
12477
|
-
scope?: "internal" | "external" | undefined;
|
|
12478
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
12479
12477
|
source?: {
|
|
12480
12478
|
kind: "any";
|
|
12481
12479
|
} | {
|
|
@@ -12486,6 +12484,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12486
12484
|
orbital: string;
|
|
12487
12485
|
kind: "orbital";
|
|
12488
12486
|
} | undefined;
|
|
12487
|
+
scope?: "internal" | "external" | undefined;
|
|
12488
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
12489
12489
|
}[] | undefined;
|
|
12490
12490
|
description_visual_prompt?: string | undefined;
|
|
12491
12491
|
requiredFields?: {
|
|
@@ -12581,8 +12581,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12581
12581
|
event: string;
|
|
12582
12582
|
triggers: string;
|
|
12583
12583
|
guard?: SExpr | undefined;
|
|
12584
|
-
scope?: "internal" | "external" | undefined;
|
|
12585
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
12586
12584
|
source?: {
|
|
12587
12585
|
kind: "any";
|
|
12588
12586
|
} | {
|
|
@@ -12593,6 +12591,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12593
12591
|
orbital: string;
|
|
12594
12592
|
kind: "orbital";
|
|
12595
12593
|
} | undefined;
|
|
12594
|
+
scope?: "internal" | "external" | undefined;
|
|
12595
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
12596
12596
|
}[] | undefined;
|
|
12597
12597
|
description_visual_prompt?: string | undefined;
|
|
12598
12598
|
requiredFields?: {
|
|
@@ -13100,8 +13100,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13100
13100
|
event: string;
|
|
13101
13101
|
triggers: string;
|
|
13102
13102
|
guard?: SExpr | undefined;
|
|
13103
|
-
scope?: "internal" | "external" | undefined;
|
|
13104
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
13105
13103
|
source?: {
|
|
13106
13104
|
kind: "any";
|
|
13107
13105
|
} | {
|
|
@@ -13112,12 +13110,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13112
13110
|
orbital: string;
|
|
13113
13111
|
kind: "orbital";
|
|
13114
13112
|
} | undefined;
|
|
13113
|
+
scope?: "internal" | "external" | undefined;
|
|
13114
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
13115
13115
|
}, {
|
|
13116
13116
|
event: string;
|
|
13117
13117
|
triggers: string;
|
|
13118
13118
|
guard?: SExpr | undefined;
|
|
13119
|
-
scope?: "internal" | "external" | undefined;
|
|
13120
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
13121
13119
|
source?: {
|
|
13122
13120
|
kind: "any";
|
|
13123
13121
|
} | {
|
|
@@ -13128,6 +13126,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13128
13126
|
orbital: string;
|
|
13129
13127
|
kind: "orbital";
|
|
13130
13128
|
} | undefined;
|
|
13129
|
+
scope?: "internal" | "external" | undefined;
|
|
13130
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
13131
13131
|
}>, "many">>;
|
|
13132
13132
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13133
13133
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -13155,8 +13155,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13155
13155
|
event: string;
|
|
13156
13156
|
triggers: string;
|
|
13157
13157
|
guard?: SExpr | undefined;
|
|
13158
|
-
scope?: "internal" | "external" | undefined;
|
|
13159
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
13160
13158
|
source?: {
|
|
13161
13159
|
kind: "any";
|
|
13162
13160
|
} | {
|
|
@@ -13167,6 +13165,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13167
13165
|
orbital: string;
|
|
13168
13166
|
kind: "orbital";
|
|
13169
13167
|
} | undefined;
|
|
13168
|
+
scope?: "internal" | "external" | undefined;
|
|
13169
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
13170
13170
|
}[] | undefined;
|
|
13171
13171
|
description_visual_prompt?: string | undefined;
|
|
13172
13172
|
requiredFields?: {
|
|
@@ -13262,8 +13262,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13262
13262
|
event: string;
|
|
13263
13263
|
triggers: string;
|
|
13264
13264
|
guard?: SExpr | undefined;
|
|
13265
|
-
scope?: "internal" | "external" | undefined;
|
|
13266
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
13267
13265
|
source?: {
|
|
13268
13266
|
kind: "any";
|
|
13269
13267
|
} | {
|
|
@@ -13274,6 +13272,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13274
13272
|
orbital: string;
|
|
13275
13273
|
kind: "orbital";
|
|
13276
13274
|
} | undefined;
|
|
13275
|
+
scope?: "internal" | "external" | undefined;
|
|
13276
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
13277
13277
|
}[] | undefined;
|
|
13278
13278
|
description_visual_prompt?: string | undefined;
|
|
13279
13279
|
requiredFields?: {
|
|
@@ -13375,8 +13375,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13375
13375
|
event: string;
|
|
13376
13376
|
triggers: string;
|
|
13377
13377
|
guard?: SExpr | undefined;
|
|
13378
|
-
scope?: "internal" | "external" | undefined;
|
|
13379
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
13380
13378
|
source?: {
|
|
13381
13379
|
kind: "any";
|
|
13382
13380
|
} | {
|
|
@@ -13387,6 +13385,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13387
13385
|
orbital: string;
|
|
13388
13386
|
kind: "orbital";
|
|
13389
13387
|
} | undefined;
|
|
13388
|
+
scope?: "internal" | "external" | undefined;
|
|
13389
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
13390
13390
|
}[] | undefined;
|
|
13391
13391
|
description_visual_prompt?: string | undefined;
|
|
13392
13392
|
requiredFields?: {
|
|
@@ -13494,8 +13494,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13494
13494
|
event: string;
|
|
13495
13495
|
triggers: string;
|
|
13496
13496
|
guard?: SExpr | undefined;
|
|
13497
|
-
scope?: "internal" | "external" | undefined;
|
|
13498
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
13499
13497
|
source?: {
|
|
13500
13498
|
kind: "any";
|
|
13501
13499
|
} | {
|
|
@@ -13506,6 +13504,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13506
13504
|
orbital: string;
|
|
13507
13505
|
kind: "orbital";
|
|
13508
13506
|
} | undefined;
|
|
13507
|
+
scope?: "internal" | "external" | undefined;
|
|
13508
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
13509
13509
|
}[] | undefined;
|
|
13510
13510
|
description_visual_prompt?: string | undefined;
|
|
13511
13511
|
requiredFields?: {
|
|
@@ -13674,22 +13674,22 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13674
13674
|
payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
13675
13675
|
}, "strip", z.ZodTypeAny, {
|
|
13676
13676
|
event: string;
|
|
13677
|
-
triggers: string;
|
|
13678
13677
|
source: {
|
|
13679
13678
|
trait: string;
|
|
13680
13679
|
transition?: string | undefined;
|
|
13681
13680
|
tick?: string | undefined;
|
|
13682
13681
|
};
|
|
13682
|
+
triggers: string;
|
|
13683
13683
|
guard?: SExpr | undefined;
|
|
13684
13684
|
payloadMapping?: Record<string, string> | undefined;
|
|
13685
13685
|
}, {
|
|
13686
13686
|
event: string;
|
|
13687
|
-
triggers: string;
|
|
13688
13687
|
source: {
|
|
13689
13688
|
trait: string;
|
|
13690
13689
|
transition?: string | undefined;
|
|
13691
13690
|
tick?: string | undefined;
|
|
13692
13691
|
};
|
|
13692
|
+
triggers: string;
|
|
13693
13693
|
guard?: SExpr | undefined;
|
|
13694
13694
|
payloadMapping?: Record<string, string> | undefined;
|
|
13695
13695
|
}>, "many">>;
|
|
@@ -13893,8 +13893,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13893
13893
|
event: string;
|
|
13894
13894
|
triggers: string;
|
|
13895
13895
|
guard?: SExpr | undefined;
|
|
13896
|
-
scope?: "internal" | "external" | undefined;
|
|
13897
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
13898
13896
|
source?: {
|
|
13899
13897
|
kind: "any";
|
|
13900
13898
|
} | {
|
|
@@ -13905,6 +13903,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13905
13903
|
orbital: string;
|
|
13906
13904
|
kind: "orbital";
|
|
13907
13905
|
} | undefined;
|
|
13906
|
+
scope?: "internal" | "external" | undefined;
|
|
13907
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
13908
13908
|
}[] | undefined;
|
|
13909
13909
|
description_visual_prompt?: string | undefined;
|
|
13910
13910
|
requiredFields?: {
|
|
@@ -14008,8 +14008,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14008
14008
|
event: string;
|
|
14009
14009
|
triggers: string;
|
|
14010
14010
|
guard?: SExpr | undefined;
|
|
14011
|
-
scope?: "internal" | "external" | undefined;
|
|
14012
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
14013
14011
|
source?: {
|
|
14014
14012
|
kind: "any";
|
|
14015
14013
|
} | {
|
|
@@ -14020,6 +14018,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14020
14018
|
orbital: string;
|
|
14021
14019
|
kind: "orbital";
|
|
14022
14020
|
} | undefined;
|
|
14021
|
+
scope?: "internal" | "external" | undefined;
|
|
14022
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
14023
14023
|
}[] | undefined;
|
|
14024
14024
|
description_visual_prompt?: string | undefined;
|
|
14025
14025
|
requiredFields?: {
|
|
@@ -14136,12 +14136,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14136
14136
|
}[] | undefined;
|
|
14137
14137
|
listens?: {
|
|
14138
14138
|
event: string;
|
|
14139
|
-
triggers: string;
|
|
14140
14139
|
source: {
|
|
14141
14140
|
trait: string;
|
|
14142
14141
|
transition?: string | undefined;
|
|
14143
14142
|
tick?: string | undefined;
|
|
14144
14143
|
};
|
|
14144
|
+
triggers: string;
|
|
14145
14145
|
guard?: SExpr | undefined;
|
|
14146
14146
|
payloadMapping?: Record<string, string> | undefined;
|
|
14147
14147
|
}[] | undefined;
|
|
@@ -14293,8 +14293,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14293
14293
|
event: string;
|
|
14294
14294
|
triggers: string;
|
|
14295
14295
|
guard?: SExpr | undefined;
|
|
14296
|
-
scope?: "internal" | "external" | undefined;
|
|
14297
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
14298
14296
|
source?: {
|
|
14299
14297
|
kind: "any";
|
|
14300
14298
|
} | {
|
|
@@ -14305,6 +14303,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14305
14303
|
orbital: string;
|
|
14306
14304
|
kind: "orbital";
|
|
14307
14305
|
} | undefined;
|
|
14306
|
+
scope?: "internal" | "external" | undefined;
|
|
14307
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
14308
14308
|
}[] | undefined;
|
|
14309
14309
|
description_visual_prompt?: string | undefined;
|
|
14310
14310
|
requiredFields?: {
|
|
@@ -14408,8 +14408,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14408
14408
|
event: string;
|
|
14409
14409
|
triggers: string;
|
|
14410
14410
|
guard?: SExpr | undefined;
|
|
14411
|
-
scope?: "internal" | "external" | undefined;
|
|
14412
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
14413
14411
|
source?: {
|
|
14414
14412
|
kind: "any";
|
|
14415
14413
|
} | {
|
|
@@ -14420,6 +14418,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14420
14418
|
orbital: string;
|
|
14421
14419
|
kind: "orbital";
|
|
14422
14420
|
} | undefined;
|
|
14421
|
+
scope?: "internal" | "external" | undefined;
|
|
14422
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
14423
14423
|
}[] | undefined;
|
|
14424
14424
|
description_visual_prompt?: string | undefined;
|
|
14425
14425
|
requiredFields?: {
|
|
@@ -14536,12 +14536,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14536
14536
|
}[] | undefined;
|
|
14537
14537
|
listens?: {
|
|
14538
14538
|
event: string;
|
|
14539
|
-
triggers: string;
|
|
14540
14539
|
source: {
|
|
14541
14540
|
trait: string;
|
|
14542
14541
|
transition?: string | undefined;
|
|
14543
14542
|
tick?: string | undefined;
|
|
14544
14543
|
};
|
|
14544
|
+
triggers: string;
|
|
14545
14545
|
guard?: SExpr | undefined;
|
|
14546
14546
|
payloadMapping?: Record<string, string> | undefined;
|
|
14547
14547
|
}[] | undefined;
|
|
@@ -15349,8 +15349,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15349
15349
|
event: string;
|
|
15350
15350
|
triggers: string;
|
|
15351
15351
|
guard?: SExpr | undefined;
|
|
15352
|
-
scope?: "internal" | "external" | undefined;
|
|
15353
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
15354
15352
|
source?: {
|
|
15355
15353
|
kind: "any";
|
|
15356
15354
|
} | {
|
|
@@ -15361,12 +15359,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15361
15359
|
orbital: string;
|
|
15362
15360
|
kind: "orbital";
|
|
15363
15361
|
} | undefined;
|
|
15362
|
+
scope?: "internal" | "external" | undefined;
|
|
15363
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
15364
15364
|
}, {
|
|
15365
15365
|
event: string;
|
|
15366
15366
|
triggers: string;
|
|
15367
15367
|
guard?: SExpr | undefined;
|
|
15368
|
-
scope?: "internal" | "external" | undefined;
|
|
15369
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
15370
15368
|
source?: {
|
|
15371
15369
|
kind: "any";
|
|
15372
15370
|
} | {
|
|
@@ -15377,6 +15375,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15377
15375
|
orbital: string;
|
|
15378
15376
|
kind: "orbital";
|
|
15379
15377
|
} | undefined;
|
|
15378
|
+
scope?: "internal" | "external" | undefined;
|
|
15379
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
15380
15380
|
}>, "many">>;
|
|
15381
15381
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15382
15382
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -15404,8 +15404,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15404
15404
|
event: string;
|
|
15405
15405
|
triggers: string;
|
|
15406
15406
|
guard?: SExpr | undefined;
|
|
15407
|
-
scope?: "internal" | "external" | undefined;
|
|
15408
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
15409
15407
|
source?: {
|
|
15410
15408
|
kind: "any";
|
|
15411
15409
|
} | {
|
|
@@ -15416,6 +15414,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15416
15414
|
orbital: string;
|
|
15417
15415
|
kind: "orbital";
|
|
15418
15416
|
} | undefined;
|
|
15417
|
+
scope?: "internal" | "external" | undefined;
|
|
15418
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
15419
15419
|
}[] | undefined;
|
|
15420
15420
|
description_visual_prompt?: string | undefined;
|
|
15421
15421
|
requiredFields?: {
|
|
@@ -15511,8 +15511,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15511
15511
|
event: string;
|
|
15512
15512
|
triggers: string;
|
|
15513
15513
|
guard?: SExpr | undefined;
|
|
15514
|
-
scope?: "internal" | "external" | undefined;
|
|
15515
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
15516
15514
|
source?: {
|
|
15517
15515
|
kind: "any";
|
|
15518
15516
|
} | {
|
|
@@ -15523,6 +15521,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15523
15521
|
orbital: string;
|
|
15524
15522
|
kind: "orbital";
|
|
15525
15523
|
} | undefined;
|
|
15524
|
+
scope?: "internal" | "external" | undefined;
|
|
15525
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
15526
15526
|
}[] | undefined;
|
|
15527
15527
|
description_visual_prompt?: string | undefined;
|
|
15528
15528
|
requiredFields?: {
|
|
@@ -16030,8 +16030,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16030
16030
|
event: string;
|
|
16031
16031
|
triggers: string;
|
|
16032
16032
|
guard?: SExpr | undefined;
|
|
16033
|
-
scope?: "internal" | "external" | undefined;
|
|
16034
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16035
16033
|
source?: {
|
|
16036
16034
|
kind: "any";
|
|
16037
16035
|
} | {
|
|
@@ -16042,12 +16040,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16042
16040
|
orbital: string;
|
|
16043
16041
|
kind: "orbital";
|
|
16044
16042
|
} | undefined;
|
|
16043
|
+
scope?: "internal" | "external" | undefined;
|
|
16044
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16045
16045
|
}, {
|
|
16046
16046
|
event: string;
|
|
16047
16047
|
triggers: string;
|
|
16048
16048
|
guard?: SExpr | undefined;
|
|
16049
|
-
scope?: "internal" | "external" | undefined;
|
|
16050
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16051
16049
|
source?: {
|
|
16052
16050
|
kind: "any";
|
|
16053
16051
|
} | {
|
|
@@ -16058,6 +16056,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16058
16056
|
orbital: string;
|
|
16059
16057
|
kind: "orbital";
|
|
16060
16058
|
} | undefined;
|
|
16059
|
+
scope?: "internal" | "external" | undefined;
|
|
16060
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16061
16061
|
}>, "many">>;
|
|
16062
16062
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16063
16063
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -16085,8 +16085,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16085
16085
|
event: string;
|
|
16086
16086
|
triggers: string;
|
|
16087
16087
|
guard?: SExpr | undefined;
|
|
16088
|
-
scope?: "internal" | "external" | undefined;
|
|
16089
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16090
16088
|
source?: {
|
|
16091
16089
|
kind: "any";
|
|
16092
16090
|
} | {
|
|
@@ -16097,6 +16095,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16097
16095
|
orbital: string;
|
|
16098
16096
|
kind: "orbital";
|
|
16099
16097
|
} | undefined;
|
|
16098
|
+
scope?: "internal" | "external" | undefined;
|
|
16099
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16100
16100
|
}[] | undefined;
|
|
16101
16101
|
description_visual_prompt?: string | undefined;
|
|
16102
16102
|
requiredFields?: {
|
|
@@ -16192,8 +16192,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16192
16192
|
event: string;
|
|
16193
16193
|
triggers: string;
|
|
16194
16194
|
guard?: SExpr | undefined;
|
|
16195
|
-
scope?: "internal" | "external" | undefined;
|
|
16196
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16197
16195
|
source?: {
|
|
16198
16196
|
kind: "any";
|
|
16199
16197
|
} | {
|
|
@@ -16204,6 +16202,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16204
16202
|
orbital: string;
|
|
16205
16203
|
kind: "orbital";
|
|
16206
16204
|
} | undefined;
|
|
16205
|
+
scope?: "internal" | "external" | undefined;
|
|
16206
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16207
16207
|
}[] | undefined;
|
|
16208
16208
|
description_visual_prompt?: string | undefined;
|
|
16209
16209
|
requiredFields?: {
|
|
@@ -16305,8 +16305,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16305
16305
|
event: string;
|
|
16306
16306
|
triggers: string;
|
|
16307
16307
|
guard?: SExpr | undefined;
|
|
16308
|
-
scope?: "internal" | "external" | undefined;
|
|
16309
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16310
16308
|
source?: {
|
|
16311
16309
|
kind: "any";
|
|
16312
16310
|
} | {
|
|
@@ -16317,6 +16315,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16317
16315
|
orbital: string;
|
|
16318
16316
|
kind: "orbital";
|
|
16319
16317
|
} | undefined;
|
|
16318
|
+
scope?: "internal" | "external" | undefined;
|
|
16319
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16320
16320
|
}[] | undefined;
|
|
16321
16321
|
description_visual_prompt?: string | undefined;
|
|
16322
16322
|
requiredFields?: {
|
|
@@ -16424,8 +16424,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16424
16424
|
event: string;
|
|
16425
16425
|
triggers: string;
|
|
16426
16426
|
guard?: SExpr | undefined;
|
|
16427
|
-
scope?: "internal" | "external" | undefined;
|
|
16428
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16429
16427
|
source?: {
|
|
16430
16428
|
kind: "any";
|
|
16431
16429
|
} | {
|
|
@@ -16436,6 +16434,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16436
16434
|
orbital: string;
|
|
16437
16435
|
kind: "orbital";
|
|
16438
16436
|
} | undefined;
|
|
16437
|
+
scope?: "internal" | "external" | undefined;
|
|
16438
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16439
16439
|
}[] | undefined;
|
|
16440
16440
|
description_visual_prompt?: string | undefined;
|
|
16441
16441
|
requiredFields?: {
|
|
@@ -16604,22 +16604,22 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16604
16604
|
payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
16605
16605
|
}, "strip", z.ZodTypeAny, {
|
|
16606
16606
|
event: string;
|
|
16607
|
-
triggers: string;
|
|
16608
16607
|
source: {
|
|
16609
16608
|
trait: string;
|
|
16610
16609
|
transition?: string | undefined;
|
|
16611
16610
|
tick?: string | undefined;
|
|
16612
16611
|
};
|
|
16612
|
+
triggers: string;
|
|
16613
16613
|
guard?: SExpr | undefined;
|
|
16614
16614
|
payloadMapping?: Record<string, string> | undefined;
|
|
16615
16615
|
}, {
|
|
16616
16616
|
event: string;
|
|
16617
|
-
triggers: string;
|
|
16618
16617
|
source: {
|
|
16619
16618
|
trait: string;
|
|
16620
16619
|
transition?: string | undefined;
|
|
16621
16620
|
tick?: string | undefined;
|
|
16622
16621
|
};
|
|
16622
|
+
triggers: string;
|
|
16623
16623
|
guard?: SExpr | undefined;
|
|
16624
16624
|
payloadMapping?: Record<string, string> | undefined;
|
|
16625
16625
|
}>, "many">>;
|
|
@@ -16823,8 +16823,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16823
16823
|
event: string;
|
|
16824
16824
|
triggers: string;
|
|
16825
16825
|
guard?: SExpr | undefined;
|
|
16826
|
-
scope?: "internal" | "external" | undefined;
|
|
16827
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16828
16826
|
source?: {
|
|
16829
16827
|
kind: "any";
|
|
16830
16828
|
} | {
|
|
@@ -16835,6 +16833,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16835
16833
|
orbital: string;
|
|
16836
16834
|
kind: "orbital";
|
|
16837
16835
|
} | undefined;
|
|
16836
|
+
scope?: "internal" | "external" | undefined;
|
|
16837
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16838
16838
|
}[] | undefined;
|
|
16839
16839
|
description_visual_prompt?: string | undefined;
|
|
16840
16840
|
requiredFields?: {
|
|
@@ -16938,8 +16938,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16938
16938
|
event: string;
|
|
16939
16939
|
triggers: string;
|
|
16940
16940
|
guard?: SExpr | undefined;
|
|
16941
|
-
scope?: "internal" | "external" | undefined;
|
|
16942
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
16943
16941
|
source?: {
|
|
16944
16942
|
kind: "any";
|
|
16945
16943
|
} | {
|
|
@@ -16950,6 +16948,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16950
16948
|
orbital: string;
|
|
16951
16949
|
kind: "orbital";
|
|
16952
16950
|
} | undefined;
|
|
16951
|
+
scope?: "internal" | "external" | undefined;
|
|
16952
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
16953
16953
|
}[] | undefined;
|
|
16954
16954
|
description_visual_prompt?: string | undefined;
|
|
16955
16955
|
requiredFields?: {
|
|
@@ -17066,12 +17066,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17066
17066
|
}[] | undefined;
|
|
17067
17067
|
listens?: {
|
|
17068
17068
|
event: string;
|
|
17069
|
-
triggers: string;
|
|
17070
17069
|
source: {
|
|
17071
17070
|
trait: string;
|
|
17072
17071
|
transition?: string | undefined;
|
|
17073
17072
|
tick?: string | undefined;
|
|
17074
17073
|
};
|
|
17074
|
+
triggers: string;
|
|
17075
17075
|
guard?: SExpr | undefined;
|
|
17076
17076
|
payloadMapping?: Record<string, string> | undefined;
|
|
17077
17077
|
}[] | undefined;
|
|
@@ -17223,8 +17223,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17223
17223
|
event: string;
|
|
17224
17224
|
triggers: string;
|
|
17225
17225
|
guard?: SExpr | undefined;
|
|
17226
|
-
scope?: "internal" | "external" | undefined;
|
|
17227
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
17228
17226
|
source?: {
|
|
17229
17227
|
kind: "any";
|
|
17230
17228
|
} | {
|
|
@@ -17235,6 +17233,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17235
17233
|
orbital: string;
|
|
17236
17234
|
kind: "orbital";
|
|
17237
17235
|
} | undefined;
|
|
17236
|
+
scope?: "internal" | "external" | undefined;
|
|
17237
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
17238
17238
|
}[] | undefined;
|
|
17239
17239
|
description_visual_prompt?: string | undefined;
|
|
17240
17240
|
requiredFields?: {
|
|
@@ -17338,8 +17338,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17338
17338
|
event: string;
|
|
17339
17339
|
triggers: string;
|
|
17340
17340
|
guard?: SExpr | undefined;
|
|
17341
|
-
scope?: "internal" | "external" | undefined;
|
|
17342
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
17343
17341
|
source?: {
|
|
17344
17342
|
kind: "any";
|
|
17345
17343
|
} | {
|
|
@@ -17350,6 +17348,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17350
17348
|
orbital: string;
|
|
17351
17349
|
kind: "orbital";
|
|
17352
17350
|
} | undefined;
|
|
17351
|
+
scope?: "internal" | "external" | undefined;
|
|
17352
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
17353
17353
|
}[] | undefined;
|
|
17354
17354
|
description_visual_prompt?: string | undefined;
|
|
17355
17355
|
requiredFields?: {
|
|
@@ -17466,12 +17466,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17466
17466
|
}[] | undefined;
|
|
17467
17467
|
listens?: {
|
|
17468
17468
|
event: string;
|
|
17469
|
-
triggers: string;
|
|
17470
17469
|
source: {
|
|
17471
17470
|
trait: string;
|
|
17472
17471
|
transition?: string | undefined;
|
|
17473
17472
|
tick?: string | undefined;
|
|
17474
17473
|
};
|
|
17474
|
+
triggers: string;
|
|
17475
17475
|
guard?: SExpr | undefined;
|
|
17476
17476
|
payloadMapping?: Record<string, string> | undefined;
|
|
17477
17477
|
}[] | undefined;
|
|
@@ -17639,6 +17639,14 @@ interface OrbitalSchema {
|
|
|
17639
17639
|
name: string;
|
|
17640
17640
|
/** Description */
|
|
17641
17641
|
description?: string;
|
|
17642
|
+
/**
|
|
17643
|
+
* Short human-readable summary distinct from `description`. Typically an
|
|
17644
|
+
* AI-generated one-liner used by app list views, breadcrumbs, and the
|
|
17645
|
+
* `GET /graphs/:appId/domain-text` projection. Kept separate from
|
|
17646
|
+
* `description` (which may be longer / authored copy) so consumers can
|
|
17647
|
+
* present a stable short label without truncating.
|
|
17648
|
+
*/
|
|
17649
|
+
summary?: string;
|
|
17642
17650
|
/** Version (semver) */
|
|
17643
17651
|
version?: string;
|
|
17644
17652
|
/** Domain context - user request + classification */
|
|
@@ -17665,6 +17673,7 @@ interface OrbitalSchema {
|
|
|
17665
17673
|
declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
17666
17674
|
name: z.ZodString;
|
|
17667
17675
|
description: z.ZodOptional<z.ZodString>;
|
|
17676
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
17668
17677
|
version: z.ZodOptional<z.ZodString>;
|
|
17669
17678
|
domainContext: z.ZodOptional<z.ZodObject<{
|
|
17670
17679
|
request: z.ZodString;
|
|
@@ -17794,13 +17803,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17794
17803
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17795
17804
|
}, "strip", z.ZodTypeAny, {
|
|
17796
17805
|
type: "custom";
|
|
17797
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
17806
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
17798
17807
|
className: string;
|
|
17799
17808
|
slots?: string[] | undefined;
|
|
17800
17809
|
props?: string[] | undefined;
|
|
17801
17810
|
}, {
|
|
17802
17811
|
type: "custom";
|
|
17803
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
17812
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
17804
17813
|
className: string;
|
|
17805
17814
|
slots?: string[] | undefined;
|
|
17806
17815
|
props?: string[] | undefined;
|
|
@@ -18520,8 +18529,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18520
18529
|
event: string;
|
|
18521
18530
|
triggers: string;
|
|
18522
18531
|
guard?: SExpr | undefined;
|
|
18523
|
-
scope?: "internal" | "external" | undefined;
|
|
18524
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
18525
18532
|
source?: {
|
|
18526
18533
|
kind: "any";
|
|
18527
18534
|
} | {
|
|
@@ -18532,12 +18539,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18532
18539
|
orbital: string;
|
|
18533
18540
|
kind: "orbital";
|
|
18534
18541
|
} | undefined;
|
|
18542
|
+
scope?: "internal" | "external" | undefined;
|
|
18543
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
18535
18544
|
}, {
|
|
18536
18545
|
event: string;
|
|
18537
18546
|
triggers: string;
|
|
18538
18547
|
guard?: SExpr | undefined;
|
|
18539
|
-
scope?: "internal" | "external" | undefined;
|
|
18540
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
18541
18548
|
source?: {
|
|
18542
18549
|
kind: "any";
|
|
18543
18550
|
} | {
|
|
@@ -18548,6 +18555,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18548
18555
|
orbital: string;
|
|
18549
18556
|
kind: "orbital";
|
|
18550
18557
|
} | undefined;
|
|
18558
|
+
scope?: "internal" | "external" | undefined;
|
|
18559
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
18551
18560
|
}>, "many">>;
|
|
18552
18561
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18553
18562
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -18575,8 +18584,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18575
18584
|
event: string;
|
|
18576
18585
|
triggers: string;
|
|
18577
18586
|
guard?: SExpr | undefined;
|
|
18578
|
-
scope?: "internal" | "external" | undefined;
|
|
18579
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
18580
18587
|
source?: {
|
|
18581
18588
|
kind: "any";
|
|
18582
18589
|
} | {
|
|
@@ -18587,6 +18594,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18587
18594
|
orbital: string;
|
|
18588
18595
|
kind: "orbital";
|
|
18589
18596
|
} | undefined;
|
|
18597
|
+
scope?: "internal" | "external" | undefined;
|
|
18598
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
18590
18599
|
}[] | undefined;
|
|
18591
18600
|
description_visual_prompt?: string | undefined;
|
|
18592
18601
|
requiredFields?: {
|
|
@@ -18682,8 +18691,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18682
18691
|
event: string;
|
|
18683
18692
|
triggers: string;
|
|
18684
18693
|
guard?: SExpr | undefined;
|
|
18685
|
-
scope?: "internal" | "external" | undefined;
|
|
18686
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
18687
18694
|
source?: {
|
|
18688
18695
|
kind: "any";
|
|
18689
18696
|
} | {
|
|
@@ -18694,6 +18701,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18694
18701
|
orbital: string;
|
|
18695
18702
|
kind: "orbital";
|
|
18696
18703
|
} | undefined;
|
|
18704
|
+
scope?: "internal" | "external" | undefined;
|
|
18705
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
18697
18706
|
}[] | undefined;
|
|
18698
18707
|
description_visual_prompt?: string | undefined;
|
|
18699
18708
|
requiredFields?: {
|
|
@@ -19201,8 +19210,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19201
19210
|
event: string;
|
|
19202
19211
|
triggers: string;
|
|
19203
19212
|
guard?: SExpr | undefined;
|
|
19204
|
-
scope?: "internal" | "external" | undefined;
|
|
19205
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
19206
19213
|
source?: {
|
|
19207
19214
|
kind: "any";
|
|
19208
19215
|
} | {
|
|
@@ -19213,12 +19220,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19213
19220
|
orbital: string;
|
|
19214
19221
|
kind: "orbital";
|
|
19215
19222
|
} | undefined;
|
|
19223
|
+
scope?: "internal" | "external" | undefined;
|
|
19224
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
19216
19225
|
}, {
|
|
19217
19226
|
event: string;
|
|
19218
19227
|
triggers: string;
|
|
19219
19228
|
guard?: SExpr | undefined;
|
|
19220
|
-
scope?: "internal" | "external" | undefined;
|
|
19221
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
19222
19229
|
source?: {
|
|
19223
19230
|
kind: "any";
|
|
19224
19231
|
} | {
|
|
@@ -19229,6 +19236,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19229
19236
|
orbital: string;
|
|
19230
19237
|
kind: "orbital";
|
|
19231
19238
|
} | undefined;
|
|
19239
|
+
scope?: "internal" | "external" | undefined;
|
|
19240
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
19232
19241
|
}>, "many">>;
|
|
19233
19242
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19234
19243
|
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
@@ -19256,8 +19265,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19256
19265
|
event: string;
|
|
19257
19266
|
triggers: string;
|
|
19258
19267
|
guard?: SExpr | undefined;
|
|
19259
|
-
scope?: "internal" | "external" | undefined;
|
|
19260
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
19261
19268
|
source?: {
|
|
19262
19269
|
kind: "any";
|
|
19263
19270
|
} | {
|
|
@@ -19268,6 +19275,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19268
19275
|
orbital: string;
|
|
19269
19276
|
kind: "orbital";
|
|
19270
19277
|
} | undefined;
|
|
19278
|
+
scope?: "internal" | "external" | undefined;
|
|
19279
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
19271
19280
|
}[] | undefined;
|
|
19272
19281
|
description_visual_prompt?: string | undefined;
|
|
19273
19282
|
requiredFields?: {
|
|
@@ -19363,8 +19372,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19363
19372
|
event: string;
|
|
19364
19373
|
triggers: string;
|
|
19365
19374
|
guard?: SExpr | undefined;
|
|
19366
|
-
scope?: "internal" | "external" | undefined;
|
|
19367
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
19368
19375
|
source?: {
|
|
19369
19376
|
kind: "any";
|
|
19370
19377
|
} | {
|
|
@@ -19375,6 +19382,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19375
19382
|
orbital: string;
|
|
19376
19383
|
kind: "orbital";
|
|
19377
19384
|
} | undefined;
|
|
19385
|
+
scope?: "internal" | "external" | undefined;
|
|
19386
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
19378
19387
|
}[] | undefined;
|
|
19379
19388
|
description_visual_prompt?: string | undefined;
|
|
19380
19389
|
requiredFields?: {
|
|
@@ -19476,8 +19485,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19476
19485
|
event: string;
|
|
19477
19486
|
triggers: string;
|
|
19478
19487
|
guard?: SExpr | undefined;
|
|
19479
|
-
scope?: "internal" | "external" | undefined;
|
|
19480
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
19481
19488
|
source?: {
|
|
19482
19489
|
kind: "any";
|
|
19483
19490
|
} | {
|
|
@@ -19488,6 +19495,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19488
19495
|
orbital: string;
|
|
19489
19496
|
kind: "orbital";
|
|
19490
19497
|
} | undefined;
|
|
19498
|
+
scope?: "internal" | "external" | undefined;
|
|
19499
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
19491
19500
|
}[] | undefined;
|
|
19492
19501
|
description_visual_prompt?: string | undefined;
|
|
19493
19502
|
requiredFields?: {
|
|
@@ -19595,8 +19604,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19595
19604
|
event: string;
|
|
19596
19605
|
triggers: string;
|
|
19597
19606
|
guard?: SExpr | undefined;
|
|
19598
|
-
scope?: "internal" | "external" | undefined;
|
|
19599
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
19600
19607
|
source?: {
|
|
19601
19608
|
kind: "any";
|
|
19602
19609
|
} | {
|
|
@@ -19607,6 +19614,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19607
19614
|
orbital: string;
|
|
19608
19615
|
kind: "orbital";
|
|
19609
19616
|
} | undefined;
|
|
19617
|
+
scope?: "internal" | "external" | undefined;
|
|
19618
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
19610
19619
|
}[] | undefined;
|
|
19611
19620
|
description_visual_prompt?: string | undefined;
|
|
19612
19621
|
requiredFields?: {
|
|
@@ -19775,22 +19784,22 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19775
19784
|
payloadMapping: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
19776
19785
|
}, "strip", z.ZodTypeAny, {
|
|
19777
19786
|
event: string;
|
|
19778
|
-
triggers: string;
|
|
19779
19787
|
source: {
|
|
19780
19788
|
trait: string;
|
|
19781
19789
|
transition?: string | undefined;
|
|
19782
19790
|
tick?: string | undefined;
|
|
19783
19791
|
};
|
|
19792
|
+
triggers: string;
|
|
19784
19793
|
guard?: SExpr | undefined;
|
|
19785
19794
|
payloadMapping?: Record<string, string> | undefined;
|
|
19786
19795
|
}, {
|
|
19787
19796
|
event: string;
|
|
19788
|
-
triggers: string;
|
|
19789
19797
|
source: {
|
|
19790
19798
|
trait: string;
|
|
19791
19799
|
transition?: string | undefined;
|
|
19792
19800
|
tick?: string | undefined;
|
|
19793
19801
|
};
|
|
19802
|
+
triggers: string;
|
|
19794
19803
|
guard?: SExpr | undefined;
|
|
19795
19804
|
payloadMapping?: Record<string, string> | undefined;
|
|
19796
19805
|
}>, "many">>;
|
|
@@ -19994,8 +20003,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19994
20003
|
event: string;
|
|
19995
20004
|
triggers: string;
|
|
19996
20005
|
guard?: SExpr | undefined;
|
|
19997
|
-
scope?: "internal" | "external" | undefined;
|
|
19998
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
19999
20006
|
source?: {
|
|
20000
20007
|
kind: "any";
|
|
20001
20008
|
} | {
|
|
@@ -20006,6 +20013,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20006
20013
|
orbital: string;
|
|
20007
20014
|
kind: "orbital";
|
|
20008
20015
|
} | undefined;
|
|
20016
|
+
scope?: "internal" | "external" | undefined;
|
|
20017
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
20009
20018
|
}[] | undefined;
|
|
20010
20019
|
description_visual_prompt?: string | undefined;
|
|
20011
20020
|
requiredFields?: {
|
|
@@ -20109,8 +20118,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20109
20118
|
event: string;
|
|
20110
20119
|
triggers: string;
|
|
20111
20120
|
guard?: SExpr | undefined;
|
|
20112
|
-
scope?: "internal" | "external" | undefined;
|
|
20113
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
20114
20121
|
source?: {
|
|
20115
20122
|
kind: "any";
|
|
20116
20123
|
} | {
|
|
@@ -20121,6 +20128,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20121
20128
|
orbital: string;
|
|
20122
20129
|
kind: "orbital";
|
|
20123
20130
|
} | undefined;
|
|
20131
|
+
scope?: "internal" | "external" | undefined;
|
|
20132
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
20124
20133
|
}[] | undefined;
|
|
20125
20134
|
description_visual_prompt?: string | undefined;
|
|
20126
20135
|
requiredFields?: {
|
|
@@ -20237,12 +20246,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20237
20246
|
}[] | undefined;
|
|
20238
20247
|
listens?: {
|
|
20239
20248
|
event: string;
|
|
20240
|
-
triggers: string;
|
|
20241
20249
|
source: {
|
|
20242
20250
|
trait: string;
|
|
20243
20251
|
transition?: string | undefined;
|
|
20244
20252
|
tick?: string | undefined;
|
|
20245
20253
|
};
|
|
20254
|
+
triggers: string;
|
|
20246
20255
|
guard?: SExpr | undefined;
|
|
20247
20256
|
payloadMapping?: Record<string, string> | undefined;
|
|
20248
20257
|
}[] | undefined;
|
|
@@ -20394,8 +20403,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20394
20403
|
event: string;
|
|
20395
20404
|
triggers: string;
|
|
20396
20405
|
guard?: SExpr | undefined;
|
|
20397
|
-
scope?: "internal" | "external" | undefined;
|
|
20398
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
20399
20406
|
source?: {
|
|
20400
20407
|
kind: "any";
|
|
20401
20408
|
} | {
|
|
@@ -20406,6 +20413,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20406
20413
|
orbital: string;
|
|
20407
20414
|
kind: "orbital";
|
|
20408
20415
|
} | undefined;
|
|
20416
|
+
scope?: "internal" | "external" | undefined;
|
|
20417
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
20409
20418
|
}[] | undefined;
|
|
20410
20419
|
description_visual_prompt?: string | undefined;
|
|
20411
20420
|
requiredFields?: {
|
|
@@ -20509,8 +20518,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20509
20518
|
event: string;
|
|
20510
20519
|
triggers: string;
|
|
20511
20520
|
guard?: SExpr | undefined;
|
|
20512
|
-
scope?: "internal" | "external" | undefined;
|
|
20513
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
20514
20521
|
source?: {
|
|
20515
20522
|
kind: "any";
|
|
20516
20523
|
} | {
|
|
@@ -20521,6 +20528,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20521
20528
|
orbital: string;
|
|
20522
20529
|
kind: "orbital";
|
|
20523
20530
|
} | undefined;
|
|
20531
|
+
scope?: "internal" | "external" | undefined;
|
|
20532
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
20524
20533
|
}[] | undefined;
|
|
20525
20534
|
description_visual_prompt?: string | undefined;
|
|
20526
20535
|
requiredFields?: {
|
|
@@ -20637,12 +20646,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20637
20646
|
}[] | undefined;
|
|
20638
20647
|
listens?: {
|
|
20639
20648
|
event: string;
|
|
20640
|
-
triggers: string;
|
|
20641
20649
|
source: {
|
|
20642
20650
|
trait: string;
|
|
20643
20651
|
transition?: string | undefined;
|
|
20644
20652
|
tick?: string | undefined;
|
|
20645
20653
|
};
|
|
20654
|
+
triggers: string;
|
|
20646
20655
|
guard?: SExpr | undefined;
|
|
20647
20656
|
payloadMapping?: Record<string, string> | undefined;
|
|
20648
20657
|
}[] | undefined;
|
|
@@ -20972,8 +20981,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20972
20981
|
event: string;
|
|
20973
20982
|
triggers: string;
|
|
20974
20983
|
guard?: SExpr | undefined;
|
|
20975
|
-
scope?: "internal" | "external" | undefined;
|
|
20976
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
20977
20984
|
source?: {
|
|
20978
20985
|
kind: "any";
|
|
20979
20986
|
} | {
|
|
@@ -20984,6 +20991,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20984
20991
|
orbital: string;
|
|
20985
20992
|
kind: "orbital";
|
|
20986
20993
|
} | undefined;
|
|
20994
|
+
scope?: "internal" | "external" | undefined;
|
|
20995
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
20987
20996
|
}[] | undefined;
|
|
20988
20997
|
description_visual_prompt?: string | undefined;
|
|
20989
20998
|
requiredFields?: {
|
|
@@ -21087,8 +21096,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21087
21096
|
event: string;
|
|
21088
21097
|
triggers: string;
|
|
21089
21098
|
guard?: SExpr | undefined;
|
|
21090
|
-
scope?: "internal" | "external" | undefined;
|
|
21091
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
21092
21099
|
source?: {
|
|
21093
21100
|
kind: "any";
|
|
21094
21101
|
} | {
|
|
@@ -21099,6 +21106,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21099
21106
|
orbital: string;
|
|
21100
21107
|
kind: "orbital";
|
|
21101
21108
|
} | undefined;
|
|
21109
|
+
scope?: "internal" | "external" | undefined;
|
|
21110
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
21102
21111
|
}[] | undefined;
|
|
21103
21112
|
description_visual_prompt?: string | undefined;
|
|
21104
21113
|
requiredFields?: {
|
|
@@ -21215,12 +21224,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21215
21224
|
}[] | undefined;
|
|
21216
21225
|
listens?: {
|
|
21217
21226
|
event: string;
|
|
21218
|
-
triggers: string;
|
|
21219
21227
|
source: {
|
|
21220
21228
|
trait: string;
|
|
21221
21229
|
transition?: string | undefined;
|
|
21222
21230
|
tick?: string | undefined;
|
|
21223
21231
|
};
|
|
21232
|
+
triggers: string;
|
|
21224
21233
|
guard?: SExpr | undefined;
|
|
21225
21234
|
payloadMapping?: Record<string, string> | undefined;
|
|
21226
21235
|
}[] | undefined;
|
|
@@ -21319,6 +21328,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21319
21328
|
timeout?: number | undefined;
|
|
21320
21329
|
} | undefined;
|
|
21321
21330
|
} | undefined;
|
|
21331
|
+
version?: string | undefined;
|
|
21332
|
+
summary?: string | undefined;
|
|
21322
21333
|
services?: ({
|
|
21323
21334
|
type: "rest";
|
|
21324
21335
|
name: string;
|
|
@@ -21383,11 +21394,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21383
21394
|
}[] | undefined;
|
|
21384
21395
|
} | undefined;
|
|
21385
21396
|
} | undefined;
|
|
21386
|
-
version?: string | undefined;
|
|
21387
21397
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
21388
21398
|
customPatterns?: Record<string, {
|
|
21389
21399
|
type: "custom";
|
|
21390
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
21400
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
21391
21401
|
className: string;
|
|
21392
21402
|
slots?: string[] | undefined;
|
|
21393
21403
|
props?: string[] | undefined;
|
|
@@ -21461,8 +21471,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21461
21471
|
event: string;
|
|
21462
21472
|
triggers: string;
|
|
21463
21473
|
guard?: SExpr | undefined;
|
|
21464
|
-
scope?: "internal" | "external" | undefined;
|
|
21465
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
21466
21474
|
source?: {
|
|
21467
21475
|
kind: "any";
|
|
21468
21476
|
} | {
|
|
@@ -21473,6 +21481,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21473
21481
|
orbital: string;
|
|
21474
21482
|
kind: "orbital";
|
|
21475
21483
|
} | undefined;
|
|
21484
|
+
scope?: "internal" | "external" | undefined;
|
|
21485
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
21476
21486
|
}[] | undefined;
|
|
21477
21487
|
description_visual_prompt?: string | undefined;
|
|
21478
21488
|
requiredFields?: {
|
|
@@ -21576,8 +21586,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21576
21586
|
event: string;
|
|
21577
21587
|
triggers: string;
|
|
21578
21588
|
guard?: SExpr | undefined;
|
|
21579
|
-
scope?: "internal" | "external" | undefined;
|
|
21580
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
21581
21589
|
source?: {
|
|
21582
21590
|
kind: "any";
|
|
21583
21591
|
} | {
|
|
@@ -21588,6 +21596,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21588
21596
|
orbital: string;
|
|
21589
21597
|
kind: "orbital";
|
|
21590
21598
|
} | undefined;
|
|
21599
|
+
scope?: "internal" | "external" | undefined;
|
|
21600
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
21591
21601
|
}[] | undefined;
|
|
21592
21602
|
description_visual_prompt?: string | undefined;
|
|
21593
21603
|
requiredFields?: {
|
|
@@ -21704,12 +21714,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21704
21714
|
}[] | undefined;
|
|
21705
21715
|
listens?: {
|
|
21706
21716
|
event: string;
|
|
21707
|
-
triggers: string;
|
|
21708
21717
|
source: {
|
|
21709
21718
|
trait: string;
|
|
21710
21719
|
transition?: string | undefined;
|
|
21711
21720
|
tick?: string | undefined;
|
|
21712
21721
|
};
|
|
21722
|
+
triggers: string;
|
|
21713
21723
|
guard?: SExpr | undefined;
|
|
21714
21724
|
payloadMapping?: Record<string, string> | undefined;
|
|
21715
21725
|
}[] | undefined;
|
|
@@ -21808,6 +21818,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21808
21818
|
timeout?: number | undefined;
|
|
21809
21819
|
} | undefined;
|
|
21810
21820
|
} | undefined;
|
|
21821
|
+
version?: string | undefined;
|
|
21822
|
+
summary?: string | undefined;
|
|
21811
21823
|
services?: ({
|
|
21812
21824
|
type: "rest";
|
|
21813
21825
|
name: string;
|
|
@@ -21872,16 +21884,33 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21872
21884
|
}[] | undefined;
|
|
21873
21885
|
} | undefined;
|
|
21874
21886
|
} | undefined;
|
|
21875
|
-
version?: string | undefined;
|
|
21876
21887
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
21877
21888
|
customPatterns?: Record<string, {
|
|
21878
21889
|
type: "custom";
|
|
21879
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
21890
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
21880
21891
|
className: string;
|
|
21881
21892
|
slots?: string[] | undefined;
|
|
21882
21893
|
props?: string[] | undefined;
|
|
21883
21894
|
}> | undefined;
|
|
21884
21895
|
}>;
|
|
21896
|
+
/**
|
|
21897
|
+
* Flattened `OrbitalSchema` view used by the persistence/runtime layer.
|
|
21898
|
+
*
|
|
21899
|
+
* Canonical `OrbitalSchema` keeps every trait inside its owning
|
|
21900
|
+
* `OrbitalDefinition.traits`. Some runtime paths (e.g. the orbital-agent
|
|
21901
|
+
* stream, Firestore persistence) additionally roll the resolved trait set up
|
|
21902
|
+
* to the top level as `traits[]` so diffs and list views don't have to walk
|
|
21903
|
+
* every orbital.
|
|
21904
|
+
*
|
|
21905
|
+
* This is intentionally a LOSSY persisted view, NOT the canonical authoring
|
|
21906
|
+
* shape: it carries the rolled-up array alongside the per-orbital trait
|
|
21907
|
+
* lists, and consumers should prefer `OrbitalSchema` whenever the rolled-up
|
|
21908
|
+
* surface isn't required.
|
|
21909
|
+
*/
|
|
21910
|
+
interface OrbitalSchemaWithTraits extends OrbitalSchema {
|
|
21911
|
+
/** Flattened trait set rolled up from all orbitals. Persisted-view only. */
|
|
21912
|
+
traits?: Trait[];
|
|
21913
|
+
}
|
|
21885
21914
|
/**
|
|
21886
21915
|
* Parses raw data into a validated OrbitalSchema.
|
|
21887
21916
|
*
|
|
@@ -21997,8 +22026,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21997
22026
|
event: string;
|
|
21998
22027
|
triggers: string;
|
|
21999
22028
|
guard?: SExpr | undefined;
|
|
22000
|
-
scope?: "internal" | "external" | undefined;
|
|
22001
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
22002
22029
|
source?: {
|
|
22003
22030
|
kind: "any";
|
|
22004
22031
|
} | {
|
|
@@ -22009,6 +22036,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22009
22036
|
orbital: string;
|
|
22010
22037
|
kind: "orbital";
|
|
22011
22038
|
} | undefined;
|
|
22039
|
+
scope?: "internal" | "external" | undefined;
|
|
22040
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
22012
22041
|
}[] | undefined;
|
|
22013
22042
|
description_visual_prompt?: string | undefined;
|
|
22014
22043
|
requiredFields?: {
|
|
@@ -22112,8 +22141,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22112
22141
|
event: string;
|
|
22113
22142
|
triggers: string;
|
|
22114
22143
|
guard?: SExpr | undefined;
|
|
22115
|
-
scope?: "internal" | "external" | undefined;
|
|
22116
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
22117
22144
|
source?: {
|
|
22118
22145
|
kind: "any";
|
|
22119
22146
|
} | {
|
|
@@ -22124,6 +22151,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22124
22151
|
orbital: string;
|
|
22125
22152
|
kind: "orbital";
|
|
22126
22153
|
} | undefined;
|
|
22154
|
+
scope?: "internal" | "external" | undefined;
|
|
22155
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
22127
22156
|
}[] | undefined;
|
|
22128
22157
|
description_visual_prompt?: string | undefined;
|
|
22129
22158
|
requiredFields?: {
|
|
@@ -22240,12 +22269,12 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22240
22269
|
}[] | undefined;
|
|
22241
22270
|
listens?: {
|
|
22242
22271
|
event: string;
|
|
22243
|
-
triggers: string;
|
|
22244
22272
|
source: {
|
|
22245
22273
|
trait: string;
|
|
22246
22274
|
transition?: string | undefined;
|
|
22247
22275
|
tick?: string | undefined;
|
|
22248
22276
|
};
|
|
22277
|
+
triggers: string;
|
|
22249
22278
|
guard?: SExpr | undefined;
|
|
22250
22279
|
payloadMapping?: Record<string, string> | undefined;
|
|
22251
22280
|
}[] | undefined;
|
|
@@ -22344,6 +22373,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22344
22373
|
timeout?: number | undefined;
|
|
22345
22374
|
} | undefined;
|
|
22346
22375
|
} | undefined;
|
|
22376
|
+
version?: string | undefined;
|
|
22377
|
+
summary?: string | undefined;
|
|
22347
22378
|
services?: ({
|
|
22348
22379
|
type: "rest";
|
|
22349
22380
|
name: string;
|
|
@@ -22408,11 +22439,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22408
22439
|
}[] | undefined;
|
|
22409
22440
|
} | undefined;
|
|
22410
22441
|
} | undefined;
|
|
22411
|
-
version?: string | undefined;
|
|
22412
22442
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
22413
22443
|
customPatterns?: Record<string, {
|
|
22414
22444
|
type: "custom";
|
|
22415
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
22445
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
22416
22446
|
className: string;
|
|
22417
22447
|
slots?: string[] | undefined;
|
|
22418
22448
|
props?: string[] | undefined;
|
|
@@ -22486,8 +22516,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22486
22516
|
event: string;
|
|
22487
22517
|
triggers: string;
|
|
22488
22518
|
guard?: SExpr | undefined;
|
|
22489
|
-
scope?: "internal" | "external" | undefined;
|
|
22490
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
22491
22519
|
source?: {
|
|
22492
22520
|
kind: "any";
|
|
22493
22521
|
} | {
|
|
@@ -22498,6 +22526,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22498
22526
|
orbital: string;
|
|
22499
22527
|
kind: "orbital";
|
|
22500
22528
|
} | undefined;
|
|
22529
|
+
scope?: "internal" | "external" | undefined;
|
|
22530
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
22501
22531
|
}[] | undefined;
|
|
22502
22532
|
description_visual_prompt?: string | undefined;
|
|
22503
22533
|
requiredFields?: {
|
|
@@ -22601,8 +22631,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22601
22631
|
event: string;
|
|
22602
22632
|
triggers: string;
|
|
22603
22633
|
guard?: SExpr | undefined;
|
|
22604
|
-
scope?: "internal" | "external" | undefined;
|
|
22605
|
-
payloadMapping?: Record<string, string> | undefined;
|
|
22606
22634
|
source?: {
|
|
22607
22635
|
kind: "any";
|
|
22608
22636
|
} | {
|
|
@@ -22613,6 +22641,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22613
22641
|
orbital: string;
|
|
22614
22642
|
kind: "orbital";
|
|
22615
22643
|
} | undefined;
|
|
22644
|
+
scope?: "internal" | "external" | undefined;
|
|
22645
|
+
payloadMapping?: Record<string, string> | undefined;
|
|
22616
22646
|
}[] | undefined;
|
|
22617
22647
|
description_visual_prompt?: string | undefined;
|
|
22618
22648
|
requiredFields?: {
|
|
@@ -22729,12 +22759,12 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22729
22759
|
}[] | undefined;
|
|
22730
22760
|
listens?: {
|
|
22731
22761
|
event: string;
|
|
22732
|
-
triggers: string;
|
|
22733
22762
|
source: {
|
|
22734
22763
|
trait: string;
|
|
22735
22764
|
transition?: string | undefined;
|
|
22736
22765
|
tick?: string | undefined;
|
|
22737
22766
|
};
|
|
22767
|
+
triggers: string;
|
|
22738
22768
|
guard?: SExpr | undefined;
|
|
22739
22769
|
payloadMapping?: Record<string, string> | undefined;
|
|
22740
22770
|
}[] | undefined;
|
|
@@ -22833,6 +22863,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22833
22863
|
timeout?: number | undefined;
|
|
22834
22864
|
} | undefined;
|
|
22835
22865
|
} | undefined;
|
|
22866
|
+
version?: string | undefined;
|
|
22867
|
+
summary?: string | undefined;
|
|
22836
22868
|
services?: ({
|
|
22837
22869
|
type: "rest";
|
|
22838
22870
|
name: string;
|
|
@@ -22897,11 +22929,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22897
22929
|
}[] | undefined;
|
|
22898
22930
|
} | undefined;
|
|
22899
22931
|
} | undefined;
|
|
22900
|
-
version?: string | undefined;
|
|
22901
22932
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
22902
22933
|
customPatterns?: Record<string, {
|
|
22903
22934
|
type: "custom";
|
|
22904
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "
|
|
22935
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "article" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "div" | "span" | "a" | "p" | "footer" | "aside" | "ul" | "ol" | "li" | "img";
|
|
22905
22936
|
className: string;
|
|
22906
22937
|
slots?: string[] | undefined;
|
|
22907
22938
|
props?: string[] | undefined;
|
|
@@ -22910,4 +22941,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22910
22941
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
22911
22942
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
22912
22943
|
|
|
22913
|
-
export { type DeclaredTraitConfig as $, AGENT_DOMAIN_CATEGORIES as A, type AssetMappingInput as B, AssetMappingSchema as C, type AtomicEffect as D, type Effect as E, type CallServiceConfig as F, type CallServiceEffect as G, type CheckpointLoadEffect as H, type CheckpointSaveEffect as I, type ComputedEventContract as J, ComputedEventContractSchema as K, type ComputedEventListener as L, ComputedEventListenerSchema as M, type ConfigFieldDeclaration as N, type OrbitalDefinition as O, type PageRef as P, ConfigFieldDeclarationSchema as Q, type RenderUIEffect as R, type State as S, type Trait as T, type UISlot as U, type CustomPatternDefinition as V, type CustomPatternDefinitionInput as W, CustomPatternDefinitionSchema as X, type CustomPatternMap as Y, type CustomPatternMapInput as Z, CustomPatternMapSchema as _, type TraitEventContract as a, GAME_TYPES as a$, DeclaredTraitConfigSchema as a0, type DerefEffect as a1, type DesignPreferences as a2, type DesignPreferencesInput as a3, DesignPreferencesSchema as a4, type DesignTokens as a5, type DesignTokensInput as a6, DesignTokensSchema as a7, type DespawnEffect as a8, type DoEffect as a9, type EvaluateEffect as aA, type Event as aB, type EventInput as aC, type EventListener as aD, EventListenerSchema as aE, type EventPayloadField as aF, EventPayloadFieldSchema as aG, EventSchema as aH, type EventScope as aI, EventScopeSchema as aJ, type EventSemanticRole as aK, EventSemanticRoleSchema as aL, type EventSource as aM, EventSourceSchema as aN, type FetchEffect as aO, type FetchOptions as aP, type FetchResult as aQ, type Field as aR, type FieldFormat as aS, FieldFormatSchema as aT, FieldSchema as aU, type FieldType as aV, FieldTypeSchema as aW, type FieldValue as aX, type ForwardConfig as aY, type ForwardEffect as aZ, type Orbital as a_, type DomainCategory as aa, DomainCategorySchema as ab, type DomainContext as ac, type DomainContextInput as ad, DomainContextSchema as ae, type DomainVocabulary as af, DomainVocabularySchema as ag, ENTITY_ROLES as ah, type EffectInput as ai, EffectSchema as aj, type EmitConfig as ak, type EmitEffect as al, type EntityCall as am, EntityCallSchema as an, type EntityData as ao, type EntityFieldInput as ap, EntityFieldSchema as aq, EntityPersistenceSchema as ar, EntityRefSchema as as, EntityRefStringSchema as at, type EntityRole as au, EntityRoleSchema as av, EntitySchema as aw, type EntitySemanticRole as ax, EntitySemanticRoleSchema as ay, type EvaluateConfig as az, type Entity as b,
|
|
22944
|
+
export { type DeclaredTraitConfig as $, AGENT_DOMAIN_CATEGORIES as A, type AssetMappingInput as B, AssetMappingSchema as C, type AtomicEffect as D, type Effect as E, type CallServiceConfig as F, type CallServiceEffect as G, type CheckpointLoadEffect as H, type CheckpointSaveEffect as I, type ComputedEventContract as J, ComputedEventContractSchema as K, type ComputedEventListener as L, ComputedEventListenerSchema as M, type ConfigFieldDeclaration as N, type OrbitalDefinition as O, type PageRef as P, ConfigFieldDeclarationSchema as Q, type RenderUIEffect as R, type State as S, type Trait as T, type UISlot as U, type CustomPatternDefinition as V, type CustomPatternDefinitionInput as W, CustomPatternDefinitionSchema as X, type CustomPatternMap as Y, type CustomPatternMapInput as Z, CustomPatternMapSchema as _, type TraitEventContract as a, GAME_TYPES as a$, DeclaredTraitConfigSchema as a0, type DerefEffect as a1, type DesignPreferences as a2, type DesignPreferencesInput as a3, DesignPreferencesSchema as a4, type DesignTokens as a5, type DesignTokensInput as a6, DesignTokensSchema as a7, type DespawnEffect as a8, type DoEffect as a9, type EvaluateEffect as aA, type Event as aB, type EventInput as aC, type EventListener as aD, EventListenerSchema as aE, type EventPayloadField as aF, EventPayloadFieldSchema as aG, EventSchema as aH, type EventScope as aI, EventScopeSchema as aJ, type EventSemanticRole as aK, EventSemanticRoleSchema as aL, type EventSource as aM, EventSourceSchema as aN, type FetchEffect as aO, type FetchOptions as aP, type FetchResult as aQ, type Field as aR, type FieldFormat as aS, FieldFormatSchema as aT, FieldSchema as aU, type FieldType as aV, FieldTypeSchema as aW, type FieldValue as aX, type ForwardConfig as aY, type ForwardEffect as aZ, type Orbital as a_, type DomainCategory as aa, DomainCategorySchema as ab, type DomainContext as ac, type DomainContextInput as ad, DomainContextSchema as ae, type DomainVocabulary as af, DomainVocabularySchema as ag, ENTITY_ROLES as ah, type EffectInput as ai, EffectSchema as aj, type EmitConfig as ak, type EmitEffect as al, type EntityCall as am, EntityCallSchema as an, type EntityData as ao, type EntityFieldInput as ap, EntityFieldSchema as aq, EntityPersistenceSchema as ar, EntityRefSchema as as, EntityRefStringSchema as at, type EntityRole as au, EntityRoleSchema as av, EntitySchema as aw, type EntitySemanticRole as ax, EntitySemanticRoleSchema as ay, type EvaluateConfig as az, type Entity as b, type ResolvedAssetInput as b$, type GameSubCategory as b0, GameSubCategorySchema as b1, type GameType as b2, GameTypeSchema as b3, type Guard as b4, type GuardInput as b5, GuardSchema as b6, type ListenSource as b7, ListenSourceSchema as b8, type LogEffect as b9, type OrbitalUnit as bA, OrbitalUnitSchema as bB, OrbitalSchema$1 as bC, type OsEffect as bD, PageRefObjectSchema as bE, PageRefSchema as bF, PageRefStringSchema as bG, PageSchema as bH, type PageTraitRef as bI, PageTraitRefSchema as bJ, type PayloadField as bK, PayloadFieldSchema as bL, type PersistData as bM, type PersistEffect as bN, type PersistEmitConfig as bO, type PresentationType as bP, type RefEffect as bQ, type RelatedLink as bR, RelatedLinkSchema as bS, type RelationConfig as bT, RelationConfigSchema as bU, type RenderItemLambda as bV, type RenderUIConfig as bW, type RenderUINode as bX, type RequiredField as bY, RequiredFieldSchema as bZ, type ResolvedAsset as b_, type McpServiceDef as ba, McpServiceDefSchema as bb, type NavigateEffect as bc, type NnConfig as bd, type NnLayer as be, type NodeClassification as bf, NodeClassificationSchema as bg, type NotifyEffect as bh, type OrbitalConfig as bi, type OrbitalConfigInput as bj, OrbitalConfigSchema as bk, OrbitalDefinitionSchema as bl, type OrbitalEntity as bm, type OrbitalEntityInput as bn, OrbitalEntitySchema as bo, type OrbitalInput as bp, type OrbitalPage as bq, type OrbitalPageInput as br, OrbitalPageSchema as bs, type OrbitalPageStrictInput as bt, OrbitalPageStrictSchema as bu, type OrbitalSchemaInput as bv, OrbitalSchemaSchema as bw, type OrbitalSchemaWithTraits as bx, type OrbitalTraitRef as by, OrbitalTraitRefSchema as bz, type TraitEventListener as c, TraitReferenceSchema as c$, ResolvedAssetSchema as c0, type ResolvedPatternProps as c1, type RestAuthConfig as c2, RestAuthConfigSchema as c3, type RestServiceDef as c4, RestServiceDefSchema as c5, SERVICE_TYPES as c6, type SemanticAssetRef as c7, type SemanticAssetRefInput as c8, SemanticAssetRefSchema as c9, type SwapEffect as cA, type ThemeDefinition as cB, ThemeDefinitionSchema as cC, type ThemeRef as cD, ThemeRefSchema as cE, ThemeRefStringSchema as cF, type ThemeTokens as cG, ThemeTokensSchema as cH, type ThemeVariant as cI, ThemeVariantSchema as cJ, type TrainConfig as cK, type TrainEffect as cL, type TraitCategory as cM, TraitCategorySchema as cN, type TraitConfigObject as cO, TraitConfigSchema as cP, type TraitConfigValue as cQ, TraitConfigValueSchema as cR, type TraitDataEntity as cS, TraitDataEntitySchema as cT, type TraitEntityField as cU, TraitEntityFieldSchema as cV, TraitEventContractSchema as cW, TraitEventListenerSchema as cX, type TraitInput as cY, TraitRefSchema as cZ, type TraitReferenceInput as c_, type ServiceDefinition as ca, ServiceDefinitionSchema as cb, type ServiceParams as cc, type ServiceParamsValue as cd, type ServiceRef as ce, type ServiceRefObject as cf, ServiceRefObjectSchema as cg, ServiceRefSchema as ch, ServiceRefStringSchema as ci, type ServiceType as cj, ServiceTypeSchema as ck, type SetEffect as cl, type SocketEvents as cm, SocketEventsSchema as cn, type SocketServiceDef as co, SocketServiceDefSchema as cp, type SpawnEffect as cq, type StateInput as cr, type StateMachine as cs, type StateMachineInput as ct, StateMachineSchema as cu, StateSchema as cv, type StateSemanticRole as cw, StateSemanticRoleSchema as cx, type SuggestedGuard as cy, SuggestedGuardSchema as cz, type TraitConfig as d, parseImportedTraitRef as d$, TraitSchema as d0, type TraitTick as d1, TraitTickSchema as d2, type TraitUIBinding as d3, type Transition as d4, type TransitionInput as d5, TransitionSchema as d6, type TypedEffect as d7, UISlotSchema as d8, UI_SLOTS as d9, getTraitName as dA, hasService as dB, isCircuitEvent as dC, isEffect as dD, isEntityCall as dE, isEntityReference as dF, isEntityReferenceAny as dG, isImportedTraitRef as dH, isInlineTrait as dI, isMcpService as dJ, isOrbitalDefinition as dK, isPageReference as dL, isPageReferenceObject as dM, isPageReferenceString as dN, isRestService as dO, isRuntimeEntity as dP, isSExprEffect as dQ, isServiceReference as dR, isServiceReferenceObject as dS, isSingletonEntity as dT, isSocketService as dU, isThemeReference as dV, navigate as dW, normalizeTraitRef as dX, notify as dY, parseAssetKey as dZ, parseEntityRef as d_, type UXHints as da, UXHintsSchema as db, UseDeclarationSchema as dc, type UserPersona as dd, type UserPersonaInput as de, UserPersonaSchema as df, VISUAL_STYLES as dg, type ViewType as dh, ViewTypeSchema as di, type VisualStyle as dj, VisualStyleSchema as dk, type WatchEffect as dl, type WatchOptions as dm, atomic as dn, callService as dp, createAssetKey as dq, deref as dr, deriveCollection as ds, despawn as dt, doEffects as du, emit as dv, findService as dw, getDefaultAnimationsForRole as dx, getServiceNames as dy, getTraitConfig as dz, type EntityField as e, parseOrbitalSchema as e0, parsePageRef as e1, parseServiceRef as e2, persist as e3, ref as e4, renderUI as e5, safeParseOrbitalSchema as e6, set as e7, spawn as e8, swap as e9, validateAssetAnimations as ea, watch as eb, type EntityPersistence as f, type EntityRow as g, type UseDeclaration as h, type EntityRef as i, type TraitRef as j, type OrbitalSchema as k, type Page as l, type PageRefObject as m, type TraitReference as n, ALLOWED_CUSTOM_COMPONENTS as o, type AgentDomainCategory as p, AgentDomainCategorySchema as q, type AgentEffect as r, type AllowedCustomComponent as s, type AnimationDef as t, type AnimationDefInput as u, AnimationDefSchema as v, type AssetMap as w, type AssetMapInput as x, AssetMapSchema as y, type AssetMapping as z };
|