@almadar/core 4.10.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +2 -2
- package/dist/builders.js +1 -1
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-Dg_ADhIl.d.ts → compose-behaviors-CB9mqxU3.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +3 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/{schema-DI8_HaRx.d.ts → schema-CfW0RBck.d.ts} +81 -78
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +1 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3349,10 +3349,13 @@ interface Trait {
|
|
|
3349
3349
|
description_visual_prompt?: string;
|
|
3350
3350
|
category?: TraitCategory;
|
|
3351
3351
|
/**
|
|
3352
|
-
* Instance or collection scope.
|
|
3353
|
-
*
|
|
3352
|
+
* Instance or collection scope. Required in V2: every trait operates on
|
|
3353
|
+
* either a single record (`instance`) or a group (`collection`). Drives
|
|
3354
|
+
* payload-inference rules for emits declared via `type X = Event<T>` and
|
|
3355
|
+
* shapes the runtime's binding semantics. Authored in `.lolo` as the
|
|
3356
|
+
* `[instance]` / `[collection]` modifier on the trait header.
|
|
3354
3357
|
*/
|
|
3355
|
-
scope
|
|
3358
|
+
scope: TraitScope;
|
|
3356
3359
|
/**
|
|
3357
3360
|
* The entity this trait is linked to.
|
|
3358
3361
|
* Required for inline trait definitions within an orbital.
|
|
@@ -3381,7 +3384,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3381
3384
|
description: z.ZodOptional<z.ZodString>;
|
|
3382
3385
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
3383
3386
|
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"]>>;
|
|
3384
|
-
scope: z.
|
|
3387
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
3385
3388
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
3386
3389
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3387
3390
|
name: z.ZodString;
|
|
@@ -3728,6 +3731,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3728
3731
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3729
3732
|
}, "strip", z.ZodTypeAny, {
|
|
3730
3733
|
name: string;
|
|
3734
|
+
scope: "instance" | "collection";
|
|
3731
3735
|
ui?: Record<string, unknown> | undefined;
|
|
3732
3736
|
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;
|
|
3733
3737
|
description?: string | undefined;
|
|
@@ -3744,7 +3748,6 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3744
3748
|
}[] | undefined;
|
|
3745
3749
|
scope?: "internal" | "external" | undefined;
|
|
3746
3750
|
}[] | undefined;
|
|
3747
|
-
scope?: "instance" | "collection" | undefined;
|
|
3748
3751
|
listens?: {
|
|
3749
3752
|
event: string;
|
|
3750
3753
|
triggers: string;
|
|
@@ -3824,6 +3827,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3824
3827
|
}[] | undefined;
|
|
3825
3828
|
}, {
|
|
3826
3829
|
name: string;
|
|
3830
|
+
scope: "instance" | "collection";
|
|
3827
3831
|
ui?: Record<string, unknown> | undefined;
|
|
3828
3832
|
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;
|
|
3829
3833
|
description?: string | undefined;
|
|
@@ -3840,7 +3844,6 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3840
3844
|
}[] | undefined;
|
|
3841
3845
|
scope?: "internal" | "external" | undefined;
|
|
3842
3846
|
}[] | undefined;
|
|
3843
|
-
scope?: "instance" | "collection" | undefined;
|
|
3844
3847
|
listens?: {
|
|
3845
3848
|
event: string;
|
|
3846
3849
|
triggers: string;
|
|
@@ -3942,7 +3945,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3942
3945
|
description: z.ZodOptional<z.ZodString>;
|
|
3943
3946
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
3944
3947
|
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"]>>;
|
|
3945
|
-
scope: z.
|
|
3948
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
3946
3949
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
3947
3950
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3948
3951
|
name: z.ZodString;
|
|
@@ -4289,6 +4292,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4289
4292
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4290
4293
|
}, "strip", z.ZodTypeAny, {
|
|
4291
4294
|
name: string;
|
|
4295
|
+
scope: "instance" | "collection";
|
|
4292
4296
|
ui?: Record<string, unknown> | undefined;
|
|
4293
4297
|
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;
|
|
4294
4298
|
description?: string | undefined;
|
|
@@ -4305,7 +4309,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4305
4309
|
}[] | undefined;
|
|
4306
4310
|
scope?: "internal" | "external" | undefined;
|
|
4307
4311
|
}[] | undefined;
|
|
4308
|
-
scope?: "instance" | "collection" | undefined;
|
|
4309
4312
|
listens?: {
|
|
4310
4313
|
event: string;
|
|
4311
4314
|
triggers: string;
|
|
@@ -4385,6 +4388,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4385
4388
|
}[] | undefined;
|
|
4386
4389
|
}, {
|
|
4387
4390
|
name: string;
|
|
4391
|
+
scope: "instance" | "collection";
|
|
4388
4392
|
ui?: Record<string, unknown> | undefined;
|
|
4389
4393
|
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;
|
|
4390
4394
|
description?: string | undefined;
|
|
@@ -4401,7 +4405,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4401
4405
|
}[] | undefined;
|
|
4402
4406
|
scope?: "internal" | "external" | undefined;
|
|
4403
4407
|
}[] | undefined;
|
|
4404
|
-
scope?: "instance" | "collection" | undefined;
|
|
4405
4408
|
listens?: {
|
|
4406
4409
|
event: string;
|
|
4407
4410
|
triggers: string;
|
|
@@ -4573,7 +4576,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4573
4576
|
description: z.ZodOptional<z.ZodString>;
|
|
4574
4577
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
4575
4578
|
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"]>>;
|
|
4576
|
-
scope: z.
|
|
4579
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
4577
4580
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
4578
4581
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4579
4582
|
name: z.ZodString;
|
|
@@ -4920,6 +4923,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4920
4923
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4921
4924
|
}, "strip", z.ZodTypeAny, {
|
|
4922
4925
|
name: string;
|
|
4926
|
+
scope: "instance" | "collection";
|
|
4923
4927
|
ui?: Record<string, unknown> | undefined;
|
|
4924
4928
|
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;
|
|
4925
4929
|
description?: string | undefined;
|
|
@@ -4936,7 +4940,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4936
4940
|
}[] | undefined;
|
|
4937
4941
|
scope?: "internal" | "external" | undefined;
|
|
4938
4942
|
}[] | undefined;
|
|
4939
|
-
scope?: "instance" | "collection" | undefined;
|
|
4940
4943
|
listens?: {
|
|
4941
4944
|
event: string;
|
|
4942
4945
|
triggers: string;
|
|
@@ -5016,6 +5019,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5016
5019
|
}[] | undefined;
|
|
5017
5020
|
}, {
|
|
5018
5021
|
name: string;
|
|
5022
|
+
scope: "instance" | "collection";
|
|
5019
5023
|
ui?: Record<string, unknown> | undefined;
|
|
5020
5024
|
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;
|
|
5021
5025
|
description?: string | undefined;
|
|
@@ -5032,7 +5036,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5032
5036
|
}[] | undefined;
|
|
5033
5037
|
scope?: "internal" | "external" | undefined;
|
|
5034
5038
|
}[] | undefined;
|
|
5035
|
-
scope?: "instance" | "collection" | undefined;
|
|
5036
5039
|
listens?: {
|
|
5037
5040
|
event: string;
|
|
5038
5041
|
triggers: string;
|
|
@@ -6235,7 +6238,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6235
6238
|
description: z.ZodOptional<z.ZodString>;
|
|
6236
6239
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
6237
6240
|
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"]>>;
|
|
6238
|
-
scope: z.
|
|
6241
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
6239
6242
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
6240
6243
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6241
6244
|
name: z.ZodString;
|
|
@@ -6582,6 +6585,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6582
6585
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6583
6586
|
}, "strip", z.ZodTypeAny, {
|
|
6584
6587
|
name: string;
|
|
6588
|
+
scope: "instance" | "collection";
|
|
6585
6589
|
ui?: Record<string, unknown> | undefined;
|
|
6586
6590
|
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;
|
|
6587
6591
|
description?: string | undefined;
|
|
@@ -6598,7 +6602,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6598
6602
|
}[] | undefined;
|
|
6599
6603
|
scope?: "internal" | "external" | undefined;
|
|
6600
6604
|
}[] | undefined;
|
|
6601
|
-
scope?: "instance" | "collection" | undefined;
|
|
6602
6605
|
listens?: {
|
|
6603
6606
|
event: string;
|
|
6604
6607
|
triggers: string;
|
|
@@ -6678,6 +6681,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6678
6681
|
}[] | undefined;
|
|
6679
6682
|
}, {
|
|
6680
6683
|
name: string;
|
|
6684
|
+
scope: "instance" | "collection";
|
|
6681
6685
|
ui?: Record<string, unknown> | undefined;
|
|
6682
6686
|
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;
|
|
6683
6687
|
description?: string | undefined;
|
|
@@ -6694,7 +6698,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6694
6698
|
}[] | undefined;
|
|
6695
6699
|
scope?: "internal" | "external" | undefined;
|
|
6696
6700
|
}[] | undefined;
|
|
6697
|
-
scope?: "instance" | "collection" | undefined;
|
|
6698
6701
|
listens?: {
|
|
6699
6702
|
event: string;
|
|
6700
6703
|
triggers: string;
|
|
@@ -6779,6 +6782,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6779
6782
|
linkedEntity?: string | undefined;
|
|
6780
6783
|
traits?: (string | {
|
|
6781
6784
|
name: string;
|
|
6785
|
+
scope: "instance" | "collection";
|
|
6782
6786
|
ui?: Record<string, unknown> | undefined;
|
|
6783
6787
|
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;
|
|
6784
6788
|
description?: string | undefined;
|
|
@@ -6795,7 +6799,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6795
6799
|
}[] | undefined;
|
|
6796
6800
|
scope?: "internal" | "external" | undefined;
|
|
6797
6801
|
}[] | undefined;
|
|
6798
|
-
scope?: "instance" | "collection" | undefined;
|
|
6799
6802
|
listens?: {
|
|
6800
6803
|
event: string;
|
|
6801
6804
|
triggers: string;
|
|
@@ -6887,6 +6890,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6887
6890
|
linkedEntity?: string | undefined;
|
|
6888
6891
|
traits?: (string | {
|
|
6889
6892
|
name: string;
|
|
6893
|
+
scope: "instance" | "collection";
|
|
6890
6894
|
ui?: Record<string, unknown> | undefined;
|
|
6891
6895
|
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;
|
|
6892
6896
|
description?: string | undefined;
|
|
@@ -6903,7 +6907,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6903
6907
|
}[] | undefined;
|
|
6904
6908
|
scope?: "internal" | "external" | undefined;
|
|
6905
6909
|
}[] | undefined;
|
|
6906
|
-
scope?: "instance" | "collection" | undefined;
|
|
6907
6910
|
listens?: {
|
|
6908
6911
|
event: string;
|
|
6909
6912
|
triggers: string;
|
|
@@ -7062,7 +7065,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7062
7065
|
description: z.ZodOptional<z.ZodString>;
|
|
7063
7066
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
7064
7067
|
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"]>>;
|
|
7065
|
-
scope: z.
|
|
7068
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
7066
7069
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
7067
7070
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7068
7071
|
name: z.ZodString;
|
|
@@ -7409,6 +7412,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7409
7412
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7410
7413
|
}, "strip", z.ZodTypeAny, {
|
|
7411
7414
|
name: string;
|
|
7415
|
+
scope: "instance" | "collection";
|
|
7412
7416
|
ui?: Record<string, unknown> | undefined;
|
|
7413
7417
|
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;
|
|
7414
7418
|
description?: string | undefined;
|
|
@@ -7425,7 +7429,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7425
7429
|
}[] | undefined;
|
|
7426
7430
|
scope?: "internal" | "external" | undefined;
|
|
7427
7431
|
}[] | undefined;
|
|
7428
|
-
scope?: "instance" | "collection" | undefined;
|
|
7429
7432
|
listens?: {
|
|
7430
7433
|
event: string;
|
|
7431
7434
|
triggers: string;
|
|
@@ -7505,6 +7508,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7505
7508
|
}[] | undefined;
|
|
7506
7509
|
}, {
|
|
7507
7510
|
name: string;
|
|
7511
|
+
scope: "instance" | "collection";
|
|
7508
7512
|
ui?: Record<string, unknown> | undefined;
|
|
7509
7513
|
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;
|
|
7510
7514
|
description?: string | undefined;
|
|
@@ -7521,7 +7525,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7521
7525
|
}[] | undefined;
|
|
7522
7526
|
scope?: "internal" | "external" | undefined;
|
|
7523
7527
|
}[] | undefined;
|
|
7524
|
-
scope?: "instance" | "collection" | undefined;
|
|
7525
7528
|
listens?: {
|
|
7526
7529
|
event: string;
|
|
7527
7530
|
triggers: string;
|
|
@@ -7606,6 +7609,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7606
7609
|
linkedEntity?: string | undefined;
|
|
7607
7610
|
traits?: (string | {
|
|
7608
7611
|
name: string;
|
|
7612
|
+
scope: "instance" | "collection";
|
|
7609
7613
|
ui?: Record<string, unknown> | undefined;
|
|
7610
7614
|
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;
|
|
7611
7615
|
description?: string | undefined;
|
|
@@ -7622,7 +7626,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7622
7626
|
}[] | undefined;
|
|
7623
7627
|
scope?: "internal" | "external" | undefined;
|
|
7624
7628
|
}[] | undefined;
|
|
7625
|
-
scope?: "instance" | "collection" | undefined;
|
|
7626
7629
|
listens?: {
|
|
7627
7630
|
event: string;
|
|
7628
7631
|
triggers: string;
|
|
@@ -7714,6 +7717,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7714
7717
|
linkedEntity?: string | undefined;
|
|
7715
7718
|
traits?: (string | {
|
|
7716
7719
|
name: string;
|
|
7720
|
+
scope: "instance" | "collection";
|
|
7717
7721
|
ui?: Record<string, unknown> | undefined;
|
|
7718
7722
|
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;
|
|
7719
7723
|
description?: string | undefined;
|
|
@@ -7730,7 +7734,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7730
7734
|
}[] | undefined;
|
|
7731
7735
|
scope?: "internal" | "external" | undefined;
|
|
7732
7736
|
}[] | undefined;
|
|
7733
|
-
scope?: "instance" | "collection" | undefined;
|
|
7734
7737
|
listens?: {
|
|
7735
7738
|
event: string;
|
|
7736
7739
|
triggers: string;
|
|
@@ -8548,7 +8551,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8548
8551
|
description: z.ZodOptional<z.ZodString>;
|
|
8549
8552
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
8550
8553
|
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"]>>;
|
|
8551
|
-
scope: z.
|
|
8554
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
8552
8555
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
8553
8556
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8554
8557
|
name: z.ZodString;
|
|
@@ -8895,6 +8898,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8895
8898
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8896
8899
|
}, "strip", z.ZodTypeAny, {
|
|
8897
8900
|
name: string;
|
|
8901
|
+
scope: "instance" | "collection";
|
|
8898
8902
|
ui?: Record<string, unknown> | undefined;
|
|
8899
8903
|
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;
|
|
8900
8904
|
description?: string | undefined;
|
|
@@ -8911,7 +8915,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8911
8915
|
}[] | undefined;
|
|
8912
8916
|
scope?: "internal" | "external" | undefined;
|
|
8913
8917
|
}[] | undefined;
|
|
8914
|
-
scope?: "instance" | "collection" | undefined;
|
|
8915
8918
|
listens?: {
|
|
8916
8919
|
event: string;
|
|
8917
8920
|
triggers: string;
|
|
@@ -8991,6 +8994,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8991
8994
|
}[] | undefined;
|
|
8992
8995
|
}, {
|
|
8993
8996
|
name: string;
|
|
8997
|
+
scope: "instance" | "collection";
|
|
8994
8998
|
ui?: Record<string, unknown> | undefined;
|
|
8995
8999
|
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
9000
|
description?: string | undefined;
|
|
@@ -9007,7 +9011,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9007
9011
|
}[] | undefined;
|
|
9008
9012
|
scope?: "internal" | "external" | undefined;
|
|
9009
9013
|
}[] | undefined;
|
|
9010
|
-
scope?: "instance" | "collection" | undefined;
|
|
9011
9014
|
listens?: {
|
|
9012
9015
|
event: string;
|
|
9013
9016
|
triggers: string;
|
|
@@ -9158,7 +9161,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9158
9161
|
description: z.ZodOptional<z.ZodString>;
|
|
9159
9162
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
9160
9163
|
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"]>>;
|
|
9161
|
-
scope: z.
|
|
9164
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
9162
9165
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
9163
9166
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9164
9167
|
name: z.ZodString;
|
|
@@ -9505,6 +9508,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9505
9508
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9506
9509
|
}, "strip", z.ZodTypeAny, {
|
|
9507
9510
|
name: string;
|
|
9511
|
+
scope: "instance" | "collection";
|
|
9508
9512
|
ui?: Record<string, unknown> | undefined;
|
|
9509
9513
|
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;
|
|
9510
9514
|
description?: string | undefined;
|
|
@@ -9521,7 +9525,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9521
9525
|
}[] | undefined;
|
|
9522
9526
|
scope?: "internal" | "external" | undefined;
|
|
9523
9527
|
}[] | undefined;
|
|
9524
|
-
scope?: "instance" | "collection" | undefined;
|
|
9525
9528
|
listens?: {
|
|
9526
9529
|
event: string;
|
|
9527
9530
|
triggers: string;
|
|
@@ -9601,6 +9604,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9601
9604
|
}[] | undefined;
|
|
9602
9605
|
}, {
|
|
9603
9606
|
name: string;
|
|
9607
|
+
scope: "instance" | "collection";
|
|
9604
9608
|
ui?: Record<string, unknown> | undefined;
|
|
9605
9609
|
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;
|
|
9606
9610
|
description?: string | undefined;
|
|
@@ -9617,7 +9621,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9617
9621
|
}[] | undefined;
|
|
9618
9622
|
scope?: "internal" | "external" | undefined;
|
|
9619
9623
|
}[] | undefined;
|
|
9620
|
-
scope?: "instance" | "collection" | undefined;
|
|
9621
9624
|
listens?: {
|
|
9622
9625
|
event: string;
|
|
9623
9626
|
triggers: string;
|
|
@@ -9702,6 +9705,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9702
9705
|
linkedEntity?: string | undefined;
|
|
9703
9706
|
traits?: (string | {
|
|
9704
9707
|
name: string;
|
|
9708
|
+
scope: "instance" | "collection";
|
|
9705
9709
|
ui?: Record<string, unknown> | undefined;
|
|
9706
9710
|
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;
|
|
9707
9711
|
description?: string | undefined;
|
|
@@ -9718,7 +9722,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9718
9722
|
}[] | undefined;
|
|
9719
9723
|
scope?: "internal" | "external" | undefined;
|
|
9720
9724
|
}[] | undefined;
|
|
9721
|
-
scope?: "instance" | "collection" | undefined;
|
|
9722
9725
|
listens?: {
|
|
9723
9726
|
event: string;
|
|
9724
9727
|
triggers: string;
|
|
@@ -9810,6 +9813,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9810
9813
|
linkedEntity?: string | undefined;
|
|
9811
9814
|
traits?: (string | {
|
|
9812
9815
|
name: string;
|
|
9816
|
+
scope: "instance" | "collection";
|
|
9813
9817
|
ui?: Record<string, unknown> | undefined;
|
|
9814
9818
|
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;
|
|
9815
9819
|
description?: string | undefined;
|
|
@@ -9826,7 +9830,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9826
9830
|
}[] | undefined;
|
|
9827
9831
|
scope?: "internal" | "external" | undefined;
|
|
9828
9832
|
}[] | undefined;
|
|
9829
|
-
scope?: "instance" | "collection" | undefined;
|
|
9830
9833
|
listens?: {
|
|
9831
9834
|
event: string;
|
|
9832
9835
|
triggers: string;
|
|
@@ -10182,6 +10185,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10182
10185
|
name: string;
|
|
10183
10186
|
traits: (string | {
|
|
10184
10187
|
name: string;
|
|
10188
|
+
scope: "instance" | "collection";
|
|
10185
10189
|
ui?: Record<string, unknown> | undefined;
|
|
10186
10190
|
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;
|
|
10187
10191
|
description?: string | undefined;
|
|
@@ -10198,7 +10202,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10198
10202
|
}[] | undefined;
|
|
10199
10203
|
scope?: "internal" | "external" | undefined;
|
|
10200
10204
|
}[] | undefined;
|
|
10201
|
-
scope?: "instance" | "collection" | undefined;
|
|
10202
10205
|
listens?: {
|
|
10203
10206
|
event: string;
|
|
10204
10207
|
triggers: string;
|
|
@@ -10301,6 +10304,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10301
10304
|
linkedEntity?: string | undefined;
|
|
10302
10305
|
traits?: (string | {
|
|
10303
10306
|
name: string;
|
|
10307
|
+
scope: "instance" | "collection";
|
|
10304
10308
|
ui?: Record<string, unknown> | undefined;
|
|
10305
10309
|
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;
|
|
10306
10310
|
description?: string | undefined;
|
|
@@ -10317,7 +10321,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10317
10321
|
}[] | undefined;
|
|
10318
10322
|
scope?: "internal" | "external" | undefined;
|
|
10319
10323
|
}[] | undefined;
|
|
10320
|
-
scope?: "instance" | "collection" | undefined;
|
|
10321
10324
|
listens?: {
|
|
10322
10325
|
event: string;
|
|
10323
10326
|
triggers: string;
|
|
@@ -10560,6 +10563,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10560
10563
|
name: string;
|
|
10561
10564
|
traits: (string | {
|
|
10562
10565
|
name: string;
|
|
10566
|
+
scope: "instance" | "collection";
|
|
10563
10567
|
ui?: Record<string, unknown> | undefined;
|
|
10564
10568
|
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;
|
|
10565
10569
|
description?: string | undefined;
|
|
@@ -10576,7 +10580,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10576
10580
|
}[] | undefined;
|
|
10577
10581
|
scope?: "internal" | "external" | undefined;
|
|
10578
10582
|
}[] | undefined;
|
|
10579
|
-
scope?: "instance" | "collection" | undefined;
|
|
10580
10583
|
listens?: {
|
|
10581
10584
|
event: string;
|
|
10582
10585
|
triggers: string;
|
|
@@ -10679,6 +10682,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10679
10682
|
linkedEntity?: string | undefined;
|
|
10680
10683
|
traits?: (string | {
|
|
10681
10684
|
name: string;
|
|
10685
|
+
scope: "instance" | "collection";
|
|
10682
10686
|
ui?: Record<string, unknown> | undefined;
|
|
10683
10687
|
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;
|
|
10684
10688
|
description?: string | undefined;
|
|
@@ -10695,7 +10699,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10695
10699
|
}[] | undefined;
|
|
10696
10700
|
scope?: "internal" | "external" | undefined;
|
|
10697
10701
|
}[] | undefined;
|
|
10698
|
-
scope?: "instance" | "collection" | undefined;
|
|
10699
10702
|
listens?: {
|
|
10700
10703
|
event: string;
|
|
10701
10704
|
triggers: string;
|
|
@@ -11263,7 +11266,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11263
11266
|
description: z.ZodOptional<z.ZodString>;
|
|
11264
11267
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
11265
11268
|
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"]>>;
|
|
11266
|
-
scope: z.
|
|
11269
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
11267
11270
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
11268
11271
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11269
11272
|
name: z.ZodString;
|
|
@@ -11610,6 +11613,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11610
11613
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11611
11614
|
}, "strip", z.ZodTypeAny, {
|
|
11612
11615
|
name: string;
|
|
11616
|
+
scope: "instance" | "collection";
|
|
11613
11617
|
ui?: Record<string, unknown> | undefined;
|
|
11614
11618
|
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;
|
|
11615
11619
|
description?: string | undefined;
|
|
@@ -11626,7 +11630,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11626
11630
|
}[] | undefined;
|
|
11627
11631
|
scope?: "internal" | "external" | undefined;
|
|
11628
11632
|
}[] | undefined;
|
|
11629
|
-
scope?: "instance" | "collection" | undefined;
|
|
11630
11633
|
listens?: {
|
|
11631
11634
|
event: string;
|
|
11632
11635
|
triggers: string;
|
|
@@ -11706,6 +11709,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11706
11709
|
}[] | undefined;
|
|
11707
11710
|
}, {
|
|
11708
11711
|
name: string;
|
|
11712
|
+
scope: "instance" | "collection";
|
|
11709
11713
|
ui?: Record<string, unknown> | undefined;
|
|
11710
11714
|
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;
|
|
11711
11715
|
description?: string | undefined;
|
|
@@ -11722,7 +11726,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11722
11726
|
}[] | undefined;
|
|
11723
11727
|
scope?: "internal" | "external" | undefined;
|
|
11724
11728
|
}[] | undefined;
|
|
11725
|
-
scope?: "instance" | "collection" | undefined;
|
|
11726
11729
|
listens?: {
|
|
11727
11730
|
event: string;
|
|
11728
11731
|
triggers: string;
|
|
@@ -11873,7 +11876,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11873
11876
|
description: z.ZodOptional<z.ZodString>;
|
|
11874
11877
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
11875
11878
|
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"]>>;
|
|
11876
|
-
scope: z.
|
|
11879
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
11877
11880
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
11878
11881
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11879
11882
|
name: z.ZodString;
|
|
@@ -12220,6 +12223,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12220
12223
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12221
12224
|
}, "strip", z.ZodTypeAny, {
|
|
12222
12225
|
name: string;
|
|
12226
|
+
scope: "instance" | "collection";
|
|
12223
12227
|
ui?: Record<string, unknown> | undefined;
|
|
12224
12228
|
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;
|
|
12225
12229
|
description?: string | undefined;
|
|
@@ -12236,7 +12240,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12236
12240
|
}[] | undefined;
|
|
12237
12241
|
scope?: "internal" | "external" | undefined;
|
|
12238
12242
|
}[] | undefined;
|
|
12239
|
-
scope?: "instance" | "collection" | undefined;
|
|
12240
12243
|
listens?: {
|
|
12241
12244
|
event: string;
|
|
12242
12245
|
triggers: string;
|
|
@@ -12316,6 +12319,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12316
12319
|
}[] | undefined;
|
|
12317
12320
|
}, {
|
|
12318
12321
|
name: string;
|
|
12322
|
+
scope: "instance" | "collection";
|
|
12319
12323
|
ui?: Record<string, unknown> | undefined;
|
|
12320
12324
|
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;
|
|
12321
12325
|
description?: string | undefined;
|
|
@@ -12332,7 +12336,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12332
12336
|
}[] | undefined;
|
|
12333
12337
|
scope?: "internal" | "external" | undefined;
|
|
12334
12338
|
}[] | undefined;
|
|
12335
|
-
scope?: "instance" | "collection" | undefined;
|
|
12336
12339
|
listens?: {
|
|
12337
12340
|
event: string;
|
|
12338
12341
|
triggers: string;
|
|
@@ -12417,6 +12420,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12417
12420
|
linkedEntity?: string | undefined;
|
|
12418
12421
|
traits?: (string | {
|
|
12419
12422
|
name: string;
|
|
12423
|
+
scope: "instance" | "collection";
|
|
12420
12424
|
ui?: Record<string, unknown> | undefined;
|
|
12421
12425
|
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;
|
|
12422
12426
|
description?: string | undefined;
|
|
@@ -12433,7 +12437,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12433
12437
|
}[] | undefined;
|
|
12434
12438
|
scope?: "internal" | "external" | undefined;
|
|
12435
12439
|
}[] | undefined;
|
|
12436
|
-
scope?: "instance" | "collection" | undefined;
|
|
12437
12440
|
listens?: {
|
|
12438
12441
|
event: string;
|
|
12439
12442
|
triggers: string;
|
|
@@ -12525,6 +12528,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12525
12528
|
linkedEntity?: string | undefined;
|
|
12526
12529
|
traits?: (string | {
|
|
12527
12530
|
name: string;
|
|
12531
|
+
scope: "instance" | "collection";
|
|
12528
12532
|
ui?: Record<string, unknown> | undefined;
|
|
12529
12533
|
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;
|
|
12530
12534
|
description?: string | undefined;
|
|
@@ -12541,7 +12545,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12541
12545
|
}[] | undefined;
|
|
12542
12546
|
scope?: "internal" | "external" | undefined;
|
|
12543
12547
|
}[] | undefined;
|
|
12544
|
-
scope?: "instance" | "collection" | undefined;
|
|
12545
12548
|
listens?: {
|
|
12546
12549
|
event: string;
|
|
12547
12550
|
triggers: string;
|
|
@@ -12897,6 +12900,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12897
12900
|
name: string;
|
|
12898
12901
|
traits: (string | {
|
|
12899
12902
|
name: string;
|
|
12903
|
+
scope: "instance" | "collection";
|
|
12900
12904
|
ui?: Record<string, unknown> | undefined;
|
|
12901
12905
|
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;
|
|
12902
12906
|
description?: string | undefined;
|
|
@@ -12913,7 +12917,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12913
12917
|
}[] | undefined;
|
|
12914
12918
|
scope?: "internal" | "external" | undefined;
|
|
12915
12919
|
}[] | undefined;
|
|
12916
|
-
scope?: "instance" | "collection" | undefined;
|
|
12917
12920
|
listens?: {
|
|
12918
12921
|
event: string;
|
|
12919
12922
|
triggers: string;
|
|
@@ -13016,6 +13019,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13016
13019
|
linkedEntity?: string | undefined;
|
|
13017
13020
|
traits?: (string | {
|
|
13018
13021
|
name: string;
|
|
13022
|
+
scope: "instance" | "collection";
|
|
13019
13023
|
ui?: Record<string, unknown> | undefined;
|
|
13020
13024
|
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;
|
|
13021
13025
|
description?: string | undefined;
|
|
@@ -13032,7 +13036,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13032
13036
|
}[] | undefined;
|
|
13033
13037
|
scope?: "internal" | "external" | undefined;
|
|
13034
13038
|
}[] | undefined;
|
|
13035
|
-
scope?: "instance" | "collection" | undefined;
|
|
13036
13039
|
listens?: {
|
|
13037
13040
|
event: string;
|
|
13038
13041
|
triggers: string;
|
|
@@ -13275,6 +13278,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13275
13278
|
name: string;
|
|
13276
13279
|
traits: (string | {
|
|
13277
13280
|
name: string;
|
|
13281
|
+
scope: "instance" | "collection";
|
|
13278
13282
|
ui?: Record<string, unknown> | undefined;
|
|
13279
13283
|
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;
|
|
13280
13284
|
description?: string | undefined;
|
|
@@ -13291,7 +13295,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13291
13295
|
}[] | undefined;
|
|
13292
13296
|
scope?: "internal" | "external" | undefined;
|
|
13293
13297
|
}[] | undefined;
|
|
13294
|
-
scope?: "instance" | "collection" | undefined;
|
|
13295
13298
|
listens?: {
|
|
13296
13299
|
event: string;
|
|
13297
13300
|
triggers: string;
|
|
@@ -13394,6 +13397,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13394
13397
|
linkedEntity?: string | undefined;
|
|
13395
13398
|
traits?: (string | {
|
|
13396
13399
|
name: string;
|
|
13400
|
+
scope: "instance" | "collection";
|
|
13397
13401
|
ui?: Record<string, unknown> | undefined;
|
|
13398
13402
|
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;
|
|
13399
13403
|
description?: string | undefined;
|
|
@@ -13410,7 +13414,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13410
13414
|
}[] | undefined;
|
|
13411
13415
|
scope?: "internal" | "external" | undefined;
|
|
13412
13416
|
}[] | undefined;
|
|
13413
|
-
scope?: "instance" | "collection" | undefined;
|
|
13414
13417
|
listens?: {
|
|
13415
13418
|
event: string;
|
|
13416
13419
|
triggers: string;
|
|
@@ -13985,7 +13988,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
13985
13988
|
description: z.ZodOptional<z.ZodString>;
|
|
13986
13989
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
13987
13990
|
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"]>>;
|
|
13988
|
-
scope: z.
|
|
13991
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
13989
13992
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
13990
13993
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13991
13994
|
name: z.ZodString;
|
|
@@ -14332,6 +14335,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14332
14335
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14333
14336
|
}, "strip", z.ZodTypeAny, {
|
|
14334
14337
|
name: string;
|
|
14338
|
+
scope: "instance" | "collection";
|
|
14335
14339
|
ui?: Record<string, unknown> | undefined;
|
|
14336
14340
|
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;
|
|
14337
14341
|
description?: string | undefined;
|
|
@@ -14348,7 +14352,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14348
14352
|
}[] | undefined;
|
|
14349
14353
|
scope?: "internal" | "external" | undefined;
|
|
14350
14354
|
}[] | undefined;
|
|
14351
|
-
scope?: "instance" | "collection" | undefined;
|
|
14352
14355
|
listens?: {
|
|
14353
14356
|
event: string;
|
|
14354
14357
|
triggers: string;
|
|
@@ -14428,6 +14431,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14428
14431
|
}[] | undefined;
|
|
14429
14432
|
}, {
|
|
14430
14433
|
name: string;
|
|
14434
|
+
scope: "instance" | "collection";
|
|
14431
14435
|
ui?: Record<string, unknown> | undefined;
|
|
14432
14436
|
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;
|
|
14433
14437
|
description?: string | undefined;
|
|
@@ -14444,7 +14448,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14444
14448
|
}[] | undefined;
|
|
14445
14449
|
scope?: "internal" | "external" | undefined;
|
|
14446
14450
|
}[] | undefined;
|
|
14447
|
-
scope?: "instance" | "collection" | undefined;
|
|
14448
14451
|
listens?: {
|
|
14449
14452
|
event: string;
|
|
14450
14453
|
triggers: string;
|
|
@@ -14595,7 +14598,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14595
14598
|
description: z.ZodOptional<z.ZodString>;
|
|
14596
14599
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
14597
14600
|
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"]>>;
|
|
14598
|
-
scope: z.
|
|
14601
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
14599
14602
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
14600
14603
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14601
14604
|
name: z.ZodString;
|
|
@@ -14942,6 +14945,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14942
14945
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14943
14946
|
}, "strip", z.ZodTypeAny, {
|
|
14944
14947
|
name: string;
|
|
14948
|
+
scope: "instance" | "collection";
|
|
14945
14949
|
ui?: Record<string, unknown> | undefined;
|
|
14946
14950
|
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;
|
|
14947
14951
|
description?: string | undefined;
|
|
@@ -14958,7 +14962,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14958
14962
|
}[] | undefined;
|
|
14959
14963
|
scope?: "internal" | "external" | undefined;
|
|
14960
14964
|
}[] | undefined;
|
|
14961
|
-
scope?: "instance" | "collection" | undefined;
|
|
14962
14965
|
listens?: {
|
|
14963
14966
|
event: string;
|
|
14964
14967
|
triggers: string;
|
|
@@ -15038,6 +15041,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15038
15041
|
}[] | undefined;
|
|
15039
15042
|
}, {
|
|
15040
15043
|
name: string;
|
|
15044
|
+
scope: "instance" | "collection";
|
|
15041
15045
|
ui?: Record<string, unknown> | undefined;
|
|
15042
15046
|
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;
|
|
15043
15047
|
description?: string | undefined;
|
|
@@ -15054,7 +15058,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15054
15058
|
}[] | undefined;
|
|
15055
15059
|
scope?: "internal" | "external" | undefined;
|
|
15056
15060
|
}[] | undefined;
|
|
15057
|
-
scope?: "instance" | "collection" | undefined;
|
|
15058
15061
|
listens?: {
|
|
15059
15062
|
event: string;
|
|
15060
15063
|
triggers: string;
|
|
@@ -15139,6 +15142,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15139
15142
|
linkedEntity?: string | undefined;
|
|
15140
15143
|
traits?: (string | {
|
|
15141
15144
|
name: string;
|
|
15145
|
+
scope: "instance" | "collection";
|
|
15142
15146
|
ui?: Record<string, unknown> | undefined;
|
|
15143
15147
|
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;
|
|
15144
15148
|
description?: string | undefined;
|
|
@@ -15155,7 +15159,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15155
15159
|
}[] | undefined;
|
|
15156
15160
|
scope?: "internal" | "external" | undefined;
|
|
15157
15161
|
}[] | undefined;
|
|
15158
|
-
scope?: "instance" | "collection" | undefined;
|
|
15159
15162
|
listens?: {
|
|
15160
15163
|
event: string;
|
|
15161
15164
|
triggers: string;
|
|
@@ -15247,6 +15250,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15247
15250
|
linkedEntity?: string | undefined;
|
|
15248
15251
|
traits?: (string | {
|
|
15249
15252
|
name: string;
|
|
15253
|
+
scope: "instance" | "collection";
|
|
15250
15254
|
ui?: Record<string, unknown> | undefined;
|
|
15251
15255
|
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;
|
|
15252
15256
|
description?: string | undefined;
|
|
@@ -15263,7 +15267,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15263
15267
|
}[] | undefined;
|
|
15264
15268
|
scope?: "internal" | "external" | undefined;
|
|
15265
15269
|
}[] | undefined;
|
|
15266
|
-
scope?: "instance" | "collection" | undefined;
|
|
15267
15270
|
listens?: {
|
|
15268
15271
|
event: string;
|
|
15269
15272
|
triggers: string;
|
|
@@ -15619,6 +15622,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15619
15622
|
name: string;
|
|
15620
15623
|
traits: (string | {
|
|
15621
15624
|
name: string;
|
|
15625
|
+
scope: "instance" | "collection";
|
|
15622
15626
|
ui?: Record<string, unknown> | undefined;
|
|
15623
15627
|
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;
|
|
15624
15628
|
description?: string | undefined;
|
|
@@ -15635,7 +15639,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15635
15639
|
}[] | undefined;
|
|
15636
15640
|
scope?: "internal" | "external" | undefined;
|
|
15637
15641
|
}[] | undefined;
|
|
15638
|
-
scope?: "instance" | "collection" | undefined;
|
|
15639
15642
|
listens?: {
|
|
15640
15643
|
event: string;
|
|
15641
15644
|
triggers: string;
|
|
@@ -15738,6 +15741,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15738
15741
|
linkedEntity?: string | undefined;
|
|
15739
15742
|
traits?: (string | {
|
|
15740
15743
|
name: string;
|
|
15744
|
+
scope: "instance" | "collection";
|
|
15741
15745
|
ui?: Record<string, unknown> | undefined;
|
|
15742
15746
|
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;
|
|
15743
15747
|
description?: string | undefined;
|
|
@@ -15754,7 +15758,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15754
15758
|
}[] | undefined;
|
|
15755
15759
|
scope?: "internal" | "external" | undefined;
|
|
15756
15760
|
}[] | undefined;
|
|
15757
|
-
scope?: "instance" | "collection" | undefined;
|
|
15758
15761
|
listens?: {
|
|
15759
15762
|
event: string;
|
|
15760
15763
|
triggers: string;
|
|
@@ -15997,6 +16000,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15997
16000
|
name: string;
|
|
15998
16001
|
traits: (string | {
|
|
15999
16002
|
name: string;
|
|
16003
|
+
scope: "instance" | "collection";
|
|
16000
16004
|
ui?: Record<string, unknown> | undefined;
|
|
16001
16005
|
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;
|
|
16002
16006
|
description?: string | undefined;
|
|
@@ -16013,7 +16017,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16013
16017
|
}[] | undefined;
|
|
16014
16018
|
scope?: "internal" | "external" | undefined;
|
|
16015
16019
|
}[] | undefined;
|
|
16016
|
-
scope?: "instance" | "collection" | undefined;
|
|
16017
16020
|
listens?: {
|
|
16018
16021
|
event: string;
|
|
16019
16022
|
triggers: string;
|
|
@@ -16116,6 +16119,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16116
16119
|
linkedEntity?: string | undefined;
|
|
16117
16120
|
traits?: (string | {
|
|
16118
16121
|
name: string;
|
|
16122
|
+
scope: "instance" | "collection";
|
|
16119
16123
|
ui?: Record<string, unknown> | undefined;
|
|
16120
16124
|
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;
|
|
16121
16125
|
description?: string | undefined;
|
|
@@ -16132,7 +16136,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16132
16136
|
}[] | undefined;
|
|
16133
16137
|
scope?: "internal" | "external" | undefined;
|
|
16134
16138
|
}[] | undefined;
|
|
16135
|
-
scope?: "instance" | "collection" | undefined;
|
|
16136
16139
|
listens?: {
|
|
16137
16140
|
event: string;
|
|
16138
16141
|
triggers: string;
|
|
@@ -16948,7 +16951,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
16948
16951
|
description: z.ZodOptional<z.ZodString>;
|
|
16949
16952
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
16950
16953
|
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"]>>;
|
|
16951
|
-
scope: z.
|
|
16954
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
16952
16955
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
16953
16956
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16954
16957
|
name: z.ZodString;
|
|
@@ -17295,6 +17298,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17295
17298
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17296
17299
|
}, "strip", z.ZodTypeAny, {
|
|
17297
17300
|
name: string;
|
|
17301
|
+
scope: "instance" | "collection";
|
|
17298
17302
|
ui?: Record<string, unknown> | undefined;
|
|
17299
17303
|
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;
|
|
17300
17304
|
description?: string | undefined;
|
|
@@ -17311,7 +17315,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17311
17315
|
}[] | undefined;
|
|
17312
17316
|
scope?: "internal" | "external" | undefined;
|
|
17313
17317
|
}[] | undefined;
|
|
17314
|
-
scope?: "instance" | "collection" | undefined;
|
|
17315
17318
|
listens?: {
|
|
17316
17319
|
event: string;
|
|
17317
17320
|
triggers: string;
|
|
@@ -17391,6 +17394,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17391
17394
|
}[] | undefined;
|
|
17392
17395
|
}, {
|
|
17393
17396
|
name: string;
|
|
17397
|
+
scope: "instance" | "collection";
|
|
17394
17398
|
ui?: Record<string, unknown> | undefined;
|
|
17395
17399
|
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;
|
|
17396
17400
|
description?: string | undefined;
|
|
@@ -17407,7 +17411,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17407
17411
|
}[] | undefined;
|
|
17408
17412
|
scope?: "internal" | "external" | undefined;
|
|
17409
17413
|
}[] | undefined;
|
|
17410
|
-
scope?: "instance" | "collection" | undefined;
|
|
17411
17414
|
listens?: {
|
|
17412
17415
|
event: string;
|
|
17413
17416
|
triggers: string;
|
|
@@ -17558,7 +17561,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17558
17561
|
description: z.ZodOptional<z.ZodString>;
|
|
17559
17562
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
17560
17563
|
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"]>>;
|
|
17561
|
-
scope: z.
|
|
17564
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
17562
17565
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
17563
17566
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17564
17567
|
name: z.ZodString;
|
|
@@ -17905,6 +17908,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17905
17908
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17906
17909
|
}, "strip", z.ZodTypeAny, {
|
|
17907
17910
|
name: string;
|
|
17911
|
+
scope: "instance" | "collection";
|
|
17908
17912
|
ui?: Record<string, unknown> | undefined;
|
|
17909
17913
|
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;
|
|
17910
17914
|
description?: string | undefined;
|
|
@@ -17921,7 +17925,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17921
17925
|
}[] | undefined;
|
|
17922
17926
|
scope?: "internal" | "external" | undefined;
|
|
17923
17927
|
}[] | undefined;
|
|
17924
|
-
scope?: "instance" | "collection" | undefined;
|
|
17925
17928
|
listens?: {
|
|
17926
17929
|
event: string;
|
|
17927
17930
|
triggers: string;
|
|
@@ -18001,6 +18004,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18001
18004
|
}[] | undefined;
|
|
18002
18005
|
}, {
|
|
18003
18006
|
name: string;
|
|
18007
|
+
scope: "instance" | "collection";
|
|
18004
18008
|
ui?: Record<string, unknown> | undefined;
|
|
18005
18009
|
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;
|
|
18006
18010
|
description?: string | undefined;
|
|
@@ -18017,7 +18021,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18017
18021
|
}[] | undefined;
|
|
18018
18022
|
scope?: "internal" | "external" | undefined;
|
|
18019
18023
|
}[] | undefined;
|
|
18020
|
-
scope?: "instance" | "collection" | undefined;
|
|
18021
18024
|
listens?: {
|
|
18022
18025
|
event: string;
|
|
18023
18026
|
triggers: string;
|
|
@@ -18102,6 +18105,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18102
18105
|
linkedEntity?: string | undefined;
|
|
18103
18106
|
traits?: (string | {
|
|
18104
18107
|
name: string;
|
|
18108
|
+
scope: "instance" | "collection";
|
|
18105
18109
|
ui?: Record<string, unknown> | undefined;
|
|
18106
18110
|
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;
|
|
18107
18111
|
description?: string | undefined;
|
|
@@ -18118,7 +18122,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18118
18122
|
}[] | undefined;
|
|
18119
18123
|
scope?: "internal" | "external" | undefined;
|
|
18120
18124
|
}[] | undefined;
|
|
18121
|
-
scope?: "instance" | "collection" | undefined;
|
|
18122
18125
|
listens?: {
|
|
18123
18126
|
event: string;
|
|
18124
18127
|
triggers: string;
|
|
@@ -18210,6 +18213,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18210
18213
|
linkedEntity?: string | undefined;
|
|
18211
18214
|
traits?: (string | {
|
|
18212
18215
|
name: string;
|
|
18216
|
+
scope: "instance" | "collection";
|
|
18213
18217
|
ui?: Record<string, unknown> | undefined;
|
|
18214
18218
|
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;
|
|
18215
18219
|
description?: string | undefined;
|
|
@@ -18226,7 +18230,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18226
18230
|
}[] | undefined;
|
|
18227
18231
|
scope?: "internal" | "external" | undefined;
|
|
18228
18232
|
}[] | undefined;
|
|
18229
|
-
scope?: "instance" | "collection" | undefined;
|
|
18230
18233
|
listens?: {
|
|
18231
18234
|
event: string;
|
|
18232
18235
|
triggers: string;
|
|
@@ -18582,6 +18585,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18582
18585
|
name: string;
|
|
18583
18586
|
traits: (string | {
|
|
18584
18587
|
name: string;
|
|
18588
|
+
scope: "instance" | "collection";
|
|
18585
18589
|
ui?: Record<string, unknown> | undefined;
|
|
18586
18590
|
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;
|
|
18587
18591
|
description?: string | undefined;
|
|
@@ -18598,7 +18602,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18598
18602
|
}[] | undefined;
|
|
18599
18603
|
scope?: "internal" | "external" | undefined;
|
|
18600
18604
|
}[] | undefined;
|
|
18601
|
-
scope?: "instance" | "collection" | undefined;
|
|
18602
18605
|
listens?: {
|
|
18603
18606
|
event: string;
|
|
18604
18607
|
triggers: string;
|
|
@@ -18701,6 +18704,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18701
18704
|
linkedEntity?: string | undefined;
|
|
18702
18705
|
traits?: (string | {
|
|
18703
18706
|
name: string;
|
|
18707
|
+
scope: "instance" | "collection";
|
|
18704
18708
|
ui?: Record<string, unknown> | undefined;
|
|
18705
18709
|
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;
|
|
18706
18710
|
description?: string | undefined;
|
|
@@ -18717,7 +18721,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18717
18721
|
}[] | undefined;
|
|
18718
18722
|
scope?: "internal" | "external" | undefined;
|
|
18719
18723
|
}[] | undefined;
|
|
18720
|
-
scope?: "instance" | "collection" | undefined;
|
|
18721
18724
|
listens?: {
|
|
18722
18725
|
event: string;
|
|
18723
18726
|
triggers: string;
|
|
@@ -18960,6 +18963,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18960
18963
|
name: string;
|
|
18961
18964
|
traits: (string | {
|
|
18962
18965
|
name: string;
|
|
18966
|
+
scope: "instance" | "collection";
|
|
18963
18967
|
ui?: Record<string, unknown> | undefined;
|
|
18964
18968
|
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;
|
|
18965
18969
|
description?: string | undefined;
|
|
@@ -18976,7 +18980,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18976
18980
|
}[] | undefined;
|
|
18977
18981
|
scope?: "internal" | "external" | undefined;
|
|
18978
18982
|
}[] | undefined;
|
|
18979
|
-
scope?: "instance" | "collection" | undefined;
|
|
18980
18983
|
listens?: {
|
|
18981
18984
|
event: string;
|
|
18982
18985
|
triggers: string;
|
|
@@ -19079,6 +19082,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19079
19082
|
linkedEntity?: string | undefined;
|
|
19080
19083
|
traits?: (string | {
|
|
19081
19084
|
name: string;
|
|
19085
|
+
scope: "instance" | "collection";
|
|
19082
19086
|
ui?: Record<string, unknown> | undefined;
|
|
19083
19087
|
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;
|
|
19084
19088
|
description?: string | undefined;
|
|
@@ -19095,7 +19099,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19095
19099
|
}[] | undefined;
|
|
19096
19100
|
scope?: "internal" | "external" | undefined;
|
|
19097
19101
|
}[] | undefined;
|
|
19098
|
-
scope?: "instance" | "collection" | undefined;
|
|
19099
19102
|
listens?: {
|
|
19100
19103
|
event: string;
|
|
19101
19104
|
triggers: string;
|
|
@@ -19516,6 +19519,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19516
19519
|
name: string;
|
|
19517
19520
|
traits: (string | {
|
|
19518
19521
|
name: string;
|
|
19522
|
+
scope: "instance" | "collection";
|
|
19519
19523
|
ui?: Record<string, unknown> | undefined;
|
|
19520
19524
|
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;
|
|
19521
19525
|
description?: string | undefined;
|
|
@@ -19532,7 +19536,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19532
19536
|
}[] | undefined;
|
|
19533
19537
|
scope?: "internal" | "external" | undefined;
|
|
19534
19538
|
}[] | undefined;
|
|
19535
|
-
scope?: "instance" | "collection" | undefined;
|
|
19536
19539
|
listens?: {
|
|
19537
19540
|
event: string;
|
|
19538
19541
|
triggers: string;
|
|
@@ -19635,6 +19638,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19635
19638
|
linkedEntity?: string | undefined;
|
|
19636
19639
|
traits?: (string | {
|
|
19637
19640
|
name: string;
|
|
19641
|
+
scope: "instance" | "collection";
|
|
19638
19642
|
ui?: Record<string, unknown> | undefined;
|
|
19639
19643
|
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;
|
|
19640
19644
|
description?: string | undefined;
|
|
@@ -19651,7 +19655,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19651
19655
|
}[] | undefined;
|
|
19652
19656
|
scope?: "internal" | "external" | undefined;
|
|
19653
19657
|
}[] | undefined;
|
|
19654
|
-
scope?: "instance" | "collection" | undefined;
|
|
19655
19658
|
listens?: {
|
|
19656
19659
|
event: string;
|
|
19657
19660
|
triggers: string;
|
|
@@ -19983,6 +19986,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19983
19986
|
name: string;
|
|
19984
19987
|
traits: (string | {
|
|
19985
19988
|
name: string;
|
|
19989
|
+
scope: "instance" | "collection";
|
|
19986
19990
|
ui?: Record<string, unknown> | undefined;
|
|
19987
19991
|
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;
|
|
19988
19992
|
description?: string | undefined;
|
|
@@ -19999,7 +20003,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19999
20003
|
}[] | undefined;
|
|
20000
20004
|
scope?: "internal" | "external" | undefined;
|
|
20001
20005
|
}[] | undefined;
|
|
20002
|
-
scope?: "instance" | "collection" | undefined;
|
|
20003
20006
|
listens?: {
|
|
20004
20007
|
event: string;
|
|
20005
20008
|
triggers: string;
|
|
@@ -20102,6 +20105,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20102
20105
|
linkedEntity?: string | undefined;
|
|
20103
20106
|
traits?: (string | {
|
|
20104
20107
|
name: string;
|
|
20108
|
+
scope: "instance" | "collection";
|
|
20105
20109
|
ui?: Record<string, unknown> | undefined;
|
|
20106
20110
|
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;
|
|
20107
20111
|
description?: string | undefined;
|
|
@@ -20118,7 +20122,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20118
20122
|
}[] | undefined;
|
|
20119
20123
|
scope?: "internal" | "external" | undefined;
|
|
20120
20124
|
}[] | undefined;
|
|
20121
|
-
scope?: "instance" | "collection" | undefined;
|
|
20122
20125
|
listens?: {
|
|
20123
20126
|
event: string;
|
|
20124
20127
|
triggers: string;
|
|
@@ -20497,6 +20500,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20497
20500
|
name: string;
|
|
20498
20501
|
traits: (string | {
|
|
20499
20502
|
name: string;
|
|
20503
|
+
scope: "instance" | "collection";
|
|
20500
20504
|
ui?: Record<string, unknown> | undefined;
|
|
20501
20505
|
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;
|
|
20502
20506
|
description?: string | undefined;
|
|
@@ -20513,7 +20517,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20513
20517
|
}[] | undefined;
|
|
20514
20518
|
scope?: "internal" | "external" | undefined;
|
|
20515
20519
|
}[] | undefined;
|
|
20516
|
-
scope?: "instance" | "collection" | undefined;
|
|
20517
20520
|
listens?: {
|
|
20518
20521
|
event: string;
|
|
20519
20522
|
triggers: string;
|
|
@@ -20616,6 +20619,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20616
20619
|
linkedEntity?: string | undefined;
|
|
20617
20620
|
traits?: (string | {
|
|
20618
20621
|
name: string;
|
|
20622
|
+
scope: "instance" | "collection";
|
|
20619
20623
|
ui?: Record<string, unknown> | undefined;
|
|
20620
20624
|
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;
|
|
20621
20625
|
description?: string | undefined;
|
|
@@ -20632,7 +20636,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20632
20636
|
}[] | undefined;
|
|
20633
20637
|
scope?: "internal" | "external" | undefined;
|
|
20634
20638
|
}[] | undefined;
|
|
20635
|
-
scope?: "instance" | "collection" | undefined;
|
|
20636
20639
|
listens?: {
|
|
20637
20640
|
event: string;
|
|
20638
20641
|
triggers: string;
|
|
@@ -20964,6 +20967,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20964
20967
|
name: string;
|
|
20965
20968
|
traits: (string | {
|
|
20966
20969
|
name: string;
|
|
20970
|
+
scope: "instance" | "collection";
|
|
20967
20971
|
ui?: Record<string, unknown> | undefined;
|
|
20968
20972
|
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;
|
|
20969
20973
|
description?: string | undefined;
|
|
@@ -20980,7 +20984,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20980
20984
|
}[] | undefined;
|
|
20981
20985
|
scope?: "internal" | "external" | undefined;
|
|
20982
20986
|
}[] | undefined;
|
|
20983
|
-
scope?: "instance" | "collection" | undefined;
|
|
20984
20987
|
listens?: {
|
|
20985
20988
|
event: string;
|
|
20986
20989
|
triggers: string;
|
|
@@ -21083,6 +21086,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21083
21086
|
linkedEntity?: string | undefined;
|
|
21084
21087
|
traits?: (string | {
|
|
21085
21088
|
name: string;
|
|
21089
|
+
scope: "instance" | "collection";
|
|
21086
21090
|
ui?: Record<string, unknown> | undefined;
|
|
21087
21091
|
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;
|
|
21088
21092
|
description?: string | undefined;
|
|
@@ -21099,7 +21103,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21099
21103
|
}[] | undefined;
|
|
21100
21104
|
scope?: "internal" | "external" | undefined;
|
|
21101
21105
|
}[] | undefined;
|
|
21102
|
-
scope?: "instance" | "collection" | undefined;
|
|
21103
21106
|
listens?: {
|
|
21104
21107
|
event: string;
|
|
21105
21108
|
triggers: string;
|