@almadar/core 4.10.0 → 5.1.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-vE2bU7TB.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-CsX_xlhO.d.ts} +88 -80
- 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
|
@@ -913,9 +913,14 @@ declare function isSingletonEntity(entity: OrbitalEntity): boolean;
|
|
|
913
913
|
/**
|
|
914
914
|
* A single field value at runtime.
|
|
915
915
|
* Union of all possible types from FieldType: string, number, boolean, date, array, nested.
|
|
916
|
+
* The nested-record branch's index signature tolerates `undefined` so that
|
|
917
|
+
* TypeScript optional properties (`x?: string`, carrying `string | undefined`)
|
|
918
|
+
* on EntityRow extenders typecheck without ceremony. At JSON serialization
|
|
919
|
+
* time `undefined` is equivalent to "key absent" and never appears on the
|
|
920
|
+
* wire; the inclusion here is a pure type-surface accommodation.
|
|
916
921
|
*/
|
|
917
922
|
type FieldValue = string | number | boolean | Date | null | string[] | FieldValue[] | {
|
|
918
|
-
[key: string]: FieldValue;
|
|
923
|
+
[key: string]: FieldValue | undefined;
|
|
919
924
|
};
|
|
920
925
|
/**
|
|
921
926
|
* One instance of an entity with actual field values.
|
|
@@ -927,7 +932,7 @@ type FieldValue = string | number | boolean | Date | null | string[] | FieldValu
|
|
|
927
932
|
*/
|
|
928
933
|
type EntityRow = {
|
|
929
934
|
id?: string;
|
|
930
|
-
} & Record<string, FieldValue>;
|
|
935
|
+
} & Record<string, FieldValue | undefined>;
|
|
931
936
|
/**
|
|
932
937
|
* Collection of entity instances keyed by entity name.
|
|
933
938
|
* Used by OrbPreview mockData, OrbitalServerRuntime state, data grids, etc.
|
|
@@ -3349,10 +3354,13 @@ interface Trait {
|
|
|
3349
3354
|
description_visual_prompt?: string;
|
|
3350
3355
|
category?: TraitCategory;
|
|
3351
3356
|
/**
|
|
3352
|
-
* Instance or collection scope.
|
|
3353
|
-
*
|
|
3357
|
+
* Instance or collection scope. Required in V2: every trait operates on
|
|
3358
|
+
* either a single record (`instance`) or a group (`collection`). Drives
|
|
3359
|
+
* payload-inference rules for emits declared via `type X = Event<T>` and
|
|
3360
|
+
* shapes the runtime's binding semantics. Authored in `.lolo` as the
|
|
3361
|
+
* `[instance]` / `[collection]` modifier on the trait header.
|
|
3354
3362
|
*/
|
|
3355
|
-
scope
|
|
3363
|
+
scope: TraitScope;
|
|
3356
3364
|
/**
|
|
3357
3365
|
* The entity this trait is linked to.
|
|
3358
3366
|
* Required for inline trait definitions within an orbital.
|
|
@@ -3381,7 +3389,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3381
3389
|
description: z.ZodOptional<z.ZodString>;
|
|
3382
3390
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
3383
3391
|
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.
|
|
3392
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
3385
3393
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
3386
3394
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3387
3395
|
name: z.ZodString;
|
|
@@ -3728,6 +3736,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3728
3736
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3729
3737
|
}, "strip", z.ZodTypeAny, {
|
|
3730
3738
|
name: string;
|
|
3739
|
+
scope: "instance" | "collection";
|
|
3731
3740
|
ui?: Record<string, unknown> | undefined;
|
|
3732
3741
|
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
3742
|
description?: string | undefined;
|
|
@@ -3744,7 +3753,6 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3744
3753
|
}[] | undefined;
|
|
3745
3754
|
scope?: "internal" | "external" | undefined;
|
|
3746
3755
|
}[] | undefined;
|
|
3747
|
-
scope?: "instance" | "collection" | undefined;
|
|
3748
3756
|
listens?: {
|
|
3749
3757
|
event: string;
|
|
3750
3758
|
triggers: string;
|
|
@@ -3824,6 +3832,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3824
3832
|
}[] | undefined;
|
|
3825
3833
|
}, {
|
|
3826
3834
|
name: string;
|
|
3835
|
+
scope: "instance" | "collection";
|
|
3827
3836
|
ui?: Record<string, unknown> | undefined;
|
|
3828
3837
|
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
3838
|
description?: string | undefined;
|
|
@@ -3840,7 +3849,6 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3840
3849
|
}[] | undefined;
|
|
3841
3850
|
scope?: "internal" | "external" | undefined;
|
|
3842
3851
|
}[] | undefined;
|
|
3843
|
-
scope?: "instance" | "collection" | undefined;
|
|
3844
3852
|
listens?: {
|
|
3845
3853
|
event: string;
|
|
3846
3854
|
triggers: string;
|
|
@@ -3942,7 +3950,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
3942
3950
|
description: z.ZodOptional<z.ZodString>;
|
|
3943
3951
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
3944
3952
|
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.
|
|
3953
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
3946
3954
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
3947
3955
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3948
3956
|
name: z.ZodString;
|
|
@@ -4289,6 +4297,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4289
4297
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4290
4298
|
}, "strip", z.ZodTypeAny, {
|
|
4291
4299
|
name: string;
|
|
4300
|
+
scope: "instance" | "collection";
|
|
4292
4301
|
ui?: Record<string, unknown> | undefined;
|
|
4293
4302
|
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
4303
|
description?: string | undefined;
|
|
@@ -4305,7 +4314,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4305
4314
|
}[] | undefined;
|
|
4306
4315
|
scope?: "internal" | "external" | undefined;
|
|
4307
4316
|
}[] | undefined;
|
|
4308
|
-
scope?: "instance" | "collection" | undefined;
|
|
4309
4317
|
listens?: {
|
|
4310
4318
|
event: string;
|
|
4311
4319
|
triggers: string;
|
|
@@ -4385,6 +4393,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4385
4393
|
}[] | undefined;
|
|
4386
4394
|
}, {
|
|
4387
4395
|
name: string;
|
|
4396
|
+
scope: "instance" | "collection";
|
|
4388
4397
|
ui?: Record<string, unknown> | undefined;
|
|
4389
4398
|
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
4399
|
description?: string | undefined;
|
|
@@ -4401,7 +4410,6 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4401
4410
|
}[] | undefined;
|
|
4402
4411
|
scope?: "internal" | "external" | undefined;
|
|
4403
4412
|
}[] | undefined;
|
|
4404
|
-
scope?: "instance" | "collection" | undefined;
|
|
4405
4413
|
listens?: {
|
|
4406
4414
|
event: string;
|
|
4407
4415
|
triggers: string;
|
|
@@ -4573,7 +4581,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4573
4581
|
description: z.ZodOptional<z.ZodString>;
|
|
4574
4582
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
4575
4583
|
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.
|
|
4584
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
4577
4585
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
4578
4586
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4579
4587
|
name: z.ZodString;
|
|
@@ -4920,6 +4928,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4920
4928
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4921
4929
|
}, "strip", z.ZodTypeAny, {
|
|
4922
4930
|
name: string;
|
|
4931
|
+
scope: "instance" | "collection";
|
|
4923
4932
|
ui?: Record<string, unknown> | undefined;
|
|
4924
4933
|
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
4934
|
description?: string | undefined;
|
|
@@ -4936,7 +4945,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4936
4945
|
}[] | undefined;
|
|
4937
4946
|
scope?: "internal" | "external" | undefined;
|
|
4938
4947
|
}[] | undefined;
|
|
4939
|
-
scope?: "instance" | "collection" | undefined;
|
|
4940
4948
|
listens?: {
|
|
4941
4949
|
event: string;
|
|
4942
4950
|
triggers: string;
|
|
@@ -5016,6 +5024,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5016
5024
|
}[] | undefined;
|
|
5017
5025
|
}, {
|
|
5018
5026
|
name: string;
|
|
5027
|
+
scope: "instance" | "collection";
|
|
5019
5028
|
ui?: Record<string, unknown> | undefined;
|
|
5020
5029
|
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
5030
|
description?: string | undefined;
|
|
@@ -5032,7 +5041,6 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5032
5041
|
}[] | undefined;
|
|
5033
5042
|
scope?: "internal" | "external" | undefined;
|
|
5034
5043
|
}[] | undefined;
|
|
5035
|
-
scope?: "instance" | "collection" | undefined;
|
|
5036
5044
|
listens?: {
|
|
5037
5045
|
event: string;
|
|
5038
5046
|
triggers: string;
|
|
@@ -6235,7 +6243,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6235
6243
|
description: z.ZodOptional<z.ZodString>;
|
|
6236
6244
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
6237
6245
|
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.
|
|
6246
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
6239
6247
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
6240
6248
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6241
6249
|
name: z.ZodString;
|
|
@@ -6582,6 +6590,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6582
6590
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6583
6591
|
}, "strip", z.ZodTypeAny, {
|
|
6584
6592
|
name: string;
|
|
6593
|
+
scope: "instance" | "collection";
|
|
6585
6594
|
ui?: Record<string, unknown> | undefined;
|
|
6586
6595
|
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
6596
|
description?: string | undefined;
|
|
@@ -6598,7 +6607,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6598
6607
|
}[] | undefined;
|
|
6599
6608
|
scope?: "internal" | "external" | undefined;
|
|
6600
6609
|
}[] | undefined;
|
|
6601
|
-
scope?: "instance" | "collection" | undefined;
|
|
6602
6610
|
listens?: {
|
|
6603
6611
|
event: string;
|
|
6604
6612
|
triggers: string;
|
|
@@ -6678,6 +6686,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6678
6686
|
}[] | undefined;
|
|
6679
6687
|
}, {
|
|
6680
6688
|
name: string;
|
|
6689
|
+
scope: "instance" | "collection";
|
|
6681
6690
|
ui?: Record<string, unknown> | undefined;
|
|
6682
6691
|
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
6692
|
description?: string | undefined;
|
|
@@ -6694,7 +6703,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6694
6703
|
}[] | undefined;
|
|
6695
6704
|
scope?: "internal" | "external" | undefined;
|
|
6696
6705
|
}[] | undefined;
|
|
6697
|
-
scope?: "instance" | "collection" | undefined;
|
|
6698
6706
|
listens?: {
|
|
6699
6707
|
event: string;
|
|
6700
6708
|
triggers: string;
|
|
@@ -6779,6 +6787,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6779
6787
|
linkedEntity?: string | undefined;
|
|
6780
6788
|
traits?: (string | {
|
|
6781
6789
|
name: string;
|
|
6790
|
+
scope: "instance" | "collection";
|
|
6782
6791
|
ui?: Record<string, unknown> | undefined;
|
|
6783
6792
|
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
6793
|
description?: string | undefined;
|
|
@@ -6795,7 +6804,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6795
6804
|
}[] | undefined;
|
|
6796
6805
|
scope?: "internal" | "external" | undefined;
|
|
6797
6806
|
}[] | undefined;
|
|
6798
|
-
scope?: "instance" | "collection" | undefined;
|
|
6799
6807
|
listens?: {
|
|
6800
6808
|
event: string;
|
|
6801
6809
|
triggers: string;
|
|
@@ -6887,6 +6895,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6887
6895
|
linkedEntity?: string | undefined;
|
|
6888
6896
|
traits?: (string | {
|
|
6889
6897
|
name: string;
|
|
6898
|
+
scope: "instance" | "collection";
|
|
6890
6899
|
ui?: Record<string, unknown> | undefined;
|
|
6891
6900
|
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
6901
|
description?: string | undefined;
|
|
@@ -6903,7 +6912,6 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
6903
6912
|
}[] | undefined;
|
|
6904
6913
|
scope?: "internal" | "external" | undefined;
|
|
6905
6914
|
}[] | undefined;
|
|
6906
|
-
scope?: "instance" | "collection" | undefined;
|
|
6907
6915
|
listens?: {
|
|
6908
6916
|
event: string;
|
|
6909
6917
|
triggers: string;
|
|
@@ -7062,7 +7070,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7062
7070
|
description: z.ZodOptional<z.ZodString>;
|
|
7063
7071
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
7064
7072
|
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.
|
|
7073
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
7066
7074
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
7067
7075
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7068
7076
|
name: z.ZodString;
|
|
@@ -7409,6 +7417,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7409
7417
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7410
7418
|
}, "strip", z.ZodTypeAny, {
|
|
7411
7419
|
name: string;
|
|
7420
|
+
scope: "instance" | "collection";
|
|
7412
7421
|
ui?: Record<string, unknown> | undefined;
|
|
7413
7422
|
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
7423
|
description?: string | undefined;
|
|
@@ -7425,7 +7434,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7425
7434
|
}[] | undefined;
|
|
7426
7435
|
scope?: "internal" | "external" | undefined;
|
|
7427
7436
|
}[] | undefined;
|
|
7428
|
-
scope?: "instance" | "collection" | undefined;
|
|
7429
7437
|
listens?: {
|
|
7430
7438
|
event: string;
|
|
7431
7439
|
triggers: string;
|
|
@@ -7505,6 +7513,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7505
7513
|
}[] | undefined;
|
|
7506
7514
|
}, {
|
|
7507
7515
|
name: string;
|
|
7516
|
+
scope: "instance" | "collection";
|
|
7508
7517
|
ui?: Record<string, unknown> | undefined;
|
|
7509
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;
|
|
7510
7519
|
description?: string | undefined;
|
|
@@ -7521,7 +7530,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7521
7530
|
}[] | undefined;
|
|
7522
7531
|
scope?: "internal" | "external" | undefined;
|
|
7523
7532
|
}[] | undefined;
|
|
7524
|
-
scope?: "instance" | "collection" | undefined;
|
|
7525
7533
|
listens?: {
|
|
7526
7534
|
event: string;
|
|
7527
7535
|
triggers: string;
|
|
@@ -7606,6 +7614,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7606
7614
|
linkedEntity?: string | undefined;
|
|
7607
7615
|
traits?: (string | {
|
|
7608
7616
|
name: string;
|
|
7617
|
+
scope: "instance" | "collection";
|
|
7609
7618
|
ui?: Record<string, unknown> | undefined;
|
|
7610
7619
|
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
7620
|
description?: string | undefined;
|
|
@@ -7622,7 +7631,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7622
7631
|
}[] | undefined;
|
|
7623
7632
|
scope?: "internal" | "external" | undefined;
|
|
7624
7633
|
}[] | undefined;
|
|
7625
|
-
scope?: "instance" | "collection" | undefined;
|
|
7626
7634
|
listens?: {
|
|
7627
7635
|
event: string;
|
|
7628
7636
|
triggers: string;
|
|
@@ -7714,6 +7722,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7714
7722
|
linkedEntity?: string | undefined;
|
|
7715
7723
|
traits?: (string | {
|
|
7716
7724
|
name: string;
|
|
7725
|
+
scope: "instance" | "collection";
|
|
7717
7726
|
ui?: Record<string, unknown> | undefined;
|
|
7718
7727
|
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
7728
|
description?: string | undefined;
|
|
@@ -7730,7 +7739,6 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7730
7739
|
}[] | undefined;
|
|
7731
7740
|
scope?: "internal" | "external" | undefined;
|
|
7732
7741
|
}[] | undefined;
|
|
7733
|
-
scope?: "instance" | "collection" | undefined;
|
|
7734
7742
|
listens?: {
|
|
7735
7743
|
event: string;
|
|
7736
7744
|
triggers: string;
|
|
@@ -8548,7 +8556,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8548
8556
|
description: z.ZodOptional<z.ZodString>;
|
|
8549
8557
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
8550
8558
|
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.
|
|
8559
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
8552
8560
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
8553
8561
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8554
8562
|
name: z.ZodString;
|
|
@@ -8895,6 +8903,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8895
8903
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
8896
8904
|
}, "strip", z.ZodTypeAny, {
|
|
8897
8905
|
name: string;
|
|
8906
|
+
scope: "instance" | "collection";
|
|
8898
8907
|
ui?: Record<string, unknown> | undefined;
|
|
8899
8908
|
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
8909
|
description?: string | undefined;
|
|
@@ -8911,7 +8920,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8911
8920
|
}[] | undefined;
|
|
8912
8921
|
scope?: "internal" | "external" | undefined;
|
|
8913
8922
|
}[] | undefined;
|
|
8914
|
-
scope?: "instance" | "collection" | undefined;
|
|
8915
8923
|
listens?: {
|
|
8916
8924
|
event: string;
|
|
8917
8925
|
triggers: string;
|
|
@@ -8991,6 +8999,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
8991
8999
|
}[] | undefined;
|
|
8992
9000
|
}, {
|
|
8993
9001
|
name: string;
|
|
9002
|
+
scope: "instance" | "collection";
|
|
8994
9003
|
ui?: Record<string, unknown> | undefined;
|
|
8995
9004
|
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
9005
|
description?: string | undefined;
|
|
@@ -9007,7 +9016,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9007
9016
|
}[] | undefined;
|
|
9008
9017
|
scope?: "internal" | "external" | undefined;
|
|
9009
9018
|
}[] | undefined;
|
|
9010
|
-
scope?: "instance" | "collection" | undefined;
|
|
9011
9019
|
listens?: {
|
|
9012
9020
|
event: string;
|
|
9013
9021
|
triggers: string;
|
|
@@ -9158,7 +9166,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9158
9166
|
description: z.ZodOptional<z.ZodString>;
|
|
9159
9167
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
9160
9168
|
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.
|
|
9169
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
9162
9170
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
9163
9171
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9164
9172
|
name: z.ZodString;
|
|
@@ -9505,6 +9513,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9505
9513
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
9506
9514
|
}, "strip", z.ZodTypeAny, {
|
|
9507
9515
|
name: string;
|
|
9516
|
+
scope: "instance" | "collection";
|
|
9508
9517
|
ui?: Record<string, unknown> | undefined;
|
|
9509
9518
|
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
9519
|
description?: string | undefined;
|
|
@@ -9521,7 +9530,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9521
9530
|
}[] | undefined;
|
|
9522
9531
|
scope?: "internal" | "external" | undefined;
|
|
9523
9532
|
}[] | undefined;
|
|
9524
|
-
scope?: "instance" | "collection" | undefined;
|
|
9525
9533
|
listens?: {
|
|
9526
9534
|
event: string;
|
|
9527
9535
|
triggers: string;
|
|
@@ -9601,6 +9609,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9601
9609
|
}[] | undefined;
|
|
9602
9610
|
}, {
|
|
9603
9611
|
name: string;
|
|
9612
|
+
scope: "instance" | "collection";
|
|
9604
9613
|
ui?: Record<string, unknown> | undefined;
|
|
9605
9614
|
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
9615
|
description?: string | undefined;
|
|
@@ -9617,7 +9626,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9617
9626
|
}[] | undefined;
|
|
9618
9627
|
scope?: "internal" | "external" | undefined;
|
|
9619
9628
|
}[] | undefined;
|
|
9620
|
-
scope?: "instance" | "collection" | undefined;
|
|
9621
9629
|
listens?: {
|
|
9622
9630
|
event: string;
|
|
9623
9631
|
triggers: string;
|
|
@@ -9702,6 +9710,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9702
9710
|
linkedEntity?: string | undefined;
|
|
9703
9711
|
traits?: (string | {
|
|
9704
9712
|
name: string;
|
|
9713
|
+
scope: "instance" | "collection";
|
|
9705
9714
|
ui?: Record<string, unknown> | undefined;
|
|
9706
9715
|
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
9716
|
description?: string | undefined;
|
|
@@ -9718,7 +9727,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9718
9727
|
}[] | undefined;
|
|
9719
9728
|
scope?: "internal" | "external" | undefined;
|
|
9720
9729
|
}[] | undefined;
|
|
9721
|
-
scope?: "instance" | "collection" | undefined;
|
|
9722
9730
|
listens?: {
|
|
9723
9731
|
event: string;
|
|
9724
9732
|
triggers: string;
|
|
@@ -9810,6 +9818,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9810
9818
|
linkedEntity?: string | undefined;
|
|
9811
9819
|
traits?: (string | {
|
|
9812
9820
|
name: string;
|
|
9821
|
+
scope: "instance" | "collection";
|
|
9813
9822
|
ui?: Record<string, unknown> | undefined;
|
|
9814
9823
|
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
9824
|
description?: string | undefined;
|
|
@@ -9826,7 +9835,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
9826
9835
|
}[] | undefined;
|
|
9827
9836
|
scope?: "internal" | "external" | undefined;
|
|
9828
9837
|
}[] | undefined;
|
|
9829
|
-
scope?: "instance" | "collection" | undefined;
|
|
9830
9838
|
listens?: {
|
|
9831
9839
|
event: string;
|
|
9832
9840
|
triggers: string;
|
|
@@ -10182,6 +10190,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10182
10190
|
name: string;
|
|
10183
10191
|
traits: (string | {
|
|
10184
10192
|
name: string;
|
|
10193
|
+
scope: "instance" | "collection";
|
|
10185
10194
|
ui?: Record<string, unknown> | undefined;
|
|
10186
10195
|
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
10196
|
description?: string | undefined;
|
|
@@ -10198,7 +10207,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10198
10207
|
}[] | undefined;
|
|
10199
10208
|
scope?: "internal" | "external" | undefined;
|
|
10200
10209
|
}[] | undefined;
|
|
10201
|
-
scope?: "instance" | "collection" | undefined;
|
|
10202
10210
|
listens?: {
|
|
10203
10211
|
event: string;
|
|
10204
10212
|
triggers: string;
|
|
@@ -10301,6 +10309,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10301
10309
|
linkedEntity?: string | undefined;
|
|
10302
10310
|
traits?: (string | {
|
|
10303
10311
|
name: string;
|
|
10312
|
+
scope: "instance" | "collection";
|
|
10304
10313
|
ui?: Record<string, unknown> | undefined;
|
|
10305
10314
|
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
10315
|
description?: string | undefined;
|
|
@@ -10317,7 +10326,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10317
10326
|
}[] | undefined;
|
|
10318
10327
|
scope?: "internal" | "external" | undefined;
|
|
10319
10328
|
}[] | undefined;
|
|
10320
|
-
scope?: "instance" | "collection" | undefined;
|
|
10321
10329
|
listens?: {
|
|
10322
10330
|
event: string;
|
|
10323
10331
|
triggers: string;
|
|
@@ -10560,6 +10568,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10560
10568
|
name: string;
|
|
10561
10569
|
traits: (string | {
|
|
10562
10570
|
name: string;
|
|
10571
|
+
scope: "instance" | "collection";
|
|
10563
10572
|
ui?: Record<string, unknown> | undefined;
|
|
10564
10573
|
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
10574
|
description?: string | undefined;
|
|
@@ -10576,7 +10585,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10576
10585
|
}[] | undefined;
|
|
10577
10586
|
scope?: "internal" | "external" | undefined;
|
|
10578
10587
|
}[] | undefined;
|
|
10579
|
-
scope?: "instance" | "collection" | undefined;
|
|
10580
10588
|
listens?: {
|
|
10581
10589
|
event: string;
|
|
10582
10590
|
triggers: string;
|
|
@@ -10679,6 +10687,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10679
10687
|
linkedEntity?: string | undefined;
|
|
10680
10688
|
traits?: (string | {
|
|
10681
10689
|
name: string;
|
|
10690
|
+
scope: "instance" | "collection";
|
|
10682
10691
|
ui?: Record<string, unknown> | undefined;
|
|
10683
10692
|
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
10693
|
description?: string | undefined;
|
|
@@ -10695,7 +10704,6 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10695
10704
|
}[] | undefined;
|
|
10696
10705
|
scope?: "internal" | "external" | undefined;
|
|
10697
10706
|
}[] | undefined;
|
|
10698
|
-
scope?: "instance" | "collection" | undefined;
|
|
10699
10707
|
listens?: {
|
|
10700
10708
|
event: string;
|
|
10701
10709
|
triggers: string;
|
|
@@ -11263,7 +11271,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11263
11271
|
description: z.ZodOptional<z.ZodString>;
|
|
11264
11272
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
11265
11273
|
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.
|
|
11274
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
11267
11275
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
11268
11276
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11269
11277
|
name: z.ZodString;
|
|
@@ -11610,6 +11618,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11610
11618
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
11611
11619
|
}, "strip", z.ZodTypeAny, {
|
|
11612
11620
|
name: string;
|
|
11621
|
+
scope: "instance" | "collection";
|
|
11613
11622
|
ui?: Record<string, unknown> | undefined;
|
|
11614
11623
|
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
11624
|
description?: string | undefined;
|
|
@@ -11626,7 +11635,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11626
11635
|
}[] | undefined;
|
|
11627
11636
|
scope?: "internal" | "external" | undefined;
|
|
11628
11637
|
}[] | undefined;
|
|
11629
|
-
scope?: "instance" | "collection" | undefined;
|
|
11630
11638
|
listens?: {
|
|
11631
11639
|
event: string;
|
|
11632
11640
|
triggers: string;
|
|
@@ -11706,6 +11714,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11706
11714
|
}[] | undefined;
|
|
11707
11715
|
}, {
|
|
11708
11716
|
name: string;
|
|
11717
|
+
scope: "instance" | "collection";
|
|
11709
11718
|
ui?: Record<string, unknown> | undefined;
|
|
11710
11719
|
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
11720
|
description?: string | undefined;
|
|
@@ -11722,7 +11731,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11722
11731
|
}[] | undefined;
|
|
11723
11732
|
scope?: "internal" | "external" | undefined;
|
|
11724
11733
|
}[] | undefined;
|
|
11725
|
-
scope?: "instance" | "collection" | undefined;
|
|
11726
11734
|
listens?: {
|
|
11727
11735
|
event: string;
|
|
11728
11736
|
triggers: string;
|
|
@@ -11873,7 +11881,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
11873
11881
|
description: z.ZodOptional<z.ZodString>;
|
|
11874
11882
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
11875
11883
|
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.
|
|
11884
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
11877
11885
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
11878
11886
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11879
11887
|
name: z.ZodString;
|
|
@@ -12220,6 +12228,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12220
12228
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
12221
12229
|
}, "strip", z.ZodTypeAny, {
|
|
12222
12230
|
name: string;
|
|
12231
|
+
scope: "instance" | "collection";
|
|
12223
12232
|
ui?: Record<string, unknown> | undefined;
|
|
12224
12233
|
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
12234
|
description?: string | undefined;
|
|
@@ -12236,7 +12245,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12236
12245
|
}[] | undefined;
|
|
12237
12246
|
scope?: "internal" | "external" | undefined;
|
|
12238
12247
|
}[] | undefined;
|
|
12239
|
-
scope?: "instance" | "collection" | undefined;
|
|
12240
12248
|
listens?: {
|
|
12241
12249
|
event: string;
|
|
12242
12250
|
triggers: string;
|
|
@@ -12316,6 +12324,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12316
12324
|
}[] | undefined;
|
|
12317
12325
|
}, {
|
|
12318
12326
|
name: string;
|
|
12327
|
+
scope: "instance" | "collection";
|
|
12319
12328
|
ui?: Record<string, unknown> | undefined;
|
|
12320
12329
|
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
12330
|
description?: string | undefined;
|
|
@@ -12332,7 +12341,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12332
12341
|
}[] | undefined;
|
|
12333
12342
|
scope?: "internal" | "external" | undefined;
|
|
12334
12343
|
}[] | undefined;
|
|
12335
|
-
scope?: "instance" | "collection" | undefined;
|
|
12336
12344
|
listens?: {
|
|
12337
12345
|
event: string;
|
|
12338
12346
|
triggers: string;
|
|
@@ -12417,6 +12425,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12417
12425
|
linkedEntity?: string | undefined;
|
|
12418
12426
|
traits?: (string | {
|
|
12419
12427
|
name: string;
|
|
12428
|
+
scope: "instance" | "collection";
|
|
12420
12429
|
ui?: Record<string, unknown> | undefined;
|
|
12421
12430
|
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
12431
|
description?: string | undefined;
|
|
@@ -12433,7 +12442,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12433
12442
|
}[] | undefined;
|
|
12434
12443
|
scope?: "internal" | "external" | undefined;
|
|
12435
12444
|
}[] | undefined;
|
|
12436
|
-
scope?: "instance" | "collection" | undefined;
|
|
12437
12445
|
listens?: {
|
|
12438
12446
|
event: string;
|
|
12439
12447
|
triggers: string;
|
|
@@ -12525,6 +12533,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12525
12533
|
linkedEntity?: string | undefined;
|
|
12526
12534
|
traits?: (string | {
|
|
12527
12535
|
name: string;
|
|
12536
|
+
scope: "instance" | "collection";
|
|
12528
12537
|
ui?: Record<string, unknown> | undefined;
|
|
12529
12538
|
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
12539
|
description?: string | undefined;
|
|
@@ -12541,7 +12550,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12541
12550
|
}[] | undefined;
|
|
12542
12551
|
scope?: "internal" | "external" | undefined;
|
|
12543
12552
|
}[] | undefined;
|
|
12544
|
-
scope?: "instance" | "collection" | undefined;
|
|
12545
12553
|
listens?: {
|
|
12546
12554
|
event: string;
|
|
12547
12555
|
triggers: string;
|
|
@@ -12897,6 +12905,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12897
12905
|
name: string;
|
|
12898
12906
|
traits: (string | {
|
|
12899
12907
|
name: string;
|
|
12908
|
+
scope: "instance" | "collection";
|
|
12900
12909
|
ui?: Record<string, unknown> | undefined;
|
|
12901
12910
|
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
12911
|
description?: string | undefined;
|
|
@@ -12913,7 +12922,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
12913
12922
|
}[] | undefined;
|
|
12914
12923
|
scope?: "internal" | "external" | undefined;
|
|
12915
12924
|
}[] | undefined;
|
|
12916
|
-
scope?: "instance" | "collection" | undefined;
|
|
12917
12925
|
listens?: {
|
|
12918
12926
|
event: string;
|
|
12919
12927
|
triggers: string;
|
|
@@ -13016,6 +13024,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13016
13024
|
linkedEntity?: string | undefined;
|
|
13017
13025
|
traits?: (string | {
|
|
13018
13026
|
name: string;
|
|
13027
|
+
scope: "instance" | "collection";
|
|
13019
13028
|
ui?: Record<string, unknown> | undefined;
|
|
13020
13029
|
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
13030
|
description?: string | undefined;
|
|
@@ -13032,7 +13041,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13032
13041
|
}[] | undefined;
|
|
13033
13042
|
scope?: "internal" | "external" | undefined;
|
|
13034
13043
|
}[] | undefined;
|
|
13035
|
-
scope?: "instance" | "collection" | undefined;
|
|
13036
13044
|
listens?: {
|
|
13037
13045
|
event: string;
|
|
13038
13046
|
triggers: string;
|
|
@@ -13275,6 +13283,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13275
13283
|
name: string;
|
|
13276
13284
|
traits: (string | {
|
|
13277
13285
|
name: string;
|
|
13286
|
+
scope: "instance" | "collection";
|
|
13278
13287
|
ui?: Record<string, unknown> | undefined;
|
|
13279
13288
|
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
13289
|
description?: string | undefined;
|
|
@@ -13291,7 +13300,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13291
13300
|
}[] | undefined;
|
|
13292
13301
|
scope?: "internal" | "external" | undefined;
|
|
13293
13302
|
}[] | undefined;
|
|
13294
|
-
scope?: "instance" | "collection" | undefined;
|
|
13295
13303
|
listens?: {
|
|
13296
13304
|
event: string;
|
|
13297
13305
|
triggers: string;
|
|
@@ -13394,6 +13402,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13394
13402
|
linkedEntity?: string | undefined;
|
|
13395
13403
|
traits?: (string | {
|
|
13396
13404
|
name: string;
|
|
13405
|
+
scope: "instance" | "collection";
|
|
13397
13406
|
ui?: Record<string, unknown> | undefined;
|
|
13398
13407
|
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
13408
|
description?: string | undefined;
|
|
@@ -13410,7 +13419,6 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13410
13419
|
}[] | undefined;
|
|
13411
13420
|
scope?: "internal" | "external" | undefined;
|
|
13412
13421
|
}[] | undefined;
|
|
13413
|
-
scope?: "instance" | "collection" | undefined;
|
|
13414
13422
|
listens?: {
|
|
13415
13423
|
event: string;
|
|
13416
13424
|
triggers: string;
|
|
@@ -13985,7 +13993,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
13985
13993
|
description: z.ZodOptional<z.ZodString>;
|
|
13986
13994
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
13987
13995
|
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.
|
|
13996
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
13989
13997
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
13990
13998
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13991
13999
|
name: z.ZodString;
|
|
@@ -14332,6 +14340,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14332
14340
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14333
14341
|
}, "strip", z.ZodTypeAny, {
|
|
14334
14342
|
name: string;
|
|
14343
|
+
scope: "instance" | "collection";
|
|
14335
14344
|
ui?: Record<string, unknown> | undefined;
|
|
14336
14345
|
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
14346
|
description?: string | undefined;
|
|
@@ -14348,7 +14357,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14348
14357
|
}[] | undefined;
|
|
14349
14358
|
scope?: "internal" | "external" | undefined;
|
|
14350
14359
|
}[] | undefined;
|
|
14351
|
-
scope?: "instance" | "collection" | undefined;
|
|
14352
14360
|
listens?: {
|
|
14353
14361
|
event: string;
|
|
14354
14362
|
triggers: string;
|
|
@@ -14428,6 +14436,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14428
14436
|
}[] | undefined;
|
|
14429
14437
|
}, {
|
|
14430
14438
|
name: string;
|
|
14439
|
+
scope: "instance" | "collection";
|
|
14431
14440
|
ui?: Record<string, unknown> | undefined;
|
|
14432
14441
|
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
14442
|
description?: string | undefined;
|
|
@@ -14444,7 +14453,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14444
14453
|
}[] | undefined;
|
|
14445
14454
|
scope?: "internal" | "external" | undefined;
|
|
14446
14455
|
}[] | undefined;
|
|
14447
|
-
scope?: "instance" | "collection" | undefined;
|
|
14448
14456
|
listens?: {
|
|
14449
14457
|
event: string;
|
|
14450
14458
|
triggers: string;
|
|
@@ -14595,7 +14603,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14595
14603
|
description: z.ZodOptional<z.ZodString>;
|
|
14596
14604
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
14597
14605
|
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.
|
|
14606
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
14599
14607
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
14600
14608
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14601
14609
|
name: z.ZodString;
|
|
@@ -14942,6 +14950,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14942
14950
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14943
14951
|
}, "strip", z.ZodTypeAny, {
|
|
14944
14952
|
name: string;
|
|
14953
|
+
scope: "instance" | "collection";
|
|
14945
14954
|
ui?: Record<string, unknown> | undefined;
|
|
14946
14955
|
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
14956
|
description?: string | undefined;
|
|
@@ -14958,7 +14967,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
14958
14967
|
}[] | undefined;
|
|
14959
14968
|
scope?: "internal" | "external" | undefined;
|
|
14960
14969
|
}[] | undefined;
|
|
14961
|
-
scope?: "instance" | "collection" | undefined;
|
|
14962
14970
|
listens?: {
|
|
14963
14971
|
event: string;
|
|
14964
14972
|
triggers: string;
|
|
@@ -15038,6 +15046,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15038
15046
|
}[] | undefined;
|
|
15039
15047
|
}, {
|
|
15040
15048
|
name: string;
|
|
15049
|
+
scope: "instance" | "collection";
|
|
15041
15050
|
ui?: Record<string, unknown> | undefined;
|
|
15042
15051
|
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
15052
|
description?: string | undefined;
|
|
@@ -15054,7 +15063,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15054
15063
|
}[] | undefined;
|
|
15055
15064
|
scope?: "internal" | "external" | undefined;
|
|
15056
15065
|
}[] | undefined;
|
|
15057
|
-
scope?: "instance" | "collection" | undefined;
|
|
15058
15066
|
listens?: {
|
|
15059
15067
|
event: string;
|
|
15060
15068
|
triggers: string;
|
|
@@ -15139,6 +15147,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15139
15147
|
linkedEntity?: string | undefined;
|
|
15140
15148
|
traits?: (string | {
|
|
15141
15149
|
name: string;
|
|
15150
|
+
scope: "instance" | "collection";
|
|
15142
15151
|
ui?: Record<string, unknown> | undefined;
|
|
15143
15152
|
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
15153
|
description?: string | undefined;
|
|
@@ -15155,7 +15164,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15155
15164
|
}[] | undefined;
|
|
15156
15165
|
scope?: "internal" | "external" | undefined;
|
|
15157
15166
|
}[] | undefined;
|
|
15158
|
-
scope?: "instance" | "collection" | undefined;
|
|
15159
15167
|
listens?: {
|
|
15160
15168
|
event: string;
|
|
15161
15169
|
triggers: string;
|
|
@@ -15247,6 +15255,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15247
15255
|
linkedEntity?: string | undefined;
|
|
15248
15256
|
traits?: (string | {
|
|
15249
15257
|
name: string;
|
|
15258
|
+
scope: "instance" | "collection";
|
|
15250
15259
|
ui?: Record<string, unknown> | undefined;
|
|
15251
15260
|
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
15261
|
description?: string | undefined;
|
|
@@ -15263,7 +15272,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15263
15272
|
}[] | undefined;
|
|
15264
15273
|
scope?: "internal" | "external" | undefined;
|
|
15265
15274
|
}[] | undefined;
|
|
15266
|
-
scope?: "instance" | "collection" | undefined;
|
|
15267
15275
|
listens?: {
|
|
15268
15276
|
event: string;
|
|
15269
15277
|
triggers: string;
|
|
@@ -15619,6 +15627,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15619
15627
|
name: string;
|
|
15620
15628
|
traits: (string | {
|
|
15621
15629
|
name: string;
|
|
15630
|
+
scope: "instance" | "collection";
|
|
15622
15631
|
ui?: Record<string, unknown> | undefined;
|
|
15623
15632
|
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
15633
|
description?: string | undefined;
|
|
@@ -15635,7 +15644,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15635
15644
|
}[] | undefined;
|
|
15636
15645
|
scope?: "internal" | "external" | undefined;
|
|
15637
15646
|
}[] | undefined;
|
|
15638
|
-
scope?: "instance" | "collection" | undefined;
|
|
15639
15647
|
listens?: {
|
|
15640
15648
|
event: string;
|
|
15641
15649
|
triggers: string;
|
|
@@ -15738,6 +15746,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15738
15746
|
linkedEntity?: string | undefined;
|
|
15739
15747
|
traits?: (string | {
|
|
15740
15748
|
name: string;
|
|
15749
|
+
scope: "instance" | "collection";
|
|
15741
15750
|
ui?: Record<string, unknown> | undefined;
|
|
15742
15751
|
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
15752
|
description?: string | undefined;
|
|
@@ -15754,7 +15763,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15754
15763
|
}[] | undefined;
|
|
15755
15764
|
scope?: "internal" | "external" | undefined;
|
|
15756
15765
|
}[] | undefined;
|
|
15757
|
-
scope?: "instance" | "collection" | undefined;
|
|
15758
15766
|
listens?: {
|
|
15759
15767
|
event: string;
|
|
15760
15768
|
triggers: string;
|
|
@@ -15997,6 +16005,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
15997
16005
|
name: string;
|
|
15998
16006
|
traits: (string | {
|
|
15999
16007
|
name: string;
|
|
16008
|
+
scope: "instance" | "collection";
|
|
16000
16009
|
ui?: Record<string, unknown> | undefined;
|
|
16001
16010
|
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
16011
|
description?: string | undefined;
|
|
@@ -16013,7 +16022,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16013
16022
|
}[] | undefined;
|
|
16014
16023
|
scope?: "internal" | "external" | undefined;
|
|
16015
16024
|
}[] | undefined;
|
|
16016
|
-
scope?: "instance" | "collection" | undefined;
|
|
16017
16025
|
listens?: {
|
|
16018
16026
|
event: string;
|
|
16019
16027
|
triggers: string;
|
|
@@ -16116,6 +16124,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16116
16124
|
linkedEntity?: string | undefined;
|
|
16117
16125
|
traits?: (string | {
|
|
16118
16126
|
name: string;
|
|
16127
|
+
scope: "instance" | "collection";
|
|
16119
16128
|
ui?: Record<string, unknown> | undefined;
|
|
16120
16129
|
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
16130
|
description?: string | undefined;
|
|
@@ -16132,7 +16141,6 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16132
16141
|
}[] | undefined;
|
|
16133
16142
|
scope?: "internal" | "external" | undefined;
|
|
16134
16143
|
}[] | undefined;
|
|
16135
|
-
scope?: "instance" | "collection" | undefined;
|
|
16136
16144
|
listens?: {
|
|
16137
16145
|
event: string;
|
|
16138
16146
|
triggers: string;
|
|
@@ -16948,7 +16956,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
16948
16956
|
description: z.ZodOptional<z.ZodString>;
|
|
16949
16957
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
16950
16958
|
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.
|
|
16959
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
16952
16960
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
16953
16961
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16954
16962
|
name: z.ZodString;
|
|
@@ -17295,6 +17303,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17295
17303
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17296
17304
|
}, "strip", z.ZodTypeAny, {
|
|
17297
17305
|
name: string;
|
|
17306
|
+
scope: "instance" | "collection";
|
|
17298
17307
|
ui?: Record<string, unknown> | undefined;
|
|
17299
17308
|
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
17309
|
description?: string | undefined;
|
|
@@ -17311,7 +17320,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17311
17320
|
}[] | undefined;
|
|
17312
17321
|
scope?: "internal" | "external" | undefined;
|
|
17313
17322
|
}[] | undefined;
|
|
17314
|
-
scope?: "instance" | "collection" | undefined;
|
|
17315
17323
|
listens?: {
|
|
17316
17324
|
event: string;
|
|
17317
17325
|
triggers: string;
|
|
@@ -17391,6 +17399,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17391
17399
|
}[] | undefined;
|
|
17392
17400
|
}, {
|
|
17393
17401
|
name: string;
|
|
17402
|
+
scope: "instance" | "collection";
|
|
17394
17403
|
ui?: Record<string, unknown> | undefined;
|
|
17395
17404
|
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
17405
|
description?: string | undefined;
|
|
@@ -17407,7 +17416,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17407
17416
|
}[] | undefined;
|
|
17408
17417
|
scope?: "internal" | "external" | undefined;
|
|
17409
17418
|
}[] | undefined;
|
|
17410
|
-
scope?: "instance" | "collection" | undefined;
|
|
17411
17419
|
listens?: {
|
|
17412
17420
|
event: string;
|
|
17413
17421
|
triggers: string;
|
|
@@ -17558,7 +17566,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17558
17566
|
description: z.ZodOptional<z.ZodString>;
|
|
17559
17567
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
17560
17568
|
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.
|
|
17569
|
+
scope: z.ZodEnum<["instance", "collection"]>;
|
|
17562
17570
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
17563
17571
|
requiredFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17564
17572
|
name: z.ZodString;
|
|
@@ -17905,6 +17913,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17905
17913
|
ui: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
17906
17914
|
}, "strip", z.ZodTypeAny, {
|
|
17907
17915
|
name: string;
|
|
17916
|
+
scope: "instance" | "collection";
|
|
17908
17917
|
ui?: Record<string, unknown> | undefined;
|
|
17909
17918
|
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
17919
|
description?: string | undefined;
|
|
@@ -17921,7 +17930,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17921
17930
|
}[] | undefined;
|
|
17922
17931
|
scope?: "internal" | "external" | undefined;
|
|
17923
17932
|
}[] | undefined;
|
|
17924
|
-
scope?: "instance" | "collection" | undefined;
|
|
17925
17933
|
listens?: {
|
|
17926
17934
|
event: string;
|
|
17927
17935
|
triggers: string;
|
|
@@ -18001,6 +18009,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18001
18009
|
}[] | undefined;
|
|
18002
18010
|
}, {
|
|
18003
18011
|
name: string;
|
|
18012
|
+
scope: "instance" | "collection";
|
|
18004
18013
|
ui?: Record<string, unknown> | undefined;
|
|
18005
18014
|
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
18015
|
description?: string | undefined;
|
|
@@ -18017,7 +18026,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18017
18026
|
}[] | undefined;
|
|
18018
18027
|
scope?: "internal" | "external" | undefined;
|
|
18019
18028
|
}[] | undefined;
|
|
18020
|
-
scope?: "instance" | "collection" | undefined;
|
|
18021
18029
|
listens?: {
|
|
18022
18030
|
event: string;
|
|
18023
18031
|
triggers: string;
|
|
@@ -18102,6 +18110,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18102
18110
|
linkedEntity?: string | undefined;
|
|
18103
18111
|
traits?: (string | {
|
|
18104
18112
|
name: string;
|
|
18113
|
+
scope: "instance" | "collection";
|
|
18105
18114
|
ui?: Record<string, unknown> | undefined;
|
|
18106
18115
|
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
18116
|
description?: string | undefined;
|
|
@@ -18118,7 +18127,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18118
18127
|
}[] | undefined;
|
|
18119
18128
|
scope?: "internal" | "external" | undefined;
|
|
18120
18129
|
}[] | undefined;
|
|
18121
|
-
scope?: "instance" | "collection" | undefined;
|
|
18122
18130
|
listens?: {
|
|
18123
18131
|
event: string;
|
|
18124
18132
|
triggers: string;
|
|
@@ -18210,6 +18218,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18210
18218
|
linkedEntity?: string | undefined;
|
|
18211
18219
|
traits?: (string | {
|
|
18212
18220
|
name: string;
|
|
18221
|
+
scope: "instance" | "collection";
|
|
18213
18222
|
ui?: Record<string, unknown> | undefined;
|
|
18214
18223
|
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
18224
|
description?: string | undefined;
|
|
@@ -18226,7 +18235,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18226
18235
|
}[] | undefined;
|
|
18227
18236
|
scope?: "internal" | "external" | undefined;
|
|
18228
18237
|
}[] | undefined;
|
|
18229
|
-
scope?: "instance" | "collection" | undefined;
|
|
18230
18238
|
listens?: {
|
|
18231
18239
|
event: string;
|
|
18232
18240
|
triggers: string;
|
|
@@ -18582,6 +18590,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18582
18590
|
name: string;
|
|
18583
18591
|
traits: (string | {
|
|
18584
18592
|
name: string;
|
|
18593
|
+
scope: "instance" | "collection";
|
|
18585
18594
|
ui?: Record<string, unknown> | undefined;
|
|
18586
18595
|
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
18596
|
description?: string | undefined;
|
|
@@ -18598,7 +18607,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18598
18607
|
}[] | undefined;
|
|
18599
18608
|
scope?: "internal" | "external" | undefined;
|
|
18600
18609
|
}[] | undefined;
|
|
18601
|
-
scope?: "instance" | "collection" | undefined;
|
|
18602
18610
|
listens?: {
|
|
18603
18611
|
event: string;
|
|
18604
18612
|
triggers: string;
|
|
@@ -18701,6 +18709,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18701
18709
|
linkedEntity?: string | undefined;
|
|
18702
18710
|
traits?: (string | {
|
|
18703
18711
|
name: string;
|
|
18712
|
+
scope: "instance" | "collection";
|
|
18704
18713
|
ui?: Record<string, unknown> | undefined;
|
|
18705
18714
|
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
18715
|
description?: string | undefined;
|
|
@@ -18717,7 +18726,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18717
18726
|
}[] | undefined;
|
|
18718
18727
|
scope?: "internal" | "external" | undefined;
|
|
18719
18728
|
}[] | undefined;
|
|
18720
|
-
scope?: "instance" | "collection" | undefined;
|
|
18721
18729
|
listens?: {
|
|
18722
18730
|
event: string;
|
|
18723
18731
|
triggers: string;
|
|
@@ -18960,6 +18968,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18960
18968
|
name: string;
|
|
18961
18969
|
traits: (string | {
|
|
18962
18970
|
name: string;
|
|
18971
|
+
scope: "instance" | "collection";
|
|
18963
18972
|
ui?: Record<string, unknown> | undefined;
|
|
18964
18973
|
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
18974
|
description?: string | undefined;
|
|
@@ -18976,7 +18985,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
18976
18985
|
}[] | undefined;
|
|
18977
18986
|
scope?: "internal" | "external" | undefined;
|
|
18978
18987
|
}[] | undefined;
|
|
18979
|
-
scope?: "instance" | "collection" | undefined;
|
|
18980
18988
|
listens?: {
|
|
18981
18989
|
event: string;
|
|
18982
18990
|
triggers: string;
|
|
@@ -19079,6 +19087,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19079
19087
|
linkedEntity?: string | undefined;
|
|
19080
19088
|
traits?: (string | {
|
|
19081
19089
|
name: string;
|
|
19090
|
+
scope: "instance" | "collection";
|
|
19082
19091
|
ui?: Record<string, unknown> | undefined;
|
|
19083
19092
|
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
19093
|
description?: string | undefined;
|
|
@@ -19095,7 +19104,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19095
19104
|
}[] | undefined;
|
|
19096
19105
|
scope?: "internal" | "external" | undefined;
|
|
19097
19106
|
}[] | undefined;
|
|
19098
|
-
scope?: "instance" | "collection" | undefined;
|
|
19099
19107
|
listens?: {
|
|
19100
19108
|
event: string;
|
|
19101
19109
|
triggers: string;
|
|
@@ -19516,6 +19524,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19516
19524
|
name: string;
|
|
19517
19525
|
traits: (string | {
|
|
19518
19526
|
name: string;
|
|
19527
|
+
scope: "instance" | "collection";
|
|
19519
19528
|
ui?: Record<string, unknown> | undefined;
|
|
19520
19529
|
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
19530
|
description?: string | undefined;
|
|
@@ -19532,7 +19541,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19532
19541
|
}[] | undefined;
|
|
19533
19542
|
scope?: "internal" | "external" | undefined;
|
|
19534
19543
|
}[] | undefined;
|
|
19535
|
-
scope?: "instance" | "collection" | undefined;
|
|
19536
19544
|
listens?: {
|
|
19537
19545
|
event: string;
|
|
19538
19546
|
triggers: string;
|
|
@@ -19635,6 +19643,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19635
19643
|
linkedEntity?: string | undefined;
|
|
19636
19644
|
traits?: (string | {
|
|
19637
19645
|
name: string;
|
|
19646
|
+
scope: "instance" | "collection";
|
|
19638
19647
|
ui?: Record<string, unknown> | undefined;
|
|
19639
19648
|
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
19649
|
description?: string | undefined;
|
|
@@ -19651,7 +19660,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19651
19660
|
}[] | undefined;
|
|
19652
19661
|
scope?: "internal" | "external" | undefined;
|
|
19653
19662
|
}[] | undefined;
|
|
19654
|
-
scope?: "instance" | "collection" | undefined;
|
|
19655
19663
|
listens?: {
|
|
19656
19664
|
event: string;
|
|
19657
19665
|
triggers: string;
|
|
@@ -19983,6 +19991,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19983
19991
|
name: string;
|
|
19984
19992
|
traits: (string | {
|
|
19985
19993
|
name: string;
|
|
19994
|
+
scope: "instance" | "collection";
|
|
19986
19995
|
ui?: Record<string, unknown> | undefined;
|
|
19987
19996
|
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
19997
|
description?: string | undefined;
|
|
@@ -19999,7 +20008,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19999
20008
|
}[] | undefined;
|
|
20000
20009
|
scope?: "internal" | "external" | undefined;
|
|
20001
20010
|
}[] | undefined;
|
|
20002
|
-
scope?: "instance" | "collection" | undefined;
|
|
20003
20011
|
listens?: {
|
|
20004
20012
|
event: string;
|
|
20005
20013
|
triggers: string;
|
|
@@ -20102,6 +20110,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20102
20110
|
linkedEntity?: string | undefined;
|
|
20103
20111
|
traits?: (string | {
|
|
20104
20112
|
name: string;
|
|
20113
|
+
scope: "instance" | "collection";
|
|
20105
20114
|
ui?: Record<string, unknown> | undefined;
|
|
20106
20115
|
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
20116
|
description?: string | undefined;
|
|
@@ -20118,7 +20127,6 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20118
20127
|
}[] | undefined;
|
|
20119
20128
|
scope?: "internal" | "external" | undefined;
|
|
20120
20129
|
}[] | undefined;
|
|
20121
|
-
scope?: "instance" | "collection" | undefined;
|
|
20122
20130
|
listens?: {
|
|
20123
20131
|
event: string;
|
|
20124
20132
|
triggers: string;
|
|
@@ -20497,6 +20505,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20497
20505
|
name: string;
|
|
20498
20506
|
traits: (string | {
|
|
20499
20507
|
name: string;
|
|
20508
|
+
scope: "instance" | "collection";
|
|
20500
20509
|
ui?: Record<string, unknown> | undefined;
|
|
20501
20510
|
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
20511
|
description?: string | undefined;
|
|
@@ -20513,7 +20522,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20513
20522
|
}[] | undefined;
|
|
20514
20523
|
scope?: "internal" | "external" | undefined;
|
|
20515
20524
|
}[] | undefined;
|
|
20516
|
-
scope?: "instance" | "collection" | undefined;
|
|
20517
20525
|
listens?: {
|
|
20518
20526
|
event: string;
|
|
20519
20527
|
triggers: string;
|
|
@@ -20616,6 +20624,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20616
20624
|
linkedEntity?: string | undefined;
|
|
20617
20625
|
traits?: (string | {
|
|
20618
20626
|
name: string;
|
|
20627
|
+
scope: "instance" | "collection";
|
|
20619
20628
|
ui?: Record<string, unknown> | undefined;
|
|
20620
20629
|
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
20630
|
description?: string | undefined;
|
|
@@ -20632,7 +20641,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20632
20641
|
}[] | undefined;
|
|
20633
20642
|
scope?: "internal" | "external" | undefined;
|
|
20634
20643
|
}[] | undefined;
|
|
20635
|
-
scope?: "instance" | "collection" | undefined;
|
|
20636
20644
|
listens?: {
|
|
20637
20645
|
event: string;
|
|
20638
20646
|
triggers: string;
|
|
@@ -20964,6 +20972,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20964
20972
|
name: string;
|
|
20965
20973
|
traits: (string | {
|
|
20966
20974
|
name: string;
|
|
20975
|
+
scope: "instance" | "collection";
|
|
20967
20976
|
ui?: Record<string, unknown> | undefined;
|
|
20968
20977
|
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
20978
|
description?: string | undefined;
|
|
@@ -20980,7 +20989,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
20980
20989
|
}[] | undefined;
|
|
20981
20990
|
scope?: "internal" | "external" | undefined;
|
|
20982
20991
|
}[] | undefined;
|
|
20983
|
-
scope?: "instance" | "collection" | undefined;
|
|
20984
20992
|
listens?: {
|
|
20985
20993
|
event: string;
|
|
20986
20994
|
triggers: string;
|
|
@@ -21083,6 +21091,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21083
21091
|
linkedEntity?: string | undefined;
|
|
21084
21092
|
traits?: (string | {
|
|
21085
21093
|
name: string;
|
|
21094
|
+
scope: "instance" | "collection";
|
|
21086
21095
|
ui?: Record<string, unknown> | undefined;
|
|
21087
21096
|
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
21097
|
description?: string | undefined;
|
|
@@ -21099,7 +21108,6 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
21099
21108
|
}[] | undefined;
|
|
21100
21109
|
scope?: "internal" | "external" | undefined;
|
|
21101
21110
|
}[] | undefined;
|
|
21102
|
-
scope?: "instance" | "collection" | undefined;
|
|
21103
21111
|
listens?: {
|
|
21104
21112
|
event: string;
|
|
21105
21113
|
triggers: string;
|