@almadar/core 7.13.0 → 7.14.1
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.map +1 -1
- package/dist/{compose-behaviors-C8ZcgJMM.d.ts → compose-behaviors-BJTsmdSN.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +2 -2
- package/dist/domain-language/index.js.map +1 -1
- package/dist/{expression-DfPiB-UG.d.ts → expression-CkBbMSmB.d.ts} +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js.map +1 -1
- package/dist/{schema-Qc9OOui3.d.ts → schema-DEkM0GfA.d.ts} +104 -95
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/types/index.d.ts +10 -10
- package/dist/types/index.js.map +1 -1
- package/package.json +11 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as SExpr, b as EventPayload, d as Expression } from './expression-
|
|
1
|
+
import { S as SExpr, b as EventPayload, d as Expression } from './expression-CkBbMSmB.js';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
import { AnyPatternConfig } from '@almadar/patterns';
|
|
4
4
|
|
|
@@ -732,9 +732,18 @@ declare function findService(services: ServiceDefinition[], name: string): Servi
|
|
|
732
732
|
* Check if a service name exists (case-insensitive).
|
|
733
733
|
*/
|
|
734
734
|
declare function hasService(services: ServiceDefinition[], name: string): boolean;
|
|
735
|
+
/**
|
|
736
|
+
* Allowed leaf value for `ServiceParams`. Mirrors `EventPayloadValue`'s
|
|
737
|
+
* recursive-array shape so integration call signatures can express the
|
|
738
|
+
* nested structures real services need (port mappings, volume mounts,
|
|
739
|
+
* pagination cursors), and so a value satisfying `EventPayloadValue`
|
|
740
|
+
* also satisfies `ServiceParamsValue` without a cast — the same data
|
|
741
|
+
* flows through `call-service` and `emit` without boundary widening.
|
|
742
|
+
*/
|
|
743
|
+
type ServiceParamsValue = string | number | boolean | Date | null | undefined | ServiceParams | readonly ServiceParamsValue[];
|
|
735
744
|
/** Parameters passed to call-service effects. Recursive for nested request shapes. */
|
|
736
745
|
interface ServiceParams {
|
|
737
|
-
[key: string]:
|
|
746
|
+
[key: string]: ServiceParamsValue;
|
|
738
747
|
}
|
|
739
748
|
|
|
740
749
|
/**
|
|
@@ -5562,11 +5571,11 @@ declare const UserPersonaSchema: z.ZodObject<{
|
|
|
5562
5571
|
}, "strip", z.ZodTypeAny, {
|
|
5563
5572
|
name: string;
|
|
5564
5573
|
role?: string | undefined;
|
|
5565
|
-
device?: "mobile" | "
|
|
5574
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
5566
5575
|
}, {
|
|
5567
5576
|
name: string;
|
|
5568
5577
|
role?: string | undefined;
|
|
5569
|
-
device?: "mobile" | "
|
|
5578
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
5570
5579
|
}>;
|
|
5571
5580
|
/**
|
|
5572
5581
|
* Domain context - user request + classification
|
|
@@ -5616,11 +5625,11 @@ declare const DomainContextSchema: z.ZodObject<{
|
|
|
5616
5625
|
}, "strip", z.ZodTypeAny, {
|
|
5617
5626
|
name: string;
|
|
5618
5627
|
role?: string | undefined;
|
|
5619
|
-
device?: "mobile" | "
|
|
5628
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
5620
5629
|
}, {
|
|
5621
5630
|
name: string;
|
|
5622
5631
|
role?: string | undefined;
|
|
5623
|
-
device?: "mobile" | "
|
|
5632
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
5624
5633
|
}>, "many">>;
|
|
5625
5634
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
5626
5635
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5631,7 +5640,7 @@ declare const DomainContextSchema: z.ZodObject<{
|
|
|
5631
5640
|
personas?: {
|
|
5632
5641
|
name: string;
|
|
5633
5642
|
role?: string | undefined;
|
|
5634
|
-
device?: "mobile" | "
|
|
5643
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
5635
5644
|
}[] | undefined;
|
|
5636
5645
|
vocabulary?: Record<string, string> | undefined;
|
|
5637
5646
|
}, {
|
|
@@ -5642,7 +5651,7 @@ declare const DomainContextSchema: z.ZodObject<{
|
|
|
5642
5651
|
personas?: {
|
|
5643
5652
|
name: string;
|
|
5644
5653
|
role?: string | undefined;
|
|
5645
|
-
device?: "mobile" | "
|
|
5654
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
5646
5655
|
}[] | undefined;
|
|
5647
5656
|
vocabulary?: Record<string, string> | undefined;
|
|
5648
5657
|
}>;
|
|
@@ -5819,7 +5828,7 @@ declare const DesignPreferencesSchema: z.ZodObject<{
|
|
|
5819
5828
|
}>>;
|
|
5820
5829
|
}, "strip", z.ZodTypeAny, {
|
|
5821
5830
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
5822
|
-
device?: "mobile" | "
|
|
5831
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
5823
5832
|
primaryColor?: string | undefined;
|
|
5824
5833
|
darkMode?: boolean | undefined;
|
|
5825
5834
|
uxHints?: {
|
|
@@ -5835,7 +5844,7 @@ declare const DesignPreferencesSchema: z.ZodObject<{
|
|
|
5835
5844
|
} | undefined;
|
|
5836
5845
|
}, {
|
|
5837
5846
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
5838
|
-
device?: "mobile" | "
|
|
5847
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
5839
5848
|
primaryColor?: string | undefined;
|
|
5840
5849
|
darkMode?: boolean | undefined;
|
|
5841
5850
|
uxHints?: {
|
|
@@ -6150,13 +6159,13 @@ declare const CustomPatternDefinitionSchema: z.ZodObject<{
|
|
|
6150
6159
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6151
6160
|
}, "strip", z.ZodTypeAny, {
|
|
6152
6161
|
type: "custom";
|
|
6153
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
6162
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6154
6163
|
className: string;
|
|
6155
6164
|
slots?: string[] | undefined;
|
|
6156
6165
|
props?: string[] | undefined;
|
|
6157
6166
|
}, {
|
|
6158
6167
|
type: "custom";
|
|
6159
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
6168
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6160
6169
|
className: string;
|
|
6161
6170
|
slots?: string[] | undefined;
|
|
6162
6171
|
props?: string[] | undefined;
|
|
@@ -6173,13 +6182,13 @@ declare const CustomPatternMapSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.Z
|
|
|
6173
6182
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6174
6183
|
}, "strip", z.ZodTypeAny, {
|
|
6175
6184
|
type: "custom";
|
|
6176
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
6185
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6177
6186
|
className: string;
|
|
6178
6187
|
slots?: string[] | undefined;
|
|
6179
6188
|
props?: string[] | undefined;
|
|
6180
6189
|
}, {
|
|
6181
6190
|
type: "custom";
|
|
6182
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
6191
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
6183
6192
|
className: string;
|
|
6184
6193
|
slots?: string[] | undefined;
|
|
6185
6194
|
props?: string[] | undefined;
|
|
@@ -10774,11 +10783,11 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10774
10783
|
}, "strip", z.ZodTypeAny, {
|
|
10775
10784
|
name: string;
|
|
10776
10785
|
role?: string | undefined;
|
|
10777
|
-
device?: "mobile" | "
|
|
10786
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
10778
10787
|
}, {
|
|
10779
10788
|
name: string;
|
|
10780
10789
|
role?: string | undefined;
|
|
10781
|
-
device?: "mobile" | "
|
|
10790
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
10782
10791
|
}>, "many">>;
|
|
10783
10792
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
10784
10793
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10789,7 +10798,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10789
10798
|
personas?: {
|
|
10790
10799
|
name: string;
|
|
10791
10800
|
role?: string | undefined;
|
|
10792
|
-
device?: "mobile" | "
|
|
10801
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
10793
10802
|
}[] | undefined;
|
|
10794
10803
|
vocabulary?: Record<string, string> | undefined;
|
|
10795
10804
|
}, {
|
|
@@ -10800,7 +10809,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10800
10809
|
personas?: {
|
|
10801
10810
|
name: string;
|
|
10802
10811
|
role?: string | undefined;
|
|
10803
|
-
device?: "mobile" | "
|
|
10812
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
10804
10813
|
}[] | undefined;
|
|
10805
10814
|
vocabulary?: Record<string, string> | undefined;
|
|
10806
10815
|
}>>;
|
|
@@ -10850,7 +10859,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10850
10859
|
}>>;
|
|
10851
10860
|
}, "strip", z.ZodTypeAny, {
|
|
10852
10861
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
10853
|
-
device?: "mobile" | "
|
|
10862
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
10854
10863
|
primaryColor?: string | undefined;
|
|
10855
10864
|
darkMode?: boolean | undefined;
|
|
10856
10865
|
uxHints?: {
|
|
@@ -10866,7 +10875,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
10866
10875
|
} | undefined;
|
|
10867
10876
|
}, {
|
|
10868
10877
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
10869
|
-
device?: "mobile" | "
|
|
10878
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
10870
10879
|
primaryColor?: string | undefined;
|
|
10871
10880
|
darkMode?: boolean | undefined;
|
|
10872
10881
|
uxHints?: {
|
|
@@ -11268,13 +11277,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11268
11277
|
personas?: {
|
|
11269
11278
|
name: string;
|
|
11270
11279
|
role?: string | undefined;
|
|
11271
|
-
device?: "mobile" | "
|
|
11280
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
11272
11281
|
}[] | undefined;
|
|
11273
11282
|
vocabulary?: Record<string, string> | undefined;
|
|
11274
11283
|
} | undefined;
|
|
11275
11284
|
design?: {
|
|
11276
11285
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
11277
|
-
device?: "mobile" | "
|
|
11286
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
11278
11287
|
primaryColor?: string | undefined;
|
|
11279
11288
|
darkMode?: boolean | undefined;
|
|
11280
11289
|
uxHints?: {
|
|
@@ -11668,13 +11677,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
11668
11677
|
personas?: {
|
|
11669
11678
|
name: string;
|
|
11670
11679
|
role?: string | undefined;
|
|
11671
|
-
device?: "mobile" | "
|
|
11680
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
11672
11681
|
}[] | undefined;
|
|
11673
11682
|
vocabulary?: Record<string, string> | undefined;
|
|
11674
11683
|
} | undefined;
|
|
11675
11684
|
design?: {
|
|
11676
11685
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
11677
|
-
device?: "mobile" | "
|
|
11686
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
11678
11687
|
primaryColor?: string | undefined;
|
|
11679
11688
|
darkMode?: boolean | undefined;
|
|
11680
11689
|
uxHints?: {
|
|
@@ -13697,11 +13706,11 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13697
13706
|
}, "strip", z.ZodTypeAny, {
|
|
13698
13707
|
name: string;
|
|
13699
13708
|
role?: string | undefined;
|
|
13700
|
-
device?: "mobile" | "
|
|
13709
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
13701
13710
|
}, {
|
|
13702
13711
|
name: string;
|
|
13703
13712
|
role?: string | undefined;
|
|
13704
|
-
device?: "mobile" | "
|
|
13713
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
13705
13714
|
}>, "many">>;
|
|
13706
13715
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
13707
13716
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13712,7 +13721,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13712
13721
|
personas?: {
|
|
13713
13722
|
name: string;
|
|
13714
13723
|
role?: string | undefined;
|
|
13715
|
-
device?: "mobile" | "
|
|
13724
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
13716
13725
|
}[] | undefined;
|
|
13717
13726
|
vocabulary?: Record<string, string> | undefined;
|
|
13718
13727
|
}, {
|
|
@@ -13723,7 +13732,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13723
13732
|
personas?: {
|
|
13724
13733
|
name: string;
|
|
13725
13734
|
role?: string | undefined;
|
|
13726
|
-
device?: "mobile" | "
|
|
13735
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
13727
13736
|
}[] | undefined;
|
|
13728
13737
|
vocabulary?: Record<string, string> | undefined;
|
|
13729
13738
|
}>>;
|
|
@@ -13773,7 +13782,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13773
13782
|
}>>;
|
|
13774
13783
|
}, "strip", z.ZodTypeAny, {
|
|
13775
13784
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
13776
|
-
device?: "mobile" | "
|
|
13785
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
13777
13786
|
primaryColor?: string | undefined;
|
|
13778
13787
|
darkMode?: boolean | undefined;
|
|
13779
13788
|
uxHints?: {
|
|
@@ -13789,7 +13798,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
13789
13798
|
} | undefined;
|
|
13790
13799
|
}, {
|
|
13791
13800
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
13792
|
-
device?: "mobile" | "
|
|
13801
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
13793
13802
|
primaryColor?: string | undefined;
|
|
13794
13803
|
darkMode?: boolean | undefined;
|
|
13795
13804
|
uxHints?: {
|
|
@@ -14191,13 +14200,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14191
14200
|
personas?: {
|
|
14192
14201
|
name: string;
|
|
14193
14202
|
role?: string | undefined;
|
|
14194
|
-
device?: "mobile" | "
|
|
14203
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
14195
14204
|
}[] | undefined;
|
|
14196
14205
|
vocabulary?: Record<string, string> | undefined;
|
|
14197
14206
|
} | undefined;
|
|
14198
14207
|
design?: {
|
|
14199
14208
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
14200
|
-
device?: "mobile" | "
|
|
14209
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
14201
14210
|
primaryColor?: string | undefined;
|
|
14202
14211
|
darkMode?: boolean | undefined;
|
|
14203
14212
|
uxHints?: {
|
|
@@ -14591,13 +14600,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
14591
14600
|
personas?: {
|
|
14592
14601
|
name: string;
|
|
14593
14602
|
role?: string | undefined;
|
|
14594
|
-
device?: "mobile" | "
|
|
14603
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
14595
14604
|
}[] | undefined;
|
|
14596
14605
|
vocabulary?: Record<string, string> | undefined;
|
|
14597
14606
|
} | undefined;
|
|
14598
14607
|
design?: {
|
|
14599
14608
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
14600
|
-
device?: "mobile" | "
|
|
14609
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
14601
14610
|
primaryColor?: string | undefined;
|
|
14602
14611
|
darkMode?: boolean | undefined;
|
|
14603
14612
|
uxHints?: {
|
|
@@ -16627,11 +16636,11 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16627
16636
|
}, "strip", z.ZodTypeAny, {
|
|
16628
16637
|
name: string;
|
|
16629
16638
|
role?: string | undefined;
|
|
16630
|
-
device?: "mobile" | "
|
|
16639
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
16631
16640
|
}, {
|
|
16632
16641
|
name: string;
|
|
16633
16642
|
role?: string | undefined;
|
|
16634
|
-
device?: "mobile" | "
|
|
16643
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
16635
16644
|
}>, "many">>;
|
|
16636
16645
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
16637
16646
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16642,7 +16651,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16642
16651
|
personas?: {
|
|
16643
16652
|
name: string;
|
|
16644
16653
|
role?: string | undefined;
|
|
16645
|
-
device?: "mobile" | "
|
|
16654
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
16646
16655
|
}[] | undefined;
|
|
16647
16656
|
vocabulary?: Record<string, string> | undefined;
|
|
16648
16657
|
}, {
|
|
@@ -16653,7 +16662,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16653
16662
|
personas?: {
|
|
16654
16663
|
name: string;
|
|
16655
16664
|
role?: string | undefined;
|
|
16656
|
-
device?: "mobile" | "
|
|
16665
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
16657
16666
|
}[] | undefined;
|
|
16658
16667
|
vocabulary?: Record<string, string> | undefined;
|
|
16659
16668
|
}>>;
|
|
@@ -16703,7 +16712,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16703
16712
|
}>>;
|
|
16704
16713
|
}, "strip", z.ZodTypeAny, {
|
|
16705
16714
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
16706
|
-
device?: "mobile" | "
|
|
16715
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
16707
16716
|
primaryColor?: string | undefined;
|
|
16708
16717
|
darkMode?: boolean | undefined;
|
|
16709
16718
|
uxHints?: {
|
|
@@ -16719,7 +16728,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
16719
16728
|
} | undefined;
|
|
16720
16729
|
}, {
|
|
16721
16730
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
16722
|
-
device?: "mobile" | "
|
|
16731
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
16723
16732
|
primaryColor?: string | undefined;
|
|
16724
16733
|
darkMode?: boolean | undefined;
|
|
16725
16734
|
uxHints?: {
|
|
@@ -17121,13 +17130,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17121
17130
|
personas?: {
|
|
17122
17131
|
name: string;
|
|
17123
17132
|
role?: string | undefined;
|
|
17124
|
-
device?: "mobile" | "
|
|
17133
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
17125
17134
|
}[] | undefined;
|
|
17126
17135
|
vocabulary?: Record<string, string> | undefined;
|
|
17127
17136
|
} | undefined;
|
|
17128
17137
|
design?: {
|
|
17129
17138
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
17130
|
-
device?: "mobile" | "
|
|
17139
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
17131
17140
|
primaryColor?: string | undefined;
|
|
17132
17141
|
darkMode?: boolean | undefined;
|
|
17133
17142
|
uxHints?: {
|
|
@@ -17521,13 +17530,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
17521
17530
|
personas?: {
|
|
17522
17531
|
name: string;
|
|
17523
17532
|
role?: string | undefined;
|
|
17524
|
-
device?: "mobile" | "
|
|
17533
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
17525
17534
|
}[] | undefined;
|
|
17526
17535
|
vocabulary?: Record<string, string> | undefined;
|
|
17527
17536
|
} | undefined;
|
|
17528
17537
|
design?: {
|
|
17529
17538
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
17530
|
-
device?: "mobile" | "
|
|
17539
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
17531
17540
|
primaryColor?: string | undefined;
|
|
17532
17541
|
darkMode?: boolean | undefined;
|
|
17533
17542
|
uxHints?: {
|
|
@@ -17573,13 +17582,13 @@ declare const OrbitalConfigSchema: z.ZodObject<{
|
|
|
17573
17582
|
secondary: z.ZodOptional<z.ZodString>;
|
|
17574
17583
|
mode: z.ZodOptional<z.ZodEnum<["light", "dark", "system"]>>;
|
|
17575
17584
|
}, "strip", z.ZodTypeAny, {
|
|
17585
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
17576
17586
|
primary?: string | undefined;
|
|
17577
17587
|
secondary?: string | undefined;
|
|
17578
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
17579
17588
|
}, {
|
|
17589
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
17580
17590
|
primary?: string | undefined;
|
|
17581
17591
|
secondary?: string | undefined;
|
|
17582
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
17583
17592
|
}>>;
|
|
17584
17593
|
features: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
17585
17594
|
api: z.ZodOptional<z.ZodObject<{
|
|
@@ -17594,9 +17603,9 @@ declare const OrbitalConfigSchema: z.ZodObject<{
|
|
|
17594
17603
|
}>>;
|
|
17595
17604
|
}, "strip", z.ZodTypeAny, {
|
|
17596
17605
|
theme?: {
|
|
17606
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
17597
17607
|
primary?: string | undefined;
|
|
17598
17608
|
secondary?: string | undefined;
|
|
17599
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
17600
17609
|
} | undefined;
|
|
17601
17610
|
features?: Record<string, boolean> | undefined;
|
|
17602
17611
|
api?: {
|
|
@@ -17605,9 +17614,9 @@ declare const OrbitalConfigSchema: z.ZodObject<{
|
|
|
17605
17614
|
} | undefined;
|
|
17606
17615
|
}, {
|
|
17607
17616
|
theme?: {
|
|
17617
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
17608
17618
|
primary?: string | undefined;
|
|
17609
17619
|
secondary?: string | undefined;
|
|
17610
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
17611
17620
|
} | undefined;
|
|
17612
17621
|
features?: Record<string, boolean> | undefined;
|
|
17613
17622
|
api?: {
|
|
@@ -17669,11 +17678,11 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17669
17678
|
}, "strip", z.ZodTypeAny, {
|
|
17670
17679
|
name: string;
|
|
17671
17680
|
role?: string | undefined;
|
|
17672
|
-
device?: "mobile" | "
|
|
17681
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
17673
17682
|
}, {
|
|
17674
17683
|
name: string;
|
|
17675
17684
|
role?: string | undefined;
|
|
17676
|
-
device?: "mobile" | "
|
|
17685
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
17677
17686
|
}>, "many">>;
|
|
17678
17687
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
17679
17688
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -17684,7 +17693,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17684
17693
|
personas?: {
|
|
17685
17694
|
name: string;
|
|
17686
17695
|
role?: string | undefined;
|
|
17687
|
-
device?: "mobile" | "
|
|
17696
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
17688
17697
|
}[] | undefined;
|
|
17689
17698
|
vocabulary?: Record<string, string> | undefined;
|
|
17690
17699
|
}, {
|
|
@@ -17695,7 +17704,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17695
17704
|
personas?: {
|
|
17696
17705
|
name: string;
|
|
17697
17706
|
role?: string | undefined;
|
|
17698
|
-
device?: "mobile" | "
|
|
17707
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
17699
17708
|
}[] | undefined;
|
|
17700
17709
|
vocabulary?: Record<string, string> | undefined;
|
|
17701
17710
|
}>>;
|
|
@@ -17745,7 +17754,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17745
17754
|
}>>;
|
|
17746
17755
|
}, "strip", z.ZodTypeAny, {
|
|
17747
17756
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
17748
|
-
device?: "mobile" | "
|
|
17757
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
17749
17758
|
primaryColor?: string | undefined;
|
|
17750
17759
|
darkMode?: boolean | undefined;
|
|
17751
17760
|
uxHints?: {
|
|
@@ -17761,7 +17770,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17761
17770
|
} | undefined;
|
|
17762
17771
|
}, {
|
|
17763
17772
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
17764
|
-
device?: "mobile" | "
|
|
17773
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
17765
17774
|
primaryColor?: string | undefined;
|
|
17766
17775
|
darkMode?: boolean | undefined;
|
|
17767
17776
|
uxHints?: {
|
|
@@ -17785,13 +17794,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
17785
17794
|
props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17786
17795
|
}, "strip", z.ZodTypeAny, {
|
|
17787
17796
|
type: "custom";
|
|
17788
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
17797
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
17789
17798
|
className: string;
|
|
17790
17799
|
slots?: string[] | undefined;
|
|
17791
17800
|
props?: string[] | undefined;
|
|
17792
17801
|
}, {
|
|
17793
17802
|
type: "custom";
|
|
17794
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
17803
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
17795
17804
|
className: string;
|
|
17796
17805
|
slots?: string[] | undefined;
|
|
17797
17806
|
props?: string[] | undefined;
|
|
@@ -19798,11 +19807,11 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19798
19807
|
}, "strip", z.ZodTypeAny, {
|
|
19799
19808
|
name: string;
|
|
19800
19809
|
role?: string | undefined;
|
|
19801
|
-
device?: "mobile" | "
|
|
19810
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
19802
19811
|
}, {
|
|
19803
19812
|
name: string;
|
|
19804
19813
|
role?: string | undefined;
|
|
19805
|
-
device?: "mobile" | "
|
|
19814
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
19806
19815
|
}>, "many">>;
|
|
19807
19816
|
vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
19808
19817
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19813,7 +19822,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19813
19822
|
personas?: {
|
|
19814
19823
|
name: string;
|
|
19815
19824
|
role?: string | undefined;
|
|
19816
|
-
device?: "mobile" | "
|
|
19825
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
19817
19826
|
}[] | undefined;
|
|
19818
19827
|
vocabulary?: Record<string, string> | undefined;
|
|
19819
19828
|
}, {
|
|
@@ -19824,7 +19833,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19824
19833
|
personas?: {
|
|
19825
19834
|
name: string;
|
|
19826
19835
|
role?: string | undefined;
|
|
19827
|
-
device?: "mobile" | "
|
|
19836
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
19828
19837
|
}[] | undefined;
|
|
19829
19838
|
vocabulary?: Record<string, string> | undefined;
|
|
19830
19839
|
}>>;
|
|
@@ -19874,7 +19883,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19874
19883
|
}>>;
|
|
19875
19884
|
}, "strip", z.ZodTypeAny, {
|
|
19876
19885
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
19877
|
-
device?: "mobile" | "
|
|
19886
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
19878
19887
|
primaryColor?: string | undefined;
|
|
19879
19888
|
darkMode?: boolean | undefined;
|
|
19880
19889
|
uxHints?: {
|
|
@@ -19890,7 +19899,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
19890
19899
|
} | undefined;
|
|
19891
19900
|
}, {
|
|
19892
19901
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
19893
|
-
device?: "mobile" | "
|
|
19902
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
19894
19903
|
primaryColor?: string | undefined;
|
|
19895
19904
|
darkMode?: boolean | undefined;
|
|
19896
19905
|
uxHints?: {
|
|
@@ -20292,13 +20301,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20292
20301
|
personas?: {
|
|
20293
20302
|
name: string;
|
|
20294
20303
|
role?: string | undefined;
|
|
20295
|
-
device?: "mobile" | "
|
|
20304
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
20296
20305
|
}[] | undefined;
|
|
20297
20306
|
vocabulary?: Record<string, string> | undefined;
|
|
20298
20307
|
} | undefined;
|
|
20299
20308
|
design?: {
|
|
20300
20309
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
20301
|
-
device?: "mobile" | "
|
|
20310
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
20302
20311
|
primaryColor?: string | undefined;
|
|
20303
20312
|
darkMode?: boolean | undefined;
|
|
20304
20313
|
uxHints?: {
|
|
@@ -20692,13 +20701,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20692
20701
|
personas?: {
|
|
20693
20702
|
name: string;
|
|
20694
20703
|
role?: string | undefined;
|
|
20695
|
-
device?: "mobile" | "
|
|
20704
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
20696
20705
|
}[] | undefined;
|
|
20697
20706
|
vocabulary?: Record<string, string> | undefined;
|
|
20698
20707
|
} | undefined;
|
|
20699
20708
|
design?: {
|
|
20700
20709
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
20701
|
-
device?: "mobile" | "
|
|
20710
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
20702
20711
|
primaryColor?: string | undefined;
|
|
20703
20712
|
darkMode?: boolean | undefined;
|
|
20704
20713
|
uxHints?: {
|
|
@@ -20852,13 +20861,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20852
20861
|
secondary: z.ZodOptional<z.ZodString>;
|
|
20853
20862
|
mode: z.ZodOptional<z.ZodEnum<["light", "dark", "system"]>>;
|
|
20854
20863
|
}, "strip", z.ZodTypeAny, {
|
|
20864
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
20855
20865
|
primary?: string | undefined;
|
|
20856
20866
|
secondary?: string | undefined;
|
|
20857
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
20858
20867
|
}, {
|
|
20868
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
20859
20869
|
primary?: string | undefined;
|
|
20860
20870
|
secondary?: string | undefined;
|
|
20861
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
20862
20871
|
}>>;
|
|
20863
20872
|
features: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
20864
20873
|
api: z.ZodOptional<z.ZodObject<{
|
|
@@ -20873,9 +20882,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20873
20882
|
}>>;
|
|
20874
20883
|
}, "strip", z.ZodTypeAny, {
|
|
20875
20884
|
theme?: {
|
|
20885
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
20876
20886
|
primary?: string | undefined;
|
|
20877
20887
|
secondary?: string | undefined;
|
|
20878
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
20879
20888
|
} | undefined;
|
|
20880
20889
|
features?: Record<string, boolean> | undefined;
|
|
20881
20890
|
api?: {
|
|
@@ -20884,9 +20893,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
20884
20893
|
} | undefined;
|
|
20885
20894
|
}, {
|
|
20886
20895
|
theme?: {
|
|
20896
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
20887
20897
|
primary?: string | undefined;
|
|
20888
20898
|
secondary?: string | undefined;
|
|
20889
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
20890
20899
|
} | undefined;
|
|
20891
20900
|
features?: Record<string, boolean> | undefined;
|
|
20892
20901
|
api?: {
|
|
@@ -21270,13 +21279,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21270
21279
|
personas?: {
|
|
21271
21280
|
name: string;
|
|
21272
21281
|
role?: string | undefined;
|
|
21273
|
-
device?: "mobile" | "
|
|
21282
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
21274
21283
|
}[] | undefined;
|
|
21275
21284
|
vocabulary?: Record<string, string> | undefined;
|
|
21276
21285
|
} | undefined;
|
|
21277
21286
|
design?: {
|
|
21278
21287
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
21279
|
-
device?: "mobile" | "
|
|
21288
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
21280
21289
|
primaryColor?: string | undefined;
|
|
21281
21290
|
darkMode?: boolean | undefined;
|
|
21282
21291
|
uxHints?: {
|
|
@@ -21300,9 +21309,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21300
21309
|
description?: string | undefined;
|
|
21301
21310
|
config?: {
|
|
21302
21311
|
theme?: {
|
|
21312
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
21303
21313
|
primary?: string | undefined;
|
|
21304
21314
|
secondary?: string | undefined;
|
|
21305
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
21306
21315
|
} | undefined;
|
|
21307
21316
|
features?: Record<string, boolean> | undefined;
|
|
21308
21317
|
api?: {
|
|
@@ -21353,13 +21362,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21353
21362
|
personas?: {
|
|
21354
21363
|
name: string;
|
|
21355
21364
|
role?: string | undefined;
|
|
21356
|
-
device?: "mobile" | "
|
|
21365
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
21357
21366
|
}[] | undefined;
|
|
21358
21367
|
vocabulary?: Record<string, string> | undefined;
|
|
21359
21368
|
} | undefined;
|
|
21360
21369
|
design?: {
|
|
21361
21370
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
21362
|
-
device?: "mobile" | "
|
|
21371
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
21363
21372
|
primaryColor?: string | undefined;
|
|
21364
21373
|
darkMode?: boolean | undefined;
|
|
21365
21374
|
uxHints?: {
|
|
@@ -21378,7 +21387,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21378
21387
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
21379
21388
|
customPatterns?: Record<string, {
|
|
21380
21389
|
type: "custom";
|
|
21381
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
21390
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
21382
21391
|
className: string;
|
|
21383
21392
|
slots?: string[] | undefined;
|
|
21384
21393
|
props?: string[] | undefined;
|
|
@@ -21759,13 +21768,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21759
21768
|
personas?: {
|
|
21760
21769
|
name: string;
|
|
21761
21770
|
role?: string | undefined;
|
|
21762
|
-
device?: "mobile" | "
|
|
21771
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
21763
21772
|
}[] | undefined;
|
|
21764
21773
|
vocabulary?: Record<string, string> | undefined;
|
|
21765
21774
|
} | undefined;
|
|
21766
21775
|
design?: {
|
|
21767
21776
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
21768
|
-
device?: "mobile" | "
|
|
21777
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
21769
21778
|
primaryColor?: string | undefined;
|
|
21770
21779
|
darkMode?: boolean | undefined;
|
|
21771
21780
|
uxHints?: {
|
|
@@ -21789,9 +21798,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21789
21798
|
description?: string | undefined;
|
|
21790
21799
|
config?: {
|
|
21791
21800
|
theme?: {
|
|
21801
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
21792
21802
|
primary?: string | undefined;
|
|
21793
21803
|
secondary?: string | undefined;
|
|
21794
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
21795
21804
|
} | undefined;
|
|
21796
21805
|
features?: Record<string, boolean> | undefined;
|
|
21797
21806
|
api?: {
|
|
@@ -21842,13 +21851,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21842
21851
|
personas?: {
|
|
21843
21852
|
name: string;
|
|
21844
21853
|
role?: string | undefined;
|
|
21845
|
-
device?: "mobile" | "
|
|
21854
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
21846
21855
|
}[] | undefined;
|
|
21847
21856
|
vocabulary?: Record<string, string> | undefined;
|
|
21848
21857
|
} | undefined;
|
|
21849
21858
|
design?: {
|
|
21850
21859
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
21851
|
-
device?: "mobile" | "
|
|
21860
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
21852
21861
|
primaryColor?: string | undefined;
|
|
21853
21862
|
darkMode?: boolean | undefined;
|
|
21854
21863
|
uxHints?: {
|
|
@@ -21867,7 +21876,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
21867
21876
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
21868
21877
|
customPatterns?: Record<string, {
|
|
21869
21878
|
type: "custom";
|
|
21870
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
21879
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
21871
21880
|
className: string;
|
|
21872
21881
|
slots?: string[] | undefined;
|
|
21873
21882
|
props?: string[] | undefined;
|
|
@@ -22295,13 +22304,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22295
22304
|
personas?: {
|
|
22296
22305
|
name: string;
|
|
22297
22306
|
role?: string | undefined;
|
|
22298
|
-
device?: "mobile" | "
|
|
22307
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
22299
22308
|
}[] | undefined;
|
|
22300
22309
|
vocabulary?: Record<string, string> | undefined;
|
|
22301
22310
|
} | undefined;
|
|
22302
22311
|
design?: {
|
|
22303
22312
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
22304
|
-
device?: "mobile" | "
|
|
22313
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
22305
22314
|
primaryColor?: string | undefined;
|
|
22306
22315
|
darkMode?: boolean | undefined;
|
|
22307
22316
|
uxHints?: {
|
|
@@ -22325,9 +22334,9 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22325
22334
|
description?: string | undefined;
|
|
22326
22335
|
config?: {
|
|
22327
22336
|
theme?: {
|
|
22337
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
22328
22338
|
primary?: string | undefined;
|
|
22329
22339
|
secondary?: string | undefined;
|
|
22330
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
22331
22340
|
} | undefined;
|
|
22332
22341
|
features?: Record<string, boolean> | undefined;
|
|
22333
22342
|
api?: {
|
|
@@ -22378,13 +22387,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22378
22387
|
personas?: {
|
|
22379
22388
|
name: string;
|
|
22380
22389
|
role?: string | undefined;
|
|
22381
|
-
device?: "mobile" | "
|
|
22390
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
22382
22391
|
}[] | undefined;
|
|
22383
22392
|
vocabulary?: Record<string, string> | undefined;
|
|
22384
22393
|
} | undefined;
|
|
22385
22394
|
design?: {
|
|
22386
22395
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
22387
|
-
device?: "mobile" | "
|
|
22396
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
22388
22397
|
primaryColor?: string | undefined;
|
|
22389
22398
|
darkMode?: boolean | undefined;
|
|
22390
22399
|
uxHints?: {
|
|
@@ -22403,7 +22412,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22403
22412
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
22404
22413
|
customPatterns?: Record<string, {
|
|
22405
22414
|
type: "custom";
|
|
22406
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
22415
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
22407
22416
|
className: string;
|
|
22408
22417
|
slots?: string[] | undefined;
|
|
22409
22418
|
props?: string[] | undefined;
|
|
@@ -22784,13 +22793,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22784
22793
|
personas?: {
|
|
22785
22794
|
name: string;
|
|
22786
22795
|
role?: string | undefined;
|
|
22787
|
-
device?: "mobile" | "
|
|
22796
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
22788
22797
|
}[] | undefined;
|
|
22789
22798
|
vocabulary?: Record<string, string> | undefined;
|
|
22790
22799
|
} | undefined;
|
|
22791
22800
|
design?: {
|
|
22792
22801
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
22793
|
-
device?: "mobile" | "
|
|
22802
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
22794
22803
|
primaryColor?: string | undefined;
|
|
22795
22804
|
darkMode?: boolean | undefined;
|
|
22796
22805
|
uxHints?: {
|
|
@@ -22814,9 +22823,9 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22814
22823
|
description?: string | undefined;
|
|
22815
22824
|
config?: {
|
|
22816
22825
|
theme?: {
|
|
22826
|
+
mode?: "system" | "light" | "dark" | undefined;
|
|
22817
22827
|
primary?: string | undefined;
|
|
22818
22828
|
secondary?: string | undefined;
|
|
22819
|
-
mode?: "system" | "light" | "dark" | undefined;
|
|
22820
22829
|
} | undefined;
|
|
22821
22830
|
features?: Record<string, boolean> | undefined;
|
|
22822
22831
|
api?: {
|
|
@@ -22867,13 +22876,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22867
22876
|
personas?: {
|
|
22868
22877
|
name: string;
|
|
22869
22878
|
role?: string | undefined;
|
|
22870
|
-
device?: "mobile" | "
|
|
22879
|
+
device?: "mobile" | "tablet" | "desktop" | undefined;
|
|
22871
22880
|
}[] | undefined;
|
|
22872
22881
|
vocabulary?: Record<string, string> | undefined;
|
|
22873
22882
|
} | undefined;
|
|
22874
22883
|
design?: {
|
|
22875
22884
|
style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
|
|
22876
|
-
device?: "mobile" | "
|
|
22885
|
+
device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
|
|
22877
22886
|
primaryColor?: string | undefined;
|
|
22878
22887
|
darkMode?: boolean | undefined;
|
|
22879
22888
|
uxHints?: {
|
|
@@ -22892,7 +22901,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22892
22901
|
designTokens?: Record<string, Record<string, string>> | undefined;
|
|
22893
22902
|
customPatterns?: Record<string, {
|
|
22894
22903
|
type: "custom";
|
|
22895
|
-
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "
|
|
22904
|
+
component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "aside" | "ul" | "ol" | "li" | "img";
|
|
22896
22905
|
className: string;
|
|
22897
22906
|
slots?: string[] | undefined;
|
|
22898
22907
|
props?: string[] | undefined;
|
|
@@ -22901,4 +22910,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22901
22910
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
22902
22911
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
22903
22912
|
|
|
22904
|
-
export { type DeclaredTraitConfig as $, AGENT_DOMAIN_CATEGORIES as A, type AssetMappingInput as B, AssetMappingSchema as C, type AtomicEffect as D, type Effect as E, type CallServiceConfig as F, type CallServiceEffect as G, type CheckpointLoadEffect as H, type CheckpointSaveEffect as I, type ComputedEventContract as J, ComputedEventContractSchema as K, type ComputedEventListener as L, ComputedEventListenerSchema as M, type ConfigFieldDeclaration as N, type OrbitalDefinition as O, type PageRef as P, ConfigFieldDeclarationSchema as Q, type RenderUIEffect as R, type State as S, type Trait as T, type UISlot as U, type CustomPatternDefinition as V, type CustomPatternDefinitionInput as W, CustomPatternDefinitionSchema as X, type CustomPatternMap as Y, type CustomPatternMapInput as Z, CustomPatternMapSchema as _, type TraitEventContract as a, GAME_TYPES as a$, DeclaredTraitConfigSchema as a0, type DerefEffect as a1, type DesignPreferences as a2, type DesignPreferencesInput as a3, DesignPreferencesSchema as a4, type DesignTokens as a5, type DesignTokensInput as a6, DesignTokensSchema as a7, type DespawnEffect as a8, type DoEffect as a9, type EvaluateEffect as aA, type Event as aB, type EventInput as aC, type EventListener as aD, EventListenerSchema as aE, type EventPayloadField as aF, EventPayloadFieldSchema as aG, EventSchema as aH, type EventScope as aI, EventScopeSchema as aJ, type EventSemanticRole as aK, EventSemanticRoleSchema as aL, type EventSource as aM, EventSourceSchema as aN, type FetchEffect as aO, type FetchOptions as aP, type FetchResult as aQ, type Field as aR, type FieldFormat as aS, FieldFormatSchema as aT, FieldSchema as aU, type FieldType as aV, FieldTypeSchema as aW, type FieldValue as aX, type ForwardConfig as aY, type ForwardEffect as aZ, type Orbital as a_, type DomainCategory as aa, DomainCategorySchema as ab, type DomainContext as ac, type DomainContextInput as ad, DomainContextSchema as ae, type DomainVocabulary as af, DomainVocabularySchema as ag, ENTITY_ROLES as ah, type EffectInput as ai, EffectSchema as aj, type EmitConfig as ak, type EmitEffect as al, type EntityCall as am, EntityCallSchema as an, type EntityData as ao, type EntityFieldInput as ap, EntityFieldSchema as aq, EntityPersistenceSchema as ar, EntityRefSchema as as, EntityRefStringSchema as at, type EntityRole as au, EntityRoleSchema as av, EntitySchema as aw, type EntitySemanticRole as ax, EntitySemanticRoleSchema as ay, type EvaluateConfig as az, type Entity as b, ResolvedAssetSchema as b$, type GameSubCategory as b0, GameSubCategorySchema as b1, type GameType as b2, GameTypeSchema as b3, type Guard as b4, type GuardInput as b5, GuardSchema as b6, type ListenSource as b7, ListenSourceSchema as b8, type LogEffect as b9, OrbitalUnitSchema as bA, OrbitalSchema$1 as bB, type OsEffect as bC, PageRefObjectSchema as bD, PageRefSchema as bE, PageRefStringSchema as bF, PageSchema as bG, type PageTraitRef as bH, PageTraitRefSchema as bI, type PayloadField as bJ, PayloadFieldSchema as bK, type PersistData as bL, type PersistEffect as bM, type PersistEmitConfig as bN, type PresentationType as bO, type RefEffect as bP, type RelatedLink as bQ, RelatedLinkSchema as bR, type RelationConfig as bS, RelationConfigSchema as bT, type RenderItemLambda as bU, type RenderUIConfig as bV, type RenderUINode as bW, type RequiredField as bX, RequiredFieldSchema as bY, type ResolvedAsset as bZ, type ResolvedAssetInput as b_, type McpServiceDef as ba, McpServiceDefSchema as bb, type NavigateEffect as bc, type NnConfig as bd, type NnLayer as be, type NodeClassification as bf, NodeClassificationSchema as bg, type NotifyEffect as bh, type OrbitalConfig as bi, type OrbitalConfigInput as bj, OrbitalConfigSchema as bk, OrbitalDefinitionSchema as bl, type OrbitalEntity as bm, type OrbitalEntityInput as bn, OrbitalEntitySchema as bo, type OrbitalInput as bp, type OrbitalPage as bq, type OrbitalPageInput as br, OrbitalPageSchema as bs, type OrbitalPageStrictInput as bt, OrbitalPageStrictSchema as bu, type OrbitalSchemaInput as bv, OrbitalSchemaSchema as bw, type OrbitalTraitRef as bx, OrbitalTraitRefSchema as by, type OrbitalUnit as bz, type TraitEventListener as c,
|
|
22913
|
+
export { type DeclaredTraitConfig as $, AGENT_DOMAIN_CATEGORIES as A, type AssetMappingInput as B, AssetMappingSchema as C, type AtomicEffect as D, type Effect as E, type CallServiceConfig as F, type CallServiceEffect as G, type CheckpointLoadEffect as H, type CheckpointSaveEffect as I, type ComputedEventContract as J, ComputedEventContractSchema as K, type ComputedEventListener as L, ComputedEventListenerSchema as M, type ConfigFieldDeclaration as N, type OrbitalDefinition as O, type PageRef as P, ConfigFieldDeclarationSchema as Q, type RenderUIEffect as R, type State as S, type Trait as T, type UISlot as U, type CustomPatternDefinition as V, type CustomPatternDefinitionInput as W, CustomPatternDefinitionSchema as X, type CustomPatternMap as Y, type CustomPatternMapInput as Z, CustomPatternMapSchema as _, type TraitEventContract as a, GAME_TYPES as a$, DeclaredTraitConfigSchema as a0, type DerefEffect as a1, type DesignPreferences as a2, type DesignPreferencesInput as a3, DesignPreferencesSchema as a4, type DesignTokens as a5, type DesignTokensInput as a6, DesignTokensSchema as a7, type DespawnEffect as a8, type DoEffect as a9, type EvaluateEffect as aA, type Event as aB, type EventInput as aC, type EventListener as aD, EventListenerSchema as aE, type EventPayloadField as aF, EventPayloadFieldSchema as aG, EventSchema as aH, type EventScope as aI, EventScopeSchema as aJ, type EventSemanticRole as aK, EventSemanticRoleSchema as aL, type EventSource as aM, EventSourceSchema as aN, type FetchEffect as aO, type FetchOptions as aP, type FetchResult as aQ, type Field as aR, type FieldFormat as aS, FieldFormatSchema as aT, FieldSchema as aU, type FieldType as aV, FieldTypeSchema as aW, type FieldValue as aX, type ForwardConfig as aY, type ForwardEffect as aZ, type Orbital as a_, type DomainCategory as aa, DomainCategorySchema as ab, type DomainContext as ac, type DomainContextInput as ad, DomainContextSchema as ae, type DomainVocabulary as af, DomainVocabularySchema as ag, ENTITY_ROLES as ah, type EffectInput as ai, EffectSchema as aj, type EmitConfig as ak, type EmitEffect as al, type EntityCall as am, EntityCallSchema as an, type EntityData as ao, type EntityFieldInput as ap, EntityFieldSchema as aq, EntityPersistenceSchema as ar, EntityRefSchema as as, EntityRefStringSchema as at, type EntityRole as au, EntityRoleSchema as av, EntitySchema as aw, type EntitySemanticRole as ax, EntitySemanticRoleSchema as ay, type EvaluateConfig as az, type Entity as b, ResolvedAssetSchema as b$, type GameSubCategory as b0, GameSubCategorySchema as b1, type GameType as b2, GameTypeSchema as b3, type Guard as b4, type GuardInput as b5, GuardSchema as b6, type ListenSource as b7, ListenSourceSchema as b8, type LogEffect as b9, OrbitalUnitSchema as bA, OrbitalSchema$1 as bB, type OsEffect as bC, PageRefObjectSchema as bD, PageRefSchema as bE, PageRefStringSchema as bF, PageSchema as bG, type PageTraitRef as bH, PageTraitRefSchema as bI, type PayloadField as bJ, PayloadFieldSchema as bK, type PersistData as bL, type PersistEffect as bM, type PersistEmitConfig as bN, type PresentationType as bO, type RefEffect as bP, type RelatedLink as bQ, RelatedLinkSchema as bR, type RelationConfig as bS, RelationConfigSchema as bT, type RenderItemLambda as bU, type RenderUIConfig as bV, type RenderUINode as bW, type RequiredField as bX, RequiredFieldSchema as bY, type ResolvedAsset as bZ, type ResolvedAssetInput as b_, type McpServiceDef as ba, McpServiceDefSchema as bb, type NavigateEffect as bc, type NnConfig as bd, type NnLayer as be, type NodeClassification as bf, NodeClassificationSchema as bg, type NotifyEffect as bh, type OrbitalConfig as bi, type OrbitalConfigInput as bj, OrbitalConfigSchema as bk, OrbitalDefinitionSchema as bl, type OrbitalEntity as bm, type OrbitalEntityInput as bn, OrbitalEntitySchema as bo, type OrbitalInput as bp, type OrbitalPage as bq, type OrbitalPageInput as br, OrbitalPageSchema as bs, type OrbitalPageStrictInput as bt, OrbitalPageStrictSchema as bu, type OrbitalSchemaInput as bv, OrbitalSchemaSchema as bw, type OrbitalTraitRef as bx, OrbitalTraitRefSchema as by, type OrbitalUnit as bz, type TraitEventListener as c, TraitSchema as c$, type ResolvedPatternProps as c0, type RestAuthConfig as c1, RestAuthConfigSchema as c2, type RestServiceDef as c3, RestServiceDefSchema as c4, SERVICE_TYPES as c5, type SemanticAssetRef as c6, type SemanticAssetRefInput as c7, SemanticAssetRefSchema as c8, type ServiceDefinition as c9, type ThemeDefinition as cA, ThemeDefinitionSchema as cB, type ThemeRef as cC, ThemeRefSchema as cD, ThemeRefStringSchema as cE, type ThemeTokens as cF, ThemeTokensSchema as cG, type ThemeVariant as cH, ThemeVariantSchema as cI, type TrainConfig as cJ, type TrainEffect as cK, type TraitCategory as cL, TraitCategorySchema as cM, type TraitConfigObject as cN, TraitConfigSchema as cO, type TraitConfigValue as cP, TraitConfigValueSchema as cQ, type TraitDataEntity as cR, TraitDataEntitySchema as cS, type TraitEntityField as cT, TraitEntityFieldSchema as cU, TraitEventContractSchema as cV, TraitEventListenerSchema as cW, type TraitInput as cX, TraitRefSchema as cY, type TraitReferenceInput as cZ, TraitReferenceSchema as c_, ServiceDefinitionSchema as ca, type ServiceParams as cb, type ServiceParamsValue as cc, type ServiceRef as cd, type ServiceRefObject as ce, ServiceRefObjectSchema as cf, ServiceRefSchema as cg, ServiceRefStringSchema as ch, type ServiceType as ci, ServiceTypeSchema as cj, type SetEffect as ck, type SocketEvents as cl, SocketEventsSchema as cm, type SocketServiceDef as cn, SocketServiceDefSchema as co, type SpawnEffect as cp, type StateInput as cq, type StateMachine as cr, type StateMachineInput as cs, StateMachineSchema as ct, StateSchema as cu, type StateSemanticRole as cv, StateSemanticRoleSchema as cw, type SuggestedGuard as cx, SuggestedGuardSchema as cy, type SwapEffect as cz, type TraitConfig as d, parseOrbitalSchema as d$, type TraitTick as d0, TraitTickSchema as d1, type TraitUIBinding as d2, type Transition as d3, type TransitionInput as d4, TransitionSchema as d5, type TypedEffect as d6, UISlotSchema as d7, UI_SLOTS as d8, type UXHints as d9, hasService as dA, isCircuitEvent as dB, isEffect as dC, isEntityCall as dD, isEntityReference as dE, isEntityReferenceAny as dF, isImportedTraitRef as dG, isInlineTrait as dH, isMcpService as dI, isOrbitalDefinition as dJ, isPageReference as dK, isPageReferenceObject as dL, isPageReferenceString as dM, isRestService as dN, isRuntimeEntity as dO, isSExprEffect as dP, isServiceReference as dQ, isServiceReferenceObject as dR, isSingletonEntity as dS, isSocketService as dT, isThemeReference as dU, navigate as dV, normalizeTraitRef as dW, notify as dX, parseAssetKey as dY, parseEntityRef as dZ, parseImportedTraitRef as d_, UXHintsSchema as da, UseDeclarationSchema as db, type UserPersona as dc, type UserPersonaInput as dd, UserPersonaSchema as de, VISUAL_STYLES as df, type ViewType as dg, ViewTypeSchema as dh, type VisualStyle as di, VisualStyleSchema as dj, type WatchEffect as dk, type WatchOptions as dl, atomic as dm, callService as dn, createAssetKey as dp, deref as dq, deriveCollection as dr, despawn as ds, doEffects as dt, emit as du, findService as dv, getDefaultAnimationsForRole as dw, getServiceNames as dx, getTraitConfig as dy, getTraitName as dz, type EntityField as e, parsePageRef as e0, parseServiceRef as e1, persist as e2, ref as e3, renderUI as e4, safeParseOrbitalSchema as e5, set as e6, spawn as e7, swap as e8, validateAssetAnimations as e9, watch as ea, type EntityPersistence as f, type EntityRow as g, type UseDeclaration as h, type EntityRef as i, type TraitRef as j, type OrbitalSchema as k, type Page as l, type PageRefObject as m, type TraitReference as n, ALLOWED_CUSTOM_COMPONENTS as o, type AgentDomainCategory as p, AgentDomainCategorySchema as q, type AgentEffect as r, type AllowedCustomComponent as s, type AnimationDef as t, type AnimationDefInput as u, AnimationDefSchema as v, type AssetMap as w, type AssetMapInput as x, AssetMapSchema as y, type AssetMapping as z };
|