@almadar/core 5.5.0 → 5.6.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.
@@ -206,7 +206,7 @@ interface EvalContext {
206
206
  * includes `Date`) is assignable to a payload field without a cast —
207
207
  * emitted entity rows flow through the bus without boundary widening.
208
208
  */
209
- type EventPayloadValue = string | number | boolean | Date | null | undefined | EventPayload | EventPayloadValue[];
209
+ type EventPayloadValue = string | number | boolean | Date | null | undefined | EventPayload | readonly EventPayloadValue[];
210
210
  /**
211
211
  * Typed event payload. Object-shaped so it's assignable to the bus's
212
212
  * `EventPayload` parameter without casts.
@@ -5382,7 +5382,7 @@ declare const OrbitalPageSchema: z.ZodObject<{
5382
5382
  config?: TraitConfigObject | undefined;
5383
5383
  linkedEntity?: string | undefined;
5384
5384
  }[] | undefined;
5385
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
5385
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
5386
5386
  }, {
5387
5387
  path: string;
5388
5388
  name: string;
@@ -5394,7 +5394,7 @@ declare const OrbitalPageSchema: z.ZodObject<{
5394
5394
  config?: TraitConfigObject | undefined;
5395
5395
  linkedEntity?: string | undefined;
5396
5396
  }[] | undefined;
5397
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
5397
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
5398
5398
  }>;
5399
5399
  type OrbitalPageInput = z.input<typeof OrbitalPageSchema>;
5400
5400
  type OrbitalPageStrictInput = z.input<typeof OrbitalPageStrictSchema>;
@@ -5432,7 +5432,7 @@ declare const PageSchema: z.ZodObject<{
5432
5432
  config?: TraitConfigObject | undefined;
5433
5433
  linkedEntity?: string | undefined;
5434
5434
  }[] | undefined;
5435
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
5435
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
5436
5436
  }, {
5437
5437
  path: string;
5438
5438
  name: string;
@@ -5444,7 +5444,7 @@ declare const PageSchema: z.ZodObject<{
5444
5444
  config?: TraitConfigObject | undefined;
5445
5445
  linkedEntity?: string | undefined;
5446
5446
  }[] | undefined;
5447
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
5447
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
5448
5448
  }>;
5449
5449
 
5450
5450
  /**
@@ -5521,11 +5521,11 @@ declare const UserPersonaSchema: z.ZodObject<{
5521
5521
  }, "strip", z.ZodTypeAny, {
5522
5522
  name: string;
5523
5523
  role?: string | undefined;
5524
- device?: "mobile" | "tablet" | "desktop" | undefined;
5524
+ device?: "mobile" | "desktop" | "tablet" | undefined;
5525
5525
  }, {
5526
5526
  name: string;
5527
5527
  role?: string | undefined;
5528
- device?: "mobile" | "tablet" | "desktop" | undefined;
5528
+ device?: "mobile" | "desktop" | "tablet" | undefined;
5529
5529
  }>;
5530
5530
  /**
5531
5531
  * Domain context - user request + classification
@@ -5575,11 +5575,11 @@ declare const DomainContextSchema: z.ZodObject<{
5575
5575
  }, "strip", z.ZodTypeAny, {
5576
5576
  name: string;
5577
5577
  role?: string | undefined;
5578
- device?: "mobile" | "tablet" | "desktop" | undefined;
5578
+ device?: "mobile" | "desktop" | "tablet" | undefined;
5579
5579
  }, {
5580
5580
  name: string;
5581
5581
  role?: string | undefined;
5582
- device?: "mobile" | "tablet" | "desktop" | undefined;
5582
+ device?: "mobile" | "desktop" | "tablet" | undefined;
5583
5583
  }>, "many">>;
5584
5584
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
5585
5585
  }, "strip", z.ZodTypeAny, {
@@ -5590,7 +5590,7 @@ declare const DomainContextSchema: z.ZodObject<{
5590
5590
  personas?: {
5591
5591
  name: string;
5592
5592
  role?: string | undefined;
5593
- device?: "mobile" | "tablet" | "desktop" | undefined;
5593
+ device?: "mobile" | "desktop" | "tablet" | undefined;
5594
5594
  }[] | undefined;
5595
5595
  vocabulary?: Record<string, string> | undefined;
5596
5596
  }, {
@@ -5601,7 +5601,7 @@ declare const DomainContextSchema: z.ZodObject<{
5601
5601
  personas?: {
5602
5602
  name: string;
5603
5603
  role?: string | undefined;
5604
- device?: "mobile" | "tablet" | "desktop" | undefined;
5604
+ device?: "mobile" | "desktop" | "tablet" | undefined;
5605
5605
  }[] | undefined;
5606
5606
  vocabulary?: Record<string, string> | undefined;
5607
5607
  }>;
@@ -5778,7 +5778,7 @@ declare const DesignPreferencesSchema: z.ZodObject<{
5778
5778
  }>>;
5779
5779
  }, "strip", z.ZodTypeAny, {
5780
5780
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
5781
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
5781
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
5782
5782
  primaryColor?: string | undefined;
5783
5783
  darkMode?: boolean | undefined;
5784
5784
  uxHints?: {
@@ -5794,7 +5794,7 @@ declare const DesignPreferencesSchema: z.ZodObject<{
5794
5794
  } | undefined;
5795
5795
  }, {
5796
5796
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
5797
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
5797
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
5798
5798
  primaryColor?: string | undefined;
5799
5799
  darkMode?: boolean | undefined;
5800
5800
  uxHints?: {
@@ -6109,13 +6109,13 @@ declare const CustomPatternDefinitionSchema: z.ZodObject<{
6109
6109
  props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6110
6110
  }, "strip", z.ZodTypeAny, {
6111
6111
  type: "custom";
6112
- 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";
6112
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
6113
6113
  className: string;
6114
6114
  slots?: string[] | undefined;
6115
6115
  props?: string[] | undefined;
6116
6116
  }, {
6117
6117
  type: "custom";
6118
- 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";
6118
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
6119
6119
  className: string;
6120
6120
  slots?: string[] | undefined;
6121
6121
  props?: string[] | undefined;
@@ -6132,13 +6132,13 @@ declare const CustomPatternMapSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.Z
6132
6132
  props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6133
6133
  }, "strip", z.ZodTypeAny, {
6134
6134
  type: "custom";
6135
- 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";
6135
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
6136
6136
  className: string;
6137
6137
  slots?: string[] | undefined;
6138
6138
  props?: string[] | undefined;
6139
6139
  }, {
6140
6140
  type: "custom";
6141
- 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";
6141
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
6142
6142
  className: string;
6143
6143
  slots?: string[] | undefined;
6144
6144
  props?: string[] | undefined;
@@ -7444,7 +7444,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7444
7444
  config?: TraitConfigObject | undefined;
7445
7445
  linkedEntity?: string | undefined;
7446
7446
  }[] | undefined;
7447
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
7447
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
7448
7448
  }, {
7449
7449
  path: string;
7450
7450
  name: string;
@@ -7456,7 +7456,7 @@ declare const PageRefSchema: z.ZodUnion<[z.ZodObject<{
7456
7456
  config?: TraitConfigObject | undefined;
7457
7457
  linkedEntity?: string | undefined;
7458
7458
  }[] | undefined;
7459
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
7459
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
7460
7460
  }>, z.ZodString, z.ZodObject<{
7461
7461
  ref: z.ZodString;
7462
7462
  from: z.ZodOptional<z.ZodString>;
@@ -9696,7 +9696,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9696
9696
  config?: TraitConfigObject | undefined;
9697
9697
  linkedEntity?: string | undefined;
9698
9698
  }[] | undefined;
9699
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
9699
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
9700
9700
  }, {
9701
9701
  path: string;
9702
9702
  name: string;
@@ -9708,7 +9708,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
9708
9708
  config?: TraitConfigObject | undefined;
9709
9709
  linkedEntity?: string | undefined;
9710
9710
  }[] | undefined;
9711
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
9711
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
9712
9712
  }>, z.ZodString, z.ZodObject<{
9713
9713
  ref: z.ZodString;
9714
9714
  from: z.ZodOptional<z.ZodString>;
@@ -10701,11 +10701,11 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10701
10701
  }, "strip", z.ZodTypeAny, {
10702
10702
  name: string;
10703
10703
  role?: string | undefined;
10704
- device?: "mobile" | "tablet" | "desktop" | undefined;
10704
+ device?: "mobile" | "desktop" | "tablet" | undefined;
10705
10705
  }, {
10706
10706
  name: string;
10707
10707
  role?: string | undefined;
10708
- device?: "mobile" | "tablet" | "desktop" | undefined;
10708
+ device?: "mobile" | "desktop" | "tablet" | undefined;
10709
10709
  }>, "many">>;
10710
10710
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
10711
10711
  }, "strip", z.ZodTypeAny, {
@@ -10716,7 +10716,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10716
10716
  personas?: {
10717
10717
  name: string;
10718
10718
  role?: string | undefined;
10719
- device?: "mobile" | "tablet" | "desktop" | undefined;
10719
+ device?: "mobile" | "desktop" | "tablet" | undefined;
10720
10720
  }[] | undefined;
10721
10721
  vocabulary?: Record<string, string> | undefined;
10722
10722
  }, {
@@ -10727,7 +10727,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10727
10727
  personas?: {
10728
10728
  name: string;
10729
10729
  role?: string | undefined;
10730
- device?: "mobile" | "tablet" | "desktop" | undefined;
10730
+ device?: "mobile" | "desktop" | "tablet" | undefined;
10731
10731
  }[] | undefined;
10732
10732
  vocabulary?: Record<string, string> | undefined;
10733
10733
  }>>;
@@ -10777,7 +10777,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10777
10777
  }>>;
10778
10778
  }, "strip", z.ZodTypeAny, {
10779
10779
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
10780
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
10780
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
10781
10781
  primaryColor?: string | undefined;
10782
10782
  darkMode?: boolean | undefined;
10783
10783
  uxHints?: {
@@ -10793,7 +10793,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10793
10793
  } | undefined;
10794
10794
  }, {
10795
10795
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
10796
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
10796
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
10797
10797
  primaryColor?: string | undefined;
10798
10798
  darkMode?: boolean | undefined;
10799
10799
  uxHints?: {
@@ -10858,7 +10858,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
10858
10858
  config?: TraitConfigObject | undefined;
10859
10859
  linkedEntity?: string | undefined;
10860
10860
  }[] | undefined;
10861
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
10861
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
10862
10862
  } | {
10863
10863
  ref: string;
10864
10864
  path?: string | undefined;
@@ -11193,13 +11193,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11193
11193
  personas?: {
11194
11194
  name: string;
11195
11195
  role?: string | undefined;
11196
- device?: "mobile" | "tablet" | "desktop" | undefined;
11196
+ device?: "mobile" | "desktop" | "tablet" | undefined;
11197
11197
  }[] | undefined;
11198
11198
  vocabulary?: Record<string, string> | undefined;
11199
11199
  } | undefined;
11200
11200
  design?: {
11201
11201
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
11202
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
11202
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
11203
11203
  primaryColor?: string | undefined;
11204
11204
  darkMode?: boolean | undefined;
11205
11205
  uxHints?: {
@@ -11256,7 +11256,7 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11256
11256
  config?: TraitConfigObject | undefined;
11257
11257
  linkedEntity?: string | undefined;
11258
11258
  }[] | undefined;
11259
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
11259
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
11260
11260
  } | {
11261
11261
  ref: string;
11262
11262
  path?: string | undefined;
@@ -11591,13 +11591,13 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
11591
11591
  personas?: {
11592
11592
  name: string;
11593
11593
  role?: string | undefined;
11594
- device?: "mobile" | "tablet" | "desktop" | undefined;
11594
+ device?: "mobile" | "desktop" | "tablet" | undefined;
11595
11595
  }[] | undefined;
11596
11596
  vocabulary?: Record<string, string> | undefined;
11597
11597
  } | undefined;
11598
11598
  design?: {
11599
11599
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
11600
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
11600
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
11601
11601
  primaryColor?: string | undefined;
11602
11602
  darkMode?: boolean | undefined;
11603
11603
  uxHints?: {
@@ -12607,7 +12607,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12607
12607
  config?: TraitConfigObject | undefined;
12608
12608
  linkedEntity?: string | undefined;
12609
12609
  }[] | undefined;
12610
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
12610
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
12611
12611
  }, {
12612
12612
  path: string;
12613
12613
  name: string;
@@ -12619,7 +12619,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
12619
12619
  config?: TraitConfigObject | undefined;
12620
12620
  linkedEntity?: string | undefined;
12621
12621
  }[] | undefined;
12622
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
12622
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
12623
12623
  }>, z.ZodString, z.ZodObject<{
12624
12624
  ref: z.ZodString;
12625
12625
  from: z.ZodOptional<z.ZodString>;
@@ -13612,11 +13612,11 @@ declare const OrbitalSchema$1: z.ZodObject<{
13612
13612
  }, "strip", z.ZodTypeAny, {
13613
13613
  name: string;
13614
13614
  role?: string | undefined;
13615
- device?: "mobile" | "tablet" | "desktop" | undefined;
13615
+ device?: "mobile" | "desktop" | "tablet" | undefined;
13616
13616
  }, {
13617
13617
  name: string;
13618
13618
  role?: string | undefined;
13619
- device?: "mobile" | "tablet" | "desktop" | undefined;
13619
+ device?: "mobile" | "desktop" | "tablet" | undefined;
13620
13620
  }>, "many">>;
13621
13621
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
13622
13622
  }, "strip", z.ZodTypeAny, {
@@ -13627,7 +13627,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13627
13627
  personas?: {
13628
13628
  name: string;
13629
13629
  role?: string | undefined;
13630
- device?: "mobile" | "tablet" | "desktop" | undefined;
13630
+ device?: "mobile" | "desktop" | "tablet" | undefined;
13631
13631
  }[] | undefined;
13632
13632
  vocabulary?: Record<string, string> | undefined;
13633
13633
  }, {
@@ -13638,7 +13638,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13638
13638
  personas?: {
13639
13639
  name: string;
13640
13640
  role?: string | undefined;
13641
- device?: "mobile" | "tablet" | "desktop" | undefined;
13641
+ device?: "mobile" | "desktop" | "tablet" | undefined;
13642
13642
  }[] | undefined;
13643
13643
  vocabulary?: Record<string, string> | undefined;
13644
13644
  }>>;
@@ -13688,7 +13688,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13688
13688
  }>>;
13689
13689
  }, "strip", z.ZodTypeAny, {
13690
13690
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
13691
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
13691
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
13692
13692
  primaryColor?: string | undefined;
13693
13693
  darkMode?: boolean | undefined;
13694
13694
  uxHints?: {
@@ -13704,7 +13704,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13704
13704
  } | undefined;
13705
13705
  }, {
13706
13706
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
13707
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
13707
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
13708
13708
  primaryColor?: string | undefined;
13709
13709
  darkMode?: boolean | undefined;
13710
13710
  uxHints?: {
@@ -13769,7 +13769,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
13769
13769
  config?: TraitConfigObject | undefined;
13770
13770
  linkedEntity?: string | undefined;
13771
13771
  }[] | undefined;
13772
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
13772
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
13773
13773
  } | {
13774
13774
  ref: string;
13775
13775
  path?: string | undefined;
@@ -14104,13 +14104,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
14104
14104
  personas?: {
14105
14105
  name: string;
14106
14106
  role?: string | undefined;
14107
- device?: "mobile" | "tablet" | "desktop" | undefined;
14107
+ device?: "mobile" | "desktop" | "tablet" | undefined;
14108
14108
  }[] | undefined;
14109
14109
  vocabulary?: Record<string, string> | undefined;
14110
14110
  } | undefined;
14111
14111
  design?: {
14112
14112
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
14113
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
14113
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
14114
14114
  primaryColor?: string | undefined;
14115
14115
  darkMode?: boolean | undefined;
14116
14116
  uxHints?: {
@@ -14167,7 +14167,7 @@ declare const OrbitalSchema$1: z.ZodObject<{
14167
14167
  config?: TraitConfigObject | undefined;
14168
14168
  linkedEntity?: string | undefined;
14169
14169
  }[] | undefined;
14170
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
14170
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
14171
14171
  } | {
14172
14172
  ref: string;
14173
14173
  path?: string | undefined;
@@ -14502,13 +14502,13 @@ declare const OrbitalSchema$1: z.ZodObject<{
14502
14502
  personas?: {
14503
14503
  name: string;
14504
14504
  role?: string | undefined;
14505
- device?: "mobile" | "tablet" | "desktop" | undefined;
14505
+ device?: "mobile" | "desktop" | "tablet" | undefined;
14506
14506
  }[] | undefined;
14507
14507
  vocabulary?: Record<string, string> | undefined;
14508
14508
  } | undefined;
14509
14509
  design?: {
14510
14510
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
14511
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
14511
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
14512
14512
  primaryColor?: string | undefined;
14513
14513
  darkMode?: boolean | undefined;
14514
14514
  uxHints?: {
@@ -15525,7 +15525,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15525
15525
  config?: TraitConfigObject | undefined;
15526
15526
  linkedEntity?: string | undefined;
15527
15527
  }[] | undefined;
15528
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
15528
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
15529
15529
  }, {
15530
15530
  path: string;
15531
15531
  name: string;
@@ -15537,7 +15537,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
15537
15537
  config?: TraitConfigObject | undefined;
15538
15538
  linkedEntity?: string | undefined;
15539
15539
  }[] | undefined;
15540
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
15540
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
15541
15541
  }>, z.ZodString, z.ZodObject<{
15542
15542
  ref: z.ZodString;
15543
15543
  from: z.ZodOptional<z.ZodString>;
@@ -16530,11 +16530,11 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16530
16530
  }, "strip", z.ZodTypeAny, {
16531
16531
  name: string;
16532
16532
  role?: string | undefined;
16533
- device?: "mobile" | "tablet" | "desktop" | undefined;
16533
+ device?: "mobile" | "desktop" | "tablet" | undefined;
16534
16534
  }, {
16535
16535
  name: string;
16536
16536
  role?: string | undefined;
16537
- device?: "mobile" | "tablet" | "desktop" | undefined;
16537
+ device?: "mobile" | "desktop" | "tablet" | undefined;
16538
16538
  }>, "many">>;
16539
16539
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
16540
16540
  }, "strip", z.ZodTypeAny, {
@@ -16545,7 +16545,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16545
16545
  personas?: {
16546
16546
  name: string;
16547
16547
  role?: string | undefined;
16548
- device?: "mobile" | "tablet" | "desktop" | undefined;
16548
+ device?: "mobile" | "desktop" | "tablet" | undefined;
16549
16549
  }[] | undefined;
16550
16550
  vocabulary?: Record<string, string> | undefined;
16551
16551
  }, {
@@ -16556,7 +16556,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16556
16556
  personas?: {
16557
16557
  name: string;
16558
16558
  role?: string | undefined;
16559
- device?: "mobile" | "tablet" | "desktop" | undefined;
16559
+ device?: "mobile" | "desktop" | "tablet" | undefined;
16560
16560
  }[] | undefined;
16561
16561
  vocabulary?: Record<string, string> | undefined;
16562
16562
  }>>;
@@ -16606,7 +16606,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16606
16606
  }>>;
16607
16607
  }, "strip", z.ZodTypeAny, {
16608
16608
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
16609
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
16609
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
16610
16610
  primaryColor?: string | undefined;
16611
16611
  darkMode?: boolean | undefined;
16612
16612
  uxHints?: {
@@ -16622,7 +16622,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16622
16622
  } | undefined;
16623
16623
  }, {
16624
16624
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
16625
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
16625
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
16626
16626
  primaryColor?: string | undefined;
16627
16627
  darkMode?: boolean | undefined;
16628
16628
  uxHints?: {
@@ -16687,7 +16687,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
16687
16687
  config?: TraitConfigObject | undefined;
16688
16688
  linkedEntity?: string | undefined;
16689
16689
  }[] | undefined;
16690
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
16690
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
16691
16691
  } | {
16692
16692
  ref: string;
16693
16693
  path?: string | undefined;
@@ -17022,13 +17022,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17022
17022
  personas?: {
17023
17023
  name: string;
17024
17024
  role?: string | undefined;
17025
- device?: "mobile" | "tablet" | "desktop" | undefined;
17025
+ device?: "mobile" | "desktop" | "tablet" | undefined;
17026
17026
  }[] | undefined;
17027
17027
  vocabulary?: Record<string, string> | undefined;
17028
17028
  } | undefined;
17029
17029
  design?: {
17030
17030
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
17031
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
17031
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
17032
17032
  primaryColor?: string | undefined;
17033
17033
  darkMode?: boolean | undefined;
17034
17034
  uxHints?: {
@@ -17085,7 +17085,7 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17085
17085
  config?: TraitConfigObject | undefined;
17086
17086
  linkedEntity?: string | undefined;
17087
17087
  }[] | undefined;
17088
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
17088
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
17089
17089
  } | {
17090
17090
  ref: string;
17091
17091
  path?: string | undefined;
@@ -17420,13 +17420,13 @@ declare const OrbitalUnitSchema: z.ZodObject<{
17420
17420
  personas?: {
17421
17421
  name: string;
17422
17422
  role?: string | undefined;
17423
- device?: "mobile" | "tablet" | "desktop" | undefined;
17423
+ device?: "mobile" | "desktop" | "tablet" | undefined;
17424
17424
  }[] | undefined;
17425
17425
  vocabulary?: Record<string, string> | undefined;
17426
17426
  } | undefined;
17427
17427
  design?: {
17428
17428
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
17429
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
17429
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
17430
17430
  primaryColor?: string | undefined;
17431
17431
  darkMode?: boolean | undefined;
17432
17432
  uxHints?: {
@@ -17472,13 +17472,13 @@ declare const OrbitalConfigSchema: z.ZodObject<{
17472
17472
  secondary: z.ZodOptional<z.ZodString>;
17473
17473
  mode: z.ZodOptional<z.ZodEnum<["light", "dark", "system"]>>;
17474
17474
  }, "strip", z.ZodTypeAny, {
17475
- mode?: "system" | "light" | "dark" | undefined;
17476
17475
  primary?: string | undefined;
17477
17476
  secondary?: string | undefined;
17478
- }, {
17479
17477
  mode?: "system" | "light" | "dark" | undefined;
17478
+ }, {
17480
17479
  primary?: string | undefined;
17481
17480
  secondary?: string | undefined;
17481
+ mode?: "system" | "light" | "dark" | undefined;
17482
17482
  }>>;
17483
17483
  features: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
17484
17484
  api: z.ZodOptional<z.ZodObject<{
@@ -17493,9 +17493,9 @@ declare const OrbitalConfigSchema: z.ZodObject<{
17493
17493
  }>>;
17494
17494
  }, "strip", z.ZodTypeAny, {
17495
17495
  theme?: {
17496
- mode?: "system" | "light" | "dark" | undefined;
17497
17496
  primary?: string | undefined;
17498
17497
  secondary?: string | undefined;
17498
+ mode?: "system" | "light" | "dark" | undefined;
17499
17499
  } | undefined;
17500
17500
  features?: Record<string, boolean> | undefined;
17501
17501
  api?: {
@@ -17504,9 +17504,9 @@ declare const OrbitalConfigSchema: z.ZodObject<{
17504
17504
  } | undefined;
17505
17505
  }, {
17506
17506
  theme?: {
17507
- mode?: "system" | "light" | "dark" | undefined;
17508
17507
  primary?: string | undefined;
17509
17508
  secondary?: string | undefined;
17509
+ mode?: "system" | "light" | "dark" | undefined;
17510
17510
  } | undefined;
17511
17511
  features?: Record<string, boolean> | undefined;
17512
17512
  api?: {
@@ -17568,11 +17568,11 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17568
17568
  }, "strip", z.ZodTypeAny, {
17569
17569
  name: string;
17570
17570
  role?: string | undefined;
17571
- device?: "mobile" | "tablet" | "desktop" | undefined;
17571
+ device?: "mobile" | "desktop" | "tablet" | undefined;
17572
17572
  }, {
17573
17573
  name: string;
17574
17574
  role?: string | undefined;
17575
- device?: "mobile" | "tablet" | "desktop" | undefined;
17575
+ device?: "mobile" | "desktop" | "tablet" | undefined;
17576
17576
  }>, "many">>;
17577
17577
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
17578
17578
  }, "strip", z.ZodTypeAny, {
@@ -17583,7 +17583,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17583
17583
  personas?: {
17584
17584
  name: string;
17585
17585
  role?: string | undefined;
17586
- device?: "mobile" | "tablet" | "desktop" | undefined;
17586
+ device?: "mobile" | "desktop" | "tablet" | undefined;
17587
17587
  }[] | undefined;
17588
17588
  vocabulary?: Record<string, string> | undefined;
17589
17589
  }, {
@@ -17594,7 +17594,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17594
17594
  personas?: {
17595
17595
  name: string;
17596
17596
  role?: string | undefined;
17597
- device?: "mobile" | "tablet" | "desktop" | undefined;
17597
+ device?: "mobile" | "desktop" | "tablet" | undefined;
17598
17598
  }[] | undefined;
17599
17599
  vocabulary?: Record<string, string> | undefined;
17600
17600
  }>>;
@@ -17644,7 +17644,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17644
17644
  }>>;
17645
17645
  }, "strip", z.ZodTypeAny, {
17646
17646
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
17647
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
17647
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
17648
17648
  primaryColor?: string | undefined;
17649
17649
  darkMode?: boolean | undefined;
17650
17650
  uxHints?: {
@@ -17660,7 +17660,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17660
17660
  } | undefined;
17661
17661
  }, {
17662
17662
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
17663
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
17663
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
17664
17664
  primaryColor?: string | undefined;
17665
17665
  darkMode?: boolean | undefined;
17666
17666
  uxHints?: {
@@ -17684,13 +17684,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
17684
17684
  props: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17685
17685
  }, "strip", z.ZodTypeAny, {
17686
17686
  type: "custom";
17687
- 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";
17687
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
17688
17688
  className: string;
17689
17689
  slots?: string[] | undefined;
17690
17690
  props?: string[] | undefined;
17691
17691
  }, {
17692
17692
  type: "custom";
17693
- 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";
17693
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
17694
17694
  className: string;
17695
17695
  slots?: string[] | undefined;
17696
17696
  props?: string[] | undefined;
@@ -18684,7 +18684,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18684
18684
  config?: TraitConfigObject | undefined;
18685
18685
  linkedEntity?: string | undefined;
18686
18686
  }[] | undefined;
18687
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
18687
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
18688
18688
  }, {
18689
18689
  path: string;
18690
18690
  name: string;
@@ -18696,7 +18696,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
18696
18696
  config?: TraitConfigObject | undefined;
18697
18697
  linkedEntity?: string | undefined;
18698
18698
  }[] | undefined;
18699
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
18699
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
18700
18700
  }>, z.ZodString, z.ZodObject<{
18701
18701
  ref: z.ZodString;
18702
18702
  from: z.ZodOptional<z.ZodString>;
@@ -19689,11 +19689,11 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19689
19689
  }, "strip", z.ZodTypeAny, {
19690
19690
  name: string;
19691
19691
  role?: string | undefined;
19692
- device?: "mobile" | "tablet" | "desktop" | undefined;
19692
+ device?: "mobile" | "desktop" | "tablet" | undefined;
19693
19693
  }, {
19694
19694
  name: string;
19695
19695
  role?: string | undefined;
19696
- device?: "mobile" | "tablet" | "desktop" | undefined;
19696
+ device?: "mobile" | "desktop" | "tablet" | undefined;
19697
19697
  }>, "many">>;
19698
19698
  vocabulary: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
19699
19699
  }, "strip", z.ZodTypeAny, {
@@ -19704,7 +19704,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19704
19704
  personas?: {
19705
19705
  name: string;
19706
19706
  role?: string | undefined;
19707
- device?: "mobile" | "tablet" | "desktop" | undefined;
19707
+ device?: "mobile" | "desktop" | "tablet" | undefined;
19708
19708
  }[] | undefined;
19709
19709
  vocabulary?: Record<string, string> | undefined;
19710
19710
  }, {
@@ -19715,7 +19715,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19715
19715
  personas?: {
19716
19716
  name: string;
19717
19717
  role?: string | undefined;
19718
- device?: "mobile" | "tablet" | "desktop" | undefined;
19718
+ device?: "mobile" | "desktop" | "tablet" | undefined;
19719
19719
  }[] | undefined;
19720
19720
  vocabulary?: Record<string, string> | undefined;
19721
19721
  }>>;
@@ -19765,7 +19765,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19765
19765
  }>>;
19766
19766
  }, "strip", z.ZodTypeAny, {
19767
19767
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
19768
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
19768
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
19769
19769
  primaryColor?: string | undefined;
19770
19770
  darkMode?: boolean | undefined;
19771
19771
  uxHints?: {
@@ -19781,7 +19781,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19781
19781
  } | undefined;
19782
19782
  }, {
19783
19783
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
19784
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
19784
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
19785
19785
  primaryColor?: string | undefined;
19786
19786
  darkMode?: boolean | undefined;
19787
19787
  uxHints?: {
@@ -19846,7 +19846,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
19846
19846
  config?: TraitConfigObject | undefined;
19847
19847
  linkedEntity?: string | undefined;
19848
19848
  }[] | undefined;
19849
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
19849
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
19850
19850
  } | {
19851
19851
  ref: string;
19852
19852
  path?: string | undefined;
@@ -20181,13 +20181,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20181
20181
  personas?: {
20182
20182
  name: string;
20183
20183
  role?: string | undefined;
20184
- device?: "mobile" | "tablet" | "desktop" | undefined;
20184
+ device?: "mobile" | "desktop" | "tablet" | undefined;
20185
20185
  }[] | undefined;
20186
20186
  vocabulary?: Record<string, string> | undefined;
20187
20187
  } | undefined;
20188
20188
  design?: {
20189
20189
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
20190
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
20190
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
20191
20191
  primaryColor?: string | undefined;
20192
20192
  darkMode?: boolean | undefined;
20193
20193
  uxHints?: {
@@ -20244,7 +20244,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20244
20244
  config?: TraitConfigObject | undefined;
20245
20245
  linkedEntity?: string | undefined;
20246
20246
  }[] | undefined;
20247
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
20247
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
20248
20248
  } | {
20249
20249
  ref: string;
20250
20250
  path?: string | undefined;
@@ -20579,13 +20579,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20579
20579
  personas?: {
20580
20580
  name: string;
20581
20581
  role?: string | undefined;
20582
- device?: "mobile" | "tablet" | "desktop" | undefined;
20582
+ device?: "mobile" | "desktop" | "tablet" | undefined;
20583
20583
  }[] | undefined;
20584
20584
  vocabulary?: Record<string, string> | undefined;
20585
20585
  } | undefined;
20586
20586
  design?: {
20587
20587
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
20588
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
20588
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
20589
20589
  primaryColor?: string | undefined;
20590
20590
  darkMode?: boolean | undefined;
20591
20591
  uxHints?: {
@@ -20739,13 +20739,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20739
20739
  secondary: z.ZodOptional<z.ZodString>;
20740
20740
  mode: z.ZodOptional<z.ZodEnum<["light", "dark", "system"]>>;
20741
20741
  }, "strip", z.ZodTypeAny, {
20742
- mode?: "system" | "light" | "dark" | undefined;
20743
20742
  primary?: string | undefined;
20744
20743
  secondary?: string | undefined;
20745
- }, {
20746
20744
  mode?: "system" | "light" | "dark" | undefined;
20745
+ }, {
20747
20746
  primary?: string | undefined;
20748
20747
  secondary?: string | undefined;
20748
+ mode?: "system" | "light" | "dark" | undefined;
20749
20749
  }>>;
20750
20750
  features: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
20751
20751
  api: z.ZodOptional<z.ZodObject<{
@@ -20760,9 +20760,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20760
20760
  }>>;
20761
20761
  }, "strip", z.ZodTypeAny, {
20762
20762
  theme?: {
20763
- mode?: "system" | "light" | "dark" | undefined;
20764
20763
  primary?: string | undefined;
20765
20764
  secondary?: string | undefined;
20765
+ mode?: "system" | "light" | "dark" | undefined;
20766
20766
  } | undefined;
20767
20767
  features?: Record<string, boolean> | undefined;
20768
20768
  api?: {
@@ -20771,9 +20771,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20771
20771
  } | undefined;
20772
20772
  }, {
20773
20773
  theme?: {
20774
- mode?: "system" | "light" | "dark" | undefined;
20775
20774
  primary?: string | undefined;
20776
20775
  secondary?: string | undefined;
20776
+ mode?: "system" | "light" | "dark" | undefined;
20777
20777
  } | undefined;
20778
20778
  features?: Record<string, boolean> | undefined;
20779
20779
  api?: {
@@ -20820,7 +20820,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
20820
20820
  config?: TraitConfigObject | undefined;
20821
20821
  linkedEntity?: string | undefined;
20822
20822
  }[] | undefined;
20823
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
20823
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
20824
20824
  } | {
20825
20825
  ref: string;
20826
20826
  path?: string | undefined;
@@ -21155,13 +21155,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21155
21155
  personas?: {
21156
21156
  name: string;
21157
21157
  role?: string | undefined;
21158
- device?: "mobile" | "tablet" | "desktop" | undefined;
21158
+ device?: "mobile" | "desktop" | "tablet" | undefined;
21159
21159
  }[] | undefined;
21160
21160
  vocabulary?: Record<string, string> | undefined;
21161
21161
  } | undefined;
21162
21162
  design?: {
21163
21163
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
21164
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
21164
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
21165
21165
  primaryColor?: string | undefined;
21166
21166
  darkMode?: boolean | undefined;
21167
21167
  uxHints?: {
@@ -21185,9 +21185,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21185
21185
  description?: string | undefined;
21186
21186
  config?: {
21187
21187
  theme?: {
21188
- mode?: "system" | "light" | "dark" | undefined;
21189
21188
  primary?: string | undefined;
21190
21189
  secondary?: string | undefined;
21190
+ mode?: "system" | "light" | "dark" | undefined;
21191
21191
  } | undefined;
21192
21192
  features?: Record<string, boolean> | undefined;
21193
21193
  api?: {
@@ -21238,13 +21238,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21238
21238
  personas?: {
21239
21239
  name: string;
21240
21240
  role?: string | undefined;
21241
- device?: "mobile" | "tablet" | "desktop" | undefined;
21241
+ device?: "mobile" | "desktop" | "tablet" | undefined;
21242
21242
  }[] | undefined;
21243
21243
  vocabulary?: Record<string, string> | undefined;
21244
21244
  } | undefined;
21245
21245
  design?: {
21246
21246
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
21247
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
21247
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
21248
21248
  primaryColor?: string | undefined;
21249
21249
  darkMode?: boolean | undefined;
21250
21250
  uxHints?: {
@@ -21263,7 +21263,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21263
21263
  designTokens?: Record<string, Record<string, string>> | undefined;
21264
21264
  customPatterns?: Record<string, {
21265
21265
  type: "custom";
21266
- 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";
21266
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
21267
21267
  className: string;
21268
21268
  slots?: string[] | undefined;
21269
21269
  props?: string[] | undefined;
@@ -21307,7 +21307,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21307
21307
  config?: TraitConfigObject | undefined;
21308
21308
  linkedEntity?: string | undefined;
21309
21309
  }[] | undefined;
21310
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
21310
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
21311
21311
  } | {
21312
21312
  ref: string;
21313
21313
  path?: string | undefined;
@@ -21642,13 +21642,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21642
21642
  personas?: {
21643
21643
  name: string;
21644
21644
  role?: string | undefined;
21645
- device?: "mobile" | "tablet" | "desktop" | undefined;
21645
+ device?: "mobile" | "desktop" | "tablet" | undefined;
21646
21646
  }[] | undefined;
21647
21647
  vocabulary?: Record<string, string> | undefined;
21648
21648
  } | undefined;
21649
21649
  design?: {
21650
21650
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
21651
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
21651
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
21652
21652
  primaryColor?: string | undefined;
21653
21653
  darkMode?: boolean | undefined;
21654
21654
  uxHints?: {
@@ -21672,9 +21672,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21672
21672
  description?: string | undefined;
21673
21673
  config?: {
21674
21674
  theme?: {
21675
- mode?: "system" | "light" | "dark" | undefined;
21676
21675
  primary?: string | undefined;
21677
21676
  secondary?: string | undefined;
21677
+ mode?: "system" | "light" | "dark" | undefined;
21678
21678
  } | undefined;
21679
21679
  features?: Record<string, boolean> | undefined;
21680
21680
  api?: {
@@ -21725,13 +21725,13 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21725
21725
  personas?: {
21726
21726
  name: string;
21727
21727
  role?: string | undefined;
21728
- device?: "mobile" | "tablet" | "desktop" | undefined;
21728
+ device?: "mobile" | "desktop" | "tablet" | undefined;
21729
21729
  }[] | undefined;
21730
21730
  vocabulary?: Record<string, string> | undefined;
21731
21731
  } | undefined;
21732
21732
  design?: {
21733
21733
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
21734
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
21734
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
21735
21735
  primaryColor?: string | undefined;
21736
21736
  darkMode?: boolean | undefined;
21737
21737
  uxHints?: {
@@ -21750,7 +21750,7 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
21750
21750
  designTokens?: Record<string, Record<string, string>> | undefined;
21751
21751
  customPatterns?: Record<string, {
21752
21752
  type: "custom";
21753
- 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";
21753
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
21754
21754
  className: string;
21755
21755
  slots?: string[] | undefined;
21756
21756
  props?: string[] | undefined;
@@ -21841,7 +21841,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
21841
21841
  config?: TraitConfigObject | undefined;
21842
21842
  linkedEntity?: string | undefined;
21843
21843
  }[] | undefined;
21844
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
21844
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
21845
21845
  } | {
21846
21846
  ref: string;
21847
21847
  path?: string | undefined;
@@ -22176,13 +22176,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22176
22176
  personas?: {
22177
22177
  name: string;
22178
22178
  role?: string | undefined;
22179
- device?: "mobile" | "tablet" | "desktop" | undefined;
22179
+ device?: "mobile" | "desktop" | "tablet" | undefined;
22180
22180
  }[] | undefined;
22181
22181
  vocabulary?: Record<string, string> | undefined;
22182
22182
  } | undefined;
22183
22183
  design?: {
22184
22184
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
22185
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
22185
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
22186
22186
  primaryColor?: string | undefined;
22187
22187
  darkMode?: boolean | undefined;
22188
22188
  uxHints?: {
@@ -22206,9 +22206,9 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22206
22206
  description?: string | undefined;
22207
22207
  config?: {
22208
22208
  theme?: {
22209
- mode?: "system" | "light" | "dark" | undefined;
22210
22209
  primary?: string | undefined;
22211
22210
  secondary?: string | undefined;
22211
+ mode?: "system" | "light" | "dark" | undefined;
22212
22212
  } | undefined;
22213
22213
  features?: Record<string, boolean> | undefined;
22214
22214
  api?: {
@@ -22259,13 +22259,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22259
22259
  personas?: {
22260
22260
  name: string;
22261
22261
  role?: string | undefined;
22262
- device?: "mobile" | "tablet" | "desktop" | undefined;
22262
+ device?: "mobile" | "desktop" | "tablet" | undefined;
22263
22263
  }[] | undefined;
22264
22264
  vocabulary?: Record<string, string> | undefined;
22265
22265
  } | undefined;
22266
22266
  design?: {
22267
22267
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
22268
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
22268
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
22269
22269
  primaryColor?: string | undefined;
22270
22270
  darkMode?: boolean | undefined;
22271
22271
  uxHints?: {
@@ -22284,7 +22284,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22284
22284
  designTokens?: Record<string, Record<string, string>> | undefined;
22285
22285
  customPatterns?: Record<string, {
22286
22286
  type: "custom";
22287
- 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";
22287
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
22288
22288
  className: string;
22289
22289
  slots?: string[] | undefined;
22290
22290
  props?: string[] | undefined;
@@ -22328,7 +22328,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22328
22328
  config?: TraitConfigObject | undefined;
22329
22329
  linkedEntity?: string | undefined;
22330
22330
  }[] | undefined;
22331
- viewType?: "custom" | "create" | "dashboard" | "list" | "detail" | "edit" | undefined;
22331
+ viewType?: "custom" | "create" | "edit" | "dashboard" | "list" | "detail" | undefined;
22332
22332
  } | {
22333
22333
  ref: string;
22334
22334
  path?: string | undefined;
@@ -22663,13 +22663,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22663
22663
  personas?: {
22664
22664
  name: string;
22665
22665
  role?: string | undefined;
22666
- device?: "mobile" | "tablet" | "desktop" | undefined;
22666
+ device?: "mobile" | "desktop" | "tablet" | undefined;
22667
22667
  }[] | undefined;
22668
22668
  vocabulary?: Record<string, string> | undefined;
22669
22669
  } | undefined;
22670
22670
  design?: {
22671
22671
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
22672
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
22672
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
22673
22673
  primaryColor?: string | undefined;
22674
22674
  darkMode?: boolean | undefined;
22675
22675
  uxHints?: {
@@ -22693,9 +22693,9 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22693
22693
  description?: string | undefined;
22694
22694
  config?: {
22695
22695
  theme?: {
22696
- mode?: "system" | "light" | "dark" | undefined;
22697
22696
  primary?: string | undefined;
22698
22697
  secondary?: string | undefined;
22698
+ mode?: "system" | "light" | "dark" | undefined;
22699
22699
  } | undefined;
22700
22700
  features?: Record<string, boolean> | undefined;
22701
22701
  api?: {
@@ -22746,13 +22746,13 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22746
22746
  personas?: {
22747
22747
  name: string;
22748
22748
  role?: string | undefined;
22749
- device?: "mobile" | "tablet" | "desktop" | undefined;
22749
+ device?: "mobile" | "desktop" | "tablet" | undefined;
22750
22750
  }[] | undefined;
22751
22751
  vocabulary?: Record<string, string> | undefined;
22752
22752
  } | undefined;
22753
22753
  design?: {
22754
22754
  style?: "minimal" | "modern" | "playful" | "data-driven" | "immersive" | undefined;
22755
- device?: "mobile" | "tablet" | "desktop" | "all" | undefined;
22755
+ device?: "mobile" | "desktop" | "tablet" | "all" | undefined;
22756
22756
  primaryColor?: string | undefined;
22757
22757
  darkMode?: boolean | undefined;
22758
22758
  uxHints?: {
@@ -22771,7 +22771,7 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
22771
22771
  designTokens?: Record<string, Record<string, string>> | undefined;
22772
22772
  customPatterns?: Record<string, {
22773
22773
  type: "custom";
22774
- 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";
22774
+ component: "header" | "main" | "button" | "form" | "input" | "label" | "section" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "nav" | "article" | "footer" | "div" | "span" | "a" | "p" | "aside" | "ul" | "ol" | "li" | "img";
22775
22775
  className: string;
22776
22776
  slots?: string[] | undefined;
22777
22777
  props?: string[] | undefined;