@almadar/core 7.21.0 → 7.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +2 -2
- package/dist/builders.js +1 -0
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-Cvk12C0p.d.ts → compose-behaviors-CHAMivlZ.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +7 -1
- package/dist/domain-language/index.js +1 -0
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/{schema-DRDVNvPf.d.ts → schema-BVni4uNf.d.ts} +85 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +1 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3261,6 +3261,16 @@ interface Trait {
|
|
|
3261
3261
|
description?: string;
|
|
3262
3262
|
description_visual_prompt?: string;
|
|
3263
3263
|
category?: TraitCategory;
|
|
3264
|
+
/**
|
|
3265
|
+
* Author-supplied capability tags lifted from the `.lolo` trait header's
|
|
3266
|
+
* bracket list. Anything beyond the known scope tokens (`instance` /
|
|
3267
|
+
* `collection`) and the first category identifier accumulates here.
|
|
3268
|
+
* Free-form strings — the lolo parser does not validate them against a
|
|
3269
|
+
* known set. The Phase 4 translator overlay matches rules to traits by
|
|
3270
|
+
* exact set membership against this list. Empty when no capabilities
|
|
3271
|
+
* were declared. See `docs/Almadar_Domain_Language.md` Phase 3.
|
|
3272
|
+
*/
|
|
3273
|
+
capabilities?: string[];
|
|
3264
3274
|
/**
|
|
3265
3275
|
* Instance or collection scope. Required in V2: every trait operates on
|
|
3266
3276
|
* either a single record (`instance`) or a group (`collection`). Drives
|
|
@@ -3335,6 +3345,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3335
3345
|
description: z.ZodOptional<z.ZodString>;
|
|
3336
3346
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
3337
3347
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
3348
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3338
3349
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
3339
3350
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
3340
3351
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -3830,6 +3841,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3830
3841
|
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;
|
|
3831
3842
|
description?: string | undefined;
|
|
3832
3843
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
3844
|
+
capabilities?: string[] | undefined;
|
|
3833
3845
|
emits?: {
|
|
3834
3846
|
event: string;
|
|
3835
3847
|
description?: string | undefined;
|
|
@@ -3960,6 +3972,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3960
3972
|
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;
|
|
3961
3973
|
description?: string | undefined;
|
|
3962
3974
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
3975
|
+
capabilities?: string[] | undefined;
|
|
3963
3976
|
emits?: {
|
|
3964
3977
|
event: string;
|
|
3965
3978
|
description?: string | undefined;
|
|
@@ -4107,6 +4120,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4107
4120
|
description: z.ZodOptional<z.ZodString>;
|
|
4108
4121
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
4109
4122
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
4123
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4110
4124
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
4111
4125
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
4112
4126
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4602,6 +4616,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4602
4616
|
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;
|
|
4603
4617
|
description?: string | undefined;
|
|
4604
4618
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
4619
|
+
capabilities?: string[] | undefined;
|
|
4605
4620
|
emits?: {
|
|
4606
4621
|
event: string;
|
|
4607
4622
|
description?: string | undefined;
|
|
@@ -4732,6 +4747,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4732
4747
|
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;
|
|
4733
4748
|
description?: string | undefined;
|
|
4734
4749
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
4750
|
+
capabilities?: string[] | undefined;
|
|
4735
4751
|
emits?: {
|
|
4736
4752
|
event: string;
|
|
4737
4753
|
description?: string | undefined;
|
|
@@ -4949,6 +4965,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4949
4965
|
description: z.ZodOptional<z.ZodString>;
|
|
4950
4966
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
4951
4967
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
4968
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4952
4969
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
4953
4970
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
4954
4971
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5444,6 +5461,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5444
5461
|
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;
|
|
5445
5462
|
description?: string | undefined;
|
|
5446
5463
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
5464
|
+
capabilities?: string[] | undefined;
|
|
5447
5465
|
emits?: {
|
|
5448
5466
|
event: string;
|
|
5449
5467
|
description?: string | undefined;
|
|
@@ -5574,6 +5592,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5574
5592
|
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;
|
|
5575
5593
|
description?: string | undefined;
|
|
5576
5594
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
5595
|
+
capabilities?: string[] | undefined;
|
|
5577
5596
|
emits?: {
|
|
5578
5597
|
event: string;
|
|
5579
5598
|
description?: string | undefined;
|
|
@@ -7020,6 +7039,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7020
7039
|
description: z.ZodOptional<z.ZodString>;
|
|
7021
7040
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
7022
7041
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
7042
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7023
7043
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
7024
7044
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
7025
7045
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7498,6 +7518,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7498
7518
|
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;
|
|
7499
7519
|
description?: string | undefined;
|
|
7500
7520
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7521
|
+
capabilities?: string[] | undefined;
|
|
7501
7522
|
emits?: {
|
|
7502
7523
|
event: string;
|
|
7503
7524
|
description?: string | undefined;
|
|
@@ -7628,6 +7649,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7628
7649
|
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;
|
|
7629
7650
|
description?: string | undefined;
|
|
7630
7651
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7652
|
+
capabilities?: string[] | undefined;
|
|
7631
7653
|
emits?: {
|
|
7632
7654
|
event: string;
|
|
7633
7655
|
description?: string | undefined;
|
|
@@ -7764,6 +7786,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7764
7786
|
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;
|
|
7765
7787
|
description?: string | undefined;
|
|
7766
7788
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7789
|
+
capabilities?: string[] | undefined;
|
|
7767
7790
|
emits?: {
|
|
7768
7791
|
event: string;
|
|
7769
7792
|
description?: string | undefined;
|
|
@@ -7906,6 +7929,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
7906
7929
|
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;
|
|
7907
7930
|
description?: string | undefined;
|
|
7908
7931
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
7932
|
+
capabilities?: string[] | undefined;
|
|
7909
7933
|
emits?: {
|
|
7910
7934
|
event: string;
|
|
7911
7935
|
description?: string | undefined;
|
|
@@ -8109,6 +8133,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8109
8133
|
description: z.ZodOptional<z.ZodString>;
|
|
8110
8134
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
8111
8135
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
8136
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8112
8137
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
8113
8138
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
8114
8139
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -8587,6 +8612,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8587
8612
|
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;
|
|
8588
8613
|
description?: string | undefined;
|
|
8589
8614
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
8615
|
+
capabilities?: string[] | undefined;
|
|
8590
8616
|
emits?: {
|
|
8591
8617
|
event: string;
|
|
8592
8618
|
description?: string | undefined;
|
|
@@ -8717,6 +8743,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8717
8743
|
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;
|
|
8718
8744
|
description?: string | undefined;
|
|
8719
8745
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
8746
|
+
capabilities?: string[] | undefined;
|
|
8720
8747
|
emits?: {
|
|
8721
8748
|
event: string;
|
|
8722
8749
|
description?: string | undefined;
|
|
@@ -8853,6 +8880,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8853
8880
|
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;
|
|
8854
8881
|
description?: string | undefined;
|
|
8855
8882
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
8883
|
+
capabilities?: string[] | undefined;
|
|
8856
8884
|
emits?: {
|
|
8857
8885
|
event: string;
|
|
8858
8886
|
description?: string | undefined;
|
|
@@ -8995,6 +9023,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8995
9023
|
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;
|
|
8996
9024
|
description?: string | undefined;
|
|
8997
9025
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
9026
|
+
capabilities?: string[] | undefined;
|
|
8998
9027
|
emits?: {
|
|
8999
9028
|
event: string;
|
|
9000
9029
|
description?: string | undefined;
|
|
@@ -9871,6 +9900,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9871
9900
|
description: z.ZodOptional<z.ZodString>;
|
|
9872
9901
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
9873
9902
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
9903
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9874
9904
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
9875
9905
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
9876
9906
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -10349,6 +10379,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10349
10379
|
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;
|
|
10350
10380
|
description?: string | undefined;
|
|
10351
10381
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10382
|
+
capabilities?: string[] | undefined;
|
|
10352
10383
|
emits?: {
|
|
10353
10384
|
event: string;
|
|
10354
10385
|
description?: string | undefined;
|
|
@@ -10479,6 +10510,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10479
10510
|
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;
|
|
10480
10511
|
description?: string | undefined;
|
|
10481
10512
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
10513
|
+
capabilities?: string[] | undefined;
|
|
10482
10514
|
emits?: {
|
|
10483
10515
|
event: string;
|
|
10484
10516
|
description?: string | undefined;
|
|
@@ -10675,6 +10707,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10675
10707
|
description: z.ZodOptional<z.ZodString>;
|
|
10676
10708
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
10677
10709
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
10710
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10678
10711
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
10679
10712
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
10680
10713
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -11153,6 +11186,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11153
11186
|
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;
|
|
11154
11187
|
description?: string | undefined;
|
|
11155
11188
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11189
|
+
capabilities?: string[] | undefined;
|
|
11156
11190
|
emits?: {
|
|
11157
11191
|
event: string;
|
|
11158
11192
|
description?: string | undefined;
|
|
@@ -11283,6 +11317,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11283
11317
|
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;
|
|
11284
11318
|
description?: string | undefined;
|
|
11285
11319
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11320
|
+
capabilities?: string[] | undefined;
|
|
11286
11321
|
emits?: {
|
|
11287
11322
|
event: string;
|
|
11288
11323
|
description?: string | undefined;
|
|
@@ -11419,6 +11454,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11419
11454
|
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;
|
|
11420
11455
|
description?: string | undefined;
|
|
11421
11456
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11457
|
+
capabilities?: string[] | undefined;
|
|
11422
11458
|
emits?: {
|
|
11423
11459
|
event: string;
|
|
11424
11460
|
description?: string | undefined;
|
|
@@ -11561,6 +11597,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11561
11597
|
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;
|
|
11562
11598
|
description?: string | undefined;
|
|
11563
11599
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
11600
|
+
capabilities?: string[] | undefined;
|
|
11564
11601
|
emits?: {
|
|
11565
11602
|
event: string;
|
|
11566
11603
|
description?: string | undefined;
|
|
@@ -11983,6 +12020,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11983
12020
|
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;
|
|
11984
12021
|
description?: string | undefined;
|
|
11985
12022
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12023
|
+
capabilities?: string[] | undefined;
|
|
11986
12024
|
emits?: {
|
|
11987
12025
|
event: string;
|
|
11988
12026
|
description?: string | undefined;
|
|
@@ -12121,6 +12159,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
12121
12159
|
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;
|
|
12122
12160
|
description?: string | undefined;
|
|
12123
12161
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12162
|
+
capabilities?: string[] | undefined;
|
|
12124
12163
|
emits?: {
|
|
12125
12164
|
event: string;
|
|
12126
12165
|
description?: string | undefined;
|
|
@@ -12429,6 +12468,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
12429
12468
|
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;
|
|
12430
12469
|
description?: string | undefined;
|
|
12431
12470
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12471
|
+
capabilities?: string[] | undefined;
|
|
12432
12472
|
emits?: {
|
|
12433
12473
|
event: string;
|
|
12434
12474
|
description?: string | undefined;
|
|
@@ -12567,6 +12607,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
12567
12607
|
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;
|
|
12568
12608
|
description?: string | undefined;
|
|
12569
12609
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
12610
|
+
capabilities?: string[] | undefined;
|
|
12570
12611
|
emits?: {
|
|
12571
12612
|
event: string;
|
|
12572
12613
|
description?: string | undefined;
|
|
@@ -13178,6 +13219,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13178
13219
|
description: z.ZodOptional<z.ZodString>;
|
|
13179
13220
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
13180
13221
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
13222
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13181
13223
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
13182
13224
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
13183
13225
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -13656,6 +13698,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13656
13698
|
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;
|
|
13657
13699
|
description?: string | undefined;
|
|
13658
13700
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13701
|
+
capabilities?: string[] | undefined;
|
|
13659
13702
|
emits?: {
|
|
13660
13703
|
event: string;
|
|
13661
13704
|
description?: string | undefined;
|
|
@@ -13786,6 +13829,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13786
13829
|
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;
|
|
13787
13830
|
description?: string | undefined;
|
|
13788
13831
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
13832
|
+
capabilities?: string[] | undefined;
|
|
13789
13833
|
emits?: {
|
|
13790
13834
|
event: string;
|
|
13791
13835
|
description?: string | undefined;
|
|
@@ -13982,6 +14026,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13982
14026
|
description: z.ZodOptional<z.ZodString>;
|
|
13983
14027
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
13984
14028
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
14029
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13985
14030
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
13986
14031
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
13987
14032
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14460,6 +14505,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14460
14505
|
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;
|
|
14461
14506
|
description?: string | undefined;
|
|
14462
14507
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14508
|
+
capabilities?: string[] | undefined;
|
|
14463
14509
|
emits?: {
|
|
14464
14510
|
event: string;
|
|
14465
14511
|
description?: string | undefined;
|
|
@@ -14590,6 +14636,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14590
14636
|
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;
|
|
14591
14637
|
description?: string | undefined;
|
|
14592
14638
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14639
|
+
capabilities?: string[] | undefined;
|
|
14593
14640
|
emits?: {
|
|
14594
14641
|
event: string;
|
|
14595
14642
|
description?: string | undefined;
|
|
@@ -14726,6 +14773,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14726
14773
|
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;
|
|
14727
14774
|
description?: string | undefined;
|
|
14728
14775
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14776
|
+
capabilities?: string[] | undefined;
|
|
14729
14777
|
emits?: {
|
|
14730
14778
|
event: string;
|
|
14731
14779
|
description?: string | undefined;
|
|
@@ -14868,6 +14916,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14868
14916
|
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;
|
|
14869
14917
|
description?: string | undefined;
|
|
14870
14918
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
14919
|
+
capabilities?: string[] | undefined;
|
|
14871
14920
|
emits?: {
|
|
14872
14921
|
event: string;
|
|
14873
14922
|
description?: string | undefined;
|
|
@@ -15290,6 +15339,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
15290
15339
|
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;
|
|
15291
15340
|
description?: string | undefined;
|
|
15292
15341
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15342
|
+
capabilities?: string[] | undefined;
|
|
15293
15343
|
emits?: {
|
|
15294
15344
|
event: string;
|
|
15295
15345
|
description?: string | undefined;
|
|
@@ -15428,6 +15478,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
15428
15478
|
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;
|
|
15429
15479
|
description?: string | undefined;
|
|
15430
15480
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15481
|
+
capabilities?: string[] | undefined;
|
|
15431
15482
|
emits?: {
|
|
15432
15483
|
event: string;
|
|
15433
15484
|
description?: string | undefined;
|
|
@@ -15736,6 +15787,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
15736
15787
|
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;
|
|
15737
15788
|
description?: string | undefined;
|
|
15738
15789
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15790
|
+
capabilities?: string[] | undefined;
|
|
15739
15791
|
emits?: {
|
|
15740
15792
|
event: string;
|
|
15741
15793
|
description?: string | undefined;
|
|
@@ -15874,6 +15926,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
15874
15926
|
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;
|
|
15875
15927
|
description?: string | undefined;
|
|
15876
15928
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
15929
|
+
capabilities?: string[] | undefined;
|
|
15877
15930
|
emits?: {
|
|
15878
15931
|
event: string;
|
|
15879
15932
|
description?: string | undefined;
|
|
@@ -16492,6 +16545,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16492
16545
|
description: z.ZodOptional<z.ZodString>;
|
|
16493
16546
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
16494
16547
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
16548
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16495
16549
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
16496
16550
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
16497
16551
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -16970,6 +17024,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16970
17024
|
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;
|
|
16971
17025
|
description?: string | undefined;
|
|
16972
17026
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17027
|
+
capabilities?: string[] | undefined;
|
|
16973
17028
|
emits?: {
|
|
16974
17029
|
event: string;
|
|
16975
17030
|
description?: string | undefined;
|
|
@@ -17100,6 +17155,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17100
17155
|
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;
|
|
17101
17156
|
description?: string | undefined;
|
|
17102
17157
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17158
|
+
capabilities?: string[] | undefined;
|
|
17103
17159
|
emits?: {
|
|
17104
17160
|
event: string;
|
|
17105
17161
|
description?: string | undefined;
|
|
@@ -17296,6 +17352,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17296
17352
|
description: z.ZodOptional<z.ZodString>;
|
|
17297
17353
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
17298
17354
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
17355
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17299
17356
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
17300
17357
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
17301
17358
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -17774,6 +17831,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17774
17831
|
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;
|
|
17775
17832
|
description?: string | undefined;
|
|
17776
17833
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17834
|
+
capabilities?: string[] | undefined;
|
|
17777
17835
|
emits?: {
|
|
17778
17836
|
event: string;
|
|
17779
17837
|
description?: string | undefined;
|
|
@@ -17904,6 +17962,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17904
17962
|
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;
|
|
17905
17963
|
description?: string | undefined;
|
|
17906
17964
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
17965
|
+
capabilities?: string[] | undefined;
|
|
17907
17966
|
emits?: {
|
|
17908
17967
|
event: string;
|
|
17909
17968
|
description?: string | undefined;
|
|
@@ -18040,6 +18099,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
18040
18099
|
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;
|
|
18041
18100
|
description?: string | undefined;
|
|
18042
18101
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18102
|
+
capabilities?: string[] | undefined;
|
|
18043
18103
|
emits?: {
|
|
18044
18104
|
event: string;
|
|
18045
18105
|
description?: string | undefined;
|
|
@@ -18182,6 +18242,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
18182
18242
|
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;
|
|
18183
18243
|
description?: string | undefined;
|
|
18184
18244
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18245
|
+
capabilities?: string[] | undefined;
|
|
18185
18246
|
emits?: {
|
|
18186
18247
|
event: string;
|
|
18187
18248
|
description?: string | undefined;
|
|
@@ -18604,6 +18665,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
18604
18665
|
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;
|
|
18605
18666
|
description?: string | undefined;
|
|
18606
18667
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18668
|
+
capabilities?: string[] | undefined;
|
|
18607
18669
|
emits?: {
|
|
18608
18670
|
event: string;
|
|
18609
18671
|
description?: string | undefined;
|
|
@@ -18742,6 +18804,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
18742
18804
|
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;
|
|
18743
18805
|
description?: string | undefined;
|
|
18744
18806
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
18807
|
+
capabilities?: string[] | undefined;
|
|
18745
18808
|
emits?: {
|
|
18746
18809
|
event: string;
|
|
18747
18810
|
description?: string | undefined;
|
|
@@ -19050,6 +19113,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
19050
19113
|
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;
|
|
19051
19114
|
description?: string | undefined;
|
|
19052
19115
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19116
|
+
capabilities?: string[] | undefined;
|
|
19053
19117
|
emits?: {
|
|
19054
19118
|
event: string;
|
|
19055
19119
|
description?: string | undefined;
|
|
@@ -19188,6 +19252,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
19188
19252
|
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;
|
|
19189
19253
|
description?: string | undefined;
|
|
19190
19254
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
19255
|
+
capabilities?: string[] | undefined;
|
|
19191
19256
|
emits?: {
|
|
19192
19257
|
event: string;
|
|
19193
19258
|
description?: string | undefined;
|
|
@@ -20056,6 +20121,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20056
20121
|
description: z.ZodOptional<z.ZodString>;
|
|
20057
20122
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
20058
20123
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
20124
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20059
20125
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
20060
20126
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
20061
20127
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -20534,6 +20600,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20534
20600
|
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;
|
|
20535
20601
|
description?: string | undefined;
|
|
20536
20602
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20603
|
+
capabilities?: string[] | undefined;
|
|
20537
20604
|
emits?: {
|
|
20538
20605
|
event: string;
|
|
20539
20606
|
description?: string | undefined;
|
|
@@ -20664,6 +20731,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20664
20731
|
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;
|
|
20665
20732
|
description?: string | undefined;
|
|
20666
20733
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
20734
|
+
capabilities?: string[] | undefined;
|
|
20667
20735
|
emits?: {
|
|
20668
20736
|
event: string;
|
|
20669
20737
|
description?: string | undefined;
|
|
@@ -20860,6 +20928,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20860
20928
|
description: z.ZodOptional<z.ZodString>;
|
|
20861
20929
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
20862
20930
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
20931
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
20863
20932
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
20864
20933
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
20865
20934
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -21338,6 +21407,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21338
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;
|
|
21339
21408
|
description?: string | undefined;
|
|
21340
21409
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21410
|
+
capabilities?: string[] | undefined;
|
|
21341
21411
|
emits?: {
|
|
21342
21412
|
event: string;
|
|
21343
21413
|
description?: string | undefined;
|
|
@@ -21468,6 +21538,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21468
21538
|
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;
|
|
21469
21539
|
description?: string | undefined;
|
|
21470
21540
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21541
|
+
capabilities?: string[] | undefined;
|
|
21471
21542
|
emits?: {
|
|
21472
21543
|
event: string;
|
|
21473
21544
|
description?: string | undefined;
|
|
@@ -21604,6 +21675,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21604
21675
|
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;
|
|
21605
21676
|
description?: string | undefined;
|
|
21606
21677
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21678
|
+
capabilities?: string[] | undefined;
|
|
21607
21679
|
emits?: {
|
|
21608
21680
|
event: string;
|
|
21609
21681
|
description?: string | undefined;
|
|
@@ -21746,6 +21818,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21746
21818
|
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;
|
|
21747
21819
|
description?: string | undefined;
|
|
21748
21820
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
21821
|
+
capabilities?: string[] | undefined;
|
|
21749
21822
|
emits?: {
|
|
21750
21823
|
event: string;
|
|
21751
21824
|
description?: string | undefined;
|
|
@@ -22168,6 +22241,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
22168
22241
|
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;
|
|
22169
22242
|
description?: string | undefined;
|
|
22170
22243
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22244
|
+
capabilities?: string[] | undefined;
|
|
22171
22245
|
emits?: {
|
|
22172
22246
|
event: string;
|
|
22173
22247
|
description?: string | undefined;
|
|
@@ -22306,6 +22380,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
22306
22380
|
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;
|
|
22307
22381
|
description?: string | undefined;
|
|
22308
22382
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22383
|
+
capabilities?: string[] | undefined;
|
|
22309
22384
|
emits?: {
|
|
22310
22385
|
event: string;
|
|
22311
22386
|
description?: string | undefined;
|
|
@@ -22614,6 +22689,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
22614
22689
|
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;
|
|
22615
22690
|
description?: string | undefined;
|
|
22616
22691
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22692
|
+
capabilities?: string[] | undefined;
|
|
22617
22693
|
emits?: {
|
|
22618
22694
|
event: string;
|
|
22619
22695
|
description?: string | undefined;
|
|
@@ -22752,6 +22828,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
22752
22828
|
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;
|
|
22753
22829
|
description?: string | undefined;
|
|
22754
22830
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
22831
|
+
capabilities?: string[] | undefined;
|
|
22755
22832
|
emits?: {
|
|
22756
22833
|
event: string;
|
|
22757
22834
|
description?: string | undefined;
|
|
@@ -23238,6 +23315,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
23238
23315
|
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;
|
|
23239
23316
|
description?: string | undefined;
|
|
23240
23317
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
23318
|
+
capabilities?: string[] | undefined;
|
|
23241
23319
|
emits?: {
|
|
23242
23320
|
event: string;
|
|
23243
23321
|
description?: string | undefined;
|
|
@@ -23376,6 +23454,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
23376
23454
|
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;
|
|
23377
23455
|
description?: string | undefined;
|
|
23378
23456
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
23457
|
+
capabilities?: string[] | undefined;
|
|
23379
23458
|
emits?: {
|
|
23380
23459
|
event: string;
|
|
23381
23460
|
description?: string | undefined;
|
|
@@ -23774,6 +23853,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
23774
23853
|
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;
|
|
23775
23854
|
description?: string | undefined;
|
|
23776
23855
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
23856
|
+
capabilities?: string[] | undefined;
|
|
23777
23857
|
emits?: {
|
|
23778
23858
|
event: string;
|
|
23779
23859
|
description?: string | undefined;
|
|
@@ -23912,6 +23992,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
23912
23992
|
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;
|
|
23913
23993
|
description?: string | undefined;
|
|
23914
23994
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
23995
|
+
capabilities?: string[] | undefined;
|
|
23915
23996
|
emits?: {
|
|
23916
23997
|
event: string;
|
|
23917
23998
|
description?: string | undefined;
|
|
@@ -24375,6 +24456,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
24375
24456
|
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;
|
|
24376
24457
|
description?: string | undefined;
|
|
24377
24458
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
24459
|
+
capabilities?: string[] | undefined;
|
|
24378
24460
|
emits?: {
|
|
24379
24461
|
event: string;
|
|
24380
24462
|
description?: string | undefined;
|
|
@@ -24513,6 +24595,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
24513
24595
|
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;
|
|
24514
24596
|
description?: string | undefined;
|
|
24515
24597
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
24598
|
+
capabilities?: string[] | undefined;
|
|
24516
24599
|
emits?: {
|
|
24517
24600
|
event: string;
|
|
24518
24601
|
description?: string | undefined;
|
|
@@ -24911,6 +24994,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
24911
24994
|
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;
|
|
24912
24995
|
description?: string | undefined;
|
|
24913
24996
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
24997
|
+
capabilities?: string[] | undefined;
|
|
24914
24998
|
emits?: {
|
|
24915
24999
|
event: string;
|
|
24916
25000
|
description?: string | undefined;
|
|
@@ -25049,6 +25133,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
25049
25133
|
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;
|
|
25050
25134
|
description?: string | undefined;
|
|
25051
25135
|
config?: Readonly<Record<string, ConfigFieldDeclaration>> | undefined;
|
|
25136
|
+
capabilities?: string[] | undefined;
|
|
25052
25137
|
emits?: {
|
|
25053
25138
|
event: string;
|
|
25054
25139
|
description?: string | undefined;
|