@almadar/core 10.43.0 → 10.45.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 +31 -23
- package/dist/builders.js.map +1 -1
- package/dist/{effect-NbTgX2yB.d.ts → effect-BZ1nzN3q.d.ts} +38 -2
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +31 -23
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +8 -8
- package/dist/index.js +79 -66
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +34 -5
- package/dist/mock/index.js +60 -1
- 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 +5 -5
- package/dist/patterns/index.js +3 -3
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +1 -1
- package/dist/patterns/registry.json +1 -1
- package/dist/{schema-DdcBBHkb.d.ts → schema-CZNILCHD.d.ts} +530 -78
- package/dist/{trait-DdBiEffx.d.ts → trait-1V3odk0y.d.ts} +73 -13
- package/dist/types/index.d.ts +25 -19
- package/dist/types/index.js +76 -63
- package/dist/types/index.js.map +1 -1
- package/dist/{types-B4NVh8V9.d.ts → types-GAiRTtkp.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-
|
|
1
|
+
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-1V3odk0y.js';
|
|
2
2
|
import { E as Expression, S as SExpr, J as JsonValue, R as RuntimeValue } from './expression-Yf7qvvOs.js';
|
|
3
|
-
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, S as ServiceRef, e as Entity, E as EntityField, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-
|
|
3
|
+
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, S as ServiceRef, e as Entity, E as EntityField, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-BZ1nzN3q.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -18516,6 +18516,10 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18516
18516
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
18517
18517
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
18518
18518
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
18519
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
18520
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
18521
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
18522
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
18519
18523
|
collection: z.ZodOptional<z.ZodString>;
|
|
18520
18524
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
18521
18525
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -18555,6 +18559,10 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18555
18559
|
description?: string | undefined;
|
|
18556
18560
|
shared?: boolean | undefined;
|
|
18557
18561
|
identity?: boolean | undefined;
|
|
18562
|
+
read_policy?: SExpr | undefined;
|
|
18563
|
+
create_policy?: SExpr | undefined;
|
|
18564
|
+
update_policy?: SExpr | undefined;
|
|
18565
|
+
delete_policy?: SExpr | undefined;
|
|
18558
18566
|
collection?: string | undefined;
|
|
18559
18567
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
18560
18568
|
timestamps?: boolean | undefined;
|
|
@@ -18576,6 +18584,10 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18576
18584
|
persistence?: "persistent" | "runtime" | undefined;
|
|
18577
18585
|
shared?: boolean | undefined;
|
|
18578
18586
|
identity?: boolean | undefined;
|
|
18587
|
+
read_policy?: SExpr | undefined;
|
|
18588
|
+
create_policy?: SExpr | undefined;
|
|
18589
|
+
update_policy?: SExpr | undefined;
|
|
18590
|
+
delete_policy?: SExpr | undefined;
|
|
18579
18591
|
collection?: string | undefined;
|
|
18580
18592
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
18581
18593
|
timestamps?: boolean | undefined;
|
|
@@ -18865,8 +18877,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
18865
18877
|
id?: TraitId | undefined;
|
|
18866
18878
|
from?: string | undefined;
|
|
18867
18879
|
name?: string | undefined;
|
|
18868
|
-
fields?: Record<string, string> | undefined;
|
|
18869
18880
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
18881
|
+
fields?: Record<string, string> | undefined;
|
|
18870
18882
|
events?: Record<string, string> | undefined;
|
|
18871
18883
|
effects?: Record<string, SExpr[]> | undefined;
|
|
18872
18884
|
refId?: TraitId | undefined;
|
|
@@ -18905,8 +18917,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
18905
18917
|
id?: string | undefined;
|
|
18906
18918
|
from?: string | undefined;
|
|
18907
18919
|
name?: string | undefined;
|
|
18908
|
-
fields?: Record<string, string> | undefined;
|
|
18909
18920
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
18921
|
+
fields?: Record<string, string> | undefined;
|
|
18910
18922
|
events?: Record<string, string> | undefined;
|
|
18911
18923
|
effects?: Record<string, SExpr[]> | undefined;
|
|
18912
18924
|
refId?: string | undefined;
|
|
@@ -18945,8 +18957,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
18945
18957
|
id?: TraitId | undefined;
|
|
18946
18958
|
from?: string | undefined;
|
|
18947
18959
|
name?: string | undefined;
|
|
18948
|
-
fields?: Record<string, string> | undefined;
|
|
18949
18960
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
18961
|
+
fields?: Record<string, string> | undefined;
|
|
18950
18962
|
events?: Record<string, string> | undefined;
|
|
18951
18963
|
effects?: Record<string, SExpr[]> | undefined;
|
|
18952
18964
|
refId?: TraitId | undefined;
|
|
@@ -18985,8 +18997,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
18985
18997
|
id?: string | undefined;
|
|
18986
18998
|
from?: string | undefined;
|
|
18987
18999
|
name?: string | undefined;
|
|
18988
|
-
fields?: Record<string, string> | undefined;
|
|
18989
19000
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
19001
|
+
fields?: Record<string, string> | undefined;
|
|
18990
19002
|
events?: Record<string, string> | undefined;
|
|
18991
19003
|
effects?: Record<string, SExpr[]> | undefined;
|
|
18992
19004
|
refId?: string | undefined;
|
|
@@ -19489,6 +19501,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19489
19501
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
19490
19502
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
19491
19503
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
19504
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
19505
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
19506
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
19507
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
19492
19508
|
collection: z.ZodOptional<z.ZodString>;
|
|
19493
19509
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
19494
19510
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -19528,6 +19544,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19528
19544
|
description?: string | undefined;
|
|
19529
19545
|
shared?: boolean | undefined;
|
|
19530
19546
|
identity?: boolean | undefined;
|
|
19547
|
+
read_policy?: SExpr | undefined;
|
|
19548
|
+
create_policy?: SExpr | undefined;
|
|
19549
|
+
update_policy?: SExpr | undefined;
|
|
19550
|
+
delete_policy?: SExpr | undefined;
|
|
19531
19551
|
collection?: string | undefined;
|
|
19532
19552
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19533
19553
|
timestamps?: boolean | undefined;
|
|
@@ -19549,6 +19569,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19549
19569
|
persistence?: "persistent" | "runtime" | undefined;
|
|
19550
19570
|
shared?: boolean | undefined;
|
|
19551
19571
|
identity?: boolean | undefined;
|
|
19572
|
+
read_policy?: SExpr | undefined;
|
|
19573
|
+
create_policy?: SExpr | undefined;
|
|
19574
|
+
update_policy?: SExpr | undefined;
|
|
19575
|
+
delete_policy?: SExpr | undefined;
|
|
19552
19576
|
collection?: string | undefined;
|
|
19553
19577
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19554
19578
|
timestamps?: boolean | undefined;
|
|
@@ -19709,6 +19733,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19709
19733
|
description?: string | undefined;
|
|
19710
19734
|
shared?: boolean | undefined;
|
|
19711
19735
|
identity?: boolean | undefined;
|
|
19736
|
+
read_policy?: SExpr | undefined;
|
|
19737
|
+
create_policy?: SExpr | undefined;
|
|
19738
|
+
update_policy?: SExpr | undefined;
|
|
19739
|
+
delete_policy?: SExpr | undefined;
|
|
19712
19740
|
collection?: string | undefined;
|
|
19713
19741
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19714
19742
|
timestamps?: boolean | undefined;
|
|
@@ -19869,6 +19897,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19869
19897
|
persistence?: "persistent" | "runtime" | undefined;
|
|
19870
19898
|
shared?: boolean | undefined;
|
|
19871
19899
|
identity?: boolean | undefined;
|
|
19900
|
+
read_policy?: SExpr | undefined;
|
|
19901
|
+
create_policy?: SExpr | undefined;
|
|
19902
|
+
update_policy?: SExpr | undefined;
|
|
19903
|
+
delete_policy?: SExpr | undefined;
|
|
19872
19904
|
collection?: string | undefined;
|
|
19873
19905
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19874
19906
|
timestamps?: boolean | undefined;
|
|
@@ -19895,8 +19927,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19895
19927
|
id?: TraitId | undefined;
|
|
19896
19928
|
from?: string | undefined;
|
|
19897
19929
|
name?: string | undefined;
|
|
19898
|
-
fields?: Record<string, string> | undefined;
|
|
19899
19930
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
19931
|
+
fields?: Record<string, string> | undefined;
|
|
19900
19932
|
events?: Record<string, string> | undefined;
|
|
19901
19933
|
effects?: Record<string, SExpr[]> | undefined;
|
|
19902
19934
|
refId?: TraitId | undefined;
|
|
@@ -20075,6 +20107,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20075
20107
|
description?: string | undefined;
|
|
20076
20108
|
shared?: boolean | undefined;
|
|
20077
20109
|
identity?: boolean | undefined;
|
|
20110
|
+
read_policy?: SExpr | undefined;
|
|
20111
|
+
create_policy?: SExpr | undefined;
|
|
20112
|
+
update_policy?: SExpr | undefined;
|
|
20113
|
+
delete_policy?: SExpr | undefined;
|
|
20078
20114
|
collection?: string | undefined;
|
|
20079
20115
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
20080
20116
|
timestamps?: boolean | undefined;
|
|
@@ -20104,8 +20140,8 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20104
20140
|
id?: string | undefined;
|
|
20105
20141
|
from?: string | undefined;
|
|
20106
20142
|
name?: string | undefined;
|
|
20107
|
-
fields?: Record<string, string> | undefined;
|
|
20108
20143
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
20144
|
+
fields?: Record<string, string> | undefined;
|
|
20109
20145
|
events?: Record<string, string> | undefined;
|
|
20110
20146
|
effects?: Record<string, SExpr[]> | undefined;
|
|
20111
20147
|
refId?: string | undefined;
|
|
@@ -20284,6 +20320,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20284
20320
|
persistence?: "persistent" | "runtime" | undefined;
|
|
20285
20321
|
shared?: boolean | undefined;
|
|
20286
20322
|
identity?: boolean | undefined;
|
|
20323
|
+
read_policy?: SExpr | undefined;
|
|
20324
|
+
create_policy?: SExpr | undefined;
|
|
20325
|
+
update_policy?: SExpr | undefined;
|
|
20326
|
+
delete_policy?: SExpr | undefined;
|
|
20287
20327
|
collection?: string | undefined;
|
|
20288
20328
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
20289
20329
|
timestamps?: boolean | undefined;
|
|
@@ -20486,8 +20526,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20486
20526
|
id?: TraitId | undefined;
|
|
20487
20527
|
from?: string | undefined;
|
|
20488
20528
|
name?: string | undefined;
|
|
20489
|
-
fields?: Record<string, string> | undefined;
|
|
20490
20529
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
20530
|
+
fields?: Record<string, string> | undefined;
|
|
20491
20531
|
events?: Record<string, string> | undefined;
|
|
20492
20532
|
effects?: Record<string, SExpr[]> | undefined;
|
|
20493
20533
|
refId?: TraitId | undefined;
|
|
@@ -20526,8 +20566,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20526
20566
|
id?: string | undefined;
|
|
20527
20567
|
from?: string | undefined;
|
|
20528
20568
|
name?: string | undefined;
|
|
20529
|
-
fields?: Record<string, string> | undefined;
|
|
20530
20569
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
20570
|
+
fields?: Record<string, string> | undefined;
|
|
20531
20571
|
events?: Record<string, string> | undefined;
|
|
20532
20572
|
effects?: Record<string, SExpr[]> | undefined;
|
|
20533
20573
|
refId?: string | undefined;
|
|
@@ -20566,8 +20606,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20566
20606
|
id?: TraitId | undefined;
|
|
20567
20607
|
from?: string | undefined;
|
|
20568
20608
|
name?: string | undefined;
|
|
20569
|
-
fields?: Record<string, string> | undefined;
|
|
20570
20609
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
20610
|
+
fields?: Record<string, string> | undefined;
|
|
20571
20611
|
events?: Record<string, string> | undefined;
|
|
20572
20612
|
effects?: Record<string, SExpr[]> | undefined;
|
|
20573
20613
|
refId?: TraitId | undefined;
|
|
@@ -20606,8 +20646,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20606
20646
|
id?: string | undefined;
|
|
20607
20647
|
from?: string | undefined;
|
|
20608
20648
|
name?: string | undefined;
|
|
20609
|
-
fields?: Record<string, string> | undefined;
|
|
20610
20649
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
20650
|
+
fields?: Record<string, string> | undefined;
|
|
20611
20651
|
events?: Record<string, string> | undefined;
|
|
20612
20652
|
effects?: Record<string, SExpr[]> | undefined;
|
|
20613
20653
|
refId?: string | undefined;
|
|
@@ -21110,6 +21150,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21110
21150
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
21111
21151
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
21112
21152
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
21153
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
21154
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
21155
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
21156
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
21113
21157
|
collection: z.ZodOptional<z.ZodString>;
|
|
21114
21158
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
21115
21159
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -21149,6 +21193,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21149
21193
|
description?: string | undefined;
|
|
21150
21194
|
shared?: boolean | undefined;
|
|
21151
21195
|
identity?: boolean | undefined;
|
|
21196
|
+
read_policy?: SExpr | undefined;
|
|
21197
|
+
create_policy?: SExpr | undefined;
|
|
21198
|
+
update_policy?: SExpr | undefined;
|
|
21199
|
+
delete_policy?: SExpr | undefined;
|
|
21152
21200
|
collection?: string | undefined;
|
|
21153
21201
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21154
21202
|
timestamps?: boolean | undefined;
|
|
@@ -21170,6 +21218,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21170
21218
|
persistence?: "persistent" | "runtime" | undefined;
|
|
21171
21219
|
shared?: boolean | undefined;
|
|
21172
21220
|
identity?: boolean | undefined;
|
|
21221
|
+
read_policy?: SExpr | undefined;
|
|
21222
|
+
create_policy?: SExpr | undefined;
|
|
21223
|
+
update_policy?: SExpr | undefined;
|
|
21224
|
+
delete_policy?: SExpr | undefined;
|
|
21173
21225
|
collection?: string | undefined;
|
|
21174
21226
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21175
21227
|
timestamps?: boolean | undefined;
|
|
@@ -21330,6 +21382,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21330
21382
|
description?: string | undefined;
|
|
21331
21383
|
shared?: boolean | undefined;
|
|
21332
21384
|
identity?: boolean | undefined;
|
|
21385
|
+
read_policy?: SExpr | undefined;
|
|
21386
|
+
create_policy?: SExpr | undefined;
|
|
21387
|
+
update_policy?: SExpr | undefined;
|
|
21388
|
+
delete_policy?: SExpr | undefined;
|
|
21333
21389
|
collection?: string | undefined;
|
|
21334
21390
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21335
21391
|
timestamps?: boolean | undefined;
|
|
@@ -21490,6 +21546,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21490
21546
|
persistence?: "persistent" | "runtime" | undefined;
|
|
21491
21547
|
shared?: boolean | undefined;
|
|
21492
21548
|
identity?: boolean | undefined;
|
|
21549
|
+
read_policy?: SExpr | undefined;
|
|
21550
|
+
create_policy?: SExpr | undefined;
|
|
21551
|
+
update_policy?: SExpr | undefined;
|
|
21552
|
+
delete_policy?: SExpr | undefined;
|
|
21493
21553
|
collection?: string | undefined;
|
|
21494
21554
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21495
21555
|
timestamps?: boolean | undefined;
|
|
@@ -21516,8 +21576,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21516
21576
|
id?: TraitId | undefined;
|
|
21517
21577
|
from?: string | undefined;
|
|
21518
21578
|
name?: string | undefined;
|
|
21519
|
-
fields?: Record<string, string> | undefined;
|
|
21520
21579
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
21580
|
+
fields?: Record<string, string> | undefined;
|
|
21521
21581
|
events?: Record<string, string> | undefined;
|
|
21522
21582
|
effects?: Record<string, SExpr[]> | undefined;
|
|
21523
21583
|
refId?: TraitId | undefined;
|
|
@@ -21696,6 +21756,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21696
21756
|
description?: string | undefined;
|
|
21697
21757
|
shared?: boolean | undefined;
|
|
21698
21758
|
identity?: boolean | undefined;
|
|
21759
|
+
read_policy?: SExpr | undefined;
|
|
21760
|
+
create_policy?: SExpr | undefined;
|
|
21761
|
+
update_policy?: SExpr | undefined;
|
|
21762
|
+
delete_policy?: SExpr | undefined;
|
|
21699
21763
|
collection?: string | undefined;
|
|
21700
21764
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21701
21765
|
timestamps?: boolean | undefined;
|
|
@@ -21725,8 +21789,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21725
21789
|
id?: string | undefined;
|
|
21726
21790
|
from?: string | undefined;
|
|
21727
21791
|
name?: string | undefined;
|
|
21728
|
-
fields?: Record<string, string> | undefined;
|
|
21729
21792
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
21793
|
+
fields?: Record<string, string> | undefined;
|
|
21730
21794
|
events?: Record<string, string> | undefined;
|
|
21731
21795
|
effects?: Record<string, SExpr[]> | undefined;
|
|
21732
21796
|
refId?: string | undefined;
|
|
@@ -21905,6 +21969,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21905
21969
|
persistence?: "persistent" | "runtime" | undefined;
|
|
21906
21970
|
shared?: boolean | undefined;
|
|
21907
21971
|
identity?: boolean | undefined;
|
|
21972
|
+
read_policy?: SExpr | undefined;
|
|
21973
|
+
create_policy?: SExpr | undefined;
|
|
21974
|
+
update_policy?: SExpr | undefined;
|
|
21975
|
+
delete_policy?: SExpr | undefined;
|
|
21908
21976
|
collection?: string | undefined;
|
|
21909
21977
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21910
21978
|
timestamps?: boolean | undefined;
|
|
@@ -26335,6 +26403,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26335
26403
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
26336
26404
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
26337
26405
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
26406
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
26407
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
26408
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
26409
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
26338
26410
|
collection: z.ZodOptional<z.ZodString>;
|
|
26339
26411
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
26340
26412
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -26374,6 +26446,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26374
26446
|
description?: string | undefined;
|
|
26375
26447
|
shared?: boolean | undefined;
|
|
26376
26448
|
identity?: boolean | undefined;
|
|
26449
|
+
read_policy?: SExpr | undefined;
|
|
26450
|
+
create_policy?: SExpr | undefined;
|
|
26451
|
+
update_policy?: SExpr | undefined;
|
|
26452
|
+
delete_policy?: SExpr | undefined;
|
|
26377
26453
|
collection?: string | undefined;
|
|
26378
26454
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
26379
26455
|
timestamps?: boolean | undefined;
|
|
@@ -26395,6 +26471,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26395
26471
|
persistence?: "persistent" | "runtime" | undefined;
|
|
26396
26472
|
shared?: boolean | undefined;
|
|
26397
26473
|
identity?: boolean | undefined;
|
|
26474
|
+
read_policy?: SExpr | undefined;
|
|
26475
|
+
create_policy?: SExpr | undefined;
|
|
26476
|
+
update_policy?: SExpr | undefined;
|
|
26477
|
+
delete_policy?: SExpr | undefined;
|
|
26398
26478
|
collection?: string | undefined;
|
|
26399
26479
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
26400
26480
|
timestamps?: boolean | undefined;
|
|
@@ -26557,8 +26637,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26557
26637
|
id?: TraitId | undefined;
|
|
26558
26638
|
from?: string | undefined;
|
|
26559
26639
|
name?: string | undefined;
|
|
26560
|
-
fields?: Record<string, string> | undefined;
|
|
26561
26640
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
26641
|
+
fields?: Record<string, string> | undefined;
|
|
26562
26642
|
events?: Record<string, string> | undefined;
|
|
26563
26643
|
effects?: Record<string, SExpr[]> | undefined;
|
|
26564
26644
|
refId?: TraitId | undefined;
|
|
@@ -26597,8 +26677,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26597
26677
|
id?: string | undefined;
|
|
26598
26678
|
from?: string | undefined;
|
|
26599
26679
|
name?: string | undefined;
|
|
26600
|
-
fields?: Record<string, string> | undefined;
|
|
26601
26680
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
26681
|
+
fields?: Record<string, string> | undefined;
|
|
26602
26682
|
events?: Record<string, string> | undefined;
|
|
26603
26683
|
effects?: Record<string, SExpr[]> | undefined;
|
|
26604
26684
|
refId?: string | undefined;
|
|
@@ -26637,8 +26717,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26637
26717
|
id?: TraitId | undefined;
|
|
26638
26718
|
from?: string | undefined;
|
|
26639
26719
|
name?: string | undefined;
|
|
26640
|
-
fields?: Record<string, string> | undefined;
|
|
26641
26720
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
26721
|
+
fields?: Record<string, string> | undefined;
|
|
26642
26722
|
events?: Record<string, string> | undefined;
|
|
26643
26723
|
effects?: Record<string, SExpr[]> | undefined;
|
|
26644
26724
|
refId?: TraitId | undefined;
|
|
@@ -26677,8 +26757,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26677
26757
|
id?: string | undefined;
|
|
26678
26758
|
from?: string | undefined;
|
|
26679
26759
|
name?: string | undefined;
|
|
26680
|
-
fields?: Record<string, string> | undefined;
|
|
26681
26760
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
26761
|
+
fields?: Record<string, string> | undefined;
|
|
26682
26762
|
events?: Record<string, string> | undefined;
|
|
26683
26763
|
effects?: Record<string, SExpr[]> | undefined;
|
|
26684
26764
|
refId?: string | undefined;
|
|
@@ -27181,6 +27261,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27181
27261
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
27182
27262
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
27183
27263
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
27264
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
27265
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
27266
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
27267
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
27184
27268
|
collection: z.ZodOptional<z.ZodString>;
|
|
27185
27269
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
27186
27270
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -27220,6 +27304,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27220
27304
|
description?: string | undefined;
|
|
27221
27305
|
shared?: boolean | undefined;
|
|
27222
27306
|
identity?: boolean | undefined;
|
|
27307
|
+
read_policy?: SExpr | undefined;
|
|
27308
|
+
create_policy?: SExpr | undefined;
|
|
27309
|
+
update_policy?: SExpr | undefined;
|
|
27310
|
+
delete_policy?: SExpr | undefined;
|
|
27223
27311
|
collection?: string | undefined;
|
|
27224
27312
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27225
27313
|
timestamps?: boolean | undefined;
|
|
@@ -27241,6 +27329,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27241
27329
|
persistence?: "persistent" | "runtime" | undefined;
|
|
27242
27330
|
shared?: boolean | undefined;
|
|
27243
27331
|
identity?: boolean | undefined;
|
|
27332
|
+
read_policy?: SExpr | undefined;
|
|
27333
|
+
create_policy?: SExpr | undefined;
|
|
27334
|
+
update_policy?: SExpr | undefined;
|
|
27335
|
+
delete_policy?: SExpr | undefined;
|
|
27244
27336
|
collection?: string | undefined;
|
|
27245
27337
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27246
27338
|
timestamps?: boolean | undefined;
|
|
@@ -27401,6 +27493,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27401
27493
|
description?: string | undefined;
|
|
27402
27494
|
shared?: boolean | undefined;
|
|
27403
27495
|
identity?: boolean | undefined;
|
|
27496
|
+
read_policy?: SExpr | undefined;
|
|
27497
|
+
create_policy?: SExpr | undefined;
|
|
27498
|
+
update_policy?: SExpr | undefined;
|
|
27499
|
+
delete_policy?: SExpr | undefined;
|
|
27404
27500
|
collection?: string | undefined;
|
|
27405
27501
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27406
27502
|
timestamps?: boolean | undefined;
|
|
@@ -27561,6 +27657,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27561
27657
|
persistence?: "persistent" | "runtime" | undefined;
|
|
27562
27658
|
shared?: boolean | undefined;
|
|
27563
27659
|
identity?: boolean | undefined;
|
|
27660
|
+
read_policy?: SExpr | undefined;
|
|
27661
|
+
create_policy?: SExpr | undefined;
|
|
27662
|
+
update_policy?: SExpr | undefined;
|
|
27663
|
+
delete_policy?: SExpr | undefined;
|
|
27564
27664
|
collection?: string | undefined;
|
|
27565
27665
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27566
27666
|
timestamps?: boolean | undefined;
|
|
@@ -27758,8 +27858,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27758
27858
|
id?: TraitId | undefined;
|
|
27759
27859
|
from?: string | undefined;
|
|
27760
27860
|
name?: string | undefined;
|
|
27761
|
-
fields?: Record<string, string> | undefined;
|
|
27762
27861
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
27862
|
+
fields?: Record<string, string> | undefined;
|
|
27763
27863
|
events?: Record<string, string> | undefined;
|
|
27764
27864
|
effects?: Record<string, SExpr[]> | undefined;
|
|
27765
27865
|
refId?: TraitId | undefined;
|
|
@@ -27798,8 +27898,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27798
27898
|
id?: string | undefined;
|
|
27799
27899
|
from?: string | undefined;
|
|
27800
27900
|
name?: string | undefined;
|
|
27801
|
-
fields?: Record<string, string> | undefined;
|
|
27802
27901
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
27902
|
+
fields?: Record<string, string> | undefined;
|
|
27803
27903
|
events?: Record<string, string> | undefined;
|
|
27804
27904
|
effects?: Record<string, SExpr[]> | undefined;
|
|
27805
27905
|
refId?: string | undefined;
|
|
@@ -27838,8 +27938,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27838
27938
|
id?: TraitId | undefined;
|
|
27839
27939
|
from?: string | undefined;
|
|
27840
27940
|
name?: string | undefined;
|
|
27841
|
-
fields?: Record<string, string> | undefined;
|
|
27842
27941
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
27942
|
+
fields?: Record<string, string> | undefined;
|
|
27843
27943
|
events?: Record<string, string> | undefined;
|
|
27844
27944
|
effects?: Record<string, SExpr[]> | undefined;
|
|
27845
27945
|
refId?: TraitId | undefined;
|
|
@@ -27878,8 +27978,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27878
27978
|
id?: string | undefined;
|
|
27879
27979
|
from?: string | undefined;
|
|
27880
27980
|
name?: string | undefined;
|
|
27881
|
-
fields?: Record<string, string> | undefined;
|
|
27882
27981
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
27982
|
+
fields?: Record<string, string> | undefined;
|
|
27883
27983
|
events?: Record<string, string> | undefined;
|
|
27884
27984
|
effects?: Record<string, SExpr[]> | undefined;
|
|
27885
27985
|
refId?: string | undefined;
|
|
@@ -28382,6 +28482,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28382
28482
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
28383
28483
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
28384
28484
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
28485
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
28486
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
28487
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
28488
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
28385
28489
|
collection: z.ZodOptional<z.ZodString>;
|
|
28386
28490
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
28387
28491
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -28421,6 +28525,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28421
28525
|
description?: string | undefined;
|
|
28422
28526
|
shared?: boolean | undefined;
|
|
28423
28527
|
identity?: boolean | undefined;
|
|
28528
|
+
read_policy?: SExpr | undefined;
|
|
28529
|
+
create_policy?: SExpr | undefined;
|
|
28530
|
+
update_policy?: SExpr | undefined;
|
|
28531
|
+
delete_policy?: SExpr | undefined;
|
|
28424
28532
|
collection?: string | undefined;
|
|
28425
28533
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28426
28534
|
timestamps?: boolean | undefined;
|
|
@@ -28442,6 +28550,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28442
28550
|
persistence?: "persistent" | "runtime" | undefined;
|
|
28443
28551
|
shared?: boolean | undefined;
|
|
28444
28552
|
identity?: boolean | undefined;
|
|
28553
|
+
read_policy?: SExpr | undefined;
|
|
28554
|
+
create_policy?: SExpr | undefined;
|
|
28555
|
+
update_policy?: SExpr | undefined;
|
|
28556
|
+
delete_policy?: SExpr | undefined;
|
|
28445
28557
|
collection?: string | undefined;
|
|
28446
28558
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28447
28559
|
timestamps?: boolean | undefined;
|
|
@@ -28602,6 +28714,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28602
28714
|
description?: string | undefined;
|
|
28603
28715
|
shared?: boolean | undefined;
|
|
28604
28716
|
identity?: boolean | undefined;
|
|
28717
|
+
read_policy?: SExpr | undefined;
|
|
28718
|
+
create_policy?: SExpr | undefined;
|
|
28719
|
+
update_policy?: SExpr | undefined;
|
|
28720
|
+
delete_policy?: SExpr | undefined;
|
|
28605
28721
|
collection?: string | undefined;
|
|
28606
28722
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28607
28723
|
timestamps?: boolean | undefined;
|
|
@@ -28762,6 +28878,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28762
28878
|
persistence?: "persistent" | "runtime" | undefined;
|
|
28763
28879
|
shared?: boolean | undefined;
|
|
28764
28880
|
identity?: boolean | undefined;
|
|
28881
|
+
read_policy?: SExpr | undefined;
|
|
28882
|
+
create_policy?: SExpr | undefined;
|
|
28883
|
+
update_policy?: SExpr | undefined;
|
|
28884
|
+
delete_policy?: SExpr | undefined;
|
|
28765
28885
|
collection?: string | undefined;
|
|
28766
28886
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28767
28887
|
timestamps?: boolean | undefined;
|
|
@@ -28788,8 +28908,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28788
28908
|
id?: TraitId | undefined;
|
|
28789
28909
|
from?: string | undefined;
|
|
28790
28910
|
name?: string | undefined;
|
|
28791
|
-
fields?: Record<string, string> | undefined;
|
|
28792
28911
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
28912
|
+
fields?: Record<string, string> | undefined;
|
|
28793
28913
|
events?: Record<string, string> | undefined;
|
|
28794
28914
|
effects?: Record<string, SExpr[]> | undefined;
|
|
28795
28915
|
refId?: TraitId | undefined;
|
|
@@ -28968,6 +29088,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28968
29088
|
description?: string | undefined;
|
|
28969
29089
|
shared?: boolean | undefined;
|
|
28970
29090
|
identity?: boolean | undefined;
|
|
29091
|
+
read_policy?: SExpr | undefined;
|
|
29092
|
+
create_policy?: SExpr | undefined;
|
|
29093
|
+
update_policy?: SExpr | undefined;
|
|
29094
|
+
delete_policy?: SExpr | undefined;
|
|
28971
29095
|
collection?: string | undefined;
|
|
28972
29096
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28973
29097
|
timestamps?: boolean | undefined;
|
|
@@ -28997,8 +29121,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28997
29121
|
id?: string | undefined;
|
|
28998
29122
|
from?: string | undefined;
|
|
28999
29123
|
name?: string | undefined;
|
|
29000
|
-
fields?: Record<string, string> | undefined;
|
|
29001
29124
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
29125
|
+
fields?: Record<string, string> | undefined;
|
|
29002
29126
|
events?: Record<string, string> | undefined;
|
|
29003
29127
|
effects?: Record<string, SExpr[]> | undefined;
|
|
29004
29128
|
refId?: string | undefined;
|
|
@@ -29177,6 +29301,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29177
29301
|
persistence?: "persistent" | "runtime" | undefined;
|
|
29178
29302
|
shared?: boolean | undefined;
|
|
29179
29303
|
identity?: boolean | undefined;
|
|
29304
|
+
read_policy?: SExpr | undefined;
|
|
29305
|
+
create_policy?: SExpr | undefined;
|
|
29306
|
+
update_policy?: SExpr | undefined;
|
|
29307
|
+
delete_policy?: SExpr | undefined;
|
|
29180
29308
|
collection?: string | undefined;
|
|
29181
29309
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29182
29310
|
timestamps?: boolean | undefined;
|
|
@@ -29417,6 +29545,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29417
29545
|
description?: string | undefined;
|
|
29418
29546
|
shared?: boolean | undefined;
|
|
29419
29547
|
identity?: boolean | undefined;
|
|
29548
|
+
read_policy?: SExpr | undefined;
|
|
29549
|
+
create_policy?: SExpr | undefined;
|
|
29550
|
+
update_policy?: SExpr | undefined;
|
|
29551
|
+
delete_policy?: SExpr | undefined;
|
|
29420
29552
|
collection?: string | undefined;
|
|
29421
29553
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29422
29554
|
timestamps?: boolean | undefined;
|
|
@@ -29463,8 +29595,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29463
29595
|
id?: TraitId | undefined;
|
|
29464
29596
|
from?: string | undefined;
|
|
29465
29597
|
name?: string | undefined;
|
|
29466
|
-
fields?: Record<string, string> | undefined;
|
|
29467
29598
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
29599
|
+
fields?: Record<string, string> | undefined;
|
|
29468
29600
|
events?: Record<string, string> | undefined;
|
|
29469
29601
|
effects?: Record<string, SExpr[]> | undefined;
|
|
29470
29602
|
refId?: TraitId | undefined;
|
|
@@ -29643,6 +29775,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29643
29775
|
description?: string | undefined;
|
|
29644
29776
|
shared?: boolean | undefined;
|
|
29645
29777
|
identity?: boolean | undefined;
|
|
29778
|
+
read_policy?: SExpr | undefined;
|
|
29779
|
+
create_policy?: SExpr | undefined;
|
|
29780
|
+
update_policy?: SExpr | undefined;
|
|
29781
|
+
delete_policy?: SExpr | undefined;
|
|
29646
29782
|
collection?: string | undefined;
|
|
29647
29783
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29648
29784
|
timestamps?: boolean | undefined;
|
|
@@ -29669,8 +29805,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29669
29805
|
id?: TraitId | undefined;
|
|
29670
29806
|
from?: string | undefined;
|
|
29671
29807
|
name?: string | undefined;
|
|
29672
|
-
fields?: Record<string, string> | undefined;
|
|
29673
29808
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
29809
|
+
fields?: Record<string, string> | undefined;
|
|
29674
29810
|
events?: Record<string, string> | undefined;
|
|
29675
29811
|
effects?: Record<string, SExpr[]> | undefined;
|
|
29676
29812
|
refId?: TraitId | undefined;
|
|
@@ -29849,6 +29985,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29849
29985
|
description?: string | undefined;
|
|
29850
29986
|
shared?: boolean | undefined;
|
|
29851
29987
|
identity?: boolean | undefined;
|
|
29988
|
+
read_policy?: SExpr | undefined;
|
|
29989
|
+
create_policy?: SExpr | undefined;
|
|
29990
|
+
update_policy?: SExpr | undefined;
|
|
29991
|
+
delete_policy?: SExpr | undefined;
|
|
29852
29992
|
collection?: string | undefined;
|
|
29853
29993
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29854
29994
|
timestamps?: boolean | undefined;
|
|
@@ -30428,6 +30568,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30428
30568
|
persistence?: "persistent" | "runtime" | undefined;
|
|
30429
30569
|
shared?: boolean | undefined;
|
|
30430
30570
|
identity?: boolean | undefined;
|
|
30571
|
+
read_policy?: SExpr | undefined;
|
|
30572
|
+
create_policy?: SExpr | undefined;
|
|
30573
|
+
update_policy?: SExpr | undefined;
|
|
30574
|
+
delete_policy?: SExpr | undefined;
|
|
30431
30575
|
collection?: string | undefined;
|
|
30432
30576
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
30433
30577
|
timestamps?: boolean | undefined;
|
|
@@ -30474,8 +30618,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30474
30618
|
id?: string | undefined;
|
|
30475
30619
|
from?: string | undefined;
|
|
30476
30620
|
name?: string | undefined;
|
|
30477
|
-
fields?: Record<string, string> | undefined;
|
|
30478
30621
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
30622
|
+
fields?: Record<string, string> | undefined;
|
|
30479
30623
|
events?: Record<string, string> | undefined;
|
|
30480
30624
|
effects?: Record<string, SExpr[]> | undefined;
|
|
30481
30625
|
refId?: string | undefined;
|
|
@@ -30654,6 +30798,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30654
30798
|
persistence?: "persistent" | "runtime" | undefined;
|
|
30655
30799
|
shared?: boolean | undefined;
|
|
30656
30800
|
identity?: boolean | undefined;
|
|
30801
|
+
read_policy?: SExpr | undefined;
|
|
30802
|
+
create_policy?: SExpr | undefined;
|
|
30803
|
+
update_policy?: SExpr | undefined;
|
|
30804
|
+
delete_policy?: SExpr | undefined;
|
|
30657
30805
|
collection?: string | undefined;
|
|
30658
30806
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
30659
30807
|
timestamps?: boolean | undefined;
|
|
@@ -30680,8 +30828,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30680
30828
|
id?: string | undefined;
|
|
30681
30829
|
from?: string | undefined;
|
|
30682
30830
|
name?: string | undefined;
|
|
30683
|
-
fields?: Record<string, string> | undefined;
|
|
30684
30831
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
30832
|
+
fields?: Record<string, string> | undefined;
|
|
30685
30833
|
events?: Record<string, string> | undefined;
|
|
30686
30834
|
effects?: Record<string, SExpr[]> | undefined;
|
|
30687
30835
|
refId?: string | undefined;
|
|
@@ -30860,6 +31008,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30860
31008
|
persistence?: "persistent" | "runtime" | undefined;
|
|
30861
31009
|
shared?: boolean | undefined;
|
|
30862
31010
|
identity?: boolean | undefined;
|
|
31011
|
+
read_policy?: SExpr | undefined;
|
|
31012
|
+
create_policy?: SExpr | undefined;
|
|
31013
|
+
update_policy?: SExpr | undefined;
|
|
31014
|
+
delete_policy?: SExpr | undefined;
|
|
30863
31015
|
collection?: string | undefined;
|
|
30864
31016
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
30865
31017
|
timestamps?: boolean | undefined;
|
|
@@ -35477,6 +35629,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35477
35629
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
35478
35630
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
35479
35631
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
35632
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
35633
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
35634
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
35635
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
35480
35636
|
collection: z.ZodOptional<z.ZodString>;
|
|
35481
35637
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
35482
35638
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -35516,6 +35672,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35516
35672
|
description?: string | undefined;
|
|
35517
35673
|
shared?: boolean | undefined;
|
|
35518
35674
|
identity?: boolean | undefined;
|
|
35675
|
+
read_policy?: SExpr | undefined;
|
|
35676
|
+
create_policy?: SExpr | undefined;
|
|
35677
|
+
update_policy?: SExpr | undefined;
|
|
35678
|
+
delete_policy?: SExpr | undefined;
|
|
35519
35679
|
collection?: string | undefined;
|
|
35520
35680
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
35521
35681
|
timestamps?: boolean | undefined;
|
|
@@ -35537,6 +35697,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35537
35697
|
persistence?: "persistent" | "runtime" | undefined;
|
|
35538
35698
|
shared?: boolean | undefined;
|
|
35539
35699
|
identity?: boolean | undefined;
|
|
35700
|
+
read_policy?: SExpr | undefined;
|
|
35701
|
+
create_policy?: SExpr | undefined;
|
|
35702
|
+
update_policy?: SExpr | undefined;
|
|
35703
|
+
delete_policy?: SExpr | undefined;
|
|
35540
35704
|
collection?: string | undefined;
|
|
35541
35705
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
35542
35706
|
timestamps?: boolean | undefined;
|
|
@@ -35699,8 +35863,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35699
35863
|
id?: TraitId | undefined;
|
|
35700
35864
|
from?: string | undefined;
|
|
35701
35865
|
name?: string | undefined;
|
|
35702
|
-
fields?: Record<string, string> | undefined;
|
|
35703
35866
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
35867
|
+
fields?: Record<string, string> | undefined;
|
|
35704
35868
|
events?: Record<string, string> | undefined;
|
|
35705
35869
|
effects?: Record<string, SExpr[]> | undefined;
|
|
35706
35870
|
refId?: TraitId | undefined;
|
|
@@ -35739,8 +35903,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35739
35903
|
id?: string | undefined;
|
|
35740
35904
|
from?: string | undefined;
|
|
35741
35905
|
name?: string | undefined;
|
|
35742
|
-
fields?: Record<string, string> | undefined;
|
|
35743
35906
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
35907
|
+
fields?: Record<string, string> | undefined;
|
|
35744
35908
|
events?: Record<string, string> | undefined;
|
|
35745
35909
|
effects?: Record<string, SExpr[]> | undefined;
|
|
35746
35910
|
refId?: string | undefined;
|
|
@@ -35779,8 +35943,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35779
35943
|
id?: TraitId | undefined;
|
|
35780
35944
|
from?: string | undefined;
|
|
35781
35945
|
name?: string | undefined;
|
|
35782
|
-
fields?: Record<string, string> | undefined;
|
|
35783
35946
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
35947
|
+
fields?: Record<string, string> | undefined;
|
|
35784
35948
|
events?: Record<string, string> | undefined;
|
|
35785
35949
|
effects?: Record<string, SExpr[]> | undefined;
|
|
35786
35950
|
refId?: TraitId | undefined;
|
|
@@ -35819,8 +35983,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35819
35983
|
id?: string | undefined;
|
|
35820
35984
|
from?: string | undefined;
|
|
35821
35985
|
name?: string | undefined;
|
|
35822
|
-
fields?: Record<string, string> | undefined;
|
|
35823
35986
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
35987
|
+
fields?: Record<string, string> | undefined;
|
|
35824
35988
|
events?: Record<string, string> | undefined;
|
|
35825
35989
|
effects?: Record<string, SExpr[]> | undefined;
|
|
35826
35990
|
refId?: string | undefined;
|
|
@@ -36323,6 +36487,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36323
36487
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
36324
36488
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
36325
36489
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
36490
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
36491
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
36492
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
36493
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
36326
36494
|
collection: z.ZodOptional<z.ZodString>;
|
|
36327
36495
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
36328
36496
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -36362,6 +36530,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36362
36530
|
description?: string | undefined;
|
|
36363
36531
|
shared?: boolean | undefined;
|
|
36364
36532
|
identity?: boolean | undefined;
|
|
36533
|
+
read_policy?: SExpr | undefined;
|
|
36534
|
+
create_policy?: SExpr | undefined;
|
|
36535
|
+
update_policy?: SExpr | undefined;
|
|
36536
|
+
delete_policy?: SExpr | undefined;
|
|
36365
36537
|
collection?: string | undefined;
|
|
36366
36538
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36367
36539
|
timestamps?: boolean | undefined;
|
|
@@ -36383,6 +36555,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36383
36555
|
persistence?: "persistent" | "runtime" | undefined;
|
|
36384
36556
|
shared?: boolean | undefined;
|
|
36385
36557
|
identity?: boolean | undefined;
|
|
36558
|
+
read_policy?: SExpr | undefined;
|
|
36559
|
+
create_policy?: SExpr | undefined;
|
|
36560
|
+
update_policy?: SExpr | undefined;
|
|
36561
|
+
delete_policy?: SExpr | undefined;
|
|
36386
36562
|
collection?: string | undefined;
|
|
36387
36563
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36388
36564
|
timestamps?: boolean | undefined;
|
|
@@ -36543,6 +36719,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36543
36719
|
description?: string | undefined;
|
|
36544
36720
|
shared?: boolean | undefined;
|
|
36545
36721
|
identity?: boolean | undefined;
|
|
36722
|
+
read_policy?: SExpr | undefined;
|
|
36723
|
+
create_policy?: SExpr | undefined;
|
|
36724
|
+
update_policy?: SExpr | undefined;
|
|
36725
|
+
delete_policy?: SExpr | undefined;
|
|
36546
36726
|
collection?: string | undefined;
|
|
36547
36727
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36548
36728
|
timestamps?: boolean | undefined;
|
|
@@ -36703,6 +36883,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36703
36883
|
persistence?: "persistent" | "runtime" | undefined;
|
|
36704
36884
|
shared?: boolean | undefined;
|
|
36705
36885
|
identity?: boolean | undefined;
|
|
36886
|
+
read_policy?: SExpr | undefined;
|
|
36887
|
+
create_policy?: SExpr | undefined;
|
|
36888
|
+
update_policy?: SExpr | undefined;
|
|
36889
|
+
delete_policy?: SExpr | undefined;
|
|
36706
36890
|
collection?: string | undefined;
|
|
36707
36891
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36708
36892
|
timestamps?: boolean | undefined;
|
|
@@ -36900,8 +37084,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36900
37084
|
id?: TraitId | undefined;
|
|
36901
37085
|
from?: string | undefined;
|
|
36902
37086
|
name?: string | undefined;
|
|
36903
|
-
fields?: Record<string, string> | undefined;
|
|
36904
37087
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
37088
|
+
fields?: Record<string, string> | undefined;
|
|
36905
37089
|
events?: Record<string, string> | undefined;
|
|
36906
37090
|
effects?: Record<string, SExpr[]> | undefined;
|
|
36907
37091
|
refId?: TraitId | undefined;
|
|
@@ -36940,8 +37124,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36940
37124
|
id?: string | undefined;
|
|
36941
37125
|
from?: string | undefined;
|
|
36942
37126
|
name?: string | undefined;
|
|
36943
|
-
fields?: Record<string, string> | undefined;
|
|
36944
37127
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
37128
|
+
fields?: Record<string, string> | undefined;
|
|
36945
37129
|
events?: Record<string, string> | undefined;
|
|
36946
37130
|
effects?: Record<string, SExpr[]> | undefined;
|
|
36947
37131
|
refId?: string | undefined;
|
|
@@ -36980,8 +37164,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36980
37164
|
id?: TraitId | undefined;
|
|
36981
37165
|
from?: string | undefined;
|
|
36982
37166
|
name?: string | undefined;
|
|
36983
|
-
fields?: Record<string, string> | undefined;
|
|
36984
37167
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
37168
|
+
fields?: Record<string, string> | undefined;
|
|
36985
37169
|
events?: Record<string, string> | undefined;
|
|
36986
37170
|
effects?: Record<string, SExpr[]> | undefined;
|
|
36987
37171
|
refId?: TraitId | undefined;
|
|
@@ -37020,8 +37204,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37020
37204
|
id?: string | undefined;
|
|
37021
37205
|
from?: string | undefined;
|
|
37022
37206
|
name?: string | undefined;
|
|
37023
|
-
fields?: Record<string, string> | undefined;
|
|
37024
37207
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
37208
|
+
fields?: Record<string, string> | undefined;
|
|
37025
37209
|
events?: Record<string, string> | undefined;
|
|
37026
37210
|
effects?: Record<string, SExpr[]> | undefined;
|
|
37027
37211
|
refId?: string | undefined;
|
|
@@ -37524,6 +37708,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37524
37708
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
37525
37709
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
37526
37710
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
37711
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
37712
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
37713
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
37714
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
37527
37715
|
collection: z.ZodOptional<z.ZodString>;
|
|
37528
37716
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
37529
37717
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -37563,6 +37751,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37563
37751
|
description?: string | undefined;
|
|
37564
37752
|
shared?: boolean | undefined;
|
|
37565
37753
|
identity?: boolean | undefined;
|
|
37754
|
+
read_policy?: SExpr | undefined;
|
|
37755
|
+
create_policy?: SExpr | undefined;
|
|
37756
|
+
update_policy?: SExpr | undefined;
|
|
37757
|
+
delete_policy?: SExpr | undefined;
|
|
37566
37758
|
collection?: string | undefined;
|
|
37567
37759
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
37568
37760
|
timestamps?: boolean | undefined;
|
|
@@ -37584,6 +37776,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37584
37776
|
persistence?: "persistent" | "runtime" | undefined;
|
|
37585
37777
|
shared?: boolean | undefined;
|
|
37586
37778
|
identity?: boolean | undefined;
|
|
37779
|
+
read_policy?: SExpr | undefined;
|
|
37780
|
+
create_policy?: SExpr | undefined;
|
|
37781
|
+
update_policy?: SExpr | undefined;
|
|
37782
|
+
delete_policy?: SExpr | undefined;
|
|
37587
37783
|
collection?: string | undefined;
|
|
37588
37784
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
37589
37785
|
timestamps?: boolean | undefined;
|
|
@@ -37744,6 +37940,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37744
37940
|
description?: string | undefined;
|
|
37745
37941
|
shared?: boolean | undefined;
|
|
37746
37942
|
identity?: boolean | undefined;
|
|
37943
|
+
read_policy?: SExpr | undefined;
|
|
37944
|
+
create_policy?: SExpr | undefined;
|
|
37945
|
+
update_policy?: SExpr | undefined;
|
|
37946
|
+
delete_policy?: SExpr | undefined;
|
|
37747
37947
|
collection?: string | undefined;
|
|
37748
37948
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
37749
37949
|
timestamps?: boolean | undefined;
|
|
@@ -37904,6 +38104,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37904
38104
|
persistence?: "persistent" | "runtime" | undefined;
|
|
37905
38105
|
shared?: boolean | undefined;
|
|
37906
38106
|
identity?: boolean | undefined;
|
|
38107
|
+
read_policy?: SExpr | undefined;
|
|
38108
|
+
create_policy?: SExpr | undefined;
|
|
38109
|
+
update_policy?: SExpr | undefined;
|
|
38110
|
+
delete_policy?: SExpr | undefined;
|
|
37907
38111
|
collection?: string | undefined;
|
|
37908
38112
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
37909
38113
|
timestamps?: boolean | undefined;
|
|
@@ -37930,8 +38134,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37930
38134
|
id?: TraitId | undefined;
|
|
37931
38135
|
from?: string | undefined;
|
|
37932
38136
|
name?: string | undefined;
|
|
37933
|
-
fields?: Record<string, string> | undefined;
|
|
37934
38137
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
38138
|
+
fields?: Record<string, string> | undefined;
|
|
37935
38139
|
events?: Record<string, string> | undefined;
|
|
37936
38140
|
effects?: Record<string, SExpr[]> | undefined;
|
|
37937
38141
|
refId?: TraitId | undefined;
|
|
@@ -38110,6 +38314,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38110
38314
|
description?: string | undefined;
|
|
38111
38315
|
shared?: boolean | undefined;
|
|
38112
38316
|
identity?: boolean | undefined;
|
|
38317
|
+
read_policy?: SExpr | undefined;
|
|
38318
|
+
create_policy?: SExpr | undefined;
|
|
38319
|
+
update_policy?: SExpr | undefined;
|
|
38320
|
+
delete_policy?: SExpr | undefined;
|
|
38113
38321
|
collection?: string | undefined;
|
|
38114
38322
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38115
38323
|
timestamps?: boolean | undefined;
|
|
@@ -38139,8 +38347,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38139
38347
|
id?: string | undefined;
|
|
38140
38348
|
from?: string | undefined;
|
|
38141
38349
|
name?: string | undefined;
|
|
38142
|
-
fields?: Record<string, string> | undefined;
|
|
38143
38350
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
38351
|
+
fields?: Record<string, string> | undefined;
|
|
38144
38352
|
events?: Record<string, string> | undefined;
|
|
38145
38353
|
effects?: Record<string, SExpr[]> | undefined;
|
|
38146
38354
|
refId?: string | undefined;
|
|
@@ -38319,6 +38527,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38319
38527
|
persistence?: "persistent" | "runtime" | undefined;
|
|
38320
38528
|
shared?: boolean | undefined;
|
|
38321
38529
|
identity?: boolean | undefined;
|
|
38530
|
+
read_policy?: SExpr | undefined;
|
|
38531
|
+
create_policy?: SExpr | undefined;
|
|
38532
|
+
update_policy?: SExpr | undefined;
|
|
38533
|
+
delete_policy?: SExpr | undefined;
|
|
38322
38534
|
collection?: string | undefined;
|
|
38323
38535
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38324
38536
|
timestamps?: boolean | undefined;
|
|
@@ -38559,6 +38771,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38559
38771
|
description?: string | undefined;
|
|
38560
38772
|
shared?: boolean | undefined;
|
|
38561
38773
|
identity?: boolean | undefined;
|
|
38774
|
+
read_policy?: SExpr | undefined;
|
|
38775
|
+
create_policy?: SExpr | undefined;
|
|
38776
|
+
update_policy?: SExpr | undefined;
|
|
38777
|
+
delete_policy?: SExpr | undefined;
|
|
38562
38778
|
collection?: string | undefined;
|
|
38563
38779
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38564
38780
|
timestamps?: boolean | undefined;
|
|
@@ -38605,8 +38821,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38605
38821
|
id?: TraitId | undefined;
|
|
38606
38822
|
from?: string | undefined;
|
|
38607
38823
|
name?: string | undefined;
|
|
38608
|
-
fields?: Record<string, string> | undefined;
|
|
38609
38824
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
38825
|
+
fields?: Record<string, string> | undefined;
|
|
38610
38826
|
events?: Record<string, string> | undefined;
|
|
38611
38827
|
effects?: Record<string, SExpr[]> | undefined;
|
|
38612
38828
|
refId?: TraitId | undefined;
|
|
@@ -38785,6 +39001,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38785
39001
|
description?: string | undefined;
|
|
38786
39002
|
shared?: boolean | undefined;
|
|
38787
39003
|
identity?: boolean | undefined;
|
|
39004
|
+
read_policy?: SExpr | undefined;
|
|
39005
|
+
create_policy?: SExpr | undefined;
|
|
39006
|
+
update_policy?: SExpr | undefined;
|
|
39007
|
+
delete_policy?: SExpr | undefined;
|
|
38788
39008
|
collection?: string | undefined;
|
|
38789
39009
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38790
39010
|
timestamps?: boolean | undefined;
|
|
@@ -38811,8 +39031,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38811
39031
|
id?: TraitId | undefined;
|
|
38812
39032
|
from?: string | undefined;
|
|
38813
39033
|
name?: string | undefined;
|
|
38814
|
-
fields?: Record<string, string> | undefined;
|
|
38815
39034
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
39035
|
+
fields?: Record<string, string> | undefined;
|
|
38816
39036
|
events?: Record<string, string> | undefined;
|
|
38817
39037
|
effects?: Record<string, SExpr[]> | undefined;
|
|
38818
39038
|
refId?: TraitId | undefined;
|
|
@@ -38991,6 +39211,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38991
39211
|
description?: string | undefined;
|
|
38992
39212
|
shared?: boolean | undefined;
|
|
38993
39213
|
identity?: boolean | undefined;
|
|
39214
|
+
read_policy?: SExpr | undefined;
|
|
39215
|
+
create_policy?: SExpr | undefined;
|
|
39216
|
+
update_policy?: SExpr | undefined;
|
|
39217
|
+
delete_policy?: SExpr | undefined;
|
|
38994
39218
|
collection?: string | undefined;
|
|
38995
39219
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38996
39220
|
timestamps?: boolean | undefined;
|
|
@@ -39570,6 +39794,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39570
39794
|
persistence?: "persistent" | "runtime" | undefined;
|
|
39571
39795
|
shared?: boolean | undefined;
|
|
39572
39796
|
identity?: boolean | undefined;
|
|
39797
|
+
read_policy?: SExpr | undefined;
|
|
39798
|
+
create_policy?: SExpr | undefined;
|
|
39799
|
+
update_policy?: SExpr | undefined;
|
|
39800
|
+
delete_policy?: SExpr | undefined;
|
|
39573
39801
|
collection?: string | undefined;
|
|
39574
39802
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
39575
39803
|
timestamps?: boolean | undefined;
|
|
@@ -39616,8 +39844,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39616
39844
|
id?: string | undefined;
|
|
39617
39845
|
from?: string | undefined;
|
|
39618
39846
|
name?: string | undefined;
|
|
39619
|
-
fields?: Record<string, string> | undefined;
|
|
39620
39847
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
39848
|
+
fields?: Record<string, string> | undefined;
|
|
39621
39849
|
events?: Record<string, string> | undefined;
|
|
39622
39850
|
effects?: Record<string, SExpr[]> | undefined;
|
|
39623
39851
|
refId?: string | undefined;
|
|
@@ -39796,6 +40024,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39796
40024
|
persistence?: "persistent" | "runtime" | undefined;
|
|
39797
40025
|
shared?: boolean | undefined;
|
|
39798
40026
|
identity?: boolean | undefined;
|
|
40027
|
+
read_policy?: SExpr | undefined;
|
|
40028
|
+
create_policy?: SExpr | undefined;
|
|
40029
|
+
update_policy?: SExpr | undefined;
|
|
40030
|
+
delete_policy?: SExpr | undefined;
|
|
39799
40031
|
collection?: string | undefined;
|
|
39800
40032
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
39801
40033
|
timestamps?: boolean | undefined;
|
|
@@ -39822,8 +40054,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39822
40054
|
id?: string | undefined;
|
|
39823
40055
|
from?: string | undefined;
|
|
39824
40056
|
name?: string | undefined;
|
|
39825
|
-
fields?: Record<string, string> | undefined;
|
|
39826
40057
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
40058
|
+
fields?: Record<string, string> | undefined;
|
|
39827
40059
|
events?: Record<string, string> | undefined;
|
|
39828
40060
|
effects?: Record<string, SExpr[]> | undefined;
|
|
39829
40061
|
refId?: string | undefined;
|
|
@@ -40002,6 +40234,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40002
40234
|
persistence?: "persistent" | "runtime" | undefined;
|
|
40003
40235
|
shared?: boolean | undefined;
|
|
40004
40236
|
identity?: boolean | undefined;
|
|
40237
|
+
read_policy?: SExpr | undefined;
|
|
40238
|
+
create_policy?: SExpr | undefined;
|
|
40239
|
+
update_policy?: SExpr | undefined;
|
|
40240
|
+
delete_policy?: SExpr | undefined;
|
|
40005
40241
|
collection?: string | undefined;
|
|
40006
40242
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
40007
40243
|
timestamps?: boolean | undefined;
|
|
@@ -44626,6 +44862,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44626
44862
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
44627
44863
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
44628
44864
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
44865
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
44866
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
44867
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
44868
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
44629
44869
|
collection: z.ZodOptional<z.ZodString>;
|
|
44630
44870
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
44631
44871
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -44665,6 +44905,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44665
44905
|
description?: string | undefined;
|
|
44666
44906
|
shared?: boolean | undefined;
|
|
44667
44907
|
identity?: boolean | undefined;
|
|
44908
|
+
read_policy?: SExpr | undefined;
|
|
44909
|
+
create_policy?: SExpr | undefined;
|
|
44910
|
+
update_policy?: SExpr | undefined;
|
|
44911
|
+
delete_policy?: SExpr | undefined;
|
|
44668
44912
|
collection?: string | undefined;
|
|
44669
44913
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
44670
44914
|
timestamps?: boolean | undefined;
|
|
@@ -44686,6 +44930,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44686
44930
|
persistence?: "persistent" | "runtime" | undefined;
|
|
44687
44931
|
shared?: boolean | undefined;
|
|
44688
44932
|
identity?: boolean | undefined;
|
|
44933
|
+
read_policy?: SExpr | undefined;
|
|
44934
|
+
create_policy?: SExpr | undefined;
|
|
44935
|
+
update_policy?: SExpr | undefined;
|
|
44936
|
+
delete_policy?: SExpr | undefined;
|
|
44689
44937
|
collection?: string | undefined;
|
|
44690
44938
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
44691
44939
|
timestamps?: boolean | undefined;
|
|
@@ -44848,8 +45096,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44848
45096
|
id?: TraitId | undefined;
|
|
44849
45097
|
from?: string | undefined;
|
|
44850
45098
|
name?: string | undefined;
|
|
44851
|
-
fields?: Record<string, string> | undefined;
|
|
44852
45099
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
45100
|
+
fields?: Record<string, string> | undefined;
|
|
44853
45101
|
events?: Record<string, string> | undefined;
|
|
44854
45102
|
effects?: Record<string, SExpr[]> | undefined;
|
|
44855
45103
|
refId?: TraitId | undefined;
|
|
@@ -44888,8 +45136,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44888
45136
|
id?: string | undefined;
|
|
44889
45137
|
from?: string | undefined;
|
|
44890
45138
|
name?: string | undefined;
|
|
44891
|
-
fields?: Record<string, string> | undefined;
|
|
44892
45139
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
45140
|
+
fields?: Record<string, string> | undefined;
|
|
44893
45141
|
events?: Record<string, string> | undefined;
|
|
44894
45142
|
effects?: Record<string, SExpr[]> | undefined;
|
|
44895
45143
|
refId?: string | undefined;
|
|
@@ -44928,8 +45176,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44928
45176
|
id?: TraitId | undefined;
|
|
44929
45177
|
from?: string | undefined;
|
|
44930
45178
|
name?: string | undefined;
|
|
44931
|
-
fields?: Record<string, string> | undefined;
|
|
44932
45179
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
45180
|
+
fields?: Record<string, string> | undefined;
|
|
44933
45181
|
events?: Record<string, string> | undefined;
|
|
44934
45182
|
effects?: Record<string, SExpr[]> | undefined;
|
|
44935
45183
|
refId?: TraitId | undefined;
|
|
@@ -44968,8 +45216,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44968
45216
|
id?: string | undefined;
|
|
44969
45217
|
from?: string | undefined;
|
|
44970
45218
|
name?: string | undefined;
|
|
44971
|
-
fields?: Record<string, string> | undefined;
|
|
44972
45219
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
45220
|
+
fields?: Record<string, string> | undefined;
|
|
44973
45221
|
events?: Record<string, string> | undefined;
|
|
44974
45222
|
effects?: Record<string, SExpr[]> | undefined;
|
|
44975
45223
|
refId?: string | undefined;
|
|
@@ -45472,6 +45720,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45472
45720
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
45473
45721
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
45474
45722
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
45723
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
45724
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
45725
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
45726
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
45475
45727
|
collection: z.ZodOptional<z.ZodString>;
|
|
45476
45728
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
45477
45729
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -45511,6 +45763,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45511
45763
|
description?: string | undefined;
|
|
45512
45764
|
shared?: boolean | undefined;
|
|
45513
45765
|
identity?: boolean | undefined;
|
|
45766
|
+
read_policy?: SExpr | undefined;
|
|
45767
|
+
create_policy?: SExpr | undefined;
|
|
45768
|
+
update_policy?: SExpr | undefined;
|
|
45769
|
+
delete_policy?: SExpr | undefined;
|
|
45514
45770
|
collection?: string | undefined;
|
|
45515
45771
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
45516
45772
|
timestamps?: boolean | undefined;
|
|
@@ -45532,6 +45788,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45532
45788
|
persistence?: "persistent" | "runtime" | undefined;
|
|
45533
45789
|
shared?: boolean | undefined;
|
|
45534
45790
|
identity?: boolean | undefined;
|
|
45791
|
+
read_policy?: SExpr | undefined;
|
|
45792
|
+
create_policy?: SExpr | undefined;
|
|
45793
|
+
update_policy?: SExpr | undefined;
|
|
45794
|
+
delete_policy?: SExpr | undefined;
|
|
45535
45795
|
collection?: string | undefined;
|
|
45536
45796
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
45537
45797
|
timestamps?: boolean | undefined;
|
|
@@ -45692,6 +45952,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45692
45952
|
description?: string | undefined;
|
|
45693
45953
|
shared?: boolean | undefined;
|
|
45694
45954
|
identity?: boolean | undefined;
|
|
45955
|
+
read_policy?: SExpr | undefined;
|
|
45956
|
+
create_policy?: SExpr | undefined;
|
|
45957
|
+
update_policy?: SExpr | undefined;
|
|
45958
|
+
delete_policy?: SExpr | undefined;
|
|
45695
45959
|
collection?: string | undefined;
|
|
45696
45960
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
45697
45961
|
timestamps?: boolean | undefined;
|
|
@@ -45852,6 +46116,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45852
46116
|
persistence?: "persistent" | "runtime" | undefined;
|
|
45853
46117
|
shared?: boolean | undefined;
|
|
45854
46118
|
identity?: boolean | undefined;
|
|
46119
|
+
read_policy?: SExpr | undefined;
|
|
46120
|
+
create_policy?: SExpr | undefined;
|
|
46121
|
+
update_policy?: SExpr | undefined;
|
|
46122
|
+
delete_policy?: SExpr | undefined;
|
|
45855
46123
|
collection?: string | undefined;
|
|
45856
46124
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
45857
46125
|
timestamps?: boolean | undefined;
|
|
@@ -46049,8 +46317,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46049
46317
|
id?: TraitId | undefined;
|
|
46050
46318
|
from?: string | undefined;
|
|
46051
46319
|
name?: string | undefined;
|
|
46052
|
-
fields?: Record<string, string> | undefined;
|
|
46053
46320
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
46321
|
+
fields?: Record<string, string> | undefined;
|
|
46054
46322
|
events?: Record<string, string> | undefined;
|
|
46055
46323
|
effects?: Record<string, SExpr[]> | undefined;
|
|
46056
46324
|
refId?: TraitId | undefined;
|
|
@@ -46089,8 +46357,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46089
46357
|
id?: string | undefined;
|
|
46090
46358
|
from?: string | undefined;
|
|
46091
46359
|
name?: string | undefined;
|
|
46092
|
-
fields?: Record<string, string> | undefined;
|
|
46093
46360
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
46361
|
+
fields?: Record<string, string> | undefined;
|
|
46094
46362
|
events?: Record<string, string> | undefined;
|
|
46095
46363
|
effects?: Record<string, SExpr[]> | undefined;
|
|
46096
46364
|
refId?: string | undefined;
|
|
@@ -46129,8 +46397,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46129
46397
|
id?: TraitId | undefined;
|
|
46130
46398
|
from?: string | undefined;
|
|
46131
46399
|
name?: string | undefined;
|
|
46132
|
-
fields?: Record<string, string> | undefined;
|
|
46133
46400
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
46401
|
+
fields?: Record<string, string> | undefined;
|
|
46134
46402
|
events?: Record<string, string> | undefined;
|
|
46135
46403
|
effects?: Record<string, SExpr[]> | undefined;
|
|
46136
46404
|
refId?: TraitId | undefined;
|
|
@@ -46169,8 +46437,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46169
46437
|
id?: string | undefined;
|
|
46170
46438
|
from?: string | undefined;
|
|
46171
46439
|
name?: string | undefined;
|
|
46172
|
-
fields?: Record<string, string> | undefined;
|
|
46173
46440
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
46441
|
+
fields?: Record<string, string> | undefined;
|
|
46174
46442
|
events?: Record<string, string> | undefined;
|
|
46175
46443
|
effects?: Record<string, SExpr[]> | undefined;
|
|
46176
46444
|
refId?: string | undefined;
|
|
@@ -46673,6 +46941,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46673
46941
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
46674
46942
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
46675
46943
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
46944
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
46945
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
46946
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
46947
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
46676
46948
|
collection: z.ZodOptional<z.ZodString>;
|
|
46677
46949
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
46678
46950
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -46712,6 +46984,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46712
46984
|
description?: string | undefined;
|
|
46713
46985
|
shared?: boolean | undefined;
|
|
46714
46986
|
identity?: boolean | undefined;
|
|
46987
|
+
read_policy?: SExpr | undefined;
|
|
46988
|
+
create_policy?: SExpr | undefined;
|
|
46989
|
+
update_policy?: SExpr | undefined;
|
|
46990
|
+
delete_policy?: SExpr | undefined;
|
|
46715
46991
|
collection?: string | undefined;
|
|
46716
46992
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
46717
46993
|
timestamps?: boolean | undefined;
|
|
@@ -46733,6 +47009,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46733
47009
|
persistence?: "persistent" | "runtime" | undefined;
|
|
46734
47010
|
shared?: boolean | undefined;
|
|
46735
47011
|
identity?: boolean | undefined;
|
|
47012
|
+
read_policy?: SExpr | undefined;
|
|
47013
|
+
create_policy?: SExpr | undefined;
|
|
47014
|
+
update_policy?: SExpr | undefined;
|
|
47015
|
+
delete_policy?: SExpr | undefined;
|
|
46736
47016
|
collection?: string | undefined;
|
|
46737
47017
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
46738
47018
|
timestamps?: boolean | undefined;
|
|
@@ -46893,6 +47173,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46893
47173
|
description?: string | undefined;
|
|
46894
47174
|
shared?: boolean | undefined;
|
|
46895
47175
|
identity?: boolean | undefined;
|
|
47176
|
+
read_policy?: SExpr | undefined;
|
|
47177
|
+
create_policy?: SExpr | undefined;
|
|
47178
|
+
update_policy?: SExpr | undefined;
|
|
47179
|
+
delete_policy?: SExpr | undefined;
|
|
46896
47180
|
collection?: string | undefined;
|
|
46897
47181
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
46898
47182
|
timestamps?: boolean | undefined;
|
|
@@ -47053,6 +47337,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47053
47337
|
persistence?: "persistent" | "runtime" | undefined;
|
|
47054
47338
|
shared?: boolean | undefined;
|
|
47055
47339
|
identity?: boolean | undefined;
|
|
47340
|
+
read_policy?: SExpr | undefined;
|
|
47341
|
+
create_policy?: SExpr | undefined;
|
|
47342
|
+
update_policy?: SExpr | undefined;
|
|
47343
|
+
delete_policy?: SExpr | undefined;
|
|
47056
47344
|
collection?: string | undefined;
|
|
47057
47345
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47058
47346
|
timestamps?: boolean | undefined;
|
|
@@ -47079,8 +47367,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47079
47367
|
id?: TraitId | undefined;
|
|
47080
47368
|
from?: string | undefined;
|
|
47081
47369
|
name?: string | undefined;
|
|
47082
|
-
fields?: Record<string, string> | undefined;
|
|
47083
47370
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
47371
|
+
fields?: Record<string, string> | undefined;
|
|
47084
47372
|
events?: Record<string, string> | undefined;
|
|
47085
47373
|
effects?: Record<string, SExpr[]> | undefined;
|
|
47086
47374
|
refId?: TraitId | undefined;
|
|
@@ -47259,6 +47547,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47259
47547
|
description?: string | undefined;
|
|
47260
47548
|
shared?: boolean | undefined;
|
|
47261
47549
|
identity?: boolean | undefined;
|
|
47550
|
+
read_policy?: SExpr | undefined;
|
|
47551
|
+
create_policy?: SExpr | undefined;
|
|
47552
|
+
update_policy?: SExpr | undefined;
|
|
47553
|
+
delete_policy?: SExpr | undefined;
|
|
47262
47554
|
collection?: string | undefined;
|
|
47263
47555
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47264
47556
|
timestamps?: boolean | undefined;
|
|
@@ -47288,8 +47580,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47288
47580
|
id?: string | undefined;
|
|
47289
47581
|
from?: string | undefined;
|
|
47290
47582
|
name?: string | undefined;
|
|
47291
|
-
fields?: Record<string, string> | undefined;
|
|
47292
47583
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
47584
|
+
fields?: Record<string, string> | undefined;
|
|
47293
47585
|
events?: Record<string, string> | undefined;
|
|
47294
47586
|
effects?: Record<string, SExpr[]> | undefined;
|
|
47295
47587
|
refId?: string | undefined;
|
|
@@ -47468,6 +47760,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47468
47760
|
persistence?: "persistent" | "runtime" | undefined;
|
|
47469
47761
|
shared?: boolean | undefined;
|
|
47470
47762
|
identity?: boolean | undefined;
|
|
47763
|
+
read_policy?: SExpr | undefined;
|
|
47764
|
+
create_policy?: SExpr | undefined;
|
|
47765
|
+
update_policy?: SExpr | undefined;
|
|
47766
|
+
delete_policy?: SExpr | undefined;
|
|
47471
47767
|
collection?: string | undefined;
|
|
47472
47768
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47473
47769
|
timestamps?: boolean | undefined;
|
|
@@ -47708,6 +48004,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47708
48004
|
description?: string | undefined;
|
|
47709
48005
|
shared?: boolean | undefined;
|
|
47710
48006
|
identity?: boolean | undefined;
|
|
48007
|
+
read_policy?: SExpr | undefined;
|
|
48008
|
+
create_policy?: SExpr | undefined;
|
|
48009
|
+
update_policy?: SExpr | undefined;
|
|
48010
|
+
delete_policy?: SExpr | undefined;
|
|
47711
48011
|
collection?: string | undefined;
|
|
47712
48012
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47713
48013
|
timestamps?: boolean | undefined;
|
|
@@ -47754,8 +48054,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47754
48054
|
id?: TraitId | undefined;
|
|
47755
48055
|
from?: string | undefined;
|
|
47756
48056
|
name?: string | undefined;
|
|
47757
|
-
fields?: Record<string, string> | undefined;
|
|
47758
48057
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
48058
|
+
fields?: Record<string, string> | undefined;
|
|
47759
48059
|
events?: Record<string, string> | undefined;
|
|
47760
48060
|
effects?: Record<string, SExpr[]> | undefined;
|
|
47761
48061
|
refId?: TraitId | undefined;
|
|
@@ -47934,6 +48234,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47934
48234
|
description?: string | undefined;
|
|
47935
48235
|
shared?: boolean | undefined;
|
|
47936
48236
|
identity?: boolean | undefined;
|
|
48237
|
+
read_policy?: SExpr | undefined;
|
|
48238
|
+
create_policy?: SExpr | undefined;
|
|
48239
|
+
update_policy?: SExpr | undefined;
|
|
48240
|
+
delete_policy?: SExpr | undefined;
|
|
47937
48241
|
collection?: string | undefined;
|
|
47938
48242
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47939
48243
|
timestamps?: boolean | undefined;
|
|
@@ -47960,8 +48264,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47960
48264
|
id?: TraitId | undefined;
|
|
47961
48265
|
from?: string | undefined;
|
|
47962
48266
|
name?: string | undefined;
|
|
47963
|
-
fields?: Record<string, string> | undefined;
|
|
47964
48267
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
48268
|
+
fields?: Record<string, string> | undefined;
|
|
47965
48269
|
events?: Record<string, string> | undefined;
|
|
47966
48270
|
effects?: Record<string, SExpr[]> | undefined;
|
|
47967
48271
|
refId?: TraitId | undefined;
|
|
@@ -48140,6 +48444,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48140
48444
|
description?: string | undefined;
|
|
48141
48445
|
shared?: boolean | undefined;
|
|
48142
48446
|
identity?: boolean | undefined;
|
|
48447
|
+
read_policy?: SExpr | undefined;
|
|
48448
|
+
create_policy?: SExpr | undefined;
|
|
48449
|
+
update_policy?: SExpr | undefined;
|
|
48450
|
+
delete_policy?: SExpr | undefined;
|
|
48143
48451
|
collection?: string | undefined;
|
|
48144
48452
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
48145
48453
|
timestamps?: boolean | undefined;
|
|
@@ -48719,6 +49027,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48719
49027
|
persistence?: "persistent" | "runtime" | undefined;
|
|
48720
49028
|
shared?: boolean | undefined;
|
|
48721
49029
|
identity?: boolean | undefined;
|
|
49030
|
+
read_policy?: SExpr | undefined;
|
|
49031
|
+
create_policy?: SExpr | undefined;
|
|
49032
|
+
update_policy?: SExpr | undefined;
|
|
49033
|
+
delete_policy?: SExpr | undefined;
|
|
48722
49034
|
collection?: string | undefined;
|
|
48723
49035
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
48724
49036
|
timestamps?: boolean | undefined;
|
|
@@ -48765,8 +49077,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48765
49077
|
id?: string | undefined;
|
|
48766
49078
|
from?: string | undefined;
|
|
48767
49079
|
name?: string | undefined;
|
|
48768
|
-
fields?: Record<string, string> | undefined;
|
|
48769
49080
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
49081
|
+
fields?: Record<string, string> | undefined;
|
|
48770
49082
|
events?: Record<string, string> | undefined;
|
|
48771
49083
|
effects?: Record<string, SExpr[]> | undefined;
|
|
48772
49084
|
refId?: string | undefined;
|
|
@@ -48945,6 +49257,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48945
49257
|
persistence?: "persistent" | "runtime" | undefined;
|
|
48946
49258
|
shared?: boolean | undefined;
|
|
48947
49259
|
identity?: boolean | undefined;
|
|
49260
|
+
read_policy?: SExpr | undefined;
|
|
49261
|
+
create_policy?: SExpr | undefined;
|
|
49262
|
+
update_policy?: SExpr | undefined;
|
|
49263
|
+
delete_policy?: SExpr | undefined;
|
|
48948
49264
|
collection?: string | undefined;
|
|
48949
49265
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
48950
49266
|
timestamps?: boolean | undefined;
|
|
@@ -48971,8 +49287,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48971
49287
|
id?: string | undefined;
|
|
48972
49288
|
from?: string | undefined;
|
|
48973
49289
|
name?: string | undefined;
|
|
48974
|
-
fields?: Record<string, string> | undefined;
|
|
48975
49290
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
49291
|
+
fields?: Record<string, string> | undefined;
|
|
48976
49292
|
events?: Record<string, string> | undefined;
|
|
48977
49293
|
effects?: Record<string, SExpr[]> | undefined;
|
|
48978
49294
|
refId?: string | undefined;
|
|
@@ -49151,6 +49467,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49151
49467
|
persistence?: "persistent" | "runtime" | undefined;
|
|
49152
49468
|
shared?: boolean | undefined;
|
|
49153
49469
|
identity?: boolean | undefined;
|
|
49470
|
+
read_policy?: SExpr | undefined;
|
|
49471
|
+
create_policy?: SExpr | undefined;
|
|
49472
|
+
update_policy?: SExpr | undefined;
|
|
49473
|
+
delete_policy?: SExpr | undefined;
|
|
49154
49474
|
collection?: string | undefined;
|
|
49155
49475
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
49156
49476
|
timestamps?: boolean | undefined;
|
|
@@ -54122,6 +54442,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54122
54442
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
54123
54443
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
54124
54444
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
54445
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
54446
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
54447
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
54448
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
54125
54449
|
collection: z.ZodOptional<z.ZodString>;
|
|
54126
54450
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
54127
54451
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -54161,6 +54485,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54161
54485
|
description?: string | undefined;
|
|
54162
54486
|
shared?: boolean | undefined;
|
|
54163
54487
|
identity?: boolean | undefined;
|
|
54488
|
+
read_policy?: SExpr | undefined;
|
|
54489
|
+
create_policy?: SExpr | undefined;
|
|
54490
|
+
update_policy?: SExpr | undefined;
|
|
54491
|
+
delete_policy?: SExpr | undefined;
|
|
54164
54492
|
collection?: string | undefined;
|
|
54165
54493
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
54166
54494
|
timestamps?: boolean | undefined;
|
|
@@ -54182,6 +54510,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54182
54510
|
persistence?: "persistent" | "runtime" | undefined;
|
|
54183
54511
|
shared?: boolean | undefined;
|
|
54184
54512
|
identity?: boolean | undefined;
|
|
54513
|
+
read_policy?: SExpr | undefined;
|
|
54514
|
+
create_policy?: SExpr | undefined;
|
|
54515
|
+
update_policy?: SExpr | undefined;
|
|
54516
|
+
delete_policy?: SExpr | undefined;
|
|
54185
54517
|
collection?: string | undefined;
|
|
54186
54518
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
54187
54519
|
timestamps?: boolean | undefined;
|
|
@@ -54344,8 +54676,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54344
54676
|
id?: TraitId | undefined;
|
|
54345
54677
|
from?: string | undefined;
|
|
54346
54678
|
name?: string | undefined;
|
|
54347
|
-
fields?: Record<string, string> | undefined;
|
|
54348
54679
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
54680
|
+
fields?: Record<string, string> | undefined;
|
|
54349
54681
|
events?: Record<string, string> | undefined;
|
|
54350
54682
|
effects?: Record<string, SExpr[]> | undefined;
|
|
54351
54683
|
refId?: TraitId | undefined;
|
|
@@ -54384,8 +54716,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54384
54716
|
id?: string | undefined;
|
|
54385
54717
|
from?: string | undefined;
|
|
54386
54718
|
name?: string | undefined;
|
|
54387
|
-
fields?: Record<string, string> | undefined;
|
|
54388
54719
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
54720
|
+
fields?: Record<string, string> | undefined;
|
|
54389
54721
|
events?: Record<string, string> | undefined;
|
|
54390
54722
|
effects?: Record<string, SExpr[]> | undefined;
|
|
54391
54723
|
refId?: string | undefined;
|
|
@@ -54424,8 +54756,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54424
54756
|
id?: TraitId | undefined;
|
|
54425
54757
|
from?: string | undefined;
|
|
54426
54758
|
name?: string | undefined;
|
|
54427
|
-
fields?: Record<string, string> | undefined;
|
|
54428
54759
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
54760
|
+
fields?: Record<string, string> | undefined;
|
|
54429
54761
|
events?: Record<string, string> | undefined;
|
|
54430
54762
|
effects?: Record<string, SExpr[]> | undefined;
|
|
54431
54763
|
refId?: TraitId | undefined;
|
|
@@ -54464,8 +54796,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54464
54796
|
id?: string | undefined;
|
|
54465
54797
|
from?: string | undefined;
|
|
54466
54798
|
name?: string | undefined;
|
|
54467
|
-
fields?: Record<string, string> | undefined;
|
|
54468
54799
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
54800
|
+
fields?: Record<string, string> | undefined;
|
|
54469
54801
|
events?: Record<string, string> | undefined;
|
|
54470
54802
|
effects?: Record<string, SExpr[]> | undefined;
|
|
54471
54803
|
refId?: string | undefined;
|
|
@@ -54968,6 +55300,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54968
55300
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
54969
55301
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
54970
55302
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
55303
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
55304
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
55305
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
55306
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
54971
55307
|
collection: z.ZodOptional<z.ZodString>;
|
|
54972
55308
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
54973
55309
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -55007,6 +55343,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55007
55343
|
description?: string | undefined;
|
|
55008
55344
|
shared?: boolean | undefined;
|
|
55009
55345
|
identity?: boolean | undefined;
|
|
55346
|
+
read_policy?: SExpr | undefined;
|
|
55347
|
+
create_policy?: SExpr | undefined;
|
|
55348
|
+
update_policy?: SExpr | undefined;
|
|
55349
|
+
delete_policy?: SExpr | undefined;
|
|
55010
55350
|
collection?: string | undefined;
|
|
55011
55351
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55012
55352
|
timestamps?: boolean | undefined;
|
|
@@ -55028,6 +55368,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55028
55368
|
persistence?: "persistent" | "runtime" | undefined;
|
|
55029
55369
|
shared?: boolean | undefined;
|
|
55030
55370
|
identity?: boolean | undefined;
|
|
55371
|
+
read_policy?: SExpr | undefined;
|
|
55372
|
+
create_policy?: SExpr | undefined;
|
|
55373
|
+
update_policy?: SExpr | undefined;
|
|
55374
|
+
delete_policy?: SExpr | undefined;
|
|
55031
55375
|
collection?: string | undefined;
|
|
55032
55376
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55033
55377
|
timestamps?: boolean | undefined;
|
|
@@ -55188,6 +55532,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55188
55532
|
description?: string | undefined;
|
|
55189
55533
|
shared?: boolean | undefined;
|
|
55190
55534
|
identity?: boolean | undefined;
|
|
55535
|
+
read_policy?: SExpr | undefined;
|
|
55536
|
+
create_policy?: SExpr | undefined;
|
|
55537
|
+
update_policy?: SExpr | undefined;
|
|
55538
|
+
delete_policy?: SExpr | undefined;
|
|
55191
55539
|
collection?: string | undefined;
|
|
55192
55540
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55193
55541
|
timestamps?: boolean | undefined;
|
|
@@ -55348,6 +55696,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55348
55696
|
persistence?: "persistent" | "runtime" | undefined;
|
|
55349
55697
|
shared?: boolean | undefined;
|
|
55350
55698
|
identity?: boolean | undefined;
|
|
55699
|
+
read_policy?: SExpr | undefined;
|
|
55700
|
+
create_policy?: SExpr | undefined;
|
|
55701
|
+
update_policy?: SExpr | undefined;
|
|
55702
|
+
delete_policy?: SExpr | undefined;
|
|
55351
55703
|
collection?: string | undefined;
|
|
55352
55704
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55353
55705
|
timestamps?: boolean | undefined;
|
|
@@ -55545,8 +55897,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55545
55897
|
id?: TraitId | undefined;
|
|
55546
55898
|
from?: string | undefined;
|
|
55547
55899
|
name?: string | undefined;
|
|
55548
|
-
fields?: Record<string, string> | undefined;
|
|
55549
55900
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
55901
|
+
fields?: Record<string, string> | undefined;
|
|
55550
55902
|
events?: Record<string, string> | undefined;
|
|
55551
55903
|
effects?: Record<string, SExpr[]> | undefined;
|
|
55552
55904
|
refId?: TraitId | undefined;
|
|
@@ -55585,8 +55937,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55585
55937
|
id?: string | undefined;
|
|
55586
55938
|
from?: string | undefined;
|
|
55587
55939
|
name?: string | undefined;
|
|
55588
|
-
fields?: Record<string, string> | undefined;
|
|
55589
55940
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
55941
|
+
fields?: Record<string, string> | undefined;
|
|
55590
55942
|
events?: Record<string, string> | undefined;
|
|
55591
55943
|
effects?: Record<string, SExpr[]> | undefined;
|
|
55592
55944
|
refId?: string | undefined;
|
|
@@ -55625,8 +55977,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55625
55977
|
id?: TraitId | undefined;
|
|
55626
55978
|
from?: string | undefined;
|
|
55627
55979
|
name?: string | undefined;
|
|
55628
|
-
fields?: Record<string, string> | undefined;
|
|
55629
55980
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
55981
|
+
fields?: Record<string, string> | undefined;
|
|
55630
55982
|
events?: Record<string, string> | undefined;
|
|
55631
55983
|
effects?: Record<string, SExpr[]> | undefined;
|
|
55632
55984
|
refId?: TraitId | undefined;
|
|
@@ -55665,8 +56017,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55665
56017
|
id?: string | undefined;
|
|
55666
56018
|
from?: string | undefined;
|
|
55667
56019
|
name?: string | undefined;
|
|
55668
|
-
fields?: Record<string, string> | undefined;
|
|
55669
56020
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
56021
|
+
fields?: Record<string, string> | undefined;
|
|
55670
56022
|
events?: Record<string, string> | undefined;
|
|
55671
56023
|
effects?: Record<string, SExpr[]> | undefined;
|
|
55672
56024
|
refId?: string | undefined;
|
|
@@ -56169,6 +56521,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56169
56521
|
persistence: z.ZodDefault<z.ZodEnum<["persistent", "runtime"]>>;
|
|
56170
56522
|
shared: z.ZodOptional<z.ZodBoolean>;
|
|
56171
56523
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
56524
|
+
read_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
56525
|
+
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
56526
|
+
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
56527
|
+
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
56172
56528
|
collection: z.ZodOptional<z.ZodString>;
|
|
56173
56529
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
56174
56530
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -56208,6 +56564,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56208
56564
|
description?: string | undefined;
|
|
56209
56565
|
shared?: boolean | undefined;
|
|
56210
56566
|
identity?: boolean | undefined;
|
|
56567
|
+
read_policy?: SExpr | undefined;
|
|
56568
|
+
create_policy?: SExpr | undefined;
|
|
56569
|
+
update_policy?: SExpr | undefined;
|
|
56570
|
+
delete_policy?: SExpr | undefined;
|
|
56211
56571
|
collection?: string | undefined;
|
|
56212
56572
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56213
56573
|
timestamps?: boolean | undefined;
|
|
@@ -56229,6 +56589,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56229
56589
|
persistence?: "persistent" | "runtime" | undefined;
|
|
56230
56590
|
shared?: boolean | undefined;
|
|
56231
56591
|
identity?: boolean | undefined;
|
|
56592
|
+
read_policy?: SExpr | undefined;
|
|
56593
|
+
create_policy?: SExpr | undefined;
|
|
56594
|
+
update_policy?: SExpr | undefined;
|
|
56595
|
+
delete_policy?: SExpr | undefined;
|
|
56232
56596
|
collection?: string | undefined;
|
|
56233
56597
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56234
56598
|
timestamps?: boolean | undefined;
|
|
@@ -56389,6 +56753,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56389
56753
|
description?: string | undefined;
|
|
56390
56754
|
shared?: boolean | undefined;
|
|
56391
56755
|
identity?: boolean | undefined;
|
|
56756
|
+
read_policy?: SExpr | undefined;
|
|
56757
|
+
create_policy?: SExpr | undefined;
|
|
56758
|
+
update_policy?: SExpr | undefined;
|
|
56759
|
+
delete_policy?: SExpr | undefined;
|
|
56392
56760
|
collection?: string | undefined;
|
|
56393
56761
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56394
56762
|
timestamps?: boolean | undefined;
|
|
@@ -56549,6 +56917,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56549
56917
|
persistence?: "persistent" | "runtime" | undefined;
|
|
56550
56918
|
shared?: boolean | undefined;
|
|
56551
56919
|
identity?: boolean | undefined;
|
|
56920
|
+
read_policy?: SExpr | undefined;
|
|
56921
|
+
create_policy?: SExpr | undefined;
|
|
56922
|
+
update_policy?: SExpr | undefined;
|
|
56923
|
+
delete_policy?: SExpr | undefined;
|
|
56552
56924
|
collection?: string | undefined;
|
|
56553
56925
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56554
56926
|
timestamps?: boolean | undefined;
|
|
@@ -56575,8 +56947,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56575
56947
|
id?: TraitId | undefined;
|
|
56576
56948
|
from?: string | undefined;
|
|
56577
56949
|
name?: string | undefined;
|
|
56578
|
-
fields?: Record<string, string> | undefined;
|
|
56579
56950
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
56951
|
+
fields?: Record<string, string> | undefined;
|
|
56580
56952
|
events?: Record<string, string> | undefined;
|
|
56581
56953
|
effects?: Record<string, SExpr[]> | undefined;
|
|
56582
56954
|
refId?: TraitId | undefined;
|
|
@@ -56755,6 +57127,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56755
57127
|
description?: string | undefined;
|
|
56756
57128
|
shared?: boolean | undefined;
|
|
56757
57129
|
identity?: boolean | undefined;
|
|
57130
|
+
read_policy?: SExpr | undefined;
|
|
57131
|
+
create_policy?: SExpr | undefined;
|
|
57132
|
+
update_policy?: SExpr | undefined;
|
|
57133
|
+
delete_policy?: SExpr | undefined;
|
|
56758
57134
|
collection?: string | undefined;
|
|
56759
57135
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56760
57136
|
timestamps?: boolean | undefined;
|
|
@@ -56784,8 +57160,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56784
57160
|
id?: string | undefined;
|
|
56785
57161
|
from?: string | undefined;
|
|
56786
57162
|
name?: string | undefined;
|
|
56787
|
-
fields?: Record<string, string> | undefined;
|
|
56788
57163
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
57164
|
+
fields?: Record<string, string> | undefined;
|
|
56789
57165
|
events?: Record<string, string> | undefined;
|
|
56790
57166
|
effects?: Record<string, SExpr[]> | undefined;
|
|
56791
57167
|
refId?: string | undefined;
|
|
@@ -56964,6 +57340,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56964
57340
|
persistence?: "persistent" | "runtime" | undefined;
|
|
56965
57341
|
shared?: boolean | undefined;
|
|
56966
57342
|
identity?: boolean | undefined;
|
|
57343
|
+
read_policy?: SExpr | undefined;
|
|
57344
|
+
create_policy?: SExpr | undefined;
|
|
57345
|
+
update_policy?: SExpr | undefined;
|
|
57346
|
+
delete_policy?: SExpr | undefined;
|
|
56967
57347
|
collection?: string | undefined;
|
|
56968
57348
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56969
57349
|
timestamps?: boolean | undefined;
|
|
@@ -57204,6 +57584,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57204
57584
|
description?: string | undefined;
|
|
57205
57585
|
shared?: boolean | undefined;
|
|
57206
57586
|
identity?: boolean | undefined;
|
|
57587
|
+
read_policy?: SExpr | undefined;
|
|
57588
|
+
create_policy?: SExpr | undefined;
|
|
57589
|
+
update_policy?: SExpr | undefined;
|
|
57590
|
+
delete_policy?: SExpr | undefined;
|
|
57207
57591
|
collection?: string | undefined;
|
|
57208
57592
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
57209
57593
|
timestamps?: boolean | undefined;
|
|
@@ -57250,8 +57634,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57250
57634
|
id?: TraitId | undefined;
|
|
57251
57635
|
from?: string | undefined;
|
|
57252
57636
|
name?: string | undefined;
|
|
57253
|
-
fields?: Record<string, string> | undefined;
|
|
57254
57637
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
57638
|
+
fields?: Record<string, string> | undefined;
|
|
57255
57639
|
events?: Record<string, string> | undefined;
|
|
57256
57640
|
effects?: Record<string, SExpr[]> | undefined;
|
|
57257
57641
|
refId?: TraitId | undefined;
|
|
@@ -57430,6 +57814,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57430
57814
|
description?: string | undefined;
|
|
57431
57815
|
shared?: boolean | undefined;
|
|
57432
57816
|
identity?: boolean | undefined;
|
|
57817
|
+
read_policy?: SExpr | undefined;
|
|
57818
|
+
create_policy?: SExpr | undefined;
|
|
57819
|
+
update_policy?: SExpr | undefined;
|
|
57820
|
+
delete_policy?: SExpr | undefined;
|
|
57433
57821
|
collection?: string | undefined;
|
|
57434
57822
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
57435
57823
|
timestamps?: boolean | undefined;
|
|
@@ -57456,8 +57844,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57456
57844
|
id?: TraitId | undefined;
|
|
57457
57845
|
from?: string | undefined;
|
|
57458
57846
|
name?: string | undefined;
|
|
57459
|
-
fields?: Record<string, string> | undefined;
|
|
57460
57847
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
57848
|
+
fields?: Record<string, string> | undefined;
|
|
57461
57849
|
events?: Record<string, string> | undefined;
|
|
57462
57850
|
effects?: Record<string, SExpr[]> | undefined;
|
|
57463
57851
|
refId?: TraitId | undefined;
|
|
@@ -57636,6 +58024,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57636
58024
|
description?: string | undefined;
|
|
57637
58025
|
shared?: boolean | undefined;
|
|
57638
58026
|
identity?: boolean | undefined;
|
|
58027
|
+
read_policy?: SExpr | undefined;
|
|
58028
|
+
create_policy?: SExpr | undefined;
|
|
58029
|
+
update_policy?: SExpr | undefined;
|
|
58030
|
+
delete_policy?: SExpr | undefined;
|
|
57639
58031
|
collection?: string | undefined;
|
|
57640
58032
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
57641
58033
|
timestamps?: boolean | undefined;
|
|
@@ -58215,6 +58607,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58215
58607
|
persistence?: "persistent" | "runtime" | undefined;
|
|
58216
58608
|
shared?: boolean | undefined;
|
|
58217
58609
|
identity?: boolean | undefined;
|
|
58610
|
+
read_policy?: SExpr | undefined;
|
|
58611
|
+
create_policy?: SExpr | undefined;
|
|
58612
|
+
update_policy?: SExpr | undefined;
|
|
58613
|
+
delete_policy?: SExpr | undefined;
|
|
58218
58614
|
collection?: string | undefined;
|
|
58219
58615
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
58220
58616
|
timestamps?: boolean | undefined;
|
|
@@ -58261,8 +58657,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58261
58657
|
id?: string | undefined;
|
|
58262
58658
|
from?: string | undefined;
|
|
58263
58659
|
name?: string | undefined;
|
|
58264
|
-
fields?: Record<string, string> | undefined;
|
|
58265
58660
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
58661
|
+
fields?: Record<string, string> | undefined;
|
|
58266
58662
|
events?: Record<string, string> | undefined;
|
|
58267
58663
|
effects?: Record<string, SExpr[]> | undefined;
|
|
58268
58664
|
refId?: string | undefined;
|
|
@@ -58441,6 +58837,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58441
58837
|
persistence?: "persistent" | "runtime" | undefined;
|
|
58442
58838
|
shared?: boolean | undefined;
|
|
58443
58839
|
identity?: boolean | undefined;
|
|
58840
|
+
read_policy?: SExpr | undefined;
|
|
58841
|
+
create_policy?: SExpr | undefined;
|
|
58842
|
+
update_policy?: SExpr | undefined;
|
|
58843
|
+
delete_policy?: SExpr | undefined;
|
|
58444
58844
|
collection?: string | undefined;
|
|
58445
58845
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
58446
58846
|
timestamps?: boolean | undefined;
|
|
@@ -58467,8 +58867,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58467
58867
|
id?: string | undefined;
|
|
58468
58868
|
from?: string | undefined;
|
|
58469
58869
|
name?: string | undefined;
|
|
58470
|
-
fields?: Record<string, string> | undefined;
|
|
58471
58870
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
58871
|
+
fields?: Record<string, string> | undefined;
|
|
58472
58872
|
events?: Record<string, string> | undefined;
|
|
58473
58873
|
effects?: Record<string, SExpr[]> | undefined;
|
|
58474
58874
|
refId?: string | undefined;
|
|
@@ -58647,6 +59047,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58647
59047
|
persistence?: "persistent" | "runtime" | undefined;
|
|
58648
59048
|
shared?: boolean | undefined;
|
|
58649
59049
|
identity?: boolean | undefined;
|
|
59050
|
+
read_policy?: SExpr | undefined;
|
|
59051
|
+
create_policy?: SExpr | undefined;
|
|
59052
|
+
update_policy?: SExpr | undefined;
|
|
59053
|
+
delete_policy?: SExpr | undefined;
|
|
58650
59054
|
collection?: string | undefined;
|
|
58651
59055
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
58652
59056
|
timestamps?: boolean | undefined;
|
|
@@ -59527,6 +59931,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59527
59931
|
description?: string | undefined;
|
|
59528
59932
|
shared?: boolean | undefined;
|
|
59529
59933
|
identity?: boolean | undefined;
|
|
59934
|
+
read_policy?: SExpr | undefined;
|
|
59935
|
+
create_policy?: SExpr | undefined;
|
|
59936
|
+
update_policy?: SExpr | undefined;
|
|
59937
|
+
delete_policy?: SExpr | undefined;
|
|
59530
59938
|
collection?: string | undefined;
|
|
59531
59939
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
59532
59940
|
timestamps?: boolean | undefined;
|
|
@@ -59573,8 +59981,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59573
59981
|
id?: TraitId | undefined;
|
|
59574
59982
|
from?: string | undefined;
|
|
59575
59983
|
name?: string | undefined;
|
|
59576
|
-
fields?: Record<string, string> | undefined;
|
|
59577
59984
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
59985
|
+
fields?: Record<string, string> | undefined;
|
|
59578
59986
|
events?: Record<string, string> | undefined;
|
|
59579
59987
|
effects?: Record<string, SExpr[]> | undefined;
|
|
59580
59988
|
refId?: TraitId | undefined;
|
|
@@ -59753,6 +60161,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59753
60161
|
description?: string | undefined;
|
|
59754
60162
|
shared?: boolean | undefined;
|
|
59755
60163
|
identity?: boolean | undefined;
|
|
60164
|
+
read_policy?: SExpr | undefined;
|
|
60165
|
+
create_policy?: SExpr | undefined;
|
|
60166
|
+
update_policy?: SExpr | undefined;
|
|
60167
|
+
delete_policy?: SExpr | undefined;
|
|
59756
60168
|
collection?: string | undefined;
|
|
59757
60169
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
59758
60170
|
timestamps?: boolean | undefined;
|
|
@@ -59779,8 +60191,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59779
60191
|
id?: TraitId | undefined;
|
|
59780
60192
|
from?: string | undefined;
|
|
59781
60193
|
name?: string | undefined;
|
|
59782
|
-
fields?: Record<string, string> | undefined;
|
|
59783
60194
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
60195
|
+
fields?: Record<string, string> | undefined;
|
|
59784
60196
|
events?: Record<string, string> | undefined;
|
|
59785
60197
|
effects?: Record<string, SExpr[]> | undefined;
|
|
59786
60198
|
refId?: TraitId | undefined;
|
|
@@ -59959,6 +60371,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59959
60371
|
description?: string | undefined;
|
|
59960
60372
|
shared?: boolean | undefined;
|
|
59961
60373
|
identity?: boolean | undefined;
|
|
60374
|
+
read_policy?: SExpr | undefined;
|
|
60375
|
+
create_policy?: SExpr | undefined;
|
|
60376
|
+
update_policy?: SExpr | undefined;
|
|
60377
|
+
delete_policy?: SExpr | undefined;
|
|
59962
60378
|
collection?: string | undefined;
|
|
59963
60379
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
59964
60380
|
timestamps?: boolean | undefined;
|
|
@@ -60657,6 +61073,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60657
61073
|
persistence?: "persistent" | "runtime" | undefined;
|
|
60658
61074
|
shared?: boolean | undefined;
|
|
60659
61075
|
identity?: boolean | undefined;
|
|
61076
|
+
read_policy?: SExpr | undefined;
|
|
61077
|
+
create_policy?: SExpr | undefined;
|
|
61078
|
+
update_policy?: SExpr | undefined;
|
|
61079
|
+
delete_policy?: SExpr | undefined;
|
|
60660
61080
|
collection?: string | undefined;
|
|
60661
61081
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
60662
61082
|
timestamps?: boolean | undefined;
|
|
@@ -60703,8 +61123,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60703
61123
|
id?: string | undefined;
|
|
60704
61124
|
from?: string | undefined;
|
|
60705
61125
|
name?: string | undefined;
|
|
60706
|
-
fields?: Record<string, string> | undefined;
|
|
60707
61126
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
61127
|
+
fields?: Record<string, string> | undefined;
|
|
60708
61128
|
events?: Record<string, string> | undefined;
|
|
60709
61129
|
effects?: Record<string, SExpr[]> | undefined;
|
|
60710
61130
|
refId?: string | undefined;
|
|
@@ -60883,6 +61303,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60883
61303
|
persistence?: "persistent" | "runtime" | undefined;
|
|
60884
61304
|
shared?: boolean | undefined;
|
|
60885
61305
|
identity?: boolean | undefined;
|
|
61306
|
+
read_policy?: SExpr | undefined;
|
|
61307
|
+
create_policy?: SExpr | undefined;
|
|
61308
|
+
update_policy?: SExpr | undefined;
|
|
61309
|
+
delete_policy?: SExpr | undefined;
|
|
60886
61310
|
collection?: string | undefined;
|
|
60887
61311
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
60888
61312
|
timestamps?: boolean | undefined;
|
|
@@ -60909,8 +61333,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60909
61333
|
id?: string | undefined;
|
|
60910
61334
|
from?: string | undefined;
|
|
60911
61335
|
name?: string | undefined;
|
|
60912
|
-
fields?: Record<string, string> | undefined;
|
|
60913
61336
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
61337
|
+
fields?: Record<string, string> | undefined;
|
|
60914
61338
|
events?: Record<string, string> | undefined;
|
|
60915
61339
|
effects?: Record<string, SExpr[]> | undefined;
|
|
60916
61340
|
refId?: string | undefined;
|
|
@@ -61089,6 +61513,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61089
61513
|
persistence?: "persistent" | "runtime" | undefined;
|
|
61090
61514
|
shared?: boolean | undefined;
|
|
61091
61515
|
identity?: boolean | undefined;
|
|
61516
|
+
read_policy?: SExpr | undefined;
|
|
61517
|
+
create_policy?: SExpr | undefined;
|
|
61518
|
+
update_policy?: SExpr | undefined;
|
|
61519
|
+
delete_policy?: SExpr | undefined;
|
|
61092
61520
|
collection?: string | undefined;
|
|
61093
61521
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
61094
61522
|
timestamps?: boolean | undefined;
|
|
@@ -61852,6 +62280,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
61852
62280
|
persistence?: "persistent" | "runtime" | undefined;
|
|
61853
62281
|
shared?: boolean | undefined;
|
|
61854
62282
|
identity?: boolean | undefined;
|
|
62283
|
+
read_policy?: SExpr | undefined;
|
|
62284
|
+
create_policy?: SExpr | undefined;
|
|
62285
|
+
update_policy?: SExpr | undefined;
|
|
62286
|
+
delete_policy?: SExpr | undefined;
|
|
61855
62287
|
collection?: string | undefined;
|
|
61856
62288
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
61857
62289
|
timestamps?: boolean | undefined;
|
|
@@ -61898,8 +62330,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
61898
62330
|
id?: string | undefined;
|
|
61899
62331
|
from?: string | undefined;
|
|
61900
62332
|
name?: string | undefined;
|
|
61901
|
-
fields?: Record<string, string> | undefined;
|
|
61902
62333
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
62334
|
+
fields?: Record<string, string> | undefined;
|
|
61903
62335
|
events?: Record<string, string> | undefined;
|
|
61904
62336
|
effects?: Record<string, SExpr[]> | undefined;
|
|
61905
62337
|
refId?: string | undefined;
|
|
@@ -62078,6 +62510,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
62078
62510
|
persistence?: "persistent" | "runtime" | undefined;
|
|
62079
62511
|
shared?: boolean | undefined;
|
|
62080
62512
|
identity?: boolean | undefined;
|
|
62513
|
+
read_policy?: SExpr | undefined;
|
|
62514
|
+
create_policy?: SExpr | undefined;
|
|
62515
|
+
update_policy?: SExpr | undefined;
|
|
62516
|
+
delete_policy?: SExpr | undefined;
|
|
62081
62517
|
collection?: string | undefined;
|
|
62082
62518
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
62083
62519
|
timestamps?: boolean | undefined;
|
|
@@ -62104,8 +62540,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
62104
62540
|
id?: string | undefined;
|
|
62105
62541
|
from?: string | undefined;
|
|
62106
62542
|
name?: string | undefined;
|
|
62107
|
-
fields?: Record<string, string> | undefined;
|
|
62108
62543
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
62544
|
+
fields?: Record<string, string> | undefined;
|
|
62109
62545
|
events?: Record<string, string> | undefined;
|
|
62110
62546
|
effects?: Record<string, SExpr[]> | undefined;
|
|
62111
62547
|
refId?: string | undefined;
|
|
@@ -62284,6 +62720,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
62284
62720
|
persistence?: "persistent" | "runtime" | undefined;
|
|
62285
62721
|
shared?: boolean | undefined;
|
|
62286
62722
|
identity?: boolean | undefined;
|
|
62723
|
+
read_policy?: SExpr | undefined;
|
|
62724
|
+
create_policy?: SExpr | undefined;
|
|
62725
|
+
update_policy?: SExpr | undefined;
|
|
62726
|
+
delete_policy?: SExpr | undefined;
|
|
62287
62727
|
collection?: string | undefined;
|
|
62288
62728
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
62289
62729
|
timestamps?: boolean | undefined;
|
|
@@ -62982,6 +63422,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
62982
63422
|
description?: string | undefined;
|
|
62983
63423
|
shared?: boolean | undefined;
|
|
62984
63424
|
identity?: boolean | undefined;
|
|
63425
|
+
read_policy?: SExpr | undefined;
|
|
63426
|
+
create_policy?: SExpr | undefined;
|
|
63427
|
+
update_policy?: SExpr | undefined;
|
|
63428
|
+
delete_policy?: SExpr | undefined;
|
|
62985
63429
|
collection?: string | undefined;
|
|
62986
63430
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
62987
63431
|
timestamps?: boolean | undefined;
|
|
@@ -63028,8 +63472,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63028
63472
|
id?: TraitId | undefined;
|
|
63029
63473
|
from?: string | undefined;
|
|
63030
63474
|
name?: string | undefined;
|
|
63031
|
-
fields?: Record<string, string> | undefined;
|
|
63032
63475
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
63476
|
+
fields?: Record<string, string> | undefined;
|
|
63033
63477
|
events?: Record<string, string> | undefined;
|
|
63034
63478
|
effects?: Record<string, SExpr[]> | undefined;
|
|
63035
63479
|
refId?: TraitId | undefined;
|
|
@@ -63208,6 +63652,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63208
63652
|
description?: string | undefined;
|
|
63209
63653
|
shared?: boolean | undefined;
|
|
63210
63654
|
identity?: boolean | undefined;
|
|
63655
|
+
read_policy?: SExpr | undefined;
|
|
63656
|
+
create_policy?: SExpr | undefined;
|
|
63657
|
+
update_policy?: SExpr | undefined;
|
|
63658
|
+
delete_policy?: SExpr | undefined;
|
|
63211
63659
|
collection?: string | undefined;
|
|
63212
63660
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
63213
63661
|
timestamps?: boolean | undefined;
|
|
@@ -63234,8 +63682,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63234
63682
|
id?: TraitId | undefined;
|
|
63235
63683
|
from?: string | undefined;
|
|
63236
63684
|
name?: string | undefined;
|
|
63237
|
-
fields?: Record<string, string> | undefined;
|
|
63238
63685
|
config?: Record<string, TraitConfigValue | ConfigFieldDeclaration> | undefined;
|
|
63686
|
+
fields?: Record<string, string> | undefined;
|
|
63239
63687
|
events?: Record<string, string> | undefined;
|
|
63240
63688
|
effects?: Record<string, SExpr[]> | undefined;
|
|
63241
63689
|
refId?: TraitId | undefined;
|
|
@@ -63414,6 +63862,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63414
63862
|
description?: string | undefined;
|
|
63415
63863
|
shared?: boolean | undefined;
|
|
63416
63864
|
identity?: boolean | undefined;
|
|
63865
|
+
read_policy?: SExpr | undefined;
|
|
63866
|
+
create_policy?: SExpr | undefined;
|
|
63867
|
+
update_policy?: SExpr | undefined;
|
|
63868
|
+
delete_policy?: SExpr | undefined;
|
|
63417
63869
|
collection?: string | undefined;
|
|
63418
63870
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
63419
63871
|
timestamps?: boolean | undefined;
|