@almadar/core 10.54.0 → 10.56.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.
@@ -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-RzDL-lSo.js';
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-BlFO53UR.js';
3
+ import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, 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;
@@ -18383,6 +18406,71 @@ declare const UseDeclarationSchema: z.ZodObject<{
18383
18406
  from: string;
18384
18407
  as: string;
18385
18408
  }>;
18409
+ /**
18410
+ * ExpectDeclaration - a consumer-side requirement: "some sibling orbital
18411
+ * provides this, and here is the minimal typed slice of it I rely on."
18412
+ *
18413
+ * The dual of a provider: the entity `[identity]` tag declares "I am the
18414
+ * roster"; `expects identity` declares "I read the roster". Standalone
18415
+ * validation trusts the declaration and uses its shape as the local type
18416
+ * environment; composed-program validation link-checks it against the real
18417
+ * provider. The shape reuses the canonical `EntityField` so all type
18418
+ * compatibility flows through the one compat owner. Compile-time only.
18419
+ * See docs/Almadar_LOLO_Expects_Proposal.md.
18420
+ */
18421
+ type ExpectDeclaration = {
18422
+ /** `expects identity Customer { role : "admin" | "member" }` — the `@user` fields this orbital reads, typed. */
18423
+ kind: "identity";
18424
+ name?: string;
18425
+ shape?: EntityField[];
18426
+ } | {
18427
+ /** `expects entity OrderRecord { totalAmount : number }` — a sibling entity this orbital touches. Shape omitted = opaque reference. */
18428
+ kind: "entity";
18429
+ name: string;
18430
+ shape?: EntityField[];
18431
+ } | {
18432
+ /** `expects event Checkout.ORDER_PLACED` — a sibling trait produces this event (Phase 2). */
18433
+ kind: "event";
18434
+ traitName: string;
18435
+ event: string;
18436
+ };
18437
+ declare const ExpectDeclarationSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
18438
+ kind: z.ZodLiteral<"identity">;
18439
+ name: z.ZodOptional<z.ZodString>;
18440
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
18441
+ }, "strip", z.ZodTypeAny, {
18442
+ kind: "identity";
18443
+ name?: string | undefined;
18444
+ shape?: EntityField[] | undefined;
18445
+ }, {
18446
+ kind: "identity";
18447
+ name?: string | undefined;
18448
+ shape?: unknown[] | undefined;
18449
+ }>, z.ZodObject<{
18450
+ kind: z.ZodLiteral<"entity">;
18451
+ name: z.ZodString;
18452
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
18453
+ }, "strip", z.ZodTypeAny, {
18454
+ kind: "entity";
18455
+ name: string;
18456
+ shape?: EntityField[] | undefined;
18457
+ }, {
18458
+ kind: "entity";
18459
+ name: string;
18460
+ shape?: unknown[] | undefined;
18461
+ }>, z.ZodObject<{
18462
+ kind: z.ZodLiteral<"event">;
18463
+ traitName: z.ZodString;
18464
+ event: z.ZodString;
18465
+ }, "strip", z.ZodTypeAny, {
18466
+ event: string;
18467
+ kind: "event";
18468
+ traitName: string;
18469
+ }, {
18470
+ event: string;
18471
+ kind: "event";
18472
+ traitName: string;
18473
+ }>]>;
18386
18474
  /**
18387
18475
  * EntityCall - Reference to an imported entity with optional override arguments.
18388
18476
  *
@@ -20467,10 +20555,14 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
20467
20555
  linkedEntityId?: string | undefined;
20468
20556
  }>, "many">>;
20469
20557
  isInitial: z.ZodOptional<z.ZodBoolean>;
20558
+ icon: z.ZodOptional<z.ZodString>;
20559
+ label: z.ZodOptional<z.ZodString>;
20470
20560
  }, "strict", z.ZodTypeAny, {
20471
20561
  path: string;
20472
20562
  name: string;
20473
20563
  id?: PageId | undefined;
20564
+ icon?: string | undefined;
20565
+ label?: string | undefined;
20474
20566
  title?: string | undefined;
20475
20567
  traits?: {
20476
20568
  ref: string;
@@ -20486,6 +20578,8 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
20486
20578
  path: string;
20487
20579
  name: string;
20488
20580
  id?: string | undefined;
20581
+ icon?: string | undefined;
20582
+ label?: string | undefined;
20489
20583
  title?: string | undefined;
20490
20584
  traits?: {
20491
20585
  ref: string;
@@ -22405,6 +22499,16 @@ type OrbitalDefinition = {
22405
22499
  * ```
22406
22500
  */
22407
22501
  uses?: UseDeclaration[];
