@almadar/core 10.38.0 → 10.40.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-BoyWDFfH.d.ts → builders-Dw270YQh.d.ts} +116 -3
- package/dist/builders.d.ts +4 -4
- package/dist/builders.js +5 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-5kg4MCeB.d.ts → effect-DQPFowvO.d.ts} +7 -2
- package/dist/{entity-CVylqnAf.d.ts → entity-DfD-iXkn.d.ts} +13 -0
- package/dist/factory/index.d.ts +6 -6
- package/dist/factory-runtime/index.d.ts +4 -4
- package/dist/factory-runtime/index.js +5 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +8 -8
- package/dist/index.js +526 -37
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +1 -1
- package/dist/mock/index.js +5 -0
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +765 -47
- package/dist/patterns/index.js +521 -37
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +275 -31
- package/dist/patterns/patterns-registry.json +245 -5
- package/dist/patterns/registry.json +245 -5
- package/dist/{trait-Bnd3i_2G.d.ts → trait-C_TZnqb_.d.ts} +17 -2
- package/dist/types/index.d.ts +15 -9
- package/dist/types/index.js +5 -0
- package/dist/types/index.js.map +1 -1
- package/dist/{types-BE598tvP.d.ts → types-BUqLsSEN.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, e as Entity, a as EntityField, E as EntityPersistence, c as EventId, a4 as IdentityLedger, b as EntityRow } from './entity-
|
|
2
|
-
import { d as TraitConfig, V as TraitConfigObject, a5 as TraitRef, n as EventPayloadField, $ as TraitEntityField, P as PayloadField, f as ConfigFieldDeclaration, c as Trait, T as TraitEventListener, C as CallSiteConfig, a1 as TraitEventContract, a as TraitReference } from './trait-
|
|
1
|
+
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, e as Entity, a as EntityField, E as EntityPersistence, c as EventId, a4 as IdentityLedger, b as EntityRow } from './entity-DfD-iXkn.js';
|
|
2
|
+
import { d as TraitConfig, V as TraitConfigObject, a5 as TraitRef, n as EventPayloadField, $ as TraitEntityField, P as PayloadField, f as ConfigFieldDeclaration, c as Trait, T as TraitEventListener, C as CallSiteConfig, a1 as TraitEventContract, a as TraitReference } from './trait-C_TZnqb_.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
|
-
import { a5 as ServiceRef, a1 as ServiceDefinition, A as AnyPatternConfig, ao as UISlot, E as Effect, S as RenderBinding, V as RenderUIEffect } from './effect-
|
|
4
|
+
import { a5 as ServiceRef, a1 as ServiceDefinition, A as AnyPatternConfig, ao as UISlot, E as Effect, S as RenderBinding, V as RenderUIEffect } from './effect-DQPFowvO.js';
|
|
5
5
|
import { E as Expression, S as SExpr } from './expression-DpAj1RzP.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -18516,6 +18516,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18516
18516
|
name: z.ZodString;
|
|
18517
18517
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
18518
18518
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
18519
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
18519
18520
|
collection: z.ZodOptional<z.ZodString>;
|
|
18520
18521
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
18521
18522
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -18554,6 +18555,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18554
18555
|
fields: EntityField[];
|
|
18555
18556
|
description?: string | undefined;
|
|
18556
18557
|
shared?: boolean | undefined;
|
|
18558
|
+
identity?: boolean | undefined;
|
|
18557
18559
|
collection?: string | undefined;
|
|
18558
18560
|
instances?: Record<string, unknown>[] | undefined;
|
|
18559
18561
|
timestamps?: boolean | undefined;
|
|
@@ -18574,6 +18576,7 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18574
18576
|
description?: string | undefined;
|
|
18575
18577
|
persistence?: "persistent" | "runtime" | undefined;
|
|
18576
18578
|
shared?: boolean | undefined;
|
|
18579
|
+
identity?: boolean | undefined;
|
|
18577
18580
|
collection?: string | undefined;
|
|
18578
18581
|
instances?: Record<string, unknown>[] | undefined;
|
|
18579
18582
|
timestamps?: boolean | undefined;
|
|
@@ -19175,6 +19178,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19175
19178
|
name: z.ZodString;
|
|
19176
19179
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
19177
19180
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
19181
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
19178
19182
|
collection: z.ZodOptional<z.ZodString>;
|
|
19179
19183
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
19180
19184
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -19213,6 +19217,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19213
19217
|
fields: EntityField[];
|
|
19214
19218
|
description?: string | undefined;
|
|
19215
19219
|
shared?: boolean | undefined;
|
|
19220
|
+
identity?: boolean | undefined;
|
|
19216
19221
|
collection?: string | undefined;
|
|
19217
19222
|
instances?: Record<string, unknown>[] | undefined;
|
|
19218
19223
|
timestamps?: boolean | undefined;
|
|
@@ -19233,6 +19238,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19233
19238
|
description?: string | undefined;
|
|
19234
19239
|
persistence?: "persistent" | "runtime" | undefined;
|
|
19235
19240
|
shared?: boolean | undefined;
|
|
19241
|
+
identity?: boolean | undefined;
|
|
19236
19242
|
collection?: string | undefined;
|
|
19237
19243
|
instances?: Record<string, unknown>[] | undefined;
|
|
19238
19244
|
timestamps?: boolean | undefined;
|
|
@@ -19379,6 +19385,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19379
19385
|
fields: EntityField[];
|
|
19380
19386
|
description?: string | undefined;
|
|
19381
19387
|
shared?: boolean | undefined;
|
|
19388
|
+
identity?: boolean | undefined;
|
|
19382
19389
|
collection?: string | undefined;
|
|
19383
19390
|
instances?: Record<string, unknown>[] | undefined;
|
|
19384
19391
|
timestamps?: boolean | undefined;
|
|
@@ -19525,6 +19532,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19525
19532
|
description?: string | undefined;
|
|
19526
19533
|
persistence?: "persistent" | "runtime" | undefined;
|
|
19527
19534
|
shared?: boolean | undefined;
|
|
19535
|
+
identity?: boolean | undefined;
|
|
19528
19536
|
collection?: string | undefined;
|
|
19529
19537
|
instances?: Record<string, unknown>[] | undefined;
|
|
19530
19538
|
timestamps?: boolean | undefined;
|
|
@@ -19677,6 +19685,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19677
19685
|
fields: EntityField[];
|
|
19678
19686
|
description?: string | undefined;
|
|
19679
19687
|
shared?: boolean | undefined;
|
|
19688
|
+
identity?: boolean | undefined;
|
|
19680
19689
|
collection?: string | undefined;
|
|
19681
19690
|
instances?: Record<string, unknown>[] | undefined;
|
|
19682
19691
|
timestamps?: boolean | undefined;
|
|
@@ -19838,6 +19847,7 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19838
19847
|
description?: string | undefined;
|
|
19839
19848
|
persistence?: "persistent" | "runtime" | undefined;
|
|
19840
19849
|
shared?: boolean | undefined;
|
|
19850
|
+
identity?: boolean | undefined;
|
|
19841
19851
|
collection?: string | undefined;
|
|
19842
19852
|
instances?: Record<string, unknown>[] | undefined;
|
|
19843
19853
|
timestamps?: boolean | undefined;
|
|
@@ -20358,6 +20368,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20358
20368
|
name: z.ZodString;
|
|
20359
20369
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
20360
20370
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
20371
|
+
identity: 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">>;
|
|
@@ -20396,6 +20407,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20396
20407
|
fields: EntityField[];
|
|
20397
20408
|
description?: string | undefined;
|
|
20398
20409
|
shared?: boolean | undefined;
|
|
20410
|
+
identity?: boolean | undefined;
|
|
20399
20411
|
collection?: string | undefined;
|
|
20400
20412
|
instances?: Record<string, unknown>[] | undefined;
|
|
20401
20413
|
timestamps?: boolean | undefined;
|
|
@@ -20416,6 +20428,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20416
20428
|
description?: string | undefined;
|
|
20417
20429
|
persistence?: "persistent" | "runtime" | undefined;
|
|
20418
20430
|
shared?: boolean | undefined;
|
|
20431
|
+
identity?: boolean | undefined;
|
|
20419
20432
|
collection?: string | undefined;
|
|
20420
20433
|
instances?: Record<string, unknown>[] | undefined;
|
|
20421
20434
|
timestamps?: boolean | undefined;
|
|
@@ -20562,6 +20575,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20562
20575
|
fields: EntityField[];
|
|
20563
20576
|
description?: string | undefined;
|
|
20564
20577
|
shared?: boolean | undefined;
|
|
20578
|
+
identity?: boolean | undefined;
|
|
20565
20579
|
collection?: string | undefined;
|
|
20566
20580
|
instances?: Record<string, unknown>[] | undefined;
|
|
20567
20581
|
timestamps?: boolean | undefined;
|
|
@@ -20708,6 +20722,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20708
20722
|
description?: string | undefined;
|
|
20709
20723
|
persistence?: "persistent" | "runtime" | undefined;
|
|
20710
20724
|
shared?: boolean | undefined;
|
|
20725
|
+
identity?: boolean | undefined;
|
|
20711
20726
|
collection?: string | undefined;
|
|
20712
20727
|
instances?: Record<string, unknown>[] | undefined;
|
|
20713
20728
|
timestamps?: boolean | undefined;
|
|
@@ -20860,6 +20875,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20860
20875
|
fields: EntityField[];
|
|
20861
20876
|
description?: string | undefined;
|
|
20862
20877
|
shared?: boolean | undefined;
|
|
20878
|
+
identity?: boolean | undefined;
|
|
20863
20879
|
collection?: string | undefined;
|
|
20864
20880
|
instances?: Record<string, unknown>[] | undefined;
|
|
20865
20881
|
timestamps?: boolean | undefined;
|
|
@@ -21021,6 +21037,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21021
21037
|
description?: string | undefined;
|
|
21022
21038
|
persistence?: "persistent" | "runtime" | undefined;
|
|
21023
21039
|
shared?: boolean | undefined;
|
|
21040
|
+
identity?: boolean | undefined;
|
|
21024
21041
|
collection?: string | undefined;
|
|
21025
21042
|
instances?: Record<string, unknown>[] | undefined;
|
|
21026
21043
|
timestamps?: boolean | undefined;
|
|
@@ -25456,6 +25473,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25456
25473
|
name: z.ZodString;
|
|
25457
25474
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
25458
25475
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
25476
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
25459
25477
|
collection: z.ZodOptional<z.ZodString>;
|
|
25460
25478
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
25461
25479
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -25494,6 +25512,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25494
25512
|
fields: EntityField[];
|
|
25495
25513
|
description?: string | undefined;
|
|
25496
25514
|
shared?: boolean | undefined;
|
|
25515
|
+
identity?: boolean | undefined;
|
|
25497
25516
|
collection?: string | undefined;
|
|
25498
25517
|
instances?: Record<string, unknown>[] | undefined;
|
|
25499
25518
|
timestamps?: boolean | undefined;
|
|
@@ -25514,6 +25533,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25514
25533
|
description?: string | undefined;
|
|
25515
25534
|
persistence?: "persistent" | "runtime" | undefined;
|
|
25516
25535
|
shared?: boolean | undefined;
|
|
25536
|
+
identity?: boolean | undefined;
|
|
25517
25537
|
collection?: string | undefined;
|
|
25518
25538
|
instances?: Record<string, unknown>[] | undefined;
|
|
25519
25539
|
timestamps?: boolean | undefined;
|
|
@@ -25988,6 +26008,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
25988
26008
|
name: z.ZodString;
|
|
25989
26009
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
25990
26010
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
26011
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
25991
26012
|
collection: z.ZodOptional<z.ZodString>;
|
|
25992
26013
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
25993
26014
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -26026,6 +26047,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26026
26047
|
fields: EntityField[];
|
|
26027
26048
|
description?: string | undefined;
|
|
26028
26049
|
shared?: boolean | undefined;
|
|
26050
|
+
identity?: boolean | undefined;
|
|
26029
26051
|
collection?: string | undefined;
|
|
26030
26052
|
instances?: Record<string, unknown>[] | undefined;
|
|
26031
26053
|
timestamps?: boolean | undefined;
|
|
@@ -26046,6 +26068,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26046
26068
|
description?: string | undefined;
|
|
26047
26069
|
persistence?: "persistent" | "runtime" | undefined;
|
|
26048
26070
|
shared?: boolean | undefined;
|
|
26071
|
+
identity?: boolean | undefined;
|
|
26049
26072
|
collection?: string | undefined;
|
|
26050
26073
|
instances?: Record<string, unknown>[] | undefined;
|
|
26051
26074
|
timestamps?: boolean | undefined;
|
|
@@ -26192,6 +26215,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26192
26215
|
fields: EntityField[];
|
|
26193
26216
|
description?: string | undefined;
|
|
26194
26217
|
shared?: boolean | undefined;
|
|
26218
|
+
identity?: boolean | undefined;
|
|
26195
26219
|
collection?: string | undefined;
|
|
26196
26220
|
instances?: Record<string, unknown>[] | undefined;
|
|
26197
26221
|
timestamps?: boolean | undefined;
|
|
@@ -26338,6 +26362,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26338
26362
|
description?: string | undefined;
|
|
26339
26363
|
persistence?: "persistent" | "runtime" | undefined;
|
|
26340
26364
|
shared?: boolean | undefined;
|
|
26365
|
+
identity?: boolean | undefined;
|
|
26341
26366
|
collection?: string | undefined;
|
|
26342
26367
|
instances?: Record<string, unknown>[] | undefined;
|
|
26343
26368
|
timestamps?: boolean | undefined;
|
|
@@ -26847,6 +26872,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26847
26872
|
name: z.ZodString;
|
|
26848
26873
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
26849
26874
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
26875
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
26850
26876
|
collection: z.ZodOptional<z.ZodString>;
|
|
26851
26877
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
26852
26878
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -26885,6 +26911,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26885
26911
|
fields: EntityField[];
|
|
26886
26912
|
description?: string | undefined;
|
|
26887
26913
|
shared?: boolean | undefined;
|
|
26914
|
+
identity?: boolean | undefined;
|
|
26888
26915
|
collection?: string | undefined;
|
|
26889
26916
|
instances?: Record<string, unknown>[] | undefined;
|
|
26890
26917
|
timestamps?: boolean | undefined;
|
|
@@ -26905,6 +26932,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26905
26932
|
description?: string | undefined;
|
|
26906
26933
|
persistence?: "persistent" | "runtime" | undefined;
|
|
26907
26934
|
shared?: boolean | undefined;
|
|
26935
|
+
identity?: boolean | undefined;
|
|
26908
26936
|
collection?: string | undefined;
|
|
26909
26937
|
instances?: Record<string, unknown>[] | undefined;
|
|
26910
26938
|
timestamps?: boolean | undefined;
|
|
@@ -27051,6 +27079,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27051
27079
|
fields: EntityField[];
|
|
27052
27080
|
description?: string | undefined;
|
|
27053
27081
|
shared?: boolean | undefined;
|
|
27082
|
+
identity?: boolean | undefined;
|
|
27054
27083
|
collection?: string | undefined;
|
|
27055
27084
|
instances?: Record<string, unknown>[] | undefined;
|
|
27056
27085
|
timestamps?: boolean | undefined;
|
|
@@ -27197,6 +27226,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27197
27226
|
description?: string | undefined;
|
|
27198
27227
|
persistence?: "persistent" | "runtime" | undefined;
|
|
27199
27228
|
shared?: boolean | undefined;
|
|
27229
|
+
identity?: boolean | undefined;
|
|
27200
27230
|
collection?: string | undefined;
|
|
27201
27231
|
instances?: Record<string, unknown>[] | undefined;
|
|
27202
27232
|
timestamps?: boolean | undefined;
|
|
@@ -27349,6 +27379,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27349
27379
|
fields: EntityField[];
|
|
27350
27380
|
description?: string | undefined;
|
|
27351
27381
|
shared?: boolean | undefined;
|
|
27382
|
+
identity?: boolean | undefined;
|
|
27352
27383
|
collection?: string | undefined;
|
|
27353
27384
|
instances?: Record<string, unknown>[] | undefined;
|
|
27354
27385
|
timestamps?: boolean | undefined;
|
|
@@ -27510,6 +27541,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27510
27541
|
description?: string | undefined;
|
|
27511
27542
|
persistence?: "persistent" | "runtime" | undefined;
|
|
27512
27543
|
shared?: boolean | undefined;
|
|
27544
|
+
identity?: boolean | undefined;
|
|
27513
27545
|
collection?: string | undefined;
|
|
27514
27546
|
instances?: Record<string, unknown>[] | undefined;
|
|
27515
27547
|
timestamps?: boolean | undefined;
|
|
@@ -27755,6 +27787,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27755
27787
|
fields: EntityField[];
|
|
27756
27788
|
description?: string | undefined;
|
|
27757
27789
|
shared?: boolean | undefined;
|
|
27790
|
+
identity?: boolean | undefined;
|
|
27758
27791
|
collection?: string | undefined;
|
|
27759
27792
|
instances?: Record<string, unknown>[] | undefined;
|
|
27760
27793
|
timestamps?: boolean | undefined;
|
|
@@ -27927,6 +27960,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27927
27960
|
fields: EntityField[];
|
|
27928
27961
|
description?: string | undefined;
|
|
27929
27962
|
shared?: boolean | undefined;
|
|
27963
|
+
identity?: boolean | undefined;
|
|
27930
27964
|
collection?: string | undefined;
|
|
27931
27965
|
instances?: Record<string, unknown>[] | undefined;
|
|
27932
27966
|
timestamps?: boolean | undefined;
|
|
@@ -28085,6 +28119,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28085
28119
|
fields: EntityField[];
|
|
28086
28120
|
description?: string | undefined;
|
|
28087
28121
|
shared?: boolean | undefined;
|
|
28122
|
+
identity?: boolean | undefined;
|
|
28088
28123
|
collection?: string | undefined;
|
|
28089
28124
|
instances?: Record<string, unknown>[] | undefined;
|
|
28090
28125
|
timestamps?: boolean | undefined;
|
|
@@ -28669,6 +28704,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28669
28704
|
description?: string | undefined;
|
|
28670
28705
|
persistence?: "persistent" | "runtime" | undefined;
|
|
28671
28706
|
shared?: boolean | undefined;
|
|
28707
|
+
identity?: boolean | undefined;
|
|
28672
28708
|
collection?: string | undefined;
|
|
28673
28709
|
instances?: Record<string, unknown>[] | undefined;
|
|
28674
28710
|
timestamps?: boolean | undefined;
|
|
@@ -28841,6 +28877,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28841
28877
|
description?: string | undefined;
|
|
28842
28878
|
persistence?: "persistent" | "runtime" | undefined;
|
|
28843
28879
|
shared?: boolean | undefined;
|
|
28880
|
+
identity?: boolean | undefined;
|
|
28844
28881
|
collection?: string | undefined;
|
|
28845
28882
|
instances?: Record<string, unknown>[] | undefined;
|
|
28846
28883
|
timestamps?: boolean | undefined;
|
|
@@ -28999,6 +29036,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28999
29036
|
description?: string | undefined;
|
|
29000
29037
|
persistence?: "persistent" | "runtime" | undefined;
|
|
29001
29038
|
shared?: boolean | undefined;
|
|
29039
|
+
identity?: boolean | undefined;
|
|
29002
29040
|
collection?: string | undefined;
|
|
29003
29041
|
instances?: Record<string, unknown>[] | undefined;
|
|
29004
29042
|
timestamps?: boolean | undefined;
|
|
@@ -33621,6 +33659,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33621
33659
|
name: z.ZodString;
|
|
33622
33660
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
33623
33661
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
33662
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
33624
33663
|
collection: z.ZodOptional<z.ZodString>;
|
|
33625
33664
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
33626
33665
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -33659,6 +33698,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33659
33698
|
fields: EntityField[];
|
|
33660
33699
|
description?: string | undefined;
|
|
33661
33700
|
shared?: boolean | undefined;
|
|
33701
|
+
identity?: boolean | undefined;
|
|
33662
33702
|
collection?: string | undefined;
|
|
33663
33703
|
instances?: Record<string, unknown>[] | undefined;
|
|
33664
33704
|
timestamps?: boolean | undefined;
|
|
@@ -33679,6 +33719,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
33679
33719
|
description?: string | undefined;
|
|
33680
33720
|
persistence?: "persistent" | "runtime" | undefined;
|
|
33681
33721
|
shared?: boolean | undefined;
|
|
33722
|
+
identity?: boolean | undefined;
|
|
33682
33723
|
collection?: string | undefined;
|
|
33683
33724
|
instances?: Record<string, unknown>[] | undefined;
|
|
33684
33725
|
timestamps?: boolean | undefined;
|
|
@@ -34153,6 +34194,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34153
34194
|
name: z.ZodString;
|
|
34154
34195
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
34155
34196
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
34197
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
34156
34198
|
collection: z.ZodOptional<z.ZodString>;
|
|
34157
34199
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
34158
34200
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -34191,6 +34233,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34191
34233
|
fields: EntityField[];
|
|
34192
34234
|
description?: string | undefined;
|
|
34193
34235
|
shared?: boolean | undefined;
|
|
34236
|
+
identity?: boolean | undefined;
|
|
34194
34237
|
collection?: string | undefined;
|
|
34195
34238
|
instances?: Record<string, unknown>[] | undefined;
|
|
34196
34239
|
timestamps?: boolean | undefined;
|
|
@@ -34211,6 +34254,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34211
34254
|
description?: string | undefined;
|
|
34212
34255
|
persistence?: "persistent" | "runtime" | undefined;
|
|
34213
34256
|
shared?: boolean | undefined;
|
|
34257
|
+
identity?: boolean | undefined;
|
|
34214
34258
|
collection?: string | undefined;
|
|
34215
34259
|
instances?: Record<string, unknown>[] | undefined;
|
|
34216
34260
|
timestamps?: boolean | undefined;
|
|
@@ -34357,6 +34401,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34357
34401
|
fields: EntityField[];
|
|
34358
34402
|
description?: string | undefined;
|
|
34359
34403
|
shared?: boolean | undefined;
|
|
34404
|
+
identity?: boolean | undefined;
|
|
34360
34405
|
collection?: string | undefined;
|
|
34361
34406
|
instances?: Record<string, unknown>[] | undefined;
|
|
34362
34407
|
timestamps?: boolean | undefined;
|
|
@@ -34503,6 +34548,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
34503
34548
|
description?: string | undefined;
|
|
34504
34549
|
persistence?: "persistent" | "runtime" | undefined;
|
|
34505
34550
|
shared?: boolean | undefined;
|
|
34551
|
+
identity?: boolean | undefined;
|
|
34506
34552
|
collection?: string | undefined;
|
|
34507
34553
|
instances?: Record<string, unknown>[] | undefined;
|
|
34508
34554
|
timestamps?: boolean | undefined;
|
|
@@ -35012,6 +35058,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35012
35058
|
name: z.ZodString;
|
|
35013
35059
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
35014
35060
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
35061
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
35015
35062
|
collection: z.ZodOptional<z.ZodString>;
|
|
35016
35063
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
35017
35064
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -35050,6 +35097,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35050
35097
|
fields: EntityField[];
|
|
35051
35098
|
description?: string | undefined;
|
|
35052
35099
|
shared?: boolean | undefined;
|
|
35100
|
+
identity?: boolean | undefined;
|
|
35053
35101
|
collection?: string | undefined;
|
|
35054
35102
|
instances?: Record<string, unknown>[] | undefined;
|
|
35055
35103
|
timestamps?: boolean | undefined;
|
|
@@ -35070,6 +35118,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35070
35118
|
description?: string | undefined;
|
|
35071
35119
|
persistence?: "persistent" | "runtime" | undefined;
|
|
35072
35120
|
shared?: boolean | undefined;
|
|
35121
|
+
identity?: boolean | undefined;
|
|
35073
35122
|
collection?: string | undefined;
|
|
35074
35123
|
instances?: Record<string, unknown>[] | undefined;
|
|
35075
35124
|
timestamps?: boolean | undefined;
|
|
@@ -35216,6 +35265,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35216
35265
|
fields: EntityField[];
|
|
35217
35266
|
description?: string | undefined;
|
|
35218
35267
|
shared?: boolean | undefined;
|
|
35268
|
+
identity?: boolean | undefined;
|
|
35219
35269
|
collection?: string | undefined;
|
|
35220
35270
|
instances?: Record<string, unknown>[] | undefined;
|
|
35221
35271
|
timestamps?: boolean | undefined;
|
|
@@ -35362,6 +35412,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35362
35412
|
description?: string | undefined;
|
|
35363
35413
|
persistence?: "persistent" | "runtime" | undefined;
|
|
35364
35414
|
shared?: boolean | undefined;
|
|
35415
|
+
identity?: boolean | undefined;
|
|
35365
35416
|
collection?: string | undefined;
|
|
35366
35417
|
instances?: Record<string, unknown>[] | undefined;
|
|
35367
35418
|
timestamps?: boolean | undefined;
|
|
@@ -35514,6 +35565,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35514
35565
|
fields: EntityField[];
|
|
35515
35566
|
description?: string | undefined;
|
|
35516
35567
|
shared?: boolean | undefined;
|
|
35568
|
+
identity?: boolean | undefined;
|
|
35517
35569
|
collection?: string | undefined;
|
|
35518
35570
|
instances?: Record<string, unknown>[] | undefined;
|
|
35519
35571
|
timestamps?: boolean | undefined;
|
|
@@ -35675,6 +35727,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35675
35727
|
description?: string | undefined;
|
|
35676
35728
|
persistence?: "persistent" | "runtime" | undefined;
|
|
35677
35729
|
shared?: boolean | undefined;
|
|
35730
|
+
identity?: boolean | undefined;
|
|
35678
35731
|
collection?: string | undefined;
|
|
35679
35732
|
instances?: Record<string, unknown>[] | undefined;
|
|
35680
35733
|
timestamps?: boolean | undefined;
|
|
@@ -35920,6 +35973,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35920
35973
|
fields: EntityField[];
|
|
35921
35974
|
description?: string | undefined;
|
|
35922
35975
|
shared?: boolean | undefined;
|
|
35976
|
+
identity?: boolean | undefined;
|
|
35923
35977
|
collection?: string | undefined;
|
|
35924
35978
|
instances?: Record<string, unknown>[] | undefined;
|
|
35925
35979
|
timestamps?: boolean | undefined;
|
|
@@ -36092,6 +36146,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36092
36146
|
fields: EntityField[];
|
|
36093
36147
|
description?: string | undefined;
|
|
36094
36148
|
shared?: boolean | undefined;
|
|
36149
|
+
identity?: boolean | undefined;
|
|
36095
36150
|
collection?: string | undefined;
|
|
36096
36151
|
instances?: Record<string, unknown>[] | undefined;
|
|
36097
36152
|
timestamps?: boolean | undefined;
|
|
@@ -36250,6 +36305,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36250
36305
|
fields: EntityField[];
|
|
36251
36306
|
description?: string | undefined;
|
|
36252
36307
|
shared?: boolean | undefined;
|
|
36308
|
+
identity?: boolean | undefined;
|
|
36253
36309
|
collection?: string | undefined;
|
|
36254
36310
|
instances?: Record<string, unknown>[] | undefined;
|
|
36255
36311
|
timestamps?: boolean | undefined;
|
|
@@ -36834,6 +36890,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36834
36890
|
description?: string | undefined;
|
|
36835
36891
|
persistence?: "persistent" | "runtime" | undefined;
|
|
36836
36892
|
shared?: boolean | undefined;
|
|
36893
|
+
identity?: boolean | undefined;
|
|
36837
36894
|
collection?: string | undefined;
|
|
36838
36895
|
instances?: Record<string, unknown>[] | undefined;
|
|
36839
36896
|
timestamps?: boolean | undefined;
|
|
@@ -37006,6 +37063,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37006
37063
|
description?: string | undefined;
|
|
37007
37064
|
persistence?: "persistent" | "runtime" | undefined;
|
|
37008
37065
|
shared?: boolean | undefined;
|
|
37066
|
+
identity?: boolean | undefined;
|
|
37009
37067
|
collection?: string | undefined;
|
|
37010
37068
|
instances?: Record<string, unknown>[] | undefined;
|
|
37011
37069
|
timestamps?: boolean | undefined;
|
|
@@ -37164,6 +37222,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37164
37222
|
description?: string | undefined;
|
|
37165
37223
|
persistence?: "persistent" | "runtime" | undefined;
|
|
37166
37224
|
shared?: boolean | undefined;
|
|
37225
|
+
identity?: boolean | undefined;
|
|
37167
37226
|
collection?: string | undefined;
|
|
37168
37227
|
instances?: Record<string, unknown>[] | undefined;
|
|
37169
37228
|
timestamps?: boolean | undefined;
|
|
@@ -41793,6 +41852,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41793
41852
|
name: z.ZodString;
|
|
41794
41853
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
41795
41854
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
41855
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
41796
41856
|
collection: z.ZodOptional<z.ZodString>;
|
|
41797
41857
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
41798
41858
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -41831,6 +41891,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41831
41891
|
fields: EntityField[];
|
|
41832
41892
|
description?: string | undefined;
|
|
41833
41893
|
shared?: boolean | undefined;
|
|
41894
|
+
identity?: boolean | undefined;
|
|
41834
41895
|
collection?: string | undefined;
|
|
41835
41896
|
instances?: Record<string, unknown>[] | undefined;
|
|
41836
41897
|
timestamps?: boolean | undefined;
|
|
@@ -41851,6 +41912,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41851
41912
|
description?: string | undefined;
|
|
41852
41913
|
persistence?: "persistent" | "runtime" | undefined;
|
|
41853
41914
|
shared?: boolean | undefined;
|
|
41915
|
+
identity?: boolean | undefined;
|
|
41854
41916
|
collection?: string | undefined;
|
|
41855
41917
|
instances?: Record<string, unknown>[] | undefined;
|
|
41856
41918
|
timestamps?: boolean | undefined;
|
|
@@ -42325,6 +42387,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42325
42387
|
name: z.ZodString;
|
|
42326
42388
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
42327
42389
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
42390
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
42328
42391
|
collection: z.ZodOptional<z.ZodString>;
|
|
42329
42392
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
42330
42393
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -42363,6 +42426,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42363
42426
|
fields: EntityField[];
|
|
42364
42427
|
description?: string | undefined;
|
|
42365
42428
|
shared?: boolean | undefined;
|
|
42429
|
+
identity?: boolean | undefined;
|
|
42366
42430
|
collection?: string | undefined;
|
|
42367
42431
|
instances?: Record<string, unknown>[] | undefined;
|
|
42368
42432
|
timestamps?: boolean | undefined;
|
|
@@ -42383,6 +42447,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42383
42447
|
description?: string | undefined;
|
|
42384
42448
|
persistence?: "persistent" | "runtime" | undefined;
|
|
42385
42449
|
shared?: boolean | undefined;
|
|
42450
|
+
identity?: boolean | undefined;
|
|
42386
42451
|
collection?: string | undefined;
|
|
42387
42452
|
instances?: Record<string, unknown>[] | undefined;
|
|
42388
42453
|
timestamps?: boolean | undefined;
|
|
@@ -42529,6 +42594,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42529
42594
|
fields: EntityField[];
|
|
42530
42595
|
description?: string | undefined;
|
|
42531
42596
|
shared?: boolean | undefined;
|
|
42597
|
+
identity?: boolean | undefined;
|
|
42532
42598
|
collection?: string | undefined;
|
|
42533
42599
|
instances?: Record<string, unknown>[] | undefined;
|
|
42534
42600
|
timestamps?: boolean | undefined;
|
|
@@ -42675,6 +42741,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
42675
42741
|
description?: string | undefined;
|
|
42676
42742
|
persistence?: "persistent" | "runtime" | undefined;
|
|
42677
42743
|
shared?: boolean | undefined;
|
|
42744
|
+
identity?: boolean | undefined;
|
|
42678
42745
|
collection?: string | undefined;
|
|
42679
42746
|
instances?: Record<string, unknown>[] | undefined;
|
|
42680
42747
|
timestamps?: boolean | undefined;
|
|
@@ -43184,6 +43251,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43184
43251
|
name: z.ZodString;
|
|
43185
43252
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
43186
43253
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
43254
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
43187
43255
|
collection: z.ZodOptional<z.ZodString>;
|
|
43188
43256
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
43189
43257
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -43222,6 +43290,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43222
43290
|
fields: EntityField[];
|
|
43223
43291
|
description?: string | undefined;
|
|
43224
43292
|
shared?: boolean | undefined;
|
|
43293
|
+
identity?: boolean | undefined;
|
|
43225
43294
|
collection?: string | undefined;
|
|
43226
43295
|
instances?: Record<string, unknown>[] | undefined;
|
|
43227
43296
|
timestamps?: boolean | undefined;
|
|
@@ -43242,6 +43311,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43242
43311
|
description?: string | undefined;
|
|
43243
43312
|
persistence?: "persistent" | "runtime" | undefined;
|
|
43244
43313
|
shared?: boolean | undefined;
|
|
43314
|
+
identity?: boolean | undefined;
|
|
43245
43315
|
collection?: string | undefined;
|
|
43246
43316
|
instances?: Record<string, unknown>[] | undefined;
|
|
43247
43317
|
timestamps?: boolean | undefined;
|
|
@@ -43388,6 +43458,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43388
43458
|
fields: EntityField[];
|
|
43389
43459
|
description?: string | undefined;
|
|
43390
43460
|
shared?: boolean | undefined;
|
|
43461
|
+
identity?: boolean | undefined;
|
|
43391
43462
|
collection?: string | undefined;
|
|
43392
43463
|
instances?: Record<string, unknown>[] | undefined;
|
|
43393
43464
|
timestamps?: boolean | undefined;
|
|
@@ -43534,6 +43605,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43534
43605
|
description?: string | undefined;
|
|
43535
43606
|
persistence?: "persistent" | "runtime" | undefined;
|
|
43536
43607
|
shared?: boolean | undefined;
|
|
43608
|
+
identity?: boolean | undefined;
|
|
43537
43609
|
collection?: string | undefined;
|
|
43538
43610
|
instances?: Record<string, unknown>[] | undefined;
|
|
43539
43611
|
timestamps?: boolean | undefined;
|
|
@@ -43686,6 +43758,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43686
43758
|
fields: EntityField[];
|
|
43687
43759
|
description?: string | undefined;
|
|
43688
43760
|
shared?: boolean | undefined;
|
|
43761
|
+
identity?: boolean | undefined;
|
|
43689
43762
|
collection?: string | undefined;
|
|
43690
43763
|
instances?: Record<string, unknown>[] | undefined;
|
|
43691
43764
|
timestamps?: boolean | undefined;
|
|
@@ -43847,6 +43920,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
43847
43920
|
description?: string | undefined;
|
|
43848
43921
|
persistence?: "persistent" | "runtime" | undefined;
|
|
43849
43922
|
shared?: boolean | undefined;
|
|
43923
|
+
identity?: boolean | undefined;
|
|
43850
43924
|
collection?: string | undefined;
|
|
43851
43925
|
instances?: Record<string, unknown>[] | undefined;
|
|
43852
43926
|
timestamps?: boolean | undefined;
|
|
@@ -44092,6 +44166,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44092
44166
|
fields: EntityField[];
|
|
44093
44167
|
description?: string | undefined;
|
|
44094
44168
|
shared?: boolean | undefined;
|
|
44169
|
+
identity?: boolean | undefined;
|
|
44095
44170
|
collection?: string | undefined;
|
|
44096
44171
|
instances?: Record<string, unknown>[] | undefined;
|
|
44097
44172
|
timestamps?: boolean | undefined;
|
|
@@ -44264,6 +44339,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44264
44339
|
fields: EntityField[];
|
|
44265
44340
|
description?: string | undefined;
|
|
44266
44341
|
shared?: boolean | undefined;
|
|
44342
|
+
identity?: boolean | undefined;
|
|
44267
44343
|
collection?: string | undefined;
|
|
44268
44344
|
instances?: Record<string, unknown>[] | undefined;
|
|
44269
44345
|
timestamps?: boolean | undefined;
|
|
@@ -44422,6 +44498,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44422
44498
|
fields: EntityField[];
|
|
44423
44499
|
description?: string | undefined;
|
|
44424
44500
|
shared?: boolean | undefined;
|
|
44501
|
+
identity?: boolean | undefined;
|
|
44425
44502
|
collection?: string | undefined;
|
|
44426
44503
|
instances?: Record<string, unknown>[] | undefined;
|
|
44427
44504
|
timestamps?: boolean | undefined;
|
|
@@ -45006,6 +45083,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45006
45083
|
description?: string | undefined;
|
|
45007
45084
|
persistence?: "persistent" | "runtime" | undefined;
|
|
45008
45085
|
shared?: boolean | undefined;
|
|
45086
|
+
identity?: boolean | undefined;
|
|
45009
45087
|
collection?: string | undefined;
|
|
45010
45088
|
instances?: Record<string, unknown>[] | undefined;
|
|
45011
45089
|
timestamps?: boolean | undefined;
|
|
@@ -45178,6 +45256,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45178
45256
|
description?: string | undefined;
|
|
45179
45257
|
persistence?: "persistent" | "runtime" | undefined;
|
|
45180
45258
|
shared?: boolean | undefined;
|
|
45259
|
+
identity?: boolean | undefined;
|
|
45181
45260
|
collection?: string | undefined;
|
|
45182
45261
|
instances?: Record<string, unknown>[] | undefined;
|
|
45183
45262
|
timestamps?: boolean | undefined;
|
|
@@ -45336,6 +45415,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45336
45415
|
description?: string | undefined;
|
|
45337
45416
|
persistence?: "persistent" | "runtime" | undefined;
|
|
45338
45417
|
shared?: boolean | undefined;
|
|
45418
|
+
identity?: boolean | undefined;
|
|
45339
45419
|
collection?: string | undefined;
|
|
45340
45420
|
instances?: Record<string, unknown>[] | undefined;
|
|
45341
45421
|
timestamps?: boolean | undefined;
|
|
@@ -50312,6 +50392,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50312
50392
|
name: z.ZodString;
|
|
50313
50393
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
50314
50394
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
50395
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
50315
50396
|
collection: z.ZodOptional<z.ZodString>;
|
|
50316
50397
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
50317
50398
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -50350,6 +50431,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50350
50431
|
fields: EntityField[];
|
|
50351
50432
|
description?: string | undefined;
|
|
50352
50433
|
shared?: boolean | undefined;
|
|
50434
|
+
identity?: boolean | undefined;
|
|
50353
50435
|
collection?: string | undefined;
|
|
50354
50436
|
instances?: Record<string, unknown>[] | undefined;
|
|
50355
50437
|
timestamps?: boolean | undefined;
|
|
@@ -50370,6 +50452,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50370
50452
|
description?: string | undefined;
|
|
50371
50453
|
persistence?: "persistent" | "runtime" | undefined;
|
|
50372
50454
|
shared?: boolean | undefined;
|
|
50455
|
+
identity?: boolean | undefined;
|
|
50373
50456
|
collection?: string | undefined;
|
|
50374
50457
|
instances?: Record<string, unknown>[] | undefined;
|
|
50375
50458
|
timestamps?: boolean | undefined;
|
|
@@ -50844,6 +50927,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50844
50927
|
name: z.ZodString;
|
|
50845
50928
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
50846
50929
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
50930
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
50847
50931
|
collection: z.ZodOptional<z.ZodString>;
|
|
50848
50932
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
50849
50933
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -50882,6 +50966,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50882
50966
|
fields: EntityField[];
|
|
50883
50967
|
description?: string | undefined;
|
|
50884
50968
|
shared?: boolean | undefined;
|
|
50969
|
+
identity?: boolean | undefined;
|
|
50885
50970
|
collection?: string | undefined;
|
|
50886
50971
|
instances?: Record<string, unknown>[] | undefined;
|
|
50887
50972
|
timestamps?: boolean | undefined;
|
|
@@ -50902,6 +50987,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
50902
50987
|
description?: string | undefined;
|
|
50903
50988
|
persistence?: "persistent" | "runtime" | undefined;
|
|
50904
50989
|
shared?: boolean | undefined;
|
|
50990
|
+
identity?: boolean | undefined;
|
|
50905
50991
|
collection?: string | undefined;
|
|
50906
50992
|
instances?: Record<string, unknown>[] | undefined;
|
|
50907
50993
|
timestamps?: boolean | undefined;
|
|
@@ -51048,6 +51134,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51048
51134
|
fields: EntityField[];
|
|
51049
51135
|
description?: string | undefined;
|
|
51050
51136
|
shared?: boolean | undefined;
|
|
51137
|
+
identity?: boolean | undefined;
|
|
51051
51138
|
collection?: string | undefined;
|
|
51052
51139
|
instances?: Record<string, unknown>[] | undefined;
|
|
51053
51140
|
timestamps?: boolean | undefined;
|
|
@@ -51194,6 +51281,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51194
51281
|
description?: string | undefined;
|
|
51195
51282
|
persistence?: "persistent" | "runtime" | undefined;
|
|
51196
51283
|
shared?: boolean | undefined;
|
|
51284
|
+
identity?: boolean | undefined;
|
|
51197
51285
|
collection?: string | undefined;
|
|
51198
51286
|
instances?: Record<string, unknown>[] | undefined;
|
|
51199
51287
|
timestamps?: boolean | undefined;
|
|
@@ -51703,6 +51791,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51703
51791
|
name: z.ZodString;
|
|
51704
51792
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
51705
51793
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
51794
|
+
identity: z.ZodOptional<z.ZodBoolean>;
|
|
51706
51795
|
collection: z.ZodOptional<z.ZodString>;
|
|
51707
51796
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
51708
51797
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -51741,6 +51830,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51741
51830
|
fields: EntityField[];
|
|
51742
51831
|
description?: string | undefined;
|
|
51743
51832
|
shared?: boolean | undefined;
|
|
51833
|
+
identity?: boolean | undefined;
|
|
51744
51834
|
collection?: string | undefined;
|
|
51745
51835
|
instances?: Record<string, unknown>[] | undefined;
|
|
51746
51836
|
timestamps?: boolean | undefined;
|
|
@@ -51761,6 +51851,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51761
51851
|
description?: string | undefined;
|
|
51762
51852
|
persistence?: "persistent" | "runtime" | undefined;
|
|
51763
51853
|
shared?: boolean | undefined;
|
|
51854
|
+
identity?: boolean | undefined;
|
|
51764
51855
|
collection?: string | undefined;
|
|
51765
51856
|
instances?: Record<string, unknown>[] | undefined;
|
|
51766
51857
|
timestamps?: boolean | undefined;
|
|
@@ -51907,6 +51998,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
51907
51998
|
fields: EntityField[];
|
|
51908
51999
|
description?: string | undefined;
|
|
51909
52000
|
shared?: boolean | undefined;
|
|
52001
|
+
identity?: boolean | undefined;
|
|
51910
52002
|
collection?: string | undefined;
|
|
51911
52003
|
instances?: Record<string, unknown>[] | undefined;
|
|
51912
52004
|
timestamps?: boolean | undefined;
|
|
@@ -52053,6 +52145,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52053
52145
|
description?: string | undefined;
|
|
52054
52146
|
persistence?: "persistent" | "runtime" | undefined;
|
|
52055
52147
|
shared?: boolean | undefined;
|
|
52148
|
+
identity?: boolean | undefined;
|
|
52056
52149
|
collection?: string | undefined;
|
|
52057
52150
|
instances?: Record<string, unknown>[] | undefined;
|
|
52058
52151
|
timestamps?: boolean | undefined;
|
|
@@ -52205,6 +52298,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52205
52298
|
fields: EntityField[];
|
|
52206
52299
|
description?: string | undefined;
|
|
52207
52300
|
shared?: boolean | undefined;
|
|
52301
|
+
identity?: boolean | undefined;
|
|
52208
52302
|
collection?: string | undefined;
|
|
52209
52303
|
instances?: Record<string, unknown>[] | undefined;
|
|
52210
52304
|
timestamps?: boolean | undefined;
|
|
@@ -52366,6 +52460,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52366
52460
|
description?: string | undefined;
|
|
52367
52461
|
persistence?: "persistent" | "runtime" | undefined;
|
|
52368
52462
|
shared?: boolean | undefined;
|
|
52463
|
+
identity?: boolean | undefined;
|
|
52369
52464
|
collection?: string | undefined;
|
|
52370
52465
|
instances?: Record<string, unknown>[] | undefined;
|
|
52371
52466
|
timestamps?: boolean | undefined;
|
|
@@ -52611,6 +52706,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52611
52706
|
fields: EntityField[];
|
|
52612
52707
|
description?: string | undefined;
|
|
52613
52708
|
shared?: boolean | undefined;
|
|
52709
|
+
identity?: boolean | undefined;
|
|
52614
52710
|
collection?: string | undefined;
|
|
52615
52711
|
instances?: Record<string, unknown>[] | undefined;
|
|
52616
52712
|
timestamps?: boolean | undefined;
|
|
@@ -52783,6 +52879,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52783
52879
|
fields: EntityField[];
|
|
52784
52880
|
description?: string | undefined;
|
|
52785
52881
|
shared?: boolean | undefined;
|
|
52882
|
+
identity?: boolean | undefined;
|
|
52786
52883
|
collection?: string | undefined;
|
|
52787
52884
|
instances?: Record<string, unknown>[] | undefined;
|
|
52788
52885
|
timestamps?: boolean | undefined;
|
|
@@ -52941,6 +53038,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
52941
53038
|
fields: EntityField[];
|
|
52942
53039
|
description?: string | undefined;
|
|
52943
53040
|
shared?: boolean | undefined;
|
|
53041
|
+
identity?: boolean | undefined;
|
|
52944
53042
|
collection?: string | undefined;
|
|
52945
53043
|
instances?: Record<string, unknown>[] | undefined;
|
|
52946
53044
|
timestamps?: boolean | undefined;
|
|
@@ -53525,6 +53623,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53525
53623
|
description?: string | undefined;
|
|
53526
53624
|
persistence?: "persistent" | "runtime" | undefined;
|
|
53527
53625
|
shared?: boolean | undefined;
|
|
53626
|
+
identity?: boolean | undefined;
|
|
53528
53627
|
collection?: string | undefined;
|
|
53529
53628
|
instances?: Record<string, unknown>[] | undefined;
|
|
53530
53629
|
timestamps?: boolean | undefined;
|
|
@@ -53697,6 +53796,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53697
53796
|
description?: string | undefined;
|
|
53698
53797
|
persistence?: "persistent" | "runtime" | undefined;
|
|
53699
53798
|
shared?: boolean | undefined;
|
|
53799
|
+
identity?: boolean | undefined;
|
|
53700
53800
|
collection?: string | undefined;
|
|
53701
53801
|
instances?: Record<string, unknown>[] | undefined;
|
|
53702
53802
|
timestamps?: boolean | undefined;
|
|
@@ -53855,6 +53955,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
53855
53955
|
description?: string | undefined;
|
|
53856
53956
|
persistence?: "persistent" | "runtime" | undefined;
|
|
53857
53957
|
shared?: boolean | undefined;
|
|
53958
|
+
identity?: boolean | undefined;
|
|
53858
53959
|
collection?: string | undefined;
|
|
53859
53960
|
instances?: Record<string, unknown>[] | undefined;
|
|
53860
53961
|
timestamps?: boolean | undefined;
|
|
@@ -54740,6 +54841,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54740
54841
|
fields: EntityField[];
|
|
54741
54842
|
description?: string | undefined;
|
|
54742
54843
|
shared?: boolean | undefined;
|
|
54844
|
+
identity?: boolean | undefined;
|
|
54743
54845
|
collection?: string | undefined;
|
|
54744
54846
|
instances?: Record<string, unknown>[] | undefined;
|
|
54745
54847
|
timestamps?: boolean | undefined;
|
|
@@ -54912,6 +55014,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54912
55014
|
fields: EntityField[];
|
|
54913
55015
|
description?: string | undefined;
|
|
54914
55016
|
shared?: boolean | undefined;
|
|
55017
|
+
identity?: boolean | undefined;
|
|
54915
55018
|
collection?: string | undefined;
|
|
54916
55019
|
instances?: Record<string, unknown>[] | undefined;
|
|
54917
55020
|
timestamps?: boolean | undefined;
|
|
@@ -55070,6 +55173,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55070
55173
|
fields: EntityField[];
|
|
55071
55174
|
description?: string | undefined;
|
|
55072
55175
|
shared?: boolean | undefined;
|
|
55176
|
+
identity?: boolean | undefined;
|
|
55073
55177
|
collection?: string | undefined;
|
|
55074
55178
|
instances?: Record<string, unknown>[] | undefined;
|
|
55075
55179
|
timestamps?: boolean | undefined;
|
|
@@ -55773,6 +55877,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55773
55877
|
description?: string | undefined;
|
|
55774
55878
|
persistence?: "persistent" | "runtime" | undefined;
|
|
55775
55879
|
shared?: boolean | undefined;
|
|
55880
|
+
identity?: boolean | undefined;
|
|
55776
55881
|
collection?: string | undefined;
|
|
55777
55882
|
instances?: Record<string, unknown>[] | undefined;
|
|
55778
55883
|
timestamps?: boolean | undefined;
|
|
@@ -55945,6 +56050,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55945
56050
|
description?: string | undefined;
|
|
55946
56051
|
persistence?: "persistent" | "runtime" | undefined;
|
|
55947
56052
|
shared?: boolean | undefined;
|
|
56053
|
+
identity?: boolean | undefined;
|
|
55948
56054
|
collection?: string | undefined;
|
|
55949
56055
|
instances?: Record<string, unknown>[] | undefined;
|
|
55950
56056
|
timestamps?: boolean | undefined;
|
|
@@ -56103,6 +56209,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56103
56209
|
description?: string | undefined;
|
|
56104
56210
|
persistence?: "persistent" | "runtime" | undefined;
|
|
56105
56211
|
shared?: boolean | undefined;
|
|
56212
|
+
identity?: boolean | undefined;
|
|
56106
56213
|
collection?: string | undefined;
|
|
56107
56214
|
instances?: Record<string, unknown>[] | undefined;
|
|
56108
56215
|
timestamps?: boolean | undefined;
|
|
@@ -56871,6 +56978,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
56871
56978
|
description?: string | undefined;
|
|
56872
56979
|
persistence?: "persistent" | "runtime" | undefined;
|
|
56873
56980
|
shared?: boolean | undefined;
|
|
56981
|
+
identity?: boolean | undefined;
|
|
56874
56982
|
collection?: string | undefined;
|
|
56875
56983
|
instances?: Record<string, unknown>[] | undefined;
|
|
56876
56984
|
timestamps?: boolean | undefined;
|
|
@@ -57043,6 +57151,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57043
57151
|
description?: string | undefined;
|
|
57044
57152
|
persistence?: "persistent" | "runtime" | undefined;
|
|
57045
57153
|
shared?: boolean | undefined;
|
|
57154
|
+
identity?: boolean | undefined;
|
|
57046
57155
|
collection?: string | undefined;
|
|
57047
57156
|
instances?: Record<string, unknown>[] | undefined;
|
|
57048
57157
|
timestamps?: boolean | undefined;
|
|
@@ -57201,6 +57310,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57201
57310
|
description?: string | undefined;
|
|
57202
57311
|
persistence?: "persistent" | "runtime" | undefined;
|
|
57203
57312
|
shared?: boolean | undefined;
|
|
57313
|
+
identity?: boolean | undefined;
|
|
57204
57314
|
collection?: string | undefined;
|
|
57205
57315
|
instances?: Record<string, unknown>[] | undefined;
|
|
57206
57316
|
timestamps?: boolean | undefined;
|
|
@@ -57904,6 +58014,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
57904
58014
|
fields: EntityField[];
|
|
57905
58015
|
description?: string | undefined;
|
|
57906
58016
|
shared?: boolean | undefined;
|
|
58017
|
+
identity?: boolean | undefined;
|
|
57907
58018
|
collection?: string | undefined;
|
|
57908
58019
|
instances?: Record<string, unknown>[] | undefined;
|
|
57909
58020
|
timestamps?: boolean | undefined;
|
|
@@ -58076,6 +58187,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58076
58187
|
fields: EntityField[];
|
|
58077
58188
|
description?: string | undefined;
|
|
58078
58189
|
shared?: boolean | undefined;
|
|
58190
|
+
identity?: boolean | undefined;
|
|
58079
58191
|
collection?: string | undefined;
|
|
58080
58192
|
instances?: Record<string, unknown>[] | undefined;
|
|
58081
58193
|
timestamps?: boolean | undefined;
|
|
@@ -58234,6 +58346,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
58234
58346
|
fields: EntityField[];
|
|
58235
58347
|
description?: string | undefined;
|
|
58236
58348
|
shared?: boolean | undefined;
|
|
58349
|
+
identity?: boolean | undefined;
|
|
58237
58350
|
collection?: string | undefined;
|
|
58238
58351
|
instances?: Record<string, unknown>[] | undefined;
|
|
58239
58352
|
timestamps?: boolean | undefined;
|