@almadar/core 10.53.0 → 10.55.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 +6 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CqTo1gAF.d.ts → effect-DxD-XTI8.d.ts} +2 -2
- package/dist/{entityAccess-3QD5qbqw.d.ts → entityAccess-JTWGFDja.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 +6 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +10 -10
- package/dist/index.js +34 -7
- 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/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +8 -1
- package/dist/patterns/index.d.ts +13 -6
- package/dist/patterns/index.js +10 -3
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +1 -1
- package/dist/patterns/registry.json +1 -1
- package/dist/{schema-h6xcymfn.d.ts → schema-0C1bXRFm.d.ts} +172 -80
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/{trait-CnbGhs6A.d.ts → trait-WnYkvPdZ.d.ts} +16 -16
- package/dist/types/index.d.ts +20 -10
- package/dist/types/index.js +18 -4
- package/dist/types/index.js.map +1 -1
- package/dist/{types-DJquF4Ot.d.ts → types-C4YztU2N.d.ts} +33 -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-WnYkvPdZ.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-DxD-XTI8.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -68,6 +68,11 @@ type OrbitalPage = {
|
|
|
68
68
|
traits?: PageTraitRef[];
|
|
69
69
|
/** Is this the initial page for navigation? */
|
|
70
70
|
isInitial?: boolean;
|
|
71
|
+
/** Nav icon name — `@icon "..."` annotation on the page declaration. */
|
|
72
|
+
icon?: string;
|
|
73
|
+
/** Human nav label — `@label "..."` annotation; when absent, a label is
|
|
74
|
+
* derived (strip a trailing `Page` suffix from `name`). */
|
|
75
|
+
label?: string;
|
|
71
76
|
};
|
|
72
77
|
/**
|
|
73
78
|
* Strict Zod schema for trait-driven pages.
|
|
@@ -98,6 +103,8 @@ declare const OrbitalPageStrictSchema: z.ZodObject<{
|
|
|
98
103
|
linkedEntityId?: string | undefined;
|
|
99
104
|
}>, "many">;
|
|
100
105
|
title: z.ZodOptional<z.ZodString>;
|
|
106
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
107
|
+
label: z.ZodOptional<z.ZodString>;
|
|
101
108
|
}, "strict", z.ZodTypeAny, {
|
|
102
109
|
path: string;
|
|
103
110
|
name: string;
|
|
@@ -110,6 +117,8 @@ declare const OrbitalPageStrictSchema: z.ZodObject<{
|
|
|
110
117
|
}[];
|
|
111
118
|
primaryEntity: string;
|
|
112
119
|
id?: PageId | undefined;
|
|
120
|
+
icon?: string | undefined;
|
|
121
|
+
label?: string | undefined;
|
|
113
122
|
title?: string | undefined;
|
|
114
123
|
}, {
|
|
115
124
|
path: string;
|
|
@@ -123,6 +132,8 @@ declare const OrbitalPageStrictSchema: z.ZodObject<{
|
|
|
123
132
|
}[];
|
|
124
133
|
primaryEntity: string;
|
|
125
134
|
id?: string | undefined;
|
|
135
|
+
icon?: string | undefined;
|
|
136
|
+
label?: string | undefined;
|
|
126
137
|
title?: string | undefined;
|
|
127
138
|
}>;
|
|
128
139
|
/**
|
|
@@ -157,10 +168,14 @@ declare const OrbitalPageSchema: z.ZodObject<{
|
|
|
157
168
|
linkedEntityId?: string | undefined;
|
|
158
169
|
}>, "many">>;
|
|
159
170
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
171
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
172
|
+
label: z.ZodOptional<z.ZodString>;
|
|
160
173
|
}, "strict", z.ZodTypeAny, {
|
|
161
174
|
path: string;
|
|
162
175
|
name: string;
|
|
163
176
|
id?: PageId | undefined;
|
|
177
|
+
icon?: string | undefined;
|
|
178
|
+
label?: string | undefined;
|
|
164
179
|
title?: string | undefined;
|
|
165
180
|
traits?: {
|
|
166
181
|
ref: string;
|
|
@@ -176,6 +191,8 @@ declare const OrbitalPageSchema: z.ZodObject<{
|
|
|
176
191
|
path: string;
|
|
177
192
|
name: string;
|
|
178
193
|
id?: string | undefined;
|
|
194
|
+
icon?: string | undefined;
|
|
195
|
+
label?: string | undefined;
|
|
179
196
|
title?: string | undefined;
|
|
180
197
|
traits?: {
|
|
181
198
|
ref: string;
|
|
@@ -220,10 +237,14 @@ declare const PageSchema: z.ZodObject<{
|
|
|
220
237
|
linkedEntityId?: string | undefined;
|
|
221
238
|
}>, "many">>;
|
|
222
239
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
240
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
241
|
+
label: z.ZodOptional<z.ZodString>;
|
|
223
242
|
}, "strict", z.ZodTypeAny, {
|
|
224
243
|
path: string;
|
|
225
244
|
name: string;
|
|
226
245
|
id?: PageId | undefined;
|
|
246
|
+
icon?: string | undefined;
|
|
247
|
+
label?: string | undefined;
|
|
227
248
|
title?: string | undefined;
|
|
228
249
|
traits?: {
|
|
229
250
|
ref: string;
|
|
@@ -239,6 +260,8 @@ declare const PageSchema: z.ZodObject<{
|
|
|
239
260
|
path: string;
|
|
240
261
|
name: string;
|
|
241
262
|
id?: string | undefined;
|
|
263
|
+
icon?: string | undefined;
|
|
264
|
+
label?: string | undefined;
|
|
242
265
|
title?: string | undefined;
|
|
243
266
|
traits?: {
|
|
244
267
|
ref: string;
|
|
@@ -9398,6 +9421,21 @@ declare const ThemeDefinitionSchema: z.ZodObject<{
|
|
|
9398
9421
|
* Reference format: "Alias.theme"
|
|
9399
9422
|
*/
|
|
9400
9423
|
type ThemeRef = ThemeDefinition | string;
|
|
9424
|
+
/**
|
|
9425
|
+
* NavItem - a single navigation entry rendered by a layout trait (e.g.
|
|
9426
|
+
* `AppShell.traits.AppLayout`'s `navItems`). `label` + `href` are required;
|
|
9427
|
+
* `icon`/`badge`/`children` are optional shaping knobs an author may set on a
|
|
9428
|
+
* call-site override. The `@pages` render sigil yields the minimal
|
|
9429
|
+
* `{ href, label }` form (one per inline page: `href = page.path`,
|
|
9430
|
+
* `label = page.name`), which is assignable to this type.
|
|
9431
|
+
*/
|
|
9432
|
+
interface NavItem {
|
|
9433
|
+
label: string;
|
|
9434
|
+
href: string;
|
|
9435
|
+
icon?: string;
|
|
9436
|
+
badge?: string;
|
|
9437
|
+
children?: JsonValue[];
|
|
9438
|
+
}
|
|
9401
9439
|
/**
|
|
9402
9440
|
* Checks if a theme reference is a string.
|
|
9403
9441
|
*
|
|
@@ -19111,19 +19149,19 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19111
19149
|
name: string;
|
|
19112
19150
|
fields: TraitEntityField[];
|
|
19113
19151
|
description?: string | undefined;
|
|
19152
|
+
pages?: string[] | undefined;
|
|
19114
19153
|
runtime?: boolean | undefined;
|
|
19115
19154
|
collection?: string | undefined;
|
|
19116
19155
|
timestamps?: boolean | undefined;
|
|
19117
|
-
pages?: string[] | undefined;
|
|
19118
19156
|
singleton?: boolean | undefined;
|
|
19119
19157
|
}, {
|
|
19120
19158
|
name: string;
|
|
19121
19159
|
fields: TraitEntityField[];
|
|
19122
19160
|
description?: string | undefined;
|
|
19161
|
+
pages?: string[] | undefined;
|
|
19123
19162
|
runtime?: boolean | undefined;
|
|
19124
19163
|
collection?: string | undefined;
|
|
19125
19164
|
timestamps?: boolean | undefined;
|
|
19126
|
-
pages?: string[] | undefined;
|
|
19127
19165
|
singleton?: boolean | undefined;
|
|
19128
19166
|
}>, "many">>;
|
|
19129
19167
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -19670,10 +19708,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19670
19708
|
name: string;
|
|
19671
19709
|
fields: TraitEntityField[];
|
|
19672
19710
|
description?: string | undefined;
|
|
19711
|
+
pages?: string[] | undefined;
|
|
19673
19712
|
runtime?: boolean | undefined;
|
|
19674
19713
|
collection?: string | undefined;
|
|
19675
19714
|
timestamps?: boolean | undefined;
|
|
19676
|
-
pages?: string[] | undefined;
|
|
19677
19715
|
singleton?: boolean | undefined;
|
|
19678
19716
|
}[] | undefined;
|
|
19679
19717
|
stateMachine?: {
|
|
@@ -19840,10 +19878,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
19840
19878
|
name: string;
|
|
19841
19879
|
fields: TraitEntityField[];
|
|
19842
19880
|
description?: string | undefined;
|
|
19881
|
+
pages?: string[] | undefined;
|
|
19843
19882
|
runtime?: boolean | undefined;
|
|
19844
19883
|
collection?: string | undefined;
|
|
19845
19884
|
timestamps?: boolean | undefined;
|
|
19846
|
-
pages?: string[] | undefined;
|
|
19847
19885
|
singleton?: boolean | undefined;
|
|
19848
19886
|
}[] | undefined;
|
|
19849
19887
|
stateMachine?: {
|
|
@@ -20056,10 +20094,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20056
20094
|
name: string;
|
|
20057
20095
|
fields: TraitEntityField[];
|
|
20058
20096
|
description?: string | undefined;
|
|
20097
|
+
pages?: string[] | undefined;
|
|
20059
20098
|
runtime?: boolean | undefined;
|
|
20060
20099
|
collection?: string | undefined;
|
|
20061
20100
|
timestamps?: boolean | undefined;
|
|
20062
|
-
pages?: string[] | undefined;
|
|
20063
20101
|
singleton?: boolean | undefined;
|
|
20064
20102
|
}[] | undefined;
|
|
20065
20103
|
stateMachine?: {
|
|
@@ -20275,10 +20313,10 @@ declare const PageRefObjectSchema: z.ZodObject<{
|
|
|
20275
20313
|
name: string;
|
|
20276
20314
|
fields: TraitEntityField[];
|
|
20277
20315
|
description?: string | undefined;
|
|
20316
|
+
pages?: string[] | undefined;
|
|
20278
20317
|
runtime?: boolean | undefined;
|
|
20279
20318
|
collection?: string | undefined;
|
|
20280
20319
|
timestamps?: boolean | undefined;
|
|
20281
|
-
pages?: string[] | undefined;
|
|
20282
20320
|
singleton?: boolean | undefined;
|
|
20283
20321
|
}[] | undefined;
|
|
20284
20322
|
stateMachine?: {
|
|
@@ -20452,10 +20490,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20452
20490
|
linkedEntityId?: string | undefined;
|
|
20453
20491
|
}>, "many">>;
|
|
20454
20492
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
20493
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
20494
|
+
label: z.ZodOptional<z.ZodString>;
|
|
20455
20495
|
}, "strict", z.ZodTypeAny, {
|
|
20456
20496
|
path: string;
|
|
20457
20497
|
name: string;
|
|
20458
20498
|
id?: PageId | undefined;
|
|
20499
|
+
icon?: string | undefined;
|
|
20500
|
+
label?: string | undefined;
|
|
20459
20501
|
title?: string | undefined;
|
|
20460
20502
|
traits?: {
|
|
20461
20503
|
ref: string;
|
|
@@ -20471,6 +20513,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20471
20513
|
path: string;
|
|
20472
20514
|
name: string;
|
|
20473
20515
|
id?: string | undefined;
|
|
20516
|
+
icon?: string | undefined;
|
|
20517
|
+
label?: string | undefined;
|
|
20474
20518
|
title?: string | undefined;
|
|
20475
20519
|
traits?: {
|
|
20476
20520
|
ref: string;
|
|
@@ -20812,19 +20856,19 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20812
20856
|
name: string;
|
|
20813
20857
|
fields: TraitEntityField[];
|
|
20814
20858
|
description?: string | undefined;
|
|
20859
|
+
pages?: string[] | undefined;
|
|
20815
20860
|
runtime?: boolean | undefined;
|
|
20816
20861
|
collection?: string | undefined;
|
|
20817
20862
|
timestamps?: boolean | undefined;
|
|
20818
|
-
pages?: string[] | undefined;
|
|
20819
20863
|
singleton?: boolean | undefined;
|
|
20820
20864
|
}, {
|
|
20821
20865
|
name: string;
|
|
20822
20866
|
fields: TraitEntityField[];
|
|
20823
20867
|
description?: string | undefined;
|
|
20868
|
+
pages?: string[] | undefined;
|
|
20824
20869
|
runtime?: boolean | undefined;
|
|
20825
20870
|
collection?: string | undefined;
|
|
20826
20871
|
timestamps?: boolean | undefined;
|
|
20827
|
-
pages?: string[] | undefined;
|
|
20828
20872
|
singleton?: boolean | undefined;
|
|
20829
20873
|
}>, "many">>;
|
|
20830
20874
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -21371,10 +21415,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21371
21415
|
name: string;
|
|
21372
21416
|
fields: TraitEntityField[];
|
|
21373
21417
|
description?: string | undefined;
|
|
21418
|
+
pages?: string[] | undefined;
|
|
21374
21419
|
runtime?: boolean | undefined;
|
|
21375
21420
|
collection?: string | undefined;
|
|
21376
21421
|
timestamps?: boolean | undefined;
|
|
21377
|
-
pages?: string[] | undefined;
|
|
21378
21422
|
singleton?: boolean | undefined;
|
|
21379
21423
|
}[] | undefined;
|
|
21380
21424
|
stateMachine?: {
|
|
@@ -21541,10 +21585,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21541
21585
|
name: string;
|
|
21542
21586
|
fields: TraitEntityField[];
|
|
21543
21587
|
description?: string | undefined;
|
|
21588
|
+
pages?: string[] | undefined;
|
|
21544
21589
|
runtime?: boolean | undefined;
|
|
21545
21590
|
collection?: string | undefined;
|
|
21546
21591
|
timestamps?: boolean | undefined;
|
|
21547
|
-
pages?: string[] | undefined;
|
|
21548
21592
|
singleton?: boolean | undefined;
|
|
21549
21593
|
}[] | undefined;
|
|
21550
21594
|
stateMachine?: {
|
|
@@ -21757,10 +21801,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21757
21801
|
name: string;
|
|
21758
21802
|
fields: TraitEntityField[];
|
|
21759
21803
|
description?: string | undefined;
|
|
21804
|
+
pages?: string[] | undefined;
|
|
21760
21805
|
runtime?: boolean | undefined;
|
|
21761
21806
|
collection?: string | undefined;
|
|
21762
21807
|
timestamps?: boolean | undefined;
|
|
21763
|
-
pages?: string[] | undefined;
|
|
21764
21808
|
singleton?: boolean | undefined;
|
|
21765
21809
|
}[] | undefined;
|
|
21766
21810
|
stateMachine?: {
|
|
@@ -21976,10 +22020,10 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21976
22020
|
name: string;
|
|
21977
22021
|
fields: TraitEntityField[];
|
|
21978
22022
|
description?: string | undefined;
|
|
22023
|
+
pages?: string[] | undefined;
|
|
21979
22024
|
runtime?: boolean | undefined;
|
|
21980
22025
|
collection?: string | undefined;
|
|
21981
22026
|
timestamps?: boolean | undefined;
|
|
21982
|
-
pages?: string[] | undefined;
|
|
21983
22027
|
singleton?: boolean | undefined;
|
|
21984
22028
|
}[] | undefined;
|
|
21985
22029
|
stateMachine?: {
|
|
@@ -27003,19 +27047,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27003
27047
|
name: string;
|
|
27004
27048
|
fields: TraitEntityField[];
|
|
27005
27049
|
description?: string | undefined;
|
|
27050
|
+
pages?: string[] | undefined;
|
|
27006
27051
|
runtime?: boolean | undefined;
|
|
27007
27052
|
collection?: string | undefined;
|
|
27008
27053
|
timestamps?: boolean | undefined;
|
|
27009
|
-
pages?: string[] | undefined;
|
|
27010
27054
|
singleton?: boolean | undefined;
|
|
27011
27055
|
}, {
|
|
27012
27056
|
name: string;
|
|
27013
27057
|
fields: TraitEntityField[];
|
|
27014
27058
|
description?: string | undefined;
|
|
27059
|
+
pages?: string[] | undefined;
|
|
27015
27060
|
runtime?: boolean | undefined;
|
|
27016
27061
|
collection?: string | undefined;
|
|
27017
27062
|
timestamps?: boolean | undefined;
|
|
27018
|
-
pages?: string[] | undefined;
|
|
27019
27063
|
singleton?: boolean | undefined;
|
|
27020
27064
|
}>, "many">>;
|
|
27021
27065
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -27562,10 +27606,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27562
27606
|
name: string;
|
|
27563
27607
|
fields: TraitEntityField[];
|
|
27564
27608
|
description?: string | undefined;
|
|
27609
|
+
pages?: string[] | undefined;
|
|
27565
27610
|
runtime?: boolean | undefined;
|
|
27566
27611
|
collection?: string | undefined;
|
|
27567
27612
|
timestamps?: boolean | undefined;
|
|
27568
|
-
pages?: string[] | undefined;
|
|
27569
27613
|
singleton?: boolean | undefined;
|
|
27570
27614
|
}[] | undefined;
|
|
27571
27615
|
stateMachine?: {
|
|
@@ -27732,10 +27776,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27732
27776
|
name: string;
|
|
27733
27777
|
fields: TraitEntityField[];
|
|
27734
27778
|
description?: string | undefined;
|
|
27779
|
+
pages?: string[] | undefined;
|
|
27735
27780
|
runtime?: boolean | undefined;
|
|
27736
27781
|
collection?: string | undefined;
|
|
27737
27782
|
timestamps?: boolean | undefined;
|
|
27738
|
-
pages?: string[] | undefined;
|
|
27739
27783
|
singleton?: boolean | undefined;
|
|
27740
27784
|
}[] | undefined;
|
|
27741
27785
|
stateMachine?: {
|
|
@@ -27904,10 +27948,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27904
27948
|
linkedEntityId?: string | undefined;
|
|
27905
27949
|
}>, "many">>;
|
|
27906
27950
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
27951
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
27952
|
+
label: z.ZodOptional<z.ZodString>;
|
|
27907
27953
|
}, "strict", z.ZodTypeAny, {
|
|
27908
27954
|
path: string;
|
|
27909
27955
|
name: string;
|
|
27910
27956
|
id?: PageId | undefined;
|
|
27957
|
+
icon?: string | undefined;
|
|
27958
|
+
label?: string | undefined;
|
|
27911
27959
|
title?: string | undefined;
|
|
27912
27960
|
traits?: {
|
|
27913
27961
|
ref: string;
|
|
@@ -27923,6 +27971,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27923
27971
|
path: string;
|
|
27924
27972
|
name: string;
|
|
27925
27973
|
id?: string | undefined;
|
|
27974
|
+
icon?: string | undefined;
|
|
27975
|
+
label?: string | undefined;
|
|
27926
27976
|
title?: string | undefined;
|
|
27927
27977
|
traits?: {
|
|
27928
27978
|
ref: string;
|
|
@@ -28264,19 +28314,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28264
28314
|
name: string;
|
|
28265
28315
|
fields: TraitEntityField[];
|
|
28266
28316
|
description?: string | undefined;
|
|
28317
|
+
pages?: string[] | undefined;
|
|
28267
28318
|
runtime?: boolean | undefined;
|
|
28268
28319
|
collection?: string | undefined;
|
|
28269
28320
|
timestamps?: boolean | undefined;
|
|
28270
|
-
pages?: string[] | undefined;
|
|
28271
28321
|
singleton?: boolean | undefined;
|
|
28272
28322
|
}, {
|
|
28273
28323
|
name: string;
|
|
28274
28324
|
fields: TraitEntityField[];
|
|
28275
28325
|
description?: string | undefined;
|
|
28326
|
+
pages?: string[] | undefined;
|
|
28276
28327
|
runtime?: boolean | undefined;
|
|
28277
28328
|
collection?: string | undefined;
|
|
28278
28329
|
timestamps?: boolean | undefined;
|
|
28279
|
-
pages?: string[] | undefined;
|
|
28280
28330
|
singleton?: boolean | undefined;
|
|
28281
28331
|
}>, "many">>;
|
|
28282
28332
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -28823,10 +28873,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28823
28873
|
name: string;
|
|
28824
28874
|
fields: TraitEntityField[];
|
|
28825
28875
|
description?: string | undefined;
|
|
28876
|
+
pages?: string[] | undefined;
|
|
28826
28877
|
runtime?: boolean | undefined;
|
|
28827
28878
|
collection?: string | undefined;
|
|
28828
28879
|
timestamps?: boolean | undefined;
|
|
28829
|
-
pages?: string[] | undefined;
|
|
28830
28880
|
singleton?: boolean | undefined;
|
|
28831
28881
|
}[] | undefined;
|
|
28832
28882
|
stateMachine?: {
|
|
@@ -28993,10 +29043,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
28993
29043
|
name: string;
|
|
28994
29044
|
fields: TraitEntityField[];
|
|
28995
29045
|
description?: string | undefined;
|
|
29046
|
+
pages?: string[] | undefined;
|
|
28996
29047
|
runtime?: boolean | undefined;
|
|
28997
29048
|
collection?: string | undefined;
|
|
28998
29049
|
timestamps?: boolean | undefined;
|
|
28999
|
-
pages?: string[] | undefined;
|
|
29000
29050
|
singleton?: boolean | undefined;
|
|
29001
29051
|
}[] | undefined;
|
|
29002
29052
|
stateMachine?: {
|
|
@@ -29209,10 +29259,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29209
29259
|
name: string;
|
|
29210
29260
|
fields: TraitEntityField[];
|
|
29211
29261
|
description?: string | undefined;
|
|
29262
|
+
pages?: string[] | undefined;
|
|
29212
29263
|
runtime?: boolean | undefined;
|
|
29213
29264
|
collection?: string | undefined;
|
|
29214
29265
|
timestamps?: boolean | undefined;
|
|
29215
|
-
pages?: string[] | undefined;
|
|
29216
29266
|
singleton?: boolean | undefined;
|
|
29217
29267
|
}[] | undefined;
|
|
29218
29268
|
stateMachine?: {
|
|
@@ -29428,10 +29478,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29428
29478
|
name: string;
|
|
29429
29479
|
fields: TraitEntityField[];
|
|
29430
29480
|
description?: string | undefined;
|
|
29481
|
+
pages?: string[] | undefined;
|
|
29431
29482
|
runtime?: boolean | undefined;
|
|
29432
29483
|
collection?: string | undefined;
|
|
29433
29484
|
timestamps?: boolean | undefined;
|
|
29434
|
-
pages?: string[] | undefined;
|
|
29435
29485
|
singleton?: boolean | undefined;
|
|
29436
29486
|
}[] | undefined;
|
|
29437
29487
|
stateMachine?: {
|
|
@@ -29833,6 +29883,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29833
29883
|
path: string;
|
|
29834
29884
|
name: string;
|
|
29835
29885
|
id?: PageId | undefined;
|
|
29886
|
+
icon?: string | undefined;
|
|
29887
|
+
label?: string | undefined;
|
|
29836
29888
|
title?: string | undefined;
|
|
29837
29889
|
traits?: {
|
|
29838
29890
|
ref: string;
|
|
@@ -29914,10 +29966,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29914
29966
|
name: string;
|
|
29915
29967
|
fields: TraitEntityField[];
|
|
29916
29968
|
description?: string | undefined;
|
|
29969
|
+
pages?: string[] | undefined;
|
|
29917
29970
|
runtime?: boolean | undefined;
|
|
29918
29971
|
collection?: string | undefined;
|
|
29919
29972
|
timestamps?: boolean | undefined;
|
|
29920
|
-
pages?: string[] | undefined;
|
|
29921
29973
|
singleton?: boolean | undefined;
|
|
29922
29974
|
}[] | undefined;
|
|
29923
29975
|
stateMachine?: {
|
|
@@ -30130,10 +30182,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30130
30182
|
name: string;
|
|
30131
30183
|
fields: TraitEntityField[];
|
|
30132
30184
|
description?: string | undefined;
|
|
30185
|
+
pages?: string[] | undefined;
|
|
30133
30186
|
runtime?: boolean | undefined;
|
|
30134
30187
|
collection?: string | undefined;
|
|
30135
30188
|
timestamps?: boolean | undefined;
|
|
30136
|
-
pages?: string[] | undefined;
|
|
30137
30189
|
singleton?: boolean | undefined;
|
|
30138
30190
|
}[] | undefined;
|
|
30139
30191
|
stateMachine?: {
|
|
@@ -30874,6 +30926,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30874
30926
|
path: string;
|
|
30875
30927
|
name: string;
|
|
30876
30928
|
id?: string | undefined;
|
|
30929
|
+
icon?: string | undefined;
|
|
30930
|
+
label?: string | undefined;
|
|
30877
30931
|
title?: string | undefined;
|
|
30878
30932
|
traits?: {
|
|
30879
30933
|
ref: string;
|
|
@@ -30955,10 +31009,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30955
31009
|
name: string;
|
|
30956
31010
|
fields: TraitEntityField[];
|
|
30957
31011
|
description?: string | undefined;
|
|
31012
|
+
pages?: string[] | undefined;
|
|
30958
31013
|
runtime?: boolean | undefined;
|
|
30959
31014
|
collection?: string | undefined;
|
|
30960
31015
|
timestamps?: boolean | undefined;
|
|
30961
|
-
pages?: string[] | undefined;
|
|
30962
31016
|
singleton?: boolean | undefined;
|
|
30963
31017
|
}[] | undefined;
|
|
30964
31018
|
stateMachine?: {
|
|
@@ -31171,10 +31225,10 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
31171
31225
|
name: string;
|
|
31172
31226
|
fields: TraitEntityField[];
|
|
31173
31227
|
description?: string | undefined;
|
|
31228
|
+
pages?: string[] | undefined;
|
|
31174
31229
|
runtime?: boolean | undefined;
|
|
31175
31230
|
collection?: string | undefined;
|
|
31176
31231
|
timestamps?: boolean | undefined;
|
|
31177
|
-
pages?: string[] | undefined;
|
|
31178
31232
|
singleton?: boolean | undefined;
|
|
31179
31233
|
}[] | undefined;
|
|
31180
31234
|
stateMachine?: {
|
|
@@ -36385,19 +36439,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36385
36439
|
name: string;
|
|
36386
36440
|
fields: TraitEntityField[];
|
|
36387
36441
|
description?: string | undefined;
|
|
36442
|
+
pages?: string[] | undefined;
|
|
36388
36443
|
runtime?: boolean | undefined;
|
|
36389
36444
|
collection?: string | undefined;
|
|
36390
36445
|
timestamps?: boolean | undefined;
|
|
36391
|
-
pages?: string[] | undefined;
|
|
36392
36446
|
singleton?: boolean | undefined;
|
|
36393
36447
|
}, {
|
|
36394
36448
|
name: string;
|
|
36395
36449
|
fields: TraitEntityField[];
|
|
36396
36450
|
description?: string | undefined;
|
|
36451
|
+
pages?: string[] | undefined;
|
|
36397
36452
|
runtime?: boolean | undefined;
|
|
36398
36453
|
collection?: string | undefined;
|
|
36399
36454
|
timestamps?: boolean | undefined;
|
|
36400
|
-
pages?: string[] | undefined;
|
|
36401
36455
|
singleton?: boolean | undefined;
|
|
36402
36456
|
}>, "many">>;
|
|
36403
36457
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -36944,10 +36998,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
36944
36998
|
name: string;
|
|
36945
36999
|
fields: TraitEntityField[];
|
|
36946
37000
|
description?: string | undefined;
|
|
37001
|
+
pages?: string[] | undefined;
|
|
36947
37002
|
runtime?: boolean | undefined;
|
|
36948
37003
|
collection?: string | undefined;
|
|
36949
37004
|
timestamps?: boolean | undefined;
|
|
36950
|
-
pages?: string[] | undefined;
|
|
36951
37005
|
singleton?: boolean | undefined;
|
|
36952
37006
|
}[] | undefined;
|
|
36953
37007
|
stateMachine?: {
|
|
@@ -37114,10 +37168,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37114
37168
|
name: string;
|
|
37115
37169
|
fields: TraitEntityField[];
|
|
37116
37170
|
description?: string | undefined;
|
|
37171
|
+
pages?: string[] | undefined;
|
|
37117
37172
|
runtime?: boolean | undefined;
|
|
37118
37173
|
collection?: string | undefined;
|
|
37119
37174
|
timestamps?: boolean | undefined;
|
|
37120
|
-
pages?: string[] | undefined;
|
|
37121
37175
|
singleton?: boolean | undefined;
|
|
37122
37176
|
}[] | undefined;
|
|
37123
37177
|
stateMachine?: {
|
|
@@ -37286,10 +37340,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37286
37340
|
linkedEntityId?: string | undefined;
|
|
37287
37341
|
}>, "many">>;
|
|
37288
37342
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
37343
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
37344
|
+
label: z.ZodOptional<z.ZodString>;
|
|
37289
37345
|
}, "strict", z.ZodTypeAny, {
|
|
37290
37346
|
path: string;
|
|
37291
37347
|
name: string;
|
|
37292
37348
|
id?: PageId | undefined;
|
|
37349
|
+
icon?: string | undefined;
|
|
37350
|
+
label?: string | undefined;
|
|
37293
37351
|
title?: string | undefined;
|
|
37294
37352
|
traits?: {
|
|
37295
37353
|
ref: string;
|
|
@@ -37305,6 +37363,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37305
37363
|
path: string;
|
|
37306
37364
|
name: string;
|
|
37307
37365
|
id?: string | undefined;
|
|
37366
|
+
icon?: string | undefined;
|
|
37367
|
+
label?: string | undefined;
|
|
37308
37368
|
title?: string | undefined;
|
|
37309
37369
|
traits?: {
|
|
37310
37370
|
ref: string;
|
|
@@ -37646,19 +37706,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37646
37706
|
name: string;
|
|
37647
37707
|
fields: TraitEntityField[];
|
|
37648
37708
|
description?: string | undefined;
|
|
37709
|
+
pages?: string[] | undefined;
|
|
37649
37710
|
runtime?: boolean | undefined;
|
|
37650
37711
|
collection?: string | undefined;
|
|
37651
37712
|
timestamps?: boolean | undefined;
|
|
37652
|
-
pages?: string[] | undefined;
|
|
37653
37713
|
singleton?: boolean | undefined;
|
|
37654
37714
|
}, {
|
|
37655
37715
|
name: string;
|
|
37656
37716
|
fields: TraitEntityField[];
|
|
37657
37717
|
description?: string | undefined;
|
|
37718
|
+
pages?: string[] | undefined;
|
|
37658
37719
|
runtime?: boolean | undefined;
|
|
37659
37720
|
collection?: string | undefined;
|
|
37660
37721
|
timestamps?: boolean | undefined;
|
|
37661
|
-
pages?: string[] | undefined;
|
|
37662
37722
|
singleton?: boolean | undefined;
|
|
37663
37723
|
}>, "many">>;
|
|
37664
37724
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -38205,10 +38265,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38205
38265
|
name: string;
|
|
38206
38266
|
fields: TraitEntityField[];
|
|
38207
38267
|
description?: string | undefined;
|
|
38268
|
+
pages?: string[] | undefined;
|
|
38208
38269
|
runtime?: boolean | undefined;
|
|
38209
38270
|
collection?: string | undefined;
|
|
38210
38271
|
timestamps?: boolean | undefined;
|
|
38211
|
-
pages?: string[] | undefined;
|
|
38212
38272
|
singleton?: boolean | undefined;
|
|
38213
38273
|
}[] | undefined;
|
|
38214
38274
|
stateMachine?: {
|
|
@@ -38375,10 +38435,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38375
38435
|
name: string;
|
|
38376
38436
|
fields: TraitEntityField[];
|
|
38377
38437
|
description?: string | undefined;
|
|
38438
|
+
pages?: string[] | undefined;
|
|
38378
38439
|
runtime?: boolean | undefined;
|
|
38379
38440
|
collection?: string | undefined;
|
|
38380
38441
|
timestamps?: boolean | undefined;
|
|
38381
|
-
pages?: string[] | undefined;
|
|
38382
38442
|
singleton?: boolean | undefined;
|
|
38383
38443
|
}[] | undefined;
|
|
38384
38444
|
stateMachine?: {
|
|
@@ -38591,10 +38651,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38591
38651
|
name: string;
|
|
38592
38652
|
fields: TraitEntityField[];
|
|
38593
38653
|
description?: string | undefined;
|
|
38654
|
+
pages?: string[] | undefined;
|
|
38594
38655
|
runtime?: boolean | undefined;
|
|
38595
38656
|
collection?: string | undefined;
|
|
38596
38657
|
timestamps?: boolean | undefined;
|
|
38597
|
-
pages?: string[] | undefined;
|
|
38598
38658
|
singleton?: boolean | undefined;
|
|
38599
38659
|
}[] | undefined;
|
|
38600
38660
|
stateMachine?: {
|
|
@@ -38810,10 +38870,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
38810
38870
|
name: string;
|
|
38811
38871
|
fields: TraitEntityField[];
|
|
38812
38872
|
description?: string | undefined;
|
|
38873
|
+
pages?: string[] | undefined;
|
|
38813
38874
|
runtime?: boolean | undefined;
|
|
38814
38875
|
collection?: string | undefined;
|
|
38815
38876
|
timestamps?: boolean | undefined;
|
|
38816
|
-
pages?: string[] | undefined;
|
|
38817
38877
|
singleton?: boolean | undefined;
|
|
38818
38878
|
}[] | undefined;
|
|
38819
38879
|
stateMachine?: {
|
|
@@ -39215,6 +39275,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39215
39275
|
path: string;
|
|
39216
39276
|
name: string;
|
|
39217
39277
|
id?: PageId | undefined;
|
|
39278
|
+
icon?: string | undefined;
|
|
39279
|
+
label?: string | undefined;
|
|
39218
39280
|
title?: string | undefined;
|
|
39219
39281
|
traits?: {
|
|
39220
39282
|
ref: string;
|
|
@@ -39296,10 +39358,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39296
39358
|
name: string;
|
|
39297
39359
|
fields: TraitEntityField[];
|
|
39298
39360
|
description?: string | undefined;
|
|
39361
|
+
pages?: string[] | undefined;
|
|
39299
39362
|
runtime?: boolean | undefined;
|
|
39300
39363
|
collection?: string | undefined;
|
|
39301
39364
|
timestamps?: boolean | undefined;
|
|
39302
|
-
pages?: string[] | undefined;
|
|
39303
39365
|
singleton?: boolean | undefined;
|
|
39304
39366
|
}[] | undefined;
|
|
39305
39367
|
stateMachine?: {
|
|
@@ -39512,10 +39574,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39512
39574
|
name: string;
|
|
39513
39575
|
fields: TraitEntityField[];
|
|
39514
39576
|
description?: string | undefined;
|
|
39577
|
+
pages?: string[] | undefined;
|
|
39515
39578
|
runtime?: boolean | undefined;
|
|
39516
39579
|
collection?: string | undefined;
|
|
39517
39580
|
timestamps?: boolean | undefined;
|
|
39518
|
-
pages?: string[] | undefined;
|
|
39519
39581
|
singleton?: boolean | undefined;
|
|
39520
39582
|
}[] | undefined;
|
|
39521
39583
|
stateMachine?: {
|
|
@@ -40256,6 +40318,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40256
40318
|
path: string;
|
|
40257
40319
|
name: string;
|
|
40258
40320
|
id?: string | undefined;
|
|
40321
|
+
icon?: string | undefined;
|
|
40322
|
+
label?: string | undefined;
|
|
40259
40323
|
title?: string | undefined;
|
|
40260
40324
|
traits?: {
|
|
40261
40325
|
ref: string;
|
|
@@ -40337,10 +40401,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40337
40401
|
name: string;
|
|
40338
40402
|
fields: TraitEntityField[];
|
|
40339
40403
|
description?: string | undefined;
|
|
40404
|
+
pages?: string[] | undefined;
|
|
40340
40405
|
runtime?: boolean | undefined;
|
|
40341
40406
|
collection?: string | undefined;
|
|
40342
40407
|
timestamps?: boolean | undefined;
|
|
40343
|
-
pages?: string[] | undefined;
|
|
40344
40408
|
singleton?: boolean | undefined;
|
|
40345
40409
|
}[] | undefined;
|
|
40346
40410
|
stateMachine?: {
|
|
@@ -40553,10 +40617,10 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40553
40617
|
name: string;
|
|
40554
40618
|
fields: TraitEntityField[];
|
|
40555
40619
|
description?: string | undefined;
|
|
40620
|
+
pages?: string[] | undefined;
|
|
40556
40621
|
runtime?: boolean | undefined;
|
|
40557
40622
|
collection?: string | undefined;
|
|
40558
40623
|
timestamps?: boolean | undefined;
|
|
40559
|
-
pages?: string[] | undefined;
|
|
40560
40624
|
singleton?: boolean | undefined;
|
|
40561
40625
|
}[] | undefined;
|
|
40562
40626
|
stateMachine?: {
|
|
@@ -45774,19 +45838,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
45774
45838
|
name: string;
|
|
45775
45839
|
fields: TraitEntityField[];
|
|
45776
45840
|
description?: string | undefined;
|
|
45841
|
+
pages?: string[] | undefined;
|
|
45777
45842
|
runtime?: boolean | undefined;
|
|
45778
45843
|
collection?: string | undefined;
|
|
45779
45844
|
timestamps?: boolean | undefined;
|
|
45780
|
-
pages?: string[] | undefined;
|
|
45781
45845
|
singleton?: boolean | undefined;
|
|
45782
45846
|
}, {
|
|
45783
45847
|
name: string;
|
|
45784
45848
|
fields: TraitEntityField[];
|
|
45785
45849
|
description?: string | undefined;
|
|
45850
|
+
pages?: string[] | undefined;
|
|
45786
45851
|
runtime?: boolean | undefined;
|
|
45787
45852
|
collection?: string | undefined;
|
|
45788
45853
|
timestamps?: boolean | undefined;
|
|
45789
|
-
pages?: string[] | undefined;
|
|
45790
45854
|
singleton?: boolean | undefined;
|
|
45791
45855
|
}>, "many">>;
|
|
45792
45856
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -46333,10 +46397,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46333
46397
|
name: string;
|
|
46334
46398
|
fields: TraitEntityField[];
|
|
46335
46399
|
description?: string | undefined;
|
|
46400
|
+
pages?: string[] | undefined;
|
|
46336
46401
|
runtime?: boolean | undefined;
|
|
46337
46402
|
collection?: string | undefined;
|
|
46338
46403
|
timestamps?: boolean | undefined;
|
|
46339
|
-
pages?: string[] | undefined;
|
|
46340
46404
|
singleton?: boolean | undefined;
|
|
46341
46405
|
}[] | undefined;
|
|
46342
46406
|
stateMachine?: {
|
|
@@ -46503,10 +46567,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46503
46567
|
name: string;
|
|
46504
46568
|
fields: TraitEntityField[];
|
|
46505
46569
|
description?: string | undefined;
|
|
46570
|
+
pages?: string[] | undefined;
|
|
46506
46571
|
runtime?: boolean | undefined;
|
|
46507
46572
|
collection?: string | undefined;
|
|
46508
46573
|
timestamps?: boolean | undefined;
|
|
46509
|
-
pages?: string[] | undefined;
|
|
46510
46574
|
singleton?: boolean | undefined;
|
|
46511
46575
|
}[] | undefined;
|
|
46512
46576
|
stateMachine?: {
|
|
@@ -46675,10 +46739,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46675
46739
|
linkedEntityId?: string | undefined;
|
|
46676
46740
|
}>, "many">>;
|
|
46677
46741
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
46742
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
46743
|
+
label: z.ZodOptional<z.ZodString>;
|
|
46678
46744
|
}, "strict", z.ZodTypeAny, {
|
|
46679
46745
|
path: string;
|
|
46680
46746
|
name: string;
|
|
46681
46747
|
id?: PageId | undefined;
|
|
46748
|
+
icon?: string | undefined;
|
|
46749
|
+
label?: string | undefined;
|
|
46682
46750
|
title?: string | undefined;
|
|
46683
46751
|
traits?: {
|
|
46684
46752
|
ref: string;
|
|
@@ -46694,6 +46762,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46694
46762
|
path: string;
|
|
46695
46763
|
name: string;
|
|
46696
46764
|
id?: string | undefined;
|
|
46765
|
+
icon?: string | undefined;
|
|
46766
|
+
label?: string | undefined;
|
|
46697
46767
|
title?: string | undefined;
|
|
46698
46768
|
traits?: {
|
|
46699
46769
|
ref: string;
|
|
@@ -47035,19 +47105,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47035
47105
|
name: string;
|
|
47036
47106
|
fields: TraitEntityField[];
|
|
47037
47107
|
description?: string | undefined;
|
|
47108
|
+
pages?: string[] | undefined;
|
|
47038
47109
|
runtime?: boolean | undefined;
|
|
47039
47110
|
collection?: string | undefined;
|
|
47040
47111
|
timestamps?: boolean | undefined;
|
|
47041
|
-
pages?: string[] | undefined;
|
|
47042
47112
|
singleton?: boolean | undefined;
|
|
47043
47113
|
}, {
|
|
47044
47114
|
name: string;
|
|
47045
47115
|
fields: TraitEntityField[];
|
|
47046
47116
|
description?: string | undefined;
|
|
47117
|
+
pages?: string[] | undefined;
|
|
47047
47118
|
runtime?: boolean | undefined;
|
|
47048
47119
|
collection?: string | undefined;
|
|
47049
47120
|
timestamps?: boolean | undefined;
|
|
47050
|
-
pages?: string[] | undefined;
|
|
47051
47121
|
singleton?: boolean | undefined;
|
|
47052
47122
|
}>, "many">>;
|
|
47053
47123
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -47594,10 +47664,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47594
47664
|
name: string;
|
|
47595
47665
|
fields: TraitEntityField[];
|
|
47596
47666
|
description?: string | undefined;
|
|
47667
|
+
pages?: string[] | undefined;
|
|
47597
47668
|
runtime?: boolean | undefined;
|
|
47598
47669
|
collection?: string | undefined;
|
|
47599
47670
|
timestamps?: boolean | undefined;
|
|
47600
|
-
pages?: string[] | undefined;
|
|
47601
47671
|
singleton?: boolean | undefined;
|
|
47602
47672
|
}[] | undefined;
|
|
47603
47673
|
stateMachine?: {
|
|
@@ -47764,10 +47834,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47764
47834
|
name: string;
|
|
47765
47835
|
fields: TraitEntityField[];
|
|
47766
47836
|
description?: string | undefined;
|
|
47837
|
+
pages?: string[] | undefined;
|
|
47767
47838
|
runtime?: boolean | undefined;
|
|
47768
47839
|
collection?: string | undefined;
|
|
47769
47840
|
timestamps?: boolean | undefined;
|
|
47770
|
-
pages?: string[] | undefined;
|
|
47771
47841
|
singleton?: boolean | undefined;
|
|
47772
47842
|
}[] | undefined;
|
|
47773
47843
|
stateMachine?: {
|
|
@@ -47980,10 +48050,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
47980
48050
|
name: string;
|
|
47981
48051
|
fields: TraitEntityField[];
|
|
47982
48052
|
description?: string | undefined;
|
|
48053
|
+
pages?: string[] | undefined;
|
|
47983
48054
|
runtime?: boolean | undefined;
|
|
47984
48055
|
collection?: string | undefined;
|
|
47985
48056
|
timestamps?: boolean | undefined;
|
|
47986
|
-
pages?: string[] | undefined;
|
|
47987
48057
|
singleton?: boolean | undefined;
|
|
47988
48058
|
}[] | undefined;
|
|
47989
48059
|
stateMachine?: {
|
|
@@ -48199,10 +48269,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48199
48269
|
name: string;
|
|
48200
48270
|
fields: TraitEntityField[];
|
|
48201
48271
|
description?: string | undefined;
|
|
48272
|
+
pages?: string[] | undefined;
|
|
48202
48273
|
runtime?: boolean | undefined;
|
|
48203
48274
|
collection?: string | undefined;
|
|
48204
48275
|
timestamps?: boolean | undefined;
|
|
48205
|
-
pages?: string[] | undefined;
|
|
48206
48276
|
singleton?: boolean | undefined;
|
|
48207
48277
|
}[] | undefined;
|
|
48208
48278
|
stateMachine?: {
|
|
@@ -48604,6 +48674,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48604
48674
|
path: string;
|
|
48605
48675
|
name: string;
|
|
48606
48676
|
id?: PageId | undefined;
|
|
48677
|
+
icon?: string | undefined;
|
|
48678
|
+
label?: string | undefined;
|
|
48607
48679
|
title?: string | undefined;
|
|
48608
48680
|
traits?: {
|
|
48609
48681
|
ref: string;
|
|
@@ -48685,10 +48757,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48685
48757
|
name: string;
|
|
48686
48758
|
fields: TraitEntityField[];
|
|
48687
48759
|
description?: string | undefined;
|
|
48760
|
+
pages?: string[] | undefined;
|
|
48688
48761
|
runtime?: boolean | undefined;
|
|
48689
48762
|
collection?: string | undefined;
|
|
48690
48763
|
timestamps?: boolean | undefined;
|
|
48691
|
-
pages?: string[] | undefined;
|
|
48692
48764
|
singleton?: boolean | undefined;
|
|
48693
48765
|
}[] | undefined;
|
|
48694
48766
|
stateMachine?: {
|
|
@@ -48901,10 +48973,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48901
48973
|
name: string;
|
|
48902
48974
|
fields: TraitEntityField[];
|
|
48903
48975
|
description?: string | undefined;
|
|
48976
|
+
pages?: string[] | undefined;
|
|
48904
48977
|
runtime?: boolean | undefined;
|
|
48905
48978
|
collection?: string | undefined;
|
|
48906
48979
|
timestamps?: boolean | undefined;
|
|
48907
|
-
pages?: string[] | undefined;
|
|
48908
48980
|
singleton?: boolean | undefined;
|
|
48909
48981
|
}[] | undefined;
|
|
48910
48982
|
stateMachine?: {
|
|
@@ -49645,6 +49717,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49645
49717
|
path: string;
|
|
49646
49718
|
name: string;
|
|
49647
49719
|
id?: string | undefined;
|
|
49720
|
+
icon?: string | undefined;
|
|
49721
|
+
label?: string | undefined;
|
|
49648
49722
|
title?: string | undefined;
|
|
49649
49723
|
traits?: {
|
|
49650
49724
|
ref: string;
|
|
@@ -49726,10 +49800,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49726
49800
|
name: string;
|
|
49727
49801
|
fields: TraitEntityField[];
|
|
49728
49802
|
description?: string | undefined;
|
|
49803
|
+
pages?: string[] | undefined;
|
|
49729
49804
|
runtime?: boolean | undefined;
|
|
49730
49805
|
collection?: string | undefined;
|
|
49731
49806
|
timestamps?: boolean | undefined;
|
|
49732
|
-
pages?: string[] | undefined;
|
|
49733
49807
|
singleton?: boolean | undefined;
|
|
49734
49808
|
}[] | undefined;
|
|
49735
49809
|
stateMachine?: {
|
|
@@ -49942,10 +50016,10 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49942
50016
|
name: string;
|
|
49943
50017
|
fields: TraitEntityField[];
|
|
49944
50018
|
description?: string | undefined;
|
|
50019
|
+
pages?: string[] | undefined;
|
|
49945
50020
|
runtime?: boolean | undefined;
|
|
49946
50021
|
collection?: string | undefined;
|
|
49947
50022
|
timestamps?: boolean | undefined;
|
|
49948
|
-
pages?: string[] | undefined;
|
|
49949
50023
|
singleton?: boolean | undefined;
|
|
49950
50024
|
}[] | undefined;
|
|
49951
50025
|
stateMachine?: {
|
|
@@ -55510,19 +55584,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55510
55584
|
name: string;
|
|
55511
55585
|
fields: TraitEntityField[];
|
|
55512
55586
|
description?: string | undefined;
|
|
55587
|
+
pages?: string[] | undefined;
|
|
55513
55588
|
runtime?: boolean | undefined;
|
|
55514
55589
|
collection?: string | undefined;
|
|
55515
55590
|
timestamps?: boolean | undefined;
|
|
55516
|
-
pages?: string[] | undefined;
|
|
55517
55591
|
singleton?: boolean | undefined;
|
|
55518
55592
|
}, {
|
|
55519
55593
|
name: string;
|
|
55520
55594
|
fields: TraitEntityField[];
|
|
55521
55595
|
description?: string | undefined;
|
|
55596
|
+
pages?: string[] | undefined;
|
|
55522
55597
|
runtime?: boolean | undefined;
|
|
55523
55598
|
collection?: string | undefined;
|
|
55524
55599
|
timestamps?: boolean | undefined;
|
|
55525
|
-
pages?: string[] | undefined;
|
|
55526
55600
|
singleton?: boolean | undefined;
|
|
55527
55601
|
}>, "many">>;
|
|
55528
55602
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -56069,10 +56143,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56069
56143
|
name: string;
|
|
56070
56144
|
fields: TraitEntityField[];
|
|
56071
56145
|
description?: string | undefined;
|
|
56146
|
+
pages?: string[] | undefined;
|
|
56072
56147
|
runtime?: boolean | undefined;
|
|
56073
56148
|
collection?: string | undefined;
|
|
56074
56149
|
timestamps?: boolean | undefined;
|
|
56075
|
-
pages?: string[] | undefined;
|
|
56076
56150
|
singleton?: boolean | undefined;
|
|
56077
56151
|
}[] | undefined;
|
|
56078
56152
|
stateMachine?: {
|
|
@@ -56239,10 +56313,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56239
56313
|
name: string;
|
|
56240
56314
|
fields: TraitEntityField[];
|
|
56241
56315
|
description?: string | undefined;
|
|
56316
|
+
pages?: string[] | undefined;
|
|
56242
56317
|
runtime?: boolean | undefined;
|
|
56243
56318
|
collection?: string | undefined;
|
|
56244
56319
|
timestamps?: boolean | undefined;
|
|
56245
|
-
pages?: string[] | undefined;
|
|
56246
56320
|
singleton?: boolean | undefined;
|
|
56247
56321
|
}[] | undefined;
|
|
56248
56322
|
stateMachine?: {
|
|
@@ -56411,10 +56485,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56411
56485
|
linkedEntityId?: string | undefined;
|
|
56412
56486
|
}>, "many">>;
|
|
56413
56487
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
56488
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
56489
|
+
label: z.ZodOptional<z.ZodString>;
|
|
56414
56490
|
}, "strict", z.ZodTypeAny, {
|
|
56415
56491
|
path: string;
|
|
56416
56492
|
name: string;
|
|
56417
56493
|
id?: PageId | undefined;
|
|
56494
|
+
icon?: string | undefined;
|
|
56495
|
+
label?: string | undefined;
|
|
56418
56496
|
title?: string | undefined;
|
|
56419
56497
|
traits?: {
|
|
56420
56498
|
ref: string;
|
|
@@ -56430,6 +56508,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56430
56508
|
path: string;
|
|
56431
56509
|
name: string;
|
|
56432
56510
|
id?: string | undefined;
|
|
56511
|
+
icon?: string | undefined;
|
|
56512
|
+
label?: string | undefined;
|
|
56433
56513
|
title?: string | undefined;
|
|
56434
56514
|
traits?: {
|
|
56435
56515
|
ref: string;
|
|
@@ -56771,19 +56851,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56771
56851
|
name: string;
|
|
56772
56852
|
fields: TraitEntityField[];
|
|
56773
56853
|
description?: string | undefined;
|
|
56854
|
+
pages?: string[] | undefined;
|
|
56774
56855
|
runtime?: boolean | undefined;
|
|
56775
56856
|
collection?: string | undefined;
|
|
56776
56857
|
timestamps?: boolean | undefined;
|
|
56777
|
-
pages?: string[] | undefined;
|
|
56778
56858
|
singleton?: boolean | undefined;
|
|
56779
56859
|
}, {
|
|
56780
56860
|
name: string;
|
|
56781
56861
|
fields: TraitEntityField[];
|
|
56782
56862
|
description?: string | undefined;
|
|
56863
|
+
pages?: string[] | undefined;
|
|
56783
56864
|
runtime?: boolean | undefined;
|
|
56784
56865
|
collection?: string | undefined;
|
|
56785
56866
|
timestamps?: boolean | undefined;
|
|
56786
|
-
pages?: string[] | undefined;
|
|
56787
56867
|
singleton?: boolean | undefined;
|
|
56788
56868
|
}>, "many">>;
|
|
56789
56869
|
stateMachine: z.ZodOptional<z.ZodObject<{
|
|
@@ -57330,10 +57410,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57330
57410
|
name: string;
|
|
57331
57411
|
fields: TraitEntityField[];
|
|
57332
57412
|
description?: string | undefined;
|
|
57413
|
+
pages?: string[] | undefined;
|
|
57333
57414
|
runtime?: boolean | undefined;
|
|
57334
57415
|
collection?: string | undefined;
|
|
57335
57416
|
timestamps?: boolean | undefined;
|
|
57336
|
-
pages?: string[] | undefined;
|
|
57337
57417
|
singleton?: boolean | undefined;
|
|
57338
57418
|
}[] | undefined;
|
|
57339
57419
|
stateMachine?: {
|
|
@@ -57500,10 +57580,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57500
57580
|
name: string;
|
|
57501
57581
|
fields: TraitEntityField[];
|
|
57502
57582
|
description?: string | undefined;
|
|
57583
|
+
pages?: string[] | undefined;
|
|
57503
57584
|
runtime?: boolean | undefined;
|
|
57504
57585
|
collection?: string | undefined;
|
|
57505
57586
|
timestamps?: boolean | undefined;
|
|
57506
|
-
pages?: string[] | undefined;
|
|
57507
57587
|
singleton?: boolean | undefined;
|
|
57508
57588
|
}[] | undefined;
|
|
57509
57589
|
stateMachine?: {
|
|
@@ -57716,10 +57796,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57716
57796
|
name: string;
|
|
57717
57797
|
fields: TraitEntityField[];
|
|
57718
57798
|
description?: string | undefined;
|
|
57799
|
+
pages?: string[] | undefined;
|
|
57719
57800
|
runtime?: boolean | undefined;
|
|
57720
57801
|
collection?: string | undefined;
|
|
57721
57802
|
timestamps?: boolean | undefined;
|
|
57722
|
-
pages?: string[] | undefined;
|
|
57723
57803
|
singleton?: boolean | undefined;
|
|
57724
57804
|
}[] | undefined;
|
|
57725
57805
|
stateMachine?: {
|
|
@@ -57935,10 +58015,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
57935
58015
|
name: string;
|
|
57936
58016
|
fields: TraitEntityField[];
|
|
57937
58017
|
description?: string | undefined;
|
|
58018
|
+
pages?: string[] | undefined;
|
|
57938
58019
|
runtime?: boolean | undefined;
|
|
57939
58020
|
collection?: string | undefined;
|
|
57940
58021
|
timestamps?: boolean | undefined;
|
|
57941
|
-
pages?: string[] | undefined;
|
|
57942
58022
|
singleton?: boolean | undefined;
|
|
57943
58023
|
}[] | undefined;
|
|
57944
58024
|
stateMachine?: {
|
|
@@ -58340,6 +58420,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58340
58420
|
path: string;
|
|
58341
58421
|
name: string;
|
|
58342
58422
|
id?: PageId | undefined;
|
|
58423
|
+
icon?: string | undefined;
|
|
58424
|
+
label?: string | undefined;
|
|
58343
58425
|
title?: string | undefined;
|
|
58344
58426
|
traits?: {
|
|
58345
58427
|
ref: string;
|
|
@@ -58421,10 +58503,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58421
58503
|
name: string;
|
|
58422
58504
|
fields: TraitEntityField[];
|
|
58423
58505
|
description?: string | undefined;
|
|
58506
|
+
pages?: string[] | undefined;
|
|
58424
58507
|
runtime?: boolean | undefined;
|
|
58425
58508
|
collection?: string | undefined;
|
|
58426
58509
|
timestamps?: boolean | undefined;
|
|
58427
|
-
pages?: string[] | undefined;
|
|
58428
58510
|
singleton?: boolean | undefined;
|
|
58429
58511
|
}[] | undefined;
|
|
58430
58512
|
stateMachine?: {
|
|
@@ -58637,10 +58719,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58637
58719
|
name: string;
|
|
58638
58720
|
fields: TraitEntityField[];
|
|
58639
58721
|
description?: string | undefined;
|
|
58722
|
+
pages?: string[] | undefined;
|
|
58640
58723
|
runtime?: boolean | undefined;
|
|
58641
58724
|
collection?: string | undefined;
|
|
58642
58725
|
timestamps?: boolean | undefined;
|
|
58643
|
-
pages?: string[] | undefined;
|
|
58644
58726
|
singleton?: boolean | undefined;
|
|
58645
58727
|
}[] | undefined;
|
|
58646
58728
|
stateMachine?: {
|
|
@@ -59381,6 +59463,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59381
59463
|
path: string;
|
|
59382
59464
|
name: string;
|
|
59383
59465
|
id?: string | undefined;
|
|
59466
|
+
icon?: string | undefined;
|
|
59467
|
+
label?: string | undefined;
|
|
59384
59468
|
title?: string | undefined;
|
|
59385
59469
|
traits?: {
|
|
59386
59470
|
ref: string;
|
|
@@ -59462,10 +59546,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59462
59546
|
name: string;
|
|
59463
59547
|
fields: TraitEntityField[];
|
|
59464
59548
|
description?: string | undefined;
|
|
59549
|
+
pages?: string[] | undefined;
|
|
59465
59550
|
runtime?: boolean | undefined;
|
|
59466
59551
|
collection?: string | undefined;
|
|
59467
59552
|
timestamps?: boolean | undefined;
|
|
59468
|
-
pages?: string[] | undefined;
|
|
59469
59553
|
singleton?: boolean | undefined;
|
|
59470
59554
|
}[] | undefined;
|
|
59471
59555
|
stateMachine?: {
|
|
@@ -59678,10 +59762,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59678
59762
|
name: string;
|
|
59679
59763
|
fields: TraitEntityField[];
|
|
59680
59764
|
description?: string | undefined;
|
|
59765
|
+
pages?: string[] | undefined;
|
|
59681
59766
|
runtime?: boolean | undefined;
|
|
59682
59767
|
collection?: string | undefined;
|
|
59683
59768
|
timestamps?: boolean | undefined;
|
|
59684
|
-
pages?: string[] | undefined;
|
|
59685
59769
|
singleton?: boolean | undefined;
|
|
59686
59770
|
}[] | undefined;
|
|
59687
59771
|
stateMachine?: {
|
|
@@ -60723,6 +60807,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60723
60807
|
path: string;
|
|
60724
60808
|
name: string;
|
|
60725
60809
|
id?: PageId | undefined;
|
|
60810
|
+
icon?: string | undefined;
|
|
60811
|
+
label?: string | undefined;
|
|
60726
60812
|
title?: string | undefined;
|
|
60727
60813
|
traits?: {
|
|
60728
60814
|
ref: string;
|
|
@@ -60804,10 +60890,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60804
60890
|
name: string;
|
|
60805
60891
|
fields: TraitEntityField[];
|
|
60806
60892
|
description?: string | undefined;
|
|
60893
|
+
pages?: string[] | undefined;
|
|
60807
60894
|
runtime?: boolean | undefined;
|
|
60808
60895
|
collection?: string | undefined;
|
|
60809
60896
|
timestamps?: boolean | undefined;
|
|
60810
|
-
pages?: string[] | undefined;
|
|
60811
60897
|
singleton?: boolean | undefined;
|
|
60812
60898
|
}[] | undefined;
|
|
60813
60899
|
stateMachine?: {
|
|
@@ -61020,10 +61106,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61020
61106
|
name: string;
|
|
61021
61107
|
fields: TraitEntityField[];
|
|
61022
61108
|
description?: string | undefined;
|
|
61109
|
+
pages?: string[] | undefined;
|
|
61023
61110
|
runtime?: boolean | undefined;
|
|
61024
61111
|
collection?: string | undefined;
|
|
61025
61112
|
timestamps?: boolean | undefined;
|
|
61026
|
-
pages?: string[] | undefined;
|
|
61027
61113
|
singleton?: boolean | undefined;
|
|
61028
61114
|
}[] | undefined;
|
|
61029
61115
|
stateMachine?: {
|
|
@@ -61883,6 +61969,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61883
61969
|
path: string;
|
|
61884
61970
|
name: string;
|
|
61885
61971
|
id?: string | undefined;
|
|
61972
|
+
icon?: string | undefined;
|
|
61973
|
+
label?: string | undefined;
|
|
61886
61974
|
title?: string | undefined;
|
|
61887
61975
|
traits?: {
|
|
61888
61976
|
ref: string;
|
|
@@ -61964,10 +62052,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61964
62052
|
name: string;
|
|
61965
62053
|
fields: TraitEntityField[];
|
|
61966
62054
|
description?: string | undefined;
|
|
62055
|
+
pages?: string[] | undefined;
|
|
61967
62056
|
runtime?: boolean | undefined;
|
|
61968
62057
|
collection?: string | undefined;
|
|
61969
62058
|
timestamps?: boolean | undefined;
|
|
61970
|
-
pages?: string[] | undefined;
|
|
61971
62059
|
singleton?: boolean | undefined;
|
|
61972
62060
|
}[] | undefined;
|
|
61973
62061
|
stateMachine?: {
|
|
@@ -62180,10 +62268,10 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
62180
62268
|
name: string;
|
|
62181
62269
|
fields: TraitEntityField[];
|
|
62182
62270
|
description?: string | undefined;
|
|
62271
|
+
pages?: string[] | undefined;
|
|
62183
62272
|
runtime?: boolean | undefined;
|
|
62184
62273
|
collection?: string | undefined;
|
|
62185
62274
|
timestamps?: boolean | undefined;
|
|
62186
|
-
pages?: string[] | undefined;
|
|
62187
62275
|
singleton?: boolean | undefined;
|
|
62188
62276
|
}[] | undefined;
|
|
62189
62277
|
stateMachine?: {
|
|
@@ -63108,6 +63196,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63108
63196
|
path: string;
|
|
63109
63197
|
name: string;
|
|
63110
63198
|
id?: string | undefined;
|
|
63199
|
+
icon?: string | undefined;
|
|
63200
|
+
label?: string | undefined;
|
|
63111
63201
|
title?: string | undefined;
|
|
63112
63202
|
traits?: {
|
|
63113
63203
|
ref: string;
|
|
@@ -63189,10 +63279,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63189
63279
|
name: string;
|
|
63190
63280
|
fields: TraitEntityField[];
|
|
63191
63281
|
description?: string | undefined;
|
|
63282
|
+
pages?: string[] | undefined;
|
|
63192
63283
|
runtime?: boolean | undefined;
|
|
63193
63284
|
collection?: string | undefined;
|
|
63194
63285
|
timestamps?: boolean | undefined;
|
|
63195
|
-
pages?: string[] | undefined;
|
|
63196
63286
|
singleton?: boolean | undefined;
|
|
63197
63287
|
}[] | undefined;
|
|
63198
63288
|
stateMachine?: {
|
|
@@ -63405,10 +63495,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63405
63495
|
name: string;
|
|
63406
63496
|
fields: TraitEntityField[];
|
|
63407
63497
|
description?: string | undefined;
|
|
63498
|
+
pages?: string[] | undefined;
|
|
63408
63499
|
runtime?: boolean | undefined;
|
|
63409
63500
|
collection?: string | undefined;
|
|
63410
63501
|
timestamps?: boolean | undefined;
|
|
63411
|
-
pages?: string[] | undefined;
|
|
63412
63502
|
singleton?: boolean | undefined;
|
|
63413
63503
|
}[] | undefined;
|
|
63414
63504
|
stateMachine?: {
|
|
@@ -64268,6 +64358,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64268
64358
|
path: string;
|
|
64269
64359
|
name: string;
|
|
64270
64360
|
id?: PageId | undefined;
|
|
64361
|
+
icon?: string | undefined;
|
|
64362
|
+
label?: string | undefined;
|
|
64271
64363
|
title?: string | undefined;
|
|
64272
64364
|
traits?: {
|
|
64273
64365
|
ref: string;
|
|
@@ -64349,10 +64441,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64349
64441
|
name: string;
|
|
64350
64442
|
fields: TraitEntityField[];
|
|
64351
64443
|
description?: string | undefined;
|
|
64444
|
+
pages?: string[] | undefined;
|
|
64352
64445
|
runtime?: boolean | undefined;
|
|
64353
64446
|
collection?: string | undefined;
|
|
64354
64447
|
timestamps?: boolean | undefined;
|
|
64355
|
-
pages?: string[] | undefined;
|
|
64356
64448
|
singleton?: boolean | undefined;
|
|
64357
64449
|
}[] | undefined;
|
|
64358
64450
|
stateMachine?: {
|
|
@@ -64565,10 +64657,10 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64565
64657
|
name: string;
|
|
64566
64658
|
fields: TraitEntityField[];
|
|
64567
64659
|
description?: string | undefined;
|
|
64660
|
+
pages?: string[] | undefined;
|
|
64568
64661
|
runtime?: boolean | undefined;
|
|
64569
64662
|
collection?: string | undefined;
|
|
64570
64663
|
timestamps?: boolean | undefined;
|
|
64571
|
-
pages?: string[] | undefined;
|
|
64572
64664
|
singleton?: boolean | undefined;
|
|
64573
64665
|
}[] | undefined;
|
|
64574
64666
|
stateMachine?: {
|
|
@@ -65386,4 +65478,4 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
65386
65478
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
65387
65479
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
65388
65480
|
|
|
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,
|
|
65481
|
+
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 };
|