@almadar/core 10.14.0 → 10.16.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 +3 -3
- package/dist/builders.js +2 -4
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-Ds6d_mMY.d.ts → compose-behaviors-DEeRtnHP.d.ts} +1 -1
- package/dist/factory/index.d.ts +3 -3
- package/dist/factory/index.js +1 -4
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +3 -5
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +45 -8
- package/dist/index.js +15 -13
- package/dist/index.js.map +1 -1
- package/dist/{schema-BVcq7eXk.d.ts → schema-BOGLyI7O.d.ts} +401 -289
- package/dist/{trait-Ctj2l6ma.d.ts → trait-BnNByIRE.d.ts} +70 -63
- package/dist/types/index.d.ts +18 -9
- package/dist/types/index.js +3 -8
- package/dist/types/index.js.map +1 -1
- package/dist/{types-QQ9BTzkx.d.ts → types-By4AQApw.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { E as Expression, S as SExpr } from './expression-BUIi9ezJ.js';
|
|
2
|
-
import { T as TraitConfig, l as TraitConfigObject, S as ServiceRef, d as Entity, f as EntityField, g as EntityPersistence, i as TraitRef, m as EventPayloadField, n as ConfigFieldDeclaration, o as ServiceDefinition, a as Trait } from './trait-
|
|
2
|
+
import { T as TraitConfig, l as TraitConfigObject, S as ServiceRef, d as Entity, f as EntityField, g as EntityPersistence, i as TraitRef, m as EventPayloadField, n as ConfigFieldDeclaration, o as ServiceDefinition, a as Trait } from './trait-BnNByIRE.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -18430,36 +18430,37 @@ declare const EntityCallSchema: z.ZodEffects<z.ZodObject<{
|
|
|
18430
18430
|
extends: z.ZodString;
|
|
18431
18431
|
name: z.ZodOptional<z.ZodString>;
|
|
18432
18432
|
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
18433
|
-
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"
|
|
18433
|
+
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"]>>;
|
|
18434
18434
|
collection: z.ZodOptional<z.ZodString>;
|
|
18435
18435
|
}, "strip", z.ZodTypeAny, {
|
|
18436
18436
|
extends: string;
|
|
18437
18437
|
name?: string | undefined;
|
|
18438
|
-
persistence?: "persistent" | "runtime" |
|
|
18438
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18439
18439
|
collection?: string | undefined;
|
|
18440
18440
|
fields?: EntityField[] | undefined;
|
|
18441
18441
|
}, {
|
|
18442
18442
|
extends: string;
|
|
18443
18443
|
name?: string | undefined;
|
|
18444
|
-
persistence?: "persistent" | "runtime" |
|
|
18444
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18445
18445
|
collection?: string | undefined;
|
|
18446
18446
|
fields?: unknown[] | undefined;
|
|
18447
18447
|
}>, {
|
|
18448
18448
|
extends: string;
|
|
18449
18449
|
name?: string | undefined;
|
|
18450
|
-
persistence?: "persistent" | "runtime" |
|
|
18450
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18451
18451
|
collection?: string | undefined;
|
|
18452
18452
|
fields?: EntityField[] | undefined;
|
|
18453
18453
|
}, {
|
|
18454
18454
|
extends: string;
|
|
18455
18455
|
name?: string | undefined;
|
|
18456
|
-
persistence?: "persistent" | "runtime" |
|
|
18456
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18457
18457
|
collection?: string | undefined;
|
|
18458
18458
|
fields?: unknown[] | undefined;
|
|
18459
18459
|
}>;
|
|
18460
18460
|
declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
18461
18461
|
name: z.ZodString;
|
|
18462
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
18462
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
18463
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
18463
18464
|
collection: z.ZodOptional<z.ZodString>;
|
|
18464
18465
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
18465
18466
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -18494,9 +18495,10 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18494
18495
|
}>>;
|
|
18495
18496
|
}, "strip", z.ZodTypeAny, {
|
|
18496
18497
|
name: string;
|
|
18497
|
-
persistence: "persistent" | "runtime"
|
|
18498
|
+
persistence: "persistent" | "runtime";
|
|
18498
18499
|
fields: EntityField[];
|
|
18499
18500
|
description?: string | undefined;
|
|
18501
|
+
shared?: boolean | undefined;
|
|
18500
18502
|
collection?: string | undefined;
|
|
18501
18503
|
instances?: Record<string, unknown>[] | undefined;
|
|
18502
18504
|
timestamps?: boolean | undefined;
|
|
@@ -18515,7 +18517,8 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18515
18517
|
name: string;
|
|
18516
18518
|
fields: unknown[];
|
|
18517
18519
|
description?: string | undefined;
|
|
18518
|
-
persistence?: "persistent" | "runtime" |
|
|
18520
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18521
|
+
shared?: boolean | undefined;
|
|
18519
18522
|
collection?: string | undefined;
|
|
18520
18523
|
instances?: Record<string, unknown>[] | undefined;
|
|
18521
18524
|
timestamps?: boolean | undefined;
|
|
@@ -18534,30 +18537,30 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18534
18537
|
extends: z.ZodString;
|
|
18535
18538
|
name: z.ZodOptional<z.ZodString>;
|
|
18536
18539
|
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
18537
|
-
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"
|
|
18540
|
+
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"]>>;
|
|
18538
18541
|
collection: z.ZodOptional<z.ZodString>;
|
|
18539
18542
|
}, "strip", z.ZodTypeAny, {
|
|
18540
18543
|
extends: string;
|
|
18541
18544
|
name?: string | undefined;
|
|
18542
|
-
persistence?: "persistent" | "runtime" |
|
|
18545
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18543
18546
|
collection?: string | undefined;
|
|
18544
18547
|
fields?: EntityField[] | undefined;
|
|
18545
18548
|
}, {
|
|
18546
18549
|
extends: string;
|
|
18547
18550
|
name?: string | undefined;
|
|
18548
|
-
persistence?: "persistent" | "runtime" |
|
|
18551
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18549
18552
|
collection?: string | undefined;
|
|
18550
18553
|
fields?: unknown[] | undefined;
|
|
18551
18554
|
}>, {
|
|
18552
18555
|
extends: string;
|
|
18553
18556
|
name?: string | undefined;
|
|
18554
|
-
persistence?: "persistent" | "runtime" |
|
|
18557
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18555
18558
|
collection?: string | undefined;
|
|
18556
18559
|
fields?: EntityField[] | undefined;
|
|
18557
18560
|
}, {
|
|
18558
18561
|
extends: string;
|
|
18559
18562
|
name?: string | undefined;
|
|
18560
|
-
persistence?: "persistent" | "runtime" |
|
|
18563
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
18561
18564
|
collection?: string | undefined;
|
|
18562
18565
|
fields?: unknown[] | undefined;
|
|
18563
18566
|
}>]>;
|
|
@@ -18770,10 +18773,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
18770
18773
|
}[];
|
|
18771
18774
|
description?: string | undefined;
|
|
18772
18775
|
runtime?: boolean | undefined;
|
|
18773
|
-
singleton?: boolean | undefined;
|
|
18774
18776
|
collection?: string | undefined;
|
|
18775
18777
|
timestamps?: boolean | undefined;
|
|
18776
18778
|
pages?: string[] | undefined;
|
|
18779
|
+
singleton?: boolean | undefined;
|
|
18777
18780
|
}, {
|
|
18778
18781
|
name: string;
|
|
18779
18782
|
fields: {
|
|
@@ -18785,10 +18788,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
18785
18788
|
}[];
|
|
18786
18789
|
description?: string | undefined;
|
|
18787
18790
|
runtime?: boolean | undefined;
|
|
18788
|
-
singleton?: boolean | undefined;
|
|
18789
18791
|
collection?: string | undefined;
|
|
18790
18792
|
timestamps?: boolean | undefined;
|
|
18791
18793
|
pages?: string[] | undefined;
|
|
18794
|
+
singleton?: boolean | undefined;
|
|
18792
18795
|
}>, "many">>;
|
|
18793
18796
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
18794
18797
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -19151,7 +19154,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19151
19154
|
}>>;
|
|
19152
19155
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
19153
19156
|
name: z.ZodString;
|
|
19154
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
19157
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
19158
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
19155
19159
|
collection: z.ZodOptional<z.ZodString>;
|
|
19156
19160
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
19157
19161
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -19186,9 +19190,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19186
19190
|
}>>;
|
|
19187
19191
|
}, "strip", z.ZodTypeAny, {
|
|
19188
19192
|
name: string;
|
|
19189
|
-
persistence: "persistent" | "runtime"
|
|
19193
|
+
persistence: "persistent" | "runtime";
|
|
19190
19194
|
fields: EntityField[];
|
|
19191
19195
|
description?: string | undefined;
|
|
19196
|
+
shared?: boolean | undefined;
|
|
19192
19197
|
collection?: string | undefined;
|
|
19193
19198
|
instances?: Record<string, unknown>[] | undefined;
|
|
19194
19199
|
timestamps?: boolean | undefined;
|
|
@@ -19207,7 +19212,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19207
19212
|
name: string;
|
|
19208
19213
|
fields: unknown[];
|
|
19209
19214
|
description?: string | undefined;
|
|
19210
|
-
persistence?: "persistent" | "runtime" |
|
|
19215
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
19216
|
+
shared?: boolean | undefined;
|
|
19211
19217
|
collection?: string | undefined;
|
|
19212
19218
|
instances?: Record<string, unknown>[] | undefined;
|
|
19213
19219
|
timestamps?: boolean | undefined;
|
|
@@ -19225,7 +19231,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19225
19231
|
}>>;
|
|
19226
19232
|
}, "strip", z.ZodTypeAny, {
|
|
19227
19233
|
name: string;
|
|
19228
|
-
scope: "
|
|
19234
|
+
scope: "collection" | "instance";
|
|
19229
19235
|
description?: string | undefined;
|
|
19230
19236
|
ui?: Record<string, unknown> | undefined;
|
|
19231
19237
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -19290,10 +19296,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19290
19296
|
}[];
|
|
19291
19297
|
description?: string | undefined;
|
|
19292
19298
|
runtime?: boolean | undefined;
|
|
19293
|
-
singleton?: boolean | undefined;
|
|
19294
19299
|
collection?: string | undefined;
|
|
19295
19300
|
timestamps?: boolean | undefined;
|
|
19296
19301
|
pages?: string[] | undefined;
|
|
19302
|
+
singleton?: boolean | undefined;
|
|
19297
19303
|
}[] | undefined;
|
|
19298
19304
|
stateMachine?: {
|
|
19299
19305
|
events: {
|
|
@@ -19352,9 +19358,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19352
19358
|
} | undefined;
|
|
19353
19359
|
sourceEntityDefinition?: {
|
|
19354
19360
|
name: string;
|
|
19355
|
-
persistence: "persistent" | "runtime"
|
|
19361
|
+
persistence: "persistent" | "runtime";
|
|
19356
19362
|
fields: EntityField[];
|
|
19357
19363
|
description?: string | undefined;
|
|
19364
|
+
shared?: boolean | undefined;
|
|
19358
19365
|
collection?: string | undefined;
|
|
19359
19366
|
instances?: Record<string, unknown>[] | undefined;
|
|
19360
19367
|
timestamps?: boolean | undefined;
|
|
@@ -19372,7 +19379,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19372
19379
|
} | undefined;
|
|
19373
19380
|
}, {
|
|
19374
19381
|
name: string;
|
|
19375
|
-
scope: "
|
|
19382
|
+
scope: "collection" | "instance";
|
|
19376
19383
|
description?: string | undefined;
|
|
19377
19384
|
ui?: Record<string, unknown> | undefined;
|
|
19378
19385
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -19437,10 +19444,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19437
19444
|
}[];
|
|
19438
19445
|
description?: string | undefined;
|
|
19439
19446
|
runtime?: boolean | undefined;
|
|
19440
|
-
singleton?: boolean | undefined;
|
|
19441
19447
|
collection?: string | undefined;
|
|
19442
19448
|
timestamps?: boolean | undefined;
|
|
19443
19449
|
pages?: string[] | undefined;
|
|
19450
|
+
singleton?: boolean | undefined;
|
|
19444
19451
|
}[] | undefined;
|
|
19445
19452
|
stateMachine?: {
|
|
19446
19453
|
events: {
|
|
@@ -19501,7 +19508,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19501
19508
|
name: string;
|
|
19502
19509
|
fields: unknown[];
|
|
19503
19510
|
description?: string | undefined;
|
|
19504
|
-
persistence?: "persistent" | "runtime" |
|
|
19511
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
19512
|
+
shared?: boolean | undefined;
|
|
19505
19513
|
collection?: string | undefined;
|
|
19506
19514
|
instances?: Record<string, unknown>[] | undefined;
|
|
19507
19515
|
timestamps?: boolean | undefined;
|
|
@@ -19524,7 +19532,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19524
19532
|
from?: string | undefined;
|
|
19525
19533
|
traits?: (string | {
|
|
19526
19534
|
name: string;
|
|
19527
|
-
scope: "
|
|
19535
|
+
scope: "collection" | "instance";
|
|
19528
19536
|
description?: string | undefined;
|
|
19529
19537
|
ui?: Record<string, unknown> | undefined;
|
|
19530
19538
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -19589,10 +19597,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19589
19597
|
}[];
|
|
19590
19598
|
description?: string | undefined;
|
|
19591
19599
|
runtime?: boolean | undefined;
|
|
19592
|
-
singleton?: boolean | undefined;
|
|
19593
19600
|
collection?: string | undefined;
|
|
19594
19601
|
timestamps?: boolean | undefined;
|
|
19595
19602
|
pages?: string[] | undefined;
|
|
19603
|
+
singleton?: boolean | undefined;
|
|
19596
19604
|
}[] | undefined;
|
|
19597
19605
|
stateMachine?: {
|
|
19598
19606
|
events: {
|
|
@@ -19651,9 +19659,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19651
19659
|
} | undefined;
|
|
19652
19660
|
sourceEntityDefinition?: {
|
|
19653
19661
|
name: string;
|
|
19654
|
-
persistence: "persistent" | "runtime"
|
|
19662
|
+
persistence: "persistent" | "runtime";
|
|
19655
19663
|
fields: EntityField[];
|
|
19656
19664
|
description?: string | undefined;
|
|
19665
|
+
shared?: boolean | undefined;
|
|
19657
19666
|
collection?: string | undefined;
|
|
19658
19667
|
instances?: Record<string, unknown>[] | undefined;
|
|
19659
19668
|
timestamps?: boolean | undefined;
|
|
@@ -19683,7 +19692,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19683
19692
|
from?: string | undefined;
|
|
19684
19693
|
traits?: (string | {
|
|
19685
19694
|
name: string;
|
|
19686
|
-
scope: "
|
|
19695
|
+
scope: "collection" | "instance";
|
|
19687
19696
|
description?: string | undefined;
|
|
19688
19697
|
ui?: Record<string, unknown> | undefined;
|
|
19689
19698
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -19748,10 +19757,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19748
19757
|
}[];
|
|
19749
19758
|
description?: string | undefined;
|
|
19750
19759
|
runtime?: boolean | undefined;
|
|
19751
|
-
singleton?: boolean | undefined;
|
|
19752
19760
|
collection?: string | undefined;
|
|
19753
19761
|
timestamps?: boolean | undefined;
|
|
19754
19762
|
pages?: string[] | undefined;
|
|
19763
|
+
singleton?: boolean | undefined;
|
|
19755
19764
|
}[] | undefined;
|
|
19756
19765
|
stateMachine?: {
|
|
19757
19766
|
events: {
|
|
@@ -19812,7 +19821,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19812
19821
|
name: string;
|
|
19813
19822
|
fields: unknown[];
|
|
19814
19823
|
description?: string | undefined;
|
|
19815
|
-
persistence?: "persistent" | "runtime" |
|
|
19824
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
19825
|
+
shared?: boolean | undefined;
|
|
19816
19826
|
collection?: string | undefined;
|
|
19817
19827
|
instances?: Record<string, unknown>[] | undefined;
|
|
19818
19828
|
timestamps?: boolean | undefined;
|
|
@@ -19976,10 +19986,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19976
19986
|
}[];
|
|
19977
19987
|
description?: string | undefined;
|
|
19978
19988
|
runtime?: boolean | undefined;
|
|
19979
|
-
singleton?: boolean | undefined;
|
|
19980
19989
|
collection?: string | undefined;
|
|
19981
19990
|
timestamps?: boolean | undefined;
|
|
19982
19991
|
pages?: string[] | undefined;
|
|
19992
|
+
singleton?: boolean | undefined;
|
|
19983
19993
|
}, {
|
|
19984
19994
|
name: string;
|
|
19985
19995
|
fields: {
|
|
@@ -19991,10 +20001,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19991
20001
|
}[];
|
|
19992
20002
|
description?: string | undefined;
|
|
19993
20003
|
runtime?: boolean | undefined;
|
|
19994
|
-
singleton?: boolean | undefined;
|
|
19995
20004
|
collection?: string | undefined;
|
|
19996
20005
|
timestamps?: boolean | undefined;
|
|
19997
20006
|
pages?: string[] | undefined;
|
|
20007
|
+
singleton?: boolean | undefined;
|
|
19998
20008
|
}>, "many">>;
|
|
19999
20009
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
20000
20010
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -20357,7 +20367,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20357
20367
|
}>>;
|
|
20358
20368
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
20359
20369
|
name: z.ZodString;
|
|
20360
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
20370
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
20371
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
20361
20372
|
collection: z.ZodOptional<z.ZodString>;
|
|
20362
20373
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
20363
20374
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -20392,9 +20403,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20392
20403
|
}>>;
|
|
20393
20404
|
}, "strip", z.ZodTypeAny, {
|
|
20394
20405
|
name: string;
|
|
20395
|
-
persistence: "persistent" | "runtime"
|
|
20406
|
+
persistence: "persistent" | "runtime";
|
|
20396
20407
|
fields: EntityField[];
|
|
20397
20408
|
description?: string | undefined;
|
|
20409
|
+
shared?: boolean | undefined;
|
|
20398
20410
|
collection?: string | undefined;
|
|
20399
20411
|
instances?: Record<string, unknown>[] | undefined;
|
|
20400
20412
|
timestamps?: boolean | undefined;
|
|
@@ -20413,7 +20425,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20413
20425
|
name: string;
|
|
20414
20426
|
fields: unknown[];
|
|
20415
20427
|
description?: string | undefined;
|
|
20416
|
-
persistence?: "persistent" | "runtime" |
|
|
20428
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
20429
|
+
shared?: boolean | undefined;
|
|
20417
20430
|
collection?: string | undefined;
|
|
20418
20431
|
instances?: Record<string, unknown>[] | undefined;
|
|
20419
20432
|
timestamps?: boolean | undefined;
|
|
@@ -20431,7 +20444,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20431
20444
|
}>>;
|
|
20432
20445
|
}, "strip", z.ZodTypeAny, {
|
|
20433
20446
|
name: string;
|
|
20434
|
-
scope: "
|
|
20447
|
+
scope: "collection" | "instance";
|
|
20435
20448
|
description?: string | undefined;
|
|
20436
20449
|
ui?: Record<string, unknown> | undefined;
|
|
20437
20450
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -20496,10 +20509,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20496
20509
|
}[];
|
|
20497
20510
|
description?: string | undefined;
|
|
20498
20511
|
runtime?: boolean | undefined;
|
|
20499
|
-
singleton?: boolean | undefined;
|
|
20500
20512
|
collection?: string | undefined;
|
|
20501
20513
|
timestamps?: boolean | undefined;
|
|
20502
20514
|
pages?: string[] | undefined;
|
|
20515
|
+
singleton?: boolean | undefined;
|
|
20503
20516
|
}[] | undefined;
|
|
20504
20517
|
stateMachine?: {
|
|
20505
20518
|
events: {
|
|
@@ -20558,9 +20571,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20558
20571
|
} | undefined;
|
|
20559
20572
|
sourceEntityDefinition?: {
|
|
20560
20573
|
name: string;
|
|
20561
|
-
persistence: "persistent" | "runtime"
|
|
20574
|
+
persistence: "persistent" | "runtime";
|
|
20562
20575
|
fields: EntityField[];
|
|
20563
20576
|
description?: string | undefined;
|
|
20577
|
+
shared?: boolean | undefined;
|
|
20564
20578
|
collection?: string | undefined;
|
|
20565
20579
|
instances?: Record<string, unknown>[] | undefined;
|
|
20566
20580
|
timestamps?: boolean | undefined;
|
|
@@ -20578,7 +20592,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20578
20592
|
} | undefined;
|
|
20579
20593
|
}, {
|
|
20580
20594
|
name: string;
|
|
20581
|
-
scope: "
|
|
20595
|
+
scope: "collection" | "instance";
|
|
20582
20596
|
description?: string | undefined;
|
|
20583
20597
|
ui?: Record<string, unknown> | undefined;
|
|
20584
20598
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -20643,10 +20657,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20643
20657
|
}[];
|
|
20644
20658
|
description?: string | undefined;
|
|
20645
20659
|
runtime?: boolean | undefined;
|
|
20646
|
-
singleton?: boolean | undefined;
|
|
20647
20660
|
collection?: string | undefined;
|
|
20648
20661
|
timestamps?: boolean | undefined;
|
|
20649
20662
|
pages?: string[] | undefined;
|
|
20663
|
+
singleton?: boolean | undefined;
|
|
20650
20664
|
}[] | undefined;
|
|
20651
20665
|
stateMachine?: {
|
|
20652
20666
|
events: {
|
|
@@ -20707,7 +20721,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20707
20721
|
name: string;
|
|
20708
20722
|
fields: unknown[];
|
|
20709
20723
|
description?: string | undefined;
|
|
20710
|
-
persistence?: "persistent" | "runtime" |
|
|
20724
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
20725
|
+
shared?: boolean | undefined;
|
|
20711
20726
|
collection?: string | undefined;
|
|
20712
20727
|
instances?: Record<string, unknown>[] | undefined;
|
|
20713
20728
|
timestamps?: boolean | undefined;
|
|
@@ -20730,7 +20745,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20730
20745
|
from?: string | undefined;
|
|
20731
20746
|
traits?: (string | {
|
|
20732
20747
|
name: string;
|
|
20733
|
-
scope: "
|
|
20748
|
+
scope: "collection" | "instance";
|
|
20734
20749
|
description?: string | undefined;
|
|
20735
20750
|
ui?: Record<string, unknown> | undefined;
|
|
20736
20751
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -20795,10 +20810,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20795
20810
|
}[];
|
|
20796
20811
|
description?: string | undefined;
|
|
20797
20812
|
runtime?: boolean | undefined;
|
|
20798
|
-
singleton?: boolean | undefined;
|
|
20799
20813
|
collection?: string | undefined;
|
|
20800
20814
|
timestamps?: boolean | undefined;
|
|
20801
20815
|
pages?: string[] | undefined;
|
|
20816
|
+
singleton?: boolean | undefined;
|
|
20802
20817
|
}[] | undefined;
|
|
20803
20818
|
stateMachine?: {
|
|
20804
20819
|
events: {
|
|
@@ -20857,9 +20872,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20857
20872
|
} | undefined;
|
|
20858
20873
|
sourceEntityDefinition?: {
|
|
20859
20874
|
name: string;
|
|
20860
|
-
persistence: "persistent" | "runtime"
|
|
20875
|
+
persistence: "persistent" | "runtime";
|
|
20861
20876
|
fields: EntityField[];
|
|
20862
20877
|
description?: string | undefined;
|
|
20878
|
+
shared?: boolean | undefined;
|
|
20863
20879
|
collection?: string | undefined;
|
|
20864
20880
|
instances?: Record<string, unknown>[] | undefined;
|
|
20865
20881
|
timestamps?: boolean | undefined;
|
|
@@ -20889,7 +20905,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20889
20905
|
from?: string | undefined;
|
|
20890
20906
|
traits?: (string | {
|
|
20891
20907
|
name: string;
|
|
20892
|
-
scope: "
|
|
20908
|
+
scope: "collection" | "instance";
|
|
20893
20909
|
description?: string | undefined;
|
|
20894
20910
|
ui?: Record<string, unknown> | undefined;
|
|
20895
20911
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -20954,10 +20970,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20954
20970
|
}[];
|
|
20955
20971
|
description?: string | undefined;
|
|
20956
20972
|
runtime?: boolean | undefined;
|
|
20957
|
-
singleton?: boolean | undefined;
|
|
20958
20973
|
collection?: string | undefined;
|
|
20959
20974
|
timestamps?: boolean | undefined;
|
|
20960
20975
|
pages?: string[] | undefined;
|
|
20976
|
+
singleton?: boolean | undefined;
|
|
20961
20977
|
}[] | undefined;
|
|
20962
20978
|
stateMachine?: {
|
|
20963
20979
|
events: {
|
|
@@ -21018,7 +21034,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21018
21034
|
name: string;
|
|
21019
21035
|
fields: unknown[];
|
|
21020
21036
|
description?: string | undefined;
|
|
21021
|
-
persistence?: "persistent" | "runtime" |
|
|
21037
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
21038
|
+
shared?: boolean | undefined;
|
|
21022
21039
|
collection?: string | undefined;
|
|
21023
21040
|
instances?: Record<string, unknown>[] | undefined;
|
|
21024
21041
|
timestamps?: boolean | undefined;
|
|
@@ -21371,7 +21388,6 @@ interface OrbitalDefinition {
|
|
|
21371
21388
|
* Entity sharing depends on persistence type:
|
|
21372
21389
|
* - persistent: Shared (same DB collection)
|
|
21373
21390
|
* - runtime: Isolated (each orbital gets own instances)
|
|
21374
|
-
* - singleton: Shared (single global instance)
|
|
21375
21391
|
*/
|
|
21376
21392
|
entity: EntityRef;
|
|
21377
21393
|
/**
|
|
@@ -25477,7 +25493,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25477
25493
|
}>, z.ZodString]>, "many">>;
|
|
25478
25494
|
entity: z.ZodUnion<[z.ZodObject<{
|
|
25479
25495
|
name: z.ZodString;
|
|
25480
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
25496
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
25497
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
25481
25498
|
collection: z.ZodOptional<z.ZodString>;
|
|
25482
25499
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
25483
25500
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -25512,9 +25529,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25512
25529
|
}>>;
|
|
25513
25530
|
}, "strip", z.ZodTypeAny, {
|
|
25514
25531
|
name: string;
|
|
25515
|
-
persistence: "persistent" | "runtime"
|
|
25532
|
+
persistence: "persistent" | "runtime";
|
|
25516
25533
|
fields: EntityField[];
|
|
25517
25534
|
description?: string | undefined;
|
|
25535
|
+
shared?: boolean | undefined;
|
|
25518
25536
|
collection?: string | undefined;
|
|
25519
25537
|
instances?: Record<string, unknown>[] | undefined;
|
|
25520
25538
|
timestamps?: boolean | undefined;
|
|
@@ -25533,7 +25551,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25533
25551
|
name: string;
|
|
25534
25552
|
fields: unknown[];
|
|
25535
25553
|
description?: string | undefined;
|
|
25536
|
-
persistence?: "persistent" | "runtime" |
|
|
25554
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
25555
|
+
shared?: boolean | undefined;
|
|
25537
25556
|
collection?: string | undefined;
|
|
25538
25557
|
instances?: Record<string, unknown>[] | undefined;
|
|
25539
25558
|
timestamps?: boolean | undefined;
|
|
@@ -25552,30 +25571,30 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25552
25571
|
extends: z.ZodString;
|
|
25553
25572
|
name: z.ZodOptional<z.ZodString>;
|
|
25554
25573
|
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
25555
|
-
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"
|
|
25574
|
+
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"]>>;
|
|
25556
25575
|
collection: z.ZodOptional<z.ZodString>;
|
|
25557
25576
|
}, "strip", z.ZodTypeAny, {
|
|
25558
25577
|
extends: string;
|
|
25559
25578
|
name?: string | undefined;
|
|
25560
|
-
persistence?: "persistent" | "runtime" |
|
|
25579
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
25561
25580
|
collection?: string | undefined;
|
|
25562
25581
|
fields?: EntityField[] | undefined;
|
|
25563
25582
|
}, {
|
|
25564
25583
|
extends: string;
|
|
25565
25584
|
name?: string | undefined;
|
|
25566
|
-
persistence?: "persistent" | "runtime" |
|
|
25585
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
25567
25586
|
collection?: string | undefined;
|
|
25568
25587
|
fields?: unknown[] | undefined;
|
|
25569
25588
|
}>, {
|
|
25570
25589
|
extends: string;
|
|
25571
25590
|
name?: string | undefined;
|
|
25572
|
-
persistence?: "persistent" | "runtime" |
|
|
25591
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
25573
25592
|
collection?: string | undefined;
|
|
25574
25593
|
fields?: EntityField[] | undefined;
|
|
25575
25594
|
}, {
|
|
25576
25595
|
extends: string;
|
|
25577
25596
|
name?: string | undefined;
|
|
25578
|
-
persistence?: "persistent" | "runtime" |
|
|
25597
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
25579
25598
|
collection?: string | undefined;
|
|
25580
25599
|
fields?: unknown[] | undefined;
|
|
25581
25600
|
}>]>;
|
|
@@ -25669,10 +25688,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25669
25688
|
}[];
|
|
25670
25689
|
description?: string | undefined;
|
|
25671
25690
|
runtime?: boolean | undefined;
|
|
25672
|
-
singleton?: boolean | undefined;
|
|
25673
25691
|
collection?: string | undefined;
|
|
25674
25692
|
timestamps?: boolean | undefined;
|
|
25675
25693
|
pages?: string[] | undefined;
|
|
25694
|
+
singleton?: boolean | undefined;
|
|
25676
25695
|
}, {
|
|
25677
25696
|
name: string;
|
|
25678
25697
|
fields: {
|
|
@@ -25684,10 +25703,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25684
25703
|
}[];
|
|
25685
25704
|
description?: string | undefined;
|
|
25686
25705
|
runtime?: boolean | undefined;
|
|
25687
|
-
singleton?: boolean | undefined;
|
|
25688
25706
|
collection?: string | undefined;
|
|
25689
25707
|
timestamps?: boolean | undefined;
|
|
25690
25708
|
pages?: string[] | undefined;
|
|
25709
|
+
singleton?: boolean | undefined;
|
|
25691
25710
|
}>, "many">>;
|
|
25692
25711
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
25693
25712
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -26050,7 +26069,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26050
26069
|
}>>;
|
|
26051
26070
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
26052
26071
|
name: z.ZodString;
|
|
26053
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
26072
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
26073
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
26054
26074
|
collection: z.ZodOptional<z.ZodString>;
|
|
26055
26075
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
26056
26076
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -26085,9 +26105,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26085
26105
|
}>>;
|
|
26086
26106
|
}, "strip", z.ZodTypeAny, {
|
|
26087
26107
|
name: string;
|
|
26088
|
-
persistence: "persistent" | "runtime"
|
|
26108
|
+
persistence: "persistent" | "runtime";
|
|
26089
26109
|
fields: EntityField[];
|
|
26090
26110
|
description?: string | undefined;
|
|
26111
|
+
shared?: boolean | undefined;
|
|
26091
26112
|
collection?: string | undefined;
|
|
26092
26113
|
instances?: Record<string, unknown>[] | undefined;
|
|
26093
26114
|
timestamps?: boolean | undefined;
|
|
@@ -26106,7 +26127,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26106
26127
|
name: string;
|
|
26107
26128
|
fields: unknown[];
|
|
26108
26129
|
description?: string | undefined;
|
|
26109
|
-
persistence?: "persistent" | "runtime" |
|
|
26130
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
26131
|
+
shared?: boolean | undefined;
|
|
26110
26132
|
collection?: string | undefined;
|
|
26111
26133
|
instances?: Record<string, unknown>[] | undefined;
|
|
26112
26134
|
timestamps?: boolean | undefined;
|
|
@@ -26124,7 +26146,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26124
26146
|
}>>;
|
|
26125
26147
|
}, "strip", z.ZodTypeAny, {
|
|
26126
26148
|
name: string;
|
|
26127
|
-
scope: "
|
|
26149
|
+
scope: "collection" | "instance";
|
|
26128
26150
|
description?: string | undefined;
|
|
26129
26151
|
ui?: Record<string, unknown> | undefined;
|
|
26130
26152
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -26189,10 +26211,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26189
26211
|
}[];
|
|
26190
26212
|
description?: string | undefined;
|
|
26191
26213
|
runtime?: boolean | undefined;
|
|
26192
|
-
singleton?: boolean | undefined;
|
|
26193
26214
|
collection?: string | undefined;
|
|
26194
26215
|
timestamps?: boolean | undefined;
|
|
26195
26216
|
pages?: string[] | undefined;
|
|
26217
|
+
singleton?: boolean | undefined;
|
|
26196
26218
|
}[] | undefined;
|
|
26197
26219
|
stateMachine?: {
|
|
26198
26220
|
events: {
|
|
@@ -26251,9 +26273,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26251
26273
|
} | undefined;
|
|
26252
26274
|
sourceEntityDefinition?: {
|
|
26253
26275
|
name: string;
|
|
26254
|
-
persistence: "persistent" | "runtime"
|
|
26276
|
+
persistence: "persistent" | "runtime";
|
|
26255
26277
|
fields: EntityField[];
|
|
26256
26278
|
description?: string | undefined;
|
|
26279
|
+
shared?: boolean | undefined;
|
|
26257
26280
|
collection?: string | undefined;
|
|
26258
26281
|
instances?: Record<string, unknown>[] | undefined;
|
|
26259
26282
|
timestamps?: boolean | undefined;
|
|
@@ -26271,7 +26294,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26271
26294
|
} | undefined;
|
|
26272
26295
|
}, {
|
|
26273
26296
|
name: string;
|
|
26274
|
-
scope: "
|
|
26297
|
+
scope: "collection" | "instance";
|
|
26275
26298
|
description?: string | undefined;
|
|
26276
26299
|
ui?: Record<string, unknown> | undefined;
|
|
26277
26300
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -26336,10 +26359,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26336
26359
|
}[];
|
|
26337
26360
|
description?: string | undefined;
|
|
26338
26361
|
runtime?: boolean | undefined;
|
|
26339
|
-
singleton?: boolean | undefined;
|
|
26340
26362
|
collection?: string | undefined;
|
|
26341
26363
|
timestamps?: boolean | undefined;
|
|
26342
26364
|
pages?: string[] | undefined;
|
|
26365
|
+
singleton?: boolean | undefined;
|
|
26343
26366
|
}[] | undefined;
|
|
26344
26367
|
stateMachine?: {
|
|
26345
26368
|
events: {
|
|
@@ -26400,7 +26423,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26400
26423
|
name: string;
|
|
26401
26424
|
fields: unknown[];
|
|
26402
26425
|
description?: string | undefined;
|
|
26403
|
-
persistence?: "persistent" | "runtime" |
|
|
26426
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
26427
|
+
shared?: boolean | undefined;
|
|
26404
26428
|
collection?: string | undefined;
|
|
26405
26429
|
instances?: Record<string, unknown>[] | undefined;
|
|
26406
26430
|
timestamps?: boolean | undefined;
|
|
@@ -26556,10 +26580,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26556
26580
|
}[];
|
|
26557
26581
|
description?: string | undefined;
|
|
26558
26582
|
runtime?: boolean | undefined;
|
|
26559
|
-
singleton?: boolean | undefined;
|
|
26560
26583
|
collection?: string | undefined;
|
|
26561
26584
|
timestamps?: boolean | undefined;
|
|
26562
26585
|
pages?: string[] | undefined;
|
|
26586
|
+
singleton?: boolean | undefined;
|
|
26563
26587
|
}, {
|
|
26564
26588
|
name: string;
|
|
26565
26589
|
fields: {
|
|
@@ -26571,10 +26595,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26571
26595
|
}[];
|
|
26572
26596
|
description?: string | undefined;
|
|
26573
26597
|
runtime?: boolean | undefined;
|
|
26574
|
-
singleton?: boolean | undefined;
|
|
26575
26598
|
collection?: string | undefined;
|
|
26576
26599
|
timestamps?: boolean | undefined;
|
|
26577
26600
|
pages?: string[] | undefined;
|
|
26601
|
+
singleton?: boolean | undefined;
|
|
26578
26602
|
}>, "many">>;
|
|
26579
26603
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
26580
26604
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -26937,7 +26961,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26937
26961
|
}>>;
|
|
26938
26962
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
26939
26963
|
name: z.ZodString;
|
|
26940
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
26964
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
26965
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
26941
26966
|
collection: z.ZodOptional<z.ZodString>;
|
|
26942
26967
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
26943
26968
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -26972,9 +26997,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26972
26997
|
}>>;
|
|
26973
26998
|
}, "strip", z.ZodTypeAny, {
|
|
26974
26999
|
name: string;
|
|
26975
|
-
persistence: "persistent" | "runtime"
|
|
27000
|
+
persistence: "persistent" | "runtime";
|
|
26976
27001
|
fields: EntityField[];
|
|
26977
27002
|
description?: string | undefined;
|
|
27003
|
+
shared?: boolean | undefined;
|
|
26978
27004
|
collection?: string | undefined;
|
|
26979
27005
|
instances?: Record<string, unknown>[] | undefined;
|
|
26980
27006
|
timestamps?: boolean | undefined;
|
|
@@ -26993,7 +27019,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26993
27019
|
name: string;
|
|
26994
27020
|
fields: unknown[];
|
|
26995
27021
|
description?: string | undefined;
|
|
26996
|
-
persistence?: "persistent" | "runtime" |
|
|
27022
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
27023
|
+
shared?: boolean | undefined;
|
|
26997
27024
|
collection?: string | undefined;
|
|
26998
27025
|
instances?: Record<string, unknown>[] | undefined;
|
|
26999
27026
|
timestamps?: boolean | undefined;
|
|
@@ -27011,7 +27038,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27011
27038
|
}>>;
|
|
27012
27039
|
}, "strip", z.ZodTypeAny, {
|
|
27013
27040
|
name: string;
|
|
27014
|
-
scope: "
|
|
27041
|
+
scope: "collection" | "instance";
|
|
27015
27042
|
description?: string | undefined;
|
|
27016
27043
|
ui?: Record<string, unknown> | undefined;
|
|
27017
27044
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -27076,10 +27103,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27076
27103
|
}[];
|
|
27077
27104
|
description?: string | undefined;
|
|
27078
27105
|
runtime?: boolean | undefined;
|
|
27079
|
-
singleton?: boolean | undefined;
|
|
27080
27106
|
collection?: string | undefined;
|
|
27081
27107
|
timestamps?: boolean | undefined;
|
|
27082
27108
|
pages?: string[] | undefined;
|
|
27109
|
+
singleton?: boolean | undefined;
|
|
27083
27110
|
}[] | undefined;
|
|
27084
27111
|
stateMachine?: {
|
|
27085
27112
|
events: {
|
|
@@ -27138,9 +27165,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27138
27165
|
} | undefined;
|
|
27139
27166
|
sourceEntityDefinition?: {
|
|
27140
27167
|
name: string;
|
|
27141
|
-
persistence: "persistent" | "runtime"
|
|
27168
|
+
persistence: "persistent" | "runtime";
|
|
27142
27169
|
fields: EntityField[];
|
|
27143
27170
|
description?: string | undefined;
|
|
27171
|
+
shared?: boolean | undefined;
|
|
27144
27172
|
collection?: string | undefined;
|
|
27145
27173
|
instances?: Record<string, unknown>[] | undefined;
|
|
27146
27174
|
timestamps?: boolean | undefined;
|
|
@@ -27158,7 +27186,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27158
27186
|
} | undefined;
|
|
27159
27187
|
}, {
|
|
27160
27188
|
name: string;
|
|
27161
|
-
scope: "
|
|
27189
|
+
scope: "collection" | "instance";
|
|
27162
27190
|
description?: string | undefined;
|
|
27163
27191
|
ui?: Record<string, unknown> | undefined;
|
|
27164
27192
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -27223,10 +27251,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27223
27251
|
}[];
|
|
27224
27252
|
description?: string | undefined;
|
|
27225
27253
|
runtime?: boolean | undefined;
|
|
27226
|
-
singleton?: boolean | undefined;
|
|
27227
27254
|
collection?: string | undefined;
|
|
27228
27255
|
timestamps?: boolean | undefined;
|
|
27229
27256
|
pages?: string[] | undefined;
|
|
27257
|
+
singleton?: boolean | undefined;
|
|
27230
27258
|
}[] | undefined;
|
|
27231
27259
|
stateMachine?: {
|
|
27232
27260
|
events: {
|
|
@@ -27287,7 +27315,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27287
27315
|
name: string;
|
|
27288
27316
|
fields: unknown[];
|
|
27289
27317
|
description?: string | undefined;
|
|
27290
|
-
persistence?: "persistent" | "runtime" |
|
|
27318
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
27319
|
+
shared?: boolean | undefined;
|
|
27291
27320
|
collection?: string | undefined;
|
|
27292
27321
|
instances?: Record<string, unknown>[] | undefined;
|
|
27293
27322
|
timestamps?: boolean | undefined;
|
|
@@ -27310,7 +27339,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27310
27339
|
from?: string | undefined;
|
|
27311
27340
|
traits?: (string | {
|
|
27312
27341
|
name: string;
|
|
27313
|
-
scope: "
|
|
27342
|
+
scope: "collection" | "instance";
|
|
27314
27343
|
description?: string | undefined;
|
|
27315
27344
|
ui?: Record<string, unknown> | undefined;
|
|
27316
27345
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -27375,10 +27404,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27375
27404
|
}[];
|
|
27376
27405
|
description?: string | undefined;
|
|
27377
27406
|
runtime?: boolean | undefined;
|
|
27378
|
-
singleton?: boolean | undefined;
|
|
27379
27407
|
collection?: string | undefined;
|
|
27380
27408
|
timestamps?: boolean | undefined;
|
|
27381
27409
|
pages?: string[] | undefined;
|
|
27410
|
+
singleton?: boolean | undefined;
|
|
27382
27411
|
}[] | undefined;
|
|
27383
27412
|
stateMachine?: {
|
|
27384
27413
|
events: {
|
|
@@ -27437,9 +27466,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27437
27466
|
} | undefined;
|
|
27438
27467
|
sourceEntityDefinition?: {
|
|
27439
27468
|
name: string;
|
|
27440
|
-
persistence: "persistent" | "runtime"
|
|
27469
|
+
persistence: "persistent" | "runtime";
|
|
27441
27470
|
fields: EntityField[];
|
|
27442
27471
|
description?: string | undefined;
|
|
27472
|
+
shared?: boolean | undefined;
|
|
27443
27473
|
collection?: string | undefined;
|
|
27444
27474
|
instances?: Record<string, unknown>[] | undefined;
|
|
27445
27475
|
timestamps?: boolean | undefined;
|
|
@@ -27469,7 +27499,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27469
27499
|
from?: string | undefined;
|
|
27470
27500
|
traits?: (string | {
|
|
27471
27501
|
name: string;
|
|
27472
|
-
scope: "
|
|
27502
|
+
scope: "collection" | "instance";
|
|
27473
27503
|
description?: string | undefined;
|
|
27474
27504
|
ui?: Record<string, unknown> | undefined;
|
|
27475
27505
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -27534,10 +27564,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27534
27564
|
}[];
|
|
27535
27565
|
description?: string | undefined;
|
|
27536
27566
|
runtime?: boolean | undefined;
|
|
27537
|
-
singleton?: boolean | undefined;
|
|
27538
27567
|
collection?: string | undefined;
|
|
27539
27568
|
timestamps?: boolean | undefined;
|
|
27540
27569
|
pages?: string[] | undefined;
|
|
27570
|
+
singleton?: boolean | undefined;
|
|
27541
27571
|
}[] | undefined;
|
|
27542
27572
|
stateMachine?: {
|
|
27543
27573
|
events: {
|
|
@@ -27598,7 +27628,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27598
27628
|
name: string;
|
|
27599
27629
|
fields: unknown[];
|
|
27600
27630
|
description?: string | undefined;
|
|
27601
|
-
persistence?: "persistent" | "runtime" |
|
|
27631
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
27632
|
+
shared?: boolean | undefined;
|
|
27602
27633
|
collection?: string | undefined;
|
|
27603
27634
|
instances?: Record<string, unknown>[] | undefined;
|
|
27604
27635
|
timestamps?: boolean | undefined;
|
|
@@ -27867,9 +27898,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27867
27898
|
}, "strip", z.ZodTypeAny, {
|
|
27868
27899
|
entity: string | {
|
|
27869
27900
|
name: string;
|
|
27870
|
-
persistence: "persistent" | "runtime"
|
|
27901
|
+
persistence: "persistent" | "runtime";
|
|
27871
27902
|
fields: EntityField[];
|
|
27872
27903
|
description?: string | undefined;
|
|
27904
|
+
shared?: boolean | undefined;
|
|
27873
27905
|
collection?: string | undefined;
|
|
27874
27906
|
instances?: Record<string, unknown>[] | undefined;
|
|
27875
27907
|
timestamps?: boolean | undefined;
|
|
@@ -27887,14 +27919,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27887
27919
|
} | {
|
|
27888
27920
|
extends: string;
|
|
27889
27921
|
name?: string | undefined;
|
|
27890
|
-
persistence?: "persistent" | "runtime" |
|
|
27922
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
27891
27923
|
collection?: string | undefined;
|
|
27892
27924
|
fields?: EntityField[] | undefined;
|
|
27893
27925
|
};
|
|
27894
27926
|
name: string;
|
|
27895
27927
|
traits: (string | {
|
|
27896
27928
|
name: string;
|
|
27897
|
-
scope: "
|
|
27929
|
+
scope: "collection" | "instance";
|
|
27898
27930
|
description?: string | undefined;
|
|
27899
27931
|
ui?: Record<string, unknown> | undefined;
|
|
27900
27932
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -27959,10 +27991,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27959
27991
|
}[];
|
|
27960
27992
|
description?: string | undefined;
|
|
27961
27993
|
runtime?: boolean | undefined;
|
|
27962
|
-
singleton?: boolean | undefined;
|
|
27963
27994
|
collection?: string | undefined;
|
|
27964
27995
|
timestamps?: boolean | undefined;
|
|
27965
27996
|
pages?: string[] | undefined;
|
|
27997
|
+
singleton?: boolean | undefined;
|
|
27966
27998
|
}[] | undefined;
|
|
27967
27999
|
stateMachine?: {
|
|
27968
28000
|
events: {
|
|
@@ -28021,9 +28053,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28021
28053
|
} | undefined;
|
|
28022
28054
|
sourceEntityDefinition?: {
|
|
28023
28055
|
name: string;
|
|
28024
|
-
persistence: "persistent" | "runtime"
|
|
28056
|
+
persistence: "persistent" | "runtime";
|
|
28025
28057
|
fields: EntityField[];
|
|
28026
28058
|
description?: string | undefined;
|
|
28059
|
+
shared?: boolean | undefined;
|
|
28027
28060
|
collection?: string | undefined;
|
|
28028
28061
|
instances?: Record<string, unknown>[] | undefined;
|
|
28029
28062
|
timestamps?: boolean | undefined;
|
|
@@ -28064,7 +28097,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28064
28097
|
from?: string | undefined;
|
|
28065
28098
|
traits?: (string | {
|
|
28066
28099
|
name: string;
|
|
28067
|
-
scope: "
|
|
28100
|
+
scope: "collection" | "instance";
|
|
28068
28101
|
description?: string | undefined;
|
|
28069
28102
|
ui?: Record<string, unknown> | undefined;
|
|
28070
28103
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -28129,10 +28162,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28129
28162
|
}[];
|
|
28130
28163
|
description?: string | undefined;
|
|
28131
28164
|
runtime?: boolean | undefined;
|
|
28132
|
-
singleton?: boolean | undefined;
|
|
28133
28165
|
collection?: string | undefined;
|
|
28134
28166
|
timestamps?: boolean | undefined;
|
|
28135
28167
|
pages?: string[] | undefined;
|
|
28168
|
+
singleton?: boolean | undefined;
|
|
28136
28169
|
}[] | undefined;
|
|
28137
28170
|
stateMachine?: {
|
|
28138
28171
|
events: {
|
|
@@ -28191,9 +28224,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28191
28224
|
} | undefined;
|
|
28192
28225
|
sourceEntityDefinition?: {
|
|
28193
28226
|
name: string;
|
|
28194
|
-
persistence: "persistent" | "runtime"
|
|
28227
|
+
persistence: "persistent" | "runtime";
|
|
28195
28228
|
fields: EntityField[];
|
|
28196
28229
|
description?: string | undefined;
|
|
28230
|
+
shared?: boolean | undefined;
|
|
28197
28231
|
collection?: string | undefined;
|
|
28198
28232
|
instances?: Record<string, unknown>[] | undefined;
|
|
28199
28233
|
timestamps?: boolean | undefined;
|
|
@@ -28783,7 +28817,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28783
28817
|
name: string;
|
|
28784
28818
|
fields: unknown[];
|
|
28785
28819
|
description?: string | undefined;
|
|
28786
|
-
persistence?: "persistent" | "runtime" |
|
|
28820
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
28821
|
+
shared?: boolean | undefined;
|
|
28787
28822
|
collection?: string | undefined;
|
|
28788
28823
|
instances?: Record<string, unknown>[] | undefined;
|
|
28789
28824
|
timestamps?: boolean | undefined;
|
|
@@ -28801,14 +28836,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28801
28836
|
} | {
|
|
28802
28837
|
extends: string;
|
|
28803
28838
|
name?: string | undefined;
|
|
28804
|
-
persistence?: "persistent" | "runtime" |
|
|
28839
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
28805
28840
|
collection?: string | undefined;
|
|
28806
28841
|
fields?: unknown[] | undefined;
|
|
28807
28842
|
};
|
|
28808
28843
|
name: string;
|
|
28809
28844
|
traits: (string | {
|
|
28810
28845
|
name: string;
|
|
28811
|
-
scope: "
|
|
28846
|
+
scope: "collection" | "instance";
|
|
28812
28847
|
description?: string | undefined;
|
|
28813
28848
|
ui?: Record<string, unknown> | undefined;
|
|
28814
28849
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -28873,10 +28908,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28873
28908
|
}[];
|
|
28874
28909
|
description?: string | undefined;
|
|
28875
28910
|
runtime?: boolean | undefined;
|
|
28876
|
-
singleton?: boolean | undefined;
|
|
28877
28911
|
collection?: string | undefined;
|
|
28878
28912
|
timestamps?: boolean | undefined;
|
|
28879
28913
|
pages?: string[] | undefined;
|
|
28914
|
+
singleton?: boolean | undefined;
|
|
28880
28915
|
}[] | undefined;
|
|
28881
28916
|
stateMachine?: {
|
|
28882
28917
|
events: {
|
|
@@ -28937,7 +28972,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28937
28972
|
name: string;
|
|
28938
28973
|
fields: unknown[];
|
|
28939
28974
|
description?: string | undefined;
|
|
28940
|
-
persistence?: "persistent" | "runtime" |
|
|
28975
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
28976
|
+
shared?: boolean | undefined;
|
|
28941
28977
|
collection?: string | undefined;
|
|
28942
28978
|
instances?: Record<string, unknown>[] | undefined;
|
|
28943
28979
|
timestamps?: boolean | undefined;
|
|
@@ -28978,7 +29014,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28978
29014
|
from?: string | undefined;
|
|
28979
29015
|
traits?: (string | {
|
|
28980
29016
|
name: string;
|
|
28981
|
-
scope: "
|
|
29017
|
+
scope: "collection" | "instance";
|
|
28982
29018
|
description?: string | undefined;
|
|
28983
29019
|
ui?: Record<string, unknown> | undefined;
|
|
28984
29020
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -29043,10 +29079,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29043
29079
|
}[];
|
|
29044
29080
|
description?: string | undefined;
|
|
29045
29081
|
runtime?: boolean | undefined;
|
|
29046
|
-
singleton?: boolean | undefined;
|
|
29047
29082
|
collection?: string | undefined;
|
|
29048
29083
|
timestamps?: boolean | undefined;
|
|
29049
29084
|
pages?: string[] | undefined;
|
|
29085
|
+
singleton?: boolean | undefined;
|
|
29050
29086
|
}[] | undefined;
|
|
29051
29087
|
stateMachine?: {
|
|
29052
29088
|
events: {
|
|
@@ -29107,7 +29143,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29107
29143
|
name: string;
|
|
29108
29144
|
fields: unknown[];
|
|
29109
29145
|
description?: string | undefined;
|
|
29110
|
-
persistence?: "persistent" | "runtime" |
|
|
29146
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
29147
|
+
shared?: boolean | undefined;
|
|
29111
29148
|
collection?: string | undefined;
|
|
29112
29149
|
instances?: Record<string, unknown>[] | undefined;
|
|
29113
29150
|
timestamps?: boolean | undefined;
|
|
@@ -33734,7 +33771,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33734
33771
|
}>, z.ZodString]>, "many">>;
|
|
33735
33772
|
entity: z.ZodUnion<[z.ZodObject<{
|
|
33736
33773
|
name: z.ZodString;
|
|
33737
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
33774
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
33775
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
33738
33776
|
collection: z.ZodOptional<z.ZodString>;
|
|
33739
33777
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
33740
33778
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -33769,9 +33807,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33769
33807
|
}>>;
|
|
33770
33808
|
}, "strip", z.ZodTypeAny, {
|
|
33771
33809
|
name: string;
|
|
33772
|
-
persistence: "persistent" | "runtime"
|
|
33810
|
+
persistence: "persistent" | "runtime";
|
|
33773
33811
|
fields: EntityField[];
|
|
33774
33812
|
description?: string | undefined;
|
|
33813
|
+
shared?: boolean | undefined;
|
|
33775
33814
|
collection?: string | undefined;
|
|
33776
33815
|
instances?: Record<string, unknown>[] | undefined;
|
|
33777
33816
|
timestamps?: boolean | undefined;
|
|
@@ -33790,7 +33829,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33790
33829
|
name: string;
|
|
33791
33830
|
fields: unknown[];
|
|
33792
33831
|
description?: string | undefined;
|
|
33793
|
-
persistence?: "persistent" | "runtime" |
|
|
33832
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
33833
|
+
shared?: boolean | undefined;
|
|
33794
33834
|
collection?: string | undefined;
|
|
33795
33835
|
instances?: Record<string, unknown>[] | undefined;
|
|
33796
33836
|
timestamps?: boolean | undefined;
|
|
@@ -33809,30 +33849,30 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33809
33849
|
extends: z.ZodString;
|
|
33810
33850
|
name: z.ZodOptional<z.ZodString>;
|
|
33811
33851
|
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
33812
|
-
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"
|
|
33852
|
+
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"]>>;
|
|
33813
33853
|
collection: z.ZodOptional<z.ZodString>;
|
|
33814
33854
|
}, "strip", z.ZodTypeAny, {
|
|
33815
33855
|
extends: string;
|
|
33816
33856
|
name?: string | undefined;
|
|
33817
|
-
persistence?: "persistent" | "runtime" |
|
|
33857
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
33818
33858
|
collection?: string | undefined;
|
|
33819
33859
|
fields?: EntityField[] | undefined;
|
|
33820
33860
|
}, {
|
|
33821
33861
|
extends: string;
|
|
33822
33862
|
name?: string | undefined;
|
|
33823
|
-
persistence?: "persistent" | "runtime" |
|
|
33863
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
33824
33864
|
collection?: string | undefined;
|
|
33825
33865
|
fields?: unknown[] | undefined;
|
|
33826
33866
|
}>, {
|
|
33827
33867
|
extends: string;
|
|
33828
33868
|
name?: string | undefined;
|
|
33829
|
-
persistence?: "persistent" | "runtime" |
|
|
33869
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
33830
33870
|
collection?: string | undefined;
|
|
33831
33871
|
fields?: EntityField[] | undefined;
|
|
33832
33872
|
}, {
|
|
33833
33873
|
extends: string;
|
|
33834
33874
|
name?: string | undefined;
|
|
33835
|
-
persistence?: "persistent" | "runtime" |
|
|
33875
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
33836
33876
|
collection?: string | undefined;
|
|
33837
33877
|
fields?: unknown[] | undefined;
|
|
33838
33878
|
}>]>;
|
|
@@ -33926,10 +33966,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33926
33966
|
}[];
|
|
33927
33967
|
description?: string | undefined;
|
|
33928
33968
|
runtime?: boolean | undefined;
|
|
33929
|
-
singleton?: boolean | undefined;
|
|
33930
33969
|
collection?: string | undefined;
|
|
33931
33970
|
timestamps?: boolean | undefined;
|
|
33932
33971
|
pages?: string[] | undefined;
|
|
33972
|
+
singleton?: boolean | undefined;
|
|
33933
33973
|
}, {
|
|
33934
33974
|
name: string;
|
|
33935
33975
|
fields: {
|
|
@@ -33941,10 +33981,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33941
33981
|
}[];
|
|
33942
33982
|
description?: string | undefined;
|
|
33943
33983
|
runtime?: boolean | undefined;
|
|
33944
|
-
singleton?: boolean | undefined;
|
|
33945
33984
|
collection?: string | undefined;
|
|
33946
33985
|
timestamps?: boolean | undefined;
|
|
33947
33986
|
pages?: string[] | undefined;
|
|
33987
|
+
singleton?: boolean | undefined;
|
|
33948
33988
|
}>, "many">>;
|
|
33949
33989
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
33950
33990
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -34307,7 +34347,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34307
34347
|
}>>;
|
|
34308
34348
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
34309
34349
|
name: z.ZodString;
|
|
34310
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
34350
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
34351
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
34311
34352
|
collection: z.ZodOptional<z.ZodString>;
|
|
34312
34353
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
34313
34354
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -34342,9 +34383,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34342
34383
|
}>>;
|
|
34343
34384
|
}, "strip", z.ZodTypeAny, {
|
|
34344
34385
|
name: string;
|
|
34345
|
-
persistence: "persistent" | "runtime"
|
|
34386
|
+
persistence: "persistent" | "runtime";
|
|
34346
34387
|
fields: EntityField[];
|
|
34347
34388
|
description?: string | undefined;
|
|
34389
|
+
shared?: boolean | undefined;
|
|
34348
34390
|
collection?: string | undefined;
|
|
34349
34391
|
instances?: Record<string, unknown>[] | undefined;
|
|
34350
34392
|
timestamps?: boolean | undefined;
|
|
@@ -34363,7 +34405,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34363
34405
|
name: string;
|
|
34364
34406
|
fields: unknown[];
|
|
34365
34407
|
description?: string | undefined;
|
|
34366
|
-
persistence?: "persistent" | "runtime" |
|
|
34408
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
34409
|
+
shared?: boolean | undefined;
|
|
34367
34410
|
collection?: string | undefined;
|
|
34368
34411
|
instances?: Record<string, unknown>[] | undefined;
|
|
34369
34412
|
timestamps?: boolean | undefined;
|
|
@@ -34381,7 +34424,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34381
34424
|
}>>;
|
|
34382
34425
|
}, "strip", z.ZodTypeAny, {
|
|
34383
34426
|
name: string;
|
|
34384
|
-
scope: "
|
|
34427
|
+
scope: "collection" | "instance";
|
|
34385
34428
|
description?: string | undefined;
|
|
34386
34429
|
ui?: Record<string, unknown> | undefined;
|
|
34387
34430
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -34446,10 +34489,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34446
34489
|
}[];
|
|
34447
34490
|
description?: string | undefined;
|
|
34448
34491
|
runtime?: boolean | undefined;
|
|
34449
|
-
singleton?: boolean | undefined;
|
|
34450
34492
|
collection?: string | undefined;
|
|
34451
34493
|
timestamps?: boolean | undefined;
|
|
34452
34494
|
pages?: string[] | undefined;
|
|
34495
|
+
singleton?: boolean | undefined;
|
|
34453
34496
|
}[] | undefined;
|
|
34454
34497
|
stateMachine?: {
|
|
34455
34498
|
events: {
|
|
@@ -34508,9 +34551,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34508
34551
|
} | undefined;
|
|
34509
34552
|
sourceEntityDefinition?: {
|
|
34510
34553
|
name: string;
|
|
34511
|
-
persistence: "persistent" | "runtime"
|
|
34554
|
+
persistence: "persistent" | "runtime";
|
|
34512
34555
|
fields: EntityField[];
|
|
34513
34556
|
description?: string | undefined;
|
|
34557
|
+
shared?: boolean | undefined;
|
|
34514
34558
|
collection?: string | undefined;
|
|
34515
34559
|
instances?: Record<string, unknown>[] | undefined;
|
|
34516
34560
|
timestamps?: boolean | undefined;
|
|
@@ -34528,7 +34572,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34528
34572
|
} | undefined;
|
|
34529
34573
|
}, {
|
|
34530
34574
|
name: string;
|
|
34531
|
-
scope: "
|
|
34575
|
+
scope: "collection" | "instance";
|
|
34532
34576
|
description?: string | undefined;
|
|
34533
34577
|
ui?: Record<string, unknown> | undefined;
|
|
34534
34578
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -34593,10 +34637,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34593
34637
|
}[];
|
|
34594
34638
|
description?: string | undefined;
|
|
34595
34639
|
runtime?: boolean | undefined;
|
|
34596
|
-
singleton?: boolean | undefined;
|
|
34597
34640
|
collection?: string | undefined;
|
|
34598
34641
|
timestamps?: boolean | undefined;
|
|
34599
34642
|
pages?: string[] | undefined;
|
|
34643
|
+
singleton?: boolean | undefined;
|
|
34600
34644
|
}[] | undefined;
|
|
34601
34645
|
stateMachine?: {
|
|
34602
34646
|
events: {
|
|
@@ -34657,7 +34701,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34657
34701
|
name: string;
|
|
34658
34702
|
fields: unknown[];
|
|
34659
34703
|
description?: string | undefined;
|
|
34660
|
-
persistence?: "persistent" | "runtime" |
|
|
34704
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
34705
|
+
shared?: boolean | undefined;
|
|
34661
34706
|
collection?: string | undefined;
|
|
34662
34707
|
instances?: Record<string, unknown>[] | undefined;
|
|
34663
34708
|
timestamps?: boolean | undefined;
|
|
@@ -34813,10 +34858,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34813
34858
|
}[];
|
|
34814
34859
|
description?: string | undefined;
|
|
34815
34860
|
runtime?: boolean | undefined;
|
|
34816
|
-
singleton?: boolean | undefined;
|
|
34817
34861
|
collection?: string | undefined;
|
|
34818
34862
|
timestamps?: boolean | undefined;
|
|
34819
34863
|
pages?: string[] | undefined;
|
|
34864
|
+
singleton?: boolean | undefined;
|
|
34820
34865
|
}, {
|
|
34821
34866
|
name: string;
|
|
34822
34867
|
fields: {
|
|
@@ -34828,10 +34873,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34828
34873
|
}[];
|
|
34829
34874
|
description?: string | undefined;
|
|
34830
34875
|
runtime?: boolean | undefined;
|
|
34831
|
-
singleton?: boolean | undefined;
|
|
34832
34876
|
collection?: string | undefined;
|
|
34833
34877
|
timestamps?: boolean | undefined;
|
|
34834
34878
|
pages?: string[] | undefined;
|
|
34879
|
+
singleton?: boolean | undefined;
|
|
34835
34880
|
}>, "many">>;
|
|
34836
34881
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
34837
34882
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -35194,7 +35239,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35194
35239
|
}>>;
|
|
35195
35240
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
35196
35241
|
name: z.ZodString;
|
|
35197
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
35242
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
35243
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
35198
35244
|
collection: z.ZodOptional<z.ZodString>;
|
|
35199
35245
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
35200
35246
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -35229,9 +35275,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35229
35275
|
}>>;
|
|
35230
35276
|
}, "strip", z.ZodTypeAny, {
|
|
35231
35277
|
name: string;
|
|
35232
|
-
persistence: "persistent" | "runtime"
|
|
35278
|
+
persistence: "persistent" | "runtime";
|
|
35233
35279
|
fields: EntityField[];
|
|
35234
35280
|
description?: string | undefined;
|
|
35281
|
+
shared?: boolean | undefined;
|
|
35235
35282
|
collection?: string | undefined;
|
|
35236
35283
|
instances?: Record<string, unknown>[] | undefined;
|
|
35237
35284
|
timestamps?: boolean | undefined;
|
|
@@ -35250,7 +35297,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35250
35297
|
name: string;
|
|
35251
35298
|
fields: unknown[];
|
|
35252
35299
|
description?: string | undefined;
|
|
35253
|
-
persistence?: "persistent" | "runtime" |
|
|
35300
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
35301
|
+
shared?: boolean | undefined;
|
|
35254
35302
|
collection?: string | undefined;
|
|
35255
35303
|
instances?: Record<string, unknown>[] | undefined;
|
|
35256
35304
|
timestamps?: boolean | undefined;
|
|
@@ -35268,7 +35316,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35268
35316
|
}>>;
|
|
35269
35317
|
}, "strip", z.ZodTypeAny, {
|
|
35270
35318
|
name: string;
|
|
35271
|
-
scope: "
|
|
35319
|
+
scope: "collection" | "instance";
|
|
35272
35320
|
description?: string | undefined;
|
|
35273
35321
|
ui?: Record<string, unknown> | undefined;
|
|
35274
35322
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -35333,10 +35381,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35333
35381
|
}[];
|
|
35334
35382
|
description?: string | undefined;
|
|
35335
35383
|
runtime?: boolean | undefined;
|
|
35336
|
-
singleton?: boolean | undefined;
|
|
35337
35384
|
collection?: string | undefined;
|
|
35338
35385
|
timestamps?: boolean | undefined;
|
|
35339
35386
|
pages?: string[] | undefined;
|
|
35387
|
+
singleton?: boolean | undefined;
|
|
35340
35388
|
}[] | undefined;
|
|
35341
35389
|
stateMachine?: {
|
|
35342
35390
|
events: {
|
|
@@ -35395,9 +35443,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35395
35443
|
} | undefined;
|
|
35396
35444
|
sourceEntityDefinition?: {
|
|
35397
35445
|
name: string;
|
|
35398
|
-
persistence: "persistent" | "runtime"
|
|
35446
|
+
persistence: "persistent" | "runtime";
|
|
35399
35447
|
fields: EntityField[];
|
|
35400
35448
|
description?: string | undefined;
|
|
35449
|
+
shared?: boolean | undefined;
|
|
35401
35450
|
collection?: string | undefined;
|
|
35402
35451
|
instances?: Record<string, unknown>[] | undefined;
|
|
35403
35452
|
timestamps?: boolean | undefined;
|
|
@@ -35415,7 +35464,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35415
35464
|
} | undefined;
|
|
35416
35465
|
}, {
|
|
35417
35466
|
name: string;
|
|
35418
|
-
scope: "
|
|
35467
|
+
scope: "collection" | "instance";
|
|
35419
35468
|
description?: string | undefined;
|
|
35420
35469
|
ui?: Record<string, unknown> | undefined;
|
|
35421
35470
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -35480,10 +35529,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35480
35529
|
}[];
|
|
35481
35530
|
description?: string | undefined;
|
|
35482
35531
|
runtime?: boolean | undefined;
|
|
35483
|
-
singleton?: boolean | undefined;
|
|
35484
35532
|
collection?: string | undefined;
|
|
35485
35533
|
timestamps?: boolean | undefined;
|
|
35486
35534
|
pages?: string[] | undefined;
|
|
35535
|
+
singleton?: boolean | undefined;
|
|
35487
35536
|
}[] | undefined;
|
|
35488
35537
|
stateMachine?: {
|
|
35489
35538
|
events: {
|
|
@@ -35544,7 +35593,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35544
35593
|
name: string;
|
|
35545
35594
|
fields: unknown[];
|
|
35546
35595
|
description?: string | undefined;
|
|
35547
|
-
persistence?: "persistent" | "runtime" |
|
|
35596
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
35597
|
+
shared?: boolean | undefined;
|
|
35548
35598
|
collection?: string | undefined;
|
|
35549
35599
|
instances?: Record<string, unknown>[] | undefined;
|
|
35550
35600
|
timestamps?: boolean | undefined;
|
|
@@ -35567,7 +35617,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35567
35617
|
from?: string | undefined;
|
|
35568
35618
|
traits?: (string | {
|
|
35569
35619
|
name: string;
|
|
35570
|
-
scope: "
|
|
35620
|
+
scope: "collection" | "instance";
|
|
35571
35621
|
description?: string | undefined;
|
|
35572
35622
|
ui?: Record<string, unknown> | undefined;
|
|
35573
35623
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -35632,10 +35682,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35632
35682
|
}[];
|
|
35633
35683
|
description?: string | undefined;
|
|
35634
35684
|
runtime?: boolean | undefined;
|
|
35635
|
-
singleton?: boolean | undefined;
|
|
35636
35685
|
collection?: string | undefined;
|
|
35637
35686
|
timestamps?: boolean | undefined;
|
|
35638
35687
|
pages?: string[] | undefined;
|
|
35688
|
+
singleton?: boolean | undefined;
|
|
35639
35689
|
}[] | undefined;
|
|
35640
35690
|
stateMachine?: {
|
|
35641
35691
|
events: {
|
|
@@ -35694,9 +35744,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35694
35744
|
} | undefined;
|
|
35695
35745
|
sourceEntityDefinition?: {
|
|
35696
35746
|
name: string;
|
|
35697
|
-
persistence: "persistent" | "runtime"
|
|
35747
|
+
persistence: "persistent" | "runtime";
|
|
35698
35748
|
fields: EntityField[];
|
|
35699
35749
|
description?: string | undefined;
|
|
35750
|
+
shared?: boolean | undefined;
|
|
35700
35751
|
collection?: string | undefined;
|
|
35701
35752
|
instances?: Record<string, unknown>[] | undefined;
|
|
35702
35753
|
timestamps?: boolean | undefined;
|
|
@@ -35726,7 +35777,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35726
35777
|
from?: string | undefined;
|
|
35727
35778
|
traits?: (string | {
|
|
35728
35779
|
name: string;
|
|
35729
|
-
scope: "
|
|
35780
|
+
scope: "collection" | "instance";
|
|
35730
35781
|
description?: string | undefined;
|
|
35731
35782
|
ui?: Record<string, unknown> | undefined;
|
|
35732
35783
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -35791,10 +35842,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35791
35842
|
}[];
|
|
35792
35843
|
description?: string | undefined;
|
|
35793
35844
|
runtime?: boolean | undefined;
|
|
35794
|
-
singleton?: boolean | undefined;
|
|
35795
35845
|
collection?: string | undefined;
|
|
35796
35846
|
timestamps?: boolean | undefined;
|
|
35797
35847
|
pages?: string[] | undefined;
|
|
35848
|
+
singleton?: boolean | undefined;
|
|
35798
35849
|
}[] | undefined;
|
|
35799
35850
|
stateMachine?: {
|
|
35800
35851
|
events: {
|
|
@@ -35855,7 +35906,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35855
35906
|
name: string;
|
|
35856
35907
|
fields: unknown[];
|
|
35857
35908
|
description?: string | undefined;
|
|
35858
|
-
persistence?: "persistent" | "runtime" |
|
|
35909
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
35910
|
+
shared?: boolean | undefined;
|
|
35859
35911
|
collection?: string | undefined;
|
|
35860
35912
|
instances?: Record<string, unknown>[] | undefined;
|
|
35861
35913
|
timestamps?: boolean | undefined;
|
|
@@ -36124,9 +36176,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36124
36176
|
}, "strip", z.ZodTypeAny, {
|
|
36125
36177
|
entity: string | {
|
|
36126
36178
|
name: string;
|
|
36127
|
-
persistence: "persistent" | "runtime"
|
|
36179
|
+
persistence: "persistent" | "runtime";
|
|
36128
36180
|
fields: EntityField[];
|
|
36129
36181
|
description?: string | undefined;
|
|
36182
|
+
shared?: boolean | undefined;
|
|
36130
36183
|
collection?: string | undefined;
|
|
36131
36184
|
instances?: Record<string, unknown>[] | undefined;
|
|
36132
36185
|
timestamps?: boolean | undefined;
|
|
@@ -36144,14 +36197,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36144
36197
|
} | {
|
|
36145
36198
|
extends: string;
|
|
36146
36199
|
name?: string | undefined;
|
|
36147
|
-
persistence?: "persistent" | "runtime" |
|
|
36200
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
36148
36201
|
collection?: string | undefined;
|
|
36149
36202
|
fields?: EntityField[] | undefined;
|
|
36150
36203
|
};
|
|
36151
36204
|
name: string;
|
|
36152
36205
|
traits: (string | {
|
|
36153
36206
|
name: string;
|
|
36154
|
-
scope: "
|
|
36207
|
+
scope: "collection" | "instance";
|
|
36155
36208
|
description?: string | undefined;
|
|
36156
36209
|
ui?: Record<string, unknown> | undefined;
|
|
36157
36210
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -36216,10 +36269,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36216
36269
|
}[];
|
|
36217
36270
|
description?: string | undefined;
|
|
36218
36271
|
runtime?: boolean | undefined;
|
|
36219
|
-
singleton?: boolean | undefined;
|
|
36220
36272
|
collection?: string | undefined;
|
|
36221
36273
|
timestamps?: boolean | undefined;
|
|
36222
36274
|
pages?: string[] | undefined;
|
|
36275
|
+
singleton?: boolean | undefined;
|
|
36223
36276
|
}[] | undefined;
|
|
36224
36277
|
stateMachine?: {
|
|
36225
36278
|
events: {
|
|
@@ -36278,9 +36331,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36278
36331
|
} | undefined;
|
|
36279
36332
|
sourceEntityDefinition?: {
|
|
36280
36333
|
name: string;
|
|
36281
|
-
persistence: "persistent" | "runtime"
|
|
36334
|
+
persistence: "persistent" | "runtime";
|
|
36282
36335
|
fields: EntityField[];
|
|
36283
36336
|
description?: string | undefined;
|
|
36337
|
+
shared?: boolean | undefined;
|
|
36284
36338
|
collection?: string | undefined;
|
|
36285
36339
|
instances?: Record<string, unknown>[] | undefined;
|
|
36286
36340
|
timestamps?: boolean | undefined;
|
|
@@ -36321,7 +36375,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36321
36375
|
from?: string | undefined;
|
|
36322
36376
|
traits?: (string | {
|
|
36323
36377
|
name: string;
|
|
36324
|
-
scope: "
|
|
36378
|
+
scope: "collection" | "instance";
|
|
36325
36379
|
description?: string | undefined;
|
|
36326
36380
|
ui?: Record<string, unknown> | undefined;
|
|
36327
36381
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -36386,10 +36440,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36386
36440
|
}[];
|
|
36387
36441
|
description?: string | undefined;
|
|
36388
36442
|
runtime?: boolean | undefined;
|
|
36389
|
-
singleton?: boolean | undefined;
|
|
36390
36443
|
collection?: string | undefined;
|
|
36391
36444
|
timestamps?: boolean | undefined;
|
|
36392
36445
|
pages?: string[] | undefined;
|
|
36446
|
+
singleton?: boolean | undefined;
|
|
36393
36447
|
}[] | undefined;
|
|
36394
36448
|
stateMachine?: {
|
|
36395
36449
|
events: {
|
|
@@ -36448,9 +36502,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36448
36502
|
} | undefined;
|
|
36449
36503
|
sourceEntityDefinition?: {
|
|
36450
36504
|
name: string;
|
|
36451
|
-
persistence: "persistent" | "runtime"
|
|
36505
|
+
persistence: "persistent" | "runtime";
|
|
36452
36506
|
fields: EntityField[];
|
|
36453
36507
|
description?: string | undefined;
|
|
36508
|
+
shared?: boolean | undefined;
|
|
36454
36509
|
collection?: string | undefined;
|
|
36455
36510
|
instances?: Record<string, unknown>[] | undefined;
|
|
36456
36511
|
timestamps?: boolean | undefined;
|
|
@@ -37040,7 +37095,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37040
37095
|
name: string;
|
|
37041
37096
|
fields: unknown[];
|
|
37042
37097
|
description?: string | undefined;
|
|
37043
|
-
persistence?: "persistent" | "runtime" |
|
|
37098
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
37099
|
+
shared?: boolean | undefined;
|
|
37044
37100
|
collection?: string | undefined;
|
|
37045
37101
|
instances?: Record<string, unknown>[] | undefined;
|
|
37046
37102
|
timestamps?: boolean | undefined;
|
|
@@ -37058,14 +37114,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37058
37114
|
} | {
|
|
37059
37115
|
extends: string;
|
|
37060
37116
|
name?: string | undefined;
|
|
37061
|
-
persistence?: "persistent" | "runtime" |
|
|
37117
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
37062
37118
|
collection?: string | undefined;
|
|
37063
37119
|
fields?: unknown[] | undefined;
|
|
37064
37120
|
};
|
|
37065
37121
|
name: string;
|
|
37066
37122
|
traits: (string | {
|
|
37067
37123
|
name: string;
|
|
37068
|
-
scope: "
|
|
37124
|
+
scope: "collection" | "instance";
|
|
37069
37125
|
description?: string | undefined;
|
|
37070
37126
|
ui?: Record<string, unknown> | undefined;
|
|
37071
37127
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -37130,10 +37186,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37130
37186
|
}[];
|
|
37131
37187
|
description?: string | undefined;
|
|
37132
37188
|
runtime?: boolean | undefined;
|
|
37133
|
-
singleton?: boolean | undefined;
|
|
37134
37189
|
collection?: string | undefined;
|
|
37135
37190
|
timestamps?: boolean | undefined;
|
|
37136
37191
|
pages?: string[] | undefined;
|
|
37192
|
+
singleton?: boolean | undefined;
|
|
37137
37193
|
}[] | undefined;
|
|
37138
37194
|
stateMachine?: {
|
|
37139
37195
|
events: {
|
|
@@ -37194,7 +37250,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37194
37250
|
name: string;
|
|
37195
37251
|
fields: unknown[];
|
|
37196
37252
|
description?: string | undefined;
|
|
37197
|
-
persistence?: "persistent" | "runtime" |
|
|
37253
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
37254
|
+
shared?: boolean | undefined;
|
|
37198
37255
|
collection?: string | undefined;
|
|
37199
37256
|
instances?: Record<string, unknown>[] | undefined;
|
|
37200
37257
|
timestamps?: boolean | undefined;
|
|
@@ -37235,7 +37292,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37235
37292
|
from?: string | undefined;
|
|
37236
37293
|
traits?: (string | {
|
|
37237
37294
|
name: string;
|
|
37238
|
-
scope: "
|
|
37295
|
+
scope: "collection" | "instance";
|
|
37239
37296
|
description?: string | undefined;
|
|
37240
37297
|
ui?: Record<string, unknown> | undefined;
|
|
37241
37298
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -37300,10 +37357,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37300
37357
|
}[];
|
|
37301
37358
|
description?: string | undefined;
|
|
37302
37359
|
runtime?: boolean | undefined;
|
|
37303
|
-
singleton?: boolean | undefined;
|
|
37304
37360
|
collection?: string | undefined;
|
|
37305
37361
|
timestamps?: boolean | undefined;
|
|
37306
37362
|
pages?: string[] | undefined;
|
|
37363
|
+
singleton?: boolean | undefined;
|
|
37307
37364
|
}[] | undefined;
|
|
37308
37365
|
stateMachine?: {
|
|
37309
37366
|
events: {
|
|
@@ -37364,7 +37421,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37364
37421
|
name: string;
|
|
37365
37422
|
fields: unknown[];
|
|
37366
37423
|
description?: string | undefined;
|
|
37367
|
-
persistence?: "persistent" | "runtime" |
|
|
37424
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
37425
|
+
shared?: boolean | undefined;
|
|
37368
37426
|
collection?: string | undefined;
|
|
37369
37427
|
instances?: Record<string, unknown>[] | undefined;
|
|
37370
37428
|
timestamps?: boolean | undefined;
|
|
@@ -41998,7 +42056,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41998
42056
|
}>, z.ZodString]>, "many">>;
|
|
41999
42057
|
entity: z.ZodUnion<[z.ZodObject<{
|
|
42000
42058
|
name: z.ZodString;
|
|
42001
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
42059
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
42060
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
42002
42061
|
collection: z.ZodOptional<z.ZodString>;
|
|
42003
42062
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
42004
42063
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -42033,9 +42092,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42033
42092
|
}>>;
|
|
42034
42093
|
}, "strip", z.ZodTypeAny, {
|
|
42035
42094
|
name: string;
|
|
42036
|
-
persistence: "persistent" | "runtime"
|
|
42095
|
+
persistence: "persistent" | "runtime";
|
|
42037
42096
|
fields: EntityField[];
|
|
42038
42097
|
description?: string | undefined;
|
|
42098
|
+
shared?: boolean | undefined;
|
|
42039
42099
|
collection?: string | undefined;
|
|
42040
42100
|
instances?: Record<string, unknown>[] | undefined;
|
|
42041
42101
|
timestamps?: boolean | undefined;
|
|
@@ -42054,7 +42114,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42054
42114
|
name: string;
|
|
42055
42115
|
fields: unknown[];
|
|
42056
42116
|
description?: string | undefined;
|
|
42057
|
-
persistence?: "persistent" | "runtime" |
|
|
42117
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
42118
|
+
shared?: boolean | undefined;
|
|
42058
42119
|
collection?: string | undefined;
|
|
42059
42120
|
instances?: Record<string, unknown>[] | undefined;
|
|
42060
42121
|
timestamps?: boolean | undefined;
|
|
@@ -42073,30 +42134,30 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42073
42134
|
extends: z.ZodString;
|
|
42074
42135
|
name: z.ZodOptional<z.ZodString>;
|
|
42075
42136
|
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
42076
|
-
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"
|
|
42137
|
+
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"]>>;
|
|
42077
42138
|
collection: z.ZodOptional<z.ZodString>;
|
|
42078
42139
|
}, "strip", z.ZodTypeAny, {
|
|
42079
42140
|
extends: string;
|
|
42080
42141
|
name?: string | undefined;
|
|
42081
|
-
persistence?: "persistent" | "runtime" |
|
|
42142
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
42082
42143
|
collection?: string | undefined;
|
|
42083
42144
|
fields?: EntityField[] | undefined;
|
|
42084
42145
|
}, {
|
|
42085
42146
|
extends: string;
|
|
42086
42147
|
name?: string | undefined;
|
|
42087
|
-
persistence?: "persistent" | "runtime" |
|
|
42148
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
42088
42149
|
collection?: string | undefined;
|
|
42089
42150
|
fields?: unknown[] | undefined;
|
|
42090
42151
|
}>, {
|
|
42091
42152
|
extends: string;
|
|
42092
42153
|
name?: string | undefined;
|
|
42093
|
-
persistence?: "persistent" | "runtime" |
|
|
42154
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
42094
42155
|
collection?: string | undefined;
|
|
42095
42156
|
fields?: EntityField[] | undefined;
|
|
42096
42157
|
}, {
|
|
42097
42158
|
extends: string;
|
|
42098
42159
|
name?: string | undefined;
|
|
42099
|
-
persistence?: "persistent" | "runtime" |
|
|
42160
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
42100
42161
|
collection?: string | undefined;
|
|
42101
42162
|
fields?: unknown[] | undefined;
|
|
42102
42163
|
}>]>;
|
|
@@ -42190,10 +42251,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42190
42251
|
}[];
|
|
42191
42252
|
description?: string | undefined;
|
|
42192
42253
|
runtime?: boolean | undefined;
|
|
42193
|
-
singleton?: boolean | undefined;
|
|
42194
42254
|
collection?: string | undefined;
|
|
42195
42255
|
timestamps?: boolean | undefined;
|
|
42196
42256
|
pages?: string[] | undefined;
|
|
42257
|
+
singleton?: boolean | undefined;
|
|
42197
42258
|
}, {
|
|
42198
42259
|
name: string;
|
|
42199
42260
|
fields: {
|
|
@@ -42205,10 +42266,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42205
42266
|
}[];
|
|
42206
42267
|
description?: string | undefined;
|
|
42207
42268
|
runtime?: boolean | undefined;
|
|
42208
|
-
singleton?: boolean | undefined;
|
|
42209
42269
|
collection?: string | undefined;
|
|
42210
42270
|
timestamps?: boolean | undefined;
|
|
42211
42271
|
pages?: string[] | undefined;
|
|
42272
|
+
singleton?: boolean | undefined;
|
|
42212
42273
|
}>, "many">>;
|
|
42213
42274
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
42214
42275
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -42571,7 +42632,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42571
42632
|
}>>;
|
|
42572
42633
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
42573
42634
|
name: z.ZodString;
|
|
42574
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
42635
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
42636
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
42575
42637
|
collection: z.ZodOptional<z.ZodString>;
|
|
42576
42638
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
42577
42639
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -42606,9 +42668,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42606
42668
|
}>>;
|
|
42607
42669
|
}, "strip", z.ZodTypeAny, {
|
|
42608
42670
|
name: string;
|
|
42609
|
-
persistence: "persistent" | "runtime"
|
|
42671
|
+
persistence: "persistent" | "runtime";
|
|
42610
42672
|
fields: EntityField[];
|
|
42611
42673
|
description?: string | undefined;
|
|
42674
|
+
shared?: boolean | undefined;
|
|
42612
42675
|
collection?: string | undefined;
|
|
42613
42676
|
instances?: Record<string, unknown>[] | undefined;
|
|
42614
42677
|
timestamps?: boolean | undefined;
|
|
@@ -42627,7 +42690,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42627
42690
|
name: string;
|
|
42628
42691
|
fields: unknown[];
|
|
42629
42692
|
description?: string | undefined;
|
|
42630
|
-
persistence?: "persistent" | "runtime" |
|
|
42693
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
42694
|
+
shared?: boolean | undefined;
|
|
42631
42695
|
collection?: string | undefined;
|
|
42632
42696
|
instances?: Record<string, unknown>[] | undefined;
|
|
42633
42697
|
timestamps?: boolean | undefined;
|
|
@@ -42645,7 +42709,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42645
42709
|
}>>;
|
|
42646
42710
|
}, "strip", z.ZodTypeAny, {
|
|
42647
42711
|
name: string;
|
|
42648
|
-
scope: "
|
|
42712
|
+
scope: "collection" | "instance";
|
|
42649
42713
|
description?: string | undefined;
|
|
42650
42714
|
ui?: Record<string, unknown> | undefined;
|
|
42651
42715
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -42710,10 +42774,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42710
42774
|
}[];
|
|
42711
42775
|
description?: string | undefined;
|
|
42712
42776
|
runtime?: boolean | undefined;
|
|
42713
|
-
singleton?: boolean | undefined;
|
|
42714
42777
|
collection?: string | undefined;
|
|
42715
42778
|
timestamps?: boolean | undefined;
|
|
42716
42779
|
pages?: string[] | undefined;
|
|
42780
|
+
singleton?: boolean | undefined;
|
|
42717
42781
|
}[] | undefined;
|
|
42718
42782
|
stateMachine?: {
|
|
42719
42783
|
events: {
|
|
@@ -42772,9 +42836,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42772
42836
|
} | undefined;
|
|
42773
42837
|
sourceEntityDefinition?: {
|
|
42774
42838
|
name: string;
|
|
42775
|
-
persistence: "persistent" | "runtime"
|
|
42839
|
+
persistence: "persistent" | "runtime";
|
|
42776
42840
|
fields: EntityField[];
|
|
42777
42841
|
description?: string | undefined;
|
|
42842
|
+
shared?: boolean | undefined;
|
|
42778
42843
|
collection?: string | undefined;
|
|
42779
42844
|
instances?: Record<string, unknown>[] | undefined;
|
|
42780
42845
|
timestamps?: boolean | undefined;
|
|
@@ -42792,7 +42857,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42792
42857
|
} | undefined;
|
|
42793
42858
|
}, {
|
|
42794
42859
|
name: string;
|
|
42795
|
-
scope: "
|
|
42860
|
+
scope: "collection" | "instance";
|
|
42796
42861
|
description?: string | undefined;
|
|
42797
42862
|
ui?: Record<string, unknown> | undefined;
|
|
42798
42863
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -42857,10 +42922,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42857
42922
|
}[];
|
|
42858
42923
|
description?: string | undefined;
|
|
42859
42924
|
runtime?: boolean | undefined;
|
|
42860
|
-
singleton?: boolean | undefined;
|
|
42861
42925
|
collection?: string | undefined;
|
|
42862
42926
|
timestamps?: boolean | undefined;
|
|
42863
42927
|
pages?: string[] | undefined;
|
|
42928
|
+
singleton?: boolean | undefined;
|
|
42864
42929
|
}[] | undefined;
|
|
42865
42930
|
stateMachine?: {
|
|
42866
42931
|
events: {
|
|
@@ -42921,7 +42986,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42921
42986
|
name: string;
|
|
42922
42987
|
fields: unknown[];
|
|
42923
42988
|
description?: string | undefined;
|
|
42924
|
-
persistence?: "persistent" | "runtime" |
|
|
42989
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
42990
|
+
shared?: boolean | undefined;
|
|
42925
42991
|
collection?: string | undefined;
|
|
42926
42992
|
instances?: Record<string, unknown>[] | undefined;
|
|
42927
42993
|
timestamps?: boolean | undefined;
|
|
@@ -43077,10 +43143,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43077
43143
|
}[];
|
|
43078
43144
|
description?: string | undefined;
|
|
43079
43145
|
runtime?: boolean | undefined;
|
|
43080
|
-
singleton?: boolean | undefined;
|
|
43081
43146
|
collection?: string | undefined;
|
|
43082
43147
|
timestamps?: boolean | undefined;
|
|
43083
43148
|
pages?: string[] | undefined;
|
|
43149
|
+
singleton?: boolean | undefined;
|
|
43084
43150
|
}, {
|
|
43085
43151
|
name: string;
|
|
43086
43152
|
fields: {
|
|
@@ -43092,10 +43158,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43092
43158
|
}[];
|
|
43093
43159
|
description?: string | undefined;
|
|
43094
43160
|
runtime?: boolean | undefined;
|
|
43095
|
-
singleton?: boolean | undefined;
|
|
43096
43161
|
collection?: string | undefined;
|
|
43097
43162
|
timestamps?: boolean | undefined;
|
|
43098
43163
|
pages?: string[] | undefined;
|
|
43164
|
+
singleton?: boolean | undefined;
|
|
43099
43165
|
}>, "many">>;
|
|
43100
43166
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
43101
43167
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -43458,7 +43524,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43458
43524
|
}>>;
|
|
43459
43525
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
43460
43526
|
name: z.ZodString;
|
|
43461
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
43527
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
43528
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
43462
43529
|
collection: z.ZodOptional<z.ZodString>;
|
|
43463
43530
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
43464
43531
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -43493,9 +43560,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43493
43560
|
}>>;
|
|
43494
43561
|
}, "strip", z.ZodTypeAny, {
|
|
43495
43562
|
name: string;
|
|
43496
|
-
persistence: "persistent" | "runtime"
|
|
43563
|
+
persistence: "persistent" | "runtime";
|
|
43497
43564
|
fields: EntityField[];
|
|
43498
43565
|
description?: string | undefined;
|
|
43566
|
+
shared?: boolean | undefined;
|
|
43499
43567
|
collection?: string | undefined;
|
|
43500
43568
|
instances?: Record<string, unknown>[] | undefined;
|
|
43501
43569
|
timestamps?: boolean | undefined;
|
|
@@ -43514,7 +43582,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43514
43582
|
name: string;
|
|
43515
43583
|
fields: unknown[];
|
|
43516
43584
|
description?: string | undefined;
|
|
43517
|
-
persistence?: "persistent" | "runtime" |
|
|
43585
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
43586
|
+
shared?: boolean | undefined;
|
|
43518
43587
|
collection?: string | undefined;
|
|
43519
43588
|
instances?: Record<string, unknown>[] | undefined;
|
|
43520
43589
|
timestamps?: boolean | undefined;
|
|
@@ -43532,7 +43601,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43532
43601
|
}>>;
|
|
43533
43602
|
}, "strip", z.ZodTypeAny, {
|
|
43534
43603
|
name: string;
|
|
43535
|
-
scope: "
|
|
43604
|
+
scope: "collection" | "instance";
|
|
43536
43605
|
description?: string | undefined;
|
|
43537
43606
|
ui?: Record<string, unknown> | undefined;
|
|
43538
43607
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -43597,10 +43666,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43597
43666
|
}[];
|
|
43598
43667
|
description?: string | undefined;
|
|
43599
43668
|
runtime?: boolean | undefined;
|
|
43600
|
-
singleton?: boolean | undefined;
|
|
43601
43669
|
collection?: string | undefined;
|
|
43602
43670
|
timestamps?: boolean | undefined;
|
|
43603
43671
|
pages?: string[] | undefined;
|
|
43672
|
+
singleton?: boolean | undefined;
|
|
43604
43673
|
}[] | undefined;
|
|
43605
43674
|
stateMachine?: {
|
|
43606
43675
|
events: {
|
|
@@ -43659,9 +43728,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43659
43728
|
} | undefined;
|
|
43660
43729
|
sourceEntityDefinition?: {
|
|
43661
43730
|
name: string;
|
|
43662
|
-
persistence: "persistent" | "runtime"
|
|
43731
|
+
persistence: "persistent" | "runtime";
|
|
43663
43732
|
fields: EntityField[];
|
|
43664
43733
|
description?: string | undefined;
|
|
43734
|
+
shared?: boolean | undefined;
|
|
43665
43735
|
collection?: string | undefined;
|
|
43666
43736
|
instances?: Record<string, unknown>[] | undefined;
|
|
43667
43737
|
timestamps?: boolean | undefined;
|
|
@@ -43679,7 +43749,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43679
43749
|
} | undefined;
|
|
43680
43750
|
}, {
|
|
43681
43751
|
name: string;
|
|
43682
|
-
scope: "
|
|
43752
|
+
scope: "collection" | "instance";
|
|
43683
43753
|
description?: string | undefined;
|
|
43684
43754
|
ui?: Record<string, unknown> | undefined;
|
|
43685
43755
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -43744,10 +43814,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43744
43814
|
}[];
|
|
43745
43815
|
description?: string | undefined;
|
|
43746
43816
|
runtime?: boolean | undefined;
|
|
43747
|
-
singleton?: boolean | undefined;
|
|
43748
43817
|
collection?: string | undefined;
|
|
43749
43818
|
timestamps?: boolean | undefined;
|
|
43750
43819
|
pages?: string[] | undefined;
|
|
43820
|
+
singleton?: boolean | undefined;
|
|
43751
43821
|
}[] | undefined;
|
|
43752
43822
|
stateMachine?: {
|
|
43753
43823
|
events: {
|
|
@@ -43808,7 +43878,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43808
43878
|
name: string;
|
|
43809
43879
|
fields: unknown[];
|
|
43810
43880
|
description?: string | undefined;
|
|
43811
|
-
persistence?: "persistent" | "runtime" |
|
|
43881
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
43882
|
+
shared?: boolean | undefined;
|
|
43812
43883
|
collection?: string | undefined;
|
|
43813
43884
|
instances?: Record<string, unknown>[] | undefined;
|
|
43814
43885
|
timestamps?: boolean | undefined;
|
|
@@ -43831,7 +43902,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43831
43902
|
from?: string | undefined;
|
|
43832
43903
|
traits?: (string | {
|
|
43833
43904
|
name: string;
|
|
43834
|
-
scope: "
|
|
43905
|
+
scope: "collection" | "instance";
|
|
43835
43906
|
description?: string | undefined;
|
|
43836
43907
|
ui?: Record<string, unknown> | undefined;
|
|
43837
43908
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -43896,10 +43967,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43896
43967
|
}[];
|
|
43897
43968
|
description?: string | undefined;
|
|
43898
43969
|
runtime?: boolean | undefined;
|
|
43899
|
-
singleton?: boolean | undefined;
|
|
43900
43970
|
collection?: string | undefined;
|
|
43901
43971
|
timestamps?: boolean | undefined;
|
|
43902
43972
|
pages?: string[] | undefined;
|
|
43973
|
+
singleton?: boolean | undefined;
|
|
43903
43974
|
}[] | undefined;
|
|
43904
43975
|
stateMachine?: {
|
|
43905
43976
|
events: {
|
|
@@ -43958,9 +44029,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43958
44029
|
} | undefined;
|
|
43959
44030
|
sourceEntityDefinition?: {
|
|
43960
44031
|
name: string;
|
|
43961
|
-
persistence: "persistent" | "runtime"
|
|
44032
|
+
persistence: "persistent" | "runtime";
|
|
43962
44033
|
fields: EntityField[];
|
|
43963
44034
|
description?: string | undefined;
|
|
44035
|
+
shared?: boolean | undefined;
|
|
43964
44036
|
collection?: string | undefined;
|
|
43965
44037
|
instances?: Record<string, unknown>[] | undefined;
|
|
43966
44038
|
timestamps?: boolean | undefined;
|
|
@@ -43990,7 +44062,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43990
44062
|
from?: string | undefined;
|
|
43991
44063
|
traits?: (string | {
|
|
43992
44064
|
name: string;
|
|
43993
|
-
scope: "
|
|
44065
|
+
scope: "collection" | "instance";
|
|
43994
44066
|
description?: string | undefined;
|
|
43995
44067
|
ui?: Record<string, unknown> | undefined;
|
|
43996
44068
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -44055,10 +44127,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44055
44127
|
}[];
|
|
44056
44128
|
description?: string | undefined;
|
|
44057
44129
|
runtime?: boolean | undefined;
|
|
44058
|
-
singleton?: boolean | undefined;
|
|
44059
44130
|
collection?: string | undefined;
|
|
44060
44131
|
timestamps?: boolean | undefined;
|
|
44061
44132
|
pages?: string[] | undefined;
|
|
44133
|
+
singleton?: boolean | undefined;
|
|
44062
44134
|
}[] | undefined;
|
|
44063
44135
|
stateMachine?: {
|
|
44064
44136
|
events: {
|
|
@@ -44119,7 +44191,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44119
44191
|
name: string;
|
|
44120
44192
|
fields: unknown[];
|
|
44121
44193
|
description?: string | undefined;
|
|
44122
|
-
persistence?: "persistent" | "runtime" |
|
|
44194
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
44195
|
+
shared?: boolean | undefined;
|
|
44123
44196
|
collection?: string | undefined;
|
|
44124
44197
|
instances?: Record<string, unknown>[] | undefined;
|
|
44125
44198
|
timestamps?: boolean | undefined;
|
|
@@ -44388,9 +44461,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44388
44461
|
}, "strip", z.ZodTypeAny, {
|
|
44389
44462
|
entity: string | {
|
|
44390
44463
|
name: string;
|
|
44391
|
-
persistence: "persistent" | "runtime"
|
|
44464
|
+
persistence: "persistent" | "runtime";
|
|
44392
44465
|
fields: EntityField[];
|
|
44393
44466
|
description?: string | undefined;
|
|
44467
|
+
shared?: boolean | undefined;
|
|
44394
44468
|
collection?: string | undefined;
|
|
44395
44469
|
instances?: Record<string, unknown>[] | undefined;
|
|
44396
44470
|
timestamps?: boolean | undefined;
|
|
@@ -44408,14 +44482,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44408
44482
|
} | {
|
|
44409
44483
|
extends: string;
|
|
44410
44484
|
name?: string | undefined;
|
|
44411
|
-
persistence?: "persistent" | "runtime" |
|
|
44485
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
44412
44486
|
collection?: string | undefined;
|
|
44413
44487
|
fields?: EntityField[] | undefined;
|
|
44414
44488
|
};
|
|
44415
44489
|
name: string;
|
|
44416
44490
|
traits: (string | {
|
|
44417
44491
|
name: string;
|
|
44418
|
-
scope: "
|
|
44492
|
+
scope: "collection" | "instance";
|
|
44419
44493
|
description?: string | undefined;
|
|
44420
44494
|
ui?: Record<string, unknown> | undefined;
|
|
44421
44495
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -44480,10 +44554,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44480
44554
|
}[];
|
|
44481
44555
|
description?: string | undefined;
|
|
44482
44556
|
runtime?: boolean | undefined;
|
|
44483
|
-
singleton?: boolean | undefined;
|
|
44484
44557
|
collection?: string | undefined;
|
|
44485
44558
|
timestamps?: boolean | undefined;
|
|
44486
44559
|
pages?: string[] | undefined;
|
|
44560
|
+
singleton?: boolean | undefined;
|
|
44487
44561
|
}[] | undefined;
|
|
44488
44562
|
stateMachine?: {
|
|
44489
44563
|
events: {
|
|
@@ -44542,9 +44616,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44542
44616
|
} | undefined;
|
|
44543
44617
|
sourceEntityDefinition?: {
|
|
44544
44618
|
name: string;
|
|
44545
|
-
persistence: "persistent" | "runtime"
|
|
44619
|
+
persistence: "persistent" | "runtime";
|
|
44546
44620
|
fields: EntityField[];
|
|
44547
44621
|
description?: string | undefined;
|
|
44622
|
+
shared?: boolean | undefined;
|
|
44548
44623
|
collection?: string | undefined;
|
|
44549
44624
|
instances?: Record<string, unknown>[] | undefined;
|
|
44550
44625
|
timestamps?: boolean | undefined;
|
|
@@ -44585,7 +44660,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44585
44660
|
from?: string | undefined;
|
|
44586
44661
|
traits?: (string | {
|
|
44587
44662
|
name: string;
|
|
44588
|
-
scope: "
|
|
44663
|
+
scope: "collection" | "instance";
|
|
44589
44664
|
description?: string | undefined;
|
|
44590
44665
|
ui?: Record<string, unknown> | undefined;
|
|
44591
44666
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -44650,10 +44725,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44650
44725
|
}[];
|
|
44651
44726
|
description?: string | undefined;
|
|
44652
44727
|
runtime?: boolean | undefined;
|
|
44653
|
-
singleton?: boolean | undefined;
|
|
44654
44728
|
collection?: string | undefined;
|
|
44655
44729
|
timestamps?: boolean | undefined;
|
|
44656
44730
|
pages?: string[] | undefined;
|
|
44731
|
+
singleton?: boolean | undefined;
|
|
44657
44732
|
}[] | undefined;
|
|
44658
44733
|
stateMachine?: {
|
|
44659
44734
|
events: {
|
|
@@ -44712,9 +44787,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44712
44787
|
} | undefined;
|
|
44713
44788
|
sourceEntityDefinition?: {
|
|
44714
44789
|
name: string;
|
|
44715
|
-
persistence: "persistent" | "runtime"
|
|
44790
|
+
persistence: "persistent" | "runtime";
|
|
44716
44791
|
fields: EntityField[];
|
|
44717
44792
|
description?: string | undefined;
|
|
44793
|
+
shared?: boolean | undefined;
|
|
44718
44794
|
collection?: string | undefined;
|
|
44719
44795
|
instances?: Record<string, unknown>[] | undefined;
|
|
44720
44796
|
timestamps?: boolean | undefined;
|
|
@@ -45304,7 +45380,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45304
45380
|
name: string;
|
|
45305
45381
|
fields: unknown[];
|
|
45306
45382
|
description?: string | undefined;
|
|
45307
|
-
persistence?: "persistent" | "runtime" |
|
|
45383
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
45384
|
+
shared?: boolean | undefined;
|
|
45308
45385
|
collection?: string | undefined;
|
|
45309
45386
|
instances?: Record<string, unknown>[] | undefined;
|
|
45310
45387
|
timestamps?: boolean | undefined;
|
|
@@ -45322,14 +45399,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45322
45399
|
} | {
|
|
45323
45400
|
extends: string;
|
|
45324
45401
|
name?: string | undefined;
|
|
45325
|
-
persistence?: "persistent" | "runtime" |
|
|
45402
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
45326
45403
|
collection?: string | undefined;
|
|
45327
45404
|
fields?: unknown[] | undefined;
|
|
45328
45405
|
};
|
|
45329
45406
|
name: string;
|
|
45330
45407
|
traits: (string | {
|
|
45331
45408
|
name: string;
|
|
45332
|
-
scope: "
|
|
45409
|
+
scope: "collection" | "instance";
|
|
45333
45410
|
description?: string | undefined;
|
|
45334
45411
|
ui?: Record<string, unknown> | undefined;
|
|
45335
45412
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -45394,10 +45471,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45394
45471
|
}[];
|
|
45395
45472
|
description?: string | undefined;
|
|
45396
45473
|
runtime?: boolean | undefined;
|
|
45397
|
-
singleton?: boolean | undefined;
|
|
45398
45474
|
collection?: string | undefined;
|
|
45399
45475
|
timestamps?: boolean | undefined;
|
|
45400
45476
|
pages?: string[] | undefined;
|
|
45477
|
+
singleton?: boolean | undefined;
|
|
45401
45478
|
}[] | undefined;
|
|
45402
45479
|
stateMachine?: {
|
|
45403
45480
|
events: {
|
|
@@ -45458,7 +45535,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45458
45535
|
name: string;
|
|
45459
45536
|
fields: unknown[];
|
|
45460
45537
|
description?: string | undefined;
|
|
45461
|
-
persistence?: "persistent" | "runtime" |
|
|
45538
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
45539
|
+
shared?: boolean | undefined;
|
|
45462
45540
|
collection?: string | undefined;
|
|
45463
45541
|
instances?: Record<string, unknown>[] | undefined;
|
|
45464
45542
|
timestamps?: boolean | undefined;
|
|
@@ -45499,7 +45577,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45499
45577
|
from?: string | undefined;
|
|
45500
45578
|
traits?: (string | {
|
|
45501
45579
|
name: string;
|
|
45502
|
-
scope: "
|
|
45580
|
+
scope: "collection" | "instance";
|
|
45503
45581
|
description?: string | undefined;
|
|
45504
45582
|
ui?: Record<string, unknown> | undefined;
|
|
45505
45583
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -45564,10 +45642,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45564
45642
|
}[];
|
|
45565
45643
|
description?: string | undefined;
|
|
45566
45644
|
runtime?: boolean | undefined;
|
|
45567
|
-
singleton?: boolean | undefined;
|
|
45568
45645
|
collection?: string | undefined;
|
|
45569
45646
|
timestamps?: boolean | undefined;
|
|
45570
45647
|
pages?: string[] | undefined;
|
|
45648
|
+
singleton?: boolean | undefined;
|
|
45571
45649
|
}[] | undefined;
|
|
45572
45650
|
stateMachine?: {
|
|
45573
45651
|
events: {
|
|
@@ -45628,7 +45706,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45628
45706
|
name: string;
|
|
45629
45707
|
fields: unknown[];
|
|
45630
45708
|
description?: string | undefined;
|
|
45631
|
-
persistence?: "persistent" | "runtime" |
|
|
45709
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
45710
|
+
shared?: boolean | undefined;
|
|
45632
45711
|
collection?: string | undefined;
|
|
45633
45712
|
instances?: Record<string, unknown>[] | undefined;
|
|
45634
45713
|
timestamps?: boolean | undefined;
|
|
@@ -50599,7 +50678,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50599
50678
|
}>, z.ZodString]>, "many">>;
|
|
50600
50679
|
entity: z.ZodUnion<[z.ZodObject<{
|
|
50601
50680
|
name: z.ZodString;
|
|
50602
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
50681
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
50682
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
50603
50683
|
collection: z.ZodOptional<z.ZodString>;
|
|
50604
50684
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
50605
50685
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -50634,9 +50714,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50634
50714
|
}>>;
|
|
50635
50715
|
}, "strip", z.ZodTypeAny, {
|
|
50636
50716
|
name: string;
|
|
50637
|
-
persistence: "persistent" | "runtime"
|
|
50717
|
+
persistence: "persistent" | "runtime";
|
|
50638
50718
|
fields: EntityField[];
|
|
50639
50719
|
description?: string | undefined;
|
|
50720
|
+
shared?: boolean | undefined;
|
|
50640
50721
|
collection?: string | undefined;
|
|
50641
50722
|
instances?: Record<string, unknown>[] | undefined;
|
|
50642
50723
|
timestamps?: boolean | undefined;
|
|
@@ -50655,7 +50736,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50655
50736
|
name: string;
|
|
50656
50737
|
fields: unknown[];
|
|
50657
50738
|
description?: string | undefined;
|
|
50658
|
-
persistence?: "persistent" | "runtime" |
|
|
50739
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
50740
|
+
shared?: boolean | undefined;
|
|
50659
50741
|
collection?: string | undefined;
|
|
50660
50742
|
instances?: Record<string, unknown>[] | undefined;
|
|
50661
50743
|
timestamps?: boolean | undefined;
|
|
@@ -50674,30 +50756,30 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50674
50756
|
extends: z.ZodString;
|
|
50675
50757
|
name: z.ZodOptional<z.ZodString>;
|
|
50676
50758
|
fields: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
|
|
50677
|
-
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"
|
|
50759
|
+
persistence: z.ZodOptional<z.ZodEnum<["persistent", "runtime"]>>;
|
|
50678
50760
|
collection: z.ZodOptional<z.ZodString>;
|
|
50679
50761
|
}, "strip", z.ZodTypeAny, {
|
|
50680
50762
|
extends: string;
|
|
50681
50763
|
name?: string | undefined;
|
|
50682
|
-
persistence?: "persistent" | "runtime" |
|
|
50764
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
50683
50765
|
collection?: string | undefined;
|
|
50684
50766
|
fields?: EntityField[] | undefined;
|
|
50685
50767
|
}, {
|
|
50686
50768
|
extends: string;
|
|
50687
50769
|
name?: string | undefined;
|
|
50688
|
-
persistence?: "persistent" | "runtime" |
|
|
50770
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
50689
50771
|
collection?: string | undefined;
|
|
50690
50772
|
fields?: unknown[] | undefined;
|
|
50691
50773
|
}>, {
|
|
50692
50774
|
extends: string;
|
|
50693
50775
|
name?: string | undefined;
|
|
50694
|
-
persistence?: "persistent" | "runtime" |
|
|
50776
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
50695
50777
|
collection?: string | undefined;
|
|
50696
50778
|
fields?: EntityField[] | undefined;
|
|
50697
50779
|
}, {
|
|
50698
50780
|
extends: string;
|
|
50699
50781
|
name?: string | undefined;
|
|
50700
|
-
persistence?: "persistent" | "runtime" |
|
|
50782
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
50701
50783
|
collection?: string | undefined;
|
|
50702
50784
|
fields?: unknown[] | undefined;
|
|
50703
50785
|
}>]>;
|
|
@@ -50791,10 +50873,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50791
50873
|
}[];
|
|
50792
50874
|
description?: string | undefined;
|
|
50793
50875
|
runtime?: boolean | undefined;
|
|
50794
|
-
singleton?: boolean | undefined;
|
|
50795
50876
|
collection?: string | undefined;
|
|
50796
50877
|
timestamps?: boolean | undefined;
|
|
50797
50878
|
pages?: string[] | undefined;
|
|
50879
|
+
singleton?: boolean | undefined;
|
|
50798
50880
|
}, {
|
|
50799
50881
|
name: string;
|
|
50800
50882
|
fields: {
|
|
@@ -50806,10 +50888,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50806
50888
|
}[];
|
|
50807
50889
|
description?: string | undefined;
|
|
50808
50890
|
runtime?: boolean | undefined;
|
|
50809
|
-
singleton?: boolean | undefined;
|
|
50810
50891
|
collection?: string | undefined;
|
|
50811
50892
|
timestamps?: boolean | undefined;
|
|
50812
50893
|
pages?: string[] | undefined;
|
|
50894
|
+
singleton?: boolean | undefined;
|
|
50813
50895
|
}>, "many">>;
|
|
50814
50896
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
50815
50897
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -51172,7 +51254,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51172
51254
|
}>>;
|
|
51173
51255
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
51174
51256
|
name: z.ZodString;
|
|
51175
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
51257
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
51258
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
51176
51259
|
collection: z.ZodOptional<z.ZodString>;
|
|
51177
51260
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
51178
51261
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -51207,9 +51290,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51207
51290
|
}>>;
|
|
51208
51291
|
}, "strip", z.ZodTypeAny, {
|
|
51209
51292
|
name: string;
|
|
51210
|
-
persistence: "persistent" | "runtime"
|
|
51293
|
+
persistence: "persistent" | "runtime";
|
|
51211
51294
|
fields: EntityField[];
|
|
51212
51295
|
description?: string | undefined;
|
|
51296
|
+
shared?: boolean | undefined;
|
|
51213
51297
|
collection?: string | undefined;
|
|
51214
51298
|
instances?: Record<string, unknown>[] | undefined;
|
|
51215
51299
|
timestamps?: boolean | undefined;
|
|
@@ -51228,7 +51312,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51228
51312
|
name: string;
|
|
51229
51313
|
fields: unknown[];
|
|
51230
51314
|
description?: string | undefined;
|
|
51231
|
-
persistence?: "persistent" | "runtime" |
|
|
51315
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
51316
|
+
shared?: boolean | undefined;
|
|
51232
51317
|
collection?: string | undefined;
|
|
51233
51318
|
instances?: Record<string, unknown>[] | undefined;
|
|
51234
51319
|
timestamps?: boolean | undefined;
|
|
@@ -51246,7 +51331,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51246
51331
|
}>>;
|
|
51247
51332
|
}, "strip", z.ZodTypeAny, {
|
|
51248
51333
|
name: string;
|
|
51249
|
-
scope: "
|
|
51334
|
+
scope: "collection" | "instance";
|
|
51250
51335
|
description?: string | undefined;
|
|
51251
51336
|
ui?: Record<string, unknown> | undefined;
|
|
51252
51337
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -51311,10 +51396,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51311
51396
|
}[];
|
|
51312
51397
|
description?: string | undefined;
|
|
51313
51398
|
runtime?: boolean | undefined;
|
|
51314
|
-
singleton?: boolean | undefined;
|
|
51315
51399
|
collection?: string | undefined;
|
|
51316
51400
|
timestamps?: boolean | undefined;
|
|
51317
51401
|
pages?: string[] | undefined;
|
|
51402
|
+
singleton?: boolean | undefined;
|
|
51318
51403
|
}[] | undefined;
|
|
51319
51404
|
stateMachine?: {
|
|
51320
51405
|
events: {
|
|
@@ -51373,9 +51458,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51373
51458
|
} | undefined;
|
|
51374
51459
|
sourceEntityDefinition?: {
|
|
51375
51460
|
name: string;
|
|
51376
|
-
persistence: "persistent" | "runtime"
|
|
51461
|
+
persistence: "persistent" | "runtime";
|
|
51377
51462
|
fields: EntityField[];
|
|
51378
51463
|
description?: string | undefined;
|
|
51464
|
+
shared?: boolean | undefined;
|
|
51379
51465
|
collection?: string | undefined;
|
|
51380
51466
|
instances?: Record<string, unknown>[] | undefined;
|
|
51381
51467
|
timestamps?: boolean | undefined;
|
|
@@ -51393,7 +51479,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51393
51479
|
} | undefined;
|
|
51394
51480
|
}, {
|
|
51395
51481
|
name: string;
|
|
51396
|
-
scope: "
|
|
51482
|
+
scope: "collection" | "instance";
|
|
51397
51483
|
description?: string | undefined;
|
|
51398
51484
|
ui?: Record<string, unknown> | undefined;
|
|
51399
51485
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -51458,10 +51544,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51458
51544
|
}[];
|
|
51459
51545
|
description?: string | undefined;
|
|
51460
51546
|
runtime?: boolean | undefined;
|
|
51461
|
-
singleton?: boolean | undefined;
|
|
51462
51547
|
collection?: string | undefined;
|
|
51463
51548
|
timestamps?: boolean | undefined;
|
|
51464
51549
|
pages?: string[] | undefined;
|
|
51550
|
+
singleton?: boolean | undefined;
|
|
51465
51551
|
}[] | undefined;
|
|
51466
51552
|
stateMachine?: {
|
|
51467
51553
|
events: {
|
|
@@ -51522,7 +51608,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51522
51608
|
name: string;
|
|
51523
51609
|
fields: unknown[];
|
|
51524
51610
|
description?: string | undefined;
|
|
51525
|
-
persistence?: "persistent" | "runtime" |
|
|
51611
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
51612
|
+
shared?: boolean | undefined;
|
|
51526
51613
|
collection?: string | undefined;
|
|
51527
51614
|
instances?: Record<string, unknown>[] | undefined;
|
|
51528
51615
|
timestamps?: boolean | undefined;
|
|
@@ -51678,10 +51765,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51678
51765
|
}[];
|
|
51679
51766
|
description?: string | undefined;
|
|
51680
51767
|
runtime?: boolean | undefined;
|
|
51681
|
-
singleton?: boolean | undefined;
|
|
51682
51768
|
collection?: string | undefined;
|
|
51683
51769
|
timestamps?: boolean | undefined;
|
|
51684
51770
|
pages?: string[] | undefined;
|
|
51771
|
+
singleton?: boolean | undefined;
|
|
51685
51772
|
}, {
|
|
51686
51773
|
name: string;
|
|
51687
51774
|
fields: {
|
|
@@ -51693,10 +51780,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51693
51780
|
}[];
|
|
51694
51781
|
description?: string | undefined;
|
|
51695
51782
|
runtime?: boolean | undefined;
|
|
51696
|
-
singleton?: boolean | undefined;
|
|
51697
51783
|
collection?: string | undefined;
|
|
51698
51784
|
timestamps?: boolean | undefined;
|
|
51699
51785
|
pages?: string[] | undefined;
|
|
51786
|
+
singleton?: boolean | undefined;
|
|
51700
51787
|
}>, "many">>;
|
|
51701
51788
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
51702
51789
|
states: z.ZodArray<z.ZodObject<{
|
|
@@ -52059,7 +52146,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52059
52146
|
}>>;
|
|
52060
52147
|
sourceEntityDefinition: z.ZodOptional<z.ZodObject<{
|
|
52061
52148
|
name: z.ZodString;
|
|
52062
|
-
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"
|
|
52149
|
+
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
52150
|
+
shared: z.ZodOptional<z.ZodBoolean>;
|
|
52063
52151
|
collection: z.ZodOptional<z.ZodString>;
|
|
52064
52152
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
52065
52153
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -52094,9 +52182,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52094
52182
|
}>>;
|
|
52095
52183
|
}, "strip", z.ZodTypeAny, {
|
|
52096
52184
|
name: string;
|
|
52097
|
-
persistence: "persistent" | "runtime"
|
|
52185
|
+
persistence: "persistent" | "runtime";
|
|
52098
52186
|
fields: EntityField[];
|
|
52099
52187
|
description?: string | undefined;
|
|
52188
|
+
shared?: boolean | undefined;
|
|
52100
52189
|
collection?: string | undefined;
|
|
52101
52190
|
instances?: Record<string, unknown>[] | undefined;
|
|
52102
52191
|
timestamps?: boolean | undefined;
|
|
@@ -52115,7 +52204,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52115
52204
|
name: string;
|
|
52116
52205
|
fields: unknown[];
|
|
52117
52206
|
description?: string | undefined;
|
|
52118
|
-
persistence?: "persistent" | "runtime" |
|
|
52207
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
52208
|
+
shared?: boolean | undefined;
|
|
52119
52209
|
collection?: string | undefined;
|
|
52120
52210
|
instances?: Record<string, unknown>[] | undefined;
|
|
52121
52211
|
timestamps?: boolean | undefined;
|
|
@@ -52133,7 +52223,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52133
52223
|
}>>;
|
|
52134
52224
|
}, "strip", z.ZodTypeAny, {
|
|
52135
52225
|
name: string;
|
|
52136
|
-
scope: "
|
|
52226
|
+
scope: "collection" | "instance";
|
|
52137
52227
|
description?: string | undefined;
|
|
52138
52228
|
ui?: Record<string, unknown> | undefined;
|
|
52139
52229
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -52198,10 +52288,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52198
52288
|
}[];
|
|
52199
52289
|
description?: string | undefined;
|
|
52200
52290
|
runtime?: boolean | undefined;
|
|
52201
|
-
singleton?: boolean | undefined;
|
|
52202
52291
|
collection?: string | undefined;
|
|
52203
52292
|
timestamps?: boolean | undefined;
|
|
52204
52293
|
pages?: string[] | undefined;
|
|
52294
|
+
singleton?: boolean | undefined;
|
|
52205
52295
|
}[] | undefined;
|
|
52206
52296
|
stateMachine?: {
|
|
52207
52297
|
events: {
|
|
@@ -52260,9 +52350,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52260
52350
|
} | undefined;
|
|
52261
52351
|
sourceEntityDefinition?: {
|
|
52262
52352
|
name: string;
|
|
52263
|
-
persistence: "persistent" | "runtime"
|
|
52353
|
+
persistence: "persistent" | "runtime";
|
|
52264
52354
|
fields: EntityField[];
|
|
52265
52355
|
description?: string | undefined;
|
|
52356
|
+
shared?: boolean | undefined;
|
|
52266
52357
|
collection?: string | undefined;
|
|
52267
52358
|
instances?: Record<string, unknown>[] | undefined;
|
|
52268
52359
|
timestamps?: boolean | undefined;
|
|
@@ -52280,7 +52371,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52280
52371
|
} | undefined;
|
|
52281
52372
|
}, {
|
|
52282
52373
|
name: string;
|
|
52283
|
-
scope: "
|
|
52374
|
+
scope: "collection" | "instance";
|
|
52284
52375
|
description?: string | undefined;
|
|
52285
52376
|
ui?: Record<string, unknown> | undefined;
|
|
52286
52377
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -52345,10 +52436,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52345
52436
|
}[];
|
|
52346
52437
|
description?: string | undefined;
|
|
52347
52438
|
runtime?: boolean | undefined;
|
|
52348
|
-
singleton?: boolean | undefined;
|
|
52349
52439
|
collection?: string | undefined;
|
|
52350
52440
|
timestamps?: boolean | undefined;
|
|
52351
52441
|
pages?: string[] | undefined;
|
|
52442
|
+
singleton?: boolean | undefined;
|
|
52352
52443
|
}[] | undefined;
|
|
52353
52444
|
stateMachine?: {
|
|
52354
52445
|
events: {
|
|
@@ -52409,7 +52500,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52409
52500
|
name: string;
|
|
52410
52501
|
fields: unknown[];
|
|
52411
52502
|
description?: string | undefined;
|
|
52412
|
-
persistence?: "persistent" | "runtime" |
|
|
52503
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
52504
|
+
shared?: boolean | undefined;
|
|
52413
52505
|
collection?: string | undefined;
|
|
52414
52506
|
instances?: Record<string, unknown>[] | undefined;
|
|
52415
52507
|
timestamps?: boolean | undefined;
|
|
@@ -52432,7 +52524,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52432
52524
|
from?: string | undefined;
|
|
52433
52525
|
traits?: (string | {
|
|
52434
52526
|
name: string;
|
|
52435
|
-
scope: "
|
|
52527
|
+
scope: "collection" | "instance";
|
|
52436
52528
|
description?: string | undefined;
|
|
52437
52529
|
ui?: Record<string, unknown> | undefined;
|
|
52438
52530
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -52497,10 +52589,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52497
52589
|
}[];
|
|
52498
52590
|
description?: string | undefined;
|
|
52499
52591
|
runtime?: boolean | undefined;
|
|
52500
|
-
singleton?: boolean | undefined;
|
|
52501
52592
|
collection?: string | undefined;
|
|
52502
52593
|
timestamps?: boolean | undefined;
|
|
52503
52594
|
pages?: string[] | undefined;
|
|
52595
|
+
singleton?: boolean | undefined;
|
|
52504
52596
|
}[] | undefined;
|
|
52505
52597
|
stateMachine?: {
|
|
52506
52598
|
events: {
|
|
@@ -52559,9 +52651,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52559
52651
|
} | undefined;
|
|
52560
52652
|
sourceEntityDefinition?: {
|
|
52561
52653
|
name: string;
|
|
52562
|
-
persistence: "persistent" | "runtime"
|
|
52654
|
+
persistence: "persistent" | "runtime";
|
|
52563
52655
|
fields: EntityField[];
|
|
52564
52656
|
description?: string | undefined;
|
|
52657
|
+
shared?: boolean | undefined;
|
|
52565
52658
|
collection?: string | undefined;
|
|
52566
52659
|
instances?: Record<string, unknown>[] | undefined;
|
|
52567
52660
|
timestamps?: boolean | undefined;
|
|
@@ -52591,7 +52684,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52591
52684
|
from?: string | undefined;
|
|
52592
52685
|
traits?: (string | {
|
|
52593
52686
|
name: string;
|
|
52594
|
-
scope: "
|
|
52687
|
+
scope: "collection" | "instance";
|
|
52595
52688
|
description?: string | undefined;
|
|
52596
52689
|
ui?: Record<string, unknown> | undefined;
|
|
52597
52690
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -52656,10 +52749,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52656
52749
|
}[];
|
|
52657
52750
|
description?: string | undefined;
|
|
52658
52751
|
runtime?: boolean | undefined;
|
|
52659
|
-
singleton?: boolean | undefined;
|
|
52660
52752
|
collection?: string | undefined;
|
|
52661
52753
|
timestamps?: boolean | undefined;
|
|
52662
52754
|
pages?: string[] | undefined;
|
|
52755
|
+
singleton?: boolean | undefined;
|
|
52663
52756
|
}[] | undefined;
|
|
52664
52757
|
stateMachine?: {
|
|
52665
52758
|
events: {
|
|
@@ -52720,7 +52813,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52720
52813
|
name: string;
|
|
52721
52814
|
fields: unknown[];
|
|
52722
52815
|
description?: string | undefined;
|
|
52723
|
-
persistence?: "persistent" | "runtime" |
|
|
52816
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
52817
|
+
shared?: boolean | undefined;
|
|
52724
52818
|
collection?: string | undefined;
|
|
52725
52819
|
instances?: Record<string, unknown>[] | undefined;
|
|
52726
52820
|
timestamps?: boolean | undefined;
|
|
@@ -52989,9 +53083,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52989
53083
|
}, "strip", z.ZodTypeAny, {
|
|
52990
53084
|
entity: string | {
|
|
52991
53085
|
name: string;
|
|
52992
|
-
persistence: "persistent" | "runtime"
|
|
53086
|
+
persistence: "persistent" | "runtime";
|
|
52993
53087
|
fields: EntityField[];
|
|
52994
53088
|
description?: string | undefined;
|
|
53089
|
+
shared?: boolean | undefined;
|
|
52995
53090
|
collection?: string | undefined;
|
|
52996
53091
|
instances?: Record<string, unknown>[] | undefined;
|
|
52997
53092
|
timestamps?: boolean | undefined;
|
|
@@ -53009,14 +53104,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53009
53104
|
} | {
|
|
53010
53105
|
extends: string;
|
|
53011
53106
|
name?: string | undefined;
|
|
53012
|
-
persistence?: "persistent" | "runtime" |
|
|
53107
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
53013
53108
|
collection?: string | undefined;
|
|
53014
53109
|
fields?: EntityField[] | undefined;
|
|
53015
53110
|
};
|
|
53016
53111
|
name: string;
|
|
53017
53112
|
traits: (string | {
|
|
53018
53113
|
name: string;
|
|
53019
|
-
scope: "
|
|
53114
|
+
scope: "collection" | "instance";
|
|
53020
53115
|
description?: string | undefined;
|
|
53021
53116
|
ui?: Record<string, unknown> | undefined;
|
|
53022
53117
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -53081,10 +53176,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53081
53176
|
}[];
|
|
53082
53177
|
description?: string | undefined;
|
|
53083
53178
|
runtime?: boolean | undefined;
|
|
53084
|
-
singleton?: boolean | undefined;
|
|
53085
53179
|
collection?: string | undefined;
|
|
53086
53180
|
timestamps?: boolean | undefined;
|
|
53087
53181
|
pages?: string[] | undefined;
|
|
53182
|
+
singleton?: boolean | undefined;
|
|
53088
53183
|
}[] | undefined;
|
|
53089
53184
|
stateMachine?: {
|
|
53090
53185
|
events: {
|
|
@@ -53143,9 +53238,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53143
53238
|
} | undefined;
|
|
53144
53239
|
sourceEntityDefinition?: {
|
|
53145
53240
|
name: string;
|
|
53146
|
-
persistence: "persistent" | "runtime"
|
|
53241
|
+
persistence: "persistent" | "runtime";
|
|
53147
53242
|
fields: EntityField[];
|
|
53148
53243
|
description?: string | undefined;
|
|
53244
|
+
shared?: boolean | undefined;
|
|
53149
53245
|
collection?: string | undefined;
|
|
53150
53246
|
instances?: Record<string, unknown>[] | undefined;
|
|
53151
53247
|
timestamps?: boolean | undefined;
|
|
@@ -53186,7 +53282,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53186
53282
|
from?: string | undefined;
|
|
53187
53283
|
traits?: (string | {
|
|
53188
53284
|
name: string;
|
|
53189
|
-
scope: "
|
|
53285
|
+
scope: "collection" | "instance";
|
|
53190
53286
|
description?: string | undefined;
|
|
53191
53287
|
ui?: Record<string, unknown> | undefined;
|
|
53192
53288
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -53251,10 +53347,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53251
53347
|
}[];
|
|
53252
53348
|
description?: string | undefined;
|
|
53253
53349
|
runtime?: boolean | undefined;
|
|
53254
|
-
singleton?: boolean | undefined;
|
|
53255
53350
|
collection?: string | undefined;
|
|
53256
53351
|
timestamps?: boolean | undefined;
|
|
53257
53352
|
pages?: string[] | undefined;
|
|
53353
|
+
singleton?: boolean | undefined;
|
|
53258
53354
|
}[] | undefined;
|
|
53259
53355
|
stateMachine?: {
|
|
53260
53356
|
events: {
|
|
@@ -53313,9 +53409,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53313
53409
|
} | undefined;
|
|
53314
53410
|
sourceEntityDefinition?: {
|
|
53315
53411
|
name: string;
|
|
53316
|
-
persistence: "persistent" | "runtime"
|
|
53412
|
+
persistence: "persistent" | "runtime";
|
|
53317
53413
|
fields: EntityField[];
|
|
53318
53414
|
description?: string | undefined;
|
|
53415
|
+
shared?: boolean | undefined;
|
|
53319
53416
|
collection?: string | undefined;
|
|
53320
53417
|
instances?: Record<string, unknown>[] | undefined;
|
|
53321
53418
|
timestamps?: boolean | undefined;
|
|
@@ -53905,7 +54002,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53905
54002
|
name: string;
|
|
53906
54003
|
fields: unknown[];
|
|
53907
54004
|
description?: string | undefined;
|
|
53908
|
-
persistence?: "persistent" | "runtime" |
|
|
54005
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
54006
|
+
shared?: boolean | undefined;
|
|
53909
54007
|
collection?: string | undefined;
|
|
53910
54008
|
instances?: Record<string, unknown>[] | undefined;
|
|
53911
54009
|
timestamps?: boolean | undefined;
|
|
@@ -53923,14 +54021,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53923
54021
|
} | {
|
|
53924
54022
|
extends: string;
|
|
53925
54023
|
name?: string | undefined;
|
|
53926
|
-
persistence?: "persistent" | "runtime" |
|
|
54024
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
53927
54025
|
collection?: string | undefined;
|
|
53928
54026
|
fields?: unknown[] | undefined;
|
|
53929
54027
|
};
|
|
53930
54028
|
name: string;
|
|
53931
54029
|
traits: (string | {
|
|
53932
54030
|
name: string;
|
|
53933
|
-
scope: "
|
|
54031
|
+
scope: "collection" | "instance";
|
|
53934
54032
|
description?: string | undefined;
|
|
53935
54033
|
ui?: Record<string, unknown> | undefined;
|
|
53936
54034
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -53995,10 +54093,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53995
54093
|
}[];
|
|
53996
54094
|
description?: string | undefined;
|
|
53997
54095
|
runtime?: boolean | undefined;
|
|
53998
|
-
singleton?: boolean | undefined;
|
|
53999
54096
|
collection?: string | undefined;
|
|
54000
54097
|
timestamps?: boolean | undefined;
|
|
54001
54098
|
pages?: string[] | undefined;
|
|
54099
|
+
singleton?: boolean | undefined;
|
|
54002
54100
|
}[] | undefined;
|
|
54003
54101
|
stateMachine?: {
|
|
54004
54102
|
events: {
|
|
@@ -54059,7 +54157,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54059
54157
|
name: string;
|
|
54060
54158
|
fields: unknown[];
|
|
54061
54159
|
description?: string | undefined;
|
|
54062
|
-
persistence?: "persistent" | "runtime" |
|
|
54160
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
54161
|
+
shared?: boolean | undefined;
|
|
54063
54162
|
collection?: string | undefined;
|
|
54064
54163
|
instances?: Record<string, unknown>[] | undefined;
|
|
54065
54164
|
timestamps?: boolean | undefined;
|
|
@@ -54100,7 +54199,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54100
54199
|
from?: string | undefined;
|
|
54101
54200
|
traits?: (string | {
|
|
54102
54201
|
name: string;
|
|
54103
|
-
scope: "
|
|
54202
|
+
scope: "collection" | "instance";
|
|
54104
54203
|
description?: string | undefined;
|
|
54105
54204
|
ui?: Record<string, unknown> | undefined;
|
|
54106
54205
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -54165,10 +54264,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54165
54264
|
}[];
|
|
54166
54265
|
description?: string | undefined;
|
|
54167
54266
|
runtime?: boolean | undefined;
|
|
54168
|
-
singleton?: boolean | undefined;
|
|
54169
54267
|
collection?: string | undefined;
|
|
54170
54268
|
timestamps?: boolean | undefined;
|
|
54171
54269
|
pages?: string[] | undefined;
|
|
54270
|
+
singleton?: boolean | undefined;
|
|
54172
54271
|
}[] | undefined;
|
|
54173
54272
|
stateMachine?: {
|
|
54174
54273
|
events: {
|
|
@@ -54229,7 +54328,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54229
54328
|
name: string;
|
|
54230
54329
|
fields: unknown[];
|
|
54231
54330
|
description?: string | undefined;
|
|
54232
|
-
persistence?: "persistent" | "runtime" |
|
|
54331
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
54332
|
+
shared?: boolean | undefined;
|
|
54233
54333
|
collection?: string | undefined;
|
|
54234
54334
|
instances?: Record<string, unknown>[] | undefined;
|
|
54235
54335
|
timestamps?: boolean | undefined;
|
|
@@ -55039,9 +55139,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55039
55139
|
orbitals: {
|
|
55040
55140
|
entity: string | {
|
|
55041
55141
|
name: string;
|
|
55042
|
-
persistence: "persistent" | "runtime"
|
|
55142
|
+
persistence: "persistent" | "runtime";
|
|
55043
55143
|
fields: EntityField[];
|
|
55044
55144
|
description?: string | undefined;
|
|
55145
|
+
shared?: boolean | undefined;
|
|
55045
55146
|
collection?: string | undefined;
|
|
55046
55147
|
instances?: Record<string, unknown>[] | undefined;
|
|
55047
55148
|
timestamps?: boolean | undefined;
|
|
@@ -55059,14 +55160,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55059
55160
|
} | {
|
|
55060
55161
|
extends: string;
|
|
55061
55162
|
name?: string | undefined;
|
|
55062
|
-
persistence?: "persistent" | "runtime" |
|
|
55163
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
55063
55164
|
collection?: string | undefined;
|
|
55064
55165
|
fields?: EntityField[] | undefined;
|
|
55065
55166
|
};
|
|
55066
55167
|
name: string;
|
|
55067
55168
|
traits: (string | {
|
|
55068
55169
|
name: string;
|
|
55069
|
-
scope: "
|
|
55170
|
+
scope: "collection" | "instance";
|
|
55070
55171
|
description?: string | undefined;
|
|
55071
55172
|
ui?: Record<string, unknown> | undefined;
|
|
55072
55173
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -55131,10 +55232,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55131
55232
|
}[];
|
|
55132
55233
|
description?: string | undefined;
|
|
55133
55234
|
runtime?: boolean | undefined;
|
|
55134
|
-
singleton?: boolean | undefined;
|
|
55135
55235
|
collection?: string | undefined;
|
|
55136
55236
|
timestamps?: boolean | undefined;
|
|
55137
55237
|
pages?: string[] | undefined;
|
|
55238
|
+
singleton?: boolean | undefined;
|
|
55138
55239
|
}[] | undefined;
|
|
55139
55240
|
stateMachine?: {
|
|
55140
55241
|
events: {
|
|
@@ -55193,9 +55294,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55193
55294
|
} | undefined;
|
|
55194
55295
|
sourceEntityDefinition?: {
|
|
55195
55296
|
name: string;
|
|
55196
|
-
persistence: "persistent" | "runtime"
|
|
55297
|
+
persistence: "persistent" | "runtime";
|
|
55197
55298
|
fields: EntityField[];
|
|
55198
55299
|
description?: string | undefined;
|
|
55300
|
+
shared?: boolean | undefined;
|
|
55199
55301
|
collection?: string | undefined;
|
|
55200
55302
|
instances?: Record<string, unknown>[] | undefined;
|
|
55201
55303
|
timestamps?: boolean | undefined;
|
|
@@ -55236,7 +55338,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55236
55338
|
from?: string | undefined;
|
|
55237
55339
|
traits?: (string | {
|
|
55238
55340
|
name: string;
|
|
55239
|
-
scope: "
|
|
55341
|
+
scope: "collection" | "instance";
|
|
55240
55342
|
description?: string | undefined;
|
|
55241
55343
|
ui?: Record<string, unknown> | undefined;
|
|
55242
55344
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -55301,10 +55403,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55301
55403
|
}[];
|
|
55302
55404
|
description?: string | undefined;
|
|
55303
55405
|
runtime?: boolean | undefined;
|
|
55304
|
-
singleton?: boolean | undefined;
|
|
55305
55406
|
collection?: string | undefined;
|
|
55306
55407
|
timestamps?: boolean | undefined;
|
|
55307
55408
|
pages?: string[] | undefined;
|
|
55409
|
+
singleton?: boolean | undefined;
|
|
55308
55410
|
}[] | undefined;
|
|
55309
55411
|
stateMachine?: {
|
|
55310
55412
|
events: {
|
|
@@ -55363,9 +55465,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55363
55465
|
} | undefined;
|
|
55364
55466
|
sourceEntityDefinition?: {
|
|
55365
55467
|
name: string;
|
|
55366
|
-
persistence: "persistent" | "runtime"
|
|
55468
|
+
persistence: "persistent" | "runtime";
|
|
55367
55469
|
fields: EntityField[];
|
|
55368
55470
|
description?: string | undefined;
|
|
55471
|
+
shared?: boolean | undefined;
|
|
55369
55472
|
collection?: string | undefined;
|
|
55370
55473
|
instances?: Record<string, unknown>[] | undefined;
|
|
55371
55474
|
timestamps?: boolean | undefined;
|
|
@@ -56057,7 +56160,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56057
56160
|
name: string;
|
|
56058
56161
|
fields: unknown[];
|
|
56059
56162
|
description?: string | undefined;
|
|
56060
|
-
persistence?: "persistent" | "runtime" |
|
|
56163
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
56164
|
+
shared?: boolean | undefined;
|
|
56061
56165
|
collection?: string | undefined;
|
|
56062
56166
|
instances?: Record<string, unknown>[] | undefined;
|
|
56063
56167
|
timestamps?: boolean | undefined;
|
|
@@ -56075,14 +56179,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56075
56179
|
} | {
|
|
56076
56180
|
extends: string;
|
|
56077
56181
|
name?: string | undefined;
|
|
56078
|
-
persistence?: "persistent" | "runtime" |
|
|
56182
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
56079
56183
|
collection?: string | undefined;
|
|
56080
56184
|
fields?: unknown[] | undefined;
|
|
56081
56185
|
};
|
|
56082
56186
|
name: string;
|
|
56083
56187
|
traits: (string | {
|
|
56084
56188
|
name: string;
|
|
56085
|
-
scope: "
|
|
56189
|
+
scope: "collection" | "instance";
|
|
56086
56190
|
description?: string | undefined;
|
|
56087
56191
|
ui?: Record<string, unknown> | undefined;
|
|
56088
56192
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -56147,10 +56251,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56147
56251
|
}[];
|
|
56148
56252
|
description?: string | undefined;
|
|
56149
56253
|
runtime?: boolean | undefined;
|
|
56150
|
-
singleton?: boolean | undefined;
|
|
56151
56254
|
collection?: string | undefined;
|
|
56152
56255
|
timestamps?: boolean | undefined;
|
|
56153
56256
|
pages?: string[] | undefined;
|
|
56257
|
+
singleton?: boolean | undefined;
|
|
56154
56258
|
}[] | undefined;
|
|
56155
56259
|
stateMachine?: {
|
|
56156
56260
|
events: {
|
|
@@ -56211,7 +56315,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56211
56315
|
name: string;
|
|
56212
56316
|
fields: unknown[];
|
|
56213
56317
|
description?: string | undefined;
|
|
56214
|
-
persistence?: "persistent" | "runtime" |
|
|
56318
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
56319
|
+
shared?: boolean | undefined;
|
|
56215
56320
|
collection?: string | undefined;
|
|
56216
56321
|
instances?: Record<string, unknown>[] | undefined;
|
|
56217
56322
|
timestamps?: boolean | undefined;
|
|
@@ -56252,7 +56357,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56252
56357
|
from?: string | undefined;
|
|
56253
56358
|
traits?: (string | {
|
|
56254
56359
|
name: string;
|
|
56255
|
-
scope: "
|
|
56360
|
+
scope: "collection" | "instance";
|
|
56256
56361
|
description?: string | undefined;
|
|
56257
56362
|
ui?: Record<string, unknown> | undefined;
|
|
56258
56363
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -56317,10 +56422,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56317
56422
|
}[];
|
|
56318
56423
|
description?: string | undefined;
|
|
56319
56424
|
runtime?: boolean | undefined;
|
|
56320
|
-
singleton?: boolean | undefined;
|
|
56321
56425
|
collection?: string | undefined;
|
|
56322
56426
|
timestamps?: boolean | undefined;
|
|
56323
56427
|
pages?: string[] | undefined;
|
|
56428
|
+
singleton?: boolean | undefined;
|
|
56324
56429
|
}[] | undefined;
|
|
56325
56430
|
stateMachine?: {
|
|
56326
56431
|
events: {
|
|
@@ -56381,7 +56486,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56381
56486
|
name: string;
|
|
56382
56487
|
fields: unknown[];
|
|
56383
56488
|
description?: string | undefined;
|
|
56384
|
-
persistence?: "persistent" | "runtime" |
|
|
56489
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
56490
|
+
shared?: boolean | undefined;
|
|
56385
56491
|
collection?: string | undefined;
|
|
56386
56492
|
instances?: Record<string, unknown>[] | undefined;
|
|
56387
56493
|
timestamps?: boolean | undefined;
|
|
@@ -57138,7 +57244,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57138
57244
|
name: string;
|
|
57139
57245
|
fields: unknown[];
|
|
57140
57246
|
description?: string | undefined;
|
|
57141
|
-
persistence?: "persistent" | "runtime" |
|
|
57247
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
57248
|
+
shared?: boolean | undefined;
|
|
57142
57249
|
collection?: string | undefined;
|
|
57143
57250
|
instances?: Record<string, unknown>[] | undefined;
|
|
57144
57251
|
timestamps?: boolean | undefined;
|
|
@@ -57156,14 +57263,14 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57156
57263
|
} | {
|
|
57157
57264
|
extends: string;
|
|
57158
57265
|
name?: string | undefined;
|
|
57159
|
-
persistence?: "persistent" | "runtime" |
|
|
57266
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
57160
57267
|
collection?: string | undefined;
|
|
57161
57268
|
fields?: unknown[] | undefined;
|
|
57162
57269
|
};
|
|
57163
57270
|
name: string;
|
|
57164
57271
|
traits: (string | {
|
|
57165
57272
|
name: string;
|
|
57166
|
-
scope: "
|
|
57273
|
+
scope: "collection" | "instance";
|
|
57167
57274
|
description?: string | undefined;
|
|
57168
57275
|
ui?: Record<string, unknown> | undefined;
|
|
57169
57276
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -57228,10 +57335,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57228
57335
|
}[];
|
|
57229
57336
|
description?: string | undefined;
|
|
57230
57337
|
runtime?: boolean | undefined;
|
|
57231
|
-
singleton?: boolean | undefined;
|
|
57232
57338
|
collection?: string | undefined;
|
|
57233
57339
|
timestamps?: boolean | undefined;
|
|
57234
57340
|
pages?: string[] | undefined;
|
|
57341
|
+
singleton?: boolean | undefined;
|
|
57235
57342
|
}[] | undefined;
|
|
57236
57343
|
stateMachine?: {
|
|
57237
57344
|
events: {
|
|
@@ -57292,7 +57399,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57292
57399
|
name: string;
|
|
57293
57400
|
fields: unknown[];
|
|
57294
57401
|
description?: string | undefined;
|
|
57295
|
-
persistence?: "persistent" | "runtime" |
|
|
57402
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
57403
|
+
shared?: boolean | undefined;
|
|
57296
57404
|
collection?: string | undefined;
|
|
57297
57405
|
instances?: Record<string, unknown>[] | undefined;
|
|
57298
57406
|
timestamps?: boolean | undefined;
|
|
@@ -57333,7 +57441,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57333
57441
|
from?: string | undefined;
|
|
57334
57442
|
traits?: (string | {
|
|
57335
57443
|
name: string;
|
|
57336
|
-
scope: "
|
|
57444
|
+
scope: "collection" | "instance";
|
|
57337
57445
|
description?: string | undefined;
|
|
57338
57446
|
ui?: Record<string, unknown> | undefined;
|
|
57339
57447
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -57398,10 +57506,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57398
57506
|
}[];
|
|
57399
57507
|
description?: string | undefined;
|
|
57400
57508
|
runtime?: boolean | undefined;
|
|
57401
|
-
singleton?: boolean | undefined;
|
|
57402
57509
|
collection?: string | undefined;
|
|
57403
57510
|
timestamps?: boolean | undefined;
|
|
57404
57511
|
pages?: string[] | undefined;
|
|
57512
|
+
singleton?: boolean | undefined;
|
|
57405
57513
|
}[] | undefined;
|
|
57406
57514
|
stateMachine?: {
|
|
57407
57515
|
events: {
|
|
@@ -57462,7 +57570,8 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57462
57570
|
name: string;
|
|
57463
57571
|
fields: unknown[];
|
|
57464
57572
|
description?: string | undefined;
|
|
57465
|
-
persistence?: "persistent" | "runtime" |
|
|
57573
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
57574
|
+
shared?: boolean | undefined;
|
|
57466
57575
|
collection?: string | undefined;
|
|
57467
57576
|
instances?: Record<string, unknown>[] | undefined;
|
|
57468
57577
|
timestamps?: boolean | undefined;
|
|
@@ -58152,9 +58261,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58152
58261
|
orbitals: {
|
|
58153
58262
|
entity: string | {
|
|
58154
58263
|
name: string;
|
|
58155
|
-
persistence: "persistent" | "runtime"
|
|
58264
|
+
persistence: "persistent" | "runtime";
|
|
58156
58265
|
fields: EntityField[];
|
|
58157
58266
|
description?: string | undefined;
|
|
58267
|
+
shared?: boolean | undefined;
|
|
58158
58268
|
collection?: string | undefined;
|
|
58159
58269
|
instances?: Record<string, unknown>[] | undefined;
|
|
58160
58270
|
timestamps?: boolean | undefined;
|
|
@@ -58172,14 +58282,14 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58172
58282
|
} | {
|
|
58173
58283
|
extends: string;
|
|
58174
58284
|
name?: string | undefined;
|
|
58175
|
-
persistence?: "persistent" | "runtime" |
|
|
58285
|
+
persistence?: "persistent" | "runtime" | undefined;
|
|
58176
58286
|
collection?: string | undefined;
|
|
58177
58287
|
fields?: EntityField[] | undefined;
|
|
58178
58288
|
};
|
|
58179
58289
|
name: string;
|
|
58180
58290
|
traits: (string | {
|
|
58181
58291
|
name: string;
|
|
58182
|
-
scope: "
|
|
58292
|
+
scope: "collection" | "instance";
|
|
58183
58293
|
description?: string | undefined;
|
|
58184
58294
|
ui?: Record<string, unknown> | undefined;
|
|
58185
58295
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -58244,10 +58354,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58244
58354
|
}[];
|
|
58245
58355
|
description?: string | undefined;
|
|
58246
58356
|
runtime?: boolean | undefined;
|
|
58247
|
-
singleton?: boolean | undefined;
|
|
58248
58357
|
collection?: string | undefined;
|
|
58249
58358
|
timestamps?: boolean | undefined;
|
|
58250
58359
|
pages?: string[] | undefined;
|
|
58360
|
+
singleton?: boolean | undefined;
|
|
58251
58361
|
}[] | undefined;
|
|
58252
58362
|
stateMachine?: {
|
|
58253
58363
|
events: {
|
|
@@ -58306,9 +58416,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58306
58416
|
} | undefined;
|
|
58307
58417
|
sourceEntityDefinition?: {
|
|
58308
58418
|
name: string;
|
|
58309
|
-
persistence: "persistent" | "runtime"
|
|
58419
|
+
persistence: "persistent" | "runtime";
|
|
58310
58420
|
fields: EntityField[];
|
|
58311
58421
|
description?: string | undefined;
|
|
58422
|
+
shared?: boolean | undefined;
|
|
58312
58423
|
collection?: string | undefined;
|
|
58313
58424
|
instances?: Record<string, unknown>[] | undefined;
|
|
58314
58425
|
timestamps?: boolean | undefined;
|
|
@@ -58349,7 +58460,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58349
58460
|
from?: string | undefined;
|
|
58350
58461
|
traits?: (string | {
|
|
58351
58462
|
name: string;
|
|
58352
|
-
scope: "
|
|
58463
|
+
scope: "collection" | "instance";
|
|
58353
58464
|
description?: string | undefined;
|
|
58354
58465
|
ui?: Record<string, unknown> | undefined;
|
|
58355
58466
|
category?: "validation" | "notification" | "lifecycle" | "temporal" | "integration" | "interaction" | "agent" | "game-core" | "game-character" | "game-ai" | "game-combat" | "game-items" | "game-cards" | "game-board" | "game-puzzle" | undefined;
|
|
@@ -58414,10 +58525,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58414
58525
|
}[];
|
|
58415
58526
|
description?: string | undefined;
|
|
58416
58527
|
runtime?: boolean | undefined;
|
|
58417
|
-
singleton?: boolean | undefined;
|
|
58418
58528
|
collection?: string | undefined;
|
|
58419
58529
|
timestamps?: boolean | undefined;
|
|
58420
58530
|
pages?: string[] | undefined;
|
|
58531
|
+
singleton?: boolean | undefined;
|
|
58421
58532
|
}[] | undefined;
|
|
58422
58533
|
stateMachine?: {
|
|
58423
58534
|
events: {
|
|
@@ -58476,9 +58587,10 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58476
58587
|
} | undefined;
|
|
58477
58588
|
sourceEntityDefinition?: {
|
|
58478
58589
|
name: string;
|
|
58479
|
-
persistence: "persistent" | "runtime"
|
|
58590
|
+
persistence: "persistent" | "runtime";
|
|
58480
58591
|
fields: EntityField[];
|
|
58481
58592
|
description?: string | undefined;
|
|
58593
|
+
shared?: boolean | undefined;
|
|
58482
58594
|
collection?: string | undefined;
|
|
58483
58595
|
instances?: Record<string, unknown>[] | undefined;
|
|
58484
58596
|
timestamps?: boolean | undefined;
|