@openframe-org/criteria-set-protocol 2.1.4 → 2.1.5

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.
@@ -49,25 +49,49 @@ export declare const themeStyleSchema: z.ZodObject<{
49
49
  blue: number;
50
50
  };
51
51
  }>;
52
- export declare const themeOptionsSchema: z.ZodObject<{
53
- breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
54
- hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
55
- documentTreeFolderTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
56
- hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
52
+ export declare const themeOptionsSchema: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
57
53
  hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
58
54
  }, "strip", z.ZodTypeAny, {
59
- breadcrumbTextFormat: string;
60
- documentTreeFolderTextFormat: string;
61
- hideFromBreadcrumbs: boolean;
62
- hideFromDocumentTree: boolean;
63
55
  hideCodeInReport: boolean;
64
56
  }, {
65
- breadcrumbTextFormat?: string | undefined;
66
- documentTreeFolderTextFormat?: string | undefined;
67
- hideFromBreadcrumbs?: boolean | undefined;
68
- hideFromDocumentTree?: boolean | undefined;
69
57
  hideCodeInReport?: boolean | undefined;
70
- }>;
58
+ }>, z.ZodUnion<[z.ZodObject<{
59
+ hideFromBreadcrumbs: z.ZodLiteral<true>;
60
+ breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ hideFromBreadcrumbs: true;
63
+ breadcrumbTextFormat?: undefined;
64
+ }, {
65
+ hideFromBreadcrumbs: true;
66
+ breadcrumbTextFormat?: undefined;
67
+ }>, z.ZodObject<{
68
+ hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodLiteral<false>>>;
69
+ breadcrumbTextFormat: z.ZodString;
70
+ }, "strip", z.ZodTypeAny, {
71
+ hideFromBreadcrumbs: false;
72
+ breadcrumbTextFormat: string;
73
+ }, {
74
+ breadcrumbTextFormat: string;
75
+ hideFromBreadcrumbs?: false | undefined;
76
+ }>]>>, z.ZodUnion<[z.ZodObject<{
77
+ hideFromDocumentTree: z.ZodLiteral<true>;
78
+ documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
79
+ }, "strip", z.ZodTypeAny, {
80
+ hideFromDocumentTree: true;
81
+ documentTreeFolderTextFormat?: undefined;
82
+ }, {
83
+ hideFromDocumentTree: true;
84
+ documentTreeFolderTextFormat?: undefined;
85
+ }>, z.ZodObject<{
86
+ hideFromDocumentTree: z.ZodOptional<z.ZodLiteral<false>>;
87
+ documentTreeFolderTextFormat: z.ZodString;
88
+ }, "strip", z.ZodTypeAny, {
89
+ documentTreeFolderTextFormat: string;
90
+ hideFromDocumentTree?: false | undefined;
91
+ }, {
92
+ documentTreeFolderTextFormat: string;
93
+ hideFromDocumentTree?: false | undefined;
94
+ }>]>>;
71
95
  export declare const themeSchema: z.ZodObject<{
72
96
  title: z.ZodString;
73
97
  longFormTitle: z.ZodOptional<z.ZodString>;
@@ -914,23 +938,28 @@ export declare const themeSchema: z.ZodObject<{
914
938
  sortOrder?: number | undefined;
915
939
  valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
916
940
  }>>, "many">;
917
- options: z.ZodOptional<z.ZodObject<{
918
- breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
919
- documentTreeFolderTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
941
+ options: z.ZodObject<{
942
+ breadcrumbTextFormat: z.ZodString;
943
+ documentTreeFolderTextFormat: z.ZodString;
920
944
  showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
921
945
  }, "strip", z.ZodTypeAny, {
922
946
  breadcrumbTextFormat: string;
923
947
  documentTreeFolderTextFormat: string;
924
948
  showCodeAsIndicatorTaskViewTitle: boolean;
925
949
  }, {
926
- breadcrumbTextFormat?: string | undefined;
927
- documentTreeFolderTextFormat?: string | undefined;
950
+ breadcrumbTextFormat: string;
951
+ documentTreeFolderTextFormat: string;
928
952
  showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
929
- }>>;
953
+ }>;
930
954
  }, "strip", z.ZodTypeAny, {
931
955
  code: string;
932
956
  type: "task";
933
957
  title: string;
958
+ options: {
959
+ breadcrumbTextFormat: string;
960
+ documentTreeFolderTextFormat: string;
961
+ showCodeAsIndicatorTaskViewTitle: boolean;
962
+ };
934
963
  items: {
935
964
  code: string;
936
965
  type: "task-item";
@@ -1029,11 +1058,6 @@ export declare const themeSchema: z.ZodObject<{
1029
1058
  step?: number | undefined;
1030
1059
  readOnly?: boolean | undefined;
1031
1060
  } | undefined;
1032
- options?: {
1033
- breadcrumbTextFormat: string;
1034
- documentTreeFolderTextFormat: string;
1035
- showCodeAsIndicatorTaskViewTitle: boolean;
1036
- } | undefined;
1037
1061
  description?: string | undefined;
1038
1062
  longFormTitle?: string | undefined;
1039
1063
  tags?: string[] | undefined;
@@ -1057,6 +1081,11 @@ export declare const themeSchema: z.ZodObject<{
1057
1081
  code: string;
1058
1082
  type: "task";
1059
1083
  title: string;
1084
+ options: {
1085
+ breadcrumbTextFormat: string;
1086
+ documentTreeFolderTextFormat: string;
1087
+ showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
1088
+ };
1060
1089
  items: {
1061
1090
  code: string;
1062
1091
  type: "task-item";
@@ -1155,11 +1184,6 @@ export declare const themeSchema: z.ZodObject<{
1155
1184
  step?: number | undefined;
1156
1185
  readOnly?: boolean | undefined;
1157
1186
  } | undefined;
1158
- options?: {
1159
- breadcrumbTextFormat?: string | undefined;
1160
- documentTreeFolderTextFormat?: string | undefined;
1161
- showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
1162
- } | undefined;
1163
1187
  description?: string | undefined;
1164
1188
  longFormTitle?: string | undefined;
1165
1189
  tags?: string[] | undefined;
@@ -1180,7 +1204,6 @@ export declare const themeSchema: z.ZodObject<{
1180
1204
  })[] | undefined;
1181
1205
  sortOrder?: number | undefined;
1182
1206
  }>>, "many">;
1183
- options: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
1184
1207
  }, "strip", z.ZodTypeAny, {
1185
1208
  code: string;
1186
1209
  type: "task-group";
@@ -1189,6 +1212,11 @@ export declare const themeSchema: z.ZodObject<{
1189
1212
  code: string;
1190
1213
  type: "task";
1191
1214
  title: string;
1215
+ options: {
1216
+ breadcrumbTextFormat: string;
1217
+ documentTreeFolderTextFormat: string;
1218
+ showCodeAsIndicatorTaskViewTitle: boolean;
1219
+ };
1192
1220
  items: {
1193
1221
  code: string;
1194
1222
  type: "task-item";
@@ -1287,11 +1315,6 @@ export declare const themeSchema: z.ZodObject<{
1287
1315
  step?: number | undefined;
1288
1316
  readOnly?: boolean | undefined;
1289
1317
  } | undefined;
1290
- options?: {
1291
- breadcrumbTextFormat: string;
1292
- documentTreeFolderTextFormat: string;
1293
- showCodeAsIndicatorTaskViewTitle: boolean;
1294
- } | undefined;
1295
1318
  description?: string | undefined;
1296
1319
  longFormTitle?: string | undefined;
1297
1320
  tags?: string[] | undefined;
@@ -1324,7 +1347,6 @@ export declare const themeSchema: z.ZodObject<{
1324
1347
  step?: number | undefined;
1325
1348
  readOnly?: boolean | undefined;
1326
1349
  } | undefined;
1327
- options?: {} | undefined;
1328
1350
  description?: string | undefined;
1329
1351
  longFormTitle?: string | undefined;
1330
1352
  tags?: string[] | undefined;
@@ -1353,6 +1375,11 @@ export declare const themeSchema: z.ZodObject<{
1353
1375
  code: string;
1354
1376
  type: "task";
1355
1377
  title: string;
1378
+ options: {
1379
+ breadcrumbTextFormat: string;
1380
+ documentTreeFolderTextFormat: string;
1381
+ showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
1382
+ };
1356
1383
  items: {
1357
1384
  code: string;
1358
1385
  type: "task-item";
@@ -1451,11 +1478,6 @@ export declare const themeSchema: z.ZodObject<{
1451
1478
  step?: number | undefined;
1452
1479
  readOnly?: boolean | undefined;
1453
1480
  } | undefined;
1454
- options?: {
1455
- breadcrumbTextFormat?: string | undefined;
1456
- documentTreeFolderTextFormat?: string | undefined;
1457
- showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
1458
- } | undefined;
1459
1481
  description?: string | undefined;
1460
1482
  longFormTitle?: string | undefined;
1461
1483
  tags?: string[] | undefined;
@@ -1488,7 +1510,6 @@ export declare const themeSchema: z.ZodObject<{
1488
1510
  step?: number | undefined;
1489
1511
  readOnly?: boolean | undefined;
1490
1512
  } | undefined;
1491
- options?: {} | undefined;
1492
1513
  description?: string | undefined;
1493
1514
  longFormTitle?: string | undefined;
1494
1515
  tags?: string[] | undefined;
@@ -1510,29 +1531,68 @@ export declare const themeSchema: z.ZodObject<{
1510
1531
  sortOrder?: number | undefined;
1511
1532
  category?: string | undefined;
1512
1533
  }>>, "many">;
1513
- options: z.ZodOptional<z.ZodObject<{
1514
- breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1515
- documentTreeFolderTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1516
- hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1517
- hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1534
+ options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1518
1535
  hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1519
1536
  }, "strip", z.ZodTypeAny, {
1520
- breadcrumbTextFormat: string;
1521
- documentTreeFolderTextFormat: string;
1522
- hideFromBreadcrumbs: boolean;
1523
- hideFromDocumentTree: boolean;
1524
1537
  hideCodeInReport: boolean;
1525
1538
  }, {
1526
- breadcrumbTextFormat?: string | undefined;
1527
- documentTreeFolderTextFormat?: string | undefined;
1528
- hideFromBreadcrumbs?: boolean | undefined;
1529
- hideFromDocumentTree?: boolean | undefined;
1530
1539
  hideCodeInReport?: boolean | undefined;
1531
- }>>;
1540
+ }>, z.ZodUnion<[z.ZodObject<{
1541
+ hideFromBreadcrumbs: z.ZodLiteral<true>;
1542
+ breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
1543
+ }, "strip", z.ZodTypeAny, {
1544
+ hideFromBreadcrumbs: true;
1545
+ breadcrumbTextFormat?: undefined;
1546
+ }, {
1547
+ hideFromBreadcrumbs: true;
1548
+ breadcrumbTextFormat?: undefined;
1549
+ }>, z.ZodObject<{
1550
+ hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodLiteral<false>>>;
1551
+ breadcrumbTextFormat: z.ZodString;
1552
+ }, "strip", z.ZodTypeAny, {
1553
+ hideFromBreadcrumbs: false;
1554
+ breadcrumbTextFormat: string;
1555
+ }, {
1556
+ breadcrumbTextFormat: string;
1557
+ hideFromBreadcrumbs?: false | undefined;
1558
+ }>]>>, z.ZodUnion<[z.ZodObject<{
1559
+ hideFromDocumentTree: z.ZodLiteral<true>;
1560
+ documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
1561
+ }, "strip", z.ZodTypeAny, {
1562
+ hideFromDocumentTree: true;
1563
+ documentTreeFolderTextFormat?: undefined;
1564
+ }, {
1565
+ hideFromDocumentTree: true;
1566
+ documentTreeFolderTextFormat?: undefined;
1567
+ }>, z.ZodObject<{
1568
+ hideFromDocumentTree: z.ZodOptional<z.ZodLiteral<false>>;
1569
+ documentTreeFolderTextFormat: z.ZodString;
1570
+ }, "strip", z.ZodTypeAny, {
1571
+ documentTreeFolderTextFormat: string;
1572
+ hideFromDocumentTree?: false | undefined;
1573
+ }, {
1574
+ documentTreeFolderTextFormat: string;
1575
+ hideFromDocumentTree?: false | undefined;
1576
+ }>]>>;
1532
1577
  }, "strip", z.ZodTypeAny, {
1533
1578
  code: string;
1534
1579
  type: "criterion";
1535
1580
  title: string;
1581
+ options: ({
1582
+ hideCodeInReport: boolean;
1583
+ } & ({
1584
+ hideFromBreadcrumbs: true;
1585
+ breadcrumbTextFormat?: undefined;
1586
+ } | {
1587
+ hideFromBreadcrumbs: false;
1588
+ breadcrumbTextFormat: string;
1589
+ })) & ({
1590
+ hideFromDocumentTree: true;
1591
+ documentTreeFolderTextFormat?: undefined;
1592
+ } | {
1593
+ documentTreeFolderTextFormat: string;
1594
+ hideFromDocumentTree?: false | undefined;
1595
+ });
1536
1596
  items: {
1537
1597
  code: string;
1538
1598
  type: "task-group";
@@ -1541,6 +1601,11 @@ export declare const themeSchema: z.ZodObject<{
1541
1601
  code: string;
1542
1602
  type: "task";
1543
1603
  title: string;
1604
+ options: {
1605
+ breadcrumbTextFormat: string;
1606
+ documentTreeFolderTextFormat: string;
1607
+ showCodeAsIndicatorTaskViewTitle: boolean;
1608
+ };
1544
1609
  items: {
1545
1610
  code: string;
1546
1611
  type: "task-item";
@@ -1639,11 +1704,6 @@ export declare const themeSchema: z.ZodObject<{
1639
1704
  step?: number | undefined;
1640
1705
  readOnly?: boolean | undefined;
1641
1706
  } | undefined;
1642
- options?: {
1643
- breadcrumbTextFormat: string;
1644
- documentTreeFolderTextFormat: string;
1645
- showCodeAsIndicatorTaskViewTitle: boolean;
1646
- } | undefined;
1647
1707
  description?: string | undefined;
1648
1708
  longFormTitle?: string | undefined;
1649
1709
  tags?: string[] | undefined;
@@ -1676,7 +1736,6 @@ export declare const themeSchema: z.ZodObject<{
1676
1736
  step?: number | undefined;
1677
1737
  readOnly?: boolean | undefined;
1678
1738
  } | undefined;
1679
- options?: {} | undefined;
1680
1739
  description?: string | undefined;
1681
1740
  longFormTitle?: string | undefined;
1682
1741
  tags?: string[] | undefined;
@@ -1710,13 +1769,6 @@ export declare const themeSchema: z.ZodObject<{
1710
1769
  step?: number | undefined;
1711
1770
  readOnly?: boolean | undefined;
1712
1771
  } | undefined;
1713
- options?: {
1714
- breadcrumbTextFormat: string;
1715
- documentTreeFolderTextFormat: string;
1716
- hideFromBreadcrumbs: boolean;
1717
- hideFromDocumentTree: boolean;
1718
- hideCodeInReport: boolean;
1719
- } | undefined;
1720
1772
  longFormTitle?: string | undefined;
1721
1773
  tags?: string[] | undefined;
1722
1774
  documentation?: ({
@@ -1739,6 +1791,21 @@ export declare const themeSchema: z.ZodObject<{
1739
1791
  code: string;
1740
1792
  type: "criterion";
1741
1793
  title: string;
1794
+ options: ({
1795
+ hideCodeInReport?: boolean | undefined;
1796
+ } & ({
1797
+ hideFromBreadcrumbs: true;
1798
+ breadcrumbTextFormat?: undefined;
1799
+ } | {
1800
+ breadcrumbTextFormat: string;
1801
+ hideFromBreadcrumbs?: false | undefined;
1802
+ })) & ({
1803
+ hideFromDocumentTree: true;
1804
+ documentTreeFolderTextFormat?: undefined;
1805
+ } | {
1806
+ documentTreeFolderTextFormat: string;
1807
+ hideFromDocumentTree?: false | undefined;
1808
+ });
1742
1809
  items: {
1743
1810
  code: string;
1744
1811
  type: "task-group";
@@ -1747,6 +1814,11 @@ export declare const themeSchema: z.ZodObject<{
1747
1814
  code: string;
1748
1815
  type: "task";
1749
1816
  title: string;
1817
+ options: {
1818
+ breadcrumbTextFormat: string;
1819
+ documentTreeFolderTextFormat: string;
1820
+ showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
1821
+ };
1750
1822
  items: {
1751
1823
  code: string;
1752
1824
  type: "task-item";
@@ -1845,11 +1917,6 @@ export declare const themeSchema: z.ZodObject<{
1845
1917
  step?: number | undefined;
1846
1918
  readOnly?: boolean | undefined;
1847
1919
  } | undefined;
1848
- options?: {
1849
- breadcrumbTextFormat?: string | undefined;
1850
- documentTreeFolderTextFormat?: string | undefined;
1851
- showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
1852
- } | undefined;
1853
1920
  description?: string | undefined;
1854
1921
  longFormTitle?: string | undefined;
1855
1922
  tags?: string[] | undefined;
@@ -1882,7 +1949,6 @@ export declare const themeSchema: z.ZodObject<{
1882
1949
  step?: number | undefined;
1883
1950
  readOnly?: boolean | undefined;
1884
1951
  } | undefined;
1885
- options?: {} | undefined;
1886
1952
  description?: string | undefined;
1887
1953
  longFormTitle?: string | undefined;
1888
1954
  tags?: string[] | undefined;
@@ -1916,13 +1982,6 @@ export declare const themeSchema: z.ZodObject<{
1916
1982
  step?: number | undefined;
1917
1983
  readOnly?: boolean | undefined;
1918
1984
  } | undefined;
1919
- options?: {
1920
- breadcrumbTextFormat?: string | undefined;
1921
- documentTreeFolderTextFormat?: string | undefined;
1922
- hideFromBreadcrumbs?: boolean | undefined;
1923
- hideFromDocumentTree?: boolean | undefined;
1924
- hideCodeInReport?: boolean | undefined;
1925
- } | undefined;
1926
1985
  longFormTitle?: string | undefined;
1927
1986
  tags?: string[] | undefined;
1928
1987
  documentation?: ({
@@ -1942,33 +2001,87 @@ export declare const themeSchema: z.ZodObject<{
1942
2001
  })[] | undefined;
1943
2002
  sortOrder?: number | undefined;
1944
2003
  }>, "many">;
1945
- options: z.ZodOptional<z.ZodObject<{
1946
- breadcrumbTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1947
- hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1948
- documentTreeFolderTextFormat: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1949
- hideFromDocumentTree: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2004
+ options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1950
2005
  hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1951
2006
  }, "strip", z.ZodTypeAny, {
1952
- breadcrumbTextFormat: string;
1953
- documentTreeFolderTextFormat: string;
1954
- hideFromBreadcrumbs: boolean;
1955
- hideFromDocumentTree: boolean;
1956
2007
  hideCodeInReport: boolean;
1957
2008
  }, {
1958
- breadcrumbTextFormat?: string | undefined;
1959
- documentTreeFolderTextFormat?: string | undefined;
1960
- hideFromBreadcrumbs?: boolean | undefined;
1961
- hideFromDocumentTree?: boolean | undefined;
1962
2009
  hideCodeInReport?: boolean | undefined;
1963
- }>>;
2010
+ }>, z.ZodUnion<[z.ZodObject<{
2011
+ hideFromBreadcrumbs: z.ZodLiteral<true>;
2012
+ breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
2013
+ }, "strip", z.ZodTypeAny, {
2014
+ hideFromBreadcrumbs: true;
2015
+ breadcrumbTextFormat?: undefined;
2016
+ }, {
2017
+ hideFromBreadcrumbs: true;
2018
+ breadcrumbTextFormat?: undefined;
2019
+ }>, z.ZodObject<{
2020
+ hideFromBreadcrumbs: z.ZodDefault<z.ZodOptional<z.ZodLiteral<false>>>;
2021
+ breadcrumbTextFormat: z.ZodString;
2022
+ }, "strip", z.ZodTypeAny, {
2023
+ hideFromBreadcrumbs: false;
2024
+ breadcrumbTextFormat: string;
2025
+ }, {
2026
+ breadcrumbTextFormat: string;
2027
+ hideFromBreadcrumbs?: false | undefined;
2028
+ }>]>>, z.ZodUnion<[z.ZodObject<{
2029
+ hideFromDocumentTree: z.ZodLiteral<true>;
2030
+ documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
2031
+ }, "strip", z.ZodTypeAny, {
2032
+ hideFromDocumentTree: true;
2033
+ documentTreeFolderTextFormat?: undefined;
2034
+ }, {
2035
+ hideFromDocumentTree: true;
2036
+ documentTreeFolderTextFormat?: undefined;
2037
+ }>, z.ZodObject<{
2038
+ hideFromDocumentTree: z.ZodOptional<z.ZodLiteral<false>>;
2039
+ documentTreeFolderTextFormat: z.ZodString;
2040
+ }, "strip", z.ZodTypeAny, {
2041
+ documentTreeFolderTextFormat: string;
2042
+ hideFromDocumentTree?: false | undefined;
2043
+ }, {
2044
+ documentTreeFolderTextFormat: string;
2045
+ hideFromDocumentTree?: false | undefined;
2046
+ }>]>>;
1964
2047
  }, "strip", z.ZodTypeAny, {
1965
2048
  code: string;
1966
2049
  type: "theme";
1967
2050
  title: string;
2051
+ options: ({
2052
+ hideCodeInReport: boolean;
2053
+ } & ({
2054
+ hideFromBreadcrumbs: true;
2055
+ breadcrumbTextFormat?: undefined;
2056
+ } | {
2057
+ hideFromBreadcrumbs: false;
2058
+ breadcrumbTextFormat: string;
2059
+ })) & ({
2060
+ hideFromDocumentTree: true;
2061
+ documentTreeFolderTextFormat?: undefined;
2062
+ } | {
2063
+ documentTreeFolderTextFormat: string;
2064
+ hideFromDocumentTree?: false | undefined;
2065
+ });
1968
2066
  items: {
1969
2067
  code: string;
1970
2068
  type: "criterion";
1971
2069
  title: string;
2070
+ options: ({
2071
+ hideCodeInReport: boolean;
2072
+ } & ({
2073
+ hideFromBreadcrumbs: true;
2074
+ breadcrumbTextFormat?: undefined;
2075
+ } | {
2076
+ hideFromBreadcrumbs: false;
2077
+ breadcrumbTextFormat: string;
2078
+ })) & ({
2079
+ hideFromDocumentTree: true;
2080
+ documentTreeFolderTextFormat?: undefined;
2081
+ } | {
2082
+ documentTreeFolderTextFormat: string;
2083
+ hideFromDocumentTree?: false | undefined;
2084
+ });
1972
2085
  items: {
1973
2086
  code: string;
1974
2087
  type: "task-group";
@@ -1977,6 +2090,11 @@ export declare const themeSchema: z.ZodObject<{
1977
2090
  code: string;
1978
2091
  type: "task";
1979
2092
  title: string;
2093
+ options: {
2094
+ breadcrumbTextFormat: string;
2095
+ documentTreeFolderTextFormat: string;
2096
+ showCodeAsIndicatorTaskViewTitle: boolean;
2097
+ };
1980
2098
  items: {
1981
2099
  code: string;
1982
2100
  type: "task-item";
@@ -2075,11 +2193,6 @@ export declare const themeSchema: z.ZodObject<{
2075
2193
  step?: number | undefined;
2076
2194
  readOnly?: boolean | undefined;
2077
2195
  } | undefined;
2078
- options?: {
2079
- breadcrumbTextFormat: string;
2080
- documentTreeFolderTextFormat: string;
2081
- showCodeAsIndicatorTaskViewTitle: boolean;
2082
- } | undefined;
2083
2196
  description?: string | undefined;
2084
2197
  longFormTitle?: string | undefined;
2085
2198
  tags?: string[] | undefined;
@@ -2112,7 +2225,6 @@ export declare const themeSchema: z.ZodObject<{
2112
2225
  step?: number | undefined;
2113
2226
  readOnly?: boolean | undefined;
2114
2227
  } | undefined;
2115
- options?: {} | undefined;
2116
2228
  description?: string | undefined;
2117
2229
  longFormTitle?: string | undefined;
2118
2230
  tags?: string[] | undefined;
@@ -2146,13 +2258,6 @@ export declare const themeSchema: z.ZodObject<{
2146
2258
  step?: number | undefined;
2147
2259
  readOnly?: boolean | undefined;
2148
2260
  } | undefined;
2149
- options?: {
2150
- breadcrumbTextFormat: string;
2151
- documentTreeFolderTextFormat: string;
2152
- hideFromBreadcrumbs: boolean;
2153
- hideFromDocumentTree: boolean;
2154
- hideCodeInReport: boolean;
2155
- } | undefined;
2156
2261
  longFormTitle?: string | undefined;
2157
2262
  tags?: string[] | undefined;
2158
2263
  documentation?: ({
@@ -2196,13 +2301,6 @@ export declare const themeSchema: z.ZodObject<{
2196
2301
  blue: number;
2197
2302
  };
2198
2303
  } | undefined;
2199
- options?: {
2200
- breadcrumbTextFormat: string;
2201
- documentTreeFolderTextFormat: string;
2202
- hideFromBreadcrumbs: boolean;
2203
- hideFromDocumentTree: boolean;
2204
- hideCodeInReport: boolean;
2205
- } | undefined;
2206
2304
  longFormTitle?: string | undefined;
2207
2305
  tags?: string[] | undefined;
2208
2306
  documentation?: ({
@@ -2225,10 +2323,40 @@ export declare const themeSchema: z.ZodObject<{
2225
2323
  code: string;
2226
2324
  type: "theme";
2227
2325
  title: string;
2326
+ options: ({
2327
+ hideCodeInReport?: boolean | undefined;
2328
+ } & ({
2329
+ hideFromBreadcrumbs: true;
2330
+ breadcrumbTextFormat?: undefined;
2331
+ } | {
2332
+ breadcrumbTextFormat: string;
2333
+ hideFromBreadcrumbs?: false | undefined;
2334
+ })) & ({
2335
+ hideFromDocumentTree: true;
2336
+ documentTreeFolderTextFormat?: undefined;
2337
+ } | {
2338
+ documentTreeFolderTextFormat: string;
2339
+ hideFromDocumentTree?: false | undefined;
2340
+ });
2228
2341
  items: {
2229
2342
  code: string;
2230
2343
  type: "criterion";
2231
2344
  title: string;
2345
+ options: ({
2346
+ hideCodeInReport?: boolean | undefined;
2347
+ } & ({
2348
+ hideFromBreadcrumbs: true;
2349
+ breadcrumbTextFormat?: undefined;
2350
+ } | {
2351
+ breadcrumbTextFormat: string;
2352
+ hideFromBreadcrumbs?: false | undefined;
2353
+ })) & ({
2354
+ hideFromDocumentTree: true;
2355
+ documentTreeFolderTextFormat?: undefined;
2356
+ } | {
2357
+ documentTreeFolderTextFormat: string;
2358
+ hideFromDocumentTree?: false | undefined;
2359
+ });
2232
2360
  items: {
2233
2361
  code: string;
2234
2362
  type: "task-group";
@@ -2237,6 +2365,11 @@ export declare const themeSchema: z.ZodObject<{
2237
2365
  code: string;
2238
2366
  type: "task";
2239
2367
  title: string;
2368
+ options: {
2369
+ breadcrumbTextFormat: string;
2370
+ documentTreeFolderTextFormat: string;
2371
+ showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
2372
+ };
2240
2373
  items: {
2241
2374
  code: string;
2242
2375
  type: "task-item";
@@ -2335,11 +2468,6 @@ export declare const themeSchema: z.ZodObject<{
2335
2468
  step?: number | undefined;
2336
2469
  readOnly?: boolean | undefined;
2337
2470
  } | undefined;
2338
- options?: {
2339
- breadcrumbTextFormat?: string | undefined;
2340
- documentTreeFolderTextFormat?: string | undefined;
2341
- showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
2342
- } | undefined;
2343
2471
  description?: string | undefined;
2344
2472
  longFormTitle?: string | undefined;
2345
2473
  tags?: string[] | undefined;
@@ -2372,7 +2500,6 @@ export declare const themeSchema: z.ZodObject<{
2372
2500
  step?: number | undefined;
2373
2501
  readOnly?: boolean | undefined;
2374
2502
  } | undefined;
2375
- options?: {} | undefined;
2376
2503
  description?: string | undefined;
2377
2504
  longFormTitle?: string | undefined;
2378
2505
  tags?: string[] | undefined;
@@ -2406,13 +2533,6 @@ export declare const themeSchema: z.ZodObject<{
2406
2533
  step?: number | undefined;
2407
2534
  readOnly?: boolean | undefined;
2408
2535
  } | undefined;
2409
- options?: {
2410
- breadcrumbTextFormat?: string | undefined;
2411
- documentTreeFolderTextFormat?: string | undefined;
2412
- hideFromBreadcrumbs?: boolean | undefined;
2413
- hideFromDocumentTree?: boolean | undefined;
2414
- hideCodeInReport?: boolean | undefined;
2415
- } | undefined;
2416
2536
  longFormTitle?: string | undefined;
2417
2537
  tags?: string[] | undefined;
2418
2538
  documentation?: ({
@@ -2456,13 +2576,6 @@ export declare const themeSchema: z.ZodObject<{
2456
2576
  blue: number;
2457
2577
  };
2458
2578
  } | undefined;
2459
- options?: {
2460
- breadcrumbTextFormat?: string | undefined;
2461
- documentTreeFolderTextFormat?: string | undefined;
2462
- hideFromBreadcrumbs?: boolean | undefined;
2463
- hideFromDocumentTree?: boolean | undefined;
2464
- hideCodeInReport?: boolean | undefined;
2465
- } | undefined;
2466
2579
  longFormTitle?: string | undefined;
2467
2580
  tags?: string[] | undefined;
2468
2581
  documentation?: ({