@underdogai/mesh-event-schemas 0.3.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/apppacks.d.ts +834 -225
  2. package/dist/apppacks.d.ts.map +1 -1
  3. package/dist/apppacks.js +1 -1
  4. package/dist/blocks.d.ts +207 -38
  5. package/dist/blocks.d.ts.map +1 -1
  6. package/dist/blocks.js +78 -11
  7. package/dist/blocks.js.map +1 -1
  8. package/dist/capabilities.d.ts +2 -1
  9. package/dist/capabilities.d.ts.map +1 -1
  10. package/dist/capabilities.js +2 -1
  11. package/dist/capabilities.js.map +1 -1
  12. package/dist/events.d.ts +342 -57
  13. package/dist/events.d.ts.map +1 -1
  14. package/dist/events.js +109 -1
  15. package/dist/events.js.map +1 -1
  16. package/dist/geo.d.ts +52 -0
  17. package/dist/geo.d.ts.map +1 -0
  18. package/dist/geo.js +65 -0
  19. package/dist/geo.js.map +1 -0
  20. package/dist/index.d.ts +1 -0
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/index.js +1 -0
  23. package/dist/index.js.map +1 -1
  24. package/dist/namespace.d.ts +2 -0
  25. package/dist/namespace.d.ts.map +1 -1
  26. package/dist/namespace.js +2 -0
  27. package/dist/namespace.js.map +1 -1
  28. package/dist/registry.d.ts +3 -2
  29. package/dist/registry.d.ts.map +1 -1
  30. package/dist/registry.js +25 -3
  31. package/dist/registry.js.map +1 -1
  32. package/dist/surfaces.d.ts +3970 -1160
  33. package/dist/surfaces.d.ts.map +1 -1
  34. package/dist/surfaces.js +8 -1
  35. package/dist/surfaces.js.map +1 -1
  36. package/package.json +1 -1
  37. package/src/apppacks.ts +1 -1
  38. package/src/blocks.ts +80 -11
  39. package/src/capabilities.ts +2 -1
  40. package/src/events.ts +119 -4
  41. package/src/geo.ts +75 -0
  42. package/src/index.ts +1 -0
  43. package/src/namespace.ts +2 -0
  44. package/src/registry.ts +26 -2
  45. package/src/surfaces.ts +8 -0
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * App Pack 레지스트리 — 도메인 1개(CRM·Forgejo·프로젝트…)를 클라이언트에 가르치는 선언형 번들.
3
3
  *
4
- * 카드의 templateRegistry(templates.ts) / 블록의 registerBlock(ui-blocks)과 같은 "확장 봉합선"을,
4
+ * 카드의 templateRegistry(templates.ts) / 블록의 registerBlock(spec-renderer)과 같은 "확장 봉합선"을,
5
5
  * 룸 단위 셸 서피스로 일반화한 것이다. 룸이 선언한 바인딩(app)에 따라 클라이언트가 팩을 골라
6
6
  * 컨텍스트 패널 등 서피스를 렌더한다. 새 SaaS 단위 = 새 팩(데이터) — 클라이언트 포크가 아니다.
7
7
  *
