@almadar/core 7.5.0 → 7.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +2 -2
- package/dist/builders.js +9 -1
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-BH2woEkf.d.ts → compose-behaviors-C_Vjyfmw.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-BQhPDGd_.d.ts} +119 -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;
|
|
@@ -8648,6 +8696,20 @@ interface OrbitalDefinition {
|
|
|
8648
8696
|
* - singleton: Shared (single global instance)
|
|
8649
8697
|
*/
|
|
8650
8698
|
entity: EntityRef;
|
|
8699
|
+
/**
|
|
8700
|
+
* Imported atom entities surfaced into this orbital's resolution
|
|
8701
|
+
* scope WITHOUT modifying the primary `entity`. Populated by the
|
|
8702
|
+
* compiler's inline phase when a trait reference imports an atom
|
|
8703
|
+
* and OMITS the `-> Entity` linkedEntity rebind: the atom keeps its
|
|
8704
|
+
* own entity (e.g. `SearchResult` from std-search), and that entity
|
|
8705
|
+
* is registered here so validators / codegen / runtime can resolve
|
|
8706
|
+
* `linkedEntity = "SearchResult"` lookups, register persistence for
|
|
8707
|
+
* it, and emit its TypeScript type alongside the primary entity.
|
|
8708
|
+
* The orbital's per-trait entity arity stays 1:1 — this is purely a
|
|
8709
|
+
* NAME-RESOLUTION side channel for cross-import linkedEntity
|
|
8710
|
+
* references.
|
|
8711
|
+
*/
|
|
8712
|
+
auxiliaryEntities?: EntityRef[];
|
|
8651
8713
|
/** Trait references (local or imported via "Alias.traits.TraitName") */
|
|
8652
8714
|
traits: TraitRef[];
|
|
8653
8715
|
/**
|
|
@@ -9441,12 +9503,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9441
9503
|
} | undefined;
|
|
9442
9504
|
}>, "many">>;
|
|
9443
9505
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9506
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
9444
9507
|
}, "strip", z.ZodTypeAny, {
|
|
9445
9508
|
name: string;
|
|
9446
9509
|
scope: "instance" | "collection";
|
|
9447
9510
|
ui?: Record<string, unknown> | undefined;
|
|
9448
9511
|
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
9512
|
description?: string | undefined;
|
|
9513
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
9450
9514
|
emits?: {
|
|
9451
9515
|
event: string;
|
|
9452
9516
|
description?: string | undefined;
|
|
@@ -9553,6 +9617,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9553
9617
|
ui?: Record<string, unknown> | undefined;
|
|
9554
9618
|
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
9619
|
description?: string | undefined;
|
|
9620
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
9556
9621
|
emits?: {
|
|
9557
9622
|
event: string;
|
|
9558
9623
|
description?: string | undefined;
|
|
@@ -10119,12 +10184,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10119
10184
|
} | undefined;
|
|
10120
10185
|
}>, "many">>;
|
|
10121
10186
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10187
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
10122
10188
|
}, "strip", z.ZodTypeAny, {
|
|
10123
10189
|
name: string;
|
|
10124
10190
|
scope: "instance" | "collection";
|
|
10125
10191
|
ui?: Record<string, unknown> | undefined;
|
|
10126
10192
|
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
10193
|
description?: string | undefined;
|
|
10194
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10128
10195
|
emits?: {
|
|
10129
10196
|
event: string;
|
|
10130
10197
|
description?: string | undefined;
|
|
@@ -10231,6 +10298,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10231
10298
|
ui?: Record<string, unknown> | undefined;
|
|
10232
10299
|
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
10300
|
description?: string | undefined;
|
|
10301
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10234
10302
|
emits?: {
|
|
10235
10303
|
event: string;
|
|
10236
10304
|
description?: string | undefined;
|
|
@@ -10343,6 +10411,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10343
10411
|
ui?: Record<string, unknown> | undefined;
|
|
10344
10412
|
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
10413
|
description?: string | undefined;
|
|
10414
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10346
10415
|
emits?: {
|
|
10347
10416
|
event: string;
|
|
10348
10417
|
description?: string | undefined;
|
|
@@ -10461,6 +10530,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10461
10530
|
ui?: Record<string, unknown> | undefined;
|
|
10462
10531
|
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
10532
|
description?: string | undefined;
|
|
10533
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10464
10534
|
emits?: {
|
|
10465
10535
|
event: string;
|
|
10466
10536
|
description?: string | undefined;
|
|
@@ -10859,6 +10929,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10859
10929
|
ui?: Record<string, unknown> | undefined;
|
|
10860
10930
|
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
10931
|
description?: string | undefined;
|
|
10932
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10862
10933
|
emits?: {
|
|
10863
10934
|
event: string;
|
|
10864
10935
|
description?: string | undefined;
|
|
@@ -10973,6 +11044,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10973
11044
|
ui?: Record<string, unknown> | undefined;
|
|
10974
11045
|
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
11046
|
description?: string | undefined;
|
|
11047
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10976
11048
|
emits?: {
|
|
10977
11049
|
event: string;
|
|
10978
11050
|
description?: string | undefined;
|
|
@@ -11257,6 +11329,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11257
11329
|
ui?: Record<string, unknown> | undefined;
|
|
11258
11330
|
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
11331
|
description?: string | undefined;
|
|
11332
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11260
11333
|
emits?: {
|
|
11261
11334
|
event: string;
|
|
11262
11335
|
description?: string | undefined;
|
|
@@ -11371,6 +11444,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11371
11444
|
ui?: Record<string, unknown> | undefined;
|
|
11372
11445
|
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
11446
|
description?: string | undefined;
|
|
11447
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11374
11448
|
emits?: {
|
|
11375
11449
|
event: string;
|
|
11376
11450
|
description?: string | undefined;
|
|
@@ -12352,12 +12426,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12352
12426
|
} | undefined;
|
|
12353
12427
|
}>, "many">>;
|
|
12354
12428
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12429
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
12355
12430
|
}, "strip", z.ZodTypeAny, {
|
|
12356
12431
|
name: string;
|
|
12357
12432
|
scope: "instance" | "collection";
|
|
12358
12433
|
ui?: Record<string, unknown> | undefined;
|
|
12359
12434
|
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
12435
|
description?: string | undefined;
|
|
12436
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12361
12437
|
emits?: {
|
|
12362
12438
|
event: string;
|
|
12363
12439
|
description?: string | undefined;
|
|
@@ -12464,6 +12540,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12464
12540
|
ui?: Record<string, unknown> | undefined;
|
|
12465
12541
|
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
12542
|
description?: string | undefined;
|
|
12543
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12467
12544
|
emits?: {
|
|
12468
12545
|
event: string;
|
|
12469
12546
|
description?: string | undefined;
|
|
@@ -13030,12 +13107,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13030
13107
|
} | undefined;
|
|
13031
13108
|
}>, "many">>;
|
|
13032
13109
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
13110
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
13033
13111
|
}, "strip", z.ZodTypeAny, {
|
|
13034
13112
|
name: string;
|
|
13035
13113
|
scope: "instance" | "collection";
|
|
13036
13114
|
ui?: Record<string, unknown> | undefined;
|
|
13037
13115
|
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
13116
|
description?: string | undefined;
|
|
13117
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13039
13118
|
emits?: {
|
|
13040
13119
|
event: string;
|
|
13041
13120
|
description?: string | undefined;
|
|
@@ -13142,6 +13221,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13142
13221
|
ui?: Record<string, unknown> | undefined;
|
|
13143
13222
|
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
13223
|
description?: string | undefined;
|
|
13224
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13145
13225
|
emits?: {
|
|
13146
13226
|
event: string;
|
|
13147
13227
|
description?: string | undefined;
|
|
@@ -13254,6 +13334,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13254
13334
|
ui?: Record<string, unknown> | undefined;
|
|
13255
13335
|
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
13336
|
description?: string | undefined;
|
|
13337
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13257
13338
|
emits?: {
|
|
13258
13339
|
event: string;
|
|
13259
13340
|
description?: string | undefined;
|
|
@@ -13372,6 +13453,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13372
13453
|
ui?: Record<string, unknown> | undefined;
|
|
13373
13454
|
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
13455
|
description?: string | undefined;
|
|
13456
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13375
13457
|
emits?: {
|
|
13376
13458
|
event: string;
|
|
13377
13459
|
description?: string | undefined;
|
|
@@ -13770,6 +13852,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13770
13852
|
ui?: Record<string, unknown> | undefined;
|
|
13771
13853
|
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
13854
|
description?: string | undefined;
|
|
13855
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13773
13856
|
emits?: {
|
|
13774
13857
|
event: string;
|
|
13775
13858
|
description?: string | undefined;
|
|
@@ -13884,6 +13967,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13884
13967
|
ui?: Record<string, unknown> | undefined;
|
|
13885
13968
|
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
13969
|
description?: string | undefined;
|
|
13970
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13887
13971
|
emits?: {
|
|
13888
13972
|
event: string;
|
|
13889
13973
|
description?: string | undefined;
|
|
@@ -14168,6 +14252,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14168
14252
|
ui?: Record<string, unknown> | undefined;
|
|
14169
14253
|
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
14254
|
description?: string | undefined;
|
|
14255
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14171
14256
|
emits?: {
|
|
14172
14257
|
event: string;
|
|
14173
14258
|
description?: string | undefined;
|
|
@@ -14282,6 +14367,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14282
14367
|
ui?: Record<string, unknown> | undefined;
|
|
14283
14368
|
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
14369
|
description?: string | undefined;
|
|
14370
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14285
14371
|
emits?: {
|
|
14286
14372
|
event: string;
|
|
14287
14373
|
description?: string | undefined;
|
|
@@ -15270,12 +15356,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15270
15356
|
} | undefined;
|
|
15271
15357
|
}>, "many">>;
|
|
15272
15358
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15359
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
15273
15360
|
}, "strip", z.ZodTypeAny, {
|
|
15274
15361
|
name: string;
|
|
15275
15362
|
scope: "instance" | "collection";
|
|
15276
15363
|
ui?: Record<string, unknown> | undefined;
|
|
15277
15364
|
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
15365
|
description?: string | undefined;
|
|
15366
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15279
15367
|
emits?: {
|
|
15280
15368
|
event: string;
|
|
15281
15369
|
description?: string | undefined;
|
|
@@ -15382,6 +15470,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15382
15470
|
ui?: Record<string, unknown> | undefined;
|
|
15383
15471
|
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
15472
|
description?: string | undefined;
|
|
15473
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15385
15474
|
emits?: {
|
|
15386
15475
|
event: string;
|
|
15387
15476
|
description?: string | undefined;
|
|
@@ -15948,12 +16037,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15948
16037
|
} | undefined;
|
|
15949
16038
|
}>, "many">>;
|
|
15950
16039
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
16040
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
15951
16041
|
}, "strip", z.ZodTypeAny, {
|
|
15952
16042
|
name: string;
|
|
15953
16043
|
scope: "instance" | "collection";
|
|
15954
16044
|
ui?: Record<string, unknown> | undefined;
|
|
15955
16045
|
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
16046
|
description?: string | undefined;
|
|
16047
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15957
16048
|
emits?: {
|
|
15958
16049
|
event: string;
|
|
15959
16050
|
description?: string | undefined;
|
|
@@ -16060,6 +16151,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16060
16151
|
ui?: Record<string, unknown> | undefined;
|
|
16061
16152
|
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
16153
|
description?: string | undefined;
|
|
16154
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16063
16155
|
emits?: {
|
|
16064
16156
|
event: string;
|
|
16065
16157
|
description?: string | undefined;
|
|
@@ -16172,6 +16264,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16172
16264
|
ui?: Record<string, unknown> | undefined;
|
|
16173
16265
|
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
16266
|
description?: string | undefined;
|
|
16267
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16175
16268
|
emits?: {
|
|
16176
16269
|
event: string;
|
|
16177
16270
|
description?: string | undefined;
|
|
@@ -16290,6 +16383,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16290
16383
|
ui?: Record<string, unknown> | undefined;
|
|
16291
16384
|
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
16385
|
description?: string | undefined;
|
|
16386
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16293
16387
|
emits?: {
|
|
16294
16388
|
event: string;
|
|
16295
16389
|
description?: string | undefined;
|
|
@@ -16688,6 +16782,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16688
16782
|
ui?: Record<string, unknown> | undefined;
|
|
16689
16783
|
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
16784
|
description?: string | undefined;
|
|
16785
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16691
16786
|
emits?: {
|
|
16692
16787
|
event: string;
|
|
16693
16788
|
description?: string | undefined;
|
|
@@ -16802,6 +16897,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16802
16897
|
ui?: Record<string, unknown> | undefined;
|
|
16803
16898
|
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
16899
|
description?: string | undefined;
|
|
16900
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
16805
16901
|
emits?: {
|
|
16806
16902
|
event: string;
|
|
16807
16903
|
description?: string | undefined;
|
|
@@ -17086,6 +17182,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17086
17182
|
ui?: Record<string, unknown> | undefined;
|
|
17087
17183
|
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
17184
|
description?: string | undefined;
|
|
17185
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17089
17186
|
emits?: {
|
|
17090
17187
|
event: string;
|
|
17091
17188
|
description?: string | undefined;
|
|
@@ -17200,6 +17297,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17200
17297
|
ui?: Record<string, unknown> | undefined;
|
|
17201
17298
|
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
17299
|
description?: string | undefined;
|
|
17300
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17203
17301
|
emits?: {
|
|
17204
17302
|
event: string;
|
|
17205
17303
|
description?: string | undefined;
|
|
@@ -18429,12 +18527,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18429
18527
|
} | undefined;
|
|
18430
18528
|
}>, "many">>;
|
|
18431
18529
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
18530
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
18432
18531
|
}, "strip", z.ZodTypeAny, {
|
|
18433
18532
|
name: string;
|
|
18434
18533
|
scope: "instance" | "collection";
|
|
18435
18534
|
ui?: Record<string, unknown> | undefined;
|
|
18436
18535
|
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
18536
|
description?: string | undefined;
|
|
18537
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18438
18538
|
emits?: {
|
|
18439
18539
|
event: string;
|
|
18440
18540
|
description?: string | undefined;
|
|
@@ -18541,6 +18641,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18541
18641
|
ui?: Record<string, unknown> | undefined;
|
|
18542
18642
|
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
18643
|
description?: string | undefined;
|
|
18644
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18544
18645
|
emits?: {
|
|
18545
18646
|
event: string;
|
|
18546
18647
|
description?: string | undefined;
|
|
@@ -19107,12 +19208,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19107
19208
|
} | undefined;
|
|
19108
19209
|
}>, "many">>;
|
|
19109
19210
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
19211
|
+
config: z.ZodOptional<z.ZodType<Readonly<Record<string, ConfigFieldDeclaration>>, z.ZodTypeDef, Readonly<Record<string, ConfigFieldDeclaration>>>>;
|
|
19110
19212
|
}, "strip", z.ZodTypeAny, {
|
|
19111
19213
|
name: string;
|
|
19112
19214
|
scope: "instance" | "collection";
|
|
19113
19215
|
ui?: Record<string, unknown> | undefined;
|
|
19114
19216
|
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
19217
|
description?: string | undefined;
|
|
19218
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19116
19219
|
emits?: {
|
|
19117
19220
|
event: string;
|
|
19118
19221
|
description?: string | undefined;
|
|
@@ -19219,6 +19322,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19219
19322
|
ui?: Record<string, unknown> | undefined;
|
|
19220
19323
|
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
19324
|
description?: string | undefined;
|
|
19325
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19222
19326
|
emits?: {
|
|
19223
19327
|
event: string;
|
|
19224
19328
|
description?: string | undefined;
|
|
@@ -19331,6 +19435,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19331
19435
|
ui?: Record<string, unknown> | undefined;
|
|
19332
19436
|
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
19437
|
description?: string | undefined;
|
|
19438
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19334
19439
|
emits?: {
|
|
19335
19440
|
event: string;
|
|
19336
19441
|
description?: string | undefined;
|
|
@@ -19449,6 +19554,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19449
19554
|
ui?: Record<string, unknown> | undefined;
|
|
19450
19555
|
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
19556
|
description?: string | undefined;
|
|
19557
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19452
19558
|
emits?: {
|
|
19453
19559
|
event: string;
|
|
19454
19560
|
description?: string | undefined;
|
|
@@ -19847,6 +19953,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19847
19953
|
ui?: Record<string, unknown> | undefined;
|
|
19848
19954
|
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
19955
|
description?: string | undefined;
|
|
19956
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19850
19957
|
emits?: {
|
|
19851
19958
|
event: string;
|
|
19852
19959
|
description?: string | undefined;
|
|
@@ -19961,6 +20068,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19961
20068
|
ui?: Record<string, unknown> | undefined;
|
|
19962
20069
|
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
20070
|
description?: string | undefined;
|
|
20071
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19964
20072
|
emits?: {
|
|
19965
20073
|
event: string;
|
|
19966
20074
|
description?: string | undefined;
|
|
@@ -20245,6 +20353,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20245
20353
|
ui?: Record<string, unknown> | undefined;
|
|
20246
20354
|
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
20355
|
description?: string | undefined;
|
|
20356
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20248
20357
|
emits?: {
|
|
20249
20358
|
event: string;
|
|
20250
20359
|
description?: string | undefined;
|
|
@@ -20359,6 +20468,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20359
20468
|
ui?: Record<string, unknown> | undefined;
|
|
20360
20469
|
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
20470
|
description?: string | undefined;
|
|
20471
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20362
20472
|
emits?: {
|
|
20363
20473
|
event: string;
|
|
20364
20474
|
description?: string | undefined;
|
|
@@ -20821,6 +20931,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20821
20931
|
ui?: Record<string, unknown> | undefined;
|
|
20822
20932
|
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
20933
|
description?: string | undefined;
|
|
20934
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20824
20935
|
emits?: {
|
|
20825
20936
|
event: string;
|
|
20826
20937
|
description?: string | undefined;
|
|
@@ -20935,6 +21046,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20935
21046
|
ui?: Record<string, unknown> | undefined;
|
|
20936
21047
|
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
21048
|
description?: string | undefined;
|
|
21049
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20938
21050
|
emits?: {
|
|
20939
21051
|
event: string;
|
|
20940
21052
|
description?: string | undefined;
|
|
@@ -21308,6 +21420,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21308
21420
|
ui?: Record<string, unknown> | undefined;
|
|
21309
21421
|
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
21422
|
description?: string | undefined;
|
|
21423
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21311
21424
|
emits?: {
|
|
21312
21425
|
event: string;
|
|
21313
21426
|
description?: string | undefined;
|
|
@@ -21422,6 +21535,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21422
21535
|
ui?: Record<string, unknown> | undefined;
|
|
21423
21536
|
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
21537
|
description?: string | undefined;
|
|
21538
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21425
21539
|
emits?: {
|
|
21426
21540
|
event: string;
|
|
21427
21541
|
description?: string | undefined;
|
|
@@ -21842,6 +21956,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21842
21956
|
ui?: Record<string, unknown> | undefined;
|
|
21843
21957
|
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
21958
|
description?: string | undefined;
|
|
21959
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21845
21960
|
emits?: {
|
|
21846
21961
|
event: string;
|
|
21847
21962
|
description?: string | undefined;
|
|
@@ -21956,6 +22071,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21956
22071
|
ui?: Record<string, unknown> | undefined;
|
|
21957
22072
|
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
22073
|
description?: string | undefined;
|
|
22074
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21959
22075
|
emits?: {
|
|
21960
22076
|
event: string;
|
|
21961
22077
|
description?: string | undefined;
|
|
@@ -22329,6 +22445,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22329
22445
|
ui?: Record<string, unknown> | undefined;
|
|
22330
22446
|
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
22447
|
description?: string | undefined;
|
|
22448
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22332
22449
|
emits?: {
|
|
22333
22450
|
event: string;
|
|
22334
22451
|
description?: string | undefined;
|
|
@@ -22443,6 +22560,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22443
22560
|
ui?: Record<string, unknown> | undefined;
|
|
22444
22561
|
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
22562
|
description?: string | undefined;
|
|
22563
|
+
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22446
22564
|
emits?: {
|
|
22447
22565
|
event: string;
|
|
22448
22566
|
description?: string | undefined;
|
|
@@ -22769,4 +22887,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22769
22887
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
22770
22888
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
22771
22889
|
|
|
22772
|
-
export { type
|
|
22890
|
+
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 };
|