@almadar/core 7.5.0 → 7.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +2 -2
- package/dist/builders.js +9 -1
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-BH2woEkf.d.ts → compose-behaviors-CBp9-Qwa.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +9 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/{schema-C3iwMsTl.d.ts → schema-Bvgo3r3r.d.ts} +105 -1
- package/dist/types/index.d.ts +15 -4
- package/dist/types/index.js +10 -2
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -2562,6 +2562,28 @@ type TraitConfig = TraitConfigObject;
|
|
|
2562
2562
|
/** Zod schema for TraitConfig. Recursive via z.lazy to allow nested structures. */
|
|
2563
2563
|
declare const TraitConfigValueSchema: z.ZodType<TraitConfigValue>;
|
|
2564
2564
|
declare const TraitConfigSchema: z.ZodType<TraitConfig>;
|
|
2565
|
+
/**
|
|
2566
|
+
* Per-field entry in a trait's DECLARED `config { }` schema as it lives
|
|
2567
|
+
* on the `.orb` JSON: `{ type: "string" | "[string]" | "object" | ...,
|
|
2568
|
+
* default?: <value> }`. Distinct from `TraitConfigValue` (which is the
|
|
2569
|
+
* resolved runtime value). The runtime reads `default` to seed the
|
|
2570
|
+
* `@config.X` binding context when no call-site override is supplied.
|
|
2571
|
+
*
|
|
2572
|
+
* Authored as `config { foo : string = "bar" }` in `.lolo`; lowered to
|
|
2573
|
+
* `{ foo: { type: "string", default: "bar" } }` in `.orb`.
|
|
2574
|
+
*/
|
|
2575
|
+
interface ConfigFieldDeclaration {
|
|
2576
|
+
readonly type: string;
|
|
2577
|
+
readonly default?: TraitConfigValue;
|
|
2578
|
+
}
|
|
2579
|
+
declare const ConfigFieldDeclarationSchema: z.ZodType<ConfigFieldDeclaration>;
|
|
2580
|
+
/**
|
|
2581
|
+
* Map of declared config fields keyed by name. Lives on `Trait.config`
|
|
2582
|
+
* and `ResolvedTrait.config` for atoms/molecules that expose typed
|
|
2583
|
+
* configuration to consumers.
|
|
2584
|
+
*/
|
|
2585
|
+
type DeclaredTraitConfig = Readonly<Record<string, ConfigFieldDeclaration>>;
|
|
2586
|
+
declare const DeclaredTraitConfigSchema: z.ZodType<DeclaredTraitConfig>;
|
|
2565
2587
|
/**
|
|
2566
2588
|
* Categories for organizing traits
|
|
2567
2589
|
*/
|
|
@@ -3246,6 +3268,13 @@ interface Trait {
|
|
|
3246
3268
|
*/
|
|
3247
3269
|
listens?: TraitEventListener[];
|
|
3248
3270
|
ui?: TraitUIBinding;
|
|
3271
|
+
/**
|
|
3272
|
+
* Declared `config { }` schema authored on the trait. Drives
|
|
3273
|
+
* `@config.X` substitution: each field's `default` seeds the
|
|
3274
|
+
* binding context behind any caller-supplied call-site
|
|
3275
|
+
* `config: { ... }` override.
|
|
3276
|
+
*/
|
|
3277
|
+
config?: DeclaredTraitConfig;
|
|
3249
3278
|
}
|
|
3250
3279
|
declare const TraitSchema: z.ZodObject<{
|
|
3251
3280
|
name: z.ZodString;
|
|
@@ -3662,12 +3691,14 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3662
3691
|
} | undefined;
|
|
3663
3692
|
}>, "many">>;
|
|
3664
3693
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3694
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
3665
3695
|
}, "strip", z.ZodTypeAny, {
|
|
3666
3696
|
name: string;
|
|
3667
3697
|
scope: "instance" | "collection";
|
|
3668
3698
|
ui?: Record<string, unknown> | undefined;
|
|
3669
3699
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
3670
3700
|
description?: string | undefined;
|
|
3701
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
3671
3702
|
emits?: {
|
|
3672
3703
|
event: string;
|
|
3673
3704
|
description?: string | undefined;
|
|
@@ -3774,6 +3805,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3774
3805
|
ui?: Record<string, unknown> | undefined;
|
|
3775
3806
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
3776
3807
|
description?: string | undefined;
|
|
3808
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
3777
3809
|
emits?: {
|
|
3778
3810
|
event: string;
|
|
3779
3811
|
description?: string | undefined;
|
|
@@ -4308,12 +4340,14 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4308
4340
|
} | undefined;
|
|
4309
4341
|
}>, "many">>;
|
|
4310
4342
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4343
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
4311
4344
|
}, "strip", z.ZodTypeAny, {
|
|
4312
4345
|
name: string;
|
|
4313
4346
|
scope: "instance" | "collection";
|
|
4314
4347
|
ui?: Record<string, unknown> | undefined;
|
|
4315
4348
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
4316
4349
|
description?: string | undefined;
|
|
4350
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
4317
4351
|
emits?: {
|
|
4318
4352
|
event: string;
|
|
4319
4353
|
description?: string | undefined;
|
|
@@ -4420,6 +4454,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4420
4454
|
ui?: Record<string, unknown> | undefined;
|
|
4421
4455
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
4422
4456
|
description?: string | undefined;
|
|
4457
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
4423
4458
|
emits?: {
|
|
4424
4459
|
event: string;
|
|
4425
4460
|
description?: string | undefined;
|
|
@@ -5024,12 +5059,14 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5024
5059
|
} | undefined;
|
|
5025
5060
|
}>, "many">>;
|
|
5026
5061
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5062
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
5027
5063
|
}, "strip", z.ZodTypeAny, {
|
|
5028
5064
|
name: string;
|
|
5029
5065
|
scope: "instance" | "collection";
|
|
5030
5066
|
ui?: Record<string, unknown> | undefined;
|
|
5031
5067
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
5032
5068
|
description?: string | undefined;
|
|
5069
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
5033
5070
|
emits?: {
|
|
5034
5071
|
event: string;
|
|
5035
5072
|
description?: string | undefined;
|
|
@@ -5136,6 +5173,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5136
5173
|
ui?: Record<string, unknown> | undefined;
|
|
5137
5174
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
5138
5175
|
description?: string | undefined;
|
|
5176
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
5139
5177
|
emits?: {
|
|
5140
5178
|
event: string;
|
|
5141
5179
|
description?: string | undefined;
|
|
@@ -6952,12 +6990,14 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6952
6990
|
} | undefined;
|
|
6953
6991
|
}>, "many">>;
|
|
6954
6992
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6993
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
6955
6994
|
}, "strip", z.ZodTypeAny, {
|
|
6956
6995
|
name: string;
|
|
6957
6996
|
scope: "instance" | "collection";
|
|
6958
6997
|
ui?: Record<string, unknown> | undefined;
|
|
6959
6998
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
6960
6999
|
description?: string | undefined;
|
|
7000
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
6961
7001
|
emits?: {
|
|
6962
7002
|
event: string;
|
|
6963
7003
|
description?: string | undefined;
|
|
@@ -7064,6 +7104,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7064
7104
|
ui?: Record<string, unknown> | undefined;
|
|
7065
7105
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
7066
7106
|
description?: string | undefined;
|
|
7107
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7067
7108
|
emits?: {
|
|
7068
7109
|
event: string;
|
|
7069
7110
|
description?: string | undefined;
|
|
@@ -7176,6 +7217,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7176
7217
|
ui?: Record<string, unknown> | undefined;
|
|
7177
7218
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
7178
7219
|
description?: string | undefined;
|
|
7220
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7179
7221
|
emits?: {
|
|
7180
7222
|
event: string;
|
|
7181
7223
|
description?: string | undefined;
|
|
@@ -7294,6 +7336,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7294
7336
|
ui?: Record<string, unknown> | undefined;
|
|
7295
7337
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
7296
7338
|
description?: string | undefined;
|
|
7339
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7297
7340
|
emits?: {
|
|
7298
7341
|
event: string;
|
|
7299
7342
|
description?: string | undefined;
|
|
@@ -7867,12 +7910,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7867
7910
|
} | undefined;
|
|
7868
7911
|
}>, "many">>;
|
|
7869
7912
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7913
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
7870
7914
|
}, "strip", z.ZodTypeAny, {
|
|
7871
7915
|
name: string;
|
|
7872
7916
|
scope: "instance" | "collection";
|
|
7873
7917
|
ui?: Record<string, unknown> | undefined;
|
|
7874
7918
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
7875
7919
|
description?: string | undefined;
|
|
7920
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7876
7921
|
emits?: {
|
|
7877
7922
|
event: string;
|
|
7878
7923
|
description?: string | undefined;
|
|
@@ -7979,6 +8024,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7979
8024
|
ui?: Record<string, unknown> | undefined;
|
|
7980
8025
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
7981
8026
|
description?: string | undefined;
|
|
8027
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7982
8028
|
emits?: {
|
|
7983
8029
|
event: string;
|
|
7984
8030
|
description?: string | undefined;
|
|
@@ -8091,6 +8137,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8091
8137
|
ui?: Record<string, unknown> | undefined;
|
|
8092
8138
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
8093
8139
|
description?: string | undefined;
|
|
8140
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
8094
8141
|
emits?: {
|
|
8095
8142
|
event: string;
|
|
8096
8143
|
description?: string | undefined;
|
|
@@ -8209,6 +8256,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8209
8256
|
ui?: Record<string, unknown> | undefined;
|
|
8210
8257
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
8211
8258
|
description?: string | undefined;
|
|
8259
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
8212
8260
|
emits?: {
|
|
8213
8261
|
event: string;
|
|
8214
8262
|
description?: string | undefined;
|
|
@@ -9441,12 +9489,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9441
9489
|
} | undefined;
|
|
9442
9490
|
}>, "many">>;
|
|
9443
9491
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9492
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
9444
9493
|
}, "strip", z.ZodTypeAny, {
|
|
9445
9494
|
name: string;
|
|
9446
9495
|
scope: "instance" | "collection";
|
|
9447
9496
|
ui?: Record<string, unknown> | undefined;
|
|
9448
9497
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
9449
9498
|
description?: string | undefined;
|
|
9499
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
9450
9500
|
emits?: {
|
|
9451
9501
|
event: string;
|
|
9452
9502
|
description?: string | undefined;
|
|
@@ -9553,6 +9603,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9553
9603
|
ui?: Record<string, unknown> | undefined;
|
|
9554
9604
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
9555
9605
|
description?: string | undefined;
|
|
9606
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
9556
9607
|
emits?: {
|
|
9557
9608
|
event: string;
|
|
9558
9609
|
description?: string | undefined;
|
|
@@ -10119,12 +10170,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10119
10170
|
} | undefined;
|
|
10120
10171
|
}>, "many">>;
|
|
10121
10172
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10173
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
10122
10174
|
}, "strip", z.ZodTypeAny, {
|
|
10123
10175
|
name: string;
|
|
10124
10176
|
scope: "instance" | "collection";
|
|
10125
10177
|
ui?: Record<string, unknown> | undefined;
|
|
10126
10178
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
10127
10179
|
description?: string | undefined;
|
|
10180
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10128
10181
|
emits?: {
|
|
10129
10182
|
event: string;
|
|
10130
10183
|
description?: string | undefined;
|
|
@@ -10231,6 +10284,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10231
10284
|
ui?: Record<string, unknown> | undefined;
|
|
10232
10285
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
10233
10286
|
description?: string | undefined;
|
|
10287
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10234
10288
|
emits?: {
|
|
10235
10289
|
event: string;
|
|
10236
10290
|
description?: string | undefined;
|
|
@@ -10343,6 +10397,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10343
10397
|
ui?: Record<string, unknown> | undefined;
|
|
10344
10398
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
10345
10399
|
description?: string | undefined;
|
|
10400
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10346
10401
|
emits?: {
|
|
10347
10402
|
event: string;
|
|
10348
10403
|
description?: string | undefined;
|
|
@@ -10461,6 +10516,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10461
10516
|
ui?: Record<string, unknown> | undefined;
|
|
10462
10517
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
10463
10518
|
description?: string | undefined;
|
|
10519
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10464
10520
|
emits?: {
|
|
10465
10521
|
event: string;
|
|
10466
10522
|
description?: string | undefined;
|
|
@@ -10859,6 +10915,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10859
10915
|
ui?: Record<string, unknown> | undefined;
|
|
10860
10916
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
10861
10917
|
description?: string | undefined;
|
|
10918
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10862
10919
|
emits?: {
|
|
10863
10920
|
event: string;
|
|
10864
10921
|
description?: string | undefined;
|
|
@@ -10973,6 +11030,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10973
11030
|
ui?: Record<string, unknown> | undefined;
|
|
10974
11031
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
10975
11032
|
description?: string | undefined;
|
|
11033
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10976
11034
|
emits?: {
|
|
10977
11035
|
event: string;
|
|
10978
11036
|
description?: string | undefined;
|
|
@@ -11257,6 +11315,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11257
11315
|
ui?: Record<string, unknown> | undefined;
|
|
11258
11316
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
11259
11317
|
description?: string | undefined;
|
|
11318
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11260
11319
|
emits?: {
|
|
11261
11320
|
event: string;
|
|
11262
11321
|
description?: string | undefined;
|
|
@@ -11371,6 +11430,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11371
11430
|
ui?: Record<string, unknown> | undefined;
|
|
11372
11431
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
11373
11432
|
description?: string | undefined;
|
|
11433
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11374
11434
|
emits?: {
|
|
11375
11435
|
event: string;
|
|
11376
11436
|
description?: string | undefined;
|
|
@@ -12352,12 +12412,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12352
12412
|
} | undefined;
|
|
12353
12413
|
}>, "many">>;
|
|
12354
12414
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12415
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
12355
12416
|
}, "strip", z.ZodTypeAny, {
|
|
12356
12417
|
name: string;
|
|
12357
12418
|
scope: "instance" | "collection";
|
|
12358
12419
|
ui?: Record<string, unknown> | undefined;
|
|
12359
12420
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
12360
12421
|
description?: string | undefined;
|
|
12422
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12361
12423
|
emits?: {
|
|
12362
12424
|
event: string;
|
|
12363
12425
|
description?: string | undefined;
|
|
@@ -12464,6 +12526,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12464
12526
|
ui?: Record<string, unknown> | undefined;
|
|
12465
12527
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
12466
12528
|
description?: string | undefined;
|
|
12529
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12467
12530
|
emits?: {
|
|
12468
12531
|
event: string;
|
|
12469
12532
|
description?: string | undefined;
|
|
@@ -13030,12 +13093,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13030
13093
|
} | undefined;
|
|
13031
13094
|
}>, "many">>;
|
|
13032
13095
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13096
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
13033
13097
|
}, "strip", z.ZodTypeAny, {
|
|
13034
13098
|
name: string;
|
|
13035
13099
|
scope: "instance" | "collection";
|
|
13036
13100
|
ui?: Record<string, unknown> | undefined;
|
|
13037
13101
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
13038
13102
|
description?: string | undefined;
|
|
13103
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13039
13104
|
emits?: {
|
|
13040
13105
|
event: string;
|
|
13041
13106
|
description?: string | undefined;
|
|
@@ -13142,6 +13207,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13142
13207
|
ui?: Record<string, unknown> | undefined;
|
|
13143
13208
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
13144
13209
|
description?: string | undefined;
|
|
13210
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13145
13211
|
emits?: {
|
|
13146
13212
|
event: string;
|
|
13147
13213
|
description?: string | undefined;
|
|
@@ -13254,6 +13320,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13254
13320
|
ui?: Record<string, unknown> | undefined;
|
|
13255
13321
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
13256
13322
|
description?: string | undefined;
|
|
13323
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13257
13324
|
emits?: {
|
|
13258
13325
|
event: string;
|
|
13259
13326
|
description?: string | undefined;
|
|
@@ -13372,6 +13439,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13372
13439
|
ui?: Record<string, unknown> | undefined;
|
|
13373
13440
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
13374
13441
|
description?: string | undefined;
|
|
13442
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13375
13443
|
emits?: {
|
|
13376
13444
|
event: string;
|
|
13377
13445
|
description?: string | undefined;
|
|
@@ -13770,6 +13838,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13770
13838
|
ui?: Record<string, unknown> | undefined;
|
|
13771
13839
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
13772
13840
|
description?: string | undefined;
|
|
13841
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13773
13842
|
emits?: {
|
|
13774
13843
|
event: string;
|
|
13775
13844
|
description?: string | undefined;
|
|
@@ -13884,6 +13953,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13884
13953
|
ui?: Record<string, unknown> | undefined;
|
|
13885
13954
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
13886
13955
|
description?: string | undefined;
|
|
13956
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13887
13957
|
emits?: {
|
|
13888
13958
|
event: string;
|
|
13889
13959
|
description?: string | undefined;
|
|
@@ -14168,6 +14238,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14168
14238
|
ui?: Record<string, unknown> | undefined;
|
|
14169
14239
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
14170
14240
|
description?: string | undefined;
|
|
14241
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14171
14242
|
emits?: {
|
|
14172
14243
|
event: string;
|
|
14173
14244
|
description?: string | undefined;
|
|
@@ -14282,6 +14353,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14282
14353
|
ui?: Record<string, unknown> | undefined;
|
|
14283
14354
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
14284
14355
|
description?: string | undefined;
|
|
14356
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14285
14357
|
emits?: {
|
|
14286
14358
|
event: string;
|
|
14287
14359
|
description?: string | undefined;
|
|
@@ -15270,12 +15342,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15270
15342
|
} | undefined;
|
|
15271
15343
|
}>, "many">>;
|
|
15272
15344
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15345
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
15273
15346
|
}, "strip", z.ZodTypeAny, {
|
|
15274
15347
|
name: string;
|
|
15275
15348
|
scope: "instance" | "collection";
|
|
15276
15349
|
ui?: Record<string, unknown> | undefined;
|
|
15277
15350
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
15278
15351
|
description?: string | undefined;
|
|
15352
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15279
15353
|
emits?: {
|
|
15280
15354
|
event: string;
|
|
15281
15355
|
description?: string | undefined;
|
|
@@ -15382,6 +15456,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15382
15456
|
ui?: Record<string, unknown> | undefined;
|
|
15383
15457
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
15384
15458
|
description?: string | undefined;
|
|
15459
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15385
15460
|
emits?: {
|
|
15386
15461
|
event: string;
|
|
15387
15462
|
description?: string | undefined;
|
|
@@ -15948,12 +16023,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15948
16023
|
} | undefined;
|
|
15949
16024
|
}>, "many">>;
|
|
15950
16025
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16026
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
15951
16027
|
}, "strip", z.ZodTypeAny, {
|
|
15952
16028
|
name: string;
|
|
15953
16029
|
scope: "instance" | "collection";
|
|
15954
16030
|
ui?: Record<string, unknown> | undefined;
|
|
15955
16031
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
15956
16032
|
description?: string | undefined;
|
|
16033
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15957
16034
|
emits?: {
|
|
15958
16035
|
event: string;
|
|
15959
16036
|
description?: string | undefined;
|
|
@@ -16060,6 +16137,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16060
16137
|
ui?: Record<string, unknown> | undefined;
|
|
16061
16138
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
16062
16139
|
description?: string | undefined;
|
|
16140
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16063
16141
|
emits?: {
|
|
16064
16142
|
event: string;
|
|
16065
16143
|
description?: string | undefined;
|
|
@@ -16172,6 +16250,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16172
16250
|
ui?: Record<string, unknown> | undefined;
|
|
16173
16251
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
16174
16252
|
description?: string | undefined;
|
|
16253
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16175
16254
|
emits?: {
|
|
16176
16255
|
event: string;
|
|
16177
16256
|
description?: string | undefined;
|
|
@@ -16290,6 +16369,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16290
16369
|
ui?: Record<string, unknown> | undefined;
|
|
16291
16370
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
16292
16371
|
description?: string | undefined;
|
|
16372
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16293
16373
|
emits?: {
|
|
16294
16374
|
event: string;
|
|
16295
16375
|
description?: string | undefined;
|
|
@@ -16688,6 +16768,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16688
16768
|
ui?: Record<string, unknown> | undefined;
|
|
16689
16769
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
16690
16770
|
description?: string | undefined;
|
|
16771
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16691
16772
|
emits?: {
|
|
16692
16773
|
event: string;
|
|
16693
16774
|
description?: string | undefined;
|
|
@@ -16802,6 +16883,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16802
16883
|
ui?: Record<string, unknown> | undefined;
|
|
16803
16884
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
16804
16885
|
description?: string | undefined;
|
|
16886
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16805
16887
|
emits?: {
|
|
16806
16888
|
event: string;
|
|
16807
16889
|
description?: string | undefined;
|
|
@@ -17086,6 +17168,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17086
17168
|
ui?: Record<string, unknown> | undefined;
|
|
17087
17169
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
17088
17170
|
description?: string | undefined;
|
|
17171
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17089
17172
|
emits?: {
|
|
17090
17173
|
event: string;
|
|
17091
17174
|
description?: string | undefined;
|
|
@@ -17200,6 +17283,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17200
17283
|
ui?: Record<string, unknown> | undefined;
|
|
17201
17284
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
17202
17285
|
description?: string | undefined;
|
|
17286
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17203
17287
|
emits?: {
|
|
17204
17288
|
event: string;
|
|
17205
17289
|
description?: string | undefined;
|
|
@@ -18429,12 +18513,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18429
18513
|
} | undefined;
|
|
18430
18514
|
}>, "many">>;
|
|
18431
18515
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18516
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
18432
18517
|
}, "strip", z.ZodTypeAny, {
|
|
18433
18518
|
name: string;
|
|
18434
18519
|
scope: "instance" | "collection";
|
|
18435
18520
|
ui?: Record<string, unknown> | undefined;
|
|
18436
18521
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
18437
18522
|
description?: string | undefined;
|
|
18523
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18438
18524
|
emits?: {
|
|
18439
18525
|
event: string;
|
|
18440
18526
|
description?: string | undefined;
|
|
@@ -18541,6 +18627,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18541
18627
|
ui?: Record<string, unknown> | undefined;
|
|
18542
18628
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
18543
18629
|
description?: string | undefined;
|
|
18630
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18544
18631
|
emits?: {
|
|
18545
18632
|
event: string;
|
|
18546
18633
|
description?: string | undefined;
|
|
@@ -19107,12 +19194,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19107
19194
|
} | undefined;
|
|
19108
19195
|
}>, "many">>;
|
|
19109
19196
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19197
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
19110
19198
|
}, "strip", z.ZodTypeAny, {
|
|
19111
19199
|
name: string;
|
|
19112
19200
|
scope: "instance" | "collection";
|
|
19113
19201
|
ui?: Record<string, unknown> | undefined;
|
|
19114
19202
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
19115
19203
|
description?: string | undefined;
|
|
19204
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19116
19205
|
emits?: {
|
|
19117
19206
|
event: string;
|
|
19118
19207
|
description?: string | undefined;
|
|
@@ -19219,6 +19308,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19219
19308
|
ui?: Record<string, unknown> | undefined;
|
|
19220
19309
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
19221
19310
|
description?: string | undefined;
|
|
19311
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19222
19312
|
emits?: {
|
|
19223
19313
|
event: string;
|
|
19224
19314
|
description?: string | undefined;
|
|
@@ -19331,6 +19421,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19331
19421
|
ui?: Record<string, unknown> | undefined;
|
|
19332
19422
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
19333
19423
|
description?: string | undefined;
|
|
19424
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19334
19425
|
emits?: {
|
|
19335
19426
|
event: string;
|
|
19336
19427
|
description?: string | undefined;
|
|
@@ -19449,6 +19540,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19449
19540
|
ui?: Record<string, unknown> | undefined;
|
|
19450
19541
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
19451
19542
|
description?: string | undefined;
|
|
19543
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19452
19544
|
emits?: {
|
|
19453
19545
|
event: string;
|
|
19454
19546
|
description?: string | undefined;
|
|
@@ -19847,6 +19939,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19847
19939
|
ui?: Record<string, unknown> | undefined;
|
|
19848
19940
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
19849
19941
|
description?: string | undefined;
|
|
19942
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19850
19943
|
emits?: {
|
|
19851
19944
|
event: string;
|
|
19852
19945
|
description?: string | undefined;
|
|
@@ -19961,6 +20054,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19961
20054
|
ui?: Record<string, unknown> | undefined;
|
|
19962
20055
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
19963
20056
|
description?: string | undefined;
|
|
20057
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19964
20058
|
emits?: {
|
|
19965
20059
|
event: string;
|
|
19966
20060
|
description?: string | undefined;
|
|
@@ -20245,6 +20339,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20245
20339
|
ui?: Record<string, unknown> | undefined;
|
|
20246
20340
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
20247
20341
|
description?: string | undefined;
|
|
20342
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20248
20343
|
emits?: {
|
|
20249
20344
|
event: string;
|
|
20250
20345
|
description?: string | undefined;
|
|
@@ -20359,6 +20454,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20359
20454
|
ui?: Record<string, unknown> | undefined;
|
|
20360
20455
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
20361
20456
|
description?: string | undefined;
|
|
20457
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20362
20458
|
emits?: {
|
|
20363
20459
|
event: string;
|
|
20364
20460
|
description?: string | undefined;
|
|
@@ -20821,6 +20917,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20821
20917
|
ui?: Record<string, unknown> | undefined;
|
|
20822
20918
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
20823
20919
|
description?: string | undefined;
|
|
20920
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20824
20921
|
emits?: {
|
|
20825
20922
|
event: string;
|
|
20826
20923
|
description?: string | undefined;
|
|
@@ -20935,6 +21032,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20935
21032
|
ui?: Record<string, unknown> | undefined;
|
|
20936
21033
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
20937
21034
|
description?: string | undefined;
|
|
21035
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20938
21036
|
emits?: {
|
|
20939
21037
|
event: string;
|
|
20940
21038
|
description?: string | undefined;
|
|
@@ -21308,6 +21406,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21308
21406
|
ui?: Record<string, unknown> | undefined;
|
|
21309
21407
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
21310
21408
|
description?: string | undefined;
|
|
21409
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21311
21410
|
emits?: {
|
|
21312
21411
|
event: string;
|
|
21313
21412
|
description?: string | undefined;
|
|
@@ -21422,6 +21521,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21422
21521
|
ui?: Record<string, unknown> | undefined;
|
|
21423
21522
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
21424
21523
|
description?: string | undefined;
|
|
21524
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21425
21525
|
emits?: {
|
|
21426
21526
|
event: string;
|
|
21427
21527
|
description?: string | undefined;
|
|
@@ -21842,6 +21942,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21842
21942
|
ui?: Record<string, unknown> | undefined;
|
|
21843
21943
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
21844
21944
|
description?: string | undefined;
|
|
21945
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21845
21946
|
emits?: {
|
|
21846
21947
|
event: string;
|
|
21847
21948
|
description?: string | undefined;
|
|
@@ -21956,6 +22057,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21956
22057
|
ui?: Record<string, unknown> | undefined;
|
|
21957
22058
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
21958
22059
|
description?: string | undefined;
|
|
22060
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21959
22061
|
emits?: {
|
|
21960
22062
|
event: string;
|
|
21961
22063
|
description?: string | undefined;
|
|
@@ -22329,6 +22431,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22329
22431
|
ui?: Record<string, unknown> | undefined;
|
|
22330
22432
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
22331
22433
|
description?: string | undefined;
|
|
22434
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22332
22435
|
emits?: {
|
|
22333
22436
|
event: string;
|
|
22334
22437
|
description?: string | undefined;
|
|
@@ -22443,6 +22546,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22443
22546
|
ui?: Record<string, unknown> | undefined;
|
|
22444
22547
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
22445
22548
|
description?: string | undefined;
|
|
22549
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22446
22550
|
emits?: {
|
|
22447
22551
|
event: string;
|
|
22448
22552
|
description?: string | undefined;
|
|
@@ -22769,4 +22873,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22769
22873
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
22770
22874
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
22771
22875
|
|
|
22772
|
-
export { type
|
|
22876
|
+
export { type DesignPreferences as $, AGENT_DOMAIN_CATEGORIES as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Entity as E, type CheckpointLoadEffect as F, type CheckpointSaveEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type ConfigFieldDeclaration as L, ConfigFieldDeclarationSchema as M, type CustomPatternDefinition as N, type OrbitalDefinition as O, type PageRef as P, type CustomPatternDefinitionInput as Q, CustomPatternDefinitionSchema as R, type State as S, type TraitEventContract as T, type UseDeclaration as U, type CustomPatternMap as V, type CustomPatternMapInput as W, CustomPatternMapSchema as X, type DeclaredTraitConfig as Y, DeclaredTraitConfigSchema as Z, type DerefEffect as _, type TraitEventListener as a, type GameType as a$, type DesignPreferencesInput as a0, DesignPreferencesSchema as a1, type DesignTokens as a2, type DesignTokensInput as a3, DesignTokensSchema as a4, type DespawnEffect as a5, type DoEffect as a6, type DomainCategory as a7, DomainCategorySchema as a8, type DomainContext as a9, type EventInput as aA, type EventListener as aB, EventListenerSchema as aC, type EventPayloadField as aD, EventPayloadFieldSchema as aE, EventSchema as aF, type EventScope as aG, EventScopeSchema as aH, type EventSemanticRole as aI, EventSemanticRoleSchema as aJ, type EventSource as aK, EventSourceSchema as aL, type FetchEffect as aM, type FetchOptions as aN, type Field as aO, type FieldFormat as aP, FieldFormatSchema as aQ, FieldSchema as aR, type FieldType as aS, FieldTypeSchema as aT, type FieldValue as aU, type ForwardConfig as aV, type ForwardEffect as aW, type Orbital as aX, GAME_TYPES as aY, type GameSubCategory as aZ, GameSubCategorySchema as a_, type DomainContextInput as aa, DomainContextSchema as ab, type DomainVocabulary as ac, DomainVocabularySchema as ad, ENTITY_ROLES as ae, type Effect as af, type EffectInput as ag, EffectSchema as ah, type EmitConfig as ai, type EmitEffect as aj, type EntityCall as ak, EntityCallSchema as al, type EntityData as am, type EntityFieldInput as an, EntityFieldSchema as ao, EntityPersistenceSchema as ap, EntityRefSchema as aq, EntityRefStringSchema as ar, type EntityRole as as, EntityRoleSchema as at, EntitySchema as au, type EntitySemanticRole as av, EntitySemanticRoleSchema as aw, type EvaluateConfig as ax, type EvaluateEffect as ay, type Event as az, type TraitConfig as b, type RestAuthConfig as b$, GameTypeSchema as b0, type Guard as b1, type GuardInput as b2, GuardSchema as b3, type ListenSource as b4, ListenSourceSchema as b5, type LogEffect as b6, type McpServiceDef as b7, McpServiceDefSchema as b8, type NavigateEffect as b9, PageRefObjectSchema as bA, PageRefSchema as bB, PageRefStringSchema as bC, PageSchema as bD, type PageTraitRef as bE, PageTraitRefSchema as bF, type PayloadField as bG, PayloadFieldSchema as bH, type PersistData as bI, type PersistEffect as bJ, type PersistEmitConfig as bK, type PresentationType as bL, type RefEffect as bM, type RelatedLink as bN, RelatedLinkSchema as bO, type RelationConfig as bP, RelationConfigSchema as bQ, type RenderItemLambda as bR, type RenderUIConfig as bS, type RenderUIEffect as bT, type RenderUINode as bU, type RequiredField as bV, RequiredFieldSchema as bW, type ResolvedAsset as bX, type ResolvedAssetInput as bY, ResolvedAssetSchema as bZ, type ResolvedPatternProps as b_, type NnConfig as ba, type NnLayer as bb, type NodeClassification as bc, NodeClassificationSchema as bd, type NotifyEffect as be, type OrbitalConfig as bf, type OrbitalConfigInput as bg, OrbitalConfigSchema as bh, OrbitalDefinitionSchema as bi, type OrbitalEntity as bj, type OrbitalEntityInput as bk, OrbitalEntitySchema as bl, type OrbitalInput as bm, type OrbitalPage as bn, type OrbitalPageInput as bo, OrbitalPageSchema as bp, type OrbitalPageStrictInput as bq, OrbitalPageStrictSchema as br, type OrbitalSchemaInput as bs, OrbitalSchemaSchema as bt, type OrbitalTraitRef as bu, OrbitalTraitRefSchema as bv, type OrbitalUnit as bw, OrbitalUnitSchema as bx, OrbitalSchema$1 as by, type OsEffect as bz, type EntityField as c, type TraitUIBinding as c$, RestAuthConfigSchema as c0, type RestServiceDef as c1, RestServiceDefSchema as c2, SERVICE_TYPES as c3, type SemanticAssetRef as c4, type SemanticAssetRefInput as c5, SemanticAssetRefSchema as c6, type ServiceDefinition as c7, ServiceDefinitionSchema as c8, type ServiceParams as c9, ThemeRefSchema as cA, ThemeRefStringSchema as cB, type ThemeTokens as cC, ThemeTokensSchema as cD, type ThemeVariant as cE, ThemeVariantSchema as cF, type TrainConfig as cG, type TrainEffect as cH, type TraitCategory as cI, TraitCategorySchema as cJ, type TraitConfigObject as cK, TraitConfigSchema as cL, type TraitConfigValue as cM, TraitConfigValueSchema as cN, type TraitDataEntity as cO, TraitDataEntitySchema as cP, type TraitEntityField as cQ, TraitEntityFieldSchema as cR, TraitEventContractSchema as cS, TraitEventListenerSchema as cT, type TraitInput as cU, TraitRefSchema as cV, type TraitReferenceInput as cW, TraitReferenceSchema as cX, TraitSchema as cY, type TraitTick as cZ, TraitTickSchema as c_, type ServiceRef as ca, type ServiceRefObject as cb, ServiceRefObjectSchema as cc, ServiceRefSchema as cd, ServiceRefStringSchema as ce, type ServiceType as cf, ServiceTypeSchema as cg, type SetEffect as ch, type SocketEvents as ci, SocketEventsSchema as cj, type SocketServiceDef as ck, SocketServiceDefSchema as cl, type SpawnEffect as cm, type StateInput as cn, type StateMachine as co, type StateMachineInput as cp, StateMachineSchema as cq, StateSchema as cr, type StateSemanticRole as cs, StateSemanticRoleSchema as ct, type SuggestedGuard as cu, SuggestedGuardSchema as cv, type SwapEffect as cw, type ThemeDefinition as cx, ThemeDefinitionSchema as cy, type ThemeRef as cz, type EntityPersistence as d, parseServiceRef as d$, type Transition as d0, type TransitionInput as d1, TransitionSchema as d2, type TypedEffect as d3, type UISlot as d4, UISlotSchema as d5, UI_SLOTS as d6, type UXHints as d7, UXHintsSchema as d8, UseDeclarationSchema as d9, isEffect as dA, isEntityCall as dB, isEntityReference as dC, isEntityReferenceAny as dD, isImportedTraitRef as dE, isInlineTrait as dF, isMcpService as dG, isOrbitalDefinition as dH, isPageReference as dI, isPageReferenceObject as dJ, isPageReferenceString as dK, isRestService as dL, isRuntimeEntity as dM, isSExprEffect as dN, isServiceReference as dO, isServiceReferenceObject as dP, isSingletonEntity as dQ, isSocketService as dR, isThemeReference as dS, navigate as dT, normalizeTraitRef as dU, notify as dV, parseAssetKey as dW, parseEntityRef as dX, parseImportedTraitRef as dY, parseOrbitalSchema as dZ, parsePageRef as d_, type UserPersona as da, type UserPersonaInput as db, UserPersonaSchema as dc, VISUAL_STYLES as dd, type ViewType as de, ViewTypeSchema as df, type VisualStyle as dg, VisualStyleSchema as dh, type WatchEffect as di, type WatchOptions as dj, atomic as dk, callService as dl, createAssetKey as dm, deref as dn, deriveCollection as dp, despawn as dq, doEffects as dr, emit as ds, findService as dt, getDefaultAnimationsForRole as du, getServiceNames as dv, getTraitConfig as dw, getTraitName as dx, hasService as dy, isCircuitEvent as dz, type EntityRow as e, persist as e0, ref as e1, renderUI as e2, safeParseOrbitalSchema as e3, set as e4, spawn as e5, swap as e6, validateAssetAnimations as e7, watch as e8, type EntityRef as f, type TraitRef as g, type OrbitalSchema as h, type Trait as i, type Page as j, type PageRefObject as k, type TraitReference as l, ALLOWED_CUSTOM_COMPONENTS as m, type AgentDomainCategory as n, AgentDomainCategorySchema as o, type AgentEffect as p, type AllowedCustomComponent as q, type AnimationDef as r, type AnimationDefInput as s, AnimationDefSchema as t, type AssetMap as u, type AssetMapInput as v, AssetMapSchema as w, type AssetMapping as x, type AssetMappingInput as y, AssetMappingSchema as z };
|