@@ -320,17 +320,14 @@ export declare const AppPackSchema: z.ZodObject<{
320
320
  type: z.ZodLiteral<"progress">;
321
321
  value: z.ZodOptional<z.ZodNumber>;
322
322
  label: z.ZodOptional<z.ZodString>;
323
- tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
324
323
  }, "strip", z.ZodTypeAny, {
325
324
  type: "progress";
326
325
  value?: number | undefined;
327
326
  label?: string | undefined;
328
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
329
327
  }, {
330
328
  type: "progress";
331
329
  value?: number | undefined;
332
330
  label?: string | undefined;
333
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
334
331
  }>, z.ZodObject<{
335
332
  type: z.ZodLiteral<"steps">;
336
333
  items: z.ZodArray<z.ZodObject<{
@@ -426,7 +423,6 @@ export declare const AppPackSchema: z.ZodObject<{
426
423
  type: z.ZodLiteral<"avatar">;
427
424
  name: z.ZodString;
428
425
  initials: z.ZodOptional<z.ZodString>;
429
- color: z.ZodOptional<z.ZodString>;
430
426
  src: z.ZodOptional<z.ZodString>;
431
427
  subtitle: z.ZodOptional<z.ZodString>;
432
428
  status: z.ZodOptional<z.ZodEnum<["online", "away", "busy", "offline"]>>;
@@ -435,7 +431,6 @@ export declare const AppPackSchema: z.ZodObject<{
435
431
  name: string;
436
432
  status?: "online" | "away" | "busy" | "offline" | undefined;
437
433
  initials?: string | undefined;
438
- color?: string | undefined;
439
434
  src?: string | undefined;
440
435
  subtitle?: string | undefined;
441
436
  }, {
@@ -443,7 +438,6 @@ export declare const AppPackSchema: z.ZodObject<{
443
438
  name: string;
444
439
  status?: "online" | "away" | "busy" | "offline" | undefined;
445
440
  initials?: string | undefined;
446
- color?: string | undefined;
447
441
  src?: string | undefined;
448
442
  subtitle?: string | undefined;
449
443
  }>, z.ZodObject<{
@@ -451,17 +445,14 @@ export declare const AppPackSchema: z.ZodObject<{
451
445
  people: z.ZodArray<z.ZodObject<{
452
446
  name: z.ZodString;
453
447
  initials: z.ZodOptional<z.ZodString>;
454
- color: z.ZodOptional<z.ZodString>;
455
448
  src: z.ZodOptional<z.ZodString>;
456
449
  }, "strip", z.ZodTypeAny, {
457
450
  name: string;
458
451
  initials?: string | undefined;
459
- color?: string | undefined;
460
452
  src?: string | undefined;
461
453
  }, {
462
454
  name: string;
463
455
  initials?: string | undefined;
464
- color?: string | undefined;
465
456
  src?: string | undefined;
466
457
  }>, "many">;
467
458
  max: z.ZodOptional<z.ZodNumber>;
@@ -471,7 +462,6 @@ export declare const AppPackSchema: z.ZodObject<{
471
462
  people: {
472
463
  name: string;
473
464
  initials?: string | undefined;
474
- color?: string | undefined;
475
465
  src?: string | undefined;
476
466
  }[];
477
467
  label?: string | undefined;
@@ -481,7 +471,6 @@ export declare const AppPackSchema: z.ZodObject<{
481
471
  people: {
482
472
  name: string;
483
473
  initials?: string | undefined;
484
- color?: string | undefined;
485
474
  src?: string | undefined;
486
475
  }[];
487
476
  label?: string | undefined;
@@ -606,7 +595,6 @@ export declare const AppPackSchema: z.ZodObject<{
606
595
  }>, "many">;
607
596
  }, "strip", z.ZodTypeAny, {
608
597
  title: string;
609
- id: string;
610
598
  cards: {
611
599
  title: string;
612
600
  id: string;
@@ -617,10 +605,10 @@ export declare const AppPackSchema: z.ZodObject<{
617
605
  } | undefined;
618
606
  meta?: string[] | undefined;
619
607
  }[];
608
+ id: string;
620
609
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
621
610
  }, {
622
611
  title: string;
623
- id: string;
624
612
  cards: {
625
613
  title: string;
626
614
  id: string;
@@ -631,6 +619,7 @@ export declare const AppPackSchema: z.ZodObject<{
631
619
  } | undefined;
632
620
  meta?: string[] | undefined;
633
621
  }[];
622
+ id: string;
634
623
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
635
624
  }>, "many">;
636
625
  caption: z.ZodOptional<z.ZodString>;
@@ -638,7 +627,6 @@ export declare const AppPackSchema: z.ZodObject<{
638
627
  type: "kanban";
639
628
  columns: {
640
629
  title: string;
641
- id: string;
642
630
  cards: {
643
631
  title: string;
644
632
  id: string;
@@ -649,6 +637,7 @@ export declare const AppPackSchema: z.ZodObject<{
649
637
  } | undefined;
650
638
  meta?: string[] | undefined;
651
639
  }[];
640
+ id: string;
652
641
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
653
642
  }[];
654
643
  caption?: string | undefined;
@@ -656,7 +645,6 @@ export declare const AppPackSchema: z.ZodObject<{
656
645
  type: "kanban";
657
646
  columns: {
658
647
  title: string;
659
- id: string;
660
648
  cards: {
661
649
  title: string;
662
650
  id: string;
@@ -667,6 +655,7 @@ export declare const AppPackSchema: z.ZodObject<{
667
655
  } | undefined;
668
656
  meta?: string[] | undefined;
669
657
  }[];
658
+ id: string;
670
659
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
671
660
  }[];
672
661
  caption?: string | undefined;
@@ -866,32 +855,40 @@ export declare const AppPackSchema: z.ZodObject<{
866
855
  options: z.ZodArray<z.ZodObject<{
867
856
  value: z.ZodString;
868
857
  label: z.ZodString;
858
+ hint: z.ZodOptional<z.ZodString>;
869
859
  }, "strip", z.ZodTypeAny, {
870
860
  value: string;
871
861
  label: string;
862
+ hint?: string | undefined;
872
863
  }, {
873
864
  value: string;
874
865
  label: string;
866
+ hint?: string | undefined;
875
867
  }>, "many">;
876
868
  value: z.ZodOptional<z.ZodString>;
869
+ style: z.ZodOptional<z.ZodEnum<["cards", "segmented"]>>;
877
870
  }, "strip", z.ZodTypeAny, {
878
871
  options: {
879
872
  value: string;
880
873
  label: string;
874
+ hint?: string | undefined;
881
875
  }[];
882
876
  type: "radio";
883
877
  name: string;
884
878
  value?: string | undefined;
885
879
  label?: string | undefined;
880
+ style?: "cards" | "segmented" | undefined;
886
881
  }, {
887
882
  options: {
888
883
  value: string;
889
884
  label: string;
885
+ hint?: string | undefined;
890
886
  }[];
891
887
  type: "radio";
892
888
  name: string;
893
889
  value?: string | undefined;
894
890
  label?: string | undefined;
891
+ style?: "cards" | "segmented" | undefined;
895
892
  }>, z.ZodObject<{
896
893
  type: z.ZodLiteral<"select">;
897
894
  name: z.ZodString;
@@ -946,6 +943,30 @@ export declare const AppPackSchema: z.ZodObject<{
946
943
  label: string;
947
944
  name: string;
948
945
  checked?: boolean | undefined;
946
+ }>, z.ZodObject<{
947
+ type: z.ZodLiteral<"location">;
948
+ name: z.ZodString;
949
+ label: z.ZodOptional<z.ZodString>;
950
+ purpose: z.ZodOptional<z.ZodString>;
951
+ required: z.ZodOptional<z.ZodBoolean>;
952
+ precise: z.ZodOptional<z.ZodBoolean>;
953
+ buttonText: z.ZodOptional<z.ZodString>;
954
+ }, "strip", z.ZodTypeAny, {
955
+ type: "location";
956
+ name: string;
957
+ label?: string | undefined;
958
+ required?: boolean | undefined;
959
+ purpose?: string | undefined;
960
+ precise?: boolean | undefined;
961
+ buttonText?: string | undefined;
962
+ }, {
963
+ type: "location";
964
+ name: string;
965
+ label?: string | undefined;
966
+ required?: boolean | undefined;
967
+ purpose?: string | undefined;
968
+ precise?: boolean | undefined;
969
+ buttonText?: string | undefined;
949
970
  }>, z.ZodObject<{
950
971
  type: z.ZodLiteral<"button">;
951
972
  action_id: z.ZodString;
@@ -969,6 +990,7 @@ export declare const AppPackSchema: z.ZodObject<{
969
990
  cancel?: string | undefined;
970
991
  }>>;
971
992
  disabled: z.ZodOptional<z.ZodBoolean>;
993
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
972
994
  }, "strip", z.ZodTypeAny, {
973
995
  type: "button";
974
996
  text: string;
@@ -982,6 +1004,7 @@ export declare const AppPackSchema: z.ZodObject<{
982
1004
  cancel?: string | undefined;
983
1005
  } | undefined;
984
1006
  disabled?: boolean | undefined;
1007
+ hidden_for?: string[] | undefined;
985
1008
  }, {
986
1009
  type: "button";
987
1010
  text: string;
@@ -995,6 +1018,7 @@ export declare const AppPackSchema: z.ZodObject<{
995
1018
  cancel?: string | undefined;
996
1019
  } | undefined;
997
1020
  disabled?: boolean | undefined;
1021
+ hidden_for?: string[] | undefined;
998
1022
  }>, z.ZodObject<{
999
1023
  type: z.ZodLiteral<"linkButton">;
1000
1024
  text: z.ZodString;
@@ -1038,6 +1062,7 @@ export declare const AppPackSchema: z.ZodObject<{
1038
1062
  cancel?: string | undefined;
1039
1063
  }>>;
1040
1064
  disabled: z.ZodOptional<z.ZodBoolean>;
1065
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1041
1066
  }, "strip", z.ZodTypeAny, {
1042
1067
  type: "button";
1043
1068
  text: string;
@@ -1051,6 +1076,7 @@ export declare const AppPackSchema: z.ZodObject<{
1051
1076
  cancel?: string | undefined;
1052
1077
  } | undefined;
1053
1078
  disabled?: boolean | undefined;
1079
+ hidden_for?: string[] | undefined;
1054
1080
  }, {
1055
1081
  type: "button";
1056
1082
  text: string;
@@ -1064,6 +1090,7 @@ export declare const AppPackSchema: z.ZodObject<{
1064
1090
  cancel?: string | undefined;
1065
1091
  } | undefined;
1066
1092
  disabled?: boolean | undefined;
1093
+ hidden_for?: string[] | undefined;
1067
1094
  }>, z.ZodObject<{
1068
1095
  type: z.ZodLiteral<"linkButton">;
1069
1096
  text: z.ZodString;
@@ -1098,6 +1125,7 @@ export declare const AppPackSchema: z.ZodObject<{
1098
1125
  cancel?: string | undefined;
1099
1126
  } | undefined;
1100
1127
  disabled?: boolean | undefined;
1128
+ hidden_for?: string[] | undefined;
1101
1129
  } | {
1102
1130
  type: "linkButton";
1103
1131
  text: string;
@@ -1120,6 +1148,7 @@ export declare const AppPackSchema: z.ZodObject<{
1120
1148
  cancel?: string | undefined;
1121
1149
  } | undefined;
1122
1150
  disabled?: boolean | undefined;
1151
+ hidden_for?: string[] | undefined;
1123
1152
  } | {
1124
1153
  type: "linkButton";
1125
1154
  text: string;
@@ -1369,17 +1398,14 @@ export declare const AppPackSchema: z.ZodObject<{
1369
1398
  type: z.ZodLiteral<"progress">;
1370
1399
  value: z.ZodOptional<z.ZodNumber>;
1371
1400
  label: z.ZodOptional<z.ZodString>;
1372
- tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
1373
1401
  }, "strip", z.ZodTypeAny, {
1374
1402
  type: "progress";
1375
1403
  value?: number | undefined;
1376
1404
  label?: string | undefined;
1377
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
1378
1405
  }, {
1379
1406
  type: "progress";
1380
1407
  value?: number | undefined;
1381
1408
  label?: string | undefined;
1382
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
1383
1409
  }>, z.ZodObject<{
1384
1410
  type: z.ZodLiteral<"steps">;
1385
1411
  items: z.ZodArray<z.ZodObject<{
@@ -1475,7 +1501,6 @@ export declare const AppPackSchema: z.ZodObject<{
1475
1501
  type: z.ZodLiteral<"avatar">;
1476
1502
  name: z.ZodString;
1477
1503
  initials: z.ZodOptional<z.ZodString>;
1478
- color: z.ZodOptional<z.ZodString>;
1479
1504
  src: z.ZodOptional<z.ZodString>;
1480
1505
  subtitle: z.ZodOptional<z.ZodString>;
1481
1506
  status: z.ZodOptional<z.ZodEnum<["online", "away", "busy", "offline"]>>;
@@ -1484,7 +1509,6 @@ export declare const AppPackSchema: z.ZodObject<{
1484
1509
  name: string;
1485
1510
  status?: "online" | "away" | "busy" | "offline" | undefined;
1486
1511
  initials?: string | undefined;
1487
- color?: string | undefined;
1488
1512
  src?: string | undefined;
1489
1513
  subtitle?: string | undefined;
1490
1514
  }, {
@@ -1492,7 +1516,6 @@ export declare const AppPackSchema: z.ZodObject<{
1492
1516
  name: string;
1493
1517
  status?: "online" | "away" | "busy" | "offline" | undefined;
1494
1518
  initials?: string | undefined;
1495
- color?: string | undefined;
1496
1519
  src?: string | undefined;
1497
1520
  subtitle?: string | undefined;
1498
1521
  }>, z.ZodObject<{
@@ -1500,17 +1523,14 @@ export declare const AppPackSchema: z.ZodObject<{
1500
1523
  people: z.ZodArray<z.ZodObject<{
1501
1524
  name: z.ZodString;
1502
1525
  initials: z.ZodOptional<z.ZodString>;
1503
- color: z.ZodOptional<z.ZodString>;
1504
1526
  src: z.ZodOptional<z.ZodString>;
1505
1527
  }, "strip", z.ZodTypeAny, {
1506
1528
  name: string;
1507
1529
  initials?: string | undefined;
1508
- color?: string | undefined;
1509
1530
  src?: string | undefined;
1510
1531
  }, {
1511
1532
  name: string;
1512
1533
  initials?: string | undefined;
1513
- color?: string | undefined;
1514
1534
  src?: string | undefined;
1515
1535
  }>, "many">;
1516
1536
  max: z.ZodOptional<z.ZodNumber>;
@@ -1520,7 +1540,6 @@ export declare const AppPackSchema: z.ZodObject<{
1520
1540
  people: {
1521
1541
  name: string;
1522
1542
  initials?: string | undefined;
1523
- color?: string | undefined;
1524
1543
  src?: string | undefined;
1525
1544
  }[];
1526
1545
  label?: string | undefined;
@@ -1530,7 +1549,6 @@ export declare const AppPackSchema: z.ZodObject<{
1530
1549
  people: {
1531
1550
  name: string;
1532
1551
  initials?: string | undefined;
1533
- color?: string | undefined;
1534
1552
  src?: string | undefined;
1535
1553
  }[];
1536
1554
  label?: string | undefined;
@@ -1655,7 +1673,6 @@ export declare const AppPackSchema: z.ZodObject<{
1655
1673
  }>, "many">;
1656
1674
  }, "strip", z.ZodTypeAny, {
1657
1675
  title: string;
1658
- id: string;
1659
1676
  cards: {
1660
1677
  title: string;
1661
1678
  id: string;
@@ -1666,10 +1683,10 @@ export declare const AppPackSchema: z.ZodObject<{
1666
1683
  } | undefined;
1667
1684
  meta?: string[] | undefined;
1668
1685
  }[];
1686
+ id: string;
1669
1687
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
1670
1688
  }, {
1671
1689
  title: string;
1672
- id: string;
1673
1690
  cards: {
1674
1691
  title: string;
1675
1692
  id: string;
@@ -1680,6 +1697,7 @@ export declare const AppPackSchema: z.ZodObject<{
1680
1697
  } | undefined;
1681
1698
  meta?: string[] | undefined;
1682
1699
  }[];
1700
+ id: string;
1683
1701
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
1684
1702
  }>, "many">;
1685
1703
  caption: z.ZodOptional<z.ZodString>;
@@ -1687,7 +1705,6 @@ export declare const AppPackSchema: z.ZodObject<{
1687
1705
  type: "kanban";
1688
1706
  columns: {
1689
1707
  title: string;
1690
- id: string;
1691
1708
  cards: {
1692
1709
  title: string;
1693
1710
  id: string;
@@ -1698,6 +1715,7 @@ export declare const AppPackSchema: z.ZodObject<{
1698
1715
  } | undefined;
1699
1716
  meta?: string[] | undefined;
1700
1717
  }[];
1718
+ id: string;
1701
1719
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
1702
1720
  }[];
1703
1721
  caption?: string | undefined;
@@ -1705,7 +1723,6 @@ export declare const AppPackSchema: z.ZodObject<{
1705
1723
  type: "kanban";
1706
1724
  columns: {
1707
1725
  title: string;
1708
- id: string;
1709
1726
  cards: {
1710
1727
  title: string;
1711
1728
  id: string;
@@ -1716,6 +1733,7 @@ export declare const AppPackSchema: z.ZodObject<{
1716
1733
  } | undefined;
1717
1734
  meta?: string[] | undefined;
1718
1735
  }[];
1736
+ id: string;
1719
1737
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
1720
1738
  }[];
1721
1739
  caption?: string | undefined;
@@ -1915,32 +1933,40 @@ export declare const AppPackSchema: z.ZodObject<{
1915
1933
  options: z.ZodArray<z.ZodObject<{
1916
1934
  value: z.ZodString;
1917
1935
  label: z.ZodString;
1936
+ hint: z.ZodOptional<z.ZodString>;
1918
1937
  }, "strip", z.ZodTypeAny, {
1919
1938
  value: string;
1920
1939
  label: string;
1940
+ hint?: string | undefined;
1921
1941
  }, {
1922
1942
  value: string;
1923
1943
  label: string;
1944
+ hint?: string | undefined;
1924
1945
  }>, "many">;
1925
1946
  value: z.ZodOptional<z.ZodString>;
1947
+ style: z.ZodOptional<z.ZodEnum<["cards", "segmented"]>>;
1926
1948
  }, "strip", z.ZodTypeAny, {
1927
1949
  options: {
1928
1950
  value: string;
1929
1951
  label: string;
1952
+ hint?: string | undefined;
1930
1953
  }[];
1931
1954
  type: "radio";
1932
1955
  name: string;
1933
1956
  value?: string | undefined;
1934
1957
  label?: string | undefined;
1958
+ style?: "cards" | "segmented" | undefined;
1935
1959
  }, {
1936
1960
  options: {
1937
1961
  value: string;
1938
1962
  label: string;
1963
+ hint?: string | undefined;
1939
1964
  }[];
1940
1965
  type: "radio";
1941
1966
  name: string;
1942
1967
  value?: string | undefined;
1943
1968
  label?: string | undefined;
1969
+ style?: "cards" | "segmented" | undefined;
1944
1970
  }>, z.ZodObject<{
1945
1971
  type: z.ZodLiteral<"select">;
1946
1972
  name: z.ZodString;
@@ -1995,6 +2021,30 @@ export declare const AppPackSchema: z.ZodObject<{
1995
2021
  label: string;
1996
2022
  name: string;
1997
2023
  checked?: boolean | undefined;
2024
+ }>, z.ZodObject<{
2025
+ type: z.ZodLiteral<"location">;
2026
+ name: z.ZodString;
2027
+ label: z.ZodOptional<z.ZodString>;
2028
+ purpose: z.ZodOptional<z.ZodString>;
2029
+ required: z.ZodOptional<z.ZodBoolean>;
2030
+ precise: z.ZodOptional<z.ZodBoolean>;
2031
+ buttonText: z.ZodOptional<z.ZodString>;
2032
+ }, "strip", z.ZodTypeAny, {
2033
+ type: "location";
2034
+ name: string;
2035
+ label?: string | undefined;
2036
+ required?: boolean | undefined;
2037
+ purpose?: string | undefined;
2038
+ precise?: boolean | undefined;
2039
+ buttonText?: string | undefined;
2040
+ }, {
2041
+ type: "location";
2042
+ name: string;
2043
+ label?: string | undefined;
2044
+ required?: boolean | undefined;
2045
+ purpose?: string | undefined;
2046
+ precise?: boolean | undefined;
2047
+ buttonText?: string | undefined;
1998
2048
  }>, z.ZodObject<{
1999
2049
  type: z.ZodLiteral<"button">;
2000
2050
  action_id: z.ZodString;
@@ -2018,6 +2068,7 @@ export declare const AppPackSchema: z.ZodObject<{
2018
2068
  cancel?: string | undefined;
2019
2069
  }>>;
2020
2070
  disabled: z.ZodOptional<z.ZodBoolean>;
2071
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2021
2072
  }, "strip", z.ZodTypeAny, {
2022
2073
  type: "button";
2023
2074
  text: string;
@@ -2031,6 +2082,7 @@ export declare const AppPackSchema: z.ZodObject<{
2031
2082
  cancel?: string | undefined;
2032
2083
  } | undefined;
2033
2084
  disabled?: boolean | undefined;
2085
+ hidden_for?: string[] | undefined;
2034
2086
  }, {
2035
2087
  type: "button";
2036
2088
  text: string;
@@ -2044,6 +2096,7 @@ export declare const AppPackSchema: z.ZodObject<{
2044
2096
  cancel?: string | undefined;
2045
2097
  } | undefined;
2046
2098
  disabled?: boolean | undefined;
2099
+ hidden_for?: string[] | undefined;
2047
2100
  }>, z.ZodObject<{
2048
2101
  type: z.ZodLiteral<"linkButton">;
2049
2102
  text: z.ZodString;
@@ -2087,6 +2140,7 @@ export declare const AppPackSchema: z.ZodObject<{
2087
2140
  cancel?: string | undefined;
2088
2141
  }>>;
2089
2142
  disabled: z.ZodOptional<z.ZodBoolean>;
2143
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2090
2144
  }, "strip", z.ZodTypeAny, {
2091
2145
  type: "button";
2092
2146
  text: string;
@@ -2100,6 +2154,7 @@ export declare const AppPackSchema: z.ZodObject<{
2100
2154
  cancel?: string | undefined;
2101
2155
  } | undefined;
2102
2156
  disabled?: boolean | undefined;
2157
+ hidden_for?: string[] | undefined;
2103
2158
  }, {
2104
2159
  type: "button";
2105
2160
  text: string;
@@ -2113,6 +2168,7 @@ export declare const AppPackSchema: z.ZodObject<{
2113
2168
  cancel?: string | undefined;
2114
2169
  } | undefined;
2115
2170
  disabled?: boolean | undefined;
2171
+ hidden_for?: string[] | undefined;
2116
2172
  }>, z.ZodObject<{
2117
2173
  type: z.ZodLiteral<"linkButton">;
2118
2174
  text: z.ZodString;
@@ -2147,6 +2203,7 @@ export declare const AppPackSchema: z.ZodObject<{
2147
2203
  cancel?: string | undefined;
2148
2204
  } | undefined;
2149
2205
  disabled?: boolean | undefined;
2206
+ hidden_for?: string[] | undefined;
2150
2207
  } | {
2151
2208
  type: "linkButton";
2152
2209
  text: string;
@@ -2169,6 +2226,7 @@ export declare const AppPackSchema: z.ZodObject<{
2169
2226
  cancel?: string | undefined;
2170
2227
  } | undefined;
2171
2228
  disabled?: boolean | undefined;
2229
+ hidden_for?: string[] | undefined;
2172
2230
  } | {
2173
2231
  type: "linkButton";
2174
2232
  text: string;
@@ -2331,11 +2389,13 @@ export declare const AppPackSchema: z.ZodObject<{
2331
2389
  options: {
2332
2390
  value: string;
2333
2391
  label: string;
2392
+ hint?: string | undefined;
2334
2393
  }[];
2335
2394
  type: "radio";
2336
2395
  name: string;
2337
2396
  value?: string | undefined;
2338
2397
  label?: string | undefined;
2398
+ style?: "cards" | "segmented" | undefined;
2339
2399
  } | {
2340
2400
  options: {
2341
2401
  value: string;
@@ -2352,6 +2412,14 @@ export declare const AppPackSchema: z.ZodObject<{
2352
2412
  label: string;
2353
2413
  name: string;
2354
2414
  checked?: boolean | undefined;
2415
+ } | {
2416
+ type: "location";
2417
+ name: string;
2418
+ label?: string | undefined;
2419
+ required?: boolean | undefined;
2420
+ purpose?: string | undefined;
2421
+ precise?: boolean | undefined;
2422
+ buttonText?: string | undefined;
2355
2423
  } | {
2356
2424
  type: "button";
2357
2425
  text: string;
@@ -2365,6 +2433,7 @@ export declare const AppPackSchema: z.ZodObject<{
2365
2433
  cancel?: string | undefined;
2366
2434
  } | undefined;
2367
2435
  disabled?: boolean | undefined;
2436
+ hidden_for?: string[] | undefined;
2368
2437
  } | {
2369
2438
  type: "linkButton";
2370
2439
  text: string;
@@ -2386,6 +2455,7 @@ export declare const AppPackSchema: z.ZodObject<{
2386
2455
  cancel?: string | undefined;
2387
2456
  } | undefined;
2388
2457
  disabled?: boolean | undefined;
2458
+ hidden_for?: string[] | undefined;
2389
2459
  } | {
2390
2460
  type: "linkButton";
2391
2461
  text: string;
@@ -2413,7 +2483,6 @@ export declare const AppPackSchema: z.ZodObject<{
2413
2483
  type: "progress";
2414
2484
  value?: number | undefined;
2415
2485
  label?: string | undefined;
2416
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
2417
2486
  } | {
2418
2487
  type: "steps";
2419
2488
  items: {
@@ -2462,7 +2531,6 @@ export declare const AppPackSchema: z.ZodObject<{
2462
2531
  name: string;
2463
2532
  status?: "online" | "away" | "busy" | "offline" | undefined;
2464
2533
  initials?: string | undefined;
2465
- color?: string | undefined;
2466
2534
  src?: string | undefined;
2467
2535
  subtitle?: string | undefined;
2468
2536
  } | {
@@ -2470,7 +2538,6 @@ export declare const AppPackSchema: z.ZodObject<{
2470
2538
  people: {
2471
2539
  name: string;
2472
2540
  initials?: string | undefined;
2473
- color?: string | undefined;
2474
2541
  src?: string | undefined;
2475
2542
  }[];
2476
2543
  label?: string | undefined;
@@ -2505,7 +2572,6 @@ export declare const AppPackSchema: z.ZodObject<{
2505
2572
  type: "kanban";
2506
2573
  columns: {
2507
2574
  title: string;
2508
- id: string;
2509
2575
  cards: {
2510
2576
  title: string;
2511
2577
  id: string;
@@ -2516,6 +2582,7 @@ export declare const AppPackSchema: z.ZodObject<{
2516
2582
  } | undefined;
2517
2583
  meta?: string[] | undefined;
2518
2584
  }[];
2585
+ id: string;
2519
2586
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
2520
2587
  }[];
2521
2588
  caption?: string | undefined;
@@ -2612,11 +2679,13 @@ export declare const AppPackSchema: z.ZodObject<{
2612
2679
  options: {
2613
2680
  value: string;
2614
2681
  label: string;
2682
+ hint?: string | undefined;
2615
2683
  }[];
2616
2684
  type: "radio";
2617
2685
  name: string;
2618
2686
  value?: string | undefined;
2619
2687
  label?: string | undefined;
2688
+ style?: "cards" | "segmented" | undefined;
2620
2689
  } | {
2621
2690
  options: {
2622
2691
  value: string;
@@ -2633,6 +2702,14 @@ export declare const AppPackSchema: z.ZodObject<{
2633
2702
  label: string;
2634
2703
  name: string;
2635
2704
  checked?: boolean | undefined;
2705
+ } | {
2706
+ type: "location";
2707
+ name: string;
2708
+ label?: string | undefined;
2709
+ required?: boolean | undefined;
2710
+ purpose?: string | undefined;
2711
+ precise?: boolean | undefined;
2712
+ buttonText?: string | undefined;
2636
2713
  } | {
2637
2714
  type: "button";
2638
2715
  text: string;
@@ -2646,6 +2723,7 @@ export declare const AppPackSchema: z.ZodObject<{
2646
2723
  cancel?: string | undefined;
2647
2724
  } | undefined;
2648
2725
  disabled?: boolean | undefined;
2726
+ hidden_for?: string[] | undefined;
2649
2727
  } | {
2650
2728
  type: "linkButton";
2651
2729
  text: string;
@@ -2667,6 +2745,7 @@ export declare const AppPackSchema: z.ZodObject<{
2667
2745
  cancel?: string | undefined;
2668
2746
  } | undefined;
2669
2747
  disabled?: boolean | undefined;
2748
+ hidden_for?: string[] | undefined;
2670
2749
  } | {
2671
2750
  type: "linkButton";
2672
2751
  text: string;
@@ -2694,7 +2773,6 @@ export declare const AppPackSchema: z.ZodObject<{
2694
2773
  type: "progress";
2695
2774
  value?: number | undefined;
2696
2775
  label?: string | undefined;
2697
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
2698
2776
  } | {
2699
2777
  type: "steps";
2700
2778
  items: {
@@ -2743,7 +2821,6 @@ export declare const AppPackSchema: z.ZodObject<{
2743
2821
  name: string;
2744
2822
  status?: "online" | "away" | "busy" | "offline" | undefined;
2745
2823
  initials?: string | undefined;
2746
- color?: string | undefined;
2747
2824
  src?: string | undefined;
2748
2825
  subtitle?: string | undefined;
2749
2826
  } | {
@@ -2751,7 +2828,6 @@ export declare const AppPackSchema: z.ZodObject<{
2751
2828
  people: {
2752
2829
  name: string;
2753
2830
  initials?: string | undefined;
2754
- color?: string | undefined;
2755
2831
  src?: string | undefined;
2756
2832
  }[];
2757
2833
  label?: string | undefined;
@@ -2786,7 +2862,6 @@ export declare const AppPackSchema: z.ZodObject<{
2786
2862
  type: "kanban";
2787
2863
  columns: {
2788
2864
  title: string;
2789
- id: string;
2790
2865
  cards: {
2791
2866
  title: string;
2792
2867
  id: string;
@@ -2797,6 +2872,7 @@ export declare const AppPackSchema: z.ZodObject<{
2797
2872
  } | undefined;
2798
2873
  meta?: string[] | undefined;
2799
2874
  }[];
2875
+ id: string;
2800
2876
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
2801
2877
  }[];
2802
2878
  caption?: string | undefined;
@@ -2935,11 +3011,13 @@ export declare const AppPackSchema: z.ZodObject<{
2935
3011
  options: {
2936
3012
  value: string;
2937
3013
  label: string;
3014
+ hint?: string | undefined;
2938
3015
  }[];
2939
3016
  type: "radio";
2940
3017
  name: string;
2941
3018
  value?: string | undefined;
2942
3019
  label?: string | undefined;
3020
+ style?: "cards" | "segmented" | undefined;
2943
3021
  } | {
2944
3022
  options: {
2945
3023
  value: string;
@@ -2956,6 +3034,14 @@ export declare const AppPackSchema: z.ZodObject<{
2956
3034
  label: string;
2957
3035
  name: string;
2958
3036
  checked?: boolean | undefined;
3037
+ } | {
3038
+ type: "location";
3039
+ name: string;
3040
+ label?: string | undefined;
3041
+ required?: boolean | undefined;
3042
+ purpose?: string | undefined;
3043
+ precise?: boolean | undefined;
3044
+ buttonText?: string | undefined;
2959
3045
  } | {
2960
3046
  type: "button";
2961
3047
  text: string;
@@ -2969,6 +3055,7 @@ export declare const AppPackSchema: z.ZodObject<{
2969
3055
  cancel?: string | undefined;
2970
3056
  } | undefined;
2971
3057
  disabled?: boolean | undefined;
3058
+ hidden_for?: string[] | undefined;
2972
3059
  } | {
2973
3060
  type: "linkButton";
2974
3061
  text: string;
@@ -2990,6 +3077,7 @@ export declare const AppPackSchema: z.ZodObject<{
2990
3077
  cancel?: string | undefined;
2991
3078
  } | undefined;
2992
3079
  disabled?: boolean | undefined;
3080
+ hidden_for?: string[] | undefined;
2993
3081
  } | {
2994
3082
  type: "linkButton";
2995
3083
  text: string;
@@ -3017,7 +3105,6 @@ export declare const AppPackSchema: z.ZodObject<{
3017
3105
  type: "progress";
3018
3106
  value?: number | undefined;
3019
3107
  label?: string | undefined;
3020
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
3021
3108
  } | {
3022
3109
  type: "steps";
3023
3110
  items: {
@@ -3066,7 +3153,6 @@ export declare const AppPackSchema: z.ZodObject<{
3066
3153
  name: string;
3067
3154
  status?: "online" | "away" | "busy" | "offline" | undefined;
3068
3155
  initials?: string | undefined;
3069
- color?: string | undefined;
3070
3156
  src?: string | undefined;
3071
3157
  subtitle?: string | undefined;
3072
3158
  } | {
@@ -3074,7 +3160,6 @@ export declare const AppPackSchema: z.ZodObject<{
3074
3160
  people: {
3075
3161
  name: string;
3076
3162
  initials?: string | undefined;
3077
- color?: string | undefined;
3078
3163
  src?: string | undefined;
3079
3164
  }[];
3080
3165
  label?: string | undefined;
@@ -3109,7 +3194,6 @@ export declare const AppPackSchema: z.ZodObject<{
3109
3194
  type: "kanban";
3110
3195
  columns: {
3111
3196
  title: string;
3112
- id: string;
3113
3197
  cards: {
3114
3198
  title: string;
3115
3199
  id: string;
@@ -3120,6 +3204,7 @@ export declare const AppPackSchema: z.ZodObject<{
3120
3204
  } | undefined;
3121
3205
  meta?: string[] | undefined;
3122
3206
  }[];
3207
+ id: string;
3123
3208
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
3124
3209
  }[];
3125
3210
  caption?: string | undefined;
@@ -3232,11 +3317,13 @@ export declare const AppPackSchema: z.ZodObject<{
3232
3317
  options: {
3233
3318
  value: string;
3234
3319
  label: string;
3320
+ hint?: string | undefined;
3235
3321
  }[];
3236
3322
  type: "radio";
3237
3323
  name: string;
3238
3324
  value?: string | undefined;
3239
3325
  label?: string | undefined;
3326
+ style?: "cards" | "segmented" | undefined;
3240
3327
  } | {
3241
3328
  options: {
3242
3329
  value: string;
@@ -3253,6 +3340,14 @@ export declare const AppPackSchema: z.ZodObject<{
3253
3340
  label: string;
3254
3341
  name: string;
3255
3342
  checked?: boolean | undefined;
3343
+ } | {
3344
+ type: "location";
3345
+ name: string;
3346
+ label?: string | undefined;
3347
+ required?: boolean | undefined;
3348
+ purpose?: string | undefined;
3349
+ precise?: boolean | undefined;
3350
+ buttonText?: string | undefined;
3256
3351
  } | {
3257
3352
  type: "button";
3258
3353
  text: string;
@@ -3266,6 +3361,7 @@ export declare const AppPackSchema: z.ZodObject<{
3266
3361
  cancel?: string | undefined;
3267
3362
  } | undefined;
3268
3363
  disabled?: boolean | undefined;
3364
+ hidden_for?: string[] | undefined;
3269
3365
  } | {
3270
3366
  type: "linkButton";
3271
3367
  text: string;
@@ -3287,6 +3383,7 @@ export declare const AppPackSchema: z.ZodObject<{
3287
3383
  cancel?: string | undefined;
3288
3384
  } | undefined;
3289
3385
  disabled?: boolean | undefined;
3386
+ hidden_for?: string[] | undefined;
3290
3387
  } | {
3291
3388
  type: "linkButton";
3292
3389
  text: string;
@@ -3314,7 +3411,6 @@ export declare const AppPackSchema: z.ZodObject<{
3314
3411
  type: "progress";
3315
3412
  value?: number | undefined;
3316
3413
  label?: string | undefined;
3317
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
3318
3414
  } | {
3319
3415
  type: "steps";
3320
3416
  items: {
@@ -3363,7 +3459,6 @@ export declare const AppPackSchema: z.ZodObject<{
3363
3459
  name: string;
3364
3460
  status?: "online" | "away" | "busy" | "offline" | undefined;
3365
3461
  initials?: string | undefined;
3366
- color?: string | undefined;
3367
3462
  src?: string | undefined;
3368
3463
  subtitle?: string | undefined;
3369
3464
  } | {
@@ -3371,7 +3466,6 @@ export declare const AppPackSchema: z.ZodObject<{
3371
3466
  people: {
3372
3467
  name: string;
3373
3468
  initials?: string | undefined;
3374
- color?: string | undefined;
3375
3469
  src?: string | undefined;
3376
3470
  }[];
3377
3471
  label?: string | undefined;
@@ -3406,7 +3500,6 @@ export declare const AppPackSchema: z.ZodObject<{
3406
3500
  type: "kanban";
3407
3501
  columns: {
3408
3502
  title: string;
3409
- id: string;
3410
3503
  cards: {
3411
3504
  title: string;
3412
3505
  id: string;
@@ -3417,6 +3510,7 @@ export declare const AppPackSchema: z.ZodObject<{
3417
3510
  } | undefined;
3418
3511
  meta?: string[] | undefined;
3419
3512
  }[];
3513
+ id: string;
3420
3514
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
3421
3515
  }[];
3422
3516
  caption?: string | undefined;
@@ -3534,11 +3628,13 @@ export declare const AppPackSchema: z.ZodObject<{
3534
3628
  options: {
3535
3629
  value: string;
3536
3630
  label: string;
3631
+ hint?: string | undefined;
3537
3632
  }[];
3538
3633
  type: "radio";
3539
3634
  name: string;
3540
3635
  value?: string | undefined;
3541
3636
  label?: string | undefined;
3637
+ style?: "cards" | "segmented" | undefined;
3542
3638
  } | {
3543
3639
  options: {
3544
3640
  value: string;
@@ -3555,6 +3651,14 @@ export declare const AppPackSchema: z.ZodObject<{
3555
3651
  label: string;
3556
3652
  name: string;
3557
3653
  checked?: boolean | undefined;
3654
+ } | {
3655
+ type: "location";
3656
+ name: string;
3657
+ label?: string | undefined;
3658
+ required?: boolean | undefined;
3659
+ purpose?: string | undefined;
3660
+ precise?: boolean | undefined;
3661
+ buttonText?: string | undefined;
3558
3662
  } | {
3559
3663
  type: "button";
3560
3664
  text: string;
@@ -3568,6 +3672,7 @@ export declare const AppPackSchema: z.ZodObject<{
3568
3672
  cancel?: string | undefined;
3569
3673
  } | undefined;
3570
3674
  disabled?: boolean | undefined;
3675
+ hidden_for?: string[] | undefined;
3571
3676
  } | {
3572
3677
  type: "linkButton";
3573
3678
  text: string;
@@ -3589,6 +3694,7 @@ export declare const AppPackSchema: z.ZodObject<{
3589
3694
  cancel?: string | undefined;
3590
3695
  } | undefined;
3591
3696
  disabled?: boolean | undefined;
3697
+ hidden_for?: string[] | undefined;
3592
3698
  } | {
3593
3699
  type: "linkButton";
3594
3700
  text: string;
@@ -3616,7 +3722,6 @@ export declare const AppPackSchema: z.ZodObject<{
3616
3722
  type: "progress";
3617
3723
  value?: number | undefined;
3618
3724
  label?: string | undefined;
3619
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
3620
3725
  } | {
3621
3726
  type: "steps";
3622
3727
  items: {
@@ -3665,7 +3770,6 @@ export declare const AppPackSchema: z.ZodObject<{
3665
3770
  name: string;
3666
3771
  status?: "online" | "away" | "busy" | "offline" | undefined;
3667
3772
  initials?: string | undefined;
3668
- color?: string | undefined;
3669
3773
  src?: string | undefined;
3670
3774
  subtitle?: string | undefined;
3671
3775
  } | {
@@ -3673,7 +3777,6 @@ export declare const AppPackSchema: z.ZodObject<{
3673
3777
  people: {
3674
3778
  name: string;
3675
3779
  initials?: string | undefined;
3676
- color?: string | undefined;
3677
3780
  src?: string | undefined;
3678
3781
  }[];
3679
3782
  label?: string | undefined;
@@ -3708,7 +3811,6 @@ export declare const AppPackSchema: z.ZodObject<{
3708
3811
  type: "kanban";
3709
3812
  columns: {
3710
3813
  title: string;
3711
- id: string;
3712
3814
  cards: {
3713
3815
  title: string;
3714
3816
  id: string;
@@ -3719,6 +3821,7 @@ export declare const AppPackSchema: z.ZodObject<{
3719
3821
  } | undefined;
3720
3822
  meta?: string[] | undefined;
3721
3823
  }[];
3824
+ id: string;
3722
3825
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
3723
3826
  }[];
3724
3827
  caption?: string | undefined;
@@ -3815,11 +3918,13 @@ export declare const AppPackSchema: z.ZodObject<{
3815
3918
  options: {
3816
3919
  value: string;
3817
3920
  label: string;
3921
+ hint?: string | undefined;
3818
3922
  }[];
3819
3923
  type: "radio";
3820
3924
  name: string;
3821
3925
  value?: string | undefined;
3822
3926
  label?: string | undefined;
3927
+ style?: "cards" | "segmented" | undefined;
3823
3928
  } | {
3824
3929
  options: {
3825
3930
  value: string;
@@ -3836,6 +3941,14 @@ export declare const AppPackSchema: z.ZodObject<{
3836
3941
  label: string;
3837
3942
  name: string;
3838
3943
  checked?: boolean | undefined;
3944
+ } | {
3945
+ type: "location";
3946
+ name: string;
3947
+ label?: string | undefined;
3948
+ required?: boolean | undefined;
3949
+ purpose?: string | undefined;
3950
+ precise?: boolean | undefined;
3951
+ buttonText?: string | undefined;
3839
3952
  } | {
3840
3953
  type: "button";
3841
3954
  text: string;
@@ -3849,6 +3962,7 @@ export declare const AppPackSchema: z.ZodObject<{
3849
3962
  cancel?: string | undefined;
3850
3963
  } | undefined;
3851
3964
  disabled?: boolean | undefined;
3965
+ hidden_for?: string[] | undefined;
3852
3966
  } | {
3853
3967
  type: "linkButton";
3854
3968
  text: string;
@@ -3870,6 +3984,7 @@ export declare const AppPackSchema: z.ZodObject<{
3870
3984
  cancel?: string | undefined;
3871
3985
  } | undefined;
3872
3986
  disabled?: boolean | undefined;
3987
+ hidden_for?: string[] | undefined;
3873
3988
  } | {
3874
3989
  type: "linkButton";
3875
3990
  text: string;
@@ -3897,7 +4012,6 @@ export declare const AppPackSchema: z.ZodObject<{
3897
4012
  type: "progress";
3898
4013
  value?: number | undefined;
3899
4014
  label?: string | undefined;
3900
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
3901
4015
  } | {
3902
4016
  type: "steps";
3903
4017
  items: {
@@ -3946,7 +4060,6 @@ export declare const AppPackSchema: z.ZodObject<{
3946
4060
  name: string;
3947
4061
  status?: "online" | "away" | "busy" | "offline" | undefined;
3948
4062
  initials?: string | undefined;
3949
- color?: string | undefined;
3950
4063
  src?: string | undefined;
3951
4064
  subtitle?: string | undefined;
3952
4065
  } | {
@@ -3954,7 +4067,6 @@ export declare const AppPackSchema: z.ZodObject<{
3954
4067
  people: {
3955
4068
  name: string;
3956
4069
  initials?: string | undefined;
3957
- color?: string | undefined;
3958
4070
  src?: string | undefined;
3959
4071
  }[];
3960
4072
  label?: string | undefined;
@@ -3989,7 +4101,6 @@ export declare const AppPackSchema: z.ZodObject<{
3989
4101
  type: "kanban";
3990
4102
  columns: {
3991
4103
  title: string;
3992
- id: string;
3993
4104
  cards: {
3994
4105
  title: string;
3995
4106
  id: string;
@@ -4000,6 +4111,7 @@ export declare const AppPackSchema: z.ZodObject<{
4000
4111
  } | undefined;
4001
4112
  meta?: string[] | undefined;
4002
4113
  }[];
4114
+ id: string;
4003
4115
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
4004
4116
  }[];
4005
4117
  caption?: string | undefined;
@@ -4102,11 +4214,13 @@ export declare const AppPackSchema: z.ZodObject<{
4102
4214
  options: {
4103
4215
  value: string;
4104
4216
  label: string;
4217
+ hint?: string | undefined;
4105
4218
  }[];
4106
4219
  type: "radio";
4107
4220
  name: string;
4108
4221
  value?: string | undefined;
4109
4222
  label?: string | undefined;
4223
+ style?: "cards" | "segmented" | undefined;
4110
4224
  } | {
4111
4225
  options: {
4112
4226
  value: string;
@@ -4123,6 +4237,14 @@ export declare const AppPackSchema: z.ZodObject<{
4123
4237
  label: string;
4124
4238
  name: string;
4125
4239
  checked?: boolean | undefined;
4240
+ } | {
4241
+ type: "location";
4242
+ name: string;
4243
+ label?: string | undefined;
4244
+ required?: boolean | undefined;
4245
+ purpose?: string | undefined;
4246
+ precise?: boolean | undefined;
4247
+ buttonText?: string | undefined;
4126
4248
  } | {
4127
4249
  type: "button";
4128
4250
  text: string;
@@ -4136,6 +4258,7 @@ export declare const AppPackSchema: z.ZodObject<{
4136
4258
  cancel?: string | undefined;
4137
4259
  } | undefined;
4138
4260
  disabled?: boolean | undefined;
4261
+ hidden_for?: string[] | undefined;
4139
4262
  } | {
4140
4263
  type: "linkButton";
4141
4264
  text: string;
@@ -4157,6 +4280,7 @@ export declare const AppPackSchema: z.ZodObject<{
4157
4280
  cancel?: string | undefined;
4158
4281
  } | undefined;
4159
4282
  disabled?: boolean | undefined;
4283
+ hidden_for?: string[] | undefined;
4160
4284
  } | {
4161
4285
  type: "linkButton";
4162
4286
  text: string;
@@ -4184,7 +4308,6 @@ export declare const AppPackSchema: z.ZodObject<{
4184
4308
  type: "progress";
4185
4309
  value?: number | undefined;
4186
4310
  label?: string | undefined;
4187
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
4188
4311
  } | {
4189
4312
  type: "steps";
4190
4313
  items: {
@@ -4233,7 +4356,6 @@ export declare const AppPackSchema: z.ZodObject<{
4233
4356
  name: string;
4234
4357
  status?: "online" | "away" | "busy" | "offline" | undefined;
4235
4358
  initials?: string | undefined;
4236
- color?: string | undefined;
4237
4359
  src?: string | undefined;
4238
4360
  subtitle?: string | undefined;
4239
4361
  } | {
@@ -4241,7 +4363,6 @@ export declare const AppPackSchema: z.ZodObject<{
4241
4363
  people: {
4242
4364
  name: string;
4243
4365
  initials?: string | undefined;
4244
- color?: string | undefined;
4245
4366
  src?: string | undefined;
4246
4367
  }[];
4247
4368
  label?: string | undefined;
@@ -4276,7 +4397,6 @@ export declare const AppPackSchema: z.ZodObject<{
4276
4397
  type: "kanban";
4277
4398
  columns: {
4278
4399
  title: string;
4279
- id: string;
4280
4400
  cards: {
4281
4401
  title: string;
4282
4402
  id: string;
@@ -4287,6 +4407,7 @@ export declare const AppPackSchema: z.ZodObject<{
4287
4407
  } | undefined;
4288
4408
  meta?: string[] | undefined;
4289
4409
  }[];
4410
+ id: string;
4290
4411
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
4291
4412
  }[];
4292
4413
  caption?: string | undefined;
@@ -4399,11 +4520,13 @@ export declare const AppPackSchema: z.ZodObject<{
4399
4520
  options: {
4400
4521
  value: string;
4401
4522
  label: string;
4523
+ hint?: string | undefined;
4402
4524
  }[];
4403
4525
  type: "radio";
4404
4526
  name: string;
4405
4527
  value?: string | undefined;
4406
4528
  label?: string | undefined;
4529
+ style?: "cards" | "segmented" | undefined;
4407
4530
  } | {
4408
4531
  options: {
4409
4532
  value: string;
@@ -4420,6 +4543,14 @@ export declare const AppPackSchema: z.ZodObject<{
4420
4543
  label: string;
4421
4544
  name: string;
4422
4545
  checked?: boolean | undefined;
4546
+ } | {
4547
+ type: "location";
4548
+ name: string;
4549
+ label?: string | undefined;
4550
+ required?: boolean | undefined;
4551
+ purpose?: string | undefined;
4552
+ precise?: boolean | undefined;
4553
+ buttonText?: string | undefined;
4423
4554
  } | {
4424
4555
  type: "button";
4425
4556
  text: string;
@@ -4433,6 +4564,7 @@ export declare const AppPackSchema: z.ZodObject<{
4433
4564
  cancel?: string | undefined;
4434
4565
  } | undefined;
4435
4566
  disabled?: boolean | undefined;
4567
+ hidden_for?: string[] | undefined;
4436
4568
  } | {
4437
4569
  type: "linkButton";
4438
4570
  text: string;
@@ -4454,6 +4586,7 @@ export declare const AppPackSchema: z.ZodObject<{
4454
4586
  cancel?: string | undefined;
4455
4587
  } | undefined;
4456
4588
  disabled?: boolean | undefined;
4589
+ hidden_for?: string[] | undefined;
4457
4590
  } | {
4458
4591
  type: "linkButton";
4459
4592
  text: string;
@@ -4481,7 +4614,6 @@ export declare const AppPackSchema: z.ZodObject<{
4481
4614
  type: "progress";
4482
4615
  value?: number | undefined;
4483
4616
  label?: string | undefined;
4484
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
4485
4617
  } | {
4486
4618
  type: "steps";
4487
4619
  items: {
@@ -4530,7 +4662,6 @@ export declare const AppPackSchema: z.ZodObject<{
4530
4662
  name: string;
4531
4663
  status?: "online" | "away" | "busy" | "offline" | undefined;
4532
4664
  initials?: string | undefined;
4533
- color?: string | undefined;
4534
4665
  src?: string | undefined;
4535
4666
  subtitle?: string | undefined;
4536
4667
  } | {
@@ -4538,7 +4669,6 @@ export declare const AppPackSchema: z.ZodObject<{
4538
4669
  people: {
4539
4670
  name: string;
4540
4671
  initials?: string | undefined;
4541
- color?: string | undefined;
4542
4672
  src?: string | undefined;
4543
4673
  }[];
4544
4674
  label?: string | undefined;
@@ -4573,7 +4703,6 @@ export declare const AppPackSchema: z.ZodObject<{
4573
4703
  type: "kanban";
4574
4704
  columns: {
4575
4705
  title: string;
4576
- id: string;
4577
4706
  cards: {
4578
4707
  title: string;
4579
4708
  id: string;
@@ -4584,6 +4713,7 @@ export declare const AppPackSchema: z.ZodObject<{
4584
4713
  } | undefined;
4585
4714
  meta?: string[] | undefined;
4586
4715
  }[];
4716
+ id: string;
4587
4717
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
4588
4718
  }[];
4589
4719
  caption?: string | undefined;
@@ -4704,11 +4834,13 @@ export declare const AppPackSchema: z.ZodObject<{
4704
4834
  options: {
4705
4835
  value: string;
4706
4836
  label: string;
4837
+ hint?: string | undefined;
4707
4838
  }[];
4708
4839
  type: "radio";
4709
4840
  name: string;
4710
4841
  value?: string | undefined;
4711
4842
  label?: string | undefined;
4843
+ style?: "cards" | "segmented" | undefined;
4712
4844
  } | {
4713
4845
  options: {
4714
4846
  value: string;
@@ -4725,6 +4857,14 @@ export declare const AppPackSchema: z.ZodObject<{
4725
4857
  label: string;
4726
4858
  name: string;
4727
4859
  checked?: boolean | undefined;
4860
+ } | {
4861
+ type: "location";
4862
+ name: string;
4863
+ label?: string | undefined;
4864
+ required?: boolean | undefined;
4865
+ purpose?: string | undefined;
4866
+ precise?: boolean | undefined;
4867
+ buttonText?: string | undefined;
4728
4868
  } | {
4729
4869
  type: "button";
4730
4870
  text: string;
@@ -4738,6 +4878,7 @@ export declare const AppPackSchema: z.ZodObject<{
4738
4878
  cancel?: string | undefined;
4739
4879
  } | undefined;
4740
4880
  disabled?: boolean | undefined;
4881
+ hidden_for?: string[] | undefined;
4741
4882
  } | {
4742
4883
  type: "linkButton";
4743
4884
  text: string;
@@ -4759,6 +4900,7 @@ export declare const AppPackSchema: z.ZodObject<{
4759
4900
  cancel?: string | undefined;
4760
4901
  } | undefined;
4761
4902
  disabled?: boolean | undefined;
4903
+ hidden_for?: string[] | undefined;
4762
4904
  } | {
4763
4905
  type: "linkButton";
4764
4906
  text: string;
@@ -4786,7 +4928,6 @@ export declare const AppPackSchema: z.ZodObject<{
4786
4928
  type: "progress";
4787
4929
  value?: number | undefined;
4788
4930
  label?: string | undefined;
4789
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
4790
4931
  } | {
4791
4932
  type: "steps";
4792
4933
  items: {
@@ -4835,7 +4976,6 @@ export declare const AppPackSchema: z.ZodObject<{
4835
4976
  name: string;
4836
4977
  status?: "online" | "away" | "busy" | "offline" | undefined;
4837
4978
  initials?: string | undefined;
4838
- color?: string | undefined;
4839
4979
  src?: string | undefined;
4840
4980
  subtitle?: string | undefined;
4841
4981
  } | {
@@ -4843,7 +4983,6 @@ export declare const AppPackSchema: z.ZodObject<{
4843
4983
  people: {
4844
4984
  name: string;
4845
4985
  initials?: string | undefined;
4846
- color?: string | undefined;
4847
4986
  src?: string | undefined;
4848
4987
  }[];
4849
4988
  label?: string | undefined;
@@ -4878,7 +5017,6 @@ export declare const AppPackSchema: z.ZodObject<{
4878
5017
  type: "kanban";
4879
5018
  columns: {
4880
5019
  title: string;
4881
- id: string;
4882
5020
  cards: {
4883
5021
  title: string;
4884
5022
  id: string;
@@ -4889,6 +5027,7 @@ export declare const AppPackSchema: z.ZodObject<{
4889
5027
  } | undefined;
4890
5028
  meta?: string[] | undefined;
4891
5029
  }[];
5030
+ id: string;
4892
5031
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
4893
5032
  }[];
4894
5033
  caption?: string | undefined;
@@ -4985,11 +5124,13 @@ export declare const AppPackSchema: z.ZodObject<{
4985
5124
  options: {
4986
5125
  value: string;
4987
5126
  label: string;
5127
+ hint?: string | undefined;
4988
5128
  }[];
4989
5129
  type: "radio";
4990
5130
  name: string;
4991
5131
  value?: string | undefined;
4992
5132
  label?: string | undefined;
5133
+ style?: "cards" | "segmented" | undefined;
4993
5134
  } | {
4994
5135
  options: {
4995
5136
  value: string;
@@ -5006,6 +5147,14 @@ export declare const AppPackSchema: z.ZodObject<{
5006
5147
  label: string;
5007
5148
  name: string;
5008
5149
  checked?: boolean | undefined;
5150
+ } | {
5151
+ type: "location";
5152
+ name: string;
5153
+ label?: string | undefined;
5154
+ required?: boolean | undefined;
5155
+ purpose?: string | undefined;
5156
+ precise?: boolean | undefined;
5157
+ buttonText?: string | undefined;
5009
5158
  } | {
5010
5159
  type: "button";
5011
5160
  text: string;
@@ -5019,6 +5168,7 @@ export declare const AppPackSchema: z.ZodObject<{
5019
5168
  cancel?: string | undefined;
5020
5169
  } | undefined;
5021
5170
  disabled?: boolean | undefined;
5171
+ hidden_for?: string[] | undefined;
5022
5172
  } | {
5023
5173
  type: "linkButton";
5024
5174
  text: string;
@@ -5040,6 +5190,7 @@ export declare const AppPackSchema: z.ZodObject<{
5040
5190
  cancel?: string | undefined;
5041
5191
  } | undefined;
5042
5192
  disabled?: boolean | undefined;
5193
+ hidden_for?: string[] | undefined;
5043
5194
  } | {
5044
5195
  type: "linkButton";
5045
5196
  text: string;
@@ -5067,7 +5218,6 @@ export declare const AppPackSchema: z.ZodObject<{
5067
5218
  type: "progress";
5068
5219
  value?: number | undefined;
5069
5220
  label?: string | undefined;
5070
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
5071
5221
  } | {
5072
5222
  type: "steps";
5073
5223
  items: {
@@ -5116,7 +5266,6 @@ export declare const AppPackSchema: z.ZodObject<{
5116
5266
  name: string;
5117
5267
  status?: "online" | "away" | "busy" | "offline" | undefined;
5118
5268
  initials?: string | undefined;
5119
- color?: string | undefined;
5120
5269
  src?: string | undefined;
5121
5270
  subtitle?: string | undefined;
5122
5271
  } | {
@@ -5124,7 +5273,6 @@ export declare const AppPackSchema: z.ZodObject<{
5124
5273
  people: {
5125
5274
  name: string;
5126
5275
  initials?: string | undefined;
5127
- color?: string | undefined;
5128
5276
  src?: string | undefined;
5129
5277
  }[];
5130
5278
  label?: string | undefined;
@@ -5159,7 +5307,6 @@ export declare const AppPackSchema: z.ZodObject<{
5159
5307
  type: "kanban";
5160
5308
  columns: {
5161
5309
  title: string;
5162
- id: string;
5163
5310
  cards: {
5164
5311
  title: string;
5165
5312
  id: string;
@@ -5170,6 +5317,7 @@ export declare const AppPackSchema: z.ZodObject<{
5170
5317
  } | undefined;
5171
5318
  meta?: string[] | undefined;
5172
5319
  }[];
5320
+ id: string;
5173
5321
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
5174
5322
  }[];
5175
5323
  caption?: string | undefined;
@@ -5307,11 +5455,13 @@ export declare const AppPackSchema: z.ZodObject<{
5307
5455
  options: {
5308
5456
  value: string;
5309
5457
  label: string;
5458
+ hint?: string | undefined;
5310
5459
  }[];
5311
5460
  type: "radio";
5312
5461
  name: string;
5313
5462
  value?: string | undefined;
5314
5463
  label?: string | undefined;
5464
+ style?: "cards" | "segmented" | undefined;
5315
5465
  } | {
5316
5466
  options: {
5317
5467
  value: string;
@@ -5328,6 +5478,14 @@ export declare const AppPackSchema: z.ZodObject<{
5328
5478
  label: string;
5329
5479
  name: string;
5330
5480
  checked?: boolean | undefined;
5481
+ } | {
5482
+ type: "location";
5483
+ name: string;
5484
+ label?: string | undefined;
5485
+ required?: boolean | undefined;
5486
+ purpose?: string | undefined;
5487
+ precise?: boolean | undefined;
5488
+ buttonText?: string | undefined;
5331
5489
  } | {
5332
5490
  type: "button";
5333
5491
  text: string;
@@ -5341,6 +5499,7 @@ export declare const AppPackSchema: z.ZodObject<{
5341
5499
  cancel?: string | undefined;
5342
5500
  } | undefined;
5343
5501
  disabled?: boolean | undefined;
5502
+ hidden_for?: string[] | undefined;
5344
5503
  } | {
5345
5504
  type: "linkButton";
5346
5505
  text: string;
@@ -5362,6 +5521,7 @@ export declare const AppPackSchema: z.ZodObject<{
5362
5521
  cancel?: string | undefined;
5363
5522
  } | undefined;
5364
5523
  disabled?: boolean | undefined;
5524
+ hidden_for?: string[] | undefined;
5365
5525
  } | {
5366
5526
  type: "linkButton";
5367
5527
  text: string;
@@ -5389,7 +5549,6 @@ export declare const AppPackSchema: z.ZodObject<{
5389
5549
  type: "progress";
5390
5550
  value?: number | undefined;
5391
5551
  label?: string | undefined;
5392
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
5393
5552
  } | {
5394
5553
  type: "steps";
5395
5554
  items: {
@@ -5438,7 +5597,6 @@ export declare const AppPackSchema: z.ZodObject<{
5438
5597
  name: string;
5439
5598
  status?: "online" | "away" | "busy" | "offline" | undefined;
5440
5599
  initials?: string | undefined;
5441
- color?: string | undefined;
5442
5600
  src?: string | undefined;
5443
5601
  subtitle?: string | undefined;
5444
5602
  } | {
@@ -5446,7 +5604,6 @@ export declare const AppPackSchema: z.ZodObject<{
5446
5604
  people: {
5447
5605
  name: string;
5448
5606
  initials?: string | undefined;
5449
- color?: string | undefined;
5450
5607
  src?: string | undefined;
5451
5608
  }[];
5452
5609
  label?: string | undefined;
@@ -5481,7 +5638,6 @@ export declare const AppPackSchema: z.ZodObject<{
5481
5638
  type: "kanban";
5482
5639
  columns: {
5483
5640
  title: string;
5484
- id: string;
5485
5641
  cards: {
5486
5642
  title: string;
5487
5643
  id: string;
@@ -5492,6 +5648,7 @@ export declare const AppPackSchema: z.ZodObject<{
5492
5648
  } | undefined;
5493
5649
  meta?: string[] | undefined;
5494
5650
  }[];
5651
+ id: string;
5495
5652
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
5496
5653
  }[];
5497
5654
  caption?: string | undefined;
@@ -5604,11 +5761,13 @@ export declare const AppPackSchema: z.ZodObject<{
5604
5761
  options: {
5605
5762
  value: string;
5606
5763
  label: string;
5764
+ hint?: string | undefined;
5607
5765
  }[];
5608
5766
  type: "radio";
5609
5767
  name: string;
5610
5768
  value?: string | undefined;
5611
5769
  label?: string | undefined;
5770
+ style?: "cards" | "segmented" | undefined;
5612
5771
  } | {
5613
5772
  options: {
5614
5773
  value: string;
@@ -5625,6 +5784,14 @@ export declare const AppPackSchema: z.ZodObject<{
5625
5784
  label: string;
5626
5785
  name: string;
5627
5786
  checked?: boolean | undefined;
5787
+ } | {
5788
+ type: "location";
5789
+ name: string;
5790
+ label?: string | undefined;
5791
+ required?: boolean | undefined;
5792
+ purpose?: string | undefined;
5793
+ precise?: boolean | undefined;
5794
+ buttonText?: string | undefined;
5628
5795
  } | {
5629
5796
  type: "button";
5630
5797
  text: string;
@@ -5638,6 +5805,7 @@ export declare const AppPackSchema: z.ZodObject<{
5638
5805
  cancel?: string | undefined;
5639
5806
  } | undefined;
5640
5807
  disabled?: boolean | undefined;
5808
+ hidden_for?: string[] | undefined;
5641
5809
  } | {
5642
5810
  type: "linkButton";
5643
5811
  text: string;
@@ -5659,6 +5827,7 @@ export declare const AppPackSchema: z.ZodObject<{
5659
5827
  cancel?: string | undefined;
5660
5828
  } | undefined;
5661
5829
  disabled?: boolean | undefined;
5830
+ hidden_for?: string[] | undefined;
5662
5831
  } | {
5663
5832
  type: "linkButton";
5664
5833
  text: string;
@@ -5686,7 +5855,6 @@ export declare const AppPackSchema: z.ZodObject<{
5686
5855
  type: "progress";
5687
5856
  value?: number | undefined;
5688
5857
  label?: string | undefined;
5689
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
5690
5858
  } | {
5691
5859
  type: "steps";
5692
5860
  items: {
@@ -5735,7 +5903,6 @@ export declare const AppPackSchema: z.ZodObject<{
5735
5903
  name: string;
5736
5904
  status?: "online" | "away" | "busy" | "offline" | undefined;
5737
5905
  initials?: string | undefined;
5738
- color?: string | undefined;
5739
5906
  src?: string | undefined;
5740
5907
  subtitle?: string | undefined;
5741
5908
  } | {
@@ -5743,7 +5910,6 @@ export declare const AppPackSchema: z.ZodObject<{
5743
5910
  people: {
5744
5911
  name: string;
5745
5912
  initials?: string | undefined;
5746
- color?: string | undefined;
5747
5913
  src?: string | undefined;
5748
5914
  }[];
5749
5915
  label?: string | undefined;
@@ -5778,7 +5944,6 @@ export declare const AppPackSchema: z.ZodObject<{
5778
5944
  type: "kanban";
5779
5945
  columns: {
5780
5946
  title: string;
5781
- id: string;
5782
5947
  cards: {
5783
5948
  title: string;
5784
5949
  id: string;
@@ -5789,6 +5954,7 @@ export declare const AppPackSchema: z.ZodObject<{
5789
5954
  } | undefined;
5790
5955
  meta?: string[] | undefined;
5791
5956
  }[];
5957
+ id: string;
5792
5958
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
5793
5959
  }[];
5794
5960
  caption?: string | undefined;
@@ -5947,11 +6113,13 @@ export declare const AppPackSchema: z.ZodObject<{
5947
6113
  options: {
5948
6114
  value: string;
5949
6115
  label: string;
6116
+ hint?: string | undefined;
5950
6117
  }[];
5951
6118
  type: "radio";
5952
6119
  name: string;
5953
6120
  value?: string | undefined;
5954
6121
  label?: string | undefined;
6122
+ style?: "cards" | "segmented" | undefined;
5955
6123
  } | {
5956
6124
  options: {
5957
6125
  value: string;
@@ -5968,6 +6136,14 @@ export declare const AppPackSchema: z.ZodObject<{
5968
6136
  label: string;
5969
6137
  name: string;
5970
6138
  checked?: boolean | undefined;
6139
+ } | {
6140
+ type: "location";
6141
+ name: string;
6142
+ label?: string | undefined;
6143
+ required?: boolean | undefined;
6144
+ purpose?: string | undefined;
6145
+ precise?: boolean | undefined;
6146
+ buttonText?: string | undefined;
5971
6147
  } | {
5972
6148
  type: "button";
5973
6149
  text: string;
@@ -5981,6 +6157,7 @@ export declare const AppPackSchema: z.ZodObject<{
5981
6157
  cancel?: string | undefined;
5982
6158
  } | undefined;
5983
6159
  disabled?: boolean | undefined;
6160
+ hidden_for?: string[] | undefined;
5984
6161
  } | {
5985
6162
  type: "linkButton";
5986
6163
  text: string;
@@ -6002,6 +6179,7 @@ export declare const AppPackSchema: z.ZodObject<{
6002
6179
  cancel?: string | undefined;
6003
6180
  } | undefined;
6004
6181
  disabled?: boolean | undefined;
6182
+ hidden_for?: string[] | undefined;
6005
6183
  } | {
6006
6184
  type: "linkButton";
6007
6185
  text: string;
@@ -6029,7 +6207,6 @@ export declare const AppPackSchema: z.ZodObject<{
6029
6207
  type: "progress";
6030
6208
  value?: number | undefined;
6031
6209
  label?: string | undefined;
6032
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
6033
6210
  } | {
6034
6211
  type: "steps";
6035
6212
  items: {
@@ -6078,7 +6255,6 @@ export declare const AppPackSchema: z.ZodObject<{
6078
6255
  name: string;
6079
6256
  status?: "online" | "away" | "busy" | "offline" | undefined;
6080
6257
  initials?: string | undefined;
6081
- color?: string | undefined;
6082
6258
  src?: string | undefined;
6083
6259
  subtitle?: string | undefined;
6084
6260
  } | {
@@ -6086,7 +6262,6 @@ export declare const AppPackSchema: z.ZodObject<{
6086
6262
  people: {
6087
6263
  name: string;
6088
6264
  initials?: string | undefined;
6089
- color?: string | undefined;
6090
6265
  src?: string | undefined;
6091
6266
  }[];
6092
6267
  label?: string | undefined;
@@ -6121,7 +6296,6 @@ export declare const AppPackSchema: z.ZodObject<{
6121
6296
  type: "kanban";
6122
6297
  columns: {
6123
6298
  title: string;
6124
- id: string;
6125
6299
  cards: {
6126
6300
  title: string;
6127
6301
  id: string;
@@ -6132,6 +6306,7 @@ export declare const AppPackSchema: z.ZodObject<{
6132
6306
  } | undefined;
6133
6307
  meta?: string[] | undefined;
6134
6308
  }[];
6309
+ id: string;
6135
6310
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
6136
6311
  }[];
6137
6312
  caption?: string | undefined;
@@ -6228,11 +6403,13 @@ export declare const AppPackSchema: z.ZodObject<{
6228
6403
  options: {
6229
6404
  value: string;
6230
6405
  label: string;
6406
+ hint?: string | undefined;
6231
6407
  }[];
6232
6408
  type: "radio";
6233
6409
  name: string;
6234
6410
  value?: string | undefined;
6235
6411
  label?: string | undefined;
6412
+ style?: "cards" | "segmented" | undefined;
6236
6413
  } | {
6237
6414
  options: {
6238
6415
  value: string;
@@ -6249,6 +6426,14 @@ export declare const AppPackSchema: z.ZodObject<{
6249
6426
  label: string;
6250
6427
  name: string;
6251
6428
  checked?: boolean | undefined;
6429
+ } | {
6430
+ type: "location";
6431
+ name: string;
6432
+ label?: string | undefined;
6433
+ required?: boolean | undefined;
6434
+ purpose?: string | undefined;
6435
+ precise?: boolean | undefined;
6436
+ buttonText?: string | undefined;
6252
6437
  } | {
6253
6438
  type: "button";
6254
6439
  text: string;
@@ -6262,6 +6447,7 @@ export declare const AppPackSchema: z.ZodObject<{
6262
6447
  cancel?: string | undefined;
6263
6448
  } | undefined;
6264
6449
  disabled?: boolean | undefined;
6450
+ hidden_for?: string[] | undefined;
6265
6451
  } | {
6266
6452
  type: "linkButton";
6267
6453
  text: string;
@@ -6283,6 +6469,7 @@ export declare const AppPackSchema: z.ZodObject<{
6283
6469
  cancel?: string | undefined;
6284
6470
  } | undefined;
6285
6471
  disabled?: boolean | undefined;
6472
+ hidden_for?: string[] | undefined;
6286
6473
  } | {
6287
6474
  type: "linkButton";
6288
6475
  text: string;
@@ -6310,7 +6497,6 @@ export declare const AppPackSchema: z.ZodObject<{
6310
6497
  type: "progress";
6311
6498
  value?: number | undefined;
6312
6499
  label?: string | undefined;
6313
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
6314
6500
  } | {
6315
6501
  type: "steps";
6316
6502
  items: {
@@ -6359,7 +6545,6 @@ export declare const AppPackSchema: z.ZodObject<{
6359
6545
  name: string;
6360
6546
  status?: "online" | "away" | "busy" | "offline" | undefined;
6361
6547
  initials?: string | undefined;
6362
- color?: string | undefined;
6363
6548
  src?: string | undefined;
6364
6549
  subtitle?: string | undefined;
6365
6550
  } | {
@@ -6367,7 +6552,6 @@ export declare const AppPackSchema: z.ZodObject<{
6367
6552
  people: {
6368
6553
  name: string;
6369
6554
  initials?: string | undefined;
6370
- color?: string | undefined;
6371
6555
  src?: string | undefined;
6372
6556
  }[];
6373
6557
  label?: string | undefined;
@@ -6402,7 +6586,6 @@ export declare const AppPackSchema: z.ZodObject<{
6402
6586
  type: "kanban";
6403
6587
  columns: {
6404
6588
  title: string;
6405
- id: string;
6406
6589
  cards: {
6407
6590
  title: string;
6408
6591
  id: string;
@@ -6413,6 +6596,7 @@ export declare const AppPackSchema: z.ZodObject<{
6413
6596
  } | undefined;
6414
6597
  meta?: string[] | undefined;
6415
6598
  }[];
6599
+ id: string;
6416
6600
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
6417
6601
  }[];
6418
6602
  caption?: string | undefined;
@@ -6555,11 +6739,13 @@ export declare const AppPackSchema: z.ZodObject<{
6555
6739
  options: {
6556
6740
  value: string;
6557
6741
  label: string;
6742
+ hint?: string | undefined;
6558
6743
  }[];
6559
6744
  type: "radio";
6560
6745
  name: string;
6561
6746
  value?: string | undefined;
6562
6747
  label?: string | undefined;
6748
+ style?: "cards" | "segmented" | undefined;
6563
6749
  } | {
6564
6750
  options: {
6565
6751
  value: string;
@@ -6576,6 +6762,14 @@ export declare const AppPackSchema: z.ZodObject<{
6576
6762
  label: string;
6577
6763
  name: string;
6578
6764
  checked?: boolean | undefined;
6765
+ } | {
6766
+ type: "location";
6767
+ name: string;
6768
+ label?: string | undefined;
6769
+ required?: boolean | undefined;
6770
+ purpose?: string | undefined;
6771
+ precise?: boolean | undefined;
6772
+ buttonText?: string | undefined;
6579
6773
  } | {
6580
6774
  type: "button";
6581
6775
  text: string;
@@ -6589,6 +6783,7 @@ export declare const AppPackSchema: z.ZodObject<{
6589
6783
  cancel?: string | undefined;
6590
6784
  } | undefined;
6591
6785
  disabled?: boolean | undefined;
6786
+ hidden_for?: string[] | undefined;
6592
6787
  } | {
6593
6788
  type: "linkButton";
6594
6789
  text: string;
@@ -6610,6 +6805,7 @@ export declare const AppPackSchema: z.ZodObject<{
6610
6805
  cancel?: string | undefined;
6611
6806
  } | undefined;
6612
6807
  disabled?: boolean | undefined;
6808
+ hidden_for?: string[] | undefined;
6613
6809
  } | {
6614
6810
  type: "linkButton";
6615
6811
  text: string;
@@ -6637,7 +6833,6 @@ export declare const AppPackSchema: z.ZodObject<{
6637
6833
  type: "progress";
6638
6834
  value?: number | undefined;
6639
6835
  label?: string | undefined;
6640
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
6641
6836
  } | {
6642
6837
  type: "steps";
6643
6838
  items: {
@@ -6686,7 +6881,6 @@ export declare const AppPackSchema: z.ZodObject<{
6686
6881
  name: string;
6687
6882
  status?: "online" | "away" | "busy" | "offline" | undefined;
6688
6883
  initials?: string | undefined;
6689
- color?: string | undefined;
6690
6884
  src?: string | undefined;
6691
6885
  subtitle?: string | undefined;
6692
6886
  } | {
@@ -6694,7 +6888,6 @@ export declare const AppPackSchema: z.ZodObject<{
6694
6888
  people: {
6695
6889
  name: string;
6696
6890
  initials?: string | undefined;
6697
- color?: string | undefined;
6698
6891
  src?: string | undefined;
6699
6892
  }[];
6700
6893
  label?: string | undefined;
@@ -6729,7 +6922,6 @@ export declare const AppPackSchema: z.ZodObject<{
6729
6922
  type: "kanban";
6730
6923
  columns: {
6731
6924
  title: string;
6732
- id: string;
6733
6925
  cards: {
6734
6926
  title: string;
6735
6927
  id: string;
@@ -6740,6 +6932,7 @@ export declare const AppPackSchema: z.ZodObject<{
6740
6932
  } | undefined;
6741
6933
  meta?: string[] | undefined;
6742
6934
  }[];
6935
+ id: string;
6743
6936
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
6744
6937
  }[];
6745
6938
  caption?: string | undefined;
@@ -6852,11 +7045,13 @@ export declare const AppPackSchema: z.ZodObject<{
6852
7045
  options: {
6853
7046
  value: string;
6854
7047
  label: string;
7048
+ hint?: string | undefined;
6855
7049
  }[];
6856
7050
  type: "radio";
6857
7051
  name: string;
6858
7052
  value?: string | undefined;
6859
7053
  label?: string | undefined;
7054
+ style?: "cards" | "segmented" | undefined;
6860
7055
  } | {
6861
7056
  options: {
6862
7057
  value: string;
@@ -6873,6 +7068,14 @@ export declare const AppPackSchema: z.ZodObject<{
6873
7068
  label: string;
6874
7069
  name: string;
6875
7070
  checked?: boolean | undefined;
7071
+ } | {
7072
+ type: "location";
7073
+ name: string;
7074
+ label?: string | undefined;
7075
+ required?: boolean | undefined;
7076
+ purpose?: string | undefined;
7077
+ precise?: boolean | undefined;
7078
+ buttonText?: string | undefined;
6876
7079
  } | {
6877
7080
  type: "button";
6878
7081
  text: string;
@@ -6886,6 +7089,7 @@ export declare const AppPackSchema: z.ZodObject<{
6886
7089
  cancel?: string | undefined;
6887
7090
  } | undefined;
6888
7091
  disabled?: boolean | undefined;
7092
+ hidden_for?: string[] | undefined;
6889
7093
  } | {
6890
7094
  type: "linkButton";
6891
7095
  text: string;
@@ -6907,6 +7111,7 @@ export declare const AppPackSchema: z.ZodObject<{
6907
7111
  cancel?: string | undefined;
6908
7112
  } | undefined;
6909
7113
  disabled?: boolean | undefined;
7114
+ hidden_for?: string[] | undefined;
6910
7115
  } | {
6911
7116
  type: "linkButton";
6912
7117
  text: string;
@@ -6934,7 +7139,6 @@ export declare const AppPackSchema: z.ZodObject<{
6934
7139
  type: "progress";
6935
7140
  value?: number | undefined;
6936
7141
  label?: string | undefined;
6937
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
6938
7142
  } | {
6939
7143
  type: "steps";
6940
7144
  items: {
@@ -6983,7 +7187,6 @@ export declare const AppPackSchema: z.ZodObject<{
6983
7187
  name: string;
6984
7188
  status?: "online" | "away" | "busy" | "offline" | undefined;
6985
7189
  initials?: string | undefined;
6986
- color?: string | undefined;
6987
7190
  src?: string | undefined;
6988
7191
  subtitle?: string | undefined;
6989
7192
  } | {
@@ -6991,7 +7194,6 @@ export declare const AppPackSchema: z.ZodObject<{
6991
7194
  people: {
6992
7195
  name: string;
6993
7196
  initials?: string | undefined;
6994
- color?: string | undefined;
6995
7197
  src?: string | undefined;
6996
7198
  }[];
6997
7199
  label?: string | undefined;
@@ -7026,7 +7228,6 @@ export declare const AppPackSchema: z.ZodObject<{
7026
7228
  type: "kanban";
7027
7229
  columns: {
7028
7230
  title: string;
7029
- id: string;
7030
7231
  cards: {
7031
7232
  title: string;
7032
7233
  id: string;
@@ -7037,6 +7238,7 @@ export declare const AppPackSchema: z.ZodObject<{
7037
7238
  } | undefined;
7038
7239
  meta?: string[] | undefined;
7039
7240
  }[];
7241
+ id: string;
7040
7242
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
7041
7243
  }[];
7042
7244
  caption?: string | undefined;
@@ -7201,11 +7403,13 @@ export declare const AppPackSchema: z.ZodObject<{
7201
7403
  options: {
7202
7404
  value: string;
7203
7405
  label: string;
7406
+ hint?: string | undefined;
7204
7407
  }[];
7205
7408
  type: "radio";
7206
7409
  name: string;
7207
7410
  value?: string | undefined;
7208
7411
  label?: string | undefined;
7412
+ style?: "cards" | "segmented" | undefined;
7209
7413
  } | {
7210
7414
  options: {
7211
7415
  value: string;
@@ -7222,6 +7426,14 @@ export declare const AppPackSchema: z.ZodObject<{
7222
7426
  label: string;
7223
7427
  name: string;
7224
7428
  checked?: boolean | undefined;
7429
+ } | {
7430
+ type: "location";
7431
+ name: string;
7432
+ label?: string | undefined;
7433
+ required?: boolean | undefined;
7434
+ purpose?: string | undefined;
7435
+ precise?: boolean | undefined;
7436
+ buttonText?: string | undefined;
7225
7437
  } | {
7226
7438
  type: "button";
7227
7439
  text: string;
@@ -7235,6 +7447,7 @@ export declare const AppPackSchema: z.ZodObject<{
7235
7447
  cancel?: string | undefined;
7236
7448
  } | undefined;
7237
7449
  disabled?: boolean | undefined;
7450
+ hidden_for?: string[] | undefined;
7238
7451
  } | {
7239
7452
  type: "linkButton";
7240
7453
  text: string;
@@ -7256,6 +7469,7 @@ export declare const AppPackSchema: z.ZodObject<{
7256
7469
  cancel?: string | undefined;
7257
7470
  } | undefined;
7258
7471
  disabled?: boolean | undefined;
7472
+ hidden_for?: string[] | undefined;
7259
7473
  } | {
7260
7474
  type: "linkButton";
7261
7475
  text: string;
@@ -7283,7 +7497,6 @@ export declare const AppPackSchema: z.ZodObject<{
7283
7497
  type: "progress";
7284
7498
  value?: number | undefined;
7285
7499
  label?: string | undefined;
7286
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
7287
7500
  } | {
7288
7501
  type: "steps";
7289
7502
  items: {
@@ -7332,7 +7545,6 @@ export declare const AppPackSchema: z.ZodObject<{
7332
7545
  name: string;
7333
7546
  status?: "online" | "away" | "busy" | "offline" | undefined;
7334
7547
  initials?: string | undefined;
7335
- color?: string | undefined;
7336
7548
  src?: string | undefined;
7337
7549
  subtitle?: string | undefined;
7338
7550
  } | {
@@ -7340,7 +7552,6 @@ export declare const AppPackSchema: z.ZodObject<{
7340
7552
  people: {
7341
7553
  name: string;
7342
7554
  initials?: string | undefined;
7343
- color?: string | undefined;
7344
7555
  src?: string | undefined;
7345
7556
  }[];
7346
7557
  label?: string | undefined;
@@ -7375,7 +7586,6 @@ export declare const AppPackSchema: z.ZodObject<{
7375
7586
  type: "kanban";
7376
7587
  columns: {
7377
7588
  title: string;
7378
- id: string;
7379
7589
  cards: {
7380
7590
  title: string;
7381
7591
  id: string;
@@ -7386,6 +7596,7 @@ export declare const AppPackSchema: z.ZodObject<{
7386
7596
  } | undefined;
7387
7597
  meta?: string[] | undefined;
7388
7598
  }[];
7599
+ id: string;
7389
7600
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
7390
7601
  }[];
7391
7602
  caption?: string | undefined;
@@ -7482,11 +7693,13 @@ export declare const AppPackSchema: z.ZodObject<{
7482
7693
  options: {
7483
7694
  value: string;
7484
7695
  label: string;
7696
+ hint?: string | undefined;
7485
7697
  }[];
7486
7698
  type: "radio";
7487
7699
  name: string;
7488
7700
  value?: string | undefined;
7489
7701
  label?: string | undefined;
7702
+ style?: "cards" | "segmented" | undefined;
7490
7703
  } | {
7491
7704
  options: {
7492
7705
  value: string;
@@ -7503,6 +7716,14 @@ export declare const AppPackSchema: z.ZodObject<{
7503
7716
  label: string;
7504
7717
  name: string;
7505
7718
  checked?: boolean | undefined;
7719
+ } | {
7720
+ type: "location";
7721
+ name: string;
7722
+ label?: string | undefined;
7723
+ required?: boolean | undefined;
7724
+ purpose?: string | undefined;
7725
+ precise?: boolean | undefined;
7726
+ buttonText?: string | undefined;
7506
7727
  } | {
7507
7728
  type: "button";
7508
7729
  text: string;
@@ -7516,6 +7737,7 @@ export declare const AppPackSchema: z.ZodObject<{
7516
7737
  cancel?: string | undefined;
7517
7738
  } | undefined;
7518
7739
  disabled?: boolean | undefined;
7740
+ hidden_for?: string[] | undefined;
7519
7741
  } | {
7520
7742
  type: "linkButton";
7521
7743
  text: string;
@@ -7537,6 +7759,7 @@ export declare const AppPackSchema: z.ZodObject<{
7537
7759
  cancel?: string | undefined;
7538
7760
  } | undefined;
7539
7761
  disabled?: boolean | undefined;
7762
+ hidden_for?: string[] | undefined;
7540
7763
  } | {
7541
7764
  type: "linkButton";
7542
7765
  text: string;
@@ -7564,7 +7787,6 @@ export declare const AppPackSchema: z.ZodObject<{
7564
7787
  type: "progress";
7565
7788
  value?: number | undefined;
7566
7789
  label?: string | undefined;
7567
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
7568
7790
  } | {
7569
7791
  type: "steps";
7570
7792
  items: {
@@ -7613,7 +7835,6 @@ export declare const AppPackSchema: z.ZodObject<{
7613
7835
  name: string;
7614
7836
  status?: "online" | "away" | "busy" | "offline" | undefined;
7615
7837
  initials?: string | undefined;
7616
- color?: string | undefined;
7617
7838
  src?: string | undefined;
7618
7839
  subtitle?: string | undefined;
7619
7840
  } | {
@@ -7621,7 +7842,6 @@ export declare const AppPackSchema: z.ZodObject<{
7621
7842
  people: {
7622
7843
  name: string;
7623
7844
  initials?: string | undefined;
7624
- color?: string | undefined;
7625
7845
  src?: string | undefined;
7626
7846
  }[];
7627
7847
  label?: string | undefined;
@@ -7656,7 +7876,6 @@ export declare const AppPackSchema: z.ZodObject<{
7656
7876
  type: "kanban";
7657
7877
  columns: {
7658
7878
  title: string;
7659
- id: string;
7660
7879
  cards: {
7661
7880
  title: string;
7662
7881
  id: string;
@@ -7667,6 +7886,7 @@ export declare const AppPackSchema: z.ZodObject<{
7667
7886
  } | undefined;
7668
7887
  meta?: string[] | undefined;
7669
7888
  }[];
7889
+ id: string;
7670
7890
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
7671
7891
  }[];
7672
7892
  caption?: string | undefined;
@@ -7940,17 +8160,14 @@ export declare const AppPackSchema: z.ZodObject<{
7940
8160
  type: z.ZodLiteral<"progress">;
7941
8161
  value: z.ZodOptional<z.ZodNumber>;
7942
8162
  label: z.ZodOptional<z.ZodString>;
7943
- tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
7944
8163
  }, "strip", z.ZodTypeAny, {
7945
8164
  type: "progress";
7946
8165
  value?: number | undefined;
7947
8166
  label?: string | undefined;
7948
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
7949
8167
  }, {
7950
8168
  type: "progress";
7951
8169
  value?: number | undefined;
7952
8170
  label?: string | undefined;
7953
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
7954
8171
  }>, z.ZodObject<{
7955
8172
  type: z.ZodLiteral<"steps">;
7956
8173
  items: z.ZodArray<z.ZodObject<{
@@ -8046,7 +8263,6 @@ export declare const AppPackSchema: z.ZodObject<{
8046
8263
  type: z.ZodLiteral<"avatar">;
8047
8264
  name: z.ZodString;
8048
8265
  initials: z.ZodOptional<z.ZodString>;
8049
- color: z.ZodOptional<z.ZodString>;
8050
8266
  src: z.ZodOptional<z.ZodString>;
8051
8267
  subtitle: z.ZodOptional<z.ZodString>;
8052
8268
  status: z.ZodOptional<z.ZodEnum<["online", "away", "busy", "offline"]>>;
@@ -8055,7 +8271,6 @@ export declare const AppPackSchema: z.ZodObject<{
8055
8271
  name: string;
8056
8272
  status?: "online" | "away" | "busy" | "offline" | undefined;
8057
8273
  initials?: string | undefined;
8058
- color?: string | undefined;
8059
8274
  src?: string | undefined;
8060
8275
  subtitle?: string | undefined;
8061
8276
  }, {
@@ -8063,7 +8278,6 @@ export declare const AppPackSchema: z.ZodObject<{
8063
8278
  name: string;
8064
8279
  status?: "online" | "away" | "busy" | "offline" | undefined;
8065
8280
  initials?: string | undefined;
8066
- color?: string | undefined;
8067
8281
  src?: string | undefined;
8068
8282
  subtitle?: string | undefined;
8069
8283
  }>, z.ZodObject<{
@@ -8071,17 +8285,14 @@ export declare const AppPackSchema: z.ZodObject<{
8071
8285
  people: z.ZodArray<z.ZodObject<{
8072
8286
  name: z.ZodString;
8073
8287
  initials: z.ZodOptional<z.ZodString>;
8074
- color: z.ZodOptional<z.ZodString>;
8075
8288
  src: z.ZodOptional<z.ZodString>;
8076
8289
  }, "strip", z.ZodTypeAny, {
8077
8290
  name: string;
8078
8291
  initials?: string | undefined;
8079
- color?: string | undefined;
8080
8292
  src?: string | undefined;
8081
8293
  }, {
8082
8294
  name: string;
8083
8295
  initials?: string | undefined;
8084
- color?: string | undefined;
8085
8296
  src?: string | undefined;
8086
8297
  }>, "many">;
8087
8298
  max: z.ZodOptional<z.ZodNumber>;
@@ -8091,7 +8302,6 @@ export declare const AppPackSchema: z.ZodObject<{
8091
8302
  people: {
8092
8303
  name: string;
8093
8304
  initials?: string | undefined;
8094
- color?: string | undefined;
8095
8305
  src?: string | undefined;
8096
8306
  }[];
8097
8307
  label?: string | undefined;
@@ -8101,7 +8311,6 @@ export declare const AppPackSchema: z.ZodObject<{
8101
8311
  people: {
8102
8312
  name: string;
8103
8313
  initials?: string | undefined;
8104
- color?: string | undefined;
8105
8314
  src?: string | undefined;
8106
8315
  }[];
8107
8316
  label?: string | undefined;
@@ -8226,7 +8435,6 @@ export declare const AppPackSchema: z.ZodObject<{
8226
8435
  }>, "many">;
8227
8436
  }, "strip", z.ZodTypeAny, {
8228
8437
  title: string;
8229
- id: string;
8230
8438
  cards: {
8231
8439
  title: string;
8232
8440
  id: string;
@@ -8237,10 +8445,10 @@ export declare const AppPackSchema: z.ZodObject<{
8237
8445
  } | undefined;
8238
8446
  meta?: string[] | undefined;
8239
8447
  }[];
8448
+ id: string;
8240
8449
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
8241
8450
  }, {
8242
8451
  title: string;
8243
- id: string;
8244
8452
  cards: {
8245
8453
  title: string;
8246
8454
  id: string;
@@ -8251,6 +8459,7 @@ export declare const AppPackSchema: z.ZodObject<{
8251
8459
  } | undefined;
8252
8460
  meta?: string[] | undefined;
8253
8461
  }[];
8462
+ id: string;
8254
8463
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
8255
8464
  }>, "many">;
8256
8465
  caption: z.ZodOptional<z.ZodString>;
@@ -8258,7 +8467,6 @@ export declare const AppPackSchema: z.ZodObject<{
8258
8467
  type: "kanban";
8259
8468
  columns: {
8260
8469
  title: string;
8261
- id: string;
8262
8470
  cards: {
8263
8471
  title: string;
8264
8472
  id: string;
@@ -8269,6 +8477,7 @@ export declare const AppPackSchema: z.ZodObject<{
8269
8477
  } | undefined;
8270
8478
  meta?: string[] | undefined;
8271
8479
  }[];
8480
+ id: string;
8272
8481
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
8273
8482
  }[];
8274
8483
  caption?: string | undefined;
@@ -8276,7 +8485,6 @@ export declare const AppPackSchema: z.ZodObject<{
8276
8485
  type: "kanban";
8277
8486
  columns: {
8278
8487
  title: string;
8279
- id: string;
8280
8488
  cards: {
8281
8489
  title: string;
8282
8490
  id: string;
@@ -8287,6 +8495,7 @@ export declare const AppPackSchema: z.ZodObject<{
8287
8495
  } | undefined;
8288
8496
  meta?: string[] | undefined;
8289
8497
  }[];
8498
+ id: string;
8290
8499
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
8291
8500
  }[];
8292
8501
  caption?: string | undefined;
@@ -8486,32 +8695,40 @@ export declare const AppPackSchema: z.ZodObject<{
8486
8695
  options: z.ZodArray<z.ZodObject<{
8487
8696
  value: z.ZodString;
8488
8697
  label: z.ZodString;
8698
+ hint: z.ZodOptional<z.ZodString>;
8489
8699
  }, "strip", z.ZodTypeAny, {
8490
8700
  value: string;
8491
8701
  label: string;
8702
+ hint?: string | undefined;
8492
8703
  }, {
8493
8704
  value: string;
8494
8705
  label: string;
8706
+ hint?: string | undefined;
8495
8707
  }>, "many">;
8496
8708
  value: z.ZodOptional<z.ZodString>;
8709
+ style: z.ZodOptional<z.ZodEnum<["cards", "segmented"]>>;
8497
8710
  }, "strip", z.ZodTypeAny, {
8498
8711
  options: {
8499
8712
  value: string;
8500
8713
  label: string;
8714
+ hint?: string | undefined;
8501
8715
  }[];
8502
8716
  type: "radio";
8503
8717
  name: string;
8504
8718
  value?: string | undefined;
8505
8719
  label?: string | undefined;
8720
+ style?: "cards" | "segmented" | undefined;
8506
8721
  }, {
8507
8722
  options: {
8508
8723
  value: string;
8509
8724
  label: string;
8725
+ hint?: string | undefined;
8510
8726
  }[];
8511
8727
  type: "radio";
8512
8728
  name: string;
8513
8729
  value?: string | undefined;
8514
8730
  label?: string | undefined;
8731
+ style?: "cards" | "segmented" | undefined;
8515
8732
  }>, z.ZodObject<{
8516
8733
  type: z.ZodLiteral<"select">;
8517
8734
  name: z.ZodString;
@@ -8566,6 +8783,30 @@ export declare const AppPackSchema: z.ZodObject<{
8566
8783
  label: string;
8567
8784
  name: string;
8568
8785
  checked?: boolean | undefined;
8786
+ }>, z.ZodObject<{
8787
+ type: z.ZodLiteral<"location">;
8788
+ name: z.ZodString;
8789
+ label: z.ZodOptional<z.ZodString>;
8790
+ purpose: z.ZodOptional<z.ZodString>;
8791
+ required: z.ZodOptional<z.ZodBoolean>;
8792
+ precise: z.ZodOptional<z.ZodBoolean>;
8793
+ buttonText: z.ZodOptional<z.ZodString>;
8794
+ }, "strip", z.ZodTypeAny, {
8795
+ type: "location";
8796
+ name: string;
8797
+ label?: string | undefined;
8798
+ required?: boolean | undefined;
8799
+ purpose?: string | undefined;
8800
+ precise?: boolean | undefined;
8801
+ buttonText?: string | undefined;
8802
+ }, {
8803
+ type: "location";
8804
+ name: string;
8805
+ label?: string | undefined;
8806
+ required?: boolean | undefined;
8807
+ purpose?: string | undefined;
8808
+ precise?: boolean | undefined;
8809
+ buttonText?: string | undefined;
8569
8810
  }>, z.ZodObject<{
8570
8811
  type: z.ZodLiteral<"button">;
8571
8812
  action_id: z.ZodString;
@@ -8589,6 +8830,7 @@ export declare const AppPackSchema: z.ZodObject<{
8589
8830
  cancel?: string | undefined;
8590
8831
  }>>;
8591
8832
  disabled: z.ZodOptional<z.ZodBoolean>;
8833
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8592
8834
  }, "strip", z.ZodTypeAny, {
8593
8835
  type: "button";
8594
8836
  text: string;
@@ -8602,6 +8844,7 @@ export declare const AppPackSchema: z.ZodObject<{
8602
8844
  cancel?: string | undefined;
8603
8845
  } | undefined;
8604
8846
  disabled?: boolean | undefined;
8847
+ hidden_for?: string[] | undefined;
8605
8848
  }, {
8606
8849
  type: "button";
8607
8850
  text: string;
@@ -8615,6 +8858,7 @@ export declare const AppPackSchema: z.ZodObject<{
8615
8858
  cancel?: string | undefined;
8616
8859
  } | undefined;
8617
8860
  disabled?: boolean | undefined;
8861
+ hidden_for?: string[] | undefined;
8618
8862
  }>, z.ZodObject<{
8619
8863
  type: z.ZodLiteral<"linkButton">;
8620
8864
  text: z.ZodString;
@@ -8658,6 +8902,7 @@ export declare const AppPackSchema: z.ZodObject<{
8658
8902
  cancel?: string | undefined;
8659
8903
  }>>;
8660
8904
  disabled: z.ZodOptional<z.ZodBoolean>;
8905
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8661
8906
  }, "strip", z.ZodTypeAny, {
8662
8907
  type: "button";
8663
8908
  text: string;
@@ -8671,6 +8916,7 @@ export declare const AppPackSchema: z.ZodObject<{
8671
8916
  cancel?: string | undefined;
8672
8917
  } | undefined;
8673
8918
  disabled?: boolean | undefined;
8919
+ hidden_for?: string[] | undefined;
8674
8920
  }, {
8675
8921
  type: "button";
8676
8922
  text: string;
@@ -8684,6 +8930,7 @@ export declare const AppPackSchema: z.ZodObject<{
8684
8930
  cancel?: string | undefined;
8685
8931
  } | undefined;
8686
8932
  disabled?: boolean | undefined;
8933
+ hidden_for?: string[] | undefined;
8687
8934
  }>, z.ZodObject<{
8688
8935
  type: z.ZodLiteral<"linkButton">;
8689
8936
  text: z.ZodString;
@@ -8718,6 +8965,7 @@ export declare const AppPackSchema: z.ZodObject<{
8718
8965
  cancel?: string | undefined;
8719
8966
  } | undefined;
8720
8967
  disabled?: boolean | undefined;
8968
+ hidden_for?: string[] | undefined;
8721
8969
  } | {
8722
8970
  type: "linkButton";
8723
8971
  text: string;
@@ -8740,6 +8988,7 @@ export declare const AppPackSchema: z.ZodObject<{
8740
8988
  cancel?: string | undefined;
8741
8989
  } | undefined;
8742
8990
  disabled?: boolean | undefined;
8991
+ hidden_for?: string[] | undefined;
8743
8992
  } | {
8744
8993
  type: "linkButton";
8745
8994
  text: string;
@@ -8989,17 +9238,14 @@ export declare const AppPackSchema: z.ZodObject<{
8989
9238
  type: z.ZodLiteral<"progress">;
8990
9239
  value: z.ZodOptional<z.ZodNumber>;
8991
9240
  label: z.ZodOptional<z.ZodString>;
8992
- tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
8993
9241
  }, "strip", z.ZodTypeAny, {
8994
9242
  type: "progress";
8995
9243
  value?: number | undefined;
8996
9244
  label?: string | undefined;
8997
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
8998
9245
  }, {
8999
9246
  type: "progress";
9000
9247
  value?: number | undefined;
9001
9248
  label?: string | undefined;
9002
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
9003
9249
  }>, z.ZodObject<{
9004
9250
  type: z.ZodLiteral<"steps">;
9005
9251
  items: z.ZodArray<z.ZodObject<{
@@ -9095,7 +9341,6 @@ export declare const AppPackSchema: z.ZodObject<{
9095
9341
  type: z.ZodLiteral<"avatar">;
9096
9342
  name: z.ZodString;
9097
9343
  initials: z.ZodOptional<z.ZodString>;
9098
- color: z.ZodOptional<z.ZodString>;
9099
9344
  src: z.ZodOptional<z.ZodString>;
9100
9345
  subtitle: z.ZodOptional<z.ZodString>;
9101
9346
  status: z.ZodOptional<z.ZodEnum<["online", "away", "busy", "offline"]>>;
@@ -9104,7 +9349,6 @@ export declare const AppPackSchema: z.ZodObject<{
9104
9349
  name: string;
9105
9350
  status?: "online" | "away" | "busy" | "offline" | undefined;
9106
9351
  initials?: string | undefined;
9107
- color?: string | undefined;
9108
9352
  src?: string | undefined;
9109
9353
  subtitle?: string | undefined;
9110
9354
  }, {
@@ -9112,7 +9356,6 @@ export declare const AppPackSchema: z.ZodObject<{
9112
9356
  name: string;
9113
9357
  status?: "online" | "away" | "busy" | "offline" | undefined;
9114
9358
  initials?: string | undefined;
9115
- color?: string | undefined;
9116
9359
  src?: string | undefined;
9117
9360
  subtitle?: string | undefined;
9118
9361
  }>, z.ZodObject<{
@@ -9120,17 +9363,14 @@ export declare const AppPackSchema: z.ZodObject<{
9120
9363
  people: z.ZodArray<z.ZodObject<{
9121
9364
  name: z.ZodString;
9122
9365
  initials: z.ZodOptional<z.ZodString>;
9123
- color: z.ZodOptional<z.ZodString>;
9124
9366
  src: z.ZodOptional<z.ZodString>;
9125
9367
  }, "strip", z.ZodTypeAny, {
9126
9368
  name: string;
9127
9369
  initials?: string | undefined;
9128
- color?: string | undefined;
9129
9370
  src?: string | undefined;
9130
9371
  }, {
9131
9372
  name: string;
9132
9373
  initials?: string | undefined;
9133
- color?: string | undefined;
9134
9374
  src?: string | undefined;
9135
9375
  }>, "many">;
9136
9376
  max: z.ZodOptional<z.ZodNumber>;
@@ -9140,7 +9380,6 @@ export declare const AppPackSchema: z.ZodObject<{
9140
9380
  people: {
9141
9381
  name: string;
9142
9382
  initials?: string | undefined;
9143
- color?: string | undefined;
9144
9383
  src?: string | undefined;
9145
9384
  }[];
9146
9385
  label?: string | undefined;
@@ -9150,7 +9389,6 @@ export declare const AppPackSchema: z.ZodObject<{
9150
9389
  people: {
9151
9390
  name: string;
9152
9391
  initials?: string | undefined;
9153
- color?: string | undefined;
9154
9392
  src?: string | undefined;
9155
9393
  }[];
9156
9394
  label?: string | undefined;
@@ -9275,7 +9513,6 @@ export declare const AppPackSchema: z.ZodObject<{
9275
9513
  }>, "many">;
9276
9514
  }, "strip", z.ZodTypeAny, {
9277
9515
  title: string;
9278
- id: string;
9279
9516
  cards: {
9280
9517
  title: string;
9281
9518
  id: string;
@@ -9286,10 +9523,10 @@ export declare const AppPackSchema: z.ZodObject<{
9286
9523
  } | undefined;
9287
9524
  meta?: string[] | undefined;
9288
9525
  }[];
9526
+ id: string;
9289
9527
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
9290
9528
  }, {
9291
9529
  title: string;
9292
- id: string;
9293
9530
  cards: {
9294
9531
  title: string;
9295
9532
  id: string;
@@ -9300,6 +9537,7 @@ export declare const AppPackSchema: z.ZodObject<{
9300
9537
  } | undefined;
9301
9538
  meta?: string[] | undefined;
9302
9539
  }[];
9540
+ id: string;
9303
9541
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
9304
9542
  }>, "many">;
9305
9543
  caption: z.ZodOptional<z.ZodString>;
@@ -9307,7 +9545,6 @@ export declare const AppPackSchema: z.ZodObject<{
9307
9545
  type: "kanban";
9308
9546
  columns: {
9309
9547
  title: string;
9310
- id: string;
9311
9548
  cards: {
9312
9549
  title: string;
9313
9550
  id: string;
@@ -9318,6 +9555,7 @@ export declare const AppPackSchema: z.ZodObject<{
9318
9555
  } | undefined;
9319
9556
  meta?: string[] | undefined;
9320
9557
  }[];
9558
+ id: string;
9321
9559
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
9322
9560
  }[];
9323
9561
  caption?: string | undefined;
@@ -9325,7 +9563,6 @@ export declare const AppPackSchema: z.ZodObject<{
9325
9563
  type: "kanban";
9326
9564
  columns: {
9327
9565
  title: string;
9328
- id: string;
9329
9566
  cards: {
9330
9567
  title: string;
9331
9568
  id: string;
@@ -9336,6 +9573,7 @@ export declare const AppPackSchema: z.ZodObject<{
9336
9573
  } | undefined;
9337
9574
  meta?: string[] | undefined;
9338
9575
  }[];
9576
+ id: string;
9339
9577
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
9340
9578
  }[];
9341
9579
  caption?: string | undefined;
@@ -9535,32 +9773,40 @@ export declare const AppPackSchema: z.ZodObject<{
9535
9773
  options: z.ZodArray<z.ZodObject<{
9536
9774
  value: z.ZodString;
9537
9775
  label: z.ZodString;
9776
+ hint: z.ZodOptional<z.ZodString>;
9538
9777
  }, "strip", z.ZodTypeAny, {
9539
9778
  value: string;
9540
9779
  label: string;
9780
+ hint?: string | undefined;
9541
9781
  }, {
9542
9782
  value: string;
9543
9783
  label: string;
9784
+ hint?: string | undefined;
9544
9785
  }>, "many">;
9545
9786
  value: z.ZodOptional<z.ZodString>;
9787
+ style: z.ZodOptional<z.ZodEnum<["cards", "segmented"]>>;
9546
9788
  }, "strip", z.ZodTypeAny, {
9547
9789
  options: {
9548
9790
  value: string;
9549
9791
  label: string;
9792
+ hint?: string | undefined;
9550
9793
  }[];
9551
9794
  type: "radio";
9552
9795
  name: string;
9553
9796
  value?: string | undefined;
9554
9797
  label?: string | undefined;
9798
+ style?: "cards" | "segmented" | undefined;
9555
9799
  }, {
9556
9800
  options: {
9557
9801
  value: string;
9558
9802
  label: string;
9803
+ hint?: string | undefined;
9559
9804
  }[];
9560
9805
  type: "radio";
9561
9806
  name: string;
9562
9807
  value?: string | undefined;
9563
9808
  label?: string | undefined;
9809
+ style?: "cards" | "segmented" | undefined;
9564
9810
  }>, z.ZodObject<{
9565
9811
  type: z.ZodLiteral<"select">;
9566
9812
  name: z.ZodString;
@@ -9615,6 +9861,30 @@ export declare const AppPackSchema: z.ZodObject<{
9615
9861
  label: string;
9616
9862
  name: string;
9617
9863
  checked?: boolean | undefined;
9864
+ }>, z.ZodObject<{
9865
+ type: z.ZodLiteral<"location">;
9866
+ name: z.ZodString;
9867
+ label: z.ZodOptional<z.ZodString>;
9868
+ purpose: z.ZodOptional<z.ZodString>;
9869
+ required: z.ZodOptional<z.ZodBoolean>;
9870
+ precise: z.ZodOptional<z.ZodBoolean>;
9871
+ buttonText: z.ZodOptional<z.ZodString>;
9872
+ }, "strip", z.ZodTypeAny, {
9873
+ type: "location";
9874
+ name: string;
9875
+ label?: string | undefined;
9876
+ required?: boolean | undefined;
9877
+ purpose?: string | undefined;
9878
+ precise?: boolean | undefined;
9879
+ buttonText?: string | undefined;
9880
+ }, {
9881
+ type: "location";
9882
+ name: string;
9883
+ label?: string | undefined;
9884
+ required?: boolean | undefined;
9885
+ purpose?: string | undefined;
9886
+ precise?: boolean | undefined;
9887
+ buttonText?: string | undefined;
9618
9888
  }>, z.ZodObject<{
9619
9889
  type: z.ZodLiteral<"button">;
9620
9890
  action_id: z.ZodString;
@@ -9638,6 +9908,7 @@ export declare const AppPackSchema: z.ZodObject<{
9638
9908
  cancel?: string | undefined;
9639
9909
  }>>;
9640
9910
  disabled: z.ZodOptional<z.ZodBoolean>;
9911
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9641
9912
  }, "strip", z.ZodTypeAny, {
9642
9913
  type: "button";
9643
9914
  text: string;
@@ -9651,6 +9922,7 @@ export declare const AppPackSchema: z.ZodObject<{
9651
9922
  cancel?: string | undefined;
9652
9923
  } | undefined;
9653
9924
  disabled?: boolean | undefined;
9925
+ hidden_for?: string[] | undefined;
9654
9926
  }, {
9655
9927
  type: "button";
9656
9928
  text: string;
@@ -9664,6 +9936,7 @@ export declare const AppPackSchema: z.ZodObject<{
9664
9936
  cancel?: string | undefined;
9665
9937
  } | undefined;
9666
9938
  disabled?: boolean | undefined;
9939
+ hidden_for?: string[] | undefined;
9667
9940
  }>, z.ZodObject<{
9668
9941
  type: z.ZodLiteral<"linkButton">;
9669
9942
  text: z.ZodString;
@@ -9707,6 +9980,7 @@ export declare const AppPackSchema: z.ZodObject<{
9707
9980
  cancel?: string | undefined;
9708
9981
  }>>;
9709
9982
  disabled: z.ZodOptional<z.ZodBoolean>;
9983
+ hidden_for: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9710
9984
  }, "strip", z.ZodTypeAny, {
9711
9985
  type: "button";
9712
9986
  text: string;
@@ -9720,6 +9994,7 @@ export declare const AppPackSchema: z.ZodObject<{
9720
9994
  cancel?: string | undefined;
9721
9995
  } | undefined;
9722
9996
  disabled?: boolean | undefined;
9997
+ hidden_for?: string[] | undefined;
9723
9998
  }, {
9724
9999
  type: "button";
9725
10000
  text: string;
@@ -9733,6 +10008,7 @@ export declare const AppPackSchema: z.ZodObject<{
9733
10008
  cancel?: string | undefined;
9734
10009
  } | undefined;
9735
10010
  disabled?: boolean | undefined;
10011
+ hidden_for?: string[] | undefined;
9736
10012
  }>, z.ZodObject<{
9737
10013
  type: z.ZodLiteral<"linkButton">;
9738
10014
  text: z.ZodString;
@@ -9767,6 +10043,7 @@ export declare const AppPackSchema: z.ZodObject<{
9767
10043
  cancel?: string | undefined;
9768
10044
  } | undefined;
9769
10045
  disabled?: boolean | undefined;
10046
+ hidden_for?: string[] | undefined;
9770
10047
  } | {
9771
10048
  type: "linkButton";
9772
10049
  text: string;
@@ -9789,6 +10066,7 @@ export declare const AppPackSchema: z.ZodObject<{
9789
10066
  cancel?: string | undefined;
9790
10067
  } | undefined;
9791
10068
  disabled?: boolean | undefined;
10069
+ hidden_for?: string[] | undefined;
9792
10070
  } | {
9793
10071
  type: "linkButton";
9794
10072
  text: string;
@@ -9951,11 +10229,13 @@ export declare const AppPackSchema: z.ZodObject<{
9951
10229
  options: {
9952
10230
  value: string;
9953
10231
  label: string;
10232
+ hint?: string | undefined;
9954
10233
  }[];
9955
10234
  type: "radio";
9956
10235
  name: string;
9957
10236
  value?: string | undefined;
9958
10237
  label?: string | undefined;
10238
+ style?: "cards" | "segmented" | undefined;
9959
10239
  } | {
9960
10240
  options: {
9961
10241
  value: string;
@@ -9972,6 +10252,14 @@ export declare const AppPackSchema: z.ZodObject<{
9972
10252
  label: string;
9973
10253
  name: string;
9974
10254
  checked?: boolean | undefined;
10255
+ } | {
10256
+ type: "location";
10257
+ name: string;
10258
+ label?: string | undefined;
10259
+ required?: boolean | undefined;
10260
+ purpose?: string | undefined;
10261
+ precise?: boolean | undefined;
10262
+ buttonText?: string | undefined;
9975
10263
  } | {
9976
10264
  type: "button";
9977
10265
  text: string;
@@ -9985,6 +10273,7 @@ export declare const AppPackSchema: z.ZodObject<{
9985
10273
  cancel?: string | undefined;
9986
10274
  } | undefined;
9987
10275
  disabled?: boolean | undefined;
10276
+ hidden_for?: string[] | undefined;
9988
10277
  } | {
9989
10278
  type: "linkButton";
9990
10279
  text: string;
@@ -10006,6 +10295,7 @@ export declare const AppPackSchema: z.ZodObject<{
10006
10295
  cancel?: string | undefined;
10007
10296
  } | undefined;
10008
10297
  disabled?: boolean | undefined;
10298
+ hidden_for?: string[] | undefined;
10009
10299
  } | {
10010
10300
  type: "linkButton";
10011
10301
  text: string;
@@ -10033,7 +10323,6 @@ export declare const AppPackSchema: z.ZodObject<{
10033
10323
  type: "progress";
10034
10324
  value?: number | undefined;
10035
10325
  label?: string | undefined;
10036
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
10037
10326
  } | {
10038
10327
  type: "steps";
10039
10328
  items: {
@@ -10082,7 +10371,6 @@ export declare const AppPackSchema: z.ZodObject<{
10082
10371
  name: string;
10083
10372
  status?: "online" | "away" | "busy" | "offline" | undefined;
10084
10373
  initials?: string | undefined;
10085
- color?: string | undefined;
10086
10374
  src?: string | undefined;
10087
10375
  subtitle?: string | undefined;
10088
10376
  } | {
@@ -10090,7 +10378,6 @@ export declare const AppPackSchema: z.ZodObject<{
10090
10378
  people: {
10091
10379
  name: string;
10092
10380
  initials?: string | undefined;
10093
- color?: string | undefined;
10094
10381
  src?: string | undefined;
10095
10382
  }[];
10096
10383
  label?: string | undefined;
@@ -10125,7 +10412,6 @@ export declare const AppPackSchema: z.ZodObject<{
10125
10412
  type: "kanban";
10126
10413
  columns: {
10127
10414
  title: string;
10128
- id: string;
10129
10415
  cards: {
10130
10416
  title: string;
10131
10417
  id: string;
@@ -10136,6 +10422,7 @@ export declare const AppPackSchema: z.ZodObject<{
10136
10422
  } | undefined;
10137
10423
  meta?: string[] | undefined;
10138
10424
  }[];
10425
+ id: string;
10139
10426
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
10140
10427
  }[];
10141
10428
  caption?: string | undefined;
@@ -10232,11 +10519,13 @@ export declare const AppPackSchema: z.ZodObject<{
10232
10519
  options: {
10233
10520
  value: string;
10234
10521
  label: string;
10522
+ hint?: string | undefined;
10235
10523
  }[];
10236
10524
  type: "radio";
10237
10525
  name: string;
10238
10526
  value?: string | undefined;
10239
10527
  label?: string | undefined;
10528
+ style?: "cards" | "segmented" | undefined;
10240
10529
  } | {
10241
10530
  options: {
10242
10531
  value: string;
@@ -10253,6 +10542,14 @@ export declare const AppPackSchema: z.ZodObject<{
10253
10542
  label: string;
10254
10543
  name: string;
10255
10544
  checked?: boolean | undefined;
10545
+ } | {
10546
+ type: "location";
10547
+ name: string;
10548
+ label?: string | undefined;
10549
+ required?: boolean | undefined;
10550
+ purpose?: string | undefined;
10551
+ precise?: boolean | undefined;
10552
+ buttonText?: string | undefined;
10256
10553
  } | {
10257
10554
  type: "button";
10258
10555
  text: string;
@@ -10266,6 +10563,7 @@ export declare const AppPackSchema: z.ZodObject<{
10266
10563
  cancel?: string | undefined;
10267
10564
  } | undefined;
10268
10565
  disabled?: boolean | undefined;
10566
+ hidden_for?: string[] | undefined;
10269
10567
  } | {
10270
10568
  type: "linkButton";
10271
10569
  text: string;
@@ -10287,6 +10585,7 @@ export declare const AppPackSchema: z.ZodObject<{
10287
10585
  cancel?: string | undefined;
10288
10586
  } | undefined;
10289
10587
  disabled?: boolean | undefined;
10588
+ hidden_for?: string[] | undefined;
10290
10589
  } | {
10291
10590
  type: "linkButton";
10292
10591
  text: string;
@@ -10314,7 +10613,6 @@ export declare const AppPackSchema: z.ZodObject<{
10314
10613
  type: "progress";
10315
10614
  value?: number | undefined;
10316
10615
  label?: string | undefined;
10317
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
10318
10616
  } | {
10319
10617
  type: "steps";
10320
10618
  items: {
@@ -10363,7 +10661,6 @@ export declare const AppPackSchema: z.ZodObject<{
10363
10661
  name: string;
10364
10662
  status?: "online" | "away" | "busy" | "offline" | undefined;
10365
10663
  initials?: string | undefined;
10366
- color?: string | undefined;
10367
10664
  src?: string | undefined;
10368
10665
  subtitle?: string | undefined;
10369
10666
  } | {
@@ -10371,7 +10668,6 @@ export declare const AppPackSchema: z.ZodObject<{
10371
10668
  people: {
10372
10669
  name: string;
10373
10670
  initials?: string | undefined;
10374
- color?: string | undefined;
10375
10671
  src?: string | undefined;
10376
10672
  }[];
10377
10673
  label?: string | undefined;
@@ -10406,7 +10702,6 @@ export declare const AppPackSchema: z.ZodObject<{
10406
10702
  type: "kanban";
10407
10703
  columns: {
10408
10704
  title: string;
10409
- id: string;
10410
10705
  cards: {
10411
10706
  title: string;
10412
10707
  id: string;
@@ -10417,6 +10712,7 @@ export declare const AppPackSchema: z.ZodObject<{
10417
10712
  } | undefined;
10418
10713
  meta?: string[] | undefined;
10419
10714
  }[];
10715
+ id: string;
10420
10716
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
10421
10717
  }[];
10422
10718
  caption?: string | undefined;
@@ -10555,11 +10851,13 @@ export declare const AppPackSchema: z.ZodObject<{
10555
10851
  options: {
10556
10852
  value: string;
10557
10853
  label: string;
10854
+ hint?: string | undefined;
10558
10855
  }[];
10559
10856
  type: "radio";
10560
10857
  name: string;
10561
10858
  value?: string | undefined;
10562
10859
  label?: string | undefined;
10860
+ style?: "cards" | "segmented" | undefined;
10563
10861
  } | {
10564
10862
  options: {
10565
10863
  value: string;
@@ -10576,6 +10874,14 @@ export declare const AppPackSchema: z.ZodObject<{
10576
10874
  label: string;
10577
10875
  name: string;
10578
10876
  checked?: boolean | undefined;
10877
+ } | {
10878
+ type: "location";
10879
+ name: string;
10880
+ label?: string | undefined;
10881
+ required?: boolean | undefined;
10882
+ purpose?: string | undefined;
10883
+ precise?: boolean | undefined;
10884
+ buttonText?: string | undefined;
10579
10885
  } | {
10580
10886
  type: "button";
10581
10887
  text: string;
@@ -10589,6 +10895,7 @@ export declare const AppPackSchema: z.ZodObject<{
10589
10895
  cancel?: string | undefined;
10590
10896
  } | undefined;
10591
10897
  disabled?: boolean | undefined;
10898
+ hidden_for?: string[] | undefined;
10592
10899
  } | {
10593
10900
  type: "linkButton";
10594
10901
  text: string;
@@ -10610,6 +10917,7 @@ export declare const AppPackSchema: z.ZodObject<{
10610
10917
  cancel?: string | undefined;
10611
10918
  } | undefined;
10612
10919
  disabled?: boolean | undefined;
10920
+ hidden_for?: string[] | undefined;
10613
10921
  } | {
10614
10922
  type: "linkButton";
10615
10923
  text: string;
@@ -10637,7 +10945,6 @@ export declare const AppPackSchema: z.ZodObject<{
10637
10945
  type: "progress";
10638
10946
  value?: number | undefined;
10639
10947
  label?: string | undefined;
10640
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
10641
10948
  } | {
10642
10949
  type: "steps";
10643
10950
  items: {
@@ -10686,7 +10993,6 @@ export declare const AppPackSchema: z.ZodObject<{
10686
10993
  name: string;
10687
10994
  status?: "online" | "away" | "busy" | "offline" | undefined;
10688
10995
  initials?: string | undefined;
10689
- color?: string | undefined;
10690
10996
  src?: string | undefined;
10691
10997
  subtitle?: string | undefined;
10692
10998
  } | {
@@ -10694,7 +11000,6 @@ export declare const AppPackSchema: z.ZodObject<{
10694
11000
  people: {
10695
11001
  name: string;
10696
11002
  initials?: string | undefined;
10697
- color?: string | undefined;
10698
11003
  src?: string | undefined;
10699
11004
  }[];
10700
11005
  label?: string | undefined;
@@ -10729,7 +11034,6 @@ export declare const AppPackSchema: z.ZodObject<{
10729
11034
  type: "kanban";
10730
11035
  columns: {
10731
11036
  title: string;
10732
- id: string;
10733
11037
  cards: {
10734
11038
  title: string;
10735
11039
  id: string;
@@ -10740,6 +11044,7 @@ export declare const AppPackSchema: z.ZodObject<{
10740
11044
  } | undefined;
10741
11045
  meta?: string[] | undefined;
10742
11046
  }[];
11047
+ id: string;
10743
11048
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
10744
11049
  }[];
10745
11050
  caption?: string | undefined;
@@ -10852,11 +11157,13 @@ export declare const AppPackSchema: z.ZodObject<{
10852
11157
  options: {
10853
11158
  value: string;
10854
11159
  label: string;
11160
+ hint?: string | undefined;
10855
11161
  }[];
10856
11162
  type: "radio";
10857
11163
  name: string;
10858
11164
  value?: string | undefined;
10859
11165
  label?: string | undefined;
11166
+ style?: "cards" | "segmented" | undefined;
10860
11167
  } | {
10861
11168
  options: {
10862
11169
  value: string;
@@ -10873,6 +11180,14 @@ export declare const AppPackSchema: z.ZodObject<{
10873
11180
  label: string;
10874
11181
  name: string;
10875
11182
  checked?: boolean | undefined;
11183
+ } | {
11184
+ type: "location";
11185
+ name: string;
11186
+ label?: string | undefined;
11187
+ required?: boolean | undefined;
11188
+ purpose?: string | undefined;
11189
+ precise?: boolean | undefined;
11190
+ buttonText?: string | undefined;
10876
11191
  } | {
10877
11192
  type: "button";
10878
11193
  text: string;
@@ -10886,6 +11201,7 @@ export declare const AppPackSchema: z.ZodObject<{
10886
11201
  cancel?: string | undefined;
10887
11202
  } | undefined;
10888
11203
  disabled?: boolean | undefined;
11204
+ hidden_for?: string[] | undefined;
10889
11205
  } | {
10890
11206
  type: "linkButton";
10891
11207
  text: string;
@@ -10907,6 +11223,7 @@ export declare const AppPackSchema: z.ZodObject<{
10907
11223
  cancel?: string | undefined;
10908
11224
  } | undefined;
10909
11225
  disabled?: boolean | undefined;
11226
+ hidden_for?: string[] | undefined;
10910
11227
  } | {
10911
11228
  type: "linkButton";
10912
11229
  text: string;
@@ -10934,7 +11251,6 @@ export declare const AppPackSchema: z.ZodObject<{
10934
11251
  type: "progress";
10935
11252
  value?: number | undefined;
10936
11253
  label?: string | undefined;
10937
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
10938
11254
  } | {
10939
11255
  type: "steps";
10940
11256
  items: {
@@ -10983,7 +11299,6 @@ export declare const AppPackSchema: z.ZodObject<{
10983
11299
  name: string;
10984
11300
  status?: "online" | "away" | "busy" | "offline" | undefined;
10985
11301
  initials?: string | undefined;
10986
- color?: string | undefined;
10987
11302
  src?: string | undefined;
10988
11303
  subtitle?: string | undefined;
10989
11304
  } | {
@@ -10991,7 +11306,6 @@ export declare const AppPackSchema: z.ZodObject<{
10991
11306
  people: {
10992
11307
  name: string;
10993
11308
  initials?: string | undefined;
10994
- color?: string | undefined;
10995
11309
  src?: string | undefined;
10996
11310
  }[];
10997
11311
  label?: string | undefined;
@@ -11026,7 +11340,6 @@ export declare const AppPackSchema: z.ZodObject<{
11026
11340
  type: "kanban";
11027
11341
  columns: {
11028
11342
  title: string;
11029
- id: string;
11030
11343
  cards: {
11031
11344
  title: string;
11032
11345
  id: string;
@@ -11037,6 +11350,7 @@ export declare const AppPackSchema: z.ZodObject<{
11037
11350
  } | undefined;
11038
11351
  meta?: string[] | undefined;
11039
11352
  }[];
11353
+ id: string;
11040
11354
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
11041
11355
  }[];
11042
11356
  caption?: string | undefined;
@@ -11154,11 +11468,13 @@ export declare const AppPackSchema: z.ZodObject<{
11154
11468
  options: {
11155
11469
  value: string;
11156
11470
  label: string;
11471
+ hint?: string | undefined;
11157
11472
  }[];
11158
11473
  type: "radio";
11159
11474
  name: string;
11160
11475
  value?: string | undefined;
11161
11476
  label?: string | undefined;
11477
+ style?: "cards" | "segmented" | undefined;
11162
11478
  } | {
11163
11479
  options: {
11164
11480
  value: string;
@@ -11175,6 +11491,14 @@ export declare const AppPackSchema: z.ZodObject<{
11175
11491
  label: string;
11176
11492
  name: string;
11177
11493
  checked?: boolean | undefined;
11494
+ } | {
11495
+ type: "location";
11496
+ name: string;
11497
+ label?: string | undefined;
11498
+ required?: boolean | undefined;
11499
+ purpose?: string | undefined;
11500
+ precise?: boolean | undefined;
11501
+ buttonText?: string | undefined;
11178
11502
  } | {
11179
11503
  type: "button";
11180
11504
  text: string;
@@ -11188,6 +11512,7 @@ export declare const AppPackSchema: z.ZodObject<{
11188
11512
  cancel?: string | undefined;
11189
11513
  } | undefined;
11190
11514
  disabled?: boolean | undefined;
11515
+ hidden_for?: string[] | undefined;
11191
11516
  } | {
11192
11517
  type: "linkButton";
11193
11518
  text: string;
@@ -11209,6 +11534,7 @@ export declare const AppPackSchema: z.ZodObject<{
11209
11534
  cancel?: string | undefined;
11210
11535
  } | undefined;
11211
11536
  disabled?: boolean | undefined;
11537
+ hidden_for?: string[] | undefined;
11212
11538
  } | {
11213
11539
  type: "linkButton";
11214
11540
  text: string;
@@ -11236,7 +11562,6 @@ export declare const AppPackSchema: z.ZodObject<{
11236
11562
  type: "progress";
11237
11563
  value?: number | undefined;
11238
11564
  label?: string | undefined;
11239
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
11240
11565
  } | {
11241
11566
  type: "steps";
11242
11567
  items: {
@@ -11285,7 +11610,6 @@ export declare const AppPackSchema: z.ZodObject<{
11285
11610
  name: string;
11286
11611
  status?: "online" | "away" | "busy" | "offline" | undefined;
11287
11612
  initials?: string | undefined;
11288
- color?: string | undefined;
11289
11613
  src?: string | undefined;
11290
11614
  subtitle?: string | undefined;
11291
11615
  } | {
@@ -11293,7 +11617,6 @@ export declare const AppPackSchema: z.ZodObject<{
11293
11617
  people: {
11294
11618
  name: string;
11295
11619
  initials?: string | undefined;
11296
- color?: string | undefined;
11297
11620
  src?: string | undefined;
11298
11621
  }[];
11299
11622
  label?: string | undefined;
@@ -11328,7 +11651,6 @@ export declare const AppPackSchema: z.ZodObject<{
11328
11651
  type: "kanban";
11329
11652
  columns: {
11330
11653
  title: string;
11331
- id: string;
11332
11654
  cards: {
11333
11655
  title: string;
11334
11656
  id: string;
@@ -11339,6 +11661,7 @@ export declare const AppPackSchema: z.ZodObject<{
11339
11661
  } | undefined;
11340
11662
  meta?: string[] | undefined;
11341
11663
  }[];
11664
+ id: string;
11342
11665
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
11343
11666
  }[];
11344
11667
  caption?: string | undefined;
@@ -11435,11 +11758,13 @@ export declare const AppPackSchema: z.ZodObject<{
11435
11758
  options: {
11436
11759
  value: string;
11437
11760
  label: string;
11761
+ hint?: string | undefined;
11438
11762
  }[];
11439
11763
  type: "radio";
11440
11764
  name: string;
11441
11765
  value?: string | undefined;
11442
11766
  label?: string | undefined;
11767
+ style?: "cards" | "segmented" | undefined;
11443
11768
  } | {
11444
11769
  options: {
11445
11770
  value: string;
@@ -11456,6 +11781,14 @@ export declare const AppPackSchema: z.ZodObject<{
11456
11781
  label: string;
11457
11782
  name: string;
11458
11783
  checked?: boolean | undefined;
11784
+ } | {
11785
+ type: "location";
11786
+ name: string;
11787
+ label?: string | undefined;
11788
+ required?: boolean | undefined;
11789
+ purpose?: string | undefined;
11790
+ precise?: boolean | undefined;
11791
+ buttonText?: string | undefined;
11459
11792
  } | {
11460
11793
  type: "button";
11461
11794
  text: string;
@@ -11469,6 +11802,7 @@ export declare const AppPackSchema: z.ZodObject<{
11469
11802
  cancel?: string | undefined;
11470
11803
  } | undefined;
11471
11804
  disabled?: boolean | undefined;
11805
+ hidden_for?: string[] | undefined;
11472
11806
  } | {
11473
11807
  type: "linkButton";
11474
11808
  text: string;
@@ -11490,6 +11824,7 @@ export declare const AppPackSchema: z.ZodObject<{
11490
11824
  cancel?: string | undefined;
11491
11825
  } | undefined;
11492
11826
  disabled?: boolean | undefined;
11827
+ hidden_for?: string[] | undefined;
11493
11828
  } | {
11494
11829
  type: "linkButton";
11495
11830
  text: string;
@@ -11517,7 +11852,6 @@ export declare const AppPackSchema: z.ZodObject<{
11517
11852
  type: "progress";
11518
11853
  value?: number | undefined;
11519
11854
  label?: string | undefined;
11520
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
11521
11855
  } | {
11522
11856
  type: "steps";
11523
11857
  items: {
@@ -11566,7 +11900,6 @@ export declare const AppPackSchema: z.ZodObject<{
11566
11900
  name: string;
11567
11901
  status?: "online" | "away" | "busy" | "offline" | undefined;
11568
11902
  initials?: string | undefined;
11569
- color?: string | undefined;
11570
11903
  src?: string | undefined;
11571
11904
  subtitle?: string | undefined;
11572
11905
  } | {
@@ -11574,7 +11907,6 @@ export declare const AppPackSchema: z.ZodObject<{
11574
11907
  people: {
11575
11908
  name: string;
11576
11909
  initials?: string | undefined;
11577
- color?: string | undefined;
11578
11910
  src?: string | undefined;
11579
11911
  }[];
11580
11912
  label?: string | undefined;
@@ -11609,7 +11941,6 @@ export declare const AppPackSchema: z.ZodObject<{
11609
11941
  type: "kanban";
11610
11942
  columns: {
11611
11943
  title: string;
11612
- id: string;
11613
11944
  cards: {
11614
11945
  title: string;
11615
11946
  id: string;
@@ -11620,6 +11951,7 @@ export declare const AppPackSchema: z.ZodObject<{
11620
11951
  } | undefined;
11621
11952
  meta?: string[] | undefined;
11622
11953
  }[];
11954
+ id: string;
11623
11955
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
11624
11956
  }[];
11625
11957
  caption?: string | undefined;
@@ -11723,11 +12055,13 @@ export declare const AppPackSchema: z.ZodObject<{
11723
12055
  options: {
11724
12056
  value: string;
11725
12057
  label: string;
12058
+ hint?: string | undefined;
11726
12059
  }[];
11727
12060
  type: "radio";
11728
12061
  name: string;
11729
12062
  value?: string | undefined;
11730
12063
  label?: string | undefined;
12064
+ style?: "cards" | "segmented" | undefined;
11731
12065
  } | {
11732
12066
  options: {
11733
12067
  value: string;
@@ -11744,6 +12078,14 @@ export declare const AppPackSchema: z.ZodObject<{
11744
12078
  label: string;
11745
12079
  name: string;
11746
12080
  checked?: boolean | undefined;
12081
+ } | {
12082
+ type: "location";
12083
+ name: string;
12084
+ label?: string | undefined;
12085
+ required?: boolean | undefined;
12086
+ purpose?: string | undefined;
12087
+ precise?: boolean | undefined;
12088
+ buttonText?: string | undefined;
11747
12089
  } | {
11748
12090
  type: "button";
11749
12091
  text: string;
@@ -11757,6 +12099,7 @@ export declare const AppPackSchema: z.ZodObject<{
11757
12099
  cancel?: string | undefined;
11758
12100
  } | undefined;
11759
12101
  disabled?: boolean | undefined;
12102
+ hidden_for?: string[] | undefined;
11760
12103
  } | {
11761
12104
  type: "linkButton";
11762
12105
  text: string;
@@ -11778,6 +12121,7 @@ export declare const AppPackSchema: z.ZodObject<{
11778
12121
  cancel?: string | undefined;
11779
12122
  } | undefined;
11780
12123
  disabled?: boolean | undefined;
12124
+ hidden_for?: string[] | undefined;
11781
12125
  } | {
11782
12126
  type: "linkButton";
11783
12127
  text: string;
@@ -11805,7 +12149,6 @@ export declare const AppPackSchema: z.ZodObject<{
11805
12149
  type: "progress";
11806
12150
  value?: number | undefined;
11807
12151
  label?: string | undefined;
11808
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
11809
12152
  } | {
11810
12153
  type: "steps";
11811
12154
  items: {
@@ -11854,7 +12197,6 @@ export declare const AppPackSchema: z.ZodObject<{
11854
12197
  name: string;
11855
12198
  status?: "online" | "away" | "busy" | "offline" | undefined;
11856
12199
  initials?: string | undefined;
11857
- color?: string | undefined;
11858
12200
  src?: string | undefined;
11859
12201
  subtitle?: string | undefined;
11860
12202
  } | {
@@ -11862,7 +12204,6 @@ export declare const AppPackSchema: z.ZodObject<{
11862
12204
  people: {
11863
12205
  name: string;
11864
12206
  initials?: string | undefined;
11865
- color?: string | undefined;
11866
12207
  src?: string | undefined;
11867
12208
  }[];
11868
12209
  label?: string | undefined;
@@ -11897,7 +12238,6 @@ export declare const AppPackSchema: z.ZodObject<{
11897
12238
  type: "kanban";
11898
12239
  columns: {
11899
12240
  title: string;
11900
- id: string;
11901
12241
  cards: {
11902
12242
  title: string;
11903
12243
  id: string;
@@ -11908,6 +12248,7 @@ export declare const AppPackSchema: z.ZodObject<{
11908
12248
  } | undefined;
11909
12249
  meta?: string[] | undefined;
11910
12250
  }[];
12251
+ id: string;
11911
12252
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
11912
12253
  }[];
11913
12254
  caption?: string | undefined;
@@ -12020,11 +12361,13 @@ export declare const AppPackSchema: z.ZodObject<{
12020
12361
  options: {
12021
12362
  value: string;
12022
12363
  label: string;
12364
+ hint?: string | undefined;
12023
12365
  }[];
12024
12366
  type: "radio";
12025
12367
  name: string;
12026
12368
  value?: string | undefined;
12027
12369
  label?: string | undefined;
12370
+ style?: "cards" | "segmented" | undefined;
12028
12371
  } | {
12029
12372
  options: {
12030
12373
  value: string;
@@ -12041,6 +12384,14 @@ export declare const AppPackSchema: z.ZodObject<{
12041
12384
  label: string;
12042
12385
  name: string;
12043
12386
  checked?: boolean | undefined;
12387
+ } | {
12388
+ type: "location";
12389
+ name: string;
12390
+ label?: string | undefined;
12391
+ required?: boolean | undefined;
12392
+ purpose?: string | undefined;
12393
+ precise?: boolean | undefined;
12394
+ buttonText?: string | undefined;
12044
12395
  } | {
12045
12396
  type: "button";
12046
12397
  text: string;
@@ -12054,6 +12405,7 @@ export declare const AppPackSchema: z.ZodObject<{
12054
12405
  cancel?: string | undefined;
12055
12406
  } | undefined;
12056
12407
  disabled?: boolean | undefined;
12408
+ hidden_for?: string[] | undefined;
12057
12409
  } | {
12058
12410
  type: "linkButton";
12059
12411
  text: string;
@@ -12075,6 +12427,7 @@ export declare const AppPackSchema: z.ZodObject<{
12075
12427
  cancel?: string | undefined;
12076
12428
  } | undefined;
12077
12429
  disabled?: boolean | undefined;
12430
+ hidden_for?: string[] | undefined;
12078
12431
  } | {
12079
12432
  type: "linkButton";
12080
12433
  text: string;
@@ -12102,7 +12455,6 @@ export declare const AppPackSchema: z.ZodObject<{
12102
12455
  type: "progress";
12103
12456
  value?: number | undefined;
12104
12457
  label?: string | undefined;
12105
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12106
12458
  } | {
12107
12459
  type: "steps";
12108
12460
  items: {
@@ -12151,7 +12503,6 @@ export declare const AppPackSchema: z.ZodObject<{
12151
12503
  name: string;
12152
12504
  status?: "online" | "away" | "busy" | "offline" | undefined;
12153
12505
  initials?: string | undefined;
12154
- color?: string | undefined;
12155
12506
  src?: string | undefined;
12156
12507
  subtitle?: string | undefined;
12157
12508
  } | {
@@ -12159,7 +12510,6 @@ export declare const AppPackSchema: z.ZodObject<{
12159
12510
  people: {
12160
12511
  name: string;
12161
12512
  initials?: string | undefined;
12162
- color?: string | undefined;
12163
12513
  src?: string | undefined;
12164
12514
  }[];
12165
12515
  label?: string | undefined;
@@ -12194,7 +12544,6 @@ export declare const AppPackSchema: z.ZodObject<{
12194
12544
  type: "kanban";
12195
12545
  columns: {
12196
12546
  title: string;
12197
- id: string;
12198
12547
  cards: {
12199
12548
  title: string;
12200
12549
  id: string;
@@ -12205,6 +12554,7 @@ export declare const AppPackSchema: z.ZodObject<{
12205
12554
  } | undefined;
12206
12555
  meta?: string[] | undefined;
12207
12556
  }[];
12557
+ id: string;
12208
12558
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12209
12559
  }[];
12210
12560
  caption?: string | undefined;
@@ -12327,11 +12677,13 @@ export declare const AppPackSchema: z.ZodObject<{
12327
12677
  options: {
12328
12678
  value: string;
12329
12679
  label: string;
12680
+ hint?: string | undefined;
12330
12681
  }[];
12331
12682
  type: "radio";
12332
12683
  name: string;
12333
12684
  value?: string | undefined;
12334
12685
  label?: string | undefined;
12686
+ style?: "cards" | "segmented" | undefined;
12335
12687
  } | {
12336
12688
  options: {
12337
12689
  value: string;
@@ -12348,6 +12700,14 @@ export declare const AppPackSchema: z.ZodObject<{
12348
12700
  label: string;
12349
12701
  name: string;
12350
12702
  checked?: boolean | undefined;
12703
+ } | {
12704
+ type: "location";
12705
+ name: string;
12706
+ label?: string | undefined;
12707
+ required?: boolean | undefined;
12708
+ purpose?: string | undefined;
12709
+ precise?: boolean | undefined;
12710
+ buttonText?: string | undefined;
12351
12711
  } | {
12352
12712
  type: "button";
12353
12713
  text: string;
@@ -12361,6 +12721,7 @@ export declare const AppPackSchema: z.ZodObject<{
12361
12721
  cancel?: string | undefined;
12362
12722
  } | undefined;
12363
12723
  disabled?: boolean | undefined;
12724
+ hidden_for?: string[] | undefined;
12364
12725
  } | {
12365
12726
  type: "linkButton";
12366
12727
  text: string;
@@ -12382,6 +12743,7 @@ export declare const AppPackSchema: z.ZodObject<{
12382
12743
  cancel?: string | undefined;
12383
12744
  } | undefined;
12384
12745
  disabled?: boolean | undefined;
12746
+ hidden_for?: string[] | undefined;
12385
12747
  } | {
12386
12748
  type: "linkButton";
12387
12749
  text: string;
@@ -12409,7 +12771,6 @@ export declare const AppPackSchema: z.ZodObject<{
12409
12771
  type: "progress";
12410
12772
  value?: number | undefined;
12411
12773
  label?: string | undefined;
12412
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12413
12774
  } | {
12414
12775
  type: "steps";
12415
12776
  items: {
@@ -12458,7 +12819,6 @@ export declare const AppPackSchema: z.ZodObject<{
12458
12819
  name: string;
12459
12820
  status?: "online" | "away" | "busy" | "offline" | undefined;
12460
12821
  initials?: string | undefined;
12461
- color?: string | undefined;
12462
12822
  src?: string | undefined;
12463
12823
  subtitle?: string | undefined;
12464
12824
  } | {
@@ -12466,7 +12826,6 @@ export declare const AppPackSchema: z.ZodObject<{
12466
12826
  people: {
12467
12827
  name: string;
12468
12828
  initials?: string | undefined;
12469
- color?: string | undefined;
12470
12829
  src?: string | undefined;
12471
12830
  }[];
12472
12831
  label?: string | undefined;
@@ -12501,7 +12860,6 @@ export declare const AppPackSchema: z.ZodObject<{
12501
12860
  type: "kanban";
12502
12861
  columns: {
12503
12862
  title: string;
12504
- id: string;
12505
12863
  cards: {
12506
12864
  title: string;
12507
12865
  id: string;
@@ -12512,6 +12870,7 @@ export declare const AppPackSchema: z.ZodObject<{
12512
12870
  } | undefined;
12513
12871
  meta?: string[] | undefined;
12514
12872
  }[];
12873
+ id: string;
12515
12874
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12516
12875
  }[];
12517
12876
  caption?: string | undefined;
@@ -12608,11 +12967,13 @@ export declare const AppPackSchema: z.ZodObject<{
12608
12967
  options: {
12609
12968
  value: string;
12610
12969
  label: string;
12970
+ hint?: string | undefined;
12611
12971
  }[];
12612
12972
  type: "radio";
12613
12973
  name: string;
12614
12974
  value?: string | undefined;
12615
12975
  label?: string | undefined;
12976
+ style?: "cards" | "segmented" | undefined;
12616
12977
  } | {
12617
12978
  options: {
12618
12979
  value: string;
@@ -12629,6 +12990,14 @@ export declare const AppPackSchema: z.ZodObject<{
12629
12990
  label: string;
12630
12991
  name: string;
12631
12992
  checked?: boolean | undefined;
12993
+ } | {
12994
+ type: "location";
12995
+ name: string;
12996
+ label?: string | undefined;
12997
+ required?: boolean | undefined;
12998
+ purpose?: string | undefined;
12999
+ precise?: boolean | undefined;
13000
+ buttonText?: string | undefined;
12632
13001
  } | {
12633
13002
  type: "button";
12634
13003
  text: string;
@@ -12642,6 +13011,7 @@ export declare const AppPackSchema: z.ZodObject<{
12642
13011
  cancel?: string | undefined;
12643
13012
  } | undefined;
12644
13013
  disabled?: boolean | undefined;
13014
+ hidden_for?: string[] | undefined;
12645
13015
  } | {
12646
13016
  type: "linkButton";
12647
13017
  text: string;
@@ -12663,6 +13033,7 @@ export declare const AppPackSchema: z.ZodObject<{
12663
13033
  cancel?: string | undefined;
12664
13034
  } | undefined;
12665
13035
  disabled?: boolean | undefined;
13036
+ hidden_for?: string[] | undefined;
12666
13037
  } | {
12667
13038
  type: "linkButton";
12668
13039
  text: string;
@@ -12690,7 +13061,6 @@ export declare const AppPackSchema: z.ZodObject<{
12690
13061
  type: "progress";
12691
13062
  value?: number | undefined;
12692
13063
  label?: string | undefined;
12693
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12694
13064
  } | {
12695
13065
  type: "steps";
12696
13066
  items: {
@@ -12739,7 +13109,6 @@ export declare const AppPackSchema: z.ZodObject<{
12739
13109
  name: string;
12740
13110
  status?: "online" | "away" | "busy" | "offline" | undefined;
12741
13111
  initials?: string | undefined;
12742
- color?: string | undefined;
12743
13112
  src?: string | undefined;
12744
13113
  subtitle?: string | undefined;
12745
13114
  } | {
@@ -12747,7 +13116,6 @@ export declare const AppPackSchema: z.ZodObject<{
12747
13116
  people: {
12748
13117
  name: string;
12749
13118
  initials?: string | undefined;
12750
- color?: string | undefined;
12751
13119
  src?: string | undefined;
12752
13120
  }[];
12753
13121
  label?: string | undefined;
@@ -12782,7 +13150,6 @@ export declare const AppPackSchema: z.ZodObject<{
12782
13150
  type: "kanban";
12783
13151
  columns: {
12784
13152
  title: string;
12785
- id: string;
12786
13153
  cards: {
12787
13154
  title: string;
12788
13155
  id: string;
@@ -12793,6 +13160,7 @@ export declare const AppPackSchema: z.ZodObject<{
12793
13160
  } | undefined;
12794
13161
  meta?: string[] | undefined;
12795
13162
  }[];
13163
+ id: string;
12796
13164
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12797
13165
  }[];
12798
13166
  caption?: string | undefined;
@@ -12980,8 +13348,8 @@ export declare const AppPackSchema: z.ZodObject<{
12980
13348
  label: string;
12981
13349
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12982
13350
  } | undefined;
12983
- glyph?: string | undefined;
12984
13351
  hint?: string | undefined;
13352
+ glyph?: string | undefined;
12985
13353
  }, {
12986
13354
  label: string;
12987
13355
  id: string;
@@ -12989,8 +13357,8 @@ export declare const AppPackSchema: z.ZodObject<{
12989
13357
  label: string;
12990
13358
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
12991
13359
  } | undefined;
12992
- glyph?: string | undefined;
12993
13360
  hint?: string | undefined;
13361
+ glyph?: string | undefined;
12994
13362
  }>, "many">;
12995
13363
  }, "strip", z.ZodTypeAny, {
12996
13364
  items: {
@@ -13000,8 +13368,8 @@ export declare const AppPackSchema: z.ZodObject<{
13000
13368
  label: string;
13001
13369
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
13002
13370
  } | undefined;
13003
- glyph?: string | undefined;
13004
13371
  hint?: string | undefined;
13372
+ glyph?: string | undefined;
13005
13373
  }[];
13006
13374
  id: string;
13007
13375
  label?: string | undefined;
@@ -13014,8 +13382,8 @@ export declare const AppPackSchema: z.ZodObject<{
13014
13382
  label: string;
13015
13383
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
13016
13384
  } | undefined;
13017
- glyph?: string | undefined;
13018
13385
  hint?: string | undefined;
13386
+ glyph?: string | undefined;
13019
13387
  }[];
13020
13388
  id: string;
13021
13389
  label?: string | undefined;
@@ -13033,14 +13401,14 @@ export declare const AppPackSchema: z.ZodObject<{
13033
13401
  }, "strip", z.ZodTypeAny, {
13034
13402
  label: string;
13035
13403
  trigger: string;
13036
- action_id?: string | undefined;
13037
13404
  hint?: string | undefined;
13405
+ action_id?: string | undefined;
13038
13406
  arg?: string | undefined;
13039
13407
  }, {
13040
13408
  label: string;
13041
13409
  trigger: string;
13042
- action_id?: string | undefined;
13043
13410
  hint?: string | undefined;
13411
+ action_id?: string | undefined;
13044
13412
  arg?: string | undefined;
13045
13413
  }>, "many">>;
13046
13414
  quickActions: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -13080,8 +13448,8 @@ export declare const AppPackSchema: z.ZodObject<{
13080
13448
  commands?: {
13081
13449
  label: string;
13082
13450
  trigger: string;
13083
- action_id?: string | undefined;
13084
13451
  hint?: string | undefined;
13452
+ action_id?: string | undefined;
13085
13453
  arg?: string | undefined;
13086
13454
  }[] | undefined;
13087
13455
  quickActions?: {
@@ -13101,8 +13469,8 @@ export declare const AppPackSchema: z.ZodObject<{
13101
13469
  commands?: {
13102
13470
  label: string;
13103
13471
  trigger: string;
13104
- action_id?: string | undefined;
13105
13472
  hint?: string | undefined;
13473
+ action_id?: string | undefined;
13106
13474
  arg?: string | undefined;
13107
13475
  }[] | undefined;
13108
13476
  quickActions?: {
@@ -13133,22 +13501,22 @@ export declare const AppPackSchema: z.ZodObject<{
13133
13501
  }, "strip", z.ZodTypeAny, {
13134
13502
  label: string;
13135
13503
  id: string;
13136
- glyph?: string | undefined;
13137
13504
  hint?: string | undefined;
13505
+ glyph?: string | undefined;
13138
13506
  keywords?: string[] | undefined;
13139
13507
  }, {
13140
13508
  label: string;
13141
13509
  id: string;
13142
- glyph?: string | undefined;
13143
13510
  hint?: string | undefined;
13511
+ glyph?: string | undefined;
13144
13512
  keywords?: string[] | undefined;
13145
13513
  }>, "many">;
13146
13514
  }, "strip", z.ZodTypeAny, {
13147
13515
  entries: {
13148
13516
  label: string;
13149
13517
  id: string;
13150
- glyph?: string | undefined;
13151
13518
  hint?: string | undefined;
13519
+ glyph?: string | undefined;
13152
13520
  keywords?: string[] | undefined;
13153
13521
  }[];
13154
13522
  id: string;
@@ -13157,8 +13525,8 @@ export declare const AppPackSchema: z.ZodObject<{
13157
13525
  entries: {
13158
13526
  label: string;
13159
13527
  id: string;
13160
- glyph?: string | undefined;
13161
13528
  hint?: string | undefined;
13529
+ glyph?: string | undefined;
13162
13530
  keywords?: string[] | undefined;
13163
13531
  }[];
13164
13532
  id: string;
@@ -13169,8 +13537,8 @@ export declare const AppPackSchema: z.ZodObject<{
13169
13537
  entries: {
13170
13538
  label: string;
13171
13539
  id: string;
13172
- glyph?: string | undefined;
13173
13540
  hint?: string | undefined;
13541
+ glyph?: string | undefined;
13174
13542
  keywords?: string[] | undefined;
13175
13543
  }[];
13176
13544
  id: string;
@@ -13182,8 +13550,8 @@ export declare const AppPackSchema: z.ZodObject<{
13182
13550
  entries: {
13183
13551
  label: string;
13184
13552
  id: string;
13185
- glyph?: string | undefined;
13186
13553
  hint?: string | undefined;
13554
+ glyph?: string | undefined;
13187
13555
  keywords?: string[] | undefined;
13188
13556
  }[];
13189
13557
  id: string;
@@ -13333,32 +13701,40 @@ export declare const AppPackSchema: z.ZodObject<{
13333
13701
  options: z.ZodArray<z.ZodObject<{
13334
13702
  value: z.ZodString;
13335
13703
  label: z.ZodString;
13704
+ hint: z.ZodOptional<z.ZodString>;
13336
13705
  }, "strip", z.ZodTypeAny, {
13337
13706
  value: string;
13338
13707
  label: string;
13708
+ hint?: string | undefined;
13339
13709
  }, {
13340
13710
  value: string;
13341
13711
  label: string;
13712
+ hint?: string | undefined;
13342
13713
  }>, "many">;
13343
13714
  value: z.ZodOptional<z.ZodString>;
13715
+ style: z.ZodOptional<z.ZodEnum<["cards", "segmented"]>>;
13344
13716
  }, "strip", z.ZodTypeAny, {
13345
13717
  options: {
13346
13718
  value: string;
13347
13719
  label: string;
13720
+ hint?: string | undefined;
13348
13721
  }[];
13349
13722
  type: "radio";
13350
13723
  name: string;
13351
13724
  value?: string | undefined;
13352
13725
  label?: string | undefined;
13726
+ style?: "cards" | "segmented" | undefined;
13353
13727
  }, {
13354
13728
  options: {
13355
13729
  value: string;
13356
13730
  label: string;
13731
+ hint?: string | undefined;
13357
13732
  }[];
13358
13733
  type: "radio";
13359
13734
  name: string;
13360
13735
  value?: string | undefined;
13361
13736
  label?: string | undefined;
13737
+ style?: "cards" | "segmented" | undefined;
13362
13738
  }>, z.ZodObject<{
13363
13739
  type: z.ZodLiteral<"checkbox">;
13364
13740
  name: z.ZodString;
@@ -13422,6 +13798,30 @@ export declare const AppPackSchema: z.ZodObject<{
13422
13798
  max?: number | undefined;
13423
13799
  step?: number | undefined;
13424
13800
  unit?: string | undefined;
13801
+ }>, z.ZodObject<{
13802
+ type: z.ZodLiteral<"location">;
13803
+ name: z.ZodString;
13804
+ label: z.ZodOptional<z.ZodString>;
13805
+ purpose: z.ZodOptional<z.ZodString>;
13806
+ required: z.ZodOptional<z.ZodBoolean>;
13807
+ precise: z.ZodOptional<z.ZodBoolean>;
13808
+ buttonText: z.ZodOptional<z.ZodString>;
13809
+ }, "strip", z.ZodTypeAny, {
13810
+ type: "location";
13811
+ name: string;
13812
+ label?: string | undefined;
13813
+ required?: boolean | undefined;
13814
+ purpose?: string | undefined;
13815
+ precise?: boolean | undefined;
13816
+ buttonText?: string | undefined;
13817
+ }, {
13818
+ type: "location";
13819
+ name: string;
13820
+ label?: string | undefined;
13821
+ required?: boolean | undefined;
13822
+ purpose?: string | undefined;
13823
+ precise?: boolean | undefined;
13824
+ buttonText?: string | undefined;
13425
13825
  }>]>, "many">>;
13426
13826
  steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
13427
13827
  title: z.ZodOptional<z.ZodString>;
@@ -13501,32 +13901,40 @@ export declare const AppPackSchema: z.ZodObject<{
13501
13901
  options: z.ZodArray<z.ZodObject<{
13502
13902
  value: z.ZodString;
13503
13903
  label: z.ZodString;
13904
+ hint: z.ZodOptional<z.ZodString>;
13504
13905
  }, "strip", z.ZodTypeAny, {
13505
13906
  value: string;
13506
13907
  label: string;
13908
+ hint?: string | undefined;
13507
13909
  }, {
13508
13910
  value: string;
13509
13911
  label: string;
13912
+ hint?: string | undefined;
13510
13913
  }>, "many">;
13511
13914
  value: z.ZodOptional<z.ZodString>;
13915
+ style: z.ZodOptional<z.ZodEnum<["cards", "segmented"]>>;
13512
13916
  }, "strip", z.ZodTypeAny, {
13513
13917
  options: {
13514
13918
  value: string;
13515
13919
  label: string;
13920
+ hint?: string | undefined;
13516
13921
  }[];
13517
13922
  type: "radio";
13518
13923
  name: string;
13519
13924
  value?: string | undefined;
13520
13925
  label?: string | undefined;
13926
+ style?: "cards" | "segmented" | undefined;
13521
13927
  }, {
13522
13928
  options: {
13523
13929
  value: string;
13524
13930
  label: string;
13931
+ hint?: string | undefined;
13525
13932
  }[];
13526
13933
  type: "radio";
13527
13934
  name: string;
13528
13935
  value?: string | undefined;
13529
13936
  label?: string | undefined;
13937
+ style?: "cards" | "segmented" | undefined;
13530
13938
  }>, z.ZodObject<{
13531
13939
  type: z.ZodLiteral<"checkbox">;
13532
13940
  name: z.ZodString;
@@ -13590,6 +13998,30 @@ export declare const AppPackSchema: z.ZodObject<{
13590
13998
  max?: number | undefined;
13591
13999
  step?: number | undefined;
13592
14000
  unit?: string | undefined;
14001
+ }>, z.ZodObject<{
14002
+ type: z.ZodLiteral<"location">;
14003
+ name: z.ZodString;
14004
+ label: z.ZodOptional<z.ZodString>;
14005
+ purpose: z.ZodOptional<z.ZodString>;
14006
+ required: z.ZodOptional<z.ZodBoolean>;
14007
+ precise: z.ZodOptional<z.ZodBoolean>;
14008
+ buttonText: z.ZodOptional<z.ZodString>;
14009
+ }, "strip", z.ZodTypeAny, {
14010
+ type: "location";
14011
+ name: string;
14012
+ label?: string | undefined;
14013
+ required?: boolean | undefined;
14014
+ purpose?: string | undefined;
14015
+ precise?: boolean | undefined;
14016
+ buttonText?: string | undefined;
14017
+ }, {
14018
+ type: "location";
14019
+ name: string;
14020
+ label?: string | undefined;
14021
+ required?: boolean | undefined;
14022
+ purpose?: string | undefined;
14023
+ precise?: boolean | undefined;
14024
+ buttonText?: string | undefined;
13593
14025
  }>]>, "many">;
13594
14026
  }, "strip", z.ZodTypeAny, {
13595
14027
  blocks: ({
@@ -13622,11 +14054,13 @@ export declare const AppPackSchema: z.ZodObject<{
13622
14054
  options: {
13623
14055
  value: string;
13624
14056
  label: string;
14057
+ hint?: string | undefined;
13625
14058
  }[];
13626
14059
  type: "radio";
13627
14060
  name: string;
13628
14061
  value?: string | undefined;
13629
14062
  label?: string | undefined;
14063
+ style?: "cards" | "segmented" | undefined;
13630
14064
  } | {
13631
14065
  options: {
13632
14066
  value: string;
@@ -13643,6 +14077,14 @@ export declare const AppPackSchema: z.ZodObject<{
13643
14077
  label: string;
13644
14078
  name: string;
13645
14079
  checked?: boolean | undefined;
14080
+ } | {
14081
+ type: "location";
14082
+ name: string;
14083
+ label?: string | undefined;
14084
+ required?: boolean | undefined;
14085
+ purpose?: string | undefined;
14086
+ precise?: boolean | undefined;
14087
+ buttonText?: string | undefined;
13646
14088
  })[];
13647
14089
  title?: string | undefined;
13648
14090
  }, {
@@ -13676,11 +14118,13 @@ export declare const AppPackSchema: z.ZodObject<{
13676
14118
  options: {
13677
14119
  value: string;
13678
14120
  label: string;
14121
+ hint?: string | undefined;
13679
14122
  }[];
13680
14123
  type: "radio";
13681
14124
  name: string;
13682
14125
  value?: string | undefined;
13683
14126
  label?: string | undefined;
14127
+ style?: "cards" | "segmented" | undefined;
13684
14128
  } | {
13685
14129
  options: {
13686
14130
  value: string;
@@ -13697,10 +14141,19 @@ export declare const AppPackSchema: z.ZodObject<{
13697
14141
  label: string;
13698
14142
  name: string;
13699
14143
  checked?: boolean | undefined;
14144
+ } | {
14145
+ type: "location";
14146
+ name: string;
14147
+ label?: string | undefined;
14148
+ required?: boolean | undefined;
14149
+ purpose?: string | undefined;
14150
+ precise?: boolean | undefined;
14151
+ buttonText?: string | undefined;
13700
14152
  })[];
13701
14153
  title?: string | undefined;
13702
14154
  }>, "many">>;
13703
14155
  review: z.ZodOptional<z.ZodBoolean>;
14156
+ diagnostics: z.ZodOptional<z.ZodBoolean>;
13704
14157
  confirm: z.ZodOptional<z.ZodObject<{
13705
14158
  label: z.ZodString;
13706
14159
  action_id: z.ZodString;
@@ -13755,11 +14208,13 @@ export declare const AppPackSchema: z.ZodObject<{
13755
14208
  options: {
13756
14209
  value: string;
13757
14210
  label: string;
14211
+ hint?: string | undefined;
13758
14212
  }[];
13759
14213
  type: "radio";
13760
14214
  name: string;
13761
14215
  value?: string | undefined;
13762
14216
  label?: string | undefined;
14217
+ style?: "cards" | "segmented" | undefined;
13763
14218
  } | {
13764
14219
  options: {
13765
14220
  value: string;
@@ -13776,6 +14231,14 @@ export declare const AppPackSchema: z.ZodObject<{
13776
14231
  label: string;
13777
14232
  name: string;
13778
14233
  checked?: boolean | undefined;
14234
+ } | {
14235
+ type: "location";
14236
+ name: string;
14237
+ label?: string | undefined;
14238
+ required?: boolean | undefined;
14239
+ purpose?: string | undefined;
14240
+ precise?: boolean | undefined;
14241
+ buttonText?: string | undefined;
13779
14242
  })[];
13780
14243
  title?: string | undefined;
13781
14244
  }[] | undefined;
@@ -13810,11 +14273,13 @@ export declare const AppPackSchema: z.ZodObject<{
13810
14273
  options: {
13811
14274
  value: string;
13812
14275
  label: string;
14276
+ hint?: string | undefined;
13813
14277
  }[];
13814
14278
  type: "radio";
13815
14279
  name: string;
13816
14280
  value?: string | undefined;
13817
14281
  label?: string | undefined;
14282
+ style?: "cards" | "segmented" | undefined;
13818
14283
  } | {
13819
14284
  options: {
13820
14285
  value: string;
@@ -13831,9 +14296,18 @@ export declare const AppPackSchema: z.ZodObject<{
13831
14296
  label: string;
13832
14297
  name: string;
13833
14298
  checked?: boolean | undefined;
14299
+ } | {
14300
+ type: "location";
14301
+ name: string;
14302
+ label?: string | undefined;
14303
+ required?: boolean | undefined;
14304
+ purpose?: string | undefined;
14305
+ precise?: boolean | undefined;
14306
+ buttonText?: string | undefined;
13834
14307
  })[] | undefined;
13835
14308
  description?: string | undefined;
13836
14309
  review?: boolean | undefined;
14310
+ diagnostics?: boolean | undefined;
13837
14311
  cancelLabel?: string | undefined;
13838
14312
  }, {
13839
14313
  title: string;
@@ -13875,11 +14349,13 @@ export declare const AppPackSchema: z.ZodObject<{
13875
14349
  options: {
13876
14350
  value: string;
13877
14351
  label: string;
14352
+ hint?: string | undefined;
13878
14353
  }[];
13879
14354
  type: "radio";
13880
14355
  name: string;
13881
14356
  value?: string | undefined;
13882
14357
  label?: string | undefined;
14358
+ style?: "cards" | "segmented" | undefined;
13883
14359
  } | {
13884
14360
  options: {
13885
14361
  value: string;
@@ -13896,6 +14372,14 @@ export declare const AppPackSchema: z.ZodObject<{
13896
14372
  label: string;
13897
14373
  name: string;
13898
14374
  checked?: boolean | undefined;
14375
+ } | {
14376
+ type: "location";
14377
+ name: string;
14378
+ label?: string | undefined;
14379
+ required?: boolean | undefined;
14380
+ purpose?: string | undefined;
14381
+ precise?: boolean | undefined;
14382
+ buttonText?: string | undefined;
13899
14383
  })[];
13900
14384
  title?: string | undefined;
13901
14385
  }[] | undefined;
@@ -13930,11 +14414,13 @@ export declare const AppPackSchema: z.ZodObject<{
13930
14414
  options: {
13931
14415
  value: string;
13932
14416
  label: string;
14417
+ hint?: string | undefined;
13933
14418
  }[];
13934
14419
  type: "radio";
13935
14420
  name: string;
13936
14421
  value?: string | undefined;
13937
14422
  label?: string | undefined;
14423
+ style?: "cards" | "segmented" | undefined;
13938
14424
  } | {
13939
14425
  options: {
13940
14426
  value: string;
@@ -13951,9 +14437,18 @@ export declare const AppPackSchema: z.ZodObject<{
13951
14437
  label: string;
13952
14438
  name: string;
13953
14439
  checked?: boolean | undefined;
14440
+ } | {
14441
+ type: "location";
14442
+ name: string;
14443
+ label?: string | undefined;
14444
+ required?: boolean | undefined;
14445
+ purpose?: string | undefined;
14446
+ precise?: boolean | undefined;
14447
+ buttonText?: string | undefined;
13954
14448
  })[] | undefined;
13955
14449
  description?: string | undefined;
13956
14450
  review?: boolean | undefined;
14451
+ diagnostics?: boolean | undefined;
13957
14452
  cancelLabel?: string | undefined;
13958
14453
  }>, "many">>;
13959
14454
  }, "strip", z.ZodTypeAny, {
@@ -14067,11 +14562,13 @@ export declare const AppPackSchema: z.ZodObject<{
14067
14562
  options: {
14068
14563
  value: string;
14069
14564
  label: string;
14565
+ hint?: string | undefined;
14070
14566
  }[];
14071
14567
  type: "radio";
14072
14568
  name: string;
14073
14569
  value?: string | undefined;
14074
14570
  label?: string | undefined;
14571
+ style?: "cards" | "segmented" | undefined;
14075
14572
  } | {
14076
14573
  options: {
14077
14574
  value: string;
@@ -14088,6 +14585,14 @@ export declare const AppPackSchema: z.ZodObject<{
14088
14585
  label: string;
14089
14586
  name: string;
14090
14587
  checked?: boolean | undefined;
14588
+ } | {
14589
+ type: "location";
14590
+ name: string;
14591
+ label?: string | undefined;
14592
+ required?: boolean | undefined;
14593
+ purpose?: string | undefined;
14594
+ precise?: boolean | undefined;
14595
+ buttonText?: string | undefined;
14091
14596
  } | {
14092
14597
  type: "button";
14093
14598
  text: string;
@@ -14101,6 +14606,7 @@ export declare const AppPackSchema: z.ZodObject<{
14101
14606
  cancel?: string | undefined;
14102
14607
  } | undefined;
14103
14608
  disabled?: boolean | undefined;
14609
+ hidden_for?: string[] | undefined;
14104
14610
  } | {
14105
14611
  type: "linkButton";
14106
14612
  text: string;
@@ -14122,6 +14628,7 @@ export declare const AppPackSchema: z.ZodObject<{
14122
14628
  cancel?: string | undefined;
14123
14629
  } | undefined;
14124
14630
  disabled?: boolean | undefined;
14631
+ hidden_for?: string[] | undefined;
14125
14632
  } | {
14126
14633
  type: "linkButton";
14127
14634
  text: string;
@@ -14149,7 +14656,6 @@ export declare const AppPackSchema: z.ZodObject<{
14149
14656
  type: "progress";
14150
14657
  value?: number | undefined;
14151
14658
  label?: string | undefined;
14152
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
14153
14659
  } | {
14154
14660
  type: "steps";
14155
14661
  items: {
@@ -14198,7 +14704,6 @@ export declare const AppPackSchema: z.ZodObject<{
14198
14704
  name: string;
14199
14705
  status?: "online" | "away" | "busy" | "offline" | undefined;
14200
14706
  initials?: string | undefined;
14201
- color?: string | undefined;
14202
14707
  src?: string | undefined;
14203
14708
  subtitle?: string | undefined;
14204
14709
  } | {
@@ -14206,7 +14711,6 @@ export declare const AppPackSchema: z.ZodObject<{
14206
14711
  people: {
14207
14712
  name: string;
14208
14713
  initials?: string | undefined;
14209
- color?: string | undefined;
14210
14714
  src?: string | undefined;
14211
14715
  }[];
14212
14716
  label?: string | undefined;
@@ -14241,7 +14745,6 @@ export declare const AppPackSchema: z.ZodObject<{
14241
14745
  type: "kanban";
14242
14746
  columns: {
14243
14747
  title: string;
14244
- id: string;
14245
14748
  cards: {
14246
14749
  title: string;
14247
14750
  id: string;
@@ -14252,6 +14755,7 @@ export declare const AppPackSchema: z.ZodObject<{
14252
14755
  } | undefined;
14253
14756
  meta?: string[] | undefined;
14254
14757
  }[];
14758
+ id: string;
14255
14759
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
14256
14760
  }[];
14257
14761
  caption?: string | undefined;
@@ -14364,11 +14868,13 @@ export declare const AppPackSchema: z.ZodObject<{
14364
14868
  options: {
14365
14869
  value: string;
14366
14870
  label: string;
14871
+ hint?: string | undefined;
14367
14872
  }[];
14368
14873
  type: "radio";
14369
14874
  name: string;
14370
14875
  value?: string | undefined;
14371
14876
  label?: string | undefined;
14877
+ style?: "cards" | "segmented" | undefined;
14372
14878
  } | {
14373
14879
  options: {
14374
14880
  value: string;
@@ -14385,6 +14891,14 @@ export declare const AppPackSchema: z.ZodObject<{
14385
14891
  label: string;
14386
14892
  name: string;
14387
14893
  checked?: boolean | undefined;
14894
+ } | {
14895
+ type: "location";
14896
+ name: string;
14897
+ label?: string | undefined;
14898
+ required?: boolean | undefined;
14899
+ purpose?: string | undefined;
14900
+ precise?: boolean | undefined;
14901
+ buttonText?: string | undefined;
14388
14902
  } | {
14389
14903
  type: "button";
14390
14904
  text: string;
@@ -14398,6 +14912,7 @@ export declare const AppPackSchema: z.ZodObject<{
14398
14912
  cancel?: string | undefined;
14399
14913
  } | undefined;
14400
14914
  disabled?: boolean | undefined;
14915
+ hidden_for?: string[] | undefined;
14401
14916
  } | {
14402
14917
  type: "linkButton";
14403
14918
  text: string;
@@ -14419,6 +14934,7 @@ export declare const AppPackSchema: z.ZodObject<{
14419
14934
  cancel?: string | undefined;
14420
14935
  } | undefined;
14421
14936
  disabled?: boolean | undefined;
14937
+ hidden_for?: string[] | undefined;
14422
14938
  } | {
14423
14939
  type: "linkButton";
14424
14940
  text: string;
@@ -14446,7 +14962,6 @@ export declare const AppPackSchema: z.ZodObject<{
14446
14962
  type: "progress";
14447
14963
  value?: number | undefined;
14448
14964
  label?: string | undefined;
14449
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
14450
14965
  } | {
14451
14966
  type: "steps";
14452
14967
  items: {
@@ -14495,7 +15010,6 @@ export declare const AppPackSchema: z.ZodObject<{
14495
15010
  name: string;
14496
15011
  status?: "online" | "away" | "busy" | "offline" | undefined;
14497
15012
  initials?: string | undefined;
14498
- color?: string | undefined;
14499
15013
  src?: string | undefined;
14500
15014
  subtitle?: string | undefined;
14501
15015
  } | {
@@ -14503,7 +15017,6 @@ export declare const AppPackSchema: z.ZodObject<{
14503
15017
  people: {
14504
15018
  name: string;
14505
15019
  initials?: string | undefined;
14506
- color?: string | undefined;
14507
15020
  src?: string | undefined;
14508
15021
  }[];
14509
15022
  label?: string | undefined;
@@ -14538,7 +15051,6 @@ export declare const AppPackSchema: z.ZodObject<{
14538
15051
  type: "kanban";
14539
15052
  columns: {
14540
15053
  title: string;
14541
- id: string;
14542
15054
  cards: {
14543
15055
  title: string;
14544
15056
  id: string;
@@ -14549,6 +15061,7 @@ export declare const AppPackSchema: z.ZodObject<{
14549
15061
  } | undefined;
14550
15062
  meta?: string[] | undefined;
14551
15063
  }[];
15064
+ id: string;
14552
15065
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
14553
15066
  }[];
14554
15067
  caption?: string | undefined;
@@ -14680,11 +15193,13 @@ export declare const AppPackSchema: z.ZodObject<{
14680
15193
  options: {
14681
15194
  value: string;
14682
15195
  label: string;
15196
+ hint?: string | undefined;
14683
15197
  }[];
14684
15198
  type: "radio";
14685
15199
  name: string;
14686
15200
  value?: string | undefined;
14687
15201
  label?: string | undefined;
15202
+ style?: "cards" | "segmented" | undefined;
14688
15203
  } | {
14689
15204
  options: {
14690
15205
  value: string;
@@ -14701,6 +15216,14 @@ export declare const AppPackSchema: z.ZodObject<{
14701
15216
  label: string;
14702
15217
  name: string;
14703
15218
  checked?: boolean | undefined;
15219
+ } | {
15220
+ type: "location";
15221
+ name: string;
15222
+ label?: string | undefined;
15223
+ required?: boolean | undefined;
15224
+ purpose?: string | undefined;
15225
+ precise?: boolean | undefined;
15226
+ buttonText?: string | undefined;
14704
15227
  } | {
14705
15228
  type: "button";
14706
15229
  text: string;
@@ -14714,6 +15237,7 @@ export declare const AppPackSchema: z.ZodObject<{
14714
15237
  cancel?: string | undefined;
14715
15238
  } | undefined;
14716
15239
  disabled?: boolean | undefined;
15240
+ hidden_for?: string[] | undefined;
14717
15241
  } | {
14718
15242
  type: "linkButton";
14719
15243
  text: string;
@@ -14735,6 +15259,7 @@ export declare const AppPackSchema: z.ZodObject<{
14735
15259
  cancel?: string | undefined;
14736
15260
  } | undefined;
14737
15261
  disabled?: boolean | undefined;
15262
+ hidden_for?: string[] | undefined;
14738
15263
  } | {
14739
15264
  type: "linkButton";
14740
15265
  text: string;
@@ -14762,7 +15287,6 @@ export declare const AppPackSchema: z.ZodObject<{
14762
15287
  type: "progress";
14763
15288
  value?: number | undefined;
14764
15289
  label?: string | undefined;
14765
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
14766
15290
  } | {
14767
15291
  type: "steps";
14768
15292
  items: {
@@ -14811,7 +15335,6 @@ export declare const AppPackSchema: z.ZodObject<{
14811
15335
  name: string;
14812
15336
  status?: "online" | "away" | "busy" | "offline" | undefined;
14813
15337
  initials?: string | undefined;
14814
- color?: string | undefined;
14815
15338
  src?: string | undefined;
14816
15339
  subtitle?: string | undefined;
14817
15340
  } | {
@@ -14819,7 +15342,6 @@ export declare const AppPackSchema: z.ZodObject<{
14819
15342
  people: {
14820
15343
  name: string;
14821
15344
  initials?: string | undefined;
14822
- color?: string | undefined;
14823
15345
  src?: string | undefined;
14824
15346
  }[];
14825
15347
  label?: string | undefined;
@@ -14854,7 +15376,6 @@ export declare const AppPackSchema: z.ZodObject<{
14854
15376
  type: "kanban";
14855
15377
  columns: {
14856
15378
  title: string;
14857
- id: string;
14858
15379
  cards: {
14859
15380
  title: string;
14860
15381
  id: string;
@@ -14865,6 +15386,7 @@ export declare const AppPackSchema: z.ZodObject<{
14865
15386
  } | undefined;
14866
15387
  meta?: string[] | undefined;
14867
15388
  }[];
15389
+ id: string;
14868
15390
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
14869
15391
  }[];
14870
15392
  caption?: string | undefined;
@@ -14977,11 +15499,13 @@ export declare const AppPackSchema: z.ZodObject<{
14977
15499
  options: {
14978
15500
  value: string;
14979
15501
  label: string;
15502
+ hint?: string | undefined;
14980
15503
  }[];
14981
15504
  type: "radio";
14982
15505
  name: string;
14983
15506
  value?: string | undefined;
14984
15507
  label?: string | undefined;
15508
+ style?: "cards" | "segmented" | undefined;
14985
15509
  } | {
14986
15510
  options: {
14987
15511
  value: string;
@@ -14998,6 +15522,14 @@ export declare const AppPackSchema: z.ZodObject<{
14998
15522
  label: string;
14999
15523
  name: string;
15000
15524
  checked?: boolean | undefined;
15525
+ } | {
15526
+ type: "location";
15527
+ name: string;
15528
+ label?: string | undefined;
15529
+ required?: boolean | undefined;
15530
+ purpose?: string | undefined;
15531
+ precise?: boolean | undefined;
15532
+ buttonText?: string | undefined;
15001
15533
  } | {
15002
15534
  type: "button";
15003
15535
  text: string;
@@ -15011,6 +15543,7 @@ export declare const AppPackSchema: z.ZodObject<{
15011
15543
  cancel?: string | undefined;
15012
15544
  } | undefined;
15013
15545
  disabled?: boolean | undefined;
15546
+ hidden_for?: string[] | undefined;
15014
15547
  } | {
15015
15548
  type: "linkButton";
15016
15549
  text: string;
@@ -15032,6 +15565,7 @@ export declare const AppPackSchema: z.ZodObject<{
15032
15565
  cancel?: string | undefined;
15033
15566
  } | undefined;
15034
15567
  disabled?: boolean | undefined;
15568
+ hidden_for?: string[] | undefined;
15035
15569
  } | {
15036
15570
  type: "linkButton";
15037
15571
  text: string;
@@ -15059,7 +15593,6 @@ export declare const AppPackSchema: z.ZodObject<{
15059
15593
  type: "progress";
15060
15594
  value?: number | undefined;
15061
15595
  label?: string | undefined;
15062
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
15063
15596
  } | {
15064
15597
  type: "steps";
15065
15598
  items: {
@@ -15108,7 +15641,6 @@ export declare const AppPackSchema: z.ZodObject<{
15108
15641
  name: string;
15109
15642
  status?: "online" | "away" | "busy" | "offline" | undefined;
15110
15643
  initials?: string | undefined;
15111
- color?: string | undefined;
15112
15644
  src?: string | undefined;
15113
15645
  subtitle?: string | undefined;
15114
15646
  } | {
@@ -15116,7 +15648,6 @@ export declare const AppPackSchema: z.ZodObject<{
15116
15648
  people: {
15117
15649
  name: string;
15118
15650
  initials?: string | undefined;
15119
- color?: string | undefined;
15120
15651
  src?: string | undefined;
15121
15652
  }[];
15122
15653
  label?: string | undefined;
@@ -15151,7 +15682,6 @@ export declare const AppPackSchema: z.ZodObject<{
15151
15682
  type: "kanban";
15152
15683
  columns: {
15153
15684
  title: string;
15154
- id: string;
15155
15685
  cards: {
15156
15686
  title: string;
15157
15687
  id: string;
@@ -15162,6 +15692,7 @@ export declare const AppPackSchema: z.ZodObject<{
15162
15692
  } | undefined;
15163
15693
  meta?: string[] | undefined;
15164
15694
  }[];
15695
+ id: string;
15165
15696
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
15166
15697
  }[];
15167
15698
  caption?: string | undefined;
@@ -15221,8 +15752,8 @@ export declare const AppPackSchema: z.ZodObject<{
15221
15752
  commands?: {
15222
15753
  label: string;
15223
15754
  trigger: string;
15224
- action_id?: string | undefined;
15225
15755
  hint?: string | undefined;
15756
+ action_id?: string | undefined;
15226
15757
  arg?: string | undefined;
15227
15758
  }[] | undefined;
15228
15759
  quickActions?: {
@@ -15243,8 +15774,8 @@ export declare const AppPackSchema: z.ZodObject<{
15243
15774
  entries: {
15244
15775
  label: string;
15245
15776
  id: string;
15246
- glyph?: string | undefined;
15247
15777
  hint?: string | undefined;
15778
+ glyph?: string | undefined;
15248
15779
  keywords?: string[] | undefined;
15249
15780
  }[];
15250
15781
  id: string;
@@ -15306,11 +15837,13 @@ export declare const AppPackSchema: z.ZodObject<{
15306
15837
  options: {
15307
15838
  value: string;
15308
15839
  label: string;
15840
+ hint?: string | undefined;
15309
15841
  }[];
15310
15842
  type: "radio";
15311
15843
  name: string;
15312
15844
  value?: string | undefined;
15313
15845
  label?: string | undefined;
15846
+ style?: "cards" | "segmented" | undefined;
15314
15847
  } | {
15315
15848
  options: {
15316
15849
  value: string;
@@ -15327,6 +15860,14 @@ export declare const AppPackSchema: z.ZodObject<{
15327
15860
  label: string;
15328
15861
  name: string;
15329
15862
  checked?: boolean | undefined;
15863
+ } | {
15864
+ type: "location";
15865
+ name: string;
15866
+ label?: string | undefined;
15867
+ required?: boolean | undefined;
15868
+ purpose?: string | undefined;
15869
+ precise?: boolean | undefined;
15870
+ buttonText?: string | undefined;
15330
15871
  })[];
15331
15872
  title?: string | undefined;
15332
15873
  }[] | undefined;
@@ -15361,11 +15902,13 @@ export declare const AppPackSchema: z.ZodObject<{
15361
15902
  options: {
15362
15903
  value: string;
15363
15904
  label: string;
15905
+ hint?: string | undefined;
15364
15906
  }[];
15365
15907
  type: "radio";
15366
15908
  name: string;
15367
15909
  value?: string | undefined;
15368
15910
  label?: string | undefined;
15911
+ style?: "cards" | "segmented" | undefined;
15369
15912
  } | {
15370
15913
  options: {
15371
15914
  value: string;
@@ -15382,9 +15925,18 @@ export declare const AppPackSchema: z.ZodObject<{
15382
15925
  label: string;
15383
15926
  name: string;
15384
15927
  checked?: boolean | undefined;
15928
+ } | {
15929
+ type: "location";
15930
+ name: string;
15931
+ label?: string | undefined;
15932
+ required?: boolean | undefined;
15933
+ purpose?: string | undefined;
15934
+ precise?: boolean | undefined;
15935
+ buttonText?: string | undefined;
15385
15936
  })[] | undefined;
15386
15937
  description?: string | undefined;
15387
15938
  review?: boolean | undefined;
15939
+ diagnostics?: boolean | undefined;
15388
15940
  cancelLabel?: string | undefined;
15389
15941
  }[] | undefined;
15390
15942
  displayName?: string | undefined;
@@ -15396,8 +15948,8 @@ export declare const AppPackSchema: z.ZodObject<{
15396
15948
  label: string;
15397
15949
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
15398
15950
  } | undefined;
15399
- glyph?: string | undefined;
15400
15951
  hint?: string | undefined;
15952
+ glyph?: string | undefined;
15401
15953
  }[];
15402
15954
  id: string;
15403
15955
  label?: string | undefined;
@@ -15531,11 +16083,13 @@ export declare const AppPackSchema: z.ZodObject<{
15531
16083
  options: {
15532
16084
  value: string;
15533
16085
  label: string;
16086
+ hint?: string | undefined;
15534
16087
  }[];
15535
16088
  type: "radio";
15536
16089
  name: string;
15537
16090
  value?: string | undefined;
15538
16091
  label?: string | undefined;
16092
+ style?: "cards" | "segmented" | undefined;
15539
16093
  } | {
15540
16094
  options: {
15541
16095
  value: string;
@@ -15552,6 +16106,14 @@ export declare const AppPackSchema: z.ZodObject<{
15552
16106
  label: string;
15553
16107
  name: string;
15554
16108
  checked?: boolean | undefined;
16109
+ } | {
16110
+ type: "location";
16111
+ name: string;
16112
+ label?: string | undefined;
16113
+ required?: boolean | undefined;
16114
+ purpose?: string | undefined;
16115
+ precise?: boolean | undefined;
16116
+ buttonText?: string | undefined;
15555
16117
  } | {
15556
16118
  type: "button";
15557
16119
  text: string;
@@ -15565,6 +16127,7 @@ export declare const AppPackSchema: z.ZodObject<{
15565
16127
  cancel?: string | undefined;
15566
16128
  } | undefined;
15567
16129
  disabled?: boolean | undefined;
16130
+ hidden_for?: string[] | undefined;
15568
16131
  } | {
15569
16132
  type: "linkButton";
15570
16133
  text: string;
@@ -15586,6 +16149,7 @@ export declare const AppPackSchema: z.ZodObject<{
15586
16149
  cancel?: string | undefined;
15587
16150
  } | undefined;
15588
16151
  disabled?: boolean | undefined;
16152
+ hidden_for?: string[] | undefined;
15589
16153
  } | {
15590
16154
  type: "linkButton";
15591
16155
  text: string;
@@ -15613,7 +16177,6 @@ export declare const AppPackSchema: z.ZodObject<{
15613
16177
  type: "progress";
15614
16178
  value?: number | undefined;
15615
16179
  label?: string | undefined;
15616
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
15617
16180
  } | {
15618
16181
  type: "steps";
15619
16182
  items: {
@@ -15662,7 +16225,6 @@ export declare const AppPackSchema: z.ZodObject<{
15662
16225
  name: string;
15663
16226
  status?: "online" | "away" | "busy" | "offline" | undefined;
15664
16227
  initials?: string | undefined;
15665
- color?: string | undefined;
15666
16228
  src?: string | undefined;
15667
16229
  subtitle?: string | undefined;
15668
16230
  } | {
@@ -15670,7 +16232,6 @@ export declare const AppPackSchema: z.ZodObject<{
15670
16232
  people: {
15671
16233
  name: string;
15672
16234
  initials?: string | undefined;
15673
- color?: string | undefined;
15674
16235
  src?: string | undefined;
15675
16236
  }[];
15676
16237
  label?: string | undefined;
@@ -15705,7 +16266,6 @@ export declare const AppPackSchema: z.ZodObject<{
15705
16266
  type: "kanban";
15706
16267
  columns: {
15707
16268
  title: string;
15708
- id: string;
15709
16269
  cards: {
15710
16270
  title: string;
15711
16271
  id: string;
@@ -15716,6 +16276,7 @@ export declare const AppPackSchema: z.ZodObject<{
15716
16276
  } | undefined;
15717
16277
  meta?: string[] | undefined;
15718
16278
  }[];
16279
+ id: string;
15719
16280
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
15720
16281
  }[];
15721
16282
  caption?: string | undefined;
@@ -15812,11 +16373,13 @@ export declare const AppPackSchema: z.ZodObject<{
15812
16373
  options: {
15813
16374
  value: string;
15814
16375
  label: string;
16376
+ hint?: string | undefined;
15815
16377
  }[];
15816
16378
  type: "radio";
15817
16379
  name: string;
15818
16380
  value?: string | undefined;
15819
16381
  label?: string | undefined;
16382
+ style?: "cards" | "segmented" | undefined;
15820
16383
  } | {
15821
16384
  options: {
15822
16385
  value: string;
@@ -15833,6 +16396,14 @@ export declare const AppPackSchema: z.ZodObject<{
15833
16396
  label: string;
15834
16397
  name: string;
15835
16398
  checked?: boolean | undefined;
16399
+ } | {
16400
+ type: "location";
16401
+ name: string;
16402
+ label?: string | undefined;
16403
+ required?: boolean | undefined;
16404
+ purpose?: string | undefined;
16405
+ precise?: boolean | undefined;
16406
+ buttonText?: string | undefined;
15836
16407
  } | {
15837
16408
  type: "button";
15838
16409
  text: string;
@@ -15846,6 +16417,7 @@ export declare const AppPackSchema: z.ZodObject<{
15846
16417
  cancel?: string | undefined;
15847
16418
  } | undefined;
15848
16419
  disabled?: boolean | undefined;
16420
+ hidden_for?: string[] | undefined;
15849
16421
  } | {
15850
16422
  type: "linkButton";
15851
16423
  text: string;
@@ -15867,6 +16439,7 @@ export declare const AppPackSchema: z.ZodObject<{
15867
16439
  cancel?: string | undefined;
15868
16440
  } | undefined;
15869
16441
  disabled?: boolean | undefined;
16442
+ hidden_for?: string[] | undefined;
15870
16443
  } | {
15871
16444
  type: "linkButton";
15872
16445
  text: string;
@@ -15894,7 +16467,6 @@ export declare const AppPackSchema: z.ZodObject<{
15894
16467
  type: "progress";
15895
16468
  value?: number | undefined;
15896
16469
  label?: string | undefined;
15897
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
15898
16470
  } | {
15899
16471
  type: "steps";
15900
16472
  items: {
@@ -15943,7 +16515,6 @@ export declare const AppPackSchema: z.ZodObject<{
15943
16515
  name: string;
15944
16516
  status?: "online" | "away" | "busy" | "offline" | undefined;
15945
16517
  initials?: string | undefined;
15946
- color?: string | undefined;
15947
16518
  src?: string | undefined;
15948
16519
  subtitle?: string | undefined;
15949
16520
  } | {
@@ -15951,7 +16522,6 @@ export declare const AppPackSchema: z.ZodObject<{
15951
16522
  people: {
15952
16523
  name: string;
15953
16524
  initials?: string | undefined;
15954
- color?: string | undefined;
15955
16525
  src?: string | undefined;
15956
16526
  }[];
15957
16527
  label?: string | undefined;
@@ -15986,7 +16556,6 @@ export declare const AppPackSchema: z.ZodObject<{
15986
16556
  type: "kanban";
15987
16557
  columns: {
15988
16558
  title: string;
15989
- id: string;
15990
16559
  cards: {
15991
16560
  title: string;
15992
16561
  id: string;
@@ -15997,6 +16566,7 @@ export declare const AppPackSchema: z.ZodObject<{
15997
16566
  } | undefined;
15998
16567
  meta?: string[] | undefined;
15999
16568
  }[];
16569
+ id: string;
16000
16570
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
16001
16571
  }[];
16002
16572
  caption?: string | undefined;
@@ -16144,11 +16714,13 @@ export declare const AppPackSchema: z.ZodObject<{
16144
16714
  options: {
16145
16715
  value: string;
16146
16716
  label: string;
16717
+ hint?: string | undefined;
16147
16718
  }[];
16148
16719
  type: "radio";
16149
16720
  name: string;
16150
16721
  value?: string | undefined;
16151
16722
  label?: string | undefined;
16723
+ style?: "cards" | "segmented" | undefined;
16152
16724
  } | {
16153
16725
  options: {
16154
16726
  value: string;
@@ -16165,6 +16737,14 @@ export declare const AppPackSchema: z.ZodObject<{
16165
16737
  label: string;
16166
16738
  name: string;
16167
16739
  checked?: boolean | undefined;
16740
+ } | {
16741
+ type: "location";
16742
+ name: string;
16743
+ label?: string | undefined;
16744
+ required?: boolean | undefined;
16745
+ purpose?: string | undefined;
16746
+ precise?: boolean | undefined;
16747
+ buttonText?: string | undefined;
16168
16748
  } | {
16169
16749
  type: "button";
16170
16750
  text: string;
@@ -16178,6 +16758,7 @@ export declare const AppPackSchema: z.ZodObject<{
16178
16758
  cancel?: string | undefined;
16179
16759
  } | undefined;
16180
16760
  disabled?: boolean | undefined;
16761
+ hidden_for?: string[] | undefined;
16181
16762
  } | {
16182
16763
  type: "linkButton";
16183
16764
  text: string;
@@ -16199,6 +16780,7 @@ export declare const AppPackSchema: z.ZodObject<{
16199
16780
  cancel?: string | undefined;
16200
16781
  } | undefined;
16201
16782
  disabled?: boolean | undefined;
16783
+ hidden_for?: string[] | undefined;
16202
16784
  } | {
16203
16785
  type: "linkButton";
16204
16786
  text: string;
@@ -16226,7 +16808,6 @@ export declare const AppPackSchema: z.ZodObject<{
16226
16808
  type: "progress";
16227
16809
  value?: number | undefined;
16228
16810
  label?: string | undefined;
16229
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
16230
16811
  } | {
16231
16812
  type: "steps";
16232
16813
  items: {
@@ -16275,7 +16856,6 @@ export declare const AppPackSchema: z.ZodObject<{
16275
16856
  name: string;
16276
16857
  status?: "online" | "away" | "busy" | "offline" | undefined;
16277
16858
  initials?: string | undefined;
16278
- color?: string | undefined;
16279
16859
  src?: string | undefined;
16280
16860
  subtitle?: string | undefined;
16281
16861
  } | {
@@ -16283,7 +16863,6 @@ export declare const AppPackSchema: z.ZodObject<{
16283
16863
  people: {
16284
16864
  name: string;
16285
16865
  initials?: string | undefined;
16286
- color?: string | undefined;
16287
16866
  src?: string | undefined;
16288
16867
  }[];
16289
16868
  label?: string | undefined;
@@ -16318,7 +16897,6 @@ export declare const AppPackSchema: z.ZodObject<{
16318
16897
  type: "kanban";
16319
16898
  columns: {
16320
16899
  title: string;
16321
- id: string;
16322
16900
  cards: {
16323
16901
  title: string;
16324
16902
  id: string;
@@ -16329,6 +16907,7 @@ export declare const AppPackSchema: z.ZodObject<{
16329
16907
  } | undefined;
16330
16908
  meta?: string[] | undefined;
16331
16909
  }[];
16910
+ id: string;
16332
16911
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
16333
16912
  }[];
16334
16913
  caption?: string | undefined;
@@ -16425,11 +17004,13 @@ export declare const AppPackSchema: z.ZodObject<{
16425
17004
  options: {
16426
17005
  value: string;
16427
17006
  label: string;
17007
+ hint?: string | undefined;
16428
17008
  }[];
16429
17009
  type: "radio";
16430
17010
  name: string;
16431
17011
  value?: string | undefined;
16432
17012
  label?: string | undefined;
17013
+ style?: "cards" | "segmented" | undefined;
16433
17014
  } | {
16434
17015
  options: {
16435
17016
  value: string;
@@ -16446,6 +17027,14 @@ export declare const AppPackSchema: z.ZodObject<{
16446
17027
  label: string;
16447
17028
  name: string;
16448
17029
  checked?: boolean | undefined;
17030
+ } | {
17031
+ type: "location";
17032
+ name: string;
17033
+ label?: string | undefined;
17034
+ required?: boolean | undefined;
17035
+ purpose?: string | undefined;
17036
+ precise?: boolean | undefined;
17037
+ buttonText?: string | undefined;
16449
17038
  } | {
16450
17039
  type: "button";
16451
17040
  text: string;
@@ -16459,6 +17048,7 @@ export declare const AppPackSchema: z.ZodObject<{
16459
17048
  cancel?: string | undefined;
16460
17049
  } | undefined;
16461
17050
  disabled?: boolean | undefined;
17051
+ hidden_for?: string[] | undefined;
16462
17052
  } | {
16463
17053
  type: "linkButton";
16464
17054
  text: string;
@@ -16480,6 +17070,7 @@ export declare const AppPackSchema: z.ZodObject<{
16480
17070
  cancel?: string | undefined;
16481
17071
  } | undefined;
16482
17072
  disabled?: boolean | undefined;
17073
+ hidden_for?: string[] | undefined;
16483
17074
  } | {
16484
17075
  type: "linkButton";
16485
17076
  text: string;
@@ -16507,7 +17098,6 @@ export declare const AppPackSchema: z.ZodObject<{
16507
17098
  type: "progress";
16508
17099
  value?: number | undefined;
16509
17100
  label?: string | undefined;
16510
- tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
16511
17101
  } | {
16512
17102
  type: "steps";
16513
17103
  items: {
@@ -16556,7 +17146,6 @@ export declare const AppPackSchema: z.ZodObject<{
16556
17146
  name: string;
16557
17147
  status?: "online" | "away" | "busy" | "offline" | undefined;
16558
17148
  initials?: string | undefined;
16559
- color?: string | undefined;
16560
17149
  src?: string | undefined;
16561
17150
  subtitle?: string | undefined;
16562
17151
  } | {
@@ -16564,7 +17153,6 @@ export declare const AppPackSchema: z.ZodObject<{
16564
17153
  people: {
16565
17154
  name: string;
16566
17155
  initials?: string | undefined;
16567
- color?: string | undefined;
16568
17156
  src?: string | undefined;
16569
17157
  }[];
16570
17158
  label?: string | undefined;
@@ -16599,7 +17187,6 @@ export declare const AppPackSchema: z.ZodObject<{
16599
17187
  type: "kanban";
16600
17188
  columns: {
16601
17189
  title: string;
16602
- id: string;
16603
17190
  cards: {
16604
17191
  title: string;
16605
17192
  id: string;
@@ -16610,6 +17197,7 @@ export declare const AppPackSchema: z.ZodObject<{
16610
17197
  } | undefined;
16611
17198
  meta?: string[] | undefined;
16612
17199
  }[];
17200
+ id: string;
16613
17201
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
16614
17202
  }[];
16615
17203
  caption?: string | undefined;
@@ -16668,8 +17256,8 @@ export declare const AppPackSchema: z.ZodObject<{
16668
17256
  commands?: {
16669
17257
  label: string;
16670
17258
  trigger: string;
16671
- action_id?: string | undefined;
16672
17259
  hint?: string | undefined;
17260
+ action_id?: string | undefined;
16673
17261
  arg?: string | undefined;
16674
17262
  }[] | undefined;
16675
17263
  quickActions?: {
@@ -16690,8 +17278,8 @@ export declare const AppPackSchema: z.ZodObject<{
16690
17278
  entries: {
16691
17279
  label: string;
16692
17280
  id: string;
16693
- glyph?: string | undefined;
16694
17281
  hint?: string | undefined;
17282
+ glyph?: string | undefined;
16695
17283
  keywords?: string[] | undefined;
16696
17284
  }[];
16697
17285
  id: string;
@@ -16753,11 +17341,13 @@ export declare const AppPackSchema: z.ZodObject<{
16753
17341
  options: {
16754
17342
  value: string;
16755
17343
  label: string;
17344
+ hint?: string | undefined;
16756
17345
  }[];
16757
17346
  type: "radio";
16758
17347
  name: string;
16759
17348
  value?: string | undefined;
16760
17349
  label?: string | undefined;
17350
+ style?: "cards" | "segmented" | undefined;
16761
17351
  } | {
16762
17352
  options: {
16763
17353
  value: string;
@@ -16774,6 +17364,14 @@ export declare const AppPackSchema: z.ZodObject<{
16774
17364
  label: string;
16775
17365
  name: string;
16776
17366
  checked?: boolean | undefined;
17367
+ } | {
17368
+ type: "location";
17369
+ name: string;
17370
+ label?: string | undefined;
17371
+ required?: boolean | undefined;
17372
+ purpose?: string | undefined;
17373
+ precise?: boolean | undefined;
17374
+ buttonText?: string | undefined;
16777
17375
  })[];
16778
17376
  title?: string | undefined;
16779
17377
  }[] | undefined;
@@ -16808,11 +17406,13 @@ export declare const AppPackSchema: z.ZodObject<{
16808
17406
  options: {
16809
17407
  value: string;
16810
17408
  label: string;
17409
+ hint?: string | undefined;
16811
17410
  }[];
16812
17411
  type: "radio";
16813
17412
  name: string;
16814
17413
  value?: string | undefined;
16815
17414
  label?: string | undefined;
17415
+ style?: "cards" | "segmented" | undefined;
16816
17416
  } | {
16817
17417
  options: {
16818
17418
  value: string;
@@ -16829,9 +17429,18 @@ export declare const AppPackSchema: z.ZodObject<{
16829
17429
  label: string;
16830
17430
  name: string;
16831
17431
  checked?: boolean | undefined;
17432
+ } | {
17433
+ type: "location";
17434
+ name: string;
17435
+ label?: string | undefined;
17436
+ required?: boolean | undefined;
17437
+ purpose?: string | undefined;
17438
+ precise?: boolean | undefined;
17439
+ buttonText?: string | undefined;
16832
17440
  })[] | undefined;
16833
17441
  description?: string | undefined;
16834
17442
  review?: boolean | undefined;
17443
+ diagnostics?: boolean | undefined;
16835
17444
  cancelLabel?: string | undefined;
16836
17445
  }[] | undefined;
16837
17446
  displayName?: string | undefined;
@@ -16843,8 +17452,8 @@ export declare const AppPackSchema: z.ZodObject<{
16843
17452
  label: string;
16844
17453
  tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
16845
17454
  } | undefined;
16846
- glyph?: string | undefined;
16847
17455
  hint?: string | undefined;
17456
+ glyph?: string | undefined;
16848
17457
  }[];
16849
17458
  id: string;
16850
17459
  label?: string | undefined;