22502
+ /**
22503
+ * Consumer-side requirement declarations (`.lolo` `expects ...`).
22504
+ *
22505
+ * Promises about sibling orbitals this unit relies on: trusted as the
22506
+ * local type environment when the orbital is validated standalone,
22507
+ * link-checked against real providers at compose. Compile-time only —
22508
+ * runtime semantics are unchanged.
22509
+ * See docs/Almadar_LOLO_Expects_Proposal.md.
22510
+ */
22511
+ expects?: ExpectDeclaration[];
22408
22512
  /**
22409
22513
  * Theme definition (inline OR reference via "Alias.theme").
22410
22514
  *
@@ -22520,6 +22624,43 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
22520
22624
  from: string;
22521
22625
  as: string;
22522
22626
  }>, "many">>;
22627
+ expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
22628
+ kind: z.ZodLiteral<"identity">;
22629
+ name: z.ZodOptional<z.ZodString>;
22630
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
22631
+ }, "strip", z.ZodTypeAny, {
22632
+ kind: "identity";
22633
+ name?: string | undefined;
22634
+ shape?: EntityField[] | undefined;
22635
+ }, {
22636
+ kind: "identity";
22637
+ name?: string | undefined;
22638
+ shape?: unknown[] | undefined;
22639
+ }>, z.ZodObject<{
22640
+ kind: z.ZodLiteral<"entity">;
22641
+ name: z.ZodString;
22642
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
22643
+ }, "strip", z.ZodTypeAny, {
22644
+ kind: "entity";
22645
+ name: string;
22646
+ shape?: EntityField[] | undefined;
22647
+ }, {
22648
+ kind: "entity";
22649
+ name: string;
22650
+ shape?: unknown[] | undefined;
22651
+ }>, z.ZodObject<{
22652
+ kind: z.ZodLiteral<"event">;
22653
+ traitName: z.ZodString;
22654
+ event: z.ZodString;
22655
+ }, "strip", z.ZodTypeAny, {
22656
+ event: string;
22657
+ kind: "event";
22658
+ traitName: string;
22659
+ }, {
22660
+ event: string;
22661
+ kind: "event";
22662
+ traitName: string;
22663
+ }>]>, "many">>;
22523
22664
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
22524
22665
  name: z.ZodString;
22525
22666
  tokens: z.ZodObject<{
@@ -27919,10 +28060,14 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
27919
28060
  linkedEntityId?: string | undefined;
27920
28061
  }>, "many">>;
27921
28062
  isInitial: z.ZodOptional<z.ZodBoolean>;
28063
+ icon: z.ZodOptional<z.ZodString>;
28064
+ label: z.ZodOptional<z.ZodString>;
27922
28065
  }, "strict", z.ZodTypeAny, {
27923
28066
  path: string;
27924
28067
  name: string;
27925
28068
  id?: PageId | undefined;
28069
+ icon?: string | undefined;
28070
+ label?: string | undefined;
27926
28071
  title?: string | undefined;
27927
28072
  traits?: {
27928
28073
  ref: string;
@@ -27938,6 +28083,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
27938
28083
  path: string;
27939
28084
  name: string;
27940
28085
  id?: string | undefined;
28086
+ icon?: string | undefined;
28087
+ label?: string | undefined;
27941
28088
  title?: string | undefined;
27942
28089
  traits?: {
27943
28090
  ref: string;
@@ -29848,6 +29995,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
29848
29995
  path: string;
29849
29996
  name: string;
29850
29997
  id?: PageId | undefined;
29998
+ icon?: string | undefined;
29999
+ label?: string | undefined;
29851
30000
  title?: string | undefined;
29852
30001
  traits?: {
29853
30002
  ref: string;
@@ -30810,6 +30959,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
30810
30959
  from: string;
30811
30960
  as: string;
30812
30961
  }[] | undefined;
30962
+ expects?: ({
30963
+ kind: "identity";
30964
+ name?: string | undefined;
30965
+ shape?: EntityField[] | undefined;
30966
+ } | {
30967
+ kind: "entity";
30968
+ name: string;
30969
+ shape?: EntityField[] | undefined;
30970
+ } | {
30971
+ event: string;
30972
+ kind: "event";
30973
+ traitName: string;
30974
+ })[] | undefined;
30813
30975
  exposes?: string[] | undefined;
30814
30976
  domainContext?: {
30815
30977
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -30889,6 +31051,8 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
30889
31051
  path: string;
30890
31052
  name: string;
30891
31053
  id?: string | undefined;
31054
+ icon?: string | undefined;
31055
+ label?: string | undefined;
30892
31056
  title?: string | undefined;
30893
31057
  traits?: {
30894
31058
  ref: string;
@@ -31851,6 +32015,19 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
31851
32015
  from: string;
31852
32016
  as: string;
31853
32017
  }[] | undefined;
32018
+ expects?: ({
32019
+ kind: "identity";
32020
+ name?: string | undefined;
32021
+ shape?: unknown[] | undefined;
32022
+ } | {
32023
+ kind: "entity";
32024
+ name: string;
32025
+ shape?: unknown[] | undefined;
32026
+ } | {
32027
+ event: string;
32028
+ kind: "event";
32029
+ traitName: string;
32030
+ })[] | undefined;
31854
32031
  exposes?: string[] | undefined;
31855
32032
  domainContext?: {
31856
32033
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -31902,6 +32079,43 @@ declare const OrbitalSchema$1: z.ZodObject<{
31902
32079
  from: string;
31903
32080
  as: string;
31904
32081
  }>, "many">>;
32082
+ expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
32083
+ kind: z.ZodLiteral<"identity">;
32084
+ name: z.ZodOptional<z.ZodString>;
32085
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
32086
+ }, "strip", z.ZodTypeAny, {
32087
+ kind: "identity";
32088
+ name?: string | undefined;
32089
+ shape?: EntityField[] | undefined;
32090
+ }, {
32091
+ kind: "identity";
32092
+ name?: string | undefined;
32093
+ shape?: unknown[] | undefined;
32094
+ }>, z.ZodObject<{
32095
+ kind: z.ZodLiteral<"entity">;
32096
+ name: z.ZodString;
32097
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
32098
+ }, "strip", z.ZodTypeAny, {
32099
+ kind: "entity";
32100
+ name: string;
32101
+ shape?: EntityField[] | undefined;
32102
+ }, {
32103
+ kind: "entity";
32104
+ name: string;
32105
+ shape?: unknown[] | undefined;
32106
+ }>, z.ZodObject<{
32107
+ kind: z.ZodLiteral<"event">;
32108
+ traitName: z.ZodString;
32109
+ event: z.ZodString;
32110
+ }, "strip", z.ZodTypeAny, {
32111
+ event: string;
32112
+ kind: "event";
32113
+ traitName: string;
32114
+ }, {
32115
+ event: string;
32116
+ kind: "event";
32117
+ traitName: string;
32118
+ }>]>, "many">>;
31905
32119
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
31906
32120
  name: z.ZodString;
31907
32121
  tokens: z.ZodObject<{
@@ -37301,10 +37515,14 @@ declare const OrbitalSchema$1: z.ZodObject<{
37301
37515
  linkedEntityId?: string | undefined;
37302
37516
  }>, "many">>;
37303
37517
  isInitial: z.ZodOptional<z.ZodBoolean>;
37518
+ icon: z.ZodOptional<z.ZodString>;
37519
+ label: z.ZodOptional<z.ZodString>;
37304
37520
  }, "strict", z.ZodTypeAny, {
37305
37521
  path: string;
37306
37522
  name: string;
37307
37523
  id?: PageId | undefined;
37524
+ icon?: string | undefined;
37525
+ label?: string | undefined;
37308
37526
  title?: string | undefined;
37309
37527
  traits?: {
37310
37528
  ref: string;
@@ -37320,6 +37538,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
37320
37538
  path: string;
37321
37539
  name: string;
37322
37540
  id?: string | undefined;
37541
+ icon?: string | undefined;
37542
+ label?: string | undefined;
37323
37543
  title?: string | undefined;
37324
37544
  traits?: {
37325
37545
  ref: string;
@@ -39230,6 +39450,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
39230
39450
  path: string;
39231
39451
  name: string;
39232
39452
  id?: PageId | undefined;
39453
+ icon?: string | undefined;
39454
+ label?: string | undefined;
39233
39455
  title?: string | undefined;
39234
39456
  traits?: {
39235
39457
  ref: string;
@@ -40192,6 +40414,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
40192
40414
  from: string;
40193
40415
  as: string;
40194
40416
  }[] | undefined;
40417
+ expects?: ({
40418
+ kind: "identity";
40419
+ name?: string | undefined;
40420
+ shape?: EntityField[] | undefined;
40421
+ } | {
40422
+ kind: "entity";
40423
+ name: string;
40424
+ shape?: EntityField[] | undefined;
40425
+ } | {
40426
+ event: string;
40427
+ kind: "event";
40428
+ traitName: string;
40429
+ })[] | undefined;
40195
40430
  exposes?: string[] | undefined;
40196
40431
  domainContext?: {
40197
40432
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -40271,6 +40506,8 @@ declare const OrbitalSchema$1: z.ZodObject<{
40271
40506
  path: string;
40272
40507
  name: string;
40273
40508
  id?: string | undefined;
40509
+ icon?: string | undefined;
40510
+ label?: string | undefined;
40274
40511
  title?: string | undefined;
40275
40512
  traits?: {
40276
40513
  ref: string;
@@ -41233,6 +41470,19 @@ declare const OrbitalSchema$1: z.ZodObject<{
41233
41470
  from: string;
41234
41471
  as: string;
41235
41472
  }[] | undefined;
41473
+ expects?: ({
41474
+ kind: "identity";
41475
+ name?: string | undefined;
41476
+ shape?: unknown[] | undefined;
41477
+ } | {
41478
+ kind: "entity";
41479
+ name: string;
41480
+ shape?: unknown[] | undefined;
41481
+ } | {
41482
+ event: string;
41483
+ kind: "event";
41484
+ traitName: string;
41485
+ })[] | undefined;
41236
41486
  exposes?: string[] | undefined;
41237
41487
  domainContext?: {
41238
41488
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -41291,6 +41541,43 @@ declare const OrbitalUnitSchema: z.ZodObject<{
41291
41541
  from: string;
41292
41542
  as: string;
41293
41543
  }>, "many">>;
41544
+ expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
41545
+ kind: z.ZodLiteral<"identity">;
41546
+ name: z.ZodOptional<z.ZodString>;
41547
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
41548
+ }, "strip", z.ZodTypeAny, {
41549
+ kind: "identity";
41550
+ name?: string | undefined;
41551
+ shape?: EntityField[] | undefined;
41552
+ }, {
41553
+ kind: "identity";
41554
+ name?: string | undefined;
41555
+ shape?: unknown[] | undefined;
41556
+ }>, z.ZodObject<{
41557
+ kind: z.ZodLiteral<"entity">;
41558
+ name: z.ZodString;
41559
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
41560
+ }, "strip", z.ZodTypeAny, {
41561
+ kind: "entity";
41562
+ name: string;
41563
+ shape?: EntityField[] | undefined;
41564
+ }, {
41565
+ kind: "entity";
41566
+ name: string;
41567
+ shape?: unknown[] | undefined;
41568
+ }>, z.ZodObject<{
41569
+ kind: z.ZodLiteral<"event">;
41570
+ traitName: z.ZodString;
41571
+ event: z.ZodString;
41572
+ }, "strip", z.ZodTypeAny, {
41573
+ event: string;
41574
+ kind: "event";
41575
+ traitName: string;
41576
+ }, {
41577
+ event: string;
41578
+ kind: "event";
41579
+ traitName: string;
41580
+ }>]>, "many">>;
41294
41581
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
41295
41582
  name: z.ZodString;
41296
41583
  tokens: z.ZodObject<{
@@ -46690,10 +46977,14 @@ declare const OrbitalUnitSchema: z.ZodObject<{
46690
46977
  linkedEntityId?: string | undefined;
46691
46978
  }>, "many">>;
46692
46979
  isInitial: z.ZodOptional<z.ZodBoolean>;
46980
+ icon: z.ZodOptional<z.ZodString>;
46981
+ label: z.ZodOptional<z.ZodString>;
46693
46982
  }, "strict", z.ZodTypeAny, {
46694
46983
  path: string;
46695
46984
  name: string;
46696
46985
  id?: PageId | undefined;
46986
+ icon?: string | undefined;
46987
+ label?: string | undefined;
46697
46988
  title?: string | undefined;
46698
46989
  traits?: {
46699
46990
  ref: string;
@@ -46709,6 +47000,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
46709
47000
  path: string;
46710
47001
  name: string;
46711
47002
  id?: string | undefined;
47003
+ icon?: string | undefined;
47004
+ label?: string | undefined;
46712
47005
  title?: string | undefined;
46713
47006
  traits?: {
46714
47007
  ref: string;
@@ -48619,6 +48912,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
48619
48912
  path: string;
48620
48913
  name: string;
48621
48914
  id?: PageId | undefined;
48915
+ icon?: string | undefined;
48916
+ label?: string | undefined;
48622
48917
  title?: string | undefined;
48623
48918
  traits?: {
48624
48919
  ref: string;
@@ -49581,6 +49876,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
49581
49876
  from: string;
49582
49877
  as: string;
49583
49878
  }[] | undefined;
49879
+ expects?: ({
49880
+ kind: "identity";
49881
+ name?: string | undefined;
49882
+ shape?: EntityField[] | undefined;
49883
+ } | {
49884
+ kind: "entity";
49885
+ name: string;
49886
+ shape?: EntityField[] | undefined;
49887
+ } | {
49888
+ event: string;
49889
+ kind: "event";
49890
+ traitName: string;
49891
+ })[] | undefined;
49584
49892
  exposes?: string[] | undefined;
49585
49893
  domainContext?: {
49586
49894
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -49660,6 +49968,8 @@ declare const OrbitalUnitSchema: z.ZodObject<{
49660
49968
  path: string;
49661
49969
  name: string;
49662
49970
  id?: string | undefined;
49971
+ icon?: string | undefined;
49972
+ label?: string | undefined;
49663
49973
  title?: string | undefined;
49664
49974
  traits?: {
49665
49975
  ref: string;
@@ -50622,6 +50932,19 @@ declare const OrbitalUnitSchema: z.ZodObject<{
50622
50932
  from: string;
50623
50933
  as: string;
50624
50934
  }[] | undefined;
50935
+ expects?: ({
50936
+ kind: "identity";
50937
+ name?: string | undefined;
50938
+ shape?: unknown[] | undefined;
50939
+ } | {
50940
+ kind: "entity";
50941
+ name: string;
50942
+ shape?: unknown[] | undefined;
50943
+ } | {
50944
+ event: string;
50945
+ kind: "event";
50946
+ traitName: string;
50947
+ })[] | undefined;
50625
50948
  exposes?: string[] | undefined;
50626
50949
  domainContext?: {
50627
50950
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -51027,6 +51350,43 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
51027
51350
  from: string;
51028
51351
  as: string;
51029
51352
  }>, "many">>;
51353
+ expects: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
51354
+ kind: z.ZodLiteral<"identity">;
51355
+ name: z.ZodOptional<z.ZodString>;
51356
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
51357
+ }, "strip", z.ZodTypeAny, {
51358
+ kind: "identity";
51359
+ name?: string | undefined;
51360
+ shape?: EntityField[] | undefined;
51361
+ }, {
51362
+ kind: "identity";
51363
+ name?: string | undefined;
51364
+ shape?: unknown[] | undefined;
51365
+ }>, z.ZodObject<{
51366
+ kind: z.ZodLiteral<"entity">;
51367
+ name: z.ZodString;
51368
+ shape: z.ZodOptional<z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">>;
51369
+ }, "strip", z.ZodTypeAny, {
51370
+ kind: "entity";
51371
+ name: string;
51372
+ shape?: EntityField[] | undefined;
51373
+ }, {
51374
+ kind: "entity";
51375
+ name: string;
51376
+ shape?: unknown[] | undefined;
51377
+ }>, z.ZodObject<{
51378
+ kind: z.ZodLiteral<"event">;
51379
+ traitName: z.ZodString;
51380
+ event: z.ZodString;
51381
+ }, "strip", z.ZodTypeAny, {
51382
+ event: string;
51383
+ kind: "event";
51384
+ traitName: string;
51385
+ }, {
51386
+ event: string;
51387
+ kind: "event";
51388
+ traitName: string;
51389
+ }>]>, "many">>;
51030
51390
  theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
51031
51391
  name: z.ZodString;
51032
51392
  tokens: z.ZodObject<{
@@ -56426,10 +56786,14 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
56426
56786
  linkedEntityId?: string | undefined;
56427
56787
  }>, "many">>;
56428
56788
  isInitial: z.ZodOptional<z.ZodBoolean>;
56789
+ icon: z.ZodOptional<z.ZodString>;
56790
+ label: z.ZodOptional<z.ZodString>;
56429
56791
  }, "strict", z.ZodTypeAny, {
56430
56792
  path: string;
56431
56793
  name: string;
56432
56794
  id?: PageId | undefined;
56795
+ icon?: string | undefined;
56796
+ label?: string | undefined;
56433
56797
  title?: string | undefined;
56434
56798
  traits?: {
56435
56799
  ref: string;
@@ -56445,6 +56809,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
56445
56809
  path: string;
56446
56810
  name: string;
56447
56811
  id?: string | undefined;
56812
+ icon?: string | undefined;
56813
+ label?: string | undefined;
56448
56814
  title?: string | undefined;
56449
56815
  traits?: {
56450
56816
  ref: string;
@@ -58355,6 +58721,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
58355
58721
  path: string;
58356
58722
  name: string;
58357
58723
  id?: PageId | undefined;
58724
+ icon?: string | undefined;
58725
+ label?: string | undefined;
58358
58726
  title?: string | undefined;
58359
58727
  traits?: {
58360
58728
  ref: string;
@@ -59317,6 +59685,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
59317
59685
  from: string;
59318
59686
  as: string;
59319
59687
  }[] | undefined;
59688
+ expects?: ({
59689
+ kind: "identity";
59690
+ name?: string | undefined;
59691
+ shape?: EntityField[] | undefined;
59692
+ } | {
59693
+ kind: "entity";
59694
+ name: string;
59695
+ shape?: EntityField[] | undefined;
59696
+ } | {
59697
+ event: string;
59698
+ kind: "event";
59699
+ traitName: string;
59700
+ })[] | undefined;
59320
59701
  exposes?: string[] | undefined;
59321
59702
  domainContext?: {
59322
59703
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -59396,6 +59777,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
59396
59777
  path: string;
59397
59778
  name: string;
59398
59779
  id?: string | undefined;
59780
+ icon?: string | undefined;
59781
+ label?: string | undefined;
59399
59782
  title?: string | undefined;
59400
59783
  traits?: {
59401
59784
  ref: string;
@@ -60358,6 +60741,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
60358
60741
  from: string;
60359
60742
  as: string;
60360
60743
  }[] | undefined;
60744
+ expects?: ({
60745
+ kind: "identity";
60746
+ name?: string | undefined;
60747
+ shape?: unknown[] | undefined;
60748
+ } | {
60749
+ kind: "entity";
60750
+ name: string;
60751
+ shape?: unknown[] | undefined;
60752
+ } | {
60753
+ event: string;
60754
+ kind: "event";
60755
+ traitName: string;
60756
+ })[] | undefined;
60361
60757
  exposes?: string[] | undefined;
60362
60758
  domainContext?: {
60363
60759
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -60738,6 +61134,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
60738
61134
  path: string;
60739
61135
  name: string;
60740
61136
  id?: PageId | undefined;
61137
+ icon?: string | undefined;
61138
+ label?: string | undefined;
60741
61139
  title?: string | undefined;
60742
61140
  traits?: {
60743
61141
  ref: string;
@@ -61700,6 +62098,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
61700
62098
  from: string;
61701
62099
  as: string;
61702
62100
  }[] | undefined;
62101
+ expects?: ({
62102
+ kind: "identity";
62103
+ name?: string | undefined;
62104
+ shape?: EntityField[] | undefined;
62105
+ } | {
62106
+ kind: "entity";
62107
+ name: string;
62108
+ shape?: EntityField[] | undefined;
62109
+ } | {
62110
+ event: string;
62111
+ kind: "event";
62112
+ traitName: string;
62113
+ })[] | undefined;
61703
62114
  exposes?: string[] | undefined;
61704
62115
  domainContext?: {
61705
62116
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -61898,6 +62309,8 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
61898
62309
  path: string;
61899
62310
  name: string;
61900
62311
  id?: string | undefined;
62312
+ icon?: string | undefined;
62313
+ label?: string | undefined;
61901
62314
  title?: string | undefined;
61902
62315
  traits?: {
61903
62316
  ref: string;
@@ -62860,6 +63273,19 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
62860
63273
  from: string;
62861
63274
  as: string;
62862
63275
  }[] | undefined;
63276
+ expects?: ({
63277
+ kind: "identity";
63278
+ name?: string | undefined;
63279
+ shape?: unknown[] | undefined;
63280
+ } | {
63281
+ kind: "entity";
63282
+ name: string;
63283
+ shape?: unknown[] | undefined;
63284
+ } | {
63285
+ event: string;
63286
+ kind: "event";
63287
+ traitName: string;
63288
+ })[] | undefined;
62863
63289
  exposes?: string[] | undefined;
62864
63290
  domainContext?: {
62865
63291
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -63123,6 +63549,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
63123
63549
  path: string;
63124
63550
  name: string;
63125
63551
  id?: string | undefined;
63552
+ icon?: string | undefined;
63553
+ label?: string | undefined;
63126
63554
  title?: string | undefined;
63127
63555
  traits?: {
63128
63556
  ref: string;
@@ -64085,6 +64513,19 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
64085
64513
  from: string;
64086
64514
  as: string;
64087
64515
  }[] | undefined;
64516
+ expects?: ({
64517
+ kind: "identity";
64518
+ name?: string | undefined;
64519
+ shape?: unknown[] | undefined;
64520
+ } | {
64521
+ kind: "entity";
64522
+ name: string;
64523
+ shape?: unknown[] | undefined;
64524
+ } | {
64525
+ event: string;
64526
+ kind: "event";
64527
+ traitName: string;
64528
+ })[] | undefined;
64088
64529
  exposes?: string[] | undefined;
64089
64530
  domainContext?: {
64090
64531
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -64283,6 +64724,8 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
64283
64724
  path: string;
64284
64725
  name: string;
64285
64726
  id?: PageId | undefined;
64727
+ icon?: string | undefined;
64728
+ label?: string | undefined;
64286
64729
  title?: string | undefined;
64287
64730
  traits?: {
64288
64731
  ref: string;
@@ -65245,6 +65688,19 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
65245
65688
  from: string;
65246
65689
  as: string;
65247
65690
  }[] | undefined;
65691
+ expects?: ({
65692
+ kind: "identity";
65693
+ name?: string | undefined;
65694
+ shape?: EntityField[] | undefined;
65695
+ } | {
65696
+ kind: "entity";
65697
+ name: string;
65698
+ shape?: EntityField[] | undefined;
65699
+ } | {
65700
+ event: string;
65701
+ kind: "event";
65702
+ traitName: string;
65703
+ })[] | undefined;
65248
65704
  exposes?: string[] | undefined;
65249
65705
  domainContext?: {
65250
65706
  category: "form" | "content" | "dashboard" | "game" | "social" | "business" | "workflow" | "ecommerce";
@@ -65401,4 +65857,4 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
65401
65857
  type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
65402
65858
  type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
65403
65859
 
65404
- export { EntityRefStringSchema as $, AGENT_DOMAIN_CATEGORIES as A, type DesignPreferences as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferencesInput as F, DesignPreferencesSchema as G, type DesignTokens as H, type DesignTokensInput as I, DesignTokensSchema as J, type DomainCategory as K, DomainCategorySchema as L, type DomainContext as M, type DomainContextInput as N, type OrbitalSchema as O, type PageRef as P, DomainContextSchema as Q, type DomainVocabulary as R, DomainVocabularySchema as S, type ElevationSlice as T, type UseDeclaration as U, ElevationSliceSchema as V, type ElevationTokens as W, ElevationTokensSchema as X, type EntityCall as Y, EntityCallSchema as Z, EntityRefSchema as _, type OrbitalDefinition as a, PageRefStringSchema as a$, type EntitySemanticRole as a0, EntitySemanticRoleSchema as a1, type EventListener as a2, EventListenerSchema as a3, type EventSemanticRole as a4, EventSemanticRoleSchema as a5, type EventSource as a6, EventSourceSchema as a7, type Orbital as a8, type GameSubCategory as a9, type MotionIntentMap as aA, MotionIntentMapSchema as aB, MotionIntentSchema as aC, type MotionSlice as aD, MotionSliceSchema as aE, type MotionTokens as aF, MotionTokensSchema as aG, type NavItem as aH, type NodeClassification as aI, NodeClassificationSchema as aJ, type OrbitalConfig as aK, type OrbitalConfigInput as aL, OrbitalConfigSchema as aM, OrbitalDefinitionSchema as aN, type OrbitalInput as aO, type OrbitalPageInput as aP, OrbitalPageSchema as aQ, type OrbitalPageStrictInput as aR, OrbitalPageStrictSchema as aS, type OrbitalSchemaInput as aT, OrbitalSchemaSchema as aU, type OrbitalSchemaWithTraits as aV, type OrbitalUnit as aW, OrbitalUnitSchema as aX, OrbitalSchema$1 as aY, PageRefObjectSchema as aZ, PageRefSchema as a_, GameSubCategorySchema as aa, type GeometrySlice as ab, GeometrySliceSchema as ac, type GeometryTokens as ad, GeometryTokensSchema as ae, type IconFamily as af, IconFamilySchema as ag, type IconographySlice as ah, IconographySliceSchema as ai, type IconographyTokens as aj, IconographyTokensSchema as ak, type IllustrationSlice as al, IllustrationSliceSchema as am, type IllustrationStyle as an, IllustrationStyleSchema as ao, type IllustrationTokens as ap, IllustrationTokensSchema as aq, type MotionDurationKey as ar, MotionDurationKeySchema as as, type MotionDurationPalette as at, MotionDurationPaletteSchema as au, type MotionEasingKey as av, MotionEasingKeySchema as aw, type MotionEasingPalette as ax, MotionEasingPaletteSchema as ay, type MotionIntent as az, type Page as b, safeParseOrbitalSchema as b$, PageSchema as b0, type PageTraitRef as b1, PageTraitRefSchema as b2, type RelatedLink as b3, RelatedLinkSchema as b4, type SchemaMetadata as b5, SchemaMetadataSchema as b6, type SkinSpec as b7, SkinSpecSchema as b8, type SpacingScale as b9, type TypeSlice as bA, TypeSliceSchema as bB, type TypeSlot as bC, TypeSlotSchema as bD, type TypeWeight as bE, TypeWeightSchema as bF, type UXHints as bG, UXHintsSchema as bH, UseDeclarationSchema as bI, type UserPersona as bJ, type UserPersonaInput as bK, UserPersonaSchema as bL, type ViewType as bM, ViewTypeSchema as bN, isEntityCall as bO, isEntityReference as bP, isEntityReferenceAny as bQ, isImportedTraitRef as bR, isOrbitalDefinition as bS, isPageReference as bT, isPageReferenceObject as bU, isPageReferenceString as bV, isThemeReference as bW, parseEntityRef as bX, parseImportedTraitRef as bY, parseOrbitalSchema as bZ, parsePageRef as b_, SpacingScaleSchema as ba, type StateSemanticRole as bb, StateSemanticRoleSchema as bc, type SuggestedGuard as bd, SuggestedGuardSchema as be, type ThemeDefinition as bf, ThemeDefinitionSchema as bg, type ThemeRef as bh, ThemeRefSchema as bi, ThemeRefStringSchema as bj, type ThemeTokens as bk, ThemeTokensSchema as bl, type ThemeVariant as bm, ThemeVariantSchema as bn, type TypeIntent as bo, type TypeIntentMap as bp, TypeIntentMapSchema as bq, TypeIntentSchema as br, type TypeScale as bs, type TypeScaleEntry as bt, TypeScaleEntrySchema as bu, TypeScaleSchema as bv, type TypeScaleTokens as bw, TypeScaleTokensSchema as bx, type TypeSizeKey as by, TypeSizeKeySchema as bz, type PageRefObject as c, type OrbitalPage as d, ALLOWED_CUSTOM_COMPONENTS as e, type AgentDomainCategory as f, AgentDomainCategorySchema as g, type AllowedCustomComponent as h, ColorSliceSchema as i, type ColorTokens as j, ColorTokensSchema as k, type ComputedEventContract as l, ComputedEventContractSchema as m, type ComputedEventListener as n, ComputedEventListenerSchema as o, type ConfigProvenanceRecord as p, ConfigProvenanceRecordSchema as q, type CustomPatternDefinition as r, type CustomPatternDefinitionInput as s, CustomPatternDefinitionSchema as t, type CustomPatternMap as u, type CustomPatternMapInput as v, CustomPatternMapSchema as w, DensitySliceSchema as x, type DensityTokens as y, DensityTokensSchema as z };
65860
+ export { EntityRefSchema as $, AGENT_DOMAIN_CATEGORIES as A, DensityTokensSchema as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferences as F, type DesignPreferencesInput as G, DesignPreferencesSchema as H, type DesignTokens as I, type DesignTokensInput as J, DesignTokensSchema as K, type DomainCategory as L, DomainCategorySchema as M, type DomainContext as N, type OrbitalSchema as O, type PageRef as P, type DomainContextInput as Q, DomainContextSchema as R, type DomainVocabulary as S, DomainVocabularySchema as T, type UseDeclaration as U, type ElevationSlice as V, ElevationSliceSchema as W, type ElevationTokens as X, ElevationTokensSchema as Y, type EntityCall as Z, EntityCallSchema as _, type OrbitalDefinition as a, PageRefObjectSchema as a$, EntityRefStringSchema as a0, type EntitySemanticRole as a1, EntitySemanticRoleSchema as a2, type EventListener as a3, EventListenerSchema as a4, type EventSemanticRole as a5, EventSemanticRoleSchema as a6, type EventSource as a7, EventSourceSchema as a8, ExpectDeclarationSchema as a9, MotionEasingPaletteSchema as aA, type MotionIntent as aB, type MotionIntentMap as aC, MotionIntentMapSchema as aD, MotionIntentSchema as aE, type MotionSlice as aF, MotionSliceSchema as aG, type MotionTokens as aH, MotionTokensSchema as aI, type NavItem as aJ, type NodeClassification as aK, NodeClassificationSchema as aL, type OrbitalConfig as aM, type OrbitalConfigInput as aN, OrbitalConfigSchema as aO, OrbitalDefinitionSchema as aP, type OrbitalInput as aQ, type OrbitalPageInput as aR, OrbitalPageSchema as aS, type OrbitalPageStrictInput as aT, OrbitalPageStrictSchema as aU, type OrbitalSchemaInput as aV, OrbitalSchemaSchema as aW, type OrbitalSchemaWithTraits as aX, type OrbitalUnit as aY, OrbitalUnitSchema as aZ, OrbitalSchema$1 as a_, type Orbital as aa, type GameSubCategory as ab, GameSubCategorySchema as ac, type GeometrySlice as ad, GeometrySliceSchema as ae, type GeometryTokens as af, GeometryTokensSchema as ag, type IconFamily as ah, IconFamilySchema as ai, type IconographySlice as aj, IconographySliceSchema as ak, type IconographyTokens as al, IconographyTokensSchema as am, type IllustrationSlice as an, IllustrationSliceSchema as ao, type IllustrationStyle as ap, IllustrationStyleSchema as aq, type IllustrationTokens as ar, IllustrationTokensSchema as as, type MotionDurationKey as at, MotionDurationKeySchema as au, type MotionDurationPalette as av, MotionDurationPaletteSchema as aw, type MotionEasingKey as ax, MotionEasingKeySchema as ay, type MotionEasingPalette as az, type ExpectDeclaration as b, parseOrbitalSchema as b$, PageRefSchema as b0, PageRefStringSchema as b1, PageSchema as b2, type PageTraitRef as b3, PageTraitRefSchema as b4, type RelatedLink as b5, RelatedLinkSchema as b6, type SchemaMetadata as b7, SchemaMetadataSchema as b8, type SkinSpec as b9, type TypeSizeKey as bA, TypeSizeKeySchema as bB, type TypeSlice as bC, TypeSliceSchema as bD, type TypeSlot as bE, TypeSlotSchema as bF, type TypeWeight as bG, TypeWeightSchema as bH, type UXHints as bI, UXHintsSchema as bJ, UseDeclarationSchema as bK, type UserPersona as bL, type UserPersonaInput as bM, UserPersonaSchema as bN, type ViewType as bO, ViewTypeSchema as bP, isEntityCall as bQ, isEntityReference as bR, isEntityReferenceAny as bS, isImportedTraitRef as bT, isOrbitalDefinition as bU, isPageReference as bV, isPageReferenceObject as bW, isPageReferenceString as bX, isThemeReference as bY, parseEntityRef as bZ, parseImportedTraitRef as b_, SkinSpecSchema as ba, type SpacingScale as bb, SpacingScaleSchema as bc, type StateSemanticRole as bd, StateSemanticRoleSchema as be, type SuggestedGuard as bf, SuggestedGuardSchema as bg, type ThemeDefinition as bh, ThemeDefinitionSchema as bi, type ThemeRef as bj, ThemeRefSchema as bk, ThemeRefStringSchema as bl, type ThemeTokens as bm, ThemeTokensSchema as bn, type ThemeVariant as bo, ThemeVariantSchema as bp, type TypeIntent as bq, type TypeIntentMap as br, TypeIntentMapSchema as bs, TypeIntentSchema as bt, type TypeScale as bu, type TypeScaleEntry as bv, TypeScaleEntrySchema as bw, TypeScaleSchema as bx, type TypeScaleTokens as by, TypeScaleTokensSchema as bz, type Page as c, parsePageRef as c0, safeParseOrbitalSchema as c1, type PageRefObject as d, type OrbitalPage as e, ALLOWED_CUSTOM_COMPONENTS as f, type AgentDomainCategory as g, AgentDomainCategorySchema as h, type AllowedCustomComponent as i, ColorSliceSchema as j, type ColorTokens as k, ColorTokensSchema as l, type ComputedEventContract as m, ComputedEventContractSchema as n, type ComputedEventListener as o, ComputedEventListenerSchema as p, type ConfigProvenanceRecord as q, ConfigProvenanceRecordSchema as r, type CustomPatternDefinition as s, type CustomPatternDefinitionInput as t, CustomPatternDefinitionSchema as u, type CustomPatternMap as v, type CustomPatternMapInput as w, CustomPatternMapSchema as x, DensitySliceSchema as y, type DensityTokens as z };