@almadar/core 10.45.0 → 10.47.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 +7 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-BZ1nzN3q.d.ts → effect-BZDXo4bV.d.ts} +87 -1
- package/dist/entityAccess-BGnJSqXD.d.ts +33 -0
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +7 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +8 -7
- package/dist/index.js +784 -5
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +6 -34
- package/dist/mock/index.js +7 -0
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1567 -6
- package/dist/patterns/index.js +747 -4
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +745 -2
- package/dist/patterns/registry.json +745 -2
- package/dist/{schema-CZNILCHD.d.ts → schema-CGoLC-m6.d.ts} +830 -2
- package/dist/{trait-1V3odk0y.d.ts → trait-1OkxYkAr.d.ts} +121 -1
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.js +7 -0
- package/dist/types/index.js.map +1 -1
- package/dist/{types-GAiRTtkp.d.ts → types-By96RdSM.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-1OkxYkAr.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-BZDXo4bV.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -18520,6 +18520,22 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18520
18520
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
18521
18521
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
18522
18522
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
18523
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
18524
|
+
read: z.ZodOptional<z.ZodString>;
|
|
18525
|
+
create: z.ZodOptional<z.ZodString>;
|
|
18526
|
+
update: z.ZodOptional<z.ZodString>;
|
|
18527
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
18528
|
+
}, "strip", z.ZodTypeAny, {
|
|
18529
|
+
read?: string | undefined;
|
|
18530
|
+
create?: string | undefined;
|
|
18531
|
+
update?: string | undefined;
|
|
18532
|
+
delete?: string | undefined;
|
|
18533
|
+
}, {
|
|
18534
|
+
read?: string | undefined;
|
|
18535
|
+
create?: string | undefined;
|
|
18536
|
+
update?: string | undefined;
|
|
18537
|
+
delete?: string | undefined;
|
|
18538
|
+
}>>;
|
|
18523
18539
|
collection: z.ZodOptional<z.ZodString>;
|
|
18524
18540
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
18525
18541
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -18563,6 +18579,12 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18563
18579
|
create_policy?: SExpr | undefined;
|
|
18564
18580
|
update_policy?: SExpr | undefined;
|
|
18565
18581
|
delete_policy?: SExpr | undefined;
|
|
18582
|
+
access_waivers?: {
|
|
18583
|
+
read?: string | undefined;
|
|
18584
|
+
create?: string | undefined;
|
|
18585
|
+
update?: string | undefined;
|
|
18586
|
+
delete?: string | undefined;
|
|
18587
|
+
} | undefined;
|
|
18566
18588
|
collection?: string | undefined;
|
|
18567
18589
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
18568
18590
|
timestamps?: boolean | undefined;
|
|
@@ -18588,6 +18610,12 @@ declare const EntityRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18588
18610
|
create_policy?: SExpr | undefined;
|
|
18589
18611
|
update_policy?: SExpr | undefined;
|
|
18590
18612
|
delete_policy?: SExpr | undefined;
|
|
18613
|
+
access_waivers?: {
|
|
18614
|
+
read?: string | undefined;
|
|
18615
|
+
create?: string | undefined;
|
|
18616
|
+
update?: string | undefined;
|
|
18617
|
+
delete?: string | undefined;
|
|
18618
|
+
} | undefined;
|
|
18591
18619
|
collection?: string | undefined;
|
|
18592
18620
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
18593
18621
|
timestamps?: boolean | undefined;
|
|
@@ -19505,6 +19533,22 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19505
19533
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
19506
19534
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
19507
19535
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
19536
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
19537
|
+
read: z.ZodOptional<z.ZodString>;
|
|
19538
|
+
create: z.ZodOptional<z.ZodString>;
|
|
19539
|
+
update: z.ZodOptional<z.ZodString>;
|
|
19540
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
19541
|
+
}, "strip", z.ZodTypeAny, {
|
|
19542
|
+
read?: string | undefined;
|
|
19543
|
+
create?: string | undefined;
|
|
19544
|
+
update?: string | undefined;
|
|
19545
|
+
delete?: string | undefined;
|
|
19546
|
+
}, {
|
|
19547
|
+
read?: string | undefined;
|
|
19548
|
+
create?: string | undefined;
|
|
19549
|
+
update?: string | undefined;
|
|
19550
|
+
delete?: string | undefined;
|
|
19551
|
+
}>>;
|
|
19508
19552
|
collection: z.ZodOptional<z.ZodString>;
|
|
19509
19553
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
19510
19554
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -19548,6 +19592,12 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19548
19592
|
create_policy?: SExpr | undefined;
|
|
19549
19593
|
update_policy?: SExpr | undefined;
|
|
19550
19594
|
delete_policy?: SExpr | undefined;
|
|
19595
|
+
access_waivers?: {
|
|
19596
|
+
read?: string | undefined;
|
|
19597
|
+
create?: string | undefined;
|
|
19598
|
+
update?: string | undefined;
|
|
19599
|
+
delete?: string | undefined;
|
|
19600
|
+
} | undefined;
|
|
19551
19601
|
collection?: string | undefined;
|
|
19552
19602
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19553
19603
|
timestamps?: boolean | undefined;
|
|
@@ -19573,6 +19623,12 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19573
19623
|
create_policy?: SExpr | undefined;
|
|
19574
19624
|
update_policy?: SExpr | undefined;
|
|
19575
19625
|
delete_policy?: SExpr | undefined;
|
|
19626
|
+
access_waivers?: {
|
|
19627
|
+
read?: string | undefined;
|
|
19628
|
+
create?: string | undefined;
|
|
19629
|
+
update?: string | undefined;
|
|
19630
|
+
delete?: string | undefined;
|
|
19631
|
+
} | undefined;
|
|
19576
19632
|
collection?: string | undefined;
|
|
19577
19633
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19578
19634
|
timestamps?: boolean | undefined;
|
|
@@ -19737,6 +19793,12 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19737
19793
|
create_policy?: SExpr | undefined;
|
|
19738
19794
|
update_policy?: SExpr | undefined;
|
|
19739
19795
|
delete_policy?: SExpr | undefined;
|
|
19796
|
+
access_waivers?: {
|
|
19797
|
+
read?: string | undefined;
|
|
19798
|
+
create?: string | undefined;
|
|
19799
|
+
update?: string | undefined;
|
|
19800
|
+
delete?: string | undefined;
|
|
19801
|
+
} | undefined;
|
|
19740
19802
|
collection?: string | undefined;
|
|
19741
19803
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19742
19804
|
timestamps?: boolean | undefined;
|
|
@@ -19901,6 +19963,12 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19901
19963
|
create_policy?: SExpr | undefined;
|
|
19902
19964
|
update_policy?: SExpr | undefined;
|
|
19903
19965
|
delete_policy?: SExpr | undefined;
|
|
19966
|
+
access_waivers?: {
|
|
19967
|
+
read?: string | undefined;
|
|
19968
|
+
create?: string | undefined;
|
|
19969
|
+
update?: string | undefined;
|
|
19970
|
+
delete?: string | undefined;
|
|
19971
|
+
} | undefined;
|
|
19904
19972
|
collection?: string | undefined;
|
|
19905
19973
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
19906
19974
|
timestamps?: boolean | undefined;
|
|
@@ -20111,6 +20179,12 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20111
20179
|
create_policy?: SExpr | undefined;
|
|
20112
20180
|
update_policy?: SExpr | undefined;
|
|
20113
20181
|
delete_policy?: SExpr | undefined;
|
|
20182
|
+
access_waivers?: {
|
|
20183
|
+
read?: string | undefined;
|
|
20184
|
+
create?: string | undefined;
|
|
20185
|
+
update?: string | undefined;
|
|
20186
|
+
delete?: string | undefined;
|
|
20187
|
+
} | undefined;
|
|
20114
20188
|
collection?: string | undefined;
|
|
20115
20189
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
20116
20190
|
timestamps?: boolean | undefined;
|
|
@@ -20324,6 +20398,12 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20324
20398
|
create_policy?: SExpr | undefined;
|
|
20325
20399
|
update_policy?: SExpr | undefined;
|
|
20326
20400
|
delete_policy?: SExpr | undefined;
|
|
20401
|
+
access_waivers?: {
|
|
20402
|
+
read?: string | undefined;
|
|
20403
|
+
create?: string | undefined;
|
|
20404
|
+
update?: string | undefined;
|
|
20405
|
+
delete?: string | undefined;
|
|
20406
|
+
} | undefined;
|
|
20327
20407
|
collection?: string | undefined;
|
|
20328
20408
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
20329
20409
|
timestamps?: boolean | undefined;
|
|
@@ -21154,6 +21234,22 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21154
21234
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
21155
21235
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
21156
21236
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
21237
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
21238
|
+
read: z.ZodOptional<z.ZodString>;
|
|
21239
|
+
create: z.ZodOptional<z.ZodString>;
|
|
21240
|
+
update: z.ZodOptional<z.ZodString>;
|
|
21241
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
21242
|
+
}, "strip", z.ZodTypeAny, {
|
|
21243
|
+
read?: string | undefined;
|
|
21244
|
+
create?: string | undefined;
|
|
21245
|
+
update?: string | undefined;
|
|
21246
|
+
delete?: string | undefined;
|
|
21247
|
+
}, {
|
|
21248
|
+
read?: string | undefined;
|
|
21249
|
+
create?: string | undefined;
|
|
21250
|
+
update?: string | undefined;
|
|
21251
|
+
delete?: string | undefined;
|
|
21252
|
+
}>>;
|
|
21157
21253
|
collection: z.ZodOptional<z.ZodString>;
|
|
21158
21254
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
21159
21255
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -21197,6 +21293,12 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21197
21293
|
create_policy?: SExpr | undefined;
|
|
21198
21294
|
update_policy?: SExpr | undefined;
|
|
21199
21295
|
delete_policy?: SExpr | undefined;
|
|
21296
|
+
access_waivers?: {
|
|
21297
|
+
read?: string | undefined;
|
|
21298
|
+
create?: string | undefined;
|
|
21299
|
+
update?: string | undefined;
|
|
21300
|
+
delete?: string | undefined;
|
|
21301
|
+
} | undefined;
|
|
21200
21302
|
collection?: string | undefined;
|
|
21201
21303
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21202
21304
|
timestamps?: boolean | undefined;
|
|
@@ -21222,6 +21324,12 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21222
21324
|
create_policy?: SExpr | undefined;
|
|
21223
21325
|
update_policy?: SExpr | undefined;
|
|
21224
21326
|
delete_policy?: SExpr | undefined;
|
|
21327
|
+
access_waivers?: {
|
|
21328
|
+
read?: string | undefined;
|
|
21329
|
+
create?: string | undefined;
|
|
21330
|
+
update?: string | undefined;
|
|
21331
|
+
delete?: string | undefined;
|
|
21332
|
+
} | undefined;
|
|
21225
21333
|
collection?: string | undefined;
|
|
21226
21334
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21227
21335
|
timestamps?: boolean | undefined;
|
|
@@ -21386,6 +21494,12 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21386
21494
|
create_policy?: SExpr | undefined;
|
|
21387
21495
|
update_policy?: SExpr | undefined;
|
|
21388
21496
|
delete_policy?: SExpr | undefined;
|
|
21497
|
+
access_waivers?: {
|
|
21498
|
+
read?: string | undefined;
|
|
21499
|
+
create?: string | undefined;
|
|
21500
|
+
update?: string | undefined;
|
|
21501
|
+
delete?: string | undefined;
|
|
21502
|
+
} | undefined;
|
|
21389
21503
|
collection?: string | undefined;
|
|
21390
21504
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21391
21505
|
timestamps?: boolean | undefined;
|
|
@@ -21550,6 +21664,12 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21550
21664
|
create_policy?: SExpr | undefined;
|
|
21551
21665
|
update_policy?: SExpr | undefined;
|
|
21552
21666
|
delete_policy?: SExpr | undefined;
|
|
21667
|
+
access_waivers?: {
|
|
21668
|
+
read?: string | undefined;
|
|
21669
|
+
create?: string | undefined;
|
|
21670
|
+
update?: string | undefined;
|
|
21671
|
+
delete?: string | undefined;
|
|
21672
|
+
} | undefined;
|
|
21553
21673
|
collection?: string | undefined;
|
|
21554
21674
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21555
21675
|
timestamps?: boolean | undefined;
|
|
@@ -21760,6 +21880,12 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21760
21880
|
create_policy?: SExpr | undefined;
|
|
21761
21881
|
update_policy?: SExpr | undefined;
|
|
21762
21882
|
delete_policy?: SExpr | undefined;
|
|
21883
|
+
access_waivers?: {
|
|
21884
|
+
read?: string | undefined;
|
|
21885
|
+
create?: string | undefined;
|
|
21886
|
+
update?: string | undefined;
|
|
21887
|
+
delete?: string | undefined;
|
|
21888
|
+
} | undefined;
|
|
21763
21889
|
collection?: string | undefined;
|
|
21764
21890
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21765
21891
|
timestamps?: boolean | undefined;
|
|
@@ -21973,6 +22099,12 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21973
22099
|
create_policy?: SExpr | undefined;
|
|
21974
22100
|
update_policy?: SExpr | undefined;
|
|
21975
22101
|
delete_policy?: SExpr | undefined;
|
|
22102
|
+
access_waivers?: {
|
|
22103
|
+
read?: string | undefined;
|
|
22104
|
+
create?: string | undefined;
|
|
22105
|
+
update?: string | undefined;
|
|
22106
|
+
delete?: string | undefined;
|
|
22107
|
+
} | undefined;
|
|
21976
22108
|
collection?: string | undefined;
|
|
21977
22109
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
21978
22110
|
timestamps?: boolean | undefined;
|
|
@@ -26407,6 +26539,22 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26407
26539
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
26408
26540
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
26409
26541
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
26542
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
26543
|
+
read: z.ZodOptional<z.ZodString>;
|
|
26544
|
+
create: z.ZodOptional<z.ZodString>;
|
|
26545
|
+
update: z.ZodOptional<z.ZodString>;
|
|
26546
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
26547
|
+
}, "strip", z.ZodTypeAny, {
|
|
26548
|
+
read?: string | undefined;
|
|
26549
|
+
create?: string | undefined;
|
|
26550
|
+
update?: string | undefined;
|
|
26551
|
+
delete?: string | undefined;
|
|
26552
|
+
}, {
|
|
26553
|
+
read?: string | undefined;
|
|
26554
|
+
create?: string | undefined;
|
|
26555
|
+
update?: string | undefined;
|
|
26556
|
+
delete?: string | undefined;
|
|
26557
|
+
}>>;
|
|
26410
26558
|
collection: z.ZodOptional<z.ZodString>;
|
|
26411
26559
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
26412
26560
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -26450,6 +26598,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26450
26598
|
create_policy?: SExpr | undefined;
|
|
26451
26599
|
update_policy?: SExpr | undefined;
|
|
26452
26600
|
delete_policy?: SExpr | undefined;
|
|
26601
|
+
access_waivers?: {
|
|
26602
|
+
read?: string | undefined;
|
|
26603
|
+
create?: string | undefined;
|
|
26604
|
+
update?: string | undefined;
|
|
26605
|
+
delete?: string | undefined;
|
|
26606
|
+
} | undefined;
|
|
26453
26607
|
collection?: string | undefined;
|
|
26454
26608
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
26455
26609
|
timestamps?: boolean | undefined;
|
|
@@ -26475,6 +26629,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
26475
26629
|
create_policy?: SExpr | undefined;
|
|
26476
26630
|
update_policy?: SExpr | undefined;
|
|
26477
26631
|
delete_policy?: SExpr | undefined;
|
|
26632
|
+
access_waivers?: {
|
|
26633
|
+
read?: string | undefined;
|
|
26634
|
+
create?: string | undefined;
|
|
26635
|
+
update?: string | undefined;
|
|
26636
|
+
delete?: string | undefined;
|
|
26637
|
+
} | undefined;
|
|
26478
26638
|
collection?: string | undefined;
|
|
26479
26639
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
26480
26640
|
timestamps?: boolean | undefined;
|
|
@@ -27265,6 +27425,22 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27265
27425
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
27266
27426
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
27267
27427
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
27428
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
27429
|
+
read: z.ZodOptional<z.ZodString>;
|
|
27430
|
+
create: z.ZodOptional<z.ZodString>;
|
|
27431
|
+
update: z.ZodOptional<z.ZodString>;
|
|
27432
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
27433
|
+
}, "strip", z.ZodTypeAny, {
|
|
27434
|
+
read?: string | undefined;
|
|
27435
|
+
create?: string | undefined;
|
|
27436
|
+
update?: string | undefined;
|
|
27437
|
+
delete?: string | undefined;
|
|
27438
|
+
}, {
|
|
27439
|
+
read?: string | undefined;
|
|
27440
|
+
create?: string | undefined;
|
|
27441
|
+
update?: string | undefined;
|
|
27442
|
+
delete?: string | undefined;
|
|
27443
|
+
}>>;
|
|
27268
27444
|
collection: z.ZodOptional<z.ZodString>;
|
|
27269
27445
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
27270
27446
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -27308,6 +27484,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27308
27484
|
create_policy?: SExpr | undefined;
|
|
27309
27485
|
update_policy?: SExpr | undefined;
|
|
27310
27486
|
delete_policy?: SExpr | undefined;
|
|
27487
|
+
access_waivers?: {
|
|
27488
|
+
read?: string | undefined;
|
|
27489
|
+
create?: string | undefined;
|
|
27490
|
+
update?: string | undefined;
|
|
27491
|
+
delete?: string | undefined;
|
|
27492
|
+
} | undefined;
|
|
27311
27493
|
collection?: string | undefined;
|
|
27312
27494
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27313
27495
|
timestamps?: boolean | undefined;
|
|
@@ -27333,6 +27515,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27333
27515
|
create_policy?: SExpr | undefined;
|
|
27334
27516
|
update_policy?: SExpr | undefined;
|
|
27335
27517
|
delete_policy?: SExpr | undefined;
|
|
27518
|
+
access_waivers?: {
|
|
27519
|
+
read?: string | undefined;
|
|
27520
|
+
create?: string | undefined;
|
|
27521
|
+
update?: string | undefined;
|
|
27522
|
+
delete?: string | undefined;
|
|
27523
|
+
} | undefined;
|
|
27336
27524
|
collection?: string | undefined;
|
|
27337
27525
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27338
27526
|
timestamps?: boolean | undefined;
|
|
@@ -27497,6 +27685,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27497
27685
|
create_policy?: SExpr | undefined;
|
|
27498
27686
|
update_policy?: SExpr | undefined;
|
|
27499
27687
|
delete_policy?: SExpr | undefined;
|
|
27688
|
+
access_waivers?: {
|
|
27689
|
+
read?: string | undefined;
|
|
27690
|
+
create?: string | undefined;
|
|
27691
|
+
update?: string | undefined;
|
|
27692
|
+
delete?: string | undefined;
|
|
27693
|
+
} | undefined;
|
|
27500
27694
|
collection?: string | undefined;
|
|
27501
27695
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27502
27696
|
timestamps?: boolean | undefined;
|
|
@@ -27661,6 +27855,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27661
27855
|
create_policy?: SExpr | undefined;
|
|
27662
27856
|
update_policy?: SExpr | undefined;
|
|
27663
27857
|
delete_policy?: SExpr | undefined;
|
|
27858
|
+
access_waivers?: {
|
|
27859
|
+
read?: string | undefined;
|
|
27860
|
+
create?: string | undefined;
|
|
27861
|
+
update?: string | undefined;
|
|
27862
|
+
delete?: string | undefined;
|
|
27863
|
+
} | undefined;
|
|
27664
27864
|
collection?: string | undefined;
|
|
27665
27865
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
27666
27866
|
timestamps?: boolean | undefined;
|
|
@@ -28486,6 +28686,22 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28486
28686
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
28487
28687
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
28488
28688
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
28689
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
28690
|
+
read: z.ZodOptional<z.ZodString>;
|
|
28691
|
+
create: z.ZodOptional<z.ZodString>;
|
|
28692
|
+
update: z.ZodOptional<z.ZodString>;
|
|
28693
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
28694
|
+
}, "strip", z.ZodTypeAny, {
|
|
28695
|
+
read?: string | undefined;
|
|
28696
|
+
create?: string | undefined;
|
|
28697
|
+
update?: string | undefined;
|
|
28698
|
+
delete?: string | undefined;
|
|
28699
|
+
}, {
|
|
28700
|
+
read?: string | undefined;
|
|
28701
|
+
create?: string | undefined;
|
|
28702
|
+
update?: string | undefined;
|
|
28703
|
+
delete?: string | undefined;
|
|
28704
|
+
}>>;
|
|
28489
28705
|
collection: z.ZodOptional<z.ZodString>;
|
|
28490
28706
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
28491
28707
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -28529,6 +28745,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28529
28745
|
create_policy?: SExpr | undefined;
|
|
28530
28746
|
update_policy?: SExpr | undefined;
|
|
28531
28747
|
delete_policy?: SExpr | undefined;
|
|
28748
|
+
access_waivers?: {
|
|
28749
|
+
read?: string | undefined;
|
|
28750
|
+
create?: string | undefined;
|
|
28751
|
+
update?: string | undefined;
|
|
28752
|
+
delete?: string | undefined;
|
|
28753
|
+
} | undefined;
|
|
28532
28754
|
collection?: string | undefined;
|
|
28533
28755
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28534
28756
|
timestamps?: boolean | undefined;
|
|
@@ -28554,6 +28776,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28554
28776
|
create_policy?: SExpr | undefined;
|
|
28555
28777
|
update_policy?: SExpr | undefined;
|
|
28556
28778
|
delete_policy?: SExpr | undefined;
|
|
28779
|
+
access_waivers?: {
|
|
28780
|
+
read?: string | undefined;
|
|
28781
|
+
create?: string | undefined;
|
|
28782
|
+
update?: string | undefined;
|
|
28783
|
+
delete?: string | undefined;
|
|
28784
|
+
} | undefined;
|
|
28557
28785
|
collection?: string | undefined;
|
|
28558
28786
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28559
28787
|
timestamps?: boolean | undefined;
|
|
@@ -28718,6 +28946,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28718
28946
|
create_policy?: SExpr | undefined;
|
|
28719
28947
|
update_policy?: SExpr | undefined;
|
|
28720
28948
|
delete_policy?: SExpr | undefined;
|
|
28949
|
+
access_waivers?: {
|
|
28950
|
+
read?: string | undefined;
|
|
28951
|
+
create?: string | undefined;
|
|
28952
|
+
update?: string | undefined;
|
|
28953
|
+
delete?: string | undefined;
|
|
28954
|
+
} | undefined;
|
|
28721
28955
|
collection?: string | undefined;
|
|
28722
28956
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28723
28957
|
timestamps?: boolean | undefined;
|
|
@@ -28882,6 +29116,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28882
29116
|
create_policy?: SExpr | undefined;
|
|
28883
29117
|
update_policy?: SExpr | undefined;
|
|
28884
29118
|
delete_policy?: SExpr | undefined;
|
|
29119
|
+
access_waivers?: {
|
|
29120
|
+
read?: string | undefined;
|
|
29121
|
+
create?: string | undefined;
|
|
29122
|
+
update?: string | undefined;
|
|
29123
|
+
delete?: string | undefined;
|
|
29124
|
+
} | undefined;
|
|
28885
29125
|
collection?: string | undefined;
|
|
28886
29126
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
28887
29127
|
timestamps?: boolean | undefined;
|
|
@@ -29092,6 +29332,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29092
29332
|
create_policy?: SExpr | undefined;
|
|
29093
29333
|
update_policy?: SExpr | undefined;
|
|
29094
29334
|
delete_policy?: SExpr | undefined;
|
|
29335
|
+
access_waivers?: {
|
|
29336
|
+
read?: string | undefined;
|
|
29337
|
+
create?: string | undefined;
|
|
29338
|
+
update?: string | undefined;
|
|
29339
|
+
delete?: string | undefined;
|
|
29340
|
+
} | undefined;
|
|
29095
29341
|
collection?: string | undefined;
|
|
29096
29342
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29097
29343
|
timestamps?: boolean | undefined;
|
|
@@ -29305,6 +29551,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29305
29551
|
create_policy?: SExpr | undefined;
|
|
29306
29552
|
update_policy?: SExpr | undefined;
|
|
29307
29553
|
delete_policy?: SExpr | undefined;
|
|
29554
|
+
access_waivers?: {
|
|
29555
|
+
read?: string | undefined;
|
|
29556
|
+
create?: string | undefined;
|
|
29557
|
+
update?: string | undefined;
|
|
29558
|
+
delete?: string | undefined;
|
|
29559
|
+
} | undefined;
|
|
29308
29560
|
collection?: string | undefined;
|
|
29309
29561
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29310
29562
|
timestamps?: boolean | undefined;
|
|
@@ -29549,6 +29801,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29549
29801
|
create_policy?: SExpr | undefined;
|
|
29550
29802
|
update_policy?: SExpr | undefined;
|
|
29551
29803
|
delete_policy?: SExpr | undefined;
|
|
29804
|
+
access_waivers?: {
|
|
29805
|
+
read?: string | undefined;
|
|
29806
|
+
create?: string | undefined;
|
|
29807
|
+
update?: string | undefined;
|
|
29808
|
+
delete?: string | undefined;
|
|
29809
|
+
} | undefined;
|
|
29552
29810
|
collection?: string | undefined;
|
|
29553
29811
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29554
29812
|
timestamps?: boolean | undefined;
|
|
@@ -29779,6 +30037,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29779
30037
|
create_policy?: SExpr | undefined;
|
|
29780
30038
|
update_policy?: SExpr | undefined;
|
|
29781
30039
|
delete_policy?: SExpr | undefined;
|
|
30040
|
+
access_waivers?: {
|
|
30041
|
+
read?: string | undefined;
|
|
30042
|
+
create?: string | undefined;
|
|
30043
|
+
update?: string | undefined;
|
|
30044
|
+
delete?: string | undefined;
|
|
30045
|
+
} | undefined;
|
|
29782
30046
|
collection?: string | undefined;
|
|
29783
30047
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29784
30048
|
timestamps?: boolean | undefined;
|
|
@@ -29989,6 +30253,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29989
30253
|
create_policy?: SExpr | undefined;
|
|
29990
30254
|
update_policy?: SExpr | undefined;
|
|
29991
30255
|
delete_policy?: SExpr | undefined;
|
|
30256
|
+
access_waivers?: {
|
|
30257
|
+
read?: string | undefined;
|
|
30258
|
+
create?: string | undefined;
|
|
30259
|
+
update?: string | undefined;
|
|
30260
|
+
delete?: string | undefined;
|
|
30261
|
+
} | undefined;
|
|
29992
30262
|
collection?: string | undefined;
|
|
29993
30263
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
29994
30264
|
timestamps?: boolean | undefined;
|
|
@@ -30572,6 +30842,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30572
30842
|
create_policy?: SExpr | undefined;
|
|
30573
30843
|
update_policy?: SExpr | undefined;
|
|
30574
30844
|
delete_policy?: SExpr | undefined;
|
|
30845
|
+
access_waivers?: {
|
|
30846
|
+
read?: string | undefined;
|
|
30847
|
+
create?: string | undefined;
|
|
30848
|
+
update?: string | undefined;
|
|
30849
|
+
delete?: string | undefined;
|
|
30850
|
+
} | undefined;
|
|
30575
30851
|
collection?: string | undefined;
|
|
30576
30852
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
30577
30853
|
timestamps?: boolean | undefined;
|
|
@@ -30802,6 +31078,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30802
31078
|
create_policy?: SExpr | undefined;
|
|
30803
31079
|
update_policy?: SExpr | undefined;
|
|
30804
31080
|
delete_policy?: SExpr | undefined;
|
|
31081
|
+
access_waivers?: {
|
|
31082
|
+
read?: string | undefined;
|
|
31083
|
+
create?: string | undefined;
|
|
31084
|
+
update?: string | undefined;
|
|
31085
|
+
delete?: string | undefined;
|
|
31086
|
+
} | undefined;
|
|
30805
31087
|
collection?: string | undefined;
|
|
30806
31088
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
30807
31089
|
timestamps?: boolean | undefined;
|
|
@@ -31012,6 +31294,12 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31012
31294
|
create_policy?: SExpr | undefined;
|
|
31013
31295
|
update_policy?: SExpr | undefined;
|
|
31014
31296
|
delete_policy?: SExpr | undefined;
|
|
31297
|
+
access_waivers?: {
|
|
31298
|
+
read?: string | undefined;
|
|
31299
|
+
create?: string | undefined;
|
|
31300
|
+
update?: string | undefined;
|
|
31301
|
+
delete?: string | undefined;
|
|
31302
|
+
} | undefined;
|
|
31015
31303
|
collection?: string | undefined;
|
|
31016
31304
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
31017
31305
|
timestamps?: boolean | undefined;
|
|
@@ -35633,6 +35921,22 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35633
35921
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
35634
35922
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
35635
35923
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
35924
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
35925
|
+
read: z.ZodOptional<z.ZodString>;
|
|
35926
|
+
create: z.ZodOptional<z.ZodString>;
|
|
35927
|
+
update: z.ZodOptional<z.ZodString>;
|
|
35928
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
35929
|
+
}, "strip", z.ZodTypeAny, {
|
|
35930
|
+
read?: string | undefined;
|
|
35931
|
+
create?: string | undefined;
|
|
35932
|
+
update?: string | undefined;
|
|
35933
|
+
delete?: string | undefined;
|
|
35934
|
+
}, {
|
|
35935
|
+
read?: string | undefined;
|
|
35936
|
+
create?: string | undefined;
|
|
35937
|
+
update?: string | undefined;
|
|
35938
|
+
delete?: string | undefined;
|
|
35939
|
+
}>>;
|
|
35636
35940
|
collection: z.ZodOptional<z.ZodString>;
|
|
35637
35941
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
35638
35942
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -35676,6 +35980,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35676
35980
|
create_policy?: SExpr | undefined;
|
|
35677
35981
|
update_policy?: SExpr | undefined;
|
|
35678
35982
|
delete_policy?: SExpr | undefined;
|
|
35983
|
+
access_waivers?: {
|
|
35984
|
+
read?: string | undefined;
|
|
35985
|
+
create?: string | undefined;
|
|
35986
|
+
update?: string | undefined;
|
|
35987
|
+
delete?: string | undefined;
|
|
35988
|
+
} | undefined;
|
|
35679
35989
|
collection?: string | undefined;
|
|
35680
35990
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
35681
35991
|
timestamps?: boolean | undefined;
|
|
@@ -35701,6 +36011,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
35701
36011
|
create_policy?: SExpr | undefined;
|
|
35702
36012
|
update_policy?: SExpr | undefined;
|
|
35703
36013
|
delete_policy?: SExpr | undefined;
|
|
36014
|
+
access_waivers?: {
|
|
36015
|
+
read?: string | undefined;
|
|
36016
|
+
create?: string | undefined;
|
|
36017
|
+
update?: string | undefined;
|
|
36018
|
+
delete?: string | undefined;
|
|
36019
|
+
} | undefined;
|
|
35704
36020
|
collection?: string | undefined;
|
|
35705
36021
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
35706
36022
|
timestamps?: boolean | undefined;
|
|
@@ -36491,6 +36807,22 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36491
36807
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
36492
36808
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
36493
36809
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
36810
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
36811
|
+
read: z.ZodOptional<z.ZodString>;
|
|
36812
|
+
create: z.ZodOptional<z.ZodString>;
|
|
36813
|
+
update: z.ZodOptional<z.ZodString>;
|
|
36814
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
36815
|
+
}, "strip", z.ZodTypeAny, {
|
|
36816
|
+
read?: string | undefined;
|
|
36817
|
+
create?: string | undefined;
|
|
36818
|
+
update?: string | undefined;
|
|
36819
|
+
delete?: string | undefined;
|
|
36820
|
+
}, {
|
|
36821
|
+
read?: string | undefined;
|
|
36822
|
+
create?: string | undefined;
|
|
36823
|
+
update?: string | undefined;
|
|
36824
|
+
delete?: string | undefined;
|
|
36825
|
+
}>>;
|
|
36494
36826
|
collection: z.ZodOptional<z.ZodString>;
|
|
36495
36827
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
36496
36828
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -36534,6 +36866,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36534
36866
|
create_policy?: SExpr | undefined;
|
|
36535
36867
|
update_policy?: SExpr | undefined;
|
|
36536
36868
|
delete_policy?: SExpr | undefined;
|
|
36869
|
+
access_waivers?: {
|
|
36870
|
+
read?: string | undefined;
|
|
36871
|
+
create?: string | undefined;
|
|
36872
|
+
update?: string | undefined;
|
|
36873
|
+
delete?: string | undefined;
|
|
36874
|
+
} | undefined;
|
|
36537
36875
|
collection?: string | undefined;
|
|
36538
36876
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36539
36877
|
timestamps?: boolean | undefined;
|
|
@@ -36559,6 +36897,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36559
36897
|
create_policy?: SExpr | undefined;
|
|
36560
36898
|
update_policy?: SExpr | undefined;
|
|
36561
36899
|
delete_policy?: SExpr | undefined;
|
|
36900
|
+
access_waivers?: {
|
|
36901
|
+
read?: string | undefined;
|
|
36902
|
+
create?: string | undefined;
|
|
36903
|
+
update?: string | undefined;
|
|
36904
|
+
delete?: string | undefined;
|
|
36905
|
+
} | undefined;
|
|
36562
36906
|
collection?: string | undefined;
|
|
36563
36907
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36564
36908
|
timestamps?: boolean | undefined;
|
|
@@ -36723,6 +37067,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36723
37067
|
create_policy?: SExpr | undefined;
|
|
36724
37068
|
update_policy?: SExpr | undefined;
|
|
36725
37069
|
delete_policy?: SExpr | undefined;
|
|
37070
|
+
access_waivers?: {
|
|
37071
|
+
read?: string | undefined;
|
|
37072
|
+
create?: string | undefined;
|
|
37073
|
+
update?: string | undefined;
|
|
37074
|
+
delete?: string | undefined;
|
|
37075
|
+
} | undefined;
|
|
36726
37076
|
collection?: string | undefined;
|
|
36727
37077
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36728
37078
|
timestamps?: boolean | undefined;
|
|
@@ -36887,6 +37237,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36887
37237
|
create_policy?: SExpr | undefined;
|
|
36888
37238
|
update_policy?: SExpr | undefined;
|
|
36889
37239
|
delete_policy?: SExpr | undefined;
|
|
37240
|
+
access_waivers?: {
|
|
37241
|
+
read?: string | undefined;
|
|
37242
|
+
create?: string | undefined;
|
|
37243
|
+
update?: string | undefined;
|
|
37244
|
+
delete?: string | undefined;
|
|
37245
|
+
} | undefined;
|
|
36890
37246
|
collection?: string | undefined;
|
|
36891
37247
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
36892
37248
|
timestamps?: boolean | undefined;
|
|
@@ -37712,6 +38068,22 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37712
38068
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
37713
38069
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
37714
38070
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
38071
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
38072
|
+
read: z.ZodOptional<z.ZodString>;
|
|
38073
|
+
create: z.ZodOptional<z.ZodString>;
|
|
38074
|
+
update: z.ZodOptional<z.ZodString>;
|
|
38075
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
38076
|
+
}, "strip", z.ZodTypeAny, {
|
|
38077
|
+
read?: string | undefined;
|
|
38078
|
+
create?: string | undefined;
|
|
38079
|
+
update?: string | undefined;
|
|
38080
|
+
delete?: string | undefined;
|
|
38081
|
+
}, {
|
|
38082
|
+
read?: string | undefined;
|
|
38083
|
+
create?: string | undefined;
|
|
38084
|
+
update?: string | undefined;
|
|
38085
|
+
delete?: string | undefined;
|
|
38086
|
+
}>>;
|
|
37715
38087
|
collection: z.ZodOptional<z.ZodString>;
|
|
37716
38088
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
37717
38089
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -37755,6 +38127,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37755
38127
|
create_policy?: SExpr | undefined;
|
|
37756
38128
|
update_policy?: SExpr | undefined;
|
|
37757
38129
|
delete_policy?: SExpr | undefined;
|
|
38130
|
+
access_waivers?: {
|
|
38131
|
+
read?: string | undefined;
|
|
38132
|
+
create?: string | undefined;
|
|
38133
|
+
update?: string | undefined;
|
|
38134
|
+
delete?: string | undefined;
|
|
38135
|
+
} | undefined;
|
|
37758
38136
|
collection?: string | undefined;
|
|
37759
38137
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
37760
38138
|
timestamps?: boolean | undefined;
|
|
@@ -37780,6 +38158,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37780
38158
|
create_policy?: SExpr | undefined;
|
|
37781
38159
|
update_policy?: SExpr | undefined;
|
|
37782
38160
|
delete_policy?: SExpr | undefined;
|
|
38161
|
+
access_waivers?: {
|
|
38162
|
+
read?: string | undefined;
|
|
38163
|
+
create?: string | undefined;
|
|
38164
|
+
update?: string | undefined;
|
|
38165
|
+
delete?: string | undefined;
|
|
38166
|
+
} | undefined;
|
|
37783
38167
|
collection?: string | undefined;
|
|
37784
38168
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
37785
38169
|
timestamps?: boolean | undefined;
|
|
@@ -37944,6 +38328,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37944
38328
|
create_policy?: SExpr | undefined;
|
|
37945
38329
|
update_policy?: SExpr | undefined;
|
|
37946
38330
|
delete_policy?: SExpr | undefined;
|
|
38331
|
+
access_waivers?: {
|
|
38332
|
+
read?: string | undefined;
|
|
38333
|
+
create?: string | undefined;
|
|
38334
|
+
update?: string | undefined;
|
|
38335
|
+
delete?: string | undefined;
|
|
38336
|
+
} | undefined;
|
|
37947
38337
|
collection?: string | undefined;
|
|
37948
38338
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
37949
38339
|
timestamps?: boolean | undefined;
|
|
@@ -38108,6 +38498,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38108
38498
|
create_policy?: SExpr | undefined;
|
|
38109
38499
|
update_policy?: SExpr | undefined;
|
|
38110
38500
|
delete_policy?: SExpr | undefined;
|
|
38501
|
+
access_waivers?: {
|
|
38502
|
+
read?: string | undefined;
|
|
38503
|
+
create?: string | undefined;
|
|
38504
|
+
update?: string | undefined;
|
|
38505
|
+
delete?: string | undefined;
|
|
38506
|
+
} | undefined;
|
|
38111
38507
|
collection?: string | undefined;
|
|
38112
38508
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38113
38509
|
timestamps?: boolean | undefined;
|
|
@@ -38318,6 +38714,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38318
38714
|
create_policy?: SExpr | undefined;
|
|
38319
38715
|
update_policy?: SExpr | undefined;
|
|
38320
38716
|
delete_policy?: SExpr | undefined;
|
|
38717
|
+
access_waivers?: {
|
|
38718
|
+
read?: string | undefined;
|
|
38719
|
+
create?: string | undefined;
|
|
38720
|
+
update?: string | undefined;
|
|
38721
|
+
delete?: string | undefined;
|
|
38722
|
+
} | undefined;
|
|
38321
38723
|
collection?: string | undefined;
|
|
38322
38724
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38323
38725
|
timestamps?: boolean | undefined;
|
|
@@ -38531,6 +38933,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38531
38933
|
create_policy?: SExpr | undefined;
|
|
38532
38934
|
update_policy?: SExpr | undefined;
|
|
38533
38935
|
delete_policy?: SExpr | undefined;
|
|
38936
|
+
access_waivers?: {
|
|
38937
|
+
read?: string | undefined;
|
|
38938
|
+
create?: string | undefined;
|
|
38939
|
+
update?: string | undefined;
|
|
38940
|
+
delete?: string | undefined;
|
|
38941
|
+
} | undefined;
|
|
38534
38942
|
collection?: string | undefined;
|
|
38535
38943
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38536
38944
|
timestamps?: boolean | undefined;
|
|
@@ -38775,6 +39183,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38775
39183
|
create_policy?: SExpr | undefined;
|
|
38776
39184
|
update_policy?: SExpr | undefined;
|
|
38777
39185
|
delete_policy?: SExpr | undefined;
|
|
39186
|
+
access_waivers?: {
|
|
39187
|
+
read?: string | undefined;
|
|
39188
|
+
create?: string | undefined;
|
|
39189
|
+
update?: string | undefined;
|
|
39190
|
+
delete?: string | undefined;
|
|
39191
|
+
} | undefined;
|
|
38778
39192
|
collection?: string | undefined;
|
|
38779
39193
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
38780
39194
|
timestamps?: boolean | undefined;
|
|
@@ -39005,6 +39419,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39005
39419
|
create_policy?: SExpr | undefined;
|
|
39006
39420
|
update_policy?: SExpr | undefined;
|
|
39007
39421
|
delete_policy?: SExpr | undefined;
|
|
39422
|
+
access_waivers?: {
|
|
39423
|
+
read?: string | undefined;
|
|
39424
|
+
create?: string | undefined;
|
|
39425
|
+
update?: string | undefined;
|
|
39426
|
+
delete?: string | undefined;
|
|
39427
|
+
} | undefined;
|
|
39008
39428
|
collection?: string | undefined;
|
|
39009
39429
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
39010
39430
|
timestamps?: boolean | undefined;
|
|
@@ -39215,6 +39635,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39215
39635
|
create_policy?: SExpr | undefined;
|
|
39216
39636
|
update_policy?: SExpr | undefined;
|
|
39217
39637
|
delete_policy?: SExpr | undefined;
|
|
39638
|
+
access_waivers?: {
|
|
39639
|
+
read?: string | undefined;
|
|
39640
|
+
create?: string | undefined;
|
|
39641
|
+
update?: string | undefined;
|
|
39642
|
+
delete?: string | undefined;
|
|
39643
|
+
} | undefined;
|
|
39218
39644
|
collection?: string | undefined;
|
|
39219
39645
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
39220
39646
|
timestamps?: boolean | undefined;
|
|
@@ -39798,6 +40224,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39798
40224
|
create_policy?: SExpr | undefined;
|
|
39799
40225
|
update_policy?: SExpr | undefined;
|
|
39800
40226
|
delete_policy?: SExpr | undefined;
|
|
40227
|
+
access_waivers?: {
|
|
40228
|
+
read?: string | undefined;
|
|
40229
|
+
create?: string | undefined;
|
|
40230
|
+
update?: string | undefined;
|
|
40231
|
+
delete?: string | undefined;
|
|
40232
|
+
} | undefined;
|
|
39801
40233
|
collection?: string | undefined;
|
|
39802
40234
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
39803
40235
|
timestamps?: boolean | undefined;
|
|
@@ -40028,6 +40460,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40028
40460
|
create_policy?: SExpr | undefined;
|
|
40029
40461
|
update_policy?: SExpr | undefined;
|
|
40030
40462
|
delete_policy?: SExpr | undefined;
|
|
40463
|
+
access_waivers?: {
|
|
40464
|
+
read?: string | undefined;
|
|
40465
|
+
create?: string | undefined;
|
|
40466
|
+
update?: string | undefined;
|
|
40467
|
+
delete?: string | undefined;
|
|
40468
|
+
} | undefined;
|
|
40031
40469
|
collection?: string | undefined;
|
|
40032
40470
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
40033
40471
|
timestamps?: boolean | undefined;
|
|
@@ -40238,6 +40676,12 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40238
40676
|
create_policy?: SExpr | undefined;
|
|
40239
40677
|
update_policy?: SExpr | undefined;
|
|
40240
40678
|
delete_policy?: SExpr | undefined;
|
|
40679
|
+
access_waivers?: {
|
|
40680
|
+
read?: string | undefined;
|
|
40681
|
+
create?: string | undefined;
|
|
40682
|
+
update?: string | undefined;
|
|
40683
|
+
delete?: string | undefined;
|
|
40684
|
+
} | undefined;
|
|
40241
40685
|
collection?: string | undefined;
|
|
40242
40686
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
40243
40687
|
timestamps?: boolean | undefined;
|
|
@@ -44866,6 +45310,22 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44866
45310
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
44867
45311
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
44868
45312
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
45313
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
45314
|
+
read: z.ZodOptional<z.ZodString>;
|
|
45315
|
+
create: z.ZodOptional<z.ZodString>;
|
|
45316
|
+
update: z.ZodOptional<z.ZodString>;
|
|
45317
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
45318
|
+
}, "strip", z.ZodTypeAny, {
|
|
45319
|
+
read?: string | undefined;
|
|
45320
|
+
create?: string | undefined;
|
|
45321
|
+
update?: string | undefined;
|
|
45322
|
+
delete?: string | undefined;
|
|
45323
|
+
}, {
|
|
45324
|
+
read?: string | undefined;
|
|
45325
|
+
create?: string | undefined;
|
|
45326
|
+
update?: string | undefined;
|
|
45327
|
+
delete?: string | undefined;
|
|
45328
|
+
}>>;
|
|
44869
45329
|
collection: z.ZodOptional<z.ZodString>;
|
|
44870
45330
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
44871
45331
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -44909,6 +45369,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44909
45369
|
create_policy?: SExpr | undefined;
|
|
44910
45370
|
update_policy?: SExpr | undefined;
|
|
44911
45371
|
delete_policy?: SExpr | undefined;
|
|
45372
|
+
access_waivers?: {
|
|
45373
|
+
read?: string | undefined;
|
|
45374
|
+
create?: string | undefined;
|
|
45375
|
+
update?: string | undefined;
|
|
45376
|
+
delete?: string | undefined;
|
|
45377
|
+
} | undefined;
|
|
44912
45378
|
collection?: string | undefined;
|
|
44913
45379
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
44914
45380
|
timestamps?: boolean | undefined;
|
|
@@ -44934,6 +45400,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
44934
45400
|
create_policy?: SExpr | undefined;
|
|
44935
45401
|
update_policy?: SExpr | undefined;
|
|
44936
45402
|
delete_policy?: SExpr | undefined;
|
|
45403
|
+
access_waivers?: {
|
|
45404
|
+
read?: string | undefined;
|
|
45405
|
+
create?: string | undefined;
|
|
45406
|
+
update?: string | undefined;
|
|
45407
|
+
delete?: string | undefined;
|
|
45408
|
+
} | undefined;
|
|
44937
45409
|
collection?: string | undefined;
|
|
44938
45410
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
44939
45411
|
timestamps?: boolean | undefined;
|
|
@@ -45724,6 +46196,22 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45724
46196
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
45725
46197
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
45726
46198
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
46199
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
46200
|
+
read: z.ZodOptional<z.ZodString>;
|
|
46201
|
+
create: z.ZodOptional<z.ZodString>;
|
|
46202
|
+
update: z.ZodOptional<z.ZodString>;
|
|
46203
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
46204
|
+
}, "strip", z.ZodTypeAny, {
|
|
46205
|
+
read?: string | undefined;
|
|
46206
|
+
create?: string | undefined;
|
|
46207
|
+
update?: string | undefined;
|
|
46208
|
+
delete?: string | undefined;
|
|
46209
|
+
}, {
|
|
46210
|
+
read?: string | undefined;
|
|
46211
|
+
create?: string | undefined;
|
|
46212
|
+
update?: string | undefined;
|
|
46213
|
+
delete?: string | undefined;
|
|
46214
|
+
}>>;
|
|
45727
46215
|
collection: z.ZodOptional<z.ZodString>;
|
|
45728
46216
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
45729
46217
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -45767,6 +46255,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45767
46255
|
create_policy?: SExpr | undefined;
|
|
45768
46256
|
update_policy?: SExpr | undefined;
|
|
45769
46257
|
delete_policy?: SExpr | undefined;
|
|
46258
|
+
access_waivers?: {
|
|
46259
|
+
read?: string | undefined;
|
|
46260
|
+
create?: string | undefined;
|
|
46261
|
+
update?: string | undefined;
|
|
46262
|
+
delete?: string | undefined;
|
|
46263
|
+
} | undefined;
|
|
45770
46264
|
collection?: string | undefined;
|
|
45771
46265
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
45772
46266
|
timestamps?: boolean | undefined;
|
|
@@ -45792,6 +46286,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45792
46286
|
create_policy?: SExpr | undefined;
|
|
45793
46287
|
update_policy?: SExpr | undefined;
|
|
45794
46288
|
delete_policy?: SExpr | undefined;
|
|
46289
|
+
access_waivers?: {
|
|
46290
|
+
read?: string | undefined;
|
|
46291
|
+
create?: string | undefined;
|
|
46292
|
+
update?: string | undefined;
|
|
46293
|
+
delete?: string | undefined;
|
|
46294
|
+
} | undefined;
|
|
45795
46295
|
collection?: string | undefined;
|
|
45796
46296
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
45797
46297
|
timestamps?: boolean | undefined;
|
|
@@ -45956,6 +46456,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45956
46456
|
create_policy?: SExpr | undefined;
|
|
45957
46457
|
update_policy?: SExpr | undefined;
|
|
45958
46458
|
delete_policy?: SExpr | undefined;
|
|
46459
|
+
access_waivers?: {
|
|
46460
|
+
read?: string | undefined;
|
|
46461
|
+
create?: string | undefined;
|
|
46462
|
+
update?: string | undefined;
|
|
46463
|
+
delete?: string | undefined;
|
|
46464
|
+
} | undefined;
|
|
45959
46465
|
collection?: string | undefined;
|
|
45960
46466
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
45961
46467
|
timestamps?: boolean | undefined;
|
|
@@ -46120,6 +46626,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46120
46626
|
create_policy?: SExpr | undefined;
|
|
46121
46627
|
update_policy?: SExpr | undefined;
|
|
46122
46628
|
delete_policy?: SExpr | undefined;
|
|
46629
|
+
access_waivers?: {
|
|
46630
|
+
read?: string | undefined;
|
|
46631
|
+
create?: string | undefined;
|
|
46632
|
+
update?: string | undefined;
|
|
46633
|
+
delete?: string | undefined;
|
|
46634
|
+
} | undefined;
|
|
46123
46635
|
collection?: string | undefined;
|
|
46124
46636
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
46125
46637
|
timestamps?: boolean | undefined;
|
|
@@ -46945,6 +47457,22 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46945
47457
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
46946
47458
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
46947
47459
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
47460
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
47461
|
+
read: z.ZodOptional<z.ZodString>;
|
|
47462
|
+
create: z.ZodOptional<z.ZodString>;
|
|
47463
|
+
update: z.ZodOptional<z.ZodString>;
|
|
47464
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
47465
|
+
}, "strip", z.ZodTypeAny, {
|
|
47466
|
+
read?: string | undefined;
|
|
47467
|
+
create?: string | undefined;
|
|
47468
|
+
update?: string | undefined;
|
|
47469
|
+
delete?: string | undefined;
|
|
47470
|
+
}, {
|
|
47471
|
+
read?: string | undefined;
|
|
47472
|
+
create?: string | undefined;
|
|
47473
|
+
update?: string | undefined;
|
|
47474
|
+
delete?: string | undefined;
|
|
47475
|
+
}>>;
|
|
46948
47476
|
collection: z.ZodOptional<z.ZodString>;
|
|
46949
47477
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
46950
47478
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -46988,6 +47516,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46988
47516
|
create_policy?: SExpr | undefined;
|
|
46989
47517
|
update_policy?: SExpr | undefined;
|
|
46990
47518
|
delete_policy?: SExpr | undefined;
|
|
47519
|
+
access_waivers?: {
|
|
47520
|
+
read?: string | undefined;
|
|
47521
|
+
create?: string | undefined;
|
|
47522
|
+
update?: string | undefined;
|
|
47523
|
+
delete?: string | undefined;
|
|
47524
|
+
} | undefined;
|
|
46991
47525
|
collection?: string | undefined;
|
|
46992
47526
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
46993
47527
|
timestamps?: boolean | undefined;
|
|
@@ -47013,6 +47547,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47013
47547
|
create_policy?: SExpr | undefined;
|
|
47014
47548
|
update_policy?: SExpr | undefined;
|
|
47015
47549
|
delete_policy?: SExpr | undefined;
|
|
47550
|
+
access_waivers?: {
|
|
47551
|
+
read?: string | undefined;
|
|
47552
|
+
create?: string | undefined;
|
|
47553
|
+
update?: string | undefined;
|
|
47554
|
+
delete?: string | undefined;
|
|
47555
|
+
} | undefined;
|
|
47016
47556
|
collection?: string | undefined;
|
|
47017
47557
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47018
47558
|
timestamps?: boolean | undefined;
|
|
@@ -47177,6 +47717,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47177
47717
|
create_policy?: SExpr | undefined;
|
|
47178
47718
|
update_policy?: SExpr | undefined;
|
|
47179
47719
|
delete_policy?: SExpr | undefined;
|
|
47720
|
+
access_waivers?: {
|
|
47721
|
+
read?: string | undefined;
|
|
47722
|
+
create?: string | undefined;
|
|
47723
|
+
update?: string | undefined;
|
|
47724
|
+
delete?: string | undefined;
|
|
47725
|
+
} | undefined;
|
|
47180
47726
|
collection?: string | undefined;
|
|
47181
47727
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47182
47728
|
timestamps?: boolean | undefined;
|
|
@@ -47341,6 +47887,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47341
47887
|
create_policy?: SExpr | undefined;
|
|
47342
47888
|
update_policy?: SExpr | undefined;
|
|
47343
47889
|
delete_policy?: SExpr | undefined;
|
|
47890
|
+
access_waivers?: {
|
|
47891
|
+
read?: string | undefined;
|
|
47892
|
+
create?: string | undefined;
|
|
47893
|
+
update?: string | undefined;
|
|
47894
|
+
delete?: string | undefined;
|
|
47895
|
+
} | undefined;
|
|
47344
47896
|
collection?: string | undefined;
|
|
47345
47897
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47346
47898
|
timestamps?: boolean | undefined;
|
|
@@ -47551,6 +48103,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47551
48103
|
create_policy?: SExpr | undefined;
|
|
47552
48104
|
update_policy?: SExpr | undefined;
|
|
47553
48105
|
delete_policy?: SExpr | undefined;
|
|
48106
|
+
access_waivers?: {
|
|
48107
|
+
read?: string | undefined;
|
|
48108
|
+
create?: string | undefined;
|
|
48109
|
+
update?: string | undefined;
|
|
48110
|
+
delete?: string | undefined;
|
|
48111
|
+
} | undefined;
|
|
47554
48112
|
collection?: string | undefined;
|
|
47555
48113
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47556
48114
|
timestamps?: boolean | undefined;
|
|
@@ -47764,6 +48322,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47764
48322
|
create_policy?: SExpr | undefined;
|
|
47765
48323
|
update_policy?: SExpr | undefined;
|
|
47766
48324
|
delete_policy?: SExpr | undefined;
|
|
48325
|
+
access_waivers?: {
|
|
48326
|
+
read?: string | undefined;
|
|
48327
|
+
create?: string | undefined;
|
|
48328
|
+
update?: string | undefined;
|
|
48329
|
+
delete?: string | undefined;
|
|
48330
|
+
} | undefined;
|
|
47767
48331
|
collection?: string | undefined;
|
|
47768
48332
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
47769
48333
|
timestamps?: boolean | undefined;
|
|
@@ -48008,6 +48572,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48008
48572
|
create_policy?: SExpr | undefined;
|
|
48009
48573
|
update_policy?: SExpr | undefined;
|
|
48010
48574
|
delete_policy?: SExpr | undefined;
|
|
48575
|
+
access_waivers?: {
|
|
48576
|
+
read?: string | undefined;
|
|
48577
|
+
create?: string | undefined;
|
|
48578
|
+
update?: string | undefined;
|
|
48579
|
+
delete?: string | undefined;
|
|
48580
|
+
} | undefined;
|
|
48011
48581
|
collection?: string | undefined;
|
|
48012
48582
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
48013
48583
|
timestamps?: boolean | undefined;
|
|
@@ -48238,6 +48808,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48238
48808
|
create_policy?: SExpr | undefined;
|
|
48239
48809
|
update_policy?: SExpr | undefined;
|
|
48240
48810
|
delete_policy?: SExpr | undefined;
|
|
48811
|
+
access_waivers?: {
|
|
48812
|
+
read?: string | undefined;
|
|
48813
|
+
create?: string | undefined;
|
|
48814
|
+
update?: string | undefined;
|
|
48815
|
+
delete?: string | undefined;
|
|
48816
|
+
} | undefined;
|
|
48241
48817
|
collection?: string | undefined;
|
|
48242
48818
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
48243
48819
|
timestamps?: boolean | undefined;
|
|
@@ -48448,6 +49024,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48448
49024
|
create_policy?: SExpr | undefined;
|
|
48449
49025
|
update_policy?: SExpr | undefined;
|
|
48450
49026
|
delete_policy?: SExpr | undefined;
|
|
49027
|
+
access_waivers?: {
|
|
49028
|
+
read?: string | undefined;
|
|
49029
|
+
create?: string | undefined;
|
|
49030
|
+
update?: string | undefined;
|
|
49031
|
+
delete?: string | undefined;
|
|
49032
|
+
} | undefined;
|
|
48451
49033
|
collection?: string | undefined;
|
|
48452
49034
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
48453
49035
|
timestamps?: boolean | undefined;
|
|
@@ -49031,6 +49613,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49031
49613
|
create_policy?: SExpr | undefined;
|
|
49032
49614
|
update_policy?: SExpr | undefined;
|
|
49033
49615
|
delete_policy?: SExpr | undefined;
|
|
49616
|
+
access_waivers?: {
|
|
49617
|
+
read?: string | undefined;
|
|
49618
|
+
create?: string | undefined;
|
|
49619
|
+
update?: string | undefined;
|
|
49620
|
+
delete?: string | undefined;
|
|
49621
|
+
} | undefined;
|
|
49034
49622
|
collection?: string | undefined;
|
|
49035
49623
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
49036
49624
|
timestamps?: boolean | undefined;
|
|
@@ -49261,6 +49849,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49261
49849
|
create_policy?: SExpr | undefined;
|
|
49262
49850
|
update_policy?: SExpr | undefined;
|
|
49263
49851
|
delete_policy?: SExpr | undefined;
|
|
49852
|
+
access_waivers?: {
|
|
49853
|
+
read?: string | undefined;
|
|
49854
|
+
create?: string | undefined;
|
|
49855
|
+
update?: string | undefined;
|
|
49856
|
+
delete?: string | undefined;
|
|
49857
|
+
} | undefined;
|
|
49264
49858
|
collection?: string | undefined;
|
|
49265
49859
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
49266
49860
|
timestamps?: boolean | undefined;
|
|
@@ -49471,6 +50065,12 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49471
50065
|
create_policy?: SExpr | undefined;
|
|
49472
50066
|
update_policy?: SExpr | undefined;
|
|
49473
50067
|
delete_policy?: SExpr | undefined;
|
|
50068
|
+
access_waivers?: {
|
|
50069
|
+
read?: string | undefined;
|
|
50070
|
+
create?: string | undefined;
|
|
50071
|
+
update?: string | undefined;
|
|
50072
|
+
delete?: string | undefined;
|
|
50073
|
+
} | undefined;
|
|
49474
50074
|
collection?: string | undefined;
|
|
49475
50075
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
49476
50076
|
timestamps?: boolean | undefined;
|
|
@@ -54446,6 +55046,22 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54446
55046
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
54447
55047
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
54448
55048
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
55049
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
55050
|
+
read: z.ZodOptional<z.ZodString>;
|
|
55051
|
+
create: z.ZodOptional<z.ZodString>;
|
|
55052
|
+
update: z.ZodOptional<z.ZodString>;
|
|
55053
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
55054
|
+
}, "strip", z.ZodTypeAny, {
|
|
55055
|
+
read?: string | undefined;
|
|
55056
|
+
create?: string | undefined;
|
|
55057
|
+
update?: string | undefined;
|
|
55058
|
+
delete?: string | undefined;
|
|
55059
|
+
}, {
|
|
55060
|
+
read?: string | undefined;
|
|
55061
|
+
create?: string | undefined;
|
|
55062
|
+
update?: string | undefined;
|
|
55063
|
+
delete?: string | undefined;
|
|
55064
|
+
}>>;
|
|
54449
55065
|
collection: z.ZodOptional<z.ZodString>;
|
|
54450
55066
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
54451
55067
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -54489,6 +55105,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54489
55105
|
create_policy?: SExpr | undefined;
|
|
54490
55106
|
update_policy?: SExpr | undefined;
|
|
54491
55107
|
delete_policy?: SExpr | undefined;
|
|
55108
|
+
access_waivers?: {
|
|
55109
|
+
read?: string | undefined;
|
|
55110
|
+
create?: string | undefined;
|
|
55111
|
+
update?: string | undefined;
|
|
55112
|
+
delete?: string | undefined;
|
|
55113
|
+
} | undefined;
|
|
54492
55114
|
collection?: string | undefined;
|
|
54493
55115
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
54494
55116
|
timestamps?: boolean | undefined;
|
|
@@ -54514,6 +55136,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
54514
55136
|
create_policy?: SExpr | undefined;
|
|
54515
55137
|
update_policy?: SExpr | undefined;
|
|
54516
55138
|
delete_policy?: SExpr | undefined;
|
|
55139
|
+
access_waivers?: {
|
|
55140
|
+
read?: string | undefined;
|
|
55141
|
+
create?: string | undefined;
|
|
55142
|
+
update?: string | undefined;
|
|
55143
|
+
delete?: string | undefined;
|
|
55144
|
+
} | undefined;
|
|
54517
55145
|
collection?: string | undefined;
|
|
54518
55146
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
54519
55147
|
timestamps?: boolean | undefined;
|
|
@@ -55304,6 +55932,22 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55304
55932
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
55305
55933
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
55306
55934
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
55935
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
55936
|
+
read: z.ZodOptional<z.ZodString>;
|
|
55937
|
+
create: z.ZodOptional<z.ZodString>;
|
|
55938
|
+
update: z.ZodOptional<z.ZodString>;
|
|
55939
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
55940
|
+
}, "strip", z.ZodTypeAny, {
|
|
55941
|
+
read?: string | undefined;
|
|
55942
|
+
create?: string | undefined;
|
|
55943
|
+
update?: string | undefined;
|
|
55944
|
+
delete?: string | undefined;
|
|
55945
|
+
}, {
|
|
55946
|
+
read?: string | undefined;
|
|
55947
|
+
create?: string | undefined;
|
|
55948
|
+
update?: string | undefined;
|
|
55949
|
+
delete?: string | undefined;
|
|
55950
|
+
}>>;
|
|
55307
55951
|
collection: z.ZodOptional<z.ZodString>;
|
|
55308
55952
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
55309
55953
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -55347,6 +55991,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55347
55991
|
create_policy?: SExpr | undefined;
|
|
55348
55992
|
update_policy?: SExpr | undefined;
|
|
55349
55993
|
delete_policy?: SExpr | undefined;
|
|
55994
|
+
access_waivers?: {
|
|
55995
|
+
read?: string | undefined;
|
|
55996
|
+
create?: string | undefined;
|
|
55997
|
+
update?: string | undefined;
|
|
55998
|
+
delete?: string | undefined;
|
|
55999
|
+
} | undefined;
|
|
55350
56000
|
collection?: string | undefined;
|
|
55351
56001
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55352
56002
|
timestamps?: boolean | undefined;
|
|
@@ -55372,6 +56022,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55372
56022
|
create_policy?: SExpr | undefined;
|
|
55373
56023
|
update_policy?: SExpr | undefined;
|
|
55374
56024
|
delete_policy?: SExpr | undefined;
|
|
56025
|
+
access_waivers?: {
|
|
56026
|
+
read?: string | undefined;
|
|
56027
|
+
create?: string | undefined;
|
|
56028
|
+
update?: string | undefined;
|
|
56029
|
+
delete?: string | undefined;
|
|
56030
|
+
} | undefined;
|
|
55375
56031
|
collection?: string | undefined;
|
|
55376
56032
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55377
56033
|
timestamps?: boolean | undefined;
|
|
@@ -55536,6 +56192,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55536
56192
|
create_policy?: SExpr | undefined;
|
|
55537
56193
|
update_policy?: SExpr | undefined;
|
|
55538
56194
|
delete_policy?: SExpr | undefined;
|
|
56195
|
+
access_waivers?: {
|
|
56196
|
+
read?: string | undefined;
|
|
56197
|
+
create?: string | undefined;
|
|
56198
|
+
update?: string | undefined;
|
|
56199
|
+
delete?: string | undefined;
|
|
56200
|
+
} | undefined;
|
|
55539
56201
|
collection?: string | undefined;
|
|
55540
56202
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55541
56203
|
timestamps?: boolean | undefined;
|
|
@@ -55700,6 +56362,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55700
56362
|
create_policy?: SExpr | undefined;
|
|
55701
56363
|
update_policy?: SExpr | undefined;
|
|
55702
56364
|
delete_policy?: SExpr | undefined;
|
|
56365
|
+
access_waivers?: {
|
|
56366
|
+
read?: string | undefined;
|
|
56367
|
+
create?: string | undefined;
|
|
56368
|
+
update?: string | undefined;
|
|
56369
|
+
delete?: string | undefined;
|
|
56370
|
+
} | undefined;
|
|
55703
56371
|
collection?: string | undefined;
|
|
55704
56372
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
55705
56373
|
timestamps?: boolean | undefined;
|
|
@@ -56525,6 +57193,22 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56525
57193
|
create_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
56526
57194
|
update_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
56527
57195
|
delete_policy: z.ZodOptional<z.ZodType<SExpr, z.ZodTypeDef, SExpr>>;
|
|
57196
|
+
access_waivers: z.ZodOptional<z.ZodObject<{
|
|
57197
|
+
read: z.ZodOptional<z.ZodString>;
|
|
57198
|
+
create: z.ZodOptional<z.ZodString>;
|
|
57199
|
+
update: z.ZodOptional<z.ZodString>;
|
|
57200
|
+
delete: z.ZodOptional<z.ZodString>;
|
|
57201
|
+
}, "strip", z.ZodTypeAny, {
|
|
57202
|
+
read?: string | undefined;
|
|
57203
|
+
create?: string | undefined;
|
|
57204
|
+
update?: string | undefined;
|
|
57205
|
+
delete?: string | undefined;
|
|
57206
|
+
}, {
|
|
57207
|
+
read?: string | undefined;
|
|
57208
|
+
create?: string | undefined;
|
|
57209
|
+
update?: string | undefined;
|
|
57210
|
+
delete?: string | undefined;
|
|
57211
|
+
}>>;
|
|
56528
57212
|
collection: z.ZodOptional<z.ZodString>;
|
|
56529
57213
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
56530
57214
|
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
@@ -56568,6 +57252,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56568
57252
|
create_policy?: SExpr | undefined;
|
|
56569
57253
|
update_policy?: SExpr | undefined;
|
|
56570
57254
|
delete_policy?: SExpr | undefined;
|
|
57255
|
+
access_waivers?: {
|
|
57256
|
+
read?: string | undefined;
|
|
57257
|
+
create?: string | undefined;
|
|
57258
|
+
update?: string | undefined;
|
|
57259
|
+
delete?: string | undefined;
|
|
57260
|
+
} | undefined;
|
|
56571
57261
|
collection?: string | undefined;
|
|
56572
57262
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56573
57263
|
timestamps?: boolean | undefined;
|
|
@@ -56593,6 +57283,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56593
57283
|
create_policy?: SExpr | undefined;
|
|
56594
57284
|
update_policy?: SExpr | undefined;
|
|
56595
57285
|
delete_policy?: SExpr | undefined;
|
|
57286
|
+
access_waivers?: {
|
|
57287
|
+
read?: string | undefined;
|
|
57288
|
+
create?: string | undefined;
|
|
57289
|
+
update?: string | undefined;
|
|
57290
|
+
delete?: string | undefined;
|
|
57291
|
+
} | undefined;
|
|
56596
57292
|
collection?: string | undefined;
|
|
56597
57293
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56598
57294
|
timestamps?: boolean | undefined;
|
|
@@ -56757,6 +57453,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56757
57453
|
create_policy?: SExpr | undefined;
|
|
56758
57454
|
update_policy?: SExpr | undefined;
|
|
56759
57455
|
delete_policy?: SExpr | undefined;
|
|
57456
|
+
access_waivers?: {
|
|
57457
|
+
read?: string | undefined;
|
|
57458
|
+
create?: string | undefined;
|
|
57459
|
+
update?: string | undefined;
|
|
57460
|
+
delete?: string | undefined;
|
|
57461
|
+
} | undefined;
|
|
56760
57462
|
collection?: string | undefined;
|
|
56761
57463
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56762
57464
|
timestamps?: boolean | undefined;
|
|
@@ -56921,6 +57623,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56921
57623
|
create_policy?: SExpr | undefined;
|
|
56922
57624
|
update_policy?: SExpr | undefined;
|
|
56923
57625
|
delete_policy?: SExpr | undefined;
|
|
57626
|
+
access_waivers?: {
|
|
57627
|
+
read?: string | undefined;
|
|
57628
|
+
create?: string | undefined;
|
|
57629
|
+
update?: string | undefined;
|
|
57630
|
+
delete?: string | undefined;
|
|
57631
|
+
} | undefined;
|
|
56924
57632
|
collection?: string | undefined;
|
|
56925
57633
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
56926
57634
|
timestamps?: boolean | undefined;
|
|
@@ -57131,6 +57839,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57131
57839
|
create_policy?: SExpr | undefined;
|
|
57132
57840
|
update_policy?: SExpr | undefined;
|
|
57133
57841
|
delete_policy?: SExpr | undefined;
|
|
57842
|
+
access_waivers?: {
|
|
57843
|
+
read?: string | undefined;
|
|
57844
|
+
create?: string | undefined;
|
|
57845
|
+
update?: string | undefined;
|
|
57846
|
+
delete?: string | undefined;
|
|
57847
|
+
} | undefined;
|
|
57134
57848
|
collection?: string | undefined;
|
|
57135
57849
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
57136
57850
|
timestamps?: boolean | undefined;
|
|
@@ -57344,6 +58058,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57344
58058
|
create_policy?: SExpr | undefined;
|
|
57345
58059
|
update_policy?: SExpr | undefined;
|
|
57346
58060
|
delete_policy?: SExpr | undefined;
|
|
58061
|
+
access_waivers?: {
|
|
58062
|
+
read?: string | undefined;
|
|
58063
|
+
create?: string | undefined;
|
|
58064
|
+
update?: string | undefined;
|
|
58065
|
+
delete?: string | undefined;
|
|
58066
|
+
} | undefined;
|
|
57347
58067
|
collection?: string | undefined;
|
|
57348
58068
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
57349
58069
|
timestamps?: boolean | undefined;
|
|
@@ -57588,6 +58308,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57588
58308
|
create_policy?: SExpr | undefined;
|
|
57589
58309
|
update_policy?: SExpr | undefined;
|
|
57590
58310
|
delete_policy?: SExpr | undefined;
|
|
58311
|
+
access_waivers?: {
|
|
58312
|
+
read?: string | undefined;
|
|
58313
|
+
create?: string | undefined;
|
|
58314
|
+
update?: string | undefined;
|
|
58315
|
+
delete?: string | undefined;
|
|
58316
|
+
} | undefined;
|
|
57591
58317
|
collection?: string | undefined;
|
|
57592
58318
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
57593
58319
|
timestamps?: boolean | undefined;
|
|
@@ -57818,6 +58544,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57818
58544
|
create_policy?: SExpr | undefined;
|
|
57819
58545
|
update_policy?: SExpr | undefined;
|
|
57820
58546
|
delete_policy?: SExpr | undefined;
|
|
58547
|
+
access_waivers?: {
|
|
58548
|
+
read?: string | undefined;
|
|
58549
|
+
create?: string | undefined;
|
|
58550
|
+
update?: string | undefined;
|
|
58551
|
+
delete?: string | undefined;
|
|
58552
|
+
} | undefined;
|
|
57821
58553
|
collection?: string | undefined;
|
|
57822
58554
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
57823
58555
|
timestamps?: boolean | undefined;
|
|
@@ -58028,6 +58760,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58028
58760
|
create_policy?: SExpr | undefined;
|
|
58029
58761
|
update_policy?: SExpr | undefined;
|
|
58030
58762
|
delete_policy?: SExpr | undefined;
|
|
58763
|
+
access_waivers?: {
|
|
58764
|
+
read?: string | undefined;
|
|
58765
|
+
create?: string | undefined;
|
|
58766
|
+
update?: string | undefined;
|
|
58767
|
+
delete?: string | undefined;
|
|
58768
|
+
} | undefined;
|
|
58031
58769
|
collection?: string | undefined;
|
|
58032
58770
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
58033
58771
|
timestamps?: boolean | undefined;
|
|
@@ -58611,6 +59349,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58611
59349
|
create_policy?: SExpr | undefined;
|
|
58612
59350
|
update_policy?: SExpr | undefined;
|
|
58613
59351
|
delete_policy?: SExpr | undefined;
|
|
59352
|
+
access_waivers?: {
|
|
59353
|
+
read?: string | undefined;
|
|
59354
|
+
create?: string | undefined;
|
|
59355
|
+
update?: string | undefined;
|
|
59356
|
+
delete?: string | undefined;
|
|
59357
|
+
} | undefined;
|
|
58614
59358
|
collection?: string | undefined;
|
|
58615
59359
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
58616
59360
|
timestamps?: boolean | undefined;
|
|
@@ -58841,6 +59585,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58841
59585
|
create_policy?: SExpr | undefined;
|
|
58842
59586
|
update_policy?: SExpr | undefined;
|
|
58843
59587
|
delete_policy?: SExpr | undefined;
|
|
59588
|
+
access_waivers?: {
|
|
59589
|
+
read?: string | undefined;
|
|
59590
|
+
create?: string | undefined;
|
|
59591
|
+
update?: string | undefined;
|
|
59592
|
+
delete?: string | undefined;
|
|
59593
|
+
} | undefined;
|
|
58844
59594
|
collection?: string | undefined;
|
|
58845
59595
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
58846
59596
|
timestamps?: boolean | undefined;
|
|
@@ -59051,6 +59801,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59051
59801
|
create_policy?: SExpr | undefined;
|
|
59052
59802
|
update_policy?: SExpr | undefined;
|
|
59053
59803
|
delete_policy?: SExpr | undefined;
|
|
59804
|
+
access_waivers?: {
|
|
59805
|
+
read?: string | undefined;
|
|
59806
|
+
create?: string | undefined;
|
|
59807
|
+
update?: string | undefined;
|
|
59808
|
+
delete?: string | undefined;
|
|
59809
|
+
} | undefined;
|
|
59054
59810
|
collection?: string | undefined;
|
|
59055
59811
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
59056
59812
|
timestamps?: boolean | undefined;
|
|
@@ -59935,6 +60691,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59935
60691
|
create_policy?: SExpr | undefined;
|
|
59936
60692
|
update_policy?: SExpr | undefined;
|
|
59937
60693
|
delete_policy?: SExpr | undefined;
|
|
60694
|
+
access_waivers?: {
|
|
60695
|
+
read?: string | undefined;
|
|
60696
|
+
create?: string | undefined;
|
|
60697
|
+
update?: string | undefined;
|
|
60698
|
+
delete?: string | undefined;
|
|
60699
|
+
} | undefined;
|
|
59938
60700
|
collection?: string | undefined;
|
|
59939
60701
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
59940
60702
|
timestamps?: boolean | undefined;
|
|
@@ -60165,6 +60927,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60165
60927
|
create_policy?: SExpr | undefined;
|
|
60166
60928
|
update_policy?: SExpr | undefined;
|
|
60167
60929
|
delete_policy?: SExpr | undefined;
|
|
60930
|
+
access_waivers?: {
|
|
60931
|
+
read?: string | undefined;
|
|
60932
|
+
create?: string | undefined;
|
|
60933
|
+
update?: string | undefined;
|
|
60934
|
+
delete?: string | undefined;
|
|
60935
|
+
} | undefined;
|
|
60168
60936
|
collection?: string | undefined;
|
|
60169
60937
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
60170
60938
|
timestamps?: boolean | undefined;
|
|
@@ -60375,6 +61143,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60375
61143
|
create_policy?: SExpr | undefined;
|
|
60376
61144
|
update_policy?: SExpr | undefined;
|
|
60377
61145
|
delete_policy?: SExpr | undefined;
|
|
61146
|
+
access_waivers?: {
|
|
61147
|
+
read?: string | undefined;
|
|
61148
|
+
create?: string | undefined;
|
|
61149
|
+
update?: string | undefined;
|
|
61150
|
+
delete?: string | undefined;
|
|
61151
|
+
} | undefined;
|
|
60378
61152
|
collection?: string | undefined;
|
|
60379
61153
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
60380
61154
|
timestamps?: boolean | undefined;
|
|
@@ -61077,6 +61851,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61077
61851
|
create_policy?: SExpr | undefined;
|
|
61078
61852
|
update_policy?: SExpr | undefined;
|
|
61079
61853
|
delete_policy?: SExpr | undefined;
|
|
61854
|
+
access_waivers?: {
|
|
61855
|
+
read?: string | undefined;
|
|
61856
|
+
create?: string | undefined;
|
|
61857
|
+
update?: string | undefined;
|
|
61858
|
+
delete?: string | undefined;
|
|
61859
|
+
} | undefined;
|
|
61080
61860
|
collection?: string | undefined;
|
|
61081
61861
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
61082
61862
|
timestamps?: boolean | undefined;
|
|
@@ -61307,6 +62087,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61307
62087
|
create_policy?: SExpr | undefined;
|
|
61308
62088
|
update_policy?: SExpr | undefined;
|
|
61309
62089
|
delete_policy?: SExpr | undefined;
|
|
62090
|
+
access_waivers?: {
|
|
62091
|
+
read?: string | undefined;
|
|
62092
|
+
create?: string | undefined;
|
|
62093
|
+
update?: string | undefined;
|
|
62094
|
+
delete?: string | undefined;
|
|
62095
|
+
} | undefined;
|
|
61310
62096
|
collection?: string | undefined;
|
|
61311
62097
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
61312
62098
|
timestamps?: boolean | undefined;
|
|
@@ -61517,6 +62303,12 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61517
62303
|
create_policy?: SExpr | undefined;
|
|
61518
62304
|
update_policy?: SExpr | undefined;
|
|
61519
62305
|
delete_policy?: SExpr | undefined;
|
|
62306
|
+
access_waivers?: {
|
|
62307
|
+
read?: string | undefined;
|
|
62308
|
+
create?: string | undefined;
|
|
62309
|
+
update?: string | undefined;
|
|
62310
|
+
delete?: string | undefined;
|
|
62311
|
+
} | undefined;
|
|
61520
62312
|
collection?: string | undefined;
|
|
61521
62313
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
61522
62314
|
timestamps?: boolean | undefined;
|
|
@@ -62284,6 +63076,12 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
62284
63076
|
create_policy?: SExpr | undefined;
|
|
62285
63077
|
update_policy?: SExpr | undefined;
|
|
62286
63078
|
delete_policy?: SExpr | undefined;
|
|
63079
|
+
access_waivers?: {
|
|
63080
|
+
read?: string | undefined;
|
|
63081
|
+
create?: string | undefined;
|
|
63082
|
+
update?: string | undefined;
|
|
63083
|
+
delete?: string | undefined;
|
|
63084
|
+
} | undefined;
|
|
62287
63085
|
collection?: string | undefined;
|
|
62288
63086
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
62289
63087
|
timestamps?: boolean | undefined;
|
|
@@ -62514,6 +63312,12 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
62514
63312
|
create_policy?: SExpr | undefined;
|
|
62515
63313
|
update_policy?: SExpr | undefined;
|
|
62516
63314
|
delete_policy?: SExpr | undefined;
|
|
63315
|
+
access_waivers?: {
|
|
63316
|
+
read?: string | undefined;
|
|
63317
|
+
create?: string | undefined;
|
|
63318
|
+
update?: string | undefined;
|
|
63319
|
+
delete?: string | undefined;
|
|
63320
|
+
} | undefined;
|
|
62517
63321
|
collection?: string | undefined;
|
|
62518
63322
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
62519
63323
|
timestamps?: boolean | undefined;
|
|
@@ -62724,6 +63528,12 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
62724
63528
|
create_policy?: SExpr | undefined;
|
|
62725
63529
|
update_policy?: SExpr | undefined;
|
|
62726
63530
|
delete_policy?: SExpr | undefined;
|
|
63531
|
+
access_waivers?: {
|
|
63532
|
+
read?: string | undefined;
|
|
63533
|
+
create?: string | undefined;
|
|
63534
|
+
update?: string | undefined;
|
|
63535
|
+
delete?: string | undefined;
|
|
63536
|
+
} | undefined;
|
|
62727
63537
|
collection?: string | undefined;
|
|
62728
63538
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
62729
63539
|
timestamps?: boolean | undefined;
|
|
@@ -63426,6 +64236,12 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63426
64236
|
create_policy?: SExpr | undefined;
|
|
63427
64237
|
update_policy?: SExpr | undefined;
|
|
63428
64238
|
delete_policy?: SExpr | undefined;
|
|
64239
|
+
access_waivers?: {
|
|
64240
|
+
read?: string | undefined;
|
|
64241
|
+
create?: string | undefined;
|
|
64242
|
+
update?: string | undefined;
|
|
64243
|
+
delete?: string | undefined;
|
|
64244
|
+
} | undefined;
|
|
63429
64245
|
collection?: string | undefined;
|
|
63430
64246
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
63431
64247
|
timestamps?: boolean | undefined;
|
|
@@ -63656,6 +64472,12 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63656
64472
|
create_policy?: SExpr | undefined;
|
|
63657
64473
|
update_policy?: SExpr | undefined;
|
|
63658
64474
|
delete_policy?: SExpr | undefined;
|
|
64475
|
+
access_waivers?: {
|
|
64476
|
+
read?: string | undefined;
|
|
64477
|
+
create?: string | undefined;
|
|
64478
|
+
update?: string | undefined;
|
|
64479
|
+
delete?: string | undefined;
|
|
64480
|
+
} | undefined;
|
|
63659
64481
|
collection?: string | undefined;
|
|
63660
64482
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
63661
64483
|
timestamps?: boolean | undefined;
|
|
@@ -63866,6 +64688,12 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63866
64688
|
create_policy?: SExpr | undefined;
|
|
63867
64689
|
update_policy?: SExpr | undefined;
|
|
63868
64690
|
delete_policy?: SExpr | undefined;
|
|
64691
|
+
access_waivers?: {
|
|
64692
|
+
read?: string | undefined;
|
|
64693
|
+
create?: string | undefined;
|
|
64694
|
+
update?: string | undefined;
|
|
64695
|
+
delete?: string | undefined;
|
|
64696
|
+
} | undefined;
|
|
63869
64697
|
collection?: string | undefined;
|
|
63870
64698
|
instances?: Record<string, JsonValue>[] | undefined;
|
|
63871
64699
|
timestamps?: boolean | undefined;
|