@almadar/core 10.54.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 +3 -3
- package/dist/builders.js +6 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-BlFO53UR.d.ts → effect-DxD-XTI8.d.ts} +1 -1
- package/dist/{entityAccess-B28lOfc_.d.ts → entityAccess-JTWGFDja.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +6 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +8 -8
- package/dist/index.js +16 -5
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +8 -1
- package/dist/patterns/index.d.ts +12 -5
- 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-BPC1Wuxb.d.ts → schema-0C1bXRFm.d.ts} +79 -2
- package/dist/{trait-RzDL-lSo.d.ts → trait-WnYkvPdZ.d.ts} +1 -1
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.js +6 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-8b5zy8ts.d.ts → types-C4YztU2N.d.ts} +15 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-
|
|
1
|
+
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-WnYkvPdZ.js';
|
|
2
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-
|
|
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;
|
|
@@ -20467,10 +20490,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20467
20490
|
linkedEntityId?: string | undefined;
|
|
20468
20491
|
}>, "many">>;
|
|
20469
20492
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
20493
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
20494
|
+
label: z.ZodOptional<z.ZodString>;
|
|
20470
20495
|
}, "strict", z.ZodTypeAny, {
|
|
20471
20496
|
path: string;
|
|
20472
20497
|
name: string;
|
|
20473
20498
|
id?: PageId | undefined;
|
|
20499
|
+
icon?: string | undefined;
|
|
20500
|
+
label?: string | undefined;
|
|
20474
20501
|
title?: string | undefined;
|
|
20475
20502
|
traits?: {
|
|
20476
20503
|
ref: string;
|
|
@@ -20486,6 +20513,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20486
20513
|
path: string;
|
|
20487
20514
|
name: string;
|
|
20488
20515
|
id?: string | undefined;
|
|
20516
|
+
icon?: string | undefined;
|
|
20517
|
+
label?: string | undefined;
|
|
20489
20518
|
title?: string | undefined;
|
|
20490
20519
|
traits?: {
|
|
20491
20520
|
ref: string;
|
|
@@ -27919,10 +27948,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27919
27948
|
linkedEntityId?: string | undefined;
|
|
27920
27949
|
}>, "many">>;
|
|
27921
27950
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
27951
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
27952
|
+
label: z.ZodOptional<z.ZodString>;
|
|
27922
27953
|
}, "strict", z.ZodTypeAny, {
|
|
27923
27954
|
path: string;
|
|
27924
27955
|
name: string;
|
|
27925
27956
|
id?: PageId | undefined;
|
|
27957
|
+
icon?: string | undefined;
|
|
27958
|
+
label?: string | undefined;
|
|
27926
27959
|
title?: string | undefined;
|
|
27927
27960
|
traits?: {
|
|
27928
27961
|
ref: string;
|
|
@@ -27938,6 +27971,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
27938
27971
|
path: string;
|
|
27939
27972
|
name: string;
|
|
27940
27973
|
id?: string | undefined;
|
|
27974
|
+
icon?: string | undefined;
|
|
27975
|
+
label?: string | undefined;
|
|
27941
27976
|
title?: string | undefined;
|
|
27942
27977
|
traits?: {
|
|
27943
27978
|
ref: string;
|
|
@@ -29848,6 +29883,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
29848
29883
|
path: string;
|
|
29849
29884
|
name: string;
|
|
29850
29885
|
id?: PageId | undefined;
|
|
29886
|
+
icon?: string | undefined;
|
|
29887
|
+
label?: string | undefined;
|
|
29851
29888
|
title?: string | undefined;
|
|
29852
29889
|
traits?: {
|
|
29853
29890
|
ref: string;
|
|
@@ -30889,6 +30926,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30889
30926
|
path: string;
|
|
30890
30927
|
name: string;
|
|
30891
30928
|
id?: string | undefined;
|
|
30929
|
+
icon?: string | undefined;
|
|
30930
|
+
label?: string | undefined;
|
|
30892
30931
|
title?: string | undefined;
|
|
30893
30932
|
traits?: {
|
|
30894
30933
|
ref: string;
|
|
@@ -37301,10 +37340,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37301
37340
|
linkedEntityId?: string | undefined;
|
|
37302
37341
|
}>, "many">>;
|
|
37303
37342
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
37343
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
37344
|
+
label: z.ZodOptional<z.ZodString>;
|
|
37304
37345
|
}, "strict", z.ZodTypeAny, {
|
|
37305
37346
|
path: string;
|
|
37306
37347
|
name: string;
|
|
37307
37348
|
id?: PageId | undefined;
|
|
37349
|
+
icon?: string | undefined;
|
|
37350
|
+
label?: string | undefined;
|
|
37308
37351
|
title?: string | undefined;
|
|
37309
37352
|
traits?: {
|
|
37310
37353
|
ref: string;
|
|
@@ -37320,6 +37363,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
37320
37363
|
path: string;
|
|
37321
37364
|
name: string;
|
|
37322
37365
|
id?: string | undefined;
|
|
37366
|
+
icon?: string | undefined;
|
|
37367
|
+
label?: string | undefined;
|
|
37323
37368
|
title?: string | undefined;
|
|
37324
37369
|
traits?: {
|
|
37325
37370
|
ref: string;
|
|
@@ -39230,6 +39275,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
39230
39275
|
path: string;
|
|
39231
39276
|
name: string;
|
|
39232
39277
|
id?: PageId | undefined;
|
|
39278
|
+
icon?: string | undefined;
|
|
39279
|
+
label?: string | undefined;
|
|
39233
39280
|
title?: string | undefined;
|
|
39234
39281
|
traits?: {
|
|
39235
39282
|
ref: string;
|
|
@@ -40271,6 +40318,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40271
40318
|
path: string;
|
|
40272
40319
|
name: string;
|
|
40273
40320
|
id?: string | undefined;
|
|
40321
|
+
icon?: string | undefined;
|
|
40322
|
+
label?: string | undefined;
|
|
40274
40323
|
title?: string | undefined;
|
|
40275
40324
|
traits?: {
|
|
40276
40325
|
ref: string;
|
|
@@ -46690,10 +46739,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46690
46739
|
linkedEntityId?: string | undefined;
|
|
46691
46740
|
}>, "many">>;
|
|
46692
46741
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
46742
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
46743
|
+
label: z.ZodOptional<z.ZodString>;
|
|
46693
46744
|
}, "strict", z.ZodTypeAny, {
|
|
46694
46745
|
path: string;
|
|
46695
46746
|
name: string;
|
|
46696
46747
|
id?: PageId | undefined;
|
|
46748
|
+
icon?: string | undefined;
|
|
46749
|
+
label?: string | undefined;
|
|
46697
46750
|
title?: string | undefined;
|
|
46698
46751
|
traits?: {
|
|
46699
46752
|
ref: string;
|
|
@@ -46709,6 +46762,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
46709
46762
|
path: string;
|
|
46710
46763
|
name: string;
|
|
46711
46764
|
id?: string | undefined;
|
|
46765
|
+
icon?: string | undefined;
|
|
46766
|
+
label?: string | undefined;
|
|
46712
46767
|
title?: string | undefined;
|
|
46713
46768
|
traits?: {
|
|
46714
46769
|
ref: string;
|
|
@@ -48619,6 +48674,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
48619
48674
|
path: string;
|
|
48620
48675
|
name: string;
|
|
48621
48676
|
id?: PageId | undefined;
|
|
48677
|
+
icon?: string | undefined;
|
|
48678
|
+
label?: string | undefined;
|
|
48622
48679
|
title?: string | undefined;
|
|
48623
48680
|
traits?: {
|
|
48624
48681
|
ref: string;
|
|
@@ -49660,6 +49717,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49660
49717
|
path: string;
|
|
49661
49718
|
name: string;
|
|
49662
49719
|
id?: string | undefined;
|
|
49720
|
+
icon?: string | undefined;
|
|
49721
|
+
label?: string | undefined;
|
|
49663
49722
|
title?: string | undefined;
|
|
49664
49723
|
traits?: {
|
|
49665
49724
|
ref: string;
|
|
@@ -56426,10 +56485,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56426
56485
|
linkedEntityId?: string | undefined;
|
|
56427
56486
|
}>, "many">>;
|
|
56428
56487
|
isInitial: z.ZodOptional<z.ZodBoolean>;
|
|
56488
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
56489
|
+
label: z.ZodOptional<z.ZodString>;
|
|
56429
56490
|
}, "strict", z.ZodTypeAny, {
|
|
56430
56491
|
path: string;
|
|
56431
56492
|
name: string;
|
|
56432
56493
|
id?: PageId | undefined;
|
|
56494
|
+
icon?: string | undefined;
|
|
56495
|
+
label?: string | undefined;
|
|
56433
56496
|
title?: string | undefined;
|
|
56434
56497
|
traits?: {
|
|
56435
56498
|
ref: string;
|
|
@@ -56445,6 +56508,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
56445
56508
|
path: string;
|
|
56446
56509
|
name: string;
|
|
56447
56510
|
id?: string | undefined;
|
|
56511
|
+
icon?: string | undefined;
|
|
56512
|
+
label?: string | undefined;
|
|
56448
56513
|
title?: string | undefined;
|
|
56449
56514
|
traits?: {
|
|
56450
56515
|
ref: string;
|
|
@@ -58355,6 +58420,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
58355
58420
|
path: string;
|
|
58356
58421
|
name: string;
|
|
58357
58422
|
id?: PageId | undefined;
|
|
58423
|
+
icon?: string | undefined;
|
|
58424
|
+
label?: string | undefined;
|
|
58358
58425
|
title?: string | undefined;
|
|
58359
58426
|
traits?: {
|
|
58360
58427
|
ref: string;
|
|
@@ -59396,6 +59463,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
59396
59463
|
path: string;
|
|
59397
59464
|
name: string;
|
|
59398
59465
|
id?: string | undefined;
|
|
59466
|
+
icon?: string | undefined;
|
|
59467
|
+
label?: string | undefined;
|
|
59399
59468
|
title?: string | undefined;
|
|
59400
59469
|
traits?: {
|
|
59401
59470
|
ref: string;
|
|
@@ -60738,6 +60807,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
60738
60807
|
path: string;
|
|
60739
60808
|
name: string;
|
|
60740
60809
|
id?: PageId | undefined;
|
|
60810
|
+
icon?: string | undefined;
|
|
60811
|
+
label?: string | undefined;
|
|
60741
60812
|
title?: string | undefined;
|
|
60742
60813
|
traits?: {
|
|
60743
60814
|
ref: string;
|
|
@@ -61898,6 +61969,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
61898
61969
|
path: string;
|
|
61899
61970
|
name: string;
|
|
61900
61971
|
id?: string | undefined;
|
|
61972
|
+
icon?: string | undefined;
|
|
61973
|
+
label?: string | undefined;
|
|
61901
61974
|
title?: string | undefined;
|
|
61902
61975
|
traits?: {
|
|
61903
61976
|
ref: string;
|
|
@@ -63123,6 +63196,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
63123
63196
|
path: string;
|
|
63124
63197
|
name: string;
|
|
63125
63198
|
id?: string | undefined;
|
|
63199
|
+
icon?: string | undefined;
|
|
63200
|
+
label?: string | undefined;
|
|
63126
63201
|
title?: string | undefined;
|
|
63127
63202
|
traits?: {
|
|
63128
63203
|
ref: string;
|
|
@@ -64283,6 +64358,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
64283
64358
|
path: string;
|
|
64284
64359
|
name: string;
|
|
64285
64360
|
id?: PageId | undefined;
|
|
64361
|
+
icon?: string | undefined;
|
|
64362
|
+
label?: string | undefined;
|
|
64286
64363
|
title?: string | undefined;
|
|
64287
64364
|
traits?: {
|
|
64288
64365
|
ref: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-
|
|
1
|
+
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-DxD-XTI8.js';
|
|
2
2
|
import { E as Expression, S as SExpr, J as JsonValue } from './expression-Fk8bQWef.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { b1 as PageTraitRef, O as OrbitalSchema, bf as ThemeDefinition, a8 as Orbital, b as Page, M as DomainContext, a as OrbitalDefinition } from '../schema-
|
|
2
|
-
export { A as AGENT_DOMAIN_CATEGORIES, e as ALLOWED_CUSTOM_COMPONENTS, f as AgentDomainCategory, g as AgentDomainCategorySchema, h as AllowedCustomComponent, C as ColorSlice, i as ColorSliceSchema, j as ColorTokens, k as ColorTokensSchema, l as ComputedEventContract, m as ComputedEventContractSchema, n as ComputedEventListener, o as ComputedEventListenerSchema, p as ConfigProvenanceRecord, q as ConfigProvenanceRecordSchema, r as CustomPatternDefinition, s as CustomPatternDefinitionInput, t as CustomPatternDefinitionSchema, u as CustomPatternMap, v as CustomPatternMapInput, w as CustomPatternMapSchema, D as DensitySlice, x as DensitySliceSchema, y as DensityTokens, z as DensityTokensSchema, B as DesignPreferences, F as DesignPreferencesInput, G as DesignPreferencesSchema, H as DesignTokens, I as DesignTokensInput, J as DesignTokensSchema, K as DomainCategory, L as DomainCategorySchema, N as DomainContextInput, Q as DomainContextSchema, R as DomainVocabulary, S as DomainVocabularySchema, T as ElevationSlice, V as ElevationSliceSchema, W as ElevationTokens, X as ElevationTokensSchema, Y as EntityCall, Z as EntityCallSchema, E as EntityRef, _ as EntityRefSchema, $ as EntityRefStringSchema, a0 as EntitySemanticRole, a1 as EntitySemanticRoleSchema, a2 as EventListener, a3 as EventListenerSchema, a4 as EventSemanticRole, a5 as EventSemanticRoleSchema, a6 as EventSource, a7 as EventSourceSchema, a9 as GameSubCategory, aa as GameSubCategorySchema, ab as GeometrySlice, ac as GeometrySliceSchema, ad as GeometryTokens, ae as GeometryTokensSchema, af as IconFamily, ag as IconFamilySchema, ah as IconographySlice, ai as IconographySliceSchema, aj as IconographyTokens, ak as IconographyTokensSchema, al as IllustrationSlice, am as IllustrationSliceSchema, an as IllustrationStyle, ao as IllustrationStyleSchema, ap as IllustrationTokens, aq as IllustrationTokensSchema, ar as MotionDurationKey, as as MotionDurationKeySchema, at as MotionDurationPalette, au as MotionDurationPaletteSchema, av as MotionEasingKey, aw as MotionEasingKeySchema, ax as MotionEasingPalette, ay as MotionEasingPaletteSchema, az as MotionIntent, aA as MotionIntentMap, aB as MotionIntentMapSchema, aC as MotionIntentSchema, aD as MotionSlice, aE as MotionSliceSchema, aF as MotionTokens, aG as MotionTokensSchema, aH as NavItem, aI as NodeClassification, aJ as NodeClassificationSchema, aK as OrbitalConfig, aL as OrbitalConfigInput, aM as OrbitalConfigSchema, aN as OrbitalDefinitionSchema, aO as OrbitalInput, d as OrbitalPage, aP as OrbitalPageInput, aQ as OrbitalPageSchema, aR as OrbitalPageStrictInput, aS as OrbitalPageStrictSchema, aT as OrbitalSchemaInput, aU as OrbitalSchemaSchema, aV as OrbitalSchemaWithTraits, aW as OrbitalUnit, aX as OrbitalUnitSchema, aY as OrbitalZodSchema, P as PageRef, c as PageRefObject, aZ as PageRefObjectSchema, a_ as PageRefSchema, a$ as PageRefStringSchema, b0 as PageSchema, b2 as PageTraitRefSchema, b3 as RelatedLink, b4 as RelatedLinkSchema, b5 as SchemaMetadata, b6 as SchemaMetadataSchema, b7 as SkinSpec, b8 as SkinSpecSchema, b9 as SpacingScale, ba as SpacingScaleSchema, bb as StateSemanticRole, bc as StateSemanticRoleSchema, bd as SuggestedGuard, be as SuggestedGuardSchema, bg as ThemeDefinitionSchema, bh as ThemeRef, bi as ThemeRefSchema, bj as ThemeRefStringSchema, bk as ThemeTokens, bl as ThemeTokensSchema, bm as ThemeVariant, bn as ThemeVariantSchema, bo as TypeIntent, bp as TypeIntentMap, bq as TypeIntentMapSchema, br as TypeIntentSchema, bs as TypeScale, bt as TypeScaleEntry, bu as TypeScaleEntrySchema, bv as TypeScaleSchema, bw as TypeScaleTokens, bx as TypeScaleTokensSchema, by as TypeSizeKey, bz as TypeSizeKeySchema, bA as TypeSlice, bB as TypeSliceSchema, bC as TypeSlot, bD as TypeSlotSchema, bE as TypeWeight, bF as TypeWeightSchema, bG as UXHints, bH as UXHintsSchema, U as UseDeclaration, bI as UseDeclarationSchema, bJ as UserPersona, bK as UserPersonaInput, bL as UserPersonaSchema, bM as ViewType, bN as ViewTypeSchema, bO as isEntityCall, bP as isEntityReference, bQ as isEntityReferenceAny, bR as isImportedTraitRef, bS as isOrbitalDefinition, bT as isPageReference, bU as isPageReferenceObject, bV as isPageReferenceString, bW as isThemeReference, bX as parseEntityRef, bY as parseImportedTraitRef, bZ as parseOrbitalSchema, b_ as parsePageRef, b$ as safeParseOrbitalSchema } from '../schema-
|
|
3
|
-
import { F as FieldValue, E as EntityField, a as EntityPersistence, bp as ServiceParams, e as Entity, f as EntityRow, A as AnyPatternConfig, O as OrbitalId, T as TraitId, b as EventId, c as Effect } from '../effect-
|
|
4
|
-
export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, a8 as EntityData, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, at as ForwardConfig, au as ForwardEffect, av as IdForKind, aw as IdKind, I as IdentityLedger, ax as IdentityLedgerSchema, ay as LedgerEntry, az as LedgerEntrySchema, aA as LedgerKind, aB as LedgerKindSchema, aC as LlmEffect, aD as LogEffect, aE as McpServiceDef, aF as McpServiceDefSchema, aG as MemoryEffect, aH as NavigateEffect, aI as NnConfig, aJ as NnLayer, aK as NotifyEffect, aL as ObjectEntityField, aM as OrbitalEntity, aN as OrbitalEntityInput, aO as OrbitalEntitySchema, aP as OrbitalIdSchema, aQ as OsEffect, aR as PATTERN_TYPES, P as PageId, aS as PageIdSchema, aT as PaletteEntryId, aU as PaletteEntryIdSchema, aV as PatternConfig, aY as PatternType, aZ as PersistData, a_ as PersistEffect, a$ as PersistEmitConfig, b0 as RefEffect, R as RelationConfig, b1 as RelationConfigSchema, b2 as RelationEntityField, h as RenderBinding, b3 as RenderChildrenMap, b4 as RenderItemLambda, i as RenderUIEffect, b5 as RenderUINode, b6 as ResolvedPatternProps, b7 as RestAuthConfig, b8 as RestAuthConfigSchema, b9 as RestServiceDef, ba as RestServiceDefSchema, bb as SEMANTIC_STRING_TYPES, bc as SERVICE_TYPES, bd as SHEET_PROJECTIONS, be as SPRITE_DIRECTIONS, bf as ScalarEntityField, bg as ScenePos, bh as ScenePosSchema, bi as SemanticAssetRef, bj as SemanticAssetRefInput, bk as SemanticAssetRefSchema, bl as SemanticStringType, g as ServiceDefinition, bm as ServiceDefinitionSchema, bn as ServiceId, bo as ServiceIdSchema, bq as ServiceParamsValue, S as ServiceRef, br as ServiceRefObject, bs as ServiceRefObjectSchema, bt as ServiceRefSchema, bu as ServiceRefStringSchema, bv as ServiceType, bw as ServiceTypeSchema, bx as SessionEffect, by as SetEffect, bz as SheetProjection, bA as SheetProjectionSchema, bB as SocketEvents, bC as SocketEventsSchema, bD as SocketServiceDef, bE as SocketServiceDefSchema, bF as SpawnEffect, bG as SpriteDirection, bH as SpriteDirectionSchema, bI as SpriteSheetAtlas, bJ as SpriteSheetAtlasInput, bK as SpriteSheetAtlasSchema, bL as SubTexture, bM as SubTextureSchema, bN as SwapEffect, bO as TextureAtlas, bP as TextureAtlasSchema, bQ as ThemeId, bR as ThemeIdSchema, bS as Tilesheet, bT as TilesheetSchema, bU as TraceEffect, bV as TrainConfig, bW as TrainEffect, bX as TraitIdSchema, bY as TypedEffect, U as UISlot, bZ as UISlotSchema, b_ as UI_SLOTS, b$ as VISUAL_STYLES, c0 as ValidateEffect, c1 as VisualStyle, c2 as VisualStyleSchema, c3 as WatchEffect, c4 as WatchOptions, c5 as asEntityId, c6 as asEventId, c7 as asOrbitalId, c8 as asPageId, c9 as asPaletteEntryId, ca as asServiceId, cb as asThemeId, cc as asTraitId, cd as atomic, ce as callService, cf as createAssetKey, cg as deref, ch as deriveCollection, ci as despawn, cj as doEffects, ck as emit, cl as findService, cm as getDefaultAnimationsForRole, cn as getServiceNames, co as hasService, cp as idKindOf, cq as idPrefix, cr as isEffect, cs as isEmailValue, ct as isEntityId, cu as isEventId, cv as isFieldValue, cw as isMcpService, cx as isOrbitalId, cy as isPageId, cz as isPaletteEntryId, cA as isPhoneValue, cB as isRestService, cC as isRuntimeEntity, cD as isSExprEffect, cE as isSemanticStringType, cF as isSemanticStringValue, cG as isServiceId, cH as isServiceReference, cI as isServiceReferenceObject, cJ as isSocketService, cK as isThemeId, cL as isTraitId, cM as isUrlValue, cN as isUuidValue, cO as isValidPatternType, cP as ledgerCurName, cQ as ledgerRename, cR as ledgerResolveName, cS as mintId, cT as navigate, cU as notify, cV as parseAssetKey, cW as parseServiceRef, cX as persist, cY as persistenceModeAllowsOverrides, cZ as ref, c_ as renderUI, c$ as set, d0 as spawn, d1 as swap, d2 as validateAssetAnimations, d3 as watch } from '../effect-
|
|
1
|
+
import { b1 as PageTraitRef, O as OrbitalSchema, bf as ThemeDefinition, a8 as Orbital, b as Page, M as DomainContext, a as OrbitalDefinition } from '../schema-0C1bXRFm.js';
|
|
2
|
+
export { A as AGENT_DOMAIN_CATEGORIES, e as ALLOWED_CUSTOM_COMPONENTS, f as AgentDomainCategory, g as AgentDomainCategorySchema, h as AllowedCustomComponent, C as ColorSlice, i as ColorSliceSchema, j as ColorTokens, k as ColorTokensSchema, l as ComputedEventContract, m as ComputedEventContractSchema, n as ComputedEventListener, o as ComputedEventListenerSchema, p as ConfigProvenanceRecord, q as ConfigProvenanceRecordSchema, r as CustomPatternDefinition, s as CustomPatternDefinitionInput, t as CustomPatternDefinitionSchema, u as CustomPatternMap, v as CustomPatternMapInput, w as CustomPatternMapSchema, D as DensitySlice, x as DensitySliceSchema, y as DensityTokens, z as DensityTokensSchema, B as DesignPreferences, F as DesignPreferencesInput, G as DesignPreferencesSchema, H as DesignTokens, I as DesignTokensInput, J as DesignTokensSchema, K as DomainCategory, L as DomainCategorySchema, N as DomainContextInput, Q as DomainContextSchema, R as DomainVocabulary, S as DomainVocabularySchema, T as ElevationSlice, V as ElevationSliceSchema, W as ElevationTokens, X as ElevationTokensSchema, Y as EntityCall, Z as EntityCallSchema, E as EntityRef, _ as EntityRefSchema, $ as EntityRefStringSchema, a0 as EntitySemanticRole, a1 as EntitySemanticRoleSchema, a2 as EventListener, a3 as EventListenerSchema, a4 as EventSemanticRole, a5 as EventSemanticRoleSchema, a6 as EventSource, a7 as EventSourceSchema, a9 as GameSubCategory, aa as GameSubCategorySchema, ab as GeometrySlice, ac as GeometrySliceSchema, ad as GeometryTokens, ae as GeometryTokensSchema, af as IconFamily, ag as IconFamilySchema, ah as IconographySlice, ai as IconographySliceSchema, aj as IconographyTokens, ak as IconographyTokensSchema, al as IllustrationSlice, am as IllustrationSliceSchema, an as IllustrationStyle, ao as IllustrationStyleSchema, ap as IllustrationTokens, aq as IllustrationTokensSchema, ar as MotionDurationKey, as as MotionDurationKeySchema, at as MotionDurationPalette, au as MotionDurationPaletteSchema, av as MotionEasingKey, aw as MotionEasingKeySchema, ax as MotionEasingPalette, ay as MotionEasingPaletteSchema, az as MotionIntent, aA as MotionIntentMap, aB as MotionIntentMapSchema, aC as MotionIntentSchema, aD as MotionSlice, aE as MotionSliceSchema, aF as MotionTokens, aG as MotionTokensSchema, aH as NavItem, aI as NodeClassification, aJ as NodeClassificationSchema, aK as OrbitalConfig, aL as OrbitalConfigInput, aM as OrbitalConfigSchema, aN as OrbitalDefinitionSchema, aO as OrbitalInput, d as OrbitalPage, aP as OrbitalPageInput, aQ as OrbitalPageSchema, aR as OrbitalPageStrictInput, aS as OrbitalPageStrictSchema, aT as OrbitalSchemaInput, aU as OrbitalSchemaSchema, aV as OrbitalSchemaWithTraits, aW as OrbitalUnit, aX as OrbitalUnitSchema, aY as OrbitalZodSchema, P as PageRef, c as PageRefObject, aZ as PageRefObjectSchema, a_ as PageRefSchema, a$ as PageRefStringSchema, b0 as PageSchema, b2 as PageTraitRefSchema, b3 as RelatedLink, b4 as RelatedLinkSchema, b5 as SchemaMetadata, b6 as SchemaMetadataSchema, b7 as SkinSpec, b8 as SkinSpecSchema, b9 as SpacingScale, ba as SpacingScaleSchema, bb as StateSemanticRole, bc as StateSemanticRoleSchema, bd as SuggestedGuard, be as SuggestedGuardSchema, bg as ThemeDefinitionSchema, bh as ThemeRef, bi as ThemeRefSchema, bj as ThemeRefStringSchema, bk as ThemeTokens, bl as ThemeTokensSchema, bm as ThemeVariant, bn as ThemeVariantSchema, bo as TypeIntent, bp as TypeIntentMap, bq as TypeIntentMapSchema, br as TypeIntentSchema, bs as TypeScale, bt as TypeScaleEntry, bu as TypeScaleEntrySchema, bv as TypeScaleSchema, bw as TypeScaleTokens, bx as TypeScaleTokensSchema, by as TypeSizeKey, bz as TypeSizeKeySchema, bA as TypeSlice, bB as TypeSliceSchema, bC as TypeSlot, bD as TypeSlotSchema, bE as TypeWeight, bF as TypeWeightSchema, bG as UXHints, bH as UXHintsSchema, U as UseDeclaration, bI as UseDeclarationSchema, bJ as UserPersona, bK as UserPersonaInput, bL as UserPersonaSchema, bM as ViewType, bN as ViewTypeSchema, bO as isEntityCall, bP as isEntityReference, bQ as isEntityReferenceAny, bR as isImportedTraitRef, bS as isOrbitalDefinition, bT as isPageReference, bU as isPageReferenceObject, bV as isPageReferenceString, bW as isThemeReference, bX as parseEntityRef, bY as parseImportedTraitRef, bZ as parseOrbitalSchema, b_ as parsePageRef, b$ as safeParseOrbitalSchema } from '../schema-0C1bXRFm.js';
|
|
3
|
+
import { F as FieldValue, E as EntityField, a as EntityPersistence, bp as ServiceParams, e as Entity, f as EntityRow, A as AnyPatternConfig, O as OrbitalId, T as TraitId, b as EventId, c as Effect } from '../effect-DxD-XTI8.js';
|
|
4
|
+
export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, a8 as EntityData, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, at as ForwardConfig, au as ForwardEffect, av as IdForKind, aw as IdKind, I as IdentityLedger, ax as IdentityLedgerSchema, ay as LedgerEntry, az as LedgerEntrySchema, aA as LedgerKind, aB as LedgerKindSchema, aC as LlmEffect, aD as LogEffect, aE as McpServiceDef, aF as McpServiceDefSchema, aG as MemoryEffect, aH as NavigateEffect, aI as NnConfig, aJ as NnLayer, aK as NotifyEffect, aL as ObjectEntityField, aM as OrbitalEntity, aN as OrbitalEntityInput, aO as OrbitalEntitySchema, aP as OrbitalIdSchema, aQ as OsEffect, aR as PATTERN_TYPES, P as PageId, aS as PageIdSchema, aT as PaletteEntryId, aU as PaletteEntryIdSchema, aV as PatternConfig, aY as PatternType, aZ as PersistData, a_ as PersistEffect, a$ as PersistEmitConfig, b0 as RefEffect, R as RelationConfig, b1 as RelationConfigSchema, b2 as RelationEntityField, h as RenderBinding, b3 as RenderChildrenMap, b4 as RenderItemLambda, i as RenderUIEffect, b5 as RenderUINode, b6 as ResolvedPatternProps, b7 as RestAuthConfig, b8 as RestAuthConfigSchema, b9 as RestServiceDef, ba as RestServiceDefSchema, bb as SEMANTIC_STRING_TYPES, bc as SERVICE_TYPES, bd as SHEET_PROJECTIONS, be as SPRITE_DIRECTIONS, bf as ScalarEntityField, bg as ScenePos, bh as ScenePosSchema, bi as SemanticAssetRef, bj as SemanticAssetRefInput, bk as SemanticAssetRefSchema, bl as SemanticStringType, g as ServiceDefinition, bm as ServiceDefinitionSchema, bn as ServiceId, bo as ServiceIdSchema, bq as ServiceParamsValue, S as ServiceRef, br as ServiceRefObject, bs as ServiceRefObjectSchema, bt as ServiceRefSchema, bu as ServiceRefStringSchema, bv as ServiceType, bw as ServiceTypeSchema, bx as SessionEffect, by as SetEffect, bz as SheetProjection, bA as SheetProjectionSchema, bB as SocketEvents, bC as SocketEventsSchema, bD as SocketServiceDef, bE as SocketServiceDefSchema, bF as SpawnEffect, bG as SpriteDirection, bH as SpriteDirectionSchema, bI as SpriteSheetAtlas, bJ as SpriteSheetAtlasInput, bK as SpriteSheetAtlasSchema, bL as SubTexture, bM as SubTextureSchema, bN as SwapEffect, bO as TextureAtlas, bP as TextureAtlasSchema, bQ as ThemeId, bR as ThemeIdSchema, bS as Tilesheet, bT as TilesheetSchema, bU as TraceEffect, bV as TrainConfig, bW as TrainEffect, bX as TraitIdSchema, bY as TypedEffect, U as UISlot, bZ as UISlotSchema, b_ as UI_SLOTS, b$ as VISUAL_STYLES, c0 as ValidateEffect, c1 as VisualStyle, c2 as VisualStyleSchema, c3 as WatchEffect, c4 as WatchOptions, c5 as asEntityId, c6 as asEventId, c7 as asOrbitalId, c8 as asPageId, c9 as asPaletteEntryId, ca as asServiceId, cb as asThemeId, cc as asTraitId, cd as atomic, ce as callService, cf as createAssetKey, cg as deref, ch as deriveCollection, ci as despawn, cj as doEffects, ck as emit, cl as findService, cm as getDefaultAnimationsForRole, cn as getServiceNames, co as hasService, cp as idKindOf, cq as idPrefix, cr as isEffect, cs as isEmailValue, ct as isEntityId, cu as isEventId, cv as isFieldValue, cw as isMcpService, cx as isOrbitalId, cy as isPageId, cz as isPaletteEntryId, cA as isPhoneValue, cB as isRestService, cC as isRuntimeEntity, cD as isSExprEffect, cE as isSemanticStringType, cF as isSemanticStringValue, cG as isServiceId, cH as isServiceReference, cI as isServiceReferenceObject, cJ as isSocketService, cK as isThemeId, cL as isTraitId, cM as isUrlValue, cN as isUuidValue, cO as isValidPatternType, cP as ledgerCurName, cQ as ledgerRename, cR as ledgerResolveName, cS as mintId, cT as navigate, cU as notify, cV as parseAssetKey, cW as parseServiceRef, cX as persist, cY as persistenceModeAllowsOverrides, cZ as ref, c_ as renderUI, c$ as set, d0 as spawn, d1 as swap, d2 as validateAssetAnimations, d3 as watch } from '../effect-DxD-XTI8.js';
|
|
5
5
|
import { S as SExpr, R as RuntimeValue, d as EventPayloadValue, J as JsonValue, a as EventPayload, L as LogMeta, g as JsonObject, T as ToolArgs, c as EvalContext } from '../expression-Fk8bQWef.js';
|
|
6
6
|
export { C as CORE_BINDINGS, b as CoreBinding, E as Expression, e as ExpressionInput, f as ExpressionSchema, h as LogMetaValue, P as ParsedBinding, i as SExprAtom, j as SExprAtomSchema, k as SExprDataSchema, l as SExprInput, m as SExprObject, n as SExprSchema, o as collectBindings, p as getArgs, q as getOperator, r as isBinding, s as isEventPayloadValue, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive, w as isSExpr, x as isSExprAtom, y as isSExprCall, z as isValidBinding, A as parseBinding, B as sexpr, D as walkSExpr } from '../expression-Fk8bQWef.js';
|
|
7
7
|
import { z } from 'zod';
|
|
8
|
-
import { a as TraitReference, g as Trait, L as ListenSource, D as DeclaredTraitConfig, b as TraitConfig, C as ConfigFieldDeclaration, S as State, ae as Transition, r as Event, e as TraitConfigValue, Y as TraitCategory, as as TraitScope } from '../trait-
|
|
9
|
-
export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, Z as TraitCategorySchema, c as TraitConfigObject, _ as TraitConfigSchema, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as normalizeCallSiteConfigToValues, aq as normalizeTraitRef, ar as resolveConfigRefEventName } from '../trait-
|
|
10
|
-
import { T as TraitOverlay, R as RuleOverlay, J as JsonSchema, c as FactoryConfigTier } from '../types-
|
|
8
|
+
import { a as TraitReference, g as Trait, L as ListenSource, D as DeclaredTraitConfig, b as TraitConfig, C as ConfigFieldDeclaration, S as State, ae as Transition, r as Event, e as TraitConfigValue, Y as TraitCategory, as as TraitScope } from '../trait-WnYkvPdZ.js';
|
|
9
|
+
export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, Z as TraitCategorySchema, c as TraitConfigObject, _ as TraitConfigSchema, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as normalizeCallSiteConfigToValues, aq as normalizeTraitRef, ar as resolveConfigRefEventName } from '../trait-WnYkvPdZ.js';
|
|
10
|
+
import { T as TraitOverlay, R as RuleOverlay, J as JsonSchema, c as FactoryConfigTier } from '../types-C4YztU2N.js';
|
|
11
11
|
import { MakeTraitRefOpts, EventWiringEntry, LayoutStrategy } from '../builders.js';
|
|
12
12
|
|
|
13
13
|
/**
|
package/dist/types/index.js
CHANGED
|
@@ -1179,7 +1179,9 @@ var OrbitalPageStrictSchema = z.object({
|
|
|
1179
1179
|
path: z.string().min(1, "Page path is required").startsWith("/", "Path must start with /"),
|
|
1180
1180
|
primaryEntity: z.string().min(1, "Primary entity is required"),
|
|
1181
1181
|
traits: z.array(PageTraitRefSchema).min(1, "Page must have at least one trait"),
|
|
1182
|
-
title: z.string().optional()
|
|
1182
|
+
title: z.string().optional(),
|
|
1183
|
+
icon: z.string().optional(),
|
|
1184
|
+
label: z.string().optional()
|
|
1183
1185
|
}).strict();
|
|
1184
1186
|
var OrbitalPageSchema = z.object({
|
|
1185
1187
|
id: PageIdSchema.optional(),
|
|
@@ -1189,7 +1191,9 @@ var OrbitalPageSchema = z.object({
|
|
|
1189
1191
|
title: z.string().optional(),
|
|
1190
1192
|
primaryEntity: z.string().optional(),
|
|
1191
1193
|
traits: z.array(PageTraitRefSchema).optional(),
|
|
1192
|
-
isInitial: z.boolean().optional()
|
|
1194
|
+
isInitial: z.boolean().optional(),
|
|
1195
|
+
icon: z.string().optional(),
|
|
1196
|
+
label: z.string().optional()
|
|
1193
1197
|
}).strict();
|
|
1194
1198
|
var PageSchema = OrbitalPageSchema;
|
|
1195
1199
|
var DomainCategorySchema = z.enum([
|