@almadar/core 10.53.0 → 10.54.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 +4 -4
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CqTo1gAF.d.ts → effect-BlFO53UR.d.ts} +1 -1
- package/dist/{entityAccess-3QD5qbqw.d.ts → entityAccess-B28lOfc_.d.ts} +2 -2
- package/dist/{expression-Yf7qvvOs.d.ts → expression-Fk8bQWef.d.ts} +6 -1
- package/dist/factory/index.d.ts +5 -5
- package/dist/factory/index.js +6 -0
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +4 -4
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +10 -10
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +5 -5
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/index.d.ts +3 -3
- package/dist/{schema-h6xcymfn.d.ts → schema-BPC1Wuxb.d.ts} +95 -80
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/{trait-CnbGhs6A.d.ts → trait-RzDL-lSo.d.ts} +16 -16
- package/dist/types/index.d.ts +20 -10
- package/dist/types/index.js +12 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-DJquF4Ot.d.ts → types-8b5zy8ts.d.ts} +20 -3
- package/package.json +1 -1
- package/src/types/bindings.ts +13 -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-
|
|
2
|
-
import {
|
|
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-
|
|
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-RzDL-lSo.js';
|
|
2
|
+
import { J as JsonValue, E as Expression, S as SExpr, R as RuntimeValue } from './expression-Fk8bQWef.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-BlFO53UR.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -9398,6 +9398,21 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
9398
9398
|
* Reference format: "Alias.theme"
|
|
9399
9399
|
*/
|
|
9400
9400
|
type ThemeRef = ThemeDefinition | string;
|
|
9401
|
+
/**
|
|
9402
|
+
* NavItem - a single navigation entry rendered by a layout trait (e.g.
|
|
9403
|
+
* `AppShell.traits.AppLayout`'s `navItems`). `label` + `href` are required;
|
|
9404
|
+
* `icon`/`badge`/`children` are optional shaping knobs an author may set on a
|
|
9405
|
+
* call-site override. The `@pages` render sigil yields the minimal
|
|
9406
|
+
* `{ href, label }` form (one per inline page: `href = page.path`,
|
|
9407
|
+
* `label = page.name`), which is assignable to this type.
|
|
9408
|
+
*/
|
|
9409
|
+
interface NavItem {
|
|
9410
|
+
label: string;
|
|
9411
|
+
href: string;
|
|
9412
|
+
icon?: string;
|
|
9413
|
+
badge?: string;
|
|
9414
|
+
children?: JsonValue[];
|
|
9415
|
+
}
|
|
9401
9416
|
/**
|
|
9402
9417
|
* Checks if a theme reference is a string.
|
|
9403
9418
|
*
|
|
@@ -19111,19 +19126,19 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19111
19126
|
name: string;
|
|
19112
19127
|
fields: TraitEntityField[];
|
|
19113
19128
|
description?: string | undefined;
|
|
19129
|
+
pages?: string[] | undefined;
|
|
19114
19130
|
runtime?: boolean | undefined;
|
|
19115
19131
|
collection?: string | undefined;
|
|
19116
19132
|
timestamps?: boolean | undefined;
|
|
19117
|
-
pages?: string[] | undefined;
|
|
19118
19133
|
singleton?: boolean | undefined;
|
|
19119
19134
|
}, {
|
|
19120
19135
|
name: string;
|
|
19121
19136
|
fields: TraitEntityField[];
|
|
19122
19137
|
description?: string | undefined;
|
|
19138
|
+
pages?: string[] | undefined;
|
|
19123
19139
|
runtime?: boolean | undefined;
|
|
19124
19140
|
collection?: string | undefined;
|
|
19125
19141
|
timestamps?: boolean | undefined;
|
|
19126
|
-
pages?: string[] | undefined;
|
|
19127
19142
|
singleton?: boolean | undefined;
|
|
19128
19143
|
}>, "many">>;
|
|
19129
19144
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -19670,10 +19685,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19670
19685
|
name: string;
|
|
19671
19686
|
fields: TraitEntityField[];
|
|
19672
19687
|
description?: string | undefined;
|
|
19688
|
+
pages?: string[] | undefined;
|
|
19673
19689
|
runtime?: boolean | undefined;
|
|
19674
19690
|
collection?: string | undefined;
|
|
19675
19691
|
timestamps?: boolean | undefined;
|
|
19676
|
-
pages?: string[] | undefined;
|
|
19677
19692
|
singleton?: boolean | undefined;
|
|
19678
19693
|
}[] | undefined;
|
|
19679
19694
|
stateMachine?: {
|
|
@@ -19840,10 +19855,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19840
19855
|
name: string;
|
|
19841
19856
|
fields: TraitEntityField[];
|
|
19842
19857
|
description?: string | undefined;
|
|
19858
|
+
pages?: string[] | undefined;
|
|
19843
19859
|
runtime?: boolean | undefined;
|
|
19844
19860
|
collection?: string | undefined;
|
|
19845
19861
|
timestamps?: boolean | undefined;
|
|
19846
|
-
pages?: string[] | undefined;
|
|
19847
19862
|
singleton?: boolean | undefined;
|
|
19848
19863
|
}[] | undefined;
|
|
19849
19864
|
stateMachine?: {
|
|
@@ -20056,10 +20071,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20056
20071
|
name: string;
|
|
20057
20072
|
fields: TraitEntityField[];
|
|
20058
20073
|
description?: string | undefined;
|
|
20074
|
+
pages?: string[] | undefined;
|
|
20059
20075
|
runtime?: boolean | undefined;
|
|
20060
20076
|
collection?: string | undefined;
|
|
20061
20077
|
timestamps?: boolean | undefined;
|
|
20062
|
-
pages?: string[] | undefined;
|
|
20063
20078
|
singleton?: boolean | undefined;
|
|
20064
20079
|
}[] | undefined;
|
|
20065
20080
|
stateMachine?: {
|
|
@@ -20275,10 +20290,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20275
20290
|
name: string;
|
|
20276
20291
|
fields: TraitEntityField[];
|
|
20277
20292
|
description?: string | undefined;
|
|
20293
|
+
pages?: string[] | undefined;
|
|
20278
20294
|
runtime?: boolean | undefined;
|
|
20279
20295
|
collection?: string | undefined;
|
|
20280
20296
|
timestamps?: boolean | undefined;
|
|
20281
|
-
pages?: string[] | undefined;
|
|
20282
20297
|
singleton?: boolean | undefined;
|
|
20283
20298
|
}[] | undefined;
|
|
20284
20299
|
stateMachine?: {
|
|
@@ -20812,19 +20827,19 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20812
20827
|
name: string;
|
|
20813
20828
|
fields: TraitEntityField[];
|
|
20814
20829
|
description?: string | undefined;
|
|
20830
|
+
pages?: string[] | undefined;
|
|
20815
20831
|
runtime?: boolean | undefined;
|
|
20816
20832
|
collection?: string | undefined;
|
|
20817
20833
|
timestamps?: boolean | undefined;
|
|
20818
|
-
pages?: string[] | undefined;
|
|
20819
20834
|
singleton?: boolean | undefined;
|
|
20820
20835
|
}, {
|
|
20821
20836
|
name: string;
|
|
20822
20837
|
fields: TraitEntityField[];
|
|
20823
20838
|
description?: string | undefined;
|
|
20839
|
+
pages?: string[] | undefined;
|
|
20824
20840
|
runtime?: boolean | undefined;
|
|
20825
20841
|
collection?: string | undefined;
|
|
20826
20842
|
timestamps?: boolean | undefined;
|
|
20827
|
-
pages?: string[] | undefined;
|
|
20828
20843
|
singleton?: boolean | undefined;
|
|
20829
20844
|
}>, "many">>;
|
|
20830
20845
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -21371,10 +21386,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21371
21386
|
name: string;
|
|
21372
21387
|
fields: TraitEntityField[];
|
|
21373
21388
|
description?: string | undefined;
|
|
21389
|
+
pages?: string[] | undefined;
|
|
21374
21390
|
runtime?: boolean | undefined;
|
|
21375
21391
|
collection?: string | undefined;
|
|
21376
21392
|
timestamps?: boolean | undefined;
|
|
21377
|
-
pages?: string[] | undefined;
|
|
21378
21393
|
singleton?: boolean | undefined;
|
|
21379
21394
|
}[] | undefined;
|
|
21380
21395
|
stateMachine?: {
|
|
@@ -21541,10 +21556,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21541
21556
|
name: string;
|
|
21542
21557
|
fields: TraitEntityField[];
|
|
21543
21558
|
description?: string | undefined;
|
|
21559
|
+
pages?: string[] | undefined;
|
|
21544
21560
|
runtime?: boolean | undefined;
|
|
21545
21561
|
collection?: string | undefined;
|
|
21546
21562
|
timestamps?: boolean | undefined;
|
|
21547
|
-
pages?: string[] | undefined;
|
|
21548
21563
|
singleton?: boolean | undefined;
|
|
21549
21564
|
}[] | undefined;
|
|
21550
21565
|
stateMachine?: {
|
|
@@ -21757,10 +21772,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21757
21772
|
name: string;
|
|
21758
21773
|
fields: TraitEntityField[];
|
|
21759
21774
|
description?: string | undefined;
|
|
21775
|
+
pages?: string[] | undefined;
|
|
21760
21776
|
runtime?: boolean | undefined;
|
|
21761
21777
|
collection?: string | undefined;
|
|
21762
21778
|
timestamps?: boolean | undefined;
|
|
21763
|
-
pages?: string[] | undefined;
|
|
21764
21779
|
singleton?: boolean | undefined;
|
|
21765
21780
|
}[] | undefined;
|
|
21766
21781
|
stateMachine?: {
|
|
@@ -21976,10 +21991,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21976
21991
|
name: string;
|
|
21977
21992
|
fields: TraitEntityField[];
|
|
21978
21993
|
description?: string | undefined;
|
|
21994
|
+
pages?: string[] | undefined;
|
|
21979
21995
|
runtime?: boolean | undefined;
|
|
21980
21996
|
collection?: string | undefined;
|
|
21981
21997
|
timestamps?: boolean | undefined;
|
|
21982
|
-
pages?: string[] | undefined;
|
|
21983
21998
|
singleton?: boolean | undefined;
|
|
21984
21999
|
}[] | undefined;
|
|
21985
22000
|
stateMachine?: {
|
|
@@ -27003,19 +27018,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27003
27018
|
name: string;
|
|
27004
27019
|
fields: TraitEntityField[];
|
|
27005
27020
|
description?: string | undefined;
|
|
27021
|
+
pages?: string[] | undefined;
|
|
27006
27022
|
runtime?: boolean | undefined;
|
|
27007
27023
|
collection?: string | undefined;
|
|
27008
27024
|
timestamps?: boolean | undefined;
|
|
27009
|
-
pages?: string[] | undefined;
|
|
27010
27025
|
singleton?: boolean | undefined;
|
|
27011
27026
|
}, {
|
|
27012
27027
|
name: string;
|
|
27013
27028
|
fields: TraitEntityField[];
|
|
27014
27029
|
description?: string | undefined;
|
|
27030
|
+
pages?: string[] | undefined;
|
|
27015
27031
|
runtime?: boolean | undefined;
|
|
27016
27032
|
collection?: string | undefined;
|
|
27017
27033
|
timestamps?: boolean | undefined;
|
|
27018
|
-
pages?: string[] | undefined;
|
|
27019
27034
|
singleton?: boolean | undefined;
|
|
27020
27035
|
}>, "many">>;
|
|
27021
27036
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -27562,10 +27577,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27562
27577
|
name: string;
|
|
27563
27578
|
fields: TraitEntityField[];
|
|
27564
27579
|
description?: string | undefined;
|
|
27580
|
+
pages?: string[] | undefined;
|
|
27565
27581
|
runtime?: boolean | undefined;
|
|
27566
27582
|
collection?: string | undefined;
|
|
27567
27583
|
timestamps?: boolean | undefined;
|
|
27568
|
-
pages?: string[] | undefined;
|
|
27569
27584
|
singleton?: boolean | undefined;
|
|
27570
27585
|
}[] | undefined;
|
|
27571
27586
|
stateMachine?: {
|
|
@@ -27732,10 +27747,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27732
27747
|
name: string;
|
|
27733
27748
|
fields: TraitEntityField[];
|
|
27734
27749
|
description?: string | undefined;
|
|
27750
|
+
pages?: string[] | undefined;
|
|
27735
27751
|
runtime?: boolean | undefined;
|
|
27736
27752
|
collection?: string | undefined;
|
|
27737
27753
|
timestamps?: boolean | undefined;
|
|
27738
|
-
pages?: string[] | undefined;
|
|
27739
27754
|
singleton?: boolean | undefined;
|
|
27740
27755
|
}[] | undefined;
|
|
27741
27756
|
stateMachine?: {
|
|
@@ -28264,19 +28279,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28264
28279
|
name: string;
|
|
28265
28280
|
fields: TraitEntityField[];
|
|
28266
28281
|
description?: string | undefined;
|
|
28282
|
+
pages?: string[] | undefined;
|
|
28267
28283
|
runtime?: boolean | undefined;
|
|
28268
28284
|
collection?: string | undefined;
|
|
28269
28285
|
timestamps?: boolean | undefined;
|
|
28270
|
-
pages?: string[] | undefined;
|
|
28271
28286
|
singleton?: boolean | undefined;
|
|
28272
28287
|
}, {
|
|
28273
28288
|
name: string;
|
|
28274
28289
|
fields: TraitEntityField[];
|
|
28275
28290
|
description?: string | undefined;
|
|
28291
|
+
pages?: string[] | undefined;
|
|
28276
28292
|
runtime?: boolean | undefined;
|
|
28277
28293
|
collection?: string | undefined;
|
|
28278
28294
|
timestamps?: boolean | undefined;
|
|
28279
|
-
pages?: string[] | undefined;
|
|
28280
28295
|
singleton?: boolean | undefined;
|
|
28281
28296
|
}>, "many">>;
|
|
28282
28297
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -28823,10 +28838,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28823
28838
|
name: string;
|
|
28824
28839
|
fields: TraitEntityField[];
|
|
28825
28840
|
description?: string | undefined;
|
|
28841
|
+
pages?: string[] | undefined;
|
|
28826
28842
|
runtime?: boolean | undefined;
|
|
28827
28843
|
collection?: string | undefined;
|
|
28828
28844
|
timestamps?: boolean | undefined;
|
|
28829
|
-
pages?: string[] | undefined;
|
|
28830
28845
|
singleton?: boolean | undefined;
|
|
28831
28846
|
}[] | undefined;
|
|
28832
28847
|
stateMachine?: {
|
|
@@ -28993,10 +29008,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28993
29008
|
name: string;
|
|
28994
29009
|
fields: TraitEntityField[];
|
|
28995
29010
|
description?: string | undefined;
|
|
29011
|
+
pages?: string[] | undefined;
|
|
28996
29012
|
runtime?: boolean | undefined;
|
|
28997
29013
|
collection?: string | undefined;
|
|
28998
29014
|
timestamps?: boolean | undefined;
|
|
28999
|
-
pages?: string[] | undefined;
|
|
29000
29015
|
singleton?: boolean | undefined;
|
|
29001
29016
|
}[] | undefined;
|
|
29002
29017
|
stateMachine?: {
|
|
@@ -29209,10 +29224,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29209
29224
|
name: string;
|
|
29210
29225
|
fields: TraitEntityField[];
|
|
29211
29226
|
description?: string | undefined;
|
|
29227
|
+
pages?: string[] | undefined;
|
|
29212
29228
|
runtime?: boolean | undefined;
|
|
29213
29229
|
collection?: string | undefined;
|
|
29214
29230
|
timestamps?: boolean | undefined;
|
|
29215
|
-
pages?: string[] | undefined;
|
|
29216
29231
|
singleton?: boolean | undefined;
|
|
29217
29232
|
}[] | undefined;
|
|
29218
29233
|
stateMachine?: {
|
|
@@ -29428,10 +29443,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29428
29443
|
name: string;
|
|
29429
29444
|
fields: TraitEntityField[];
|
|
29430
29445
|
description?: string | undefined;
|
|
29446
|
+
pages?: string[] | undefined;
|
|
29431
29447
|
runtime?: boolean | undefined;
|
|
29432
29448
|
collection?: string | undefined;
|
|
29433
29449
|
timestamps?: boolean | undefined;
|
|
29434
|
-
pages?: string[] | undefined;
|
|
29435
29450
|
singleton?: boolean | undefined;
|
|
29436
29451
|
}[] | undefined;
|
|
29437
29452
|
stateMachine?: {
|
|
@@ -29914,10 +29929,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29914
29929
|
name: string;
|
|
29915
29930
|
fields: TraitEntityField[];
|
|
29916
29931
|
description?: string | undefined;
|
|
29932
|
+
pages?: string[] | undefined;
|
|
29917
29933
|
runtime?: boolean | undefined;
|
|
29918
29934
|
collection?: string | undefined;
|
|
29919
29935
|
timestamps?: boolean | undefined;
|
|
29920
|
-
pages?: string[] | undefined;
|
|
29921
29936
|
singleton?: boolean | undefined;
|
|
29922
29937
|
}[] | undefined;
|
|
29923
29938
|
stateMachine?: {
|
|
@@ -30130,10 +30145,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30130
30145
|
name: string;
|
|
30131
30146
|
fields: TraitEntityField[];
|
|
30132
30147
|
description?: string | undefined;
|
|
30148
|
+
pages?: string[] | undefined;
|
|
30133
30149
|
runtime?: boolean | undefined;
|
|
30134
30150
|
collection?: string | undefined;
|
|
30135
30151
|
timestamps?: boolean | undefined;
|
|
30136
|
-
pages?: string[] | undefined;
|
|
30137
30152
|
singleton?: boolean | undefined;
|
|
30138
30153
|
}[] | undefined;
|
|
30139
30154
|
stateMachine?: {
|
|
@@ -30955,10 +30970,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30955
30970
|
name: string;
|
|
30956
30971
|
fields: TraitEntityField[];
|
|
30957
30972
|
description?: string | undefined;
|
|
30973
|
+
pages?: string[] | undefined;
|
|
30958
30974
|
runtime?: boolean | undefined;
|
|
30959
30975
|
collection?: string | undefined;
|
|
30960
30976
|
timestamps?: boolean | undefined;
|
|
30961
|
-
pages?: string[] | undefined;
|
|
30962
30977
|
singleton?: boolean | undefined;
|
|
30963
30978
|
}[] | undefined;
|
|
30964
30979
|
stateMachine?: {
|
|
@@ -31171,10 +31186,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31171
31186
|
name: string;
|
|
31172
31187
|
fields: TraitEntityField[];
|
|
31173
31188
|
description?: string | undefined;
|
|
31189
|
+
pages?: string[] | undefined;
|
|
31174
31190
|
runtime?: boolean | undefined;
|
|
31175
31191
|
collection?: string | undefined;
|
|
31176
31192
|
timestamps?: boolean | undefined;
|
|
31177
|
-
pages?: string[] | undefined;
|
|
31178
31193
|
singleton?: boolean | undefined;
|
|
31179
31194
|
}[] | undefined;
|
|
31180
31195
|
stateMachine?: {
|
|
@@ -36385,19 +36400,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36385
36400
|
name: string;
|
|
36386
36401
|
fields: TraitEntityField[];
|
|
36387
36402
|
description?: string | undefined;
|
|
36403
|
+
pages?: string[] | undefined;
|
|
36388
36404
|
runtime?: boolean | undefined;
|
|
36389
36405
|
collection?: string | undefined;
|
|
36390
36406
|
timestamps?: boolean | undefined;
|
|
36391
|
-
pages?: string[] | undefined;
|
|
36392
36407
|
singleton?: boolean | undefined;
|
|
36393
36408
|
}, {
|
|
36394
36409
|
name: string;
|
|
36395
36410
|
fields: TraitEntityField[];
|
|
36396
36411
|
description?: string | undefined;
|
|
36412
|
+
pages?: string[] | undefined;
|
|
36397
36413
|
runtime?: boolean | undefined;
|
|
36398
36414
|
collection?: string | undefined;
|
|
36399
36415
|
timestamps?: boolean | undefined;
|
|
36400
|
-
pages?: string[] | undefined;
|
|
36401
36416
|
singleton?: boolean | undefined;
|
|
36402
36417
|
}>, "many">>;
|
|
36403
36418
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -36944,10 +36959,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36944
36959
|
name: string;
|
|
36945
36960
|
fields: TraitEntityField[];
|
|
36946
36961
|
description?: string | undefined;
|
|
36962
|
+
pages?: string[] | undefined;
|
|
36947
36963
|
runtime?: boolean | undefined;
|
|
36948
36964
|
collection?: string | undefined;
|
|
36949
36965
|
timestamps?: boolean | undefined;
|
|
36950
|
-
pages?: string[] | undefined;
|
|
36951
36966
|
singleton?: boolean | undefined;
|
|
36952
36967
|
}[] | undefined;
|
|
36953
36968
|
stateMachine?: {
|
|
@@ -37114,10 +37129,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37114
37129
|
name: string;
|
|
37115
37130
|
fields: TraitEntityField[];
|
|
37116
37131
|
description?: string | undefined;
|
|
37132
|
+
pages?: string[] | undefined;
|
|
37117
37133
|
runtime?: boolean | undefined;
|
|
37118
37134
|
collection?: string | undefined;
|
|
37119
37135
|
timestamps?: boolean | undefined;
|
|
37120
|
-
pages?: string[] | undefined;
|
|
37121
37136
|
singleton?: boolean | undefined;
|
|
37122
37137
|
}[] | undefined;
|
|
37123
37138
|
stateMachine?: {
|
|
@@ -37646,19 +37661,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37646
37661
|
name: string;
|
|
37647
37662
|
fields: TraitEntityField[];
|
|
37648
37663
|
description?: string | undefined;
|
|
37664
|
+
pages?: string[] | undefined;
|
|
37649
37665
|
runtime?: boolean | undefined;
|
|
37650
37666
|
collection?: string | undefined;
|
|
37651
37667
|
timestamps?: boolean | undefined;
|
|
37652
|
-
pages?: string[] | undefined;
|
|
37653
37668
|
singleton?: boolean | undefined;
|
|
37654
37669
|
}, {
|
|
37655
37670
|
name: string;
|
|
37656
37671
|
fields: TraitEntityField[];
|
|
37657
37672
|
description?: string | undefined;
|
|
37673
|
+
pages?: string[] | undefined;
|
|
37658
37674
|
runtime?: boolean | undefined;
|
|
37659
37675
|
collection?: string | undefined;
|
|
37660
37676
|
timestamps?: boolean | undefined;
|
|
37661
|
-
pages?: string[] | undefined;
|
|
37662
37677
|
singleton?: boolean | undefined;
|
|
37663
37678
|
}>, "many">>;
|
|
37664
37679
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -38205,10 +38220,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38205
38220
|
name: string;
|
|
38206
38221
|
fields: TraitEntityField[];
|
|
38207
38222
|
description?: string | undefined;
|
|
38223
|
+
pages?: string[] | undefined;
|
|
38208
38224
|
runtime?: boolean | undefined;
|
|
38209
38225
|
collection?: string | undefined;
|
|
38210
38226
|
timestamps?: boolean | undefined;
|
|
38211
|
-
pages?: string[] | undefined;
|
|
38212
38227
|
singleton?: boolean | undefined;
|
|
38213
38228
|
}[] | undefined;
|
|
38214
38229
|
stateMachine?: {
|
|
@@ -38375,10 +38390,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38375
38390
|
name: string;
|
|
38376
38391
|
fields: TraitEntityField[];
|
|
38377
38392
|
description?: string | undefined;
|
|
38393
|
+
pages?: string[] | undefined;
|
|
38378
38394
|
runtime?: boolean | undefined;
|
|
38379
38395
|
collection?: string | undefined;
|
|
38380
38396
|
timestamps?: boolean | undefined;
|
|
38381
|
-
pages?: string[] | undefined;
|
|
38382
38397
|
singleton?: boolean | undefined;
|
|
38383
38398
|
}[] | undefined;
|
|
38384
38399
|
stateMachine?: {
|
|
@@ -38591,10 +38606,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38591
38606
|
name: string;
|
|
38592
38607
|
fields: TraitEntityField[];
|
|
38593
38608
|
description?: string | undefined;
|
|
38609
|
+
pages?: string[] | undefined;
|
|
38594
38610
|
runtime?: boolean | undefined;
|
|
38595
38611
|
collection?: string | undefined;
|
|
38596
38612
|
timestamps?: boolean | undefined;
|
|
38597
|
-
pages?: string[] | undefined;
|
|
38598
38613
|
singleton?: boolean | undefined;
|
|
38599
38614
|
}[] | undefined;
|
|
38600
38615
|
stateMachine?: {
|
|
@@ -38810,10 +38825,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38810
38825
|
name: string;
|
|
38811
38826
|
fields: TraitEntityField[];
|
|
38812
38827
|
description?: string | undefined;
|
|
38828
|
+
pages?: string[] | undefined;
|
|
38813
38829
|
runtime?: boolean | undefined;
|
|
38814
38830
|
collection?: string | undefined;
|
|
38815
38831
|
timestamps?: boolean | undefined;
|
|
38816
|
-
pages?: string[] | undefined;
|
|
38817
38832
|
singleton?: boolean | undefined;
|
|
38818
38833
|
}[] | undefined;
|
|
38819
38834
|
stateMachine?: {
|
|
@@ -39296,10 +39311,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39296
39311
|
name: string;
|
|
39297
39312
|
fields: TraitEntityField[];
|
|
39298
39313
|
description?: string | undefined;
|
|
39314
|
+
pages?: string[] | undefined;
|
|
39299
39315
|
runtime?: boolean | undefined;
|
|
39300
39316
|
collection?: string | undefined;
|
|
39301
39317
|
timestamps?: boolean | undefined;
|
|
39302
|
-
pages?: string[] | undefined;
|
|
39303
39318
|
singleton?: boolean | undefined;
|
|
39304
39319
|
}[] | undefined;
|
|
39305
39320
|
stateMachine?: {
|
|
@@ -39512,10 +39527,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39512
39527
|
name: string;
|
|
39513
39528
|
fields: TraitEntityField[];
|
|
39514
39529
|
description?: string | undefined;
|
|
39530
|
+
pages?: string[] | undefined;
|
|
39515
39531
|
runtime?: boolean | undefined;
|
|
39516
39532
|
collection?: string | undefined;
|
|
39517
39533
|
timestamps?: boolean | undefined;
|
|
39518
|
-
pages?: string[] | undefined;
|
|
39519
39534
|
singleton?: boolean | undefined;
|
|
39520
39535
|
}[] | undefined;
|
|
39521
39536
|
stateMachine?: {
|
|
@@ -40337,10 +40352,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40337
40352
|
name: string;
|
|
40338
40353
|
fields: TraitEntityField[];
|
|
40339
40354
|
description?: string | undefined;
|
|
40355
|
+
pages?: string[] | undefined;
|
|
40340
40356
|
runtime?: boolean | undefined;
|
|
40341
40357
|
collection?: string | undefined;
|
|
40342
40358
|
timestamps?: boolean | undefined;
|
|
40343
|
-
pages?: string[] | undefined;
|
|
40344
40359
|
singleton?: boolean | undefined;
|
|
40345
40360
|
}[] | undefined;
|
|
40346
40361
|
stateMachine?: {
|
|
@@ -40553,10 +40568,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40553
40568
|
name: string;
|
|
40554
40569
|
fields: TraitEntityField[];
|
|
40555
40570
|
description?: string | undefined;
|
|
40571
|
+
pages?: string[] | undefined;
|
|
40556
40572
|
runtime?: boolean | undefined;
|
|
40557
40573
|
collection?: string | undefined;
|
|
40558
40574
|
timestamps?: boolean | undefined;
|
|
40559
|
-
pages?: string[] | undefined;
|
|
40560
40575
|
singleton?: boolean | undefined;
|
|
40561
40576
|
}[] | undefined;
|
|
40562
40577
|
stateMachine?: {
|
|
@@ -45774,19 +45789,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45774
45789
|
name: string;
|
|
45775
45790
|
fields: TraitEntityField[];
|
|
45776
45791
|
description?: string | undefined;
|
|
45792
|
+
pages?: string[] | undefined;
|
|
45777
45793
|
runtime?: boolean | undefined;
|
|
45778
45794
|
collection?: string | undefined;
|
|
45779
45795
|
timestamps?: boolean | undefined;
|
|
45780
|
-
pages?: string[] | undefined;
|
|
45781
45796
|
singleton?: boolean | undefined;
|
|
45782
45797
|
}, {
|
|
45783
45798
|
name: string;
|
|
45784
45799
|
fields: TraitEntityField[];
|
|
45785
45800
|
description?: string | undefined;
|
|
45801
|
+
pages?: string[] | undefined;
|
|
45786
45802
|
runtime?: boolean | undefined;
|
|
45787
45803
|
collection?: string | undefined;
|
|
45788
45804
|
timestamps?: boolean | undefined;
|
|
45789
|
-
pages?: string[] | undefined;
|
|
45790
45805
|
singleton?: boolean | undefined;
|
|
45791
45806
|
}>, "many">>;
|
|
45792
45807
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -46333,10 +46348,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46333
46348
|
name: string;
|
|
46334
46349
|
fields: TraitEntityField[];
|
|
46335
46350
|
description?: string | undefined;
|
|
46351
|
+
pages?: string[] | undefined;
|
|
46336
46352
|
runtime?: boolean | undefined;
|
|
46337
46353
|
collection?: string | undefined;
|
|
46338
46354
|
timestamps?: boolean | undefined;
|
|
46339
|
-
pages?: string[] | undefined;
|
|
46340
46355
|
singleton?: boolean | undefined;
|
|
46341
46356
|
}[] | undefined;
|
|
46342
46357
|
stateMachine?: {
|
|
@@ -46503,10 +46518,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46503
46518
|
name: string;
|
|
46504
46519
|
fields: TraitEntityField[];
|
|
46505
46520
|
description?: string | undefined;
|
|
46521
|
+
pages?: string[] | undefined;
|
|
46506
46522
|
runtime?: boolean | undefined;
|
|
46507
46523
|
collection?: string | undefined;
|
|
46508
46524
|
timestamps?: boolean | undefined;
|
|
46509
|
-
pages?: string[] | undefined;
|
|
46510
46525
|
singleton?: boolean | undefined;
|
|
46511
46526
|
}[] | undefined;
|
|
46512
46527
|
stateMachine?: {
|
|
@@ -47035,19 +47050,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47035
47050
|
name: string;
|
|
47036
47051
|
fields: TraitEntityField[];
|
|
47037
47052
|
description?: string | undefined;
|
|
47053
|
+
pages?: string[] | undefined;
|
|
47038
47054
|
runtime?: boolean | undefined;
|
|
47039
47055
|
collection?: string | undefined;
|
|
47040
47056
|
timestamps?: boolean | undefined;
|
|
47041
|
-
pages?: string[] | undefined;
|
|
47042
47057
|
singleton?: boolean | undefined;
|
|
47043
47058
|
}, {
|
|
47044
47059
|
name: string;
|
|
47045
47060
|
fields: TraitEntityField[];
|
|
47046
47061
|
description?: string | undefined;
|
|
47062
|
+
pages?: string[] | undefined;
|
|
47047
47063
|
runtime?: boolean | undefined;
|
|
47048
47064
|
collection?: string | undefined;
|
|
47049
47065
|
timestamps?: boolean | undefined;
|
|
47050
|
-
pages?: string[] | undefined;
|
|
47051
47066
|
singleton?: boolean | undefined;
|
|
47052
47067
|
}>, "many">>;
|
|
47053
47068
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -47594,10 +47609,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47594
47609
|
name: string;
|
|
47595
47610
|
fields: TraitEntityField[];
|
|
47596
47611
|
description?: string | undefined;
|
|
47612
|
+
pages?: string[] | undefined;
|
|
47597
47613
|
runtime?: boolean | undefined;
|
|
47598
47614
|
collection?: string | undefined;
|
|
47599
47615
|
timestamps?: boolean | undefined;
|
|
47600
|
-
pages?: string[] | undefined;
|
|
47601
47616
|
singleton?: boolean | undefined;
|
|
47602
47617
|
}[] | undefined;
|
|
47603
47618
|
stateMachine?: {
|
|
@@ -47764,10 +47779,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47764
47779
|
name: string;
|
|
47765
47780
|
fields: TraitEntityField[];
|
|
47766
47781
|
description?: string | undefined;
|
|
47782
|
+
pages?: string[] | undefined;
|
|
47767
47783
|
runtime?: boolean | undefined;
|
|
47768
47784
|
collection?: string | undefined;
|
|
47769
47785
|
timestamps?: boolean | undefined;
|
|
47770
|
-
pages?: string[] | undefined;
|
|
47771
47786
|
singleton?: boolean | undefined;
|
|
47772
47787
|
}[] | undefined;
|
|
47773
47788
|
stateMachine?: {
|
|
@@ -47980,10 +47995,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47980
47995
|
name: string;
|
|
47981
47996
|
fields: TraitEntityField[];
|
|
47982
47997
|
description?: string | undefined;
|
|
47998
|
+
pages?: string[] | undefined;
|
|
47983
47999
|
runtime?: boolean | undefined;
|
|
47984
48000
|
collection?: string | undefined;
|
|
47985
48001
|
timestamps?: boolean | undefined;
|
|
47986
|
-
pages?: string[] | undefined;
|
|
47987
48002
|
singleton?: boolean | undefined;
|
|
47988
48003
|
}[] | undefined;
|
|
47989
48004
|
stateMachine?: {
|
|
@@ -48199,10 +48214,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48199
48214
|
name: string;
|
|
48200
48215
|
fields: TraitEntityField[];
|
|
48201
48216
|
description?: string | undefined;
|
|
48217
|
+
pages?: string[] | undefined;
|
|
48202
48218
|
runtime?: boolean | undefined;
|
|
48203
48219
|
collection?: string | undefined;
|
|
48204
48220
|
timestamps?: boolean | undefined;
|
|
48205
|
-
pages?: string[] | undefined;
|
|
48206
48221
|
singleton?: boolean | undefined;
|
|
48207
48222
|
}[] | undefined;
|
|
48208
48223
|
stateMachine?: {
|
|
@@ -48685,10 +48700,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48685
48700
|
name: string;
|
|
48686
48701
|
fields: TraitEntityField[];
|
|
48687
48702
|
description?: string | undefined;
|
|
48703
|
+
pages?: string[] | undefined;
|
|
48688
48704
|
runtime?: boolean | undefined;
|
|
48689
48705
|
collection?: string | undefined;
|
|
48690
48706
|
timestamps?: boolean | undefined;
|
|
48691
|
-
pages?: string[] | undefined;
|
|
48692
48707
|
singleton?: boolean | undefined;
|
|
48693
48708
|
}[] | undefined;
|
|
48694
48709
|
stateMachine?: {
|
|
@@ -48901,10 +48916,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48901
48916
|
name: string;
|
|
48902
48917
|
fields: TraitEntityField[];
|
|
48903
48918
|
description?: string | undefined;
|
|
48919
|
+
pages?: string[] | undefined;
|
|
48904
48920
|
runtime?: boolean | undefined;
|
|
48905
48921
|
collection?: string | undefined;
|
|
48906
48922
|
timestamps?: boolean | undefined;
|
|
48907
|
-
pages?: string[] | undefined;
|
|
48908
48923
|
singleton?: boolean | undefined;
|
|
48909
48924
|
}[] | undefined;
|
|
48910
48925
|
stateMachine?: {
|
|
@@ -49726,10 +49741,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49726
49741
|
name: string;
|
|
49727
49742
|
fields: TraitEntityField[];
|
|
49728
49743
|
description?: string | undefined;
|
|
49744
|
+
pages?: string[] | undefined;
|
|
49729
49745
|
runtime?: boolean | undefined;
|
|
49730
49746
|
collection?: string | undefined;
|
|
49731
49747
|
timestamps?: boolean | undefined;
|
|
49732
|
-
pages?: string[] | undefined;
|
|
49733
49748
|
singleton?: boolean | undefined;
|
|
49734
49749
|
}[] | undefined;
|
|
49735
49750
|
stateMachine?: {
|
|
@@ -49942,10 +49957,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49942
49957
|
name: string;
|
|
49943
49958
|
fields: TraitEntityField[];
|
|
49944
49959
|
description?: string | undefined;
|
|
49960
|
+
pages?: string[] | undefined;
|
|
49945
49961
|
runtime?: boolean | undefined;
|
|
49946
49962
|
collection?: string | undefined;
|
|
49947
49963
|
timestamps?: boolean | undefined;
|
|
49948
|
-
pages?: string[] | undefined;
|
|
49949
49964
|
singleton?: boolean | undefined;
|
|
49950
49965
|
}[] | undefined;
|
|
49951
49966
|
stateMachine?: {
|
|
@@ -55510,19 +55525,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55510
55525
|
name: string;
|
|
55511
55526
|
fields: TraitEntityField[];
|
|
55512
55527
|
description?: string | undefined;
|
|
55528
|
+
pages?: string[] | undefined;
|
|
55513
55529
|
runtime?: boolean | undefined;
|
|
55514
55530
|
collection?: string | undefined;
|
|
55515
55531
|
timestamps?: boolean | undefined;
|
|
55516
|
-
pages?: string[] | undefined;
|
|
55517
55532
|
singleton?: boolean | undefined;
|
|
55518
55533
|
}, {
|
|
55519
55534
|
name: string;
|
|
55520
55535
|
fields: TraitEntityField[];
|
|
55521
55536
|
description?: string | undefined;
|
|
55537
|
+
pages?: string[] | undefined;
|
|
55522
55538
|
runtime?: boolean | undefined;
|
|
55523
55539
|
collection?: string | undefined;
|
|
55524
55540
|
timestamps?: boolean | undefined;
|
|
55525
|
-
pages?: string[] | undefined;
|
|
55526
55541
|
singleton?: boolean | undefined;
|
|
55527
55542
|
}>, "many">>;
|
|
55528
55543
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -56069,10 +56084,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56069
56084
|
name: string;
|
|
56070
56085
|
fields: TraitEntityField[];
|
|
56071
56086
|
description?: string | undefined;
|
|
56087
|
+
pages?: string[] | undefined;
|
|
56072
56088
|
runtime?: boolean | undefined;
|
|
56073
56089
|
collection?: string | undefined;
|
|
56074
56090
|
timestamps?: boolean | undefined;
|
|
56075
|
-
pages?: string[] | undefined;
|
|
56076
56091
|
singleton?: boolean | undefined;
|
|
56077
56092
|
}[] | undefined;
|
|
56078
56093
|
stateMachine?: {
|
|
@@ -56239,10 +56254,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56239
56254
|
name: string;
|
|
56240
56255
|
fields: TraitEntityField[];
|
|
56241
56256
|
description?: string | undefined;
|
|
56257
|
+
pages?: string[] | undefined;
|
|
56242
56258
|
runtime?: boolean | undefined;
|
|
56243
56259
|
collection?: string | undefined;
|
|
56244
56260
|
timestamps?: boolean | undefined;
|
|
56245
|
-
pages?: string[] | undefined;
|
|
56246
56261
|
singleton?: boolean | undefined;
|
|
56247
56262
|
}[] | undefined;
|
|
56248
56263
|
stateMachine?: {
|
|
@@ -56771,19 +56786,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56771
56786
|
name: string;
|
|
56772
56787
|
fields: TraitEntityField[];
|
|
56773
56788
|
description?: string | undefined;
|
|
56789
|
+
pages?: string[] | undefined;
|
|
56774
56790
|
runtime?: boolean | undefined;
|
|
56775
56791
|
collection?: string | undefined;
|
|
56776
56792
|
timestamps?: boolean | undefined;
|
|
56777
|
-
pages?: string[] | undefined;
|
|
56778
56793
|
singleton?: boolean | undefined;
|
|
56779
56794
|
}, {
|
|
56780
56795
|
name: string;
|
|
56781
56796
|
fields: TraitEntityField[];
|
|
56782
56797
|
description?: string | undefined;
|
|
56798
|
+
pages?: string[] | undefined;
|
|
56783
56799
|
runtime?: boolean | undefined;
|
|
56784
56800
|
collection?: string | undefined;
|
|
56785
56801
|
timestamps?: boolean | undefined;
|
|
56786
|
-
pages?: string[] | undefined;
|
|
56787
56802
|
singleton?: boolean | undefined;
|
|
56788
56803
|
}>, "many">>;
|
|
56789
56804
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -57330,10 +57345,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57330
57345
|
name: string;
|
|
57331
57346
|
fields: TraitEntityField[];
|
|
57332
57347
|
description?: string | undefined;
|
|
57348
|
+
pages?: string[] | undefined;
|
|
57333
57349
|
runtime?: boolean | undefined;
|
|
57334
57350
|
collection?: string | undefined;
|
|
57335
57351
|
timestamps?: boolean | undefined;
|
|
57336
|
-
pages?: string[] | undefined;
|
|
57337
57352
|
singleton?: boolean | undefined;
|
|
57338
57353
|
}[] | undefined;
|
|
57339
57354
|
stateMachine?: {
|
|
@@ -57500,10 +57515,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57500
57515
|
name: string;
|
|
57501
57516
|
fields: TraitEntityField[];
|
|
57502
57517
|
description?: string | undefined;
|
|
57518
|
+
pages?: string[] | undefined;
|
|
57503
57519
|
runtime?: boolean | undefined;
|
|
57504
57520
|
collection?: string | undefined;
|
|
57505
57521
|
timestamps?: boolean | undefined;
|
|
57506
|
-
pages?: string[] | undefined;
|
|
57507
57522
|
singleton?: boolean | undefined;
|
|
57508
57523
|
}[] | undefined;
|
|
57509
57524
|
stateMachine?: {
|
|
@@ -57716,10 +57731,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57716
57731
|
name: string;
|
|
57717
57732
|
fields: TraitEntityField[];
|
|
57718
57733
|
description?: string | undefined;
|
|
57734
|
+
pages?: string[] | undefined;
|
|
57719
57735
|
runtime?: boolean | undefined;
|
|
57720
57736
|
collection?: string | undefined;
|
|
57721
57737
|
timestamps?: boolean | undefined;
|
|
57722
|
-
pages?: string[] | undefined;
|
|
57723
57738
|
singleton?: boolean | undefined;
|
|
57724
57739
|
}[] | undefined;
|
|
57725
57740
|
stateMachine?: {
|
|
@@ -57935,10 +57950,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57935
57950
|
name: string;
|
|
57936
57951
|
fields: TraitEntityField[];
|
|
57937
57952
|
description?: string | undefined;
|
|
57953
|
+
pages?: string[] | undefined;
|
|
57938
57954
|
runtime?: boolean | undefined;
|
|
57939
57955
|
collection?: string | undefined;
|
|
57940
57956
|
timestamps?: boolean | undefined;
|
|
57941
|
-
pages?: string[] | undefined;
|
|
57942
57957
|
singleton?: boolean | undefined;
|
|
57943
57958
|
}[] | undefined;
|
|
57944
57959
|
stateMachine?: {
|
|
@@ -58421,10 +58436,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58421
58436
|
name: string;
|
|
58422
58437
|
fields: TraitEntityField[];
|
|
58423
58438
|
description?: string | undefined;
|
|
58439
|
+
pages?: string[] | undefined;
|
|
58424
58440
|
runtime?: boolean | undefined;
|
|
58425
58441
|
collection?: string | undefined;
|
|
58426
58442
|
timestamps?: boolean | undefined;
|
|
58427
|
-
pages?: string[] | undefined;
|
|
58428
58443
|
singleton?: boolean | undefined;
|
|
58429
58444
|
}[] | undefined;
|
|
58430
58445
|
stateMachine?: {
|
|
@@ -58637,10 +58652,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58637
58652
|
name: string;
|
|
58638
58653
|
fields: TraitEntityField[];
|
|
58639
58654
|
description?: string | undefined;
|
|
58655
|
+
pages?: string[] | undefined;
|
|
58640
58656
|
runtime?: boolean | undefined;
|
|
58641
58657
|
collection?: string | undefined;
|
|
58642
58658
|
timestamps?: boolean | undefined;
|
|
58643
|
-
pages?: string[] | undefined;
|
|
58644
58659
|
singleton?: boolean | undefined;
|
|
58645
58660
|
}[] | undefined;
|
|
58646
58661
|
stateMachine?: {
|
|
@@ -59462,10 +59477,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59462
59477
|
name: string;
|
|
59463
59478
|
fields: TraitEntityField[];
|
|
59464
59479
|
description?: string | undefined;
|
|
59480
|
+
pages?: string[] | undefined;
|
|
59465
59481
|
runtime?: boolean | undefined;
|
|
59466
59482
|
collection?: string | undefined;
|
|
59467
59483
|
timestamps?: boolean | undefined;
|
|
59468
|
-
pages?: string[] | undefined;
|
|
59469
59484
|
singleton?: boolean | undefined;
|
|
59470
59485
|
}[] | undefined;
|
|
59471
59486
|
stateMachine?: {
|
|
@@ -59678,10 +59693,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59678
59693
|
name: string;
|
|
59679
59694
|
fields: TraitEntityField[];
|
|
59680
59695
|
description?: string | undefined;
|
|
59696
|
+
pages?: string[] | undefined;
|
|
59681
59697
|
runtime?: boolean | undefined;
|
|
59682
59698
|
collection?: string | undefined;
|
|
59683
59699
|
timestamps?: boolean | undefined;
|
|
59684
|
-
pages?: string[] | undefined;
|
|
59685
59700
|
singleton?: boolean | undefined;
|
|
59686
59701
|
}[] | undefined;
|
|
59687
59702
|
stateMachine?: {
|
|
@@ -60804,10 +60819,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60804
60819
|
name: string;
|
|
60805
60820
|
fields: TraitEntityField[];
|
|
60806
60821
|
description?: string | undefined;
|
|
60822
|
+
pages?: string[] | undefined;
|
|
60807
60823
|
runtime?: boolean | undefined;
|
|
60808
60824
|
collection?: string | undefined;
|
|
60809
60825
|
timestamps?: boolean | undefined;
|
|
60810
|
-
pages?: string[] | undefined;
|
|
60811
60826
|
singleton?: boolean | undefined;
|
|
60812
60827
|
}[] | undefined;
|
|
60813
60828
|
stateMachine?: {
|
|
@@ -61020,10 +61035,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61020
61035
|
name: string;
|
|
61021
61036
|
fields: TraitEntityField[];
|
|
61022
61037
|
description?: string | undefined;
|
|
61038
|
+
pages?: string[] | undefined;
|
|
61023
61039
|
runtime?: boolean | undefined;
|
|
61024
61040
|
collection?: string | undefined;
|
|
61025
61041
|
timestamps?: boolean | undefined;
|
|
61026
|
-
pages?: string[] | undefined;
|
|
61027
61042
|
singleton?: boolean | undefined;
|
|
61028
61043
|
}[] | undefined;
|
|
61029
61044
|
stateMachine?: {
|
|
@@ -61964,10 +61979,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61964
61979
|
name: string;
|
|
61965
61980
|
fields: TraitEntityField[];
|
|
61966
61981
|
description?: string | undefined;
|
|
61982
|
+
pages?: string[] | undefined;
|
|
61967
61983
|
runtime?: boolean | undefined;
|
|
61968
61984
|
collection?: string | undefined;
|
|
61969
61985
|
timestamps?: boolean | undefined;
|
|
61970
|
-
pages?: string[] | undefined;
|
|
61971
61986
|
singleton?: boolean | undefined;
|
|
61972
61987
|
}[] | undefined;
|
|
61973
61988
|
stateMachine?: {
|
|
@@ -62180,10 +62195,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
62180
62195
|
name: string;
|
|
62181
62196
|
fields: TraitEntityField[];
|
|
62182
62197
|
description?: string | undefined;
|
|
62198
|
+
pages?: string[] | undefined;
|
|
62183
62199
|
runtime?: boolean | undefined;
|
|
62184
62200
|
collection?: string | undefined;
|
|
62185
62201
|
timestamps?: boolean | undefined;
|
|
62186
|
-
pages?: string[] | undefined;
|
|
62187
62202
|
singleton?: boolean | undefined;
|
|
62188
62203
|
}[] | undefined;
|
|
62189
62204
|
stateMachine?: {
|
|
@@ -63189,10 +63204,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63189
63204
|
name: string;
|
|
63190
63205
|
fields: TraitEntityField[];
|
|
63191
63206
|
description?: string | undefined;
|
|
63207
|
+
pages?: string[] | undefined;
|
|
63192
63208
|
runtime?: boolean | undefined;
|
|
63193
63209
|
collection?: string | undefined;
|
|
63194
63210
|
timestamps?: boolean | undefined;
|
|
63195
|
-
pages?: string[] | undefined;
|
|
63196
63211
|
singleton?: boolean | undefined;
|
|
63197
63212
|
}[] | undefined;
|
|
63198
63213
|
stateMachine?: {
|
|
@@ -63405,10 +63420,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63405
63420
|
name: string;
|
|
63406
63421
|
fields: TraitEntityField[];
|
|
63407
63422
|
description?: string | undefined;
|
|
63423
|
+
pages?: string[] | undefined;
|
|
63408
63424
|
runtime?: boolean | undefined;
|
|
63409
63425
|
collection?: string | undefined;
|
|
63410
63426
|
timestamps?: boolean | undefined;
|
|
63411
|
-
pages?: string[] | undefined;
|
|
63412
63427
|
singleton?: boolean | undefined;
|
|
63413
63428
|
}[] | undefined;
|
|
63414
63429
|
stateMachine?: {
|
|
@@ -64349,10 +64364,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64349
64364
|
name: string;
|
|
64350
64365
|
fields: TraitEntityField[];
|
|
64351
64366
|
description?: string | undefined;
|
|
64367
|
+
pages?: string[] | undefined;
|
|
64352
64368
|
runtime?: boolean | undefined;
|
|
64353
64369
|
collection?: string | undefined;
|
|
64354
64370
|
timestamps?: boolean | undefined;
|
|
64355
|
-
pages?: string[] | undefined;
|
|
64356
64371
|
singleton?: boolean | undefined;
|
|
64357
64372
|
}[] | undefined;
|
|
64358
64373
|
stateMachine?: {
|
|
@@ -64565,10 +64580,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64565
64580
|
name: string;
|
|
64566
64581
|
fields: TraitEntityField[];
|
|
64567
64582
|
description?: string | undefined;
|
|
64583
|
+
pages?: string[] | undefined;
|
|
64568
64584
|
runtime?: boolean | undefined;
|
|
64569
64585
|
collection?: string | undefined;
|
|
64570
64586
|
timestamps?: boolean | undefined;
|
|
64571
|
-
pages?: string[] | undefined;
|
|
64572
64587
|
singleton?: boolean | undefined;
|
|
64573
64588
|
}[] | undefined;
|
|
64574
64589
|
stateMachine?: {
|
|
@@ -65386,4 +65401,4 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
65386
65401
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
65387
65402
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
65388
65403
|
|
|
65389
|
-
export { EntityRefStringSchema as $, AGENT_DOMAIN_CATEGORIES as A, type DesignPreferences as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferencesInput as F, DesignPreferencesSchema as G, type DesignTokens as H, type DesignTokensInput as I, DesignTokensSchema as J, type DomainCategory as K, DomainCategorySchema as L, type DomainContext as M, type DomainContextInput as N, type OrbitalSchema as O, type PageRef as P, DomainContextSchema as Q, type DomainVocabulary as R, DomainVocabularySchema as S, type ElevationSlice as T, type UseDeclaration as U, ElevationSliceSchema as V, type ElevationTokens as W, ElevationTokensSchema as X, type EntityCall as Y, EntityCallSchema as Z, EntityRefSchema as _, type OrbitalDefinition as a,
|
|
65404
|
+
export { EntityRefStringSchema as $, AGENT_DOMAIN_CATEGORIES as A, type DesignPreferences as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferencesInput as F, DesignPreferencesSchema as G, type DesignTokens as H, type DesignTokensInput as I, DesignTokensSchema as J, type DomainCategory as K, DomainCategorySchema as L, type DomainContext as M, type DomainContextInput as N, type OrbitalSchema as O, type PageRef as P, DomainContextSchema as Q, type DomainVocabulary as R, DomainVocabularySchema as S, type ElevationSlice as T, type UseDeclaration as U, ElevationSliceSchema as V, type ElevationTokens as W, ElevationTokensSchema as X, type EntityCall as Y, EntityCallSchema as Z, EntityRefSchema as _, type OrbitalDefinition as a, PageRefStringSchema as a$, type EntitySemanticRole as a0, EntitySemanticRoleSchema as a1, type EventListener as a2, EventListenerSchema as a3, type EventSemanticRole as a4, EventSemanticRoleSchema as a5, type EventSource as a6, EventSourceSchema as a7, type Orbital as a8, type GameSubCategory as a9, type MotionIntentMap as aA, MotionIntentMapSchema as aB, MotionIntentSchema as aC, type MotionSlice as aD, MotionSliceSchema as aE, type MotionTokens as aF, MotionTokensSchema as aG, type NavItem as aH, type NodeClassification as aI, NodeClassificationSchema as aJ, type OrbitalConfig as aK, type OrbitalConfigInput as aL, OrbitalConfigSchema as aM, OrbitalDefinitionSchema as aN, type OrbitalInput as aO, type OrbitalPageInput as aP, OrbitalPageSchema as aQ, type OrbitalPageStrictInput as aR, OrbitalPageStrictSchema as aS, type OrbitalSchemaInput as aT, OrbitalSchemaSchema as aU, type OrbitalSchemaWithTraits as aV, type OrbitalUnit as aW, OrbitalUnitSchema as aX, OrbitalSchema$1 as aY, PageRefObjectSchema as aZ, PageRefSchema as a_, GameSubCategorySchema as aa, type GeometrySlice as ab, GeometrySliceSchema as ac, type GeometryTokens as ad, GeometryTokensSchema as ae, type IconFamily as af, IconFamilySchema as ag, type IconographySlice as ah, IconographySliceSchema as ai, type IconographyTokens as aj, IconographyTokensSchema as ak, type IllustrationSlice as al, IllustrationSliceSchema as am, type IllustrationStyle as an, IllustrationStyleSchema as ao, type IllustrationTokens as ap, IllustrationTokensSchema as aq, type MotionDurationKey as ar, MotionDurationKeySchema as as, type MotionDurationPalette as at, MotionDurationPaletteSchema as au, type MotionEasingKey as av, MotionEasingKeySchema as aw, type MotionEasingPalette as ax, MotionEasingPaletteSchema as ay, type MotionIntent as az, type Page as b, safeParseOrbitalSchema as b$, PageSchema as b0, type PageTraitRef as b1, PageTraitRefSchema as b2, type RelatedLink as b3, RelatedLinkSchema as b4, type SchemaMetadata as b5, SchemaMetadataSchema as b6, type SkinSpec as b7, SkinSpecSchema as b8, type SpacingScale as b9, type TypeSlice as bA, TypeSliceSchema as bB, type TypeSlot as bC, TypeSlotSchema as bD, type TypeWeight as bE, TypeWeightSchema as bF, type UXHints as bG, UXHintsSchema as bH, UseDeclarationSchema as bI, type UserPersona as bJ, type UserPersonaInput as bK, UserPersonaSchema as bL, type ViewType as bM, ViewTypeSchema as bN, isEntityCall as bO, isEntityReference as bP, isEntityReferenceAny as bQ, isImportedTraitRef as bR, isOrbitalDefinition as bS, isPageReference as bT, isPageReferenceObject as bU, isPageReferenceString as bV, isThemeReference as bW, parseEntityRef as bX, parseImportedTraitRef as bY, parseOrbitalSchema as bZ, parsePageRef as b_, SpacingScaleSchema as ba, type StateSemanticRole as bb, StateSemanticRoleSchema as bc, type SuggestedGuard as bd, SuggestedGuardSchema as be, type ThemeDefinition as bf, ThemeDefinitionSchema as bg, type ThemeRef as bh, ThemeRefSchema as bi, ThemeRefStringSchema as bj, type ThemeTokens as bk, ThemeTokensSchema as bl, type ThemeVariant as bm, ThemeVariantSchema as bn, type TypeIntent as bo, type TypeIntentMap as bp, TypeIntentMapSchema as bq, TypeIntentSchema as br, type TypeScale as bs, type TypeScaleEntry as bt, TypeScaleEntrySchema as bu, TypeScaleSchema as bv, type TypeScaleTokens as bw, TypeScaleTokensSchema as bx, type TypeSizeKey as by, TypeSizeKeySchema as bz, type PageRefObject as c, type OrbitalPage as d, ALLOWED_CUSTOM_COMPONENTS as e, type AgentDomainCategory as f, AgentDomainCategorySchema as g, type AllowedCustomComponent as h, ColorSliceSchema as i, type ColorTokens as j, ColorTokensSchema as k, type ComputedEventContract as l, ComputedEventContractSchema as m, type ComputedEventListener as n, ComputedEventListenerSchema as o, type ConfigProvenanceRecord as p, ConfigProvenanceRecordSchema as q, type CustomPatternDefinition as r, type CustomPatternDefinitionInput as s, CustomPatternDefinitionSchema as t, type CustomPatternMap as u, type CustomPatternMapInput as v, CustomPatternMapSchema as w, DensitySliceSchema as x, type DensityTokens as y, DensityTokensSchema as z };
|