@underdogai/mesh-event-schemas 0.2.0 → 0.3.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.
- package/dist/apppacks.d.ts +396 -148
- package/dist/apppacks.d.ts.map +1 -1
- package/dist/blocks.d.ts +88 -20
- package/dist/blocks.d.ts.map +1 -1
- package/dist/blocks.js +12 -0
- package/dist/blocks.js.map +1 -1
- package/dist/events.d.ts +114 -38
- package/dist/events.d.ts.map +1 -1
- package/dist/surfaces.d.ts +44408 -12171
- package/dist/surfaces.d.ts.map +1 -1
- package/dist/surfaces.js +133 -2
- package/dist/surfaces.js.map +1 -1
- package/package.json +1 -1
- package/src/blocks.ts +12 -0
- package/src/surfaces.ts +147 -2
package/dist/apppacks.d.ts
CHANGED
|
@@ -199,14 +199,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
199
199
|
label: z.ZodString;
|
|
200
200
|
value: z.ZodString;
|
|
201
201
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
202
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
203
|
+
text: z.ZodString;
|
|
204
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
205
|
+
}, "strip", z.ZodTypeAny, {
|
|
206
|
+
text: string;
|
|
207
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
208
|
+
}, {
|
|
209
|
+
text: string;
|
|
210
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
211
|
+
}>, "many">>;
|
|
202
212
|
}, "strip", z.ZodTypeAny, {
|
|
203
213
|
value: string;
|
|
204
214
|
label: string;
|
|
205
215
|
short?: boolean | undefined;
|
|
216
|
+
parts?: {
|
|
217
|
+
text: string;
|
|
218
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
219
|
+
}[] | undefined;
|
|
206
220
|
}, {
|
|
207
221
|
value: string;
|
|
208
222
|
label: string;
|
|
209
223
|
short?: boolean | undefined;
|
|
224
|
+
parts?: {
|
|
225
|
+
text: string;
|
|
226
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
227
|
+
}[] | undefined;
|
|
210
228
|
}>, "many">;
|
|
211
229
|
}, "strip", z.ZodTypeAny, {
|
|
212
230
|
type: "fields";
|
|
@@ -214,6 +232,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
214
232
|
value: string;
|
|
215
233
|
label: string;
|
|
216
234
|
short?: boolean | undefined;
|
|
235
|
+
parts?: {
|
|
236
|
+
text: string;
|
|
237
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
238
|
+
}[] | undefined;
|
|
217
239
|
}[];
|
|
218
240
|
}, {
|
|
219
241
|
type: "fields";
|
|
@@ -221,6 +243,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
221
243
|
value: string;
|
|
222
244
|
label: string;
|
|
223
245
|
short?: boolean | undefined;
|
|
246
|
+
parts?: {
|
|
247
|
+
text: string;
|
|
248
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
249
|
+
}[] | undefined;
|
|
224
250
|
}[];
|
|
225
251
|
}>, z.ZodObject<{
|
|
226
252
|
type: z.ZodLiteral<"image">;
|
|
@@ -512,14 +538,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
512
538
|
type: "callout";
|
|
513
539
|
text: string;
|
|
514
540
|
title?: string | undefined;
|
|
515
|
-
icon?: string | undefined;
|
|
516
541
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
542
|
+
icon?: string | undefined;
|
|
517
543
|
}, {
|
|
518
544
|
type: "callout";
|
|
519
545
|
text: string;
|
|
520
546
|
title?: string | undefined;
|
|
521
|
-
icon?: string | undefined;
|
|
522
547
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
548
|
+
icon?: string | undefined;
|
|
523
549
|
}>, z.ZodObject<{
|
|
524
550
|
type: z.ZodLiteral<"entityRef">;
|
|
525
551
|
label: z.ZodString;
|
|
@@ -529,14 +555,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
529
555
|
}, "strip", z.ZodTypeAny, {
|
|
530
556
|
type: "entityRef";
|
|
531
557
|
label: string;
|
|
532
|
-
url?: string | undefined;
|
|
533
558
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
559
|
+
url?: string | undefined;
|
|
534
560
|
entity?: string | undefined;
|
|
535
561
|
}, {
|
|
536
562
|
type: "entityRef";
|
|
537
563
|
label: string;
|
|
538
|
-
url?: string | undefined;
|
|
539
564
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
565
|
+
url?: string | undefined;
|
|
540
566
|
entity?: string | undefined;
|
|
541
567
|
}>, z.ZodObject<{
|
|
542
568
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -562,20 +588,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
562
588
|
}, "strip", z.ZodTypeAny, {
|
|
563
589
|
title: string;
|
|
564
590
|
id: string;
|
|
591
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
565
592
|
badge?: {
|
|
566
593
|
label: string;
|
|
567
594
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
568
595
|
} | undefined;
|
|
569
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
570
596
|
meta?: string[] | undefined;
|
|
571
597
|
}, {
|
|
572
598
|
title: string;
|
|
573
599
|
id: string;
|
|
600
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
574
601
|
badge?: {
|
|
575
602
|
label: string;
|
|
576
603
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
577
604
|
} | undefined;
|
|
578
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
579
605
|
meta?: string[] | undefined;
|
|
580
606
|
}>, "many">;
|
|
581
607
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -584,11 +610,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
584
610
|
cards: {
|
|
585
611
|
title: string;
|
|
586
612
|
id: string;
|
|
613
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
587
614
|
badge?: {
|
|
588
615
|
label: string;
|
|
589
616
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
590
617
|
} | undefined;
|
|
591
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
592
618
|
meta?: string[] | undefined;
|
|
593
619
|
}[];
|
|
594
620
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -598,11 +624,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
598
624
|
cards: {
|
|
599
625
|
title: string;
|
|
600
626
|
id: string;
|
|
627
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
601
628
|
badge?: {
|
|
602
629
|
label: string;
|
|
603
630
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
604
631
|
} | undefined;
|
|
605
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
606
632
|
meta?: string[] | undefined;
|
|
607
633
|
}[];
|
|
608
634
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -616,11 +642,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
616
642
|
cards: {
|
|
617
643
|
title: string;
|
|
618
644
|
id: string;
|
|
645
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
619
646
|
badge?: {
|
|
620
647
|
label: string;
|
|
621
648
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
622
649
|
} | undefined;
|
|
623
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
624
650
|
meta?: string[] | undefined;
|
|
625
651
|
}[];
|
|
626
652
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -634,11 +660,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
634
660
|
cards: {
|
|
635
661
|
title: string;
|
|
636
662
|
id: string;
|
|
663
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
637
664
|
badge?: {
|
|
638
665
|
label: string;
|
|
639
666
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
640
667
|
} | undefined;
|
|
641
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
642
668
|
meta?: string[] | undefined;
|
|
643
669
|
}[];
|
|
644
670
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1222,14 +1248,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1222
1248
|
label: z.ZodString;
|
|
1223
1249
|
value: z.ZodString;
|
|
1224
1250
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
1251
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1252
|
+
text: z.ZodString;
|
|
1253
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
1254
|
+
}, "strip", z.ZodTypeAny, {
|
|
1255
|
+
text: string;
|
|
1256
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1257
|
+
}, {
|
|
1258
|
+
text: string;
|
|
1259
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1260
|
+
}>, "many">>;
|
|
1225
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1226
1262
|
value: string;
|
|
1227
1263
|
label: string;
|
|
1228
1264
|
short?: boolean | undefined;
|
|
1265
|
+
parts?: {
|
|
1266
|
+
text: string;
|
|
1267
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1268
|
+
}[] | undefined;
|
|
1229
1269
|
}, {
|
|
1230
1270
|
value: string;
|
|
1231
1271
|
label: string;
|
|
1232
1272
|
short?: boolean | undefined;
|
|
1273
|
+
parts?: {
|
|
1274
|
+
text: string;
|
|
1275
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1276
|
+
}[] | undefined;
|
|
1233
1277
|
}>, "many">;
|
|
1234
1278
|
}, "strip", z.ZodTypeAny, {
|
|
1235
1279
|
type: "fields";
|
|
@@ -1237,6 +1281,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1237
1281
|
value: string;
|
|
1238
1282
|
label: string;
|
|
1239
1283
|
short?: boolean | undefined;
|
|
1284
|
+
parts?: {
|
|
1285
|
+
text: string;
|
|
1286
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1287
|
+
}[] | undefined;
|
|
1240
1288
|
}[];
|
|
1241
1289
|
}, {
|
|
1242
1290
|
type: "fields";
|
|
@@ -1244,6 +1292,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1244
1292
|
value: string;
|
|
1245
1293
|
label: string;
|
|
1246
1294
|
short?: boolean | undefined;
|
|
1295
|
+
parts?: {
|
|
1296
|
+
text: string;
|
|
1297
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1298
|
+
}[] | undefined;
|
|
1247
1299
|
}[];
|
|
1248
1300
|
}>, z.ZodObject<{
|
|
1249
1301
|
type: z.ZodLiteral<"image">;
|
|
@@ -1535,14 +1587,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1535
1587
|
type: "callout";
|
|
1536
1588
|
text: string;
|
|
1537
1589
|
title?: string | undefined;
|
|
1538
|
-
icon?: string | undefined;
|
|
1539
1590
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1591
|
+
icon?: string | undefined;
|
|
1540
1592
|
}, {
|
|
1541
1593
|
type: "callout";
|
|
1542
1594
|
text: string;
|
|
1543
1595
|
title?: string | undefined;
|
|
1544
|
-
icon?: string | undefined;
|
|
1545
1596
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1597
|
+
icon?: string | undefined;
|
|
1546
1598
|
}>, z.ZodObject<{
|
|
1547
1599
|
type: z.ZodLiteral<"entityRef">;
|
|
1548
1600
|
label: z.ZodString;
|
|
@@ -1552,14 +1604,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1552
1604
|
}, "strip", z.ZodTypeAny, {
|
|
1553
1605
|
type: "entityRef";
|
|
1554
1606
|
label: string;
|
|
1555
|
-
url?: string | undefined;
|
|
1556
1607
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1608
|
+
url?: string | undefined;
|
|
1557
1609
|
entity?: string | undefined;
|
|
1558
1610
|
}, {
|
|
1559
1611
|
type: "entityRef";
|
|
1560
1612
|
label: string;
|
|
1561
|
-
url?: string | undefined;
|
|
1562
1613
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1614
|
+
url?: string | undefined;
|
|
1563
1615
|
entity?: string | undefined;
|
|
1564
1616
|
}>, z.ZodObject<{
|
|
1565
1617
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -1585,20 +1637,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1585
1637
|
}, "strip", z.ZodTypeAny, {
|
|
1586
1638
|
title: string;
|
|
1587
1639
|
id: string;
|
|
1640
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1588
1641
|
badge?: {
|
|
1589
1642
|
label: string;
|
|
1590
1643
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1591
1644
|
} | undefined;
|
|
1592
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1593
1645
|
meta?: string[] | undefined;
|
|
1594
1646
|
}, {
|
|
1595
1647
|
title: string;
|
|
1596
1648
|
id: string;
|
|
1649
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1597
1650
|
badge?: {
|
|
1598
1651
|
label: string;
|
|
1599
1652
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1600
1653
|
} | undefined;
|
|
1601
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1602
1654
|
meta?: string[] | undefined;
|
|
1603
1655
|
}>, "many">;
|
|
1604
1656
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1607,11 +1659,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1607
1659
|
cards: {
|
|
1608
1660
|
title: string;
|
|
1609
1661
|
id: string;
|
|
1662
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1610
1663
|
badge?: {
|
|
1611
1664
|
label: string;
|
|
1612
1665
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1613
1666
|
} | undefined;
|
|
1614
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1615
1667
|
meta?: string[] | undefined;
|
|
1616
1668
|
}[];
|
|
1617
1669
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1621,11 +1673,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1621
1673
|
cards: {
|
|
1622
1674
|
title: string;
|
|
1623
1675
|
id: string;
|
|
1676
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1624
1677
|
badge?: {
|
|
1625
1678
|
label: string;
|
|
1626
1679
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1627
1680
|
} | undefined;
|
|
1628
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1629
1681
|
meta?: string[] | undefined;
|
|
1630
1682
|
}[];
|
|
1631
1683
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1639,11 +1691,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1639
1691
|
cards: {
|
|
1640
1692
|
title: string;
|
|
1641
1693
|
id: string;
|
|
1694
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1642
1695
|
badge?: {
|
|
1643
1696
|
label: string;
|
|
1644
1697
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1645
1698
|
} | undefined;
|
|
1646
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1647
1699
|
meta?: string[] | undefined;
|
|
1648
1700
|
}[];
|
|
1649
1701
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1657,11 +1709,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1657
1709
|
cards: {
|
|
1658
1710
|
title: string;
|
|
1659
1711
|
id: string;
|
|
1712
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1660
1713
|
badge?: {
|
|
1661
1714
|
label: string;
|
|
1662
1715
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1663
1716
|
} | undefined;
|
|
1664
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1665
1717
|
meta?: string[] | undefined;
|
|
1666
1718
|
}[];
|
|
1667
1719
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -2224,6 +2276,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2224
2276
|
value: string;
|
|
2225
2277
|
label: string;
|
|
2226
2278
|
short?: boolean | undefined;
|
|
2279
|
+
parts?: {
|
|
2280
|
+
text: string;
|
|
2281
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2282
|
+
}[] | undefined;
|
|
2227
2283
|
}[];
|
|
2228
2284
|
} | {
|
|
2229
2285
|
type: "image";
|
|
@@ -2437,13 +2493,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2437
2493
|
type: "callout";
|
|
2438
2494
|
text: string;
|
|
2439
2495
|
title?: string | undefined;
|
|
2440
|
-
icon?: string | undefined;
|
|
2441
2496
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2497
|
+
icon?: string | undefined;
|
|
2442
2498
|
} | {
|
|
2443
2499
|
type: "entityRef";
|
|
2444
2500
|
label: string;
|
|
2445
|
-
url?: string | undefined;
|
|
2446
2501
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2502
|
+
url?: string | undefined;
|
|
2447
2503
|
entity?: string | undefined;
|
|
2448
2504
|
} | {
|
|
2449
2505
|
type: "kanban";
|
|
@@ -2453,11 +2509,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2453
2509
|
cards: {
|
|
2454
2510
|
title: string;
|
|
2455
2511
|
id: string;
|
|
2512
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2456
2513
|
badge?: {
|
|
2457
2514
|
label: string;
|
|
2458
2515
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2459
2516
|
} | undefined;
|
|
2460
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2461
2517
|
meta?: string[] | undefined;
|
|
2462
2518
|
}[];
|
|
2463
2519
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -2501,6 +2557,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2501
2557
|
value: string;
|
|
2502
2558
|
label: string;
|
|
2503
2559
|
short?: boolean | undefined;
|
|
2560
|
+
parts?: {
|
|
2561
|
+
text: string;
|
|
2562
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2563
|
+
}[] | undefined;
|
|
2504
2564
|
}[];
|
|
2505
2565
|
} | {
|
|
2506
2566
|
type: "image";
|
|
@@ -2714,13 +2774,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2714
2774
|
type: "callout";
|
|
2715
2775
|
text: string;
|
|
2716
2776
|
title?: string | undefined;
|
|
2717
|
-
icon?: string | undefined;
|
|
2718
2777
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2778
|
+
icon?: string | undefined;
|
|
2719
2779
|
} | {
|
|
2720
2780
|
type: "entityRef";
|
|
2721
2781
|
label: string;
|
|
2722
|
-
url?: string | undefined;
|
|
2723
2782
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2783
|
+
url?: string | undefined;
|
|
2724
2784
|
entity?: string | undefined;
|
|
2725
2785
|
} | {
|
|
2726
2786
|
type: "kanban";
|
|
@@ -2730,11 +2790,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2730
2790
|
cards: {
|
|
2731
2791
|
title: string;
|
|
2732
2792
|
id: string;
|
|
2793
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2733
2794
|
badge?: {
|
|
2734
2795
|
label: string;
|
|
2735
2796
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2736
2797
|
} | undefined;
|
|
2737
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2738
2798
|
meta?: string[] | undefined;
|
|
2739
2799
|
}[];
|
|
2740
2800
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -2820,6 +2880,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2820
2880
|
value: string;
|
|
2821
2881
|
label: string;
|
|
2822
2882
|
short?: boolean | undefined;
|
|
2883
|
+
parts?: {
|
|
2884
|
+
text: string;
|
|
2885
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2886
|
+
}[] | undefined;
|
|
2823
2887
|
}[];
|
|
2824
2888
|
} | {
|
|
2825
2889
|
type: "image";
|
|
@@ -3033,13 +3097,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3033
3097
|
type: "callout";
|
|
3034
3098
|
text: string;
|
|
3035
3099
|
title?: string | undefined;
|
|
3036
|
-
icon?: string | undefined;
|
|
3037
3100
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3101
|
+
icon?: string | undefined;
|
|
3038
3102
|
} | {
|
|
3039
3103
|
type: "entityRef";
|
|
3040
3104
|
label: string;
|
|
3041
|
-
url?: string | undefined;
|
|
3042
3105
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3106
|
+
url?: string | undefined;
|
|
3043
3107
|
entity?: string | undefined;
|
|
3044
3108
|
} | {
|
|
3045
3109
|
type: "kanban";
|
|
@@ -3049,11 +3113,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3049
3113
|
cards: {
|
|
3050
3114
|
title: string;
|
|
3051
3115
|
id: string;
|
|
3116
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3052
3117
|
badge?: {
|
|
3053
3118
|
label: string;
|
|
3054
3119
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3055
3120
|
} | undefined;
|
|
3056
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3057
3121
|
meta?: string[] | undefined;
|
|
3058
3122
|
}[];
|
|
3059
3123
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3113,6 +3177,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3113
3177
|
value: string;
|
|
3114
3178
|
label: string;
|
|
3115
3179
|
short?: boolean | undefined;
|
|
3180
|
+
parts?: {
|
|
3181
|
+
text: string;
|
|
3182
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3183
|
+
}[] | undefined;
|
|
3116
3184
|
}[];
|
|
3117
3185
|
} | {
|
|
3118
3186
|
type: "image";
|
|
@@ -3326,13 +3394,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3326
3394
|
type: "callout";
|
|
3327
3395
|
text: string;
|
|
3328
3396
|
title?: string | undefined;
|
|
3329
|
-
icon?: string | undefined;
|
|
3330
3397
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3398
|
+
icon?: string | undefined;
|
|
3331
3399
|
} | {
|
|
3332
3400
|
type: "entityRef";
|
|
3333
3401
|
label: string;
|
|
3334
|
-
url?: string | undefined;
|
|
3335
3402
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3403
|
+
url?: string | undefined;
|
|
3336
3404
|
entity?: string | undefined;
|
|
3337
3405
|
} | {
|
|
3338
3406
|
type: "kanban";
|
|
@@ -3342,11 +3410,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3342
3410
|
cards: {
|
|
3343
3411
|
title: string;
|
|
3344
3412
|
id: string;
|
|
3413
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3345
3414
|
badge?: {
|
|
3346
3415
|
label: string;
|
|
3347
3416
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3348
3417
|
} | undefined;
|
|
3349
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3350
3418
|
meta?: string[] | undefined;
|
|
3351
3419
|
}[];
|
|
3352
3420
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3411,6 +3479,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3411
3479
|
value: string;
|
|
3412
3480
|
label: string;
|
|
3413
3481
|
short?: boolean | undefined;
|
|
3482
|
+
parts?: {
|
|
3483
|
+
text: string;
|
|
3484
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3485
|
+
}[] | undefined;
|
|
3414
3486
|
}[];
|
|
3415
3487
|
} | {
|
|
3416
3488
|
type: "image";
|
|
@@ -3624,13 +3696,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3624
3696
|
type: "callout";
|
|
3625
3697
|
text: string;
|
|
3626
3698
|
title?: string | undefined;
|
|
3627
|
-
icon?: string | undefined;
|
|
3628
3699
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3700
|
+
icon?: string | undefined;
|
|
3629
3701
|
} | {
|
|
3630
3702
|
type: "entityRef";
|
|
3631
3703
|
label: string;
|
|
3632
|
-
url?: string | undefined;
|
|
3633
3704
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3705
|
+
url?: string | undefined;
|
|
3634
3706
|
entity?: string | undefined;
|
|
3635
3707
|
} | {
|
|
3636
3708
|
type: "kanban";
|
|
@@ -3640,11 +3712,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3640
3712
|
cards: {
|
|
3641
3713
|
title: string;
|
|
3642
3714
|
id: string;
|
|
3715
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3643
3716
|
badge?: {
|
|
3644
3717
|
label: string;
|
|
3645
3718
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3646
3719
|
} | undefined;
|
|
3647
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3648
3720
|
meta?: string[] | undefined;
|
|
3649
3721
|
}[];
|
|
3650
3722
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3688,6 +3760,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3688
3760
|
value: string;
|
|
3689
3761
|
label: string;
|
|
3690
3762
|
short?: boolean | undefined;
|
|
3763
|
+
parts?: {
|
|
3764
|
+
text: string;
|
|
3765
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3766
|
+
}[] | undefined;
|
|
3691
3767
|
}[];
|
|
3692
3768
|
} | {
|
|
3693
3769
|
type: "image";
|
|
@@ -3901,13 +3977,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3901
3977
|
type: "callout";
|
|
3902
3978
|
text: string;
|
|
3903
3979
|
title?: string | undefined;
|
|
3904
|
-
icon?: string | undefined;
|
|
3905
3980
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3981
|
+
icon?: string | undefined;
|
|
3906
3982
|
} | {
|
|
3907
3983
|
type: "entityRef";
|
|
3908
3984
|
label: string;
|
|
3909
|
-
url?: string | undefined;
|
|
3910
3985
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3986
|
+
url?: string | undefined;
|
|
3911
3987
|
entity?: string | undefined;
|
|
3912
3988
|
} | {
|
|
3913
3989
|
type: "kanban";
|
|
@@ -3917,11 +3993,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3917
3993
|
cards: {
|
|
3918
3994
|
title: string;
|
|
3919
3995
|
id: string;
|
|
3996
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3920
3997
|
badge?: {
|
|
3921
3998
|
label: string;
|
|
3922
3999
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3923
4000
|
} | undefined;
|
|
3924
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3925
4001
|
meta?: string[] | undefined;
|
|
3926
4002
|
}[];
|
|
3927
4003
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3971,6 +4047,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3971
4047
|
value: string;
|
|
3972
4048
|
label: string;
|
|
3973
4049
|
short?: boolean | undefined;
|
|
4050
|
+
parts?: {
|
|
4051
|
+
text: string;
|
|
4052
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4053
|
+
}[] | undefined;
|
|
3974
4054
|
}[];
|
|
3975
4055
|
} | {
|
|
3976
4056
|
type: "image";
|
|
@@ -4184,13 +4264,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4184
4264
|
type: "callout";
|
|
4185
4265
|
text: string;
|
|
4186
4266
|
title?: string | undefined;
|
|
4187
|
-
icon?: string | undefined;
|
|
4188
4267
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4268
|
+
icon?: string | undefined;
|
|
4189
4269
|
} | {
|
|
4190
4270
|
type: "entityRef";
|
|
4191
4271
|
label: string;
|
|
4192
|
-
url?: string | undefined;
|
|
4193
4272
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4273
|
+
url?: string | undefined;
|
|
4194
4274
|
entity?: string | undefined;
|
|
4195
4275
|
} | {
|
|
4196
4276
|
type: "kanban";
|
|
@@ -4200,11 +4280,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4200
4280
|
cards: {
|
|
4201
4281
|
title: string;
|
|
4202
4282
|
id: string;
|
|
4283
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4203
4284
|
badge?: {
|
|
4204
4285
|
label: string;
|
|
4205
4286
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4206
4287
|
} | undefined;
|
|
4207
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4208
4288
|
meta?: string[] | undefined;
|
|
4209
4289
|
}[];
|
|
4210
4290
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -4264,6 +4344,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4264
4344
|
value: string;
|
|
4265
4345
|
label: string;
|
|
4266
4346
|
short?: boolean | undefined;
|
|
4347
|
+
parts?: {
|
|
4348
|
+
text: string;
|
|
4349
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4350
|
+
}[] | undefined;
|
|
4267
4351
|
}[];
|
|
4268
4352
|
} | {
|
|
4269
4353
|
type: "image";
|
|
@@ -4477,13 +4561,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4477
4561
|
type: "callout";
|
|
4478
4562
|
text: string;
|
|
4479
4563
|
title?: string | undefined;
|
|
4480
|
-
icon?: string | undefined;
|
|
4481
4564
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4565
|
+
icon?: string | undefined;
|
|
4482
4566
|
} | {
|
|
4483
4567
|
type: "entityRef";
|
|
4484
4568
|
label: string;
|
|
4485
|
-
url?: string | undefined;
|
|
4486
4569
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4570
|
+
url?: string | undefined;
|
|
4487
4571
|
entity?: string | undefined;
|
|
4488
4572
|
} | {
|
|
4489
4573
|
type: "kanban";
|
|
@@ -4493,11 +4577,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4493
4577
|
cards: {
|
|
4494
4578
|
title: string;
|
|
4495
4579
|
id: string;
|
|
4580
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4496
4581
|
badge?: {
|
|
4497
4582
|
label: string;
|
|
4498
4583
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4499
4584
|
} | undefined;
|
|
4500
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4501
4585
|
meta?: string[] | undefined;
|
|
4502
4586
|
}[];
|
|
4503
4587
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -4565,6 +4649,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4565
4649
|
value: string;
|
|
4566
4650
|
label: string;
|
|
4567
4651
|
short?: boolean | undefined;
|
|
4652
|
+
parts?: {
|
|
4653
|
+
text: string;
|
|
4654
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4655
|
+
}[] | undefined;
|
|
4568
4656
|
}[];
|
|
4569
4657
|
} | {
|
|
4570
4658
|
type: "image";
|
|
@@ -4778,13 +4866,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4778
4866
|
type: "callout";
|
|
4779
4867
|
text: string;
|
|
4780
4868
|
title?: string | undefined;
|
|
4781
|
-
icon?: string | undefined;
|
|
4782
4869
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4870
|
+
icon?: string | undefined;
|
|
4783
4871
|
} | {
|
|
4784
4872
|
type: "entityRef";
|
|
4785
4873
|
label: string;
|
|
4786
|
-
url?: string | undefined;
|
|
4787
4874
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4875
|
+
url?: string | undefined;
|
|
4788
4876
|
entity?: string | undefined;
|
|
4789
4877
|
} | {
|
|
4790
4878
|
type: "kanban";
|
|
@@ -4794,11 +4882,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4794
4882
|
cards: {
|
|
4795
4883
|
title: string;
|
|
4796
4884
|
id: string;
|
|
4885
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4797
4886
|
badge?: {
|
|
4798
4887
|
label: string;
|
|
4799
4888
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4800
4889
|
} | undefined;
|
|
4801
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4802
4890
|
meta?: string[] | undefined;
|
|
4803
4891
|
}[];
|
|
4804
4892
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -4842,6 +4930,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4842
4930
|
value: string;
|
|
4843
4931
|
label: string;
|
|
4844
4932
|
short?: boolean | undefined;
|
|
4933
|
+
parts?: {
|
|
4934
|
+
text: string;
|
|
4935
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4936
|
+
}[] | undefined;
|
|
4845
4937
|
}[];
|
|
4846
4938
|
} | {
|
|
4847
4939
|
type: "image";
|
|
@@ -5055,13 +5147,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5055
5147
|
type: "callout";
|
|
5056
5148
|
text: string;
|
|
5057
5149
|
title?: string | undefined;
|
|
5058
|
-
icon?: string | undefined;
|
|
5059
5150
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5151
|
+
icon?: string | undefined;
|
|
5060
5152
|
} | {
|
|
5061
5153
|
type: "entityRef";
|
|
5062
5154
|
label: string;
|
|
5063
|
-
url?: string | undefined;
|
|
5064
5155
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5156
|
+
url?: string | undefined;
|
|
5065
5157
|
entity?: string | undefined;
|
|
5066
5158
|
} | {
|
|
5067
5159
|
type: "kanban";
|
|
@@ -5071,11 +5163,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5071
5163
|
cards: {
|
|
5072
5164
|
title: string;
|
|
5073
5165
|
id: string;
|
|
5166
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5074
5167
|
badge?: {
|
|
5075
5168
|
label: string;
|
|
5076
5169
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5077
5170
|
} | undefined;
|
|
5078
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5079
5171
|
meta?: string[] | undefined;
|
|
5080
5172
|
}[];
|
|
5081
5173
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -5160,6 +5252,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5160
5252
|
value: string;
|
|
5161
5253
|
label: string;
|
|
5162
5254
|
short?: boolean | undefined;
|
|
5255
|
+
parts?: {
|
|
5256
|
+
text: string;
|
|
5257
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5258
|
+
}[] | undefined;
|
|
5163
5259
|
}[];
|
|
5164
5260
|
} | {
|
|
5165
5261
|
type: "image";
|
|
@@ -5373,13 +5469,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5373
5469
|
type: "callout";
|
|
5374
5470
|
text: string;
|
|
5375
5471
|
title?: string | undefined;
|
|
5376
|
-
icon?: string | undefined;
|
|
5377
5472
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5473
|
+
icon?: string | undefined;
|
|
5378
5474
|
} | {
|
|
5379
5475
|
type: "entityRef";
|
|
5380
5476
|
label: string;
|
|
5381
|
-
url?: string | undefined;
|
|
5382
5477
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5478
|
+
url?: string | undefined;
|
|
5383
5479
|
entity?: string | undefined;
|
|
5384
5480
|
} | {
|
|
5385
5481
|
type: "kanban";
|
|
@@ -5389,11 +5485,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5389
5485
|
cards: {
|
|
5390
5486
|
title: string;
|
|
5391
5487
|
id: string;
|
|
5488
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5392
5489
|
badge?: {
|
|
5393
5490
|
label: string;
|
|
5394
5491
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5395
5492
|
} | undefined;
|
|
5396
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5397
5493
|
meta?: string[] | undefined;
|
|
5398
5494
|
}[];
|
|
5399
5495
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -5453,6 +5549,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5453
5549
|
value: string;
|
|
5454
5550
|
label: string;
|
|
5455
5551
|
short?: boolean | undefined;
|
|
5552
|
+
parts?: {
|
|
5553
|
+
text: string;
|
|
5554
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5555
|
+
}[] | undefined;
|
|
5456
5556
|
}[];
|
|
5457
5557
|
} | {
|
|
5458
5558
|
type: "image";
|
|
@@ -5666,13 +5766,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5666
5766
|
type: "callout";
|
|
5667
5767
|
text: string;
|
|
5668
5768
|
title?: string | undefined;
|
|
5669
|
-
icon?: string | undefined;
|
|
5670
5769
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5770
|
+
icon?: string | undefined;
|
|
5671
5771
|
} | {
|
|
5672
5772
|
type: "entityRef";
|
|
5673
5773
|
label: string;
|
|
5674
|
-
url?: string | undefined;
|
|
5675
5774
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5775
|
+
url?: string | undefined;
|
|
5676
5776
|
entity?: string | undefined;
|
|
5677
5777
|
} | {
|
|
5678
5778
|
type: "kanban";
|
|
@@ -5682,11 +5782,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5682
5782
|
cards: {
|
|
5683
5783
|
title: string;
|
|
5684
5784
|
id: string;
|
|
5785
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5685
5786
|
badge?: {
|
|
5686
5787
|
label: string;
|
|
5687
5788
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5688
5789
|
} | undefined;
|
|
5689
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5690
5790
|
meta?: string[] | undefined;
|
|
5691
5791
|
}[];
|
|
5692
5792
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -5792,6 +5892,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5792
5892
|
value: string;
|
|
5793
5893
|
label: string;
|
|
5794
5894
|
short?: boolean | undefined;
|
|
5895
|
+
parts?: {
|
|
5896
|
+
text: string;
|
|
5897
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5898
|
+
}[] | undefined;
|
|
5795
5899
|
}[];
|
|
5796
5900
|
} | {
|
|
5797
5901
|
type: "image";
|
|
@@ -6005,13 +6109,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6005
6109
|
type: "callout";
|
|
6006
6110
|
text: string;
|
|
6007
6111
|
title?: string | undefined;
|
|
6008
|
-
icon?: string | undefined;
|
|
6009
6112
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6113
|
+
icon?: string | undefined;
|
|
6010
6114
|
} | {
|
|
6011
6115
|
type: "entityRef";
|
|
6012
6116
|
label: string;
|
|
6013
|
-
url?: string | undefined;
|
|
6014
6117
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6118
|
+
url?: string | undefined;
|
|
6015
6119
|
entity?: string | undefined;
|
|
6016
6120
|
} | {
|
|
6017
6121
|
type: "kanban";
|
|
@@ -6021,11 +6125,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6021
6125
|
cards: {
|
|
6022
6126
|
title: string;
|
|
6023
6127
|
id: string;
|
|
6128
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6024
6129
|
badge?: {
|
|
6025
6130
|
label: string;
|
|
6026
6131
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6027
6132
|
} | undefined;
|
|
6028
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6029
6133
|
meta?: string[] | undefined;
|
|
6030
6134
|
}[];
|
|
6031
6135
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -6069,6 +6173,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6069
6173
|
value: string;
|
|
6070
6174
|
label: string;
|
|
6071
6175
|
short?: boolean | undefined;
|
|
6176
|
+
parts?: {
|
|
6177
|
+
text: string;
|
|
6178
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6179
|
+
}[] | undefined;
|
|
6072
6180
|
}[];
|
|
6073
6181
|
} | {
|
|
6074
6182
|
type: "image";
|
|
@@ -6282,13 +6390,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6282
6390
|
type: "callout";
|
|
6283
6391
|
text: string;
|
|
6284
6392
|
title?: string | undefined;
|
|
6285
|
-
icon?: string | undefined;
|
|
6286
6393
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6394
|
+
icon?: string | undefined;
|
|
6287
6395
|
} | {
|
|
6288
6396
|
type: "entityRef";
|
|
6289
6397
|
label: string;
|
|
6290
|
-
url?: string | undefined;
|
|
6291
6398
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6399
|
+
url?: string | undefined;
|
|
6292
6400
|
entity?: string | undefined;
|
|
6293
6401
|
} | {
|
|
6294
6402
|
type: "kanban";
|
|
@@ -6298,11 +6406,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6298
6406
|
cards: {
|
|
6299
6407
|
title: string;
|
|
6300
6408
|
id: string;
|
|
6409
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6301
6410
|
badge?: {
|
|
6302
6411
|
label: string;
|
|
6303
6412
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6304
6413
|
} | undefined;
|
|
6305
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6306
6414
|
meta?: string[] | undefined;
|
|
6307
6415
|
}[];
|
|
6308
6416
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -6392,6 +6500,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6392
6500
|
value: string;
|
|
6393
6501
|
label: string;
|
|
6394
6502
|
short?: boolean | undefined;
|
|
6503
|
+
parts?: {
|
|
6504
|
+
text: string;
|
|
6505
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6506
|
+
}[] | undefined;
|
|
6395
6507
|
}[];
|
|
6396
6508
|
} | {
|
|
6397
6509
|
type: "image";
|
|
@@ -6605,13 +6717,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6605
6717
|
type: "callout";
|
|
6606
6718
|
text: string;
|
|
6607
6719
|
title?: string | undefined;
|
|
6608
|
-
icon?: string | undefined;
|
|
6609
6720
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6721
|
+
icon?: string | undefined;
|
|
6610
6722
|
} | {
|
|
6611
6723
|
type: "entityRef";
|
|
6612
6724
|
label: string;
|
|
6613
|
-
url?: string | undefined;
|
|
6614
6725
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6726
|
+
url?: string | undefined;
|
|
6615
6727
|
entity?: string | undefined;
|
|
6616
6728
|
} | {
|
|
6617
6729
|
type: "kanban";
|
|
@@ -6621,11 +6733,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6621
6733
|
cards: {
|
|
6622
6734
|
title: string;
|
|
6623
6735
|
id: string;
|
|
6736
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6624
6737
|
badge?: {
|
|
6625
6738
|
label: string;
|
|
6626
6739
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6627
6740
|
} | undefined;
|
|
6628
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6629
6741
|
meta?: string[] | undefined;
|
|
6630
6742
|
}[];
|
|
6631
6743
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -6685,6 +6797,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6685
6797
|
value: string;
|
|
6686
6798
|
label: string;
|
|
6687
6799
|
short?: boolean | undefined;
|
|
6800
|
+
parts?: {
|
|
6801
|
+
text: string;
|
|
6802
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6803
|
+
}[] | undefined;
|
|
6688
6804
|
}[];
|
|
6689
6805
|
} | {
|
|
6690
6806
|
type: "image";
|
|
@@ -6898,13 +7014,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6898
7014
|
type: "callout";
|
|
6899
7015
|
text: string;
|
|
6900
7016
|
title?: string | undefined;
|
|
6901
|
-
icon?: string | undefined;
|
|
6902
7017
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7018
|
+
icon?: string | undefined;
|
|
6903
7019
|
} | {
|
|
6904
7020
|
type: "entityRef";
|
|
6905
7021
|
label: string;
|
|
6906
|
-
url?: string | undefined;
|
|
6907
7022
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7023
|
+
url?: string | undefined;
|
|
6908
7024
|
entity?: string | undefined;
|
|
6909
7025
|
} | {
|
|
6910
7026
|
type: "kanban";
|
|
@@ -6914,11 +7030,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6914
7030
|
cards: {
|
|
6915
7031
|
title: string;
|
|
6916
7032
|
id: string;
|
|
7033
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6917
7034
|
badge?: {
|
|
6918
7035
|
label: string;
|
|
6919
7036
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6920
7037
|
} | undefined;
|
|
6921
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6922
7038
|
meta?: string[] | undefined;
|
|
6923
7039
|
}[];
|
|
6924
7040
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -7030,6 +7146,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7030
7146
|
value: string;
|
|
7031
7147
|
label: string;
|
|
7032
7148
|
short?: boolean | undefined;
|
|
7149
|
+
parts?: {
|
|
7150
|
+
text: string;
|
|
7151
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7152
|
+
}[] | undefined;
|
|
7033
7153
|
}[];
|
|
7034
7154
|
} | {
|
|
7035
7155
|
type: "image";
|
|
@@ -7243,13 +7363,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7243
7363
|
type: "callout";
|
|
7244
7364
|
text: string;
|
|
7245
7365
|
title?: string | undefined;
|
|
7246
|
-
icon?: string | undefined;
|
|
7247
7366
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7367
|
+
icon?: string | undefined;
|
|
7248
7368
|
} | {
|
|
7249
7369
|
type: "entityRef";
|
|
7250
7370
|
label: string;
|
|
7251
|
-
url?: string | undefined;
|
|
7252
7371
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7372
|
+
url?: string | undefined;
|
|
7253
7373
|
entity?: string | undefined;
|
|
7254
7374
|
} | {
|
|
7255
7375
|
type: "kanban";
|
|
@@ -7259,11 +7379,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7259
7379
|
cards: {
|
|
7260
7380
|
title: string;
|
|
7261
7381
|
id: string;
|
|
7382
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7262
7383
|
badge?: {
|
|
7263
7384
|
label: string;
|
|
7264
7385
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7265
7386
|
} | undefined;
|
|
7266
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7267
7387
|
meta?: string[] | undefined;
|
|
7268
7388
|
}[];
|
|
7269
7389
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -7307,6 +7427,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7307
7427
|
value: string;
|
|
7308
7428
|
label: string;
|
|
7309
7429
|
short?: boolean | undefined;
|
|
7430
|
+
parts?: {
|
|
7431
|
+
text: string;
|
|
7432
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7433
|
+
}[] | undefined;
|
|
7310
7434
|
}[];
|
|
7311
7435
|
} | {
|
|
7312
7436
|
type: "image";
|
|
@@ -7520,13 +7644,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7520
7644
|
type: "callout";
|
|
7521
7645
|
text: string;
|
|
7522
7646
|
title?: string | undefined;
|
|
7523
|
-
icon?: string | undefined;
|
|
7524
7647
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7648
|
+
icon?: string | undefined;
|
|
7525
7649
|
} | {
|
|
7526
7650
|
type: "entityRef";
|
|
7527
7651
|
label: string;
|
|
7528
|
-
url?: string | undefined;
|
|
7529
7652
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7653
|
+
url?: string | undefined;
|
|
7530
7654
|
entity?: string | undefined;
|
|
7531
7655
|
} | {
|
|
7532
7656
|
type: "kanban";
|
|
@@ -7536,11 +7660,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7536
7660
|
cards: {
|
|
7537
7661
|
title: string;
|
|
7538
7662
|
id: string;
|
|
7663
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7539
7664
|
badge?: {
|
|
7540
7665
|
label: string;
|
|
7541
7666
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7542
7667
|
} | undefined;
|
|
7543
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7544
7668
|
meta?: string[] | undefined;
|
|
7545
7669
|
}[];
|
|
7546
7670
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -7695,14 +7819,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7695
7819
|
label: z.ZodString;
|
|
7696
7820
|
value: z.ZodString;
|
|
7697
7821
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
7822
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7823
|
+
text: z.ZodString;
|
|
7824
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
7825
|
+
}, "strip", z.ZodTypeAny, {
|
|
7826
|
+
text: string;
|
|
7827
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7828
|
+
}, {
|
|
7829
|
+
text: string;
|
|
7830
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7831
|
+
}>, "many">>;
|
|
7698
7832
|
}, "strip", z.ZodTypeAny, {
|
|
7699
7833
|
value: string;
|
|
7700
7834
|
label: string;
|
|
7701
7835
|
short?: boolean | undefined;
|
|
7836
|
+
parts?: {
|
|
7837
|
+
text: string;
|
|
7838
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7839
|
+
}[] | undefined;
|
|
7702
7840
|
}, {
|
|
7703
7841
|
value: string;
|
|
7704
7842
|
label: string;
|
|
7705
7843
|
short?: boolean | undefined;
|
|
7844
|
+
parts?: {
|
|
7845
|
+
text: string;
|
|
7846
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7847
|
+
}[] | undefined;
|
|
7706
7848
|
}>, "many">;
|
|
7707
7849
|
}, "strip", z.ZodTypeAny, {
|
|
7708
7850
|
type: "fields";
|
|
@@ -7710,6 +7852,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7710
7852
|
value: string;
|
|
7711
7853
|
label: string;
|
|
7712
7854
|
short?: boolean | undefined;
|
|
7855
|
+
parts?: {
|
|
7856
|
+
text: string;
|
|
7857
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7858
|
+
}[] | undefined;
|
|
7713
7859
|
}[];
|
|
7714
7860
|
}, {
|
|
7715
7861
|
type: "fields";
|
|
@@ -7717,6 +7863,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7717
7863
|
value: string;
|
|
7718
7864
|
label: string;
|
|
7719
7865
|
short?: boolean | undefined;
|
|
7866
|
+
parts?: {
|
|
7867
|
+
text: string;
|
|
7868
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7869
|
+
}[] | undefined;
|
|
7720
7870
|
}[];
|
|
7721
7871
|
}>, z.ZodObject<{
|
|
7722
7872
|
type: z.ZodLiteral<"image">;
|
|
@@ -8008,14 +8158,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8008
8158
|
type: "callout";
|
|
8009
8159
|
text: string;
|
|
8010
8160
|
title?: string | undefined;
|
|
8011
|
-
icon?: string | undefined;
|
|
8012
8161
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8162
|
+
icon?: string | undefined;
|
|
8013
8163
|
}, {
|
|
8014
8164
|
type: "callout";
|
|
8015
8165
|
text: string;
|
|
8016
8166
|
title?: string | undefined;
|
|
8017
|
-
icon?: string | undefined;
|
|
8018
8167
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8168
|
+
icon?: string | undefined;
|
|
8019
8169
|
}>, z.ZodObject<{
|
|
8020
8170
|
type: z.ZodLiteral<"entityRef">;
|
|
8021
8171
|
label: z.ZodString;
|
|
@@ -8025,14 +8175,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8025
8175
|
}, "strip", z.ZodTypeAny, {
|
|
8026
8176
|
type: "entityRef";
|
|
8027
8177
|
label: string;
|
|
8028
|
-
url?: string | undefined;
|
|
8029
8178
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8179
|
+
url?: string | undefined;
|
|
8030
8180
|
entity?: string | undefined;
|
|
8031
8181
|
}, {
|
|
8032
8182
|
type: "entityRef";
|
|
8033
8183
|
label: string;
|
|
8034
|
-
url?: string | undefined;
|
|
8035
8184
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8185
|
+
url?: string | undefined;
|
|
8036
8186
|
entity?: string | undefined;
|
|
8037
8187
|
}>, z.ZodObject<{
|
|
8038
8188
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -8058,20 +8208,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8058
8208
|
}, "strip", z.ZodTypeAny, {
|
|
8059
8209
|
title: string;
|
|
8060
8210
|
id: string;
|
|
8211
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8061
8212
|
badge?: {
|
|
8062
8213
|
label: string;
|
|
8063
8214
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8064
8215
|
} | undefined;
|
|
8065
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8066
8216
|
meta?: string[] | undefined;
|
|
8067
8217
|
}, {
|
|
8068
8218
|
title: string;
|
|
8069
8219
|
id: string;
|
|
8220
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8070
8221
|
badge?: {
|
|
8071
8222
|
label: string;
|
|
8072
8223
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8073
8224
|
} | undefined;
|
|
8074
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8075
8225
|
meta?: string[] | undefined;
|
|
8076
8226
|
}>, "many">;
|
|
8077
8227
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8080,11 +8230,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8080
8230
|
cards: {
|
|
8081
8231
|
title: string;
|
|
8082
8232
|
id: string;
|
|
8233
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8083
8234
|
badge?: {
|
|
8084
8235
|
label: string;
|
|
8085
8236
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8086
8237
|
} | undefined;
|
|
8087
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8088
8238
|
meta?: string[] | undefined;
|
|
8089
8239
|
}[];
|
|
8090
8240
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8094,11 +8244,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8094
8244
|
cards: {
|
|
8095
8245
|
title: string;
|
|
8096
8246
|
id: string;
|
|
8247
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8097
8248
|
badge?: {
|
|
8098
8249
|
label: string;
|
|
8099
8250
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8100
8251
|
} | undefined;
|
|
8101
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8102
8252
|
meta?: string[] | undefined;
|
|
8103
8253
|
}[];
|
|
8104
8254
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8112,11 +8262,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8112
8262
|
cards: {
|
|
8113
8263
|
title: string;
|
|
8114
8264
|
id: string;
|
|
8265
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8115
8266
|
badge?: {
|
|
8116
8267
|
label: string;
|
|
8117
8268
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8118
8269
|
} | undefined;
|
|
8119
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8120
8270
|
meta?: string[] | undefined;
|
|
8121
8271
|
}[];
|
|
8122
8272
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8130,11 +8280,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8130
8280
|
cards: {
|
|
8131
8281
|
title: string;
|
|
8132
8282
|
id: string;
|
|
8283
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8133
8284
|
badge?: {
|
|
8134
8285
|
label: string;
|
|
8135
8286
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8136
8287
|
} | undefined;
|
|
8137
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8138
8288
|
meta?: string[] | undefined;
|
|
8139
8289
|
}[];
|
|
8140
8290
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8718,14 +8868,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8718
8868
|
label: z.ZodString;
|
|
8719
8869
|
value: z.ZodString;
|
|
8720
8870
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
8871
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8872
|
+
text: z.ZodString;
|
|
8873
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
8874
|
+
}, "strip", z.ZodTypeAny, {
|
|
8875
|
+
text: string;
|
|
8876
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8877
|
+
}, {
|
|
8878
|
+
text: string;
|
|
8879
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8880
|
+
}>, "many">>;
|
|
8721
8881
|
}, "strip", z.ZodTypeAny, {
|
|
8722
8882
|
value: string;
|
|
8723
8883
|
label: string;
|
|
8724
8884
|
short?: boolean | undefined;
|
|
8885
|
+
parts?: {
|
|
8886
|
+
text: string;
|
|
8887
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8888
|
+
}[] | undefined;
|
|
8725
8889
|
}, {
|
|
8726
8890
|
value: string;
|
|
8727
8891
|
label: string;
|
|
8728
8892
|
short?: boolean | undefined;
|
|
8893
|
+
parts?: {
|
|
8894
|
+
text: string;
|
|
8895
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8896
|
+
}[] | undefined;
|
|
8729
8897
|
}>, "many">;
|
|
8730
8898
|
}, "strip", z.ZodTypeAny, {
|
|
8731
8899
|
type: "fields";
|
|
@@ -8733,6 +8901,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8733
8901
|
value: string;
|
|
8734
8902
|
label: string;
|
|
8735
8903
|
short?: boolean | undefined;
|
|
8904
|
+
parts?: {
|
|
8905
|
+
text: string;
|
|
8906
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8907
|
+
}[] | undefined;
|
|
8736
8908
|
}[];
|
|
8737
8909
|
}, {
|
|
8738
8910
|
type: "fields";
|
|
@@ -8740,6 +8912,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8740
8912
|
value: string;
|
|
8741
8913
|
label: string;
|
|
8742
8914
|
short?: boolean | undefined;
|
|
8915
|
+
parts?: {
|
|
8916
|
+
text: string;
|
|
8917
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8918
|
+
}[] | undefined;
|
|
8743
8919
|
}[];
|
|
8744
8920
|
}>, z.ZodObject<{
|
|
8745
8921
|
type: z.ZodLiteral<"image">;
|
|
@@ -9031,14 +9207,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9031
9207
|
type: "callout";
|
|
9032
9208
|
text: string;
|
|
9033
9209
|
title?: string | undefined;
|
|
9034
|
-
icon?: string | undefined;
|
|
9035
9210
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9211
|
+
icon?: string | undefined;
|
|
9036
9212
|
}, {
|
|
9037
9213
|
type: "callout";
|
|
9038
9214
|
text: string;
|
|
9039
9215
|
title?: string | undefined;
|
|
9040
|
-
icon?: string | undefined;
|
|
9041
9216
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9217
|
+
icon?: string | undefined;
|
|
9042
9218
|
}>, z.ZodObject<{
|
|
9043
9219
|
type: z.ZodLiteral<"entityRef">;
|
|
9044
9220
|
label: z.ZodString;
|
|
@@ -9048,14 +9224,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9048
9224
|
}, "strip", z.ZodTypeAny, {
|
|
9049
9225
|
type: "entityRef";
|
|
9050
9226
|
label: string;
|
|
9051
|
-
url?: string | undefined;
|
|
9052
9227
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9228
|
+
url?: string | undefined;
|
|
9053
9229
|
entity?: string | undefined;
|
|
9054
9230
|
}, {
|
|
9055
9231
|
type: "entityRef";
|
|
9056
9232
|
label: string;
|
|
9057
|
-
url?: string | undefined;
|
|
9058
9233
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9234
|
+
url?: string | undefined;
|
|
9059
9235
|
entity?: string | undefined;
|
|
9060
9236
|
}>, z.ZodObject<{
|
|
9061
9237
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -9081,20 +9257,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9081
9257
|
}, "strip", z.ZodTypeAny, {
|
|
9082
9258
|
title: string;
|
|
9083
9259
|
id: string;
|
|
9260
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9084
9261
|
badge?: {
|
|
9085
9262
|
label: string;
|
|
9086
9263
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9087
9264
|
} | undefined;
|
|
9088
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9089
9265
|
meta?: string[] | undefined;
|
|
9090
9266
|
}, {
|
|
9091
9267
|
title: string;
|
|
9092
9268
|
id: string;
|
|
9269
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9093
9270
|
badge?: {
|
|
9094
9271
|
label: string;
|
|
9095
9272
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9096
9273
|
} | undefined;
|
|
9097
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9098
9274
|
meta?: string[] | undefined;
|
|
9099
9275
|
}>, "many">;
|
|
9100
9276
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9103,11 +9279,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9103
9279
|
cards: {
|
|
9104
9280
|
title: string;
|
|
9105
9281
|
id: string;
|
|
9282
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9106
9283
|
badge?: {
|
|
9107
9284
|
label: string;
|
|
9108
9285
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9109
9286
|
} | undefined;
|
|
9110
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9111
9287
|
meta?: string[] | undefined;
|
|
9112
9288
|
}[];
|
|
9113
9289
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9117,11 +9293,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9117
9293
|
cards: {
|
|
9118
9294
|
title: string;
|
|
9119
9295
|
id: string;
|
|
9296
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9120
9297
|
badge?: {
|
|
9121
9298
|
label: string;
|
|
9122
9299
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9123
9300
|
} | undefined;
|
|
9124
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9125
9301
|
meta?: string[] | undefined;
|
|
9126
9302
|
}[];
|
|
9127
9303
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9135,11 +9311,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9135
9311
|
cards: {
|
|
9136
9312
|
title: string;
|
|
9137
9313
|
id: string;
|
|
9314
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9138
9315
|
badge?: {
|
|
9139
9316
|
label: string;
|
|
9140
9317
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9141
9318
|
} | undefined;
|
|
9142
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9143
9319
|
meta?: string[] | undefined;
|
|
9144
9320
|
}[];
|
|
9145
9321
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9153,11 +9329,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9153
9329
|
cards: {
|
|
9154
9330
|
title: string;
|
|
9155
9331
|
id: string;
|
|
9332
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9156
9333
|
badge?: {
|
|
9157
9334
|
label: string;
|
|
9158
9335
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9159
9336
|
} | undefined;
|
|
9160
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9161
9337
|
meta?: string[] | undefined;
|
|
9162
9338
|
}[];
|
|
9163
9339
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9720,6 +9896,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9720
9896
|
value: string;
|
|
9721
9897
|
label: string;
|
|
9722
9898
|
short?: boolean | undefined;
|
|
9899
|
+
parts?: {
|
|
9900
|
+
text: string;
|
|
9901
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9902
|
+
}[] | undefined;
|
|
9723
9903
|
}[];
|
|
9724
9904
|
} | {
|
|
9725
9905
|
type: "image";
|
|
@@ -9933,13 +10113,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9933
10113
|
type: "callout";
|
|
9934
10114
|
text: string;
|
|
9935
10115
|
title?: string | undefined;
|
|
9936
|
-
icon?: string | undefined;
|
|
9937
10116
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10117
|
+
icon?: string | undefined;
|
|
9938
10118
|
} | {
|
|
9939
10119
|
type: "entityRef";
|
|
9940
10120
|
label: string;
|
|
9941
|
-
url?: string | undefined;
|
|
9942
10121
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10122
|
+
url?: string | undefined;
|
|
9943
10123
|
entity?: string | undefined;
|
|
9944
10124
|
} | {
|
|
9945
10125
|
type: "kanban";
|
|
@@ -9949,11 +10129,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9949
10129
|
cards: {
|
|
9950
10130
|
title: string;
|
|
9951
10131
|
id: string;
|
|
10132
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9952
10133
|
badge?: {
|
|
9953
10134
|
label: string;
|
|
9954
10135
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9955
10136
|
} | undefined;
|
|
9956
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9957
10137
|
meta?: string[] | undefined;
|
|
9958
10138
|
}[];
|
|
9959
10139
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9997,6 +10177,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9997
10177
|
value: string;
|
|
9998
10178
|
label: string;
|
|
9999
10179
|
short?: boolean | undefined;
|
|
10180
|
+
parts?: {
|
|
10181
|
+
text: string;
|
|
10182
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10183
|
+
}[] | undefined;
|
|
10000
10184
|
}[];
|
|
10001
10185
|
} | {
|
|
10002
10186
|
type: "image";
|
|
@@ -10210,13 +10394,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10210
10394
|
type: "callout";
|
|
10211
10395
|
text: string;
|
|
10212
10396
|
title?: string | undefined;
|
|
10213
|
-
icon?: string | undefined;
|
|
10214
10397
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10398
|
+
icon?: string | undefined;
|
|
10215
10399
|
} | {
|
|
10216
10400
|
type: "entityRef";
|
|
10217
10401
|
label: string;
|
|
10218
|
-
url?: string | undefined;
|
|
10219
10402
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10403
|
+
url?: string | undefined;
|
|
10220
10404
|
entity?: string | undefined;
|
|
10221
10405
|
} | {
|
|
10222
10406
|
type: "kanban";
|
|
@@ -10226,11 +10410,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10226
10410
|
cards: {
|
|
10227
10411
|
title: string;
|
|
10228
10412
|
id: string;
|
|
10413
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10229
10414
|
badge?: {
|
|
10230
10415
|
label: string;
|
|
10231
10416
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10232
10417
|
} | undefined;
|
|
10233
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10234
10418
|
meta?: string[] | undefined;
|
|
10235
10419
|
}[];
|
|
10236
10420
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -10316,6 +10500,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10316
10500
|
value: string;
|
|
10317
10501
|
label: string;
|
|
10318
10502
|
short?: boolean | undefined;
|
|
10503
|
+
parts?: {
|
|
10504
|
+
text: string;
|
|
10505
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10506
|
+
}[] | undefined;
|
|
10319
10507
|
}[];
|
|
10320
10508
|
} | {
|
|
10321
10509
|
type: "image";
|
|
@@ -10529,13 +10717,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10529
10717
|
type: "callout";
|
|
10530
10718
|
text: string;
|
|
10531
10719
|
title?: string | undefined;
|
|
10532
|
-
icon?: string | undefined;
|
|
10533
10720
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10721
|
+
icon?: string | undefined;
|
|
10534
10722
|
} | {
|
|
10535
10723
|
type: "entityRef";
|
|
10536
10724
|
label: string;
|
|
10537
|
-
url?: string | undefined;
|
|
10538
10725
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10726
|
+
url?: string | undefined;
|
|
10539
10727
|
entity?: string | undefined;
|
|
10540
10728
|
} | {
|
|
10541
10729
|
type: "kanban";
|
|
@@ -10545,11 +10733,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10545
10733
|
cards: {
|
|
10546
10734
|
title: string;
|
|
10547
10735
|
id: string;
|
|
10736
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10548
10737
|
badge?: {
|
|
10549
10738
|
label: string;
|
|
10550
10739
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10551
10740
|
} | undefined;
|
|
10552
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10553
10741
|
meta?: string[] | undefined;
|
|
10554
10742
|
}[];
|
|
10555
10743
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -10609,6 +10797,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10609
10797
|
value: string;
|
|
10610
10798
|
label: string;
|
|
10611
10799
|
short?: boolean | undefined;
|
|
10800
|
+
parts?: {
|
|
10801
|
+
text: string;
|
|
10802
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10803
|
+
}[] | undefined;
|
|
10612
10804
|
}[];
|
|
10613
10805
|
} | {
|
|
10614
10806
|
type: "image";
|
|
@@ -10822,13 +11014,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10822
11014
|
type: "callout";
|
|
10823
11015
|
text: string;
|
|
10824
11016
|
title?: string | undefined;
|
|
10825
|
-
icon?: string | undefined;
|
|
10826
11017
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11018
|
+
icon?: string | undefined;
|
|
10827
11019
|
} | {
|
|
10828
11020
|
type: "entityRef";
|
|
10829
11021
|
label: string;
|
|
10830
|
-
url?: string | undefined;
|
|
10831
11022
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11023
|
+
url?: string | undefined;
|
|
10832
11024
|
entity?: string | undefined;
|
|
10833
11025
|
} | {
|
|
10834
11026
|
type: "kanban";
|
|
@@ -10838,11 +11030,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10838
11030
|
cards: {
|
|
10839
11031
|
title: string;
|
|
10840
11032
|
id: string;
|
|
11033
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10841
11034
|
badge?: {
|
|
10842
11035
|
label: string;
|
|
10843
11036
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10844
11037
|
} | undefined;
|
|
10845
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10846
11038
|
meta?: string[] | undefined;
|
|
10847
11039
|
}[];
|
|
10848
11040
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -10907,6 +11099,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10907
11099
|
value: string;
|
|
10908
11100
|
label: string;
|
|
10909
11101
|
short?: boolean | undefined;
|
|
11102
|
+
parts?: {
|
|
11103
|
+
text: string;
|
|
11104
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11105
|
+
}[] | undefined;
|
|
10910
11106
|
}[];
|
|
10911
11107
|
} | {
|
|
10912
11108
|
type: "image";
|
|
@@ -11120,13 +11316,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11120
11316
|
type: "callout";
|
|
11121
11317
|
text: string;
|
|
11122
11318
|
title?: string | undefined;
|
|
11123
|
-
icon?: string | undefined;
|
|
11124
11319
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11320
|
+
icon?: string | undefined;
|
|
11125
11321
|
} | {
|
|
11126
11322
|
type: "entityRef";
|
|
11127
11323
|
label: string;
|
|
11128
|
-
url?: string | undefined;
|
|
11129
11324
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11325
|
+
url?: string | undefined;
|
|
11130
11326
|
entity?: string | undefined;
|
|
11131
11327
|
} | {
|
|
11132
11328
|
type: "kanban";
|
|
@@ -11136,11 +11332,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11136
11332
|
cards: {
|
|
11137
11333
|
title: string;
|
|
11138
11334
|
id: string;
|
|
11335
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11139
11336
|
badge?: {
|
|
11140
11337
|
label: string;
|
|
11141
11338
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11142
11339
|
} | undefined;
|
|
11143
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11144
11340
|
meta?: string[] | undefined;
|
|
11145
11341
|
}[];
|
|
11146
11342
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -11184,6 +11380,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11184
11380
|
value: string;
|
|
11185
11381
|
label: string;
|
|
11186
11382
|
short?: boolean | undefined;
|
|
11383
|
+
parts?: {
|
|
11384
|
+
text: string;
|
|
11385
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11386
|
+
}[] | undefined;
|
|
11187
11387
|
}[];
|
|
11188
11388
|
} | {
|
|
11189
11389
|
type: "image";
|
|
@@ -11397,13 +11597,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11397
11597
|
type: "callout";
|
|
11398
11598
|
text: string;
|
|
11399
11599
|
title?: string | undefined;
|
|
11400
|
-
icon?: string | undefined;
|
|
11401
11600
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11601
|
+
icon?: string | undefined;
|
|
11402
11602
|
} | {
|
|
11403
11603
|
type: "entityRef";
|
|
11404
11604
|
label: string;
|
|
11405
|
-
url?: string | undefined;
|
|
11406
11605
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11606
|
+
url?: string | undefined;
|
|
11407
11607
|
entity?: string | undefined;
|
|
11408
11608
|
} | {
|
|
11409
11609
|
type: "kanban";
|
|
@@ -11413,11 +11613,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11413
11613
|
cards: {
|
|
11414
11614
|
title: string;
|
|
11415
11615
|
id: string;
|
|
11616
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11416
11617
|
badge?: {
|
|
11417
11618
|
label: string;
|
|
11418
11619
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11419
11620
|
} | undefined;
|
|
11420
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11421
11621
|
meta?: string[] | undefined;
|
|
11422
11622
|
}[];
|
|
11423
11623
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -11468,6 +11668,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11468
11668
|
value: string;
|
|
11469
11669
|
label: string;
|
|
11470
11670
|
short?: boolean | undefined;
|
|
11671
|
+
parts?: {
|
|
11672
|
+
text: string;
|
|
11673
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11674
|
+
}[] | undefined;
|
|
11471
11675
|
}[];
|
|
11472
11676
|
} | {
|
|
11473
11677
|
type: "image";
|
|
@@ -11681,13 +11885,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11681
11885
|
type: "callout";
|
|
11682
11886
|
text: string;
|
|
11683
11887
|
title?: string | undefined;
|
|
11684
|
-
icon?: string | undefined;
|
|
11685
11888
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11889
|
+
icon?: string | undefined;
|
|
11686
11890
|
} | {
|
|
11687
11891
|
type: "entityRef";
|
|
11688
11892
|
label: string;
|
|
11689
|
-
url?: string | undefined;
|
|
11690
11893
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11894
|
+
url?: string | undefined;
|
|
11691
11895
|
entity?: string | undefined;
|
|
11692
11896
|
} | {
|
|
11693
11897
|
type: "kanban";
|
|
@@ -11697,11 +11901,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11697
11901
|
cards: {
|
|
11698
11902
|
title: string;
|
|
11699
11903
|
id: string;
|
|
11904
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11700
11905
|
badge?: {
|
|
11701
11906
|
label: string;
|
|
11702
11907
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11703
11908
|
} | undefined;
|
|
11704
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11705
11909
|
meta?: string[] | undefined;
|
|
11706
11910
|
}[];
|
|
11707
11911
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -11761,6 +11965,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11761
11965
|
value: string;
|
|
11762
11966
|
label: string;
|
|
11763
11967
|
short?: boolean | undefined;
|
|
11968
|
+
parts?: {
|
|
11969
|
+
text: string;
|
|
11970
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11971
|
+
}[] | undefined;
|
|
11764
11972
|
}[];
|
|
11765
11973
|
} | {
|
|
11766
11974
|
type: "image";
|
|
@@ -11974,13 +12182,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11974
12182
|
type: "callout";
|
|
11975
12183
|
text: string;
|
|
11976
12184
|
title?: string | undefined;
|
|
11977
|
-
icon?: string | undefined;
|
|
11978
12185
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12186
|
+
icon?: string | undefined;
|
|
11979
12187
|
} | {
|
|
11980
12188
|
type: "entityRef";
|
|
11981
12189
|
label: string;
|
|
11982
|
-
url?: string | undefined;
|
|
11983
12190
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12191
|
+
url?: string | undefined;
|
|
11984
12192
|
entity?: string | undefined;
|
|
11985
12193
|
} | {
|
|
11986
12194
|
type: "kanban";
|
|
@@ -11990,11 +12198,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11990
12198
|
cards: {
|
|
11991
12199
|
title: string;
|
|
11992
12200
|
id: string;
|
|
12201
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11993
12202
|
badge?: {
|
|
11994
12203
|
label: string;
|
|
11995
12204
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11996
12205
|
} | undefined;
|
|
11997
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11998
12206
|
meta?: string[] | undefined;
|
|
11999
12207
|
}[];
|
|
12000
12208
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -12064,6 +12272,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12064
12272
|
value: string;
|
|
12065
12273
|
label: string;
|
|
12066
12274
|
short?: boolean | undefined;
|
|
12275
|
+
parts?: {
|
|
12276
|
+
text: string;
|
|
12277
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12278
|
+
}[] | undefined;
|
|
12067
12279
|
}[];
|
|
12068
12280
|
} | {
|
|
12069
12281
|
type: "image";
|
|
@@ -12277,13 +12489,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12277
12489
|
type: "callout";
|
|
12278
12490
|
text: string;
|
|
12279
12491
|
title?: string | undefined;
|
|
12280
|
-
icon?: string | undefined;
|
|
12281
12492
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12493
|
+
icon?: string | undefined;
|
|
12282
12494
|
} | {
|
|
12283
12495
|
type: "entityRef";
|
|
12284
12496
|
label: string;
|
|
12285
|
-
url?: string | undefined;
|
|
12286
12497
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12498
|
+
url?: string | undefined;
|
|
12287
12499
|
entity?: string | undefined;
|
|
12288
12500
|
} | {
|
|
12289
12501
|
type: "kanban";
|
|
@@ -12293,11 +12505,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12293
12505
|
cards: {
|
|
12294
12506
|
title: string;
|
|
12295
12507
|
id: string;
|
|
12508
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12296
12509
|
badge?: {
|
|
12297
12510
|
label: string;
|
|
12298
12511
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12299
12512
|
} | undefined;
|
|
12300
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12301
12513
|
meta?: string[] | undefined;
|
|
12302
12514
|
}[];
|
|
12303
12515
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -12341,6 +12553,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12341
12553
|
value: string;
|
|
12342
12554
|
label: string;
|
|
12343
12555
|
short?: boolean | undefined;
|
|
12556
|
+
parts?: {
|
|
12557
|
+
text: string;
|
|
12558
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12559
|
+
}[] | undefined;
|
|
12344
12560
|
}[];
|
|
12345
12561
|
} | {
|
|
12346
12562
|
type: "image";
|
|
@@ -12554,13 +12770,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12554
12770
|
type: "callout";
|
|
12555
12771
|
text: string;
|
|
12556
12772
|
title?: string | undefined;
|
|
12557
|
-
icon?: string | undefined;
|
|
12558
12773
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12774
|
+
icon?: string | undefined;
|
|
12559
12775
|
} | {
|
|
12560
12776
|
type: "entityRef";
|
|
12561
12777
|
label: string;
|
|
12562
|
-
url?: string | undefined;
|
|
12563
12778
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12779
|
+
url?: string | undefined;
|
|
12564
12780
|
entity?: string | undefined;
|
|
12565
12781
|
} | {
|
|
12566
12782
|
type: "kanban";
|
|
@@ -12570,11 +12786,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12570
12786
|
cards: {
|
|
12571
12787
|
title: string;
|
|
12572
12788
|
id: string;
|
|
12789
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12573
12790
|
badge?: {
|
|
12574
12791
|
label: string;
|
|
12575
12792
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12576
12793
|
} | undefined;
|
|
12577
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12578
12794
|
meta?: string[] | undefined;
|
|
12579
12795
|
}[];
|
|
12580
12796
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -13796,6 +14012,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13796
14012
|
value: string;
|
|
13797
14013
|
label: string;
|
|
13798
14014
|
short?: boolean | undefined;
|
|
14015
|
+
parts?: {
|
|
14016
|
+
text: string;
|
|
14017
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14018
|
+
}[] | undefined;
|
|
13799
14019
|
}[];
|
|
13800
14020
|
} | {
|
|
13801
14021
|
type: "image";
|
|
@@ -14009,13 +14229,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14009
14229
|
type: "callout";
|
|
14010
14230
|
text: string;
|
|
14011
14231
|
title?: string | undefined;
|
|
14012
|
-
icon?: string | undefined;
|
|
14013
14232
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14233
|
+
icon?: string | undefined;
|
|
14014
14234
|
} | {
|
|
14015
14235
|
type: "entityRef";
|
|
14016
14236
|
label: string;
|
|
14017
|
-
url?: string | undefined;
|
|
14018
14237
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14238
|
+
url?: string | undefined;
|
|
14019
14239
|
entity?: string | undefined;
|
|
14020
14240
|
} | {
|
|
14021
14241
|
type: "kanban";
|
|
@@ -14025,11 +14245,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14025
14245
|
cards: {
|
|
14026
14246
|
title: string;
|
|
14027
14247
|
id: string;
|
|
14248
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14028
14249
|
badge?: {
|
|
14029
14250
|
label: string;
|
|
14030
14251
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14031
14252
|
} | undefined;
|
|
14032
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14033
14253
|
meta?: string[] | undefined;
|
|
14034
14254
|
}[];
|
|
14035
14255
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -14089,6 +14309,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14089
14309
|
value: string;
|
|
14090
14310
|
label: string;
|
|
14091
14311
|
short?: boolean | undefined;
|
|
14312
|
+
parts?: {
|
|
14313
|
+
text: string;
|
|
14314
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14315
|
+
}[] | undefined;
|
|
14092
14316
|
}[];
|
|
14093
14317
|
} | {
|
|
14094
14318
|
type: "image";
|
|
@@ -14302,13 +14526,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14302
14526
|
type: "callout";
|
|
14303
14527
|
text: string;
|
|
14304
14528
|
title?: string | undefined;
|
|
14305
|
-
icon?: string | undefined;
|
|
14306
14529
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14530
|
+
icon?: string | undefined;
|
|
14307
14531
|
} | {
|
|
14308
14532
|
type: "entityRef";
|
|
14309
14533
|
label: string;
|
|
14310
|
-
url?: string | undefined;
|
|
14311
14534
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14535
|
+
url?: string | undefined;
|
|
14312
14536
|
entity?: string | undefined;
|
|
14313
14537
|
} | {
|
|
14314
14538
|
type: "kanban";
|
|
@@ -14318,11 +14542,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14318
14542
|
cards: {
|
|
14319
14543
|
title: string;
|
|
14320
14544
|
id: string;
|
|
14545
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14321
14546
|
badge?: {
|
|
14322
14547
|
label: string;
|
|
14323
14548
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14324
14549
|
} | undefined;
|
|
14325
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14326
14550
|
meta?: string[] | undefined;
|
|
14327
14551
|
}[];
|
|
14328
14552
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -14401,6 +14625,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14401
14625
|
value: string;
|
|
14402
14626
|
label: string;
|
|
14403
14627
|
short?: boolean | undefined;
|
|
14628
|
+
parts?: {
|
|
14629
|
+
text: string;
|
|
14630
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14631
|
+
}[] | undefined;
|
|
14404
14632
|
}[];
|
|
14405
14633
|
} | {
|
|
14406
14634
|
type: "image";
|
|
@@ -14614,13 +14842,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14614
14842
|
type: "callout";
|
|
14615
14843
|
text: string;
|
|
14616
14844
|
title?: string | undefined;
|
|
14617
|
-
icon?: string | undefined;
|
|
14618
14845
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14846
|
+
icon?: string | undefined;
|
|
14619
14847
|
} | {
|
|
14620
14848
|
type: "entityRef";
|
|
14621
14849
|
label: string;
|
|
14622
|
-
url?: string | undefined;
|
|
14623
14850
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14851
|
+
url?: string | undefined;
|
|
14624
14852
|
entity?: string | undefined;
|
|
14625
14853
|
} | {
|
|
14626
14854
|
type: "kanban";
|
|
@@ -14630,11 +14858,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14630
14858
|
cards: {
|
|
14631
14859
|
title: string;
|
|
14632
14860
|
id: string;
|
|
14861
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14633
14862
|
badge?: {
|
|
14634
14863
|
label: string;
|
|
14635
14864
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14636
14865
|
} | undefined;
|
|
14637
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14638
14866
|
meta?: string[] | undefined;
|
|
14639
14867
|
}[];
|
|
14640
14868
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -14694,6 +14922,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14694
14922
|
value: string;
|
|
14695
14923
|
label: string;
|
|
14696
14924
|
short?: boolean | undefined;
|
|
14925
|
+
parts?: {
|
|
14926
|
+
text: string;
|
|
14927
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14928
|
+
}[] | undefined;
|
|
14697
14929
|
}[];
|
|
14698
14930
|
} | {
|
|
14699
14931
|
type: "image";
|
|
@@ -14907,13 +15139,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14907
15139
|
type: "callout";
|
|
14908
15140
|
text: string;
|
|
14909
15141
|
title?: string | undefined;
|
|
14910
|
-
icon?: string | undefined;
|
|
14911
15142
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15143
|
+
icon?: string | undefined;
|
|
14912
15144
|
} | {
|
|
14913
15145
|
type: "entityRef";
|
|
14914
15146
|
label: string;
|
|
14915
|
-
url?: string | undefined;
|
|
14916
15147
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15148
|
+
url?: string | undefined;
|
|
14917
15149
|
entity?: string | undefined;
|
|
14918
15150
|
} | {
|
|
14919
15151
|
type: "kanban";
|
|
@@ -14923,11 +15155,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14923
15155
|
cards: {
|
|
14924
15156
|
title: string;
|
|
14925
15157
|
id: string;
|
|
15158
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14926
15159
|
badge?: {
|
|
14927
15160
|
label: string;
|
|
14928
15161
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14929
15162
|
} | undefined;
|
|
14930
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14931
15163
|
meta?: string[] | undefined;
|
|
14932
15164
|
}[];
|
|
14933
15165
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -15244,6 +15476,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15244
15476
|
value: string;
|
|
15245
15477
|
label: string;
|
|
15246
15478
|
short?: boolean | undefined;
|
|
15479
|
+
parts?: {
|
|
15480
|
+
text: string;
|
|
15481
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15482
|
+
}[] | undefined;
|
|
15247
15483
|
}[];
|
|
15248
15484
|
} | {
|
|
15249
15485
|
type: "image";
|
|
@@ -15457,13 +15693,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15457
15693
|
type: "callout";
|
|
15458
15694
|
text: string;
|
|
15459
15695
|
title?: string | undefined;
|
|
15460
|
-
icon?: string | undefined;
|
|
15461
15696
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15697
|
+
icon?: string | undefined;
|
|
15462
15698
|
} | {
|
|
15463
15699
|
type: "entityRef";
|
|
15464
15700
|
label: string;
|
|
15465
|
-
url?: string | undefined;
|
|
15466
15701
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15702
|
+
url?: string | undefined;
|
|
15467
15703
|
entity?: string | undefined;
|
|
15468
15704
|
} | {
|
|
15469
15705
|
type: "kanban";
|
|
@@ -15473,11 +15709,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15473
15709
|
cards: {
|
|
15474
15710
|
title: string;
|
|
15475
15711
|
id: string;
|
|
15712
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15476
15713
|
badge?: {
|
|
15477
15714
|
label: string;
|
|
15478
15715
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15479
15716
|
} | undefined;
|
|
15480
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15481
15717
|
meta?: string[] | undefined;
|
|
15482
15718
|
}[];
|
|
15483
15719
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -15521,6 +15757,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15521
15757
|
value: string;
|
|
15522
15758
|
label: string;
|
|
15523
15759
|
short?: boolean | undefined;
|
|
15760
|
+
parts?: {
|
|
15761
|
+
text: string;
|
|
15762
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15763
|
+
}[] | undefined;
|
|
15524
15764
|
}[];
|
|
15525
15765
|
} | {
|
|
15526
15766
|
type: "image";
|
|
@@ -15734,13 +15974,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15734
15974
|
type: "callout";
|
|
15735
15975
|
text: string;
|
|
15736
15976
|
title?: string | undefined;
|
|
15737
|
-
icon?: string | undefined;
|
|
15738
15977
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15978
|
+
icon?: string | undefined;
|
|
15739
15979
|
} | {
|
|
15740
15980
|
type: "entityRef";
|
|
15741
15981
|
label: string;
|
|
15742
|
-
url?: string | undefined;
|
|
15743
15982
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15983
|
+
url?: string | undefined;
|
|
15744
15984
|
entity?: string | undefined;
|
|
15745
15985
|
} | {
|
|
15746
15986
|
type: "kanban";
|
|
@@ -15750,11 +15990,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15750
15990
|
cards: {
|
|
15751
15991
|
title: string;
|
|
15752
15992
|
id: string;
|
|
15993
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15753
15994
|
badge?: {
|
|
15754
15995
|
label: string;
|
|
15755
15996
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15756
15997
|
} | undefined;
|
|
15757
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15758
15998
|
meta?: string[] | undefined;
|
|
15759
15999
|
}[];
|
|
15760
16000
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -15849,6 +16089,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15849
16089
|
value: string;
|
|
15850
16090
|
label: string;
|
|
15851
16091
|
short?: boolean | undefined;
|
|
16092
|
+
parts?: {
|
|
16093
|
+
text: string;
|
|
16094
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16095
|
+
}[] | undefined;
|
|
15852
16096
|
}[];
|
|
15853
16097
|
} | {
|
|
15854
16098
|
type: "image";
|
|
@@ -16062,13 +16306,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
16062
16306
|
type: "callout";
|
|
16063
16307
|
text: string;
|
|
16064
16308
|
title?: string | undefined;
|
|
16065
|
-
icon?: string | undefined;
|
|
16066
16309
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16310
|
+
icon?: string | undefined;
|
|
16067
16311
|
} | {
|
|
16068
16312
|
type: "entityRef";
|
|
16069
16313
|
label: string;
|
|
16070
|
-
url?: string | undefined;
|
|
16071
16314
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16315
|
+
url?: string | undefined;
|
|
16072
16316
|
entity?: string | undefined;
|
|
16073
16317
|
} | {
|
|
16074
16318
|
type: "kanban";
|
|
@@ -16078,11 +16322,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
16078
16322
|
cards: {
|
|
16079
16323
|
title: string;
|
|
16080
16324
|
id: string;
|
|
16325
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16081
16326
|
badge?: {
|
|
16082
16327
|
label: string;
|
|
16083
16328
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16084
16329
|
} | undefined;
|
|
16085
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16086
16330
|
meta?: string[] | undefined;
|
|
16087
16331
|
}[];
|
|
16088
16332
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -16126,6 +16370,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
16126
16370
|
value: string;
|
|
16127
16371
|
label: string;
|
|
16128
16372
|
short?: boolean | undefined;
|
|
16373
|
+
parts?: {
|
|
16374
|
+
text: string;
|
|
16375
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16376
|
+
}[] | undefined;
|
|
16129
16377
|
}[];
|
|
16130
16378
|
} | {
|
|
16131
16379
|
type: "image";
|
|
@@ -16339,13 +16587,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
16339
16587
|
type: "callout";
|
|
16340
16588
|
text: string;
|
|
16341
16589
|
title?: string | undefined;
|
|
16342
|
-
icon?: string | undefined;
|
|
16343
16590
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16591
|
+
icon?: string | undefined;
|
|
16344
16592
|
} | {
|
|
16345
16593
|
type: "entityRef";
|
|
16346
16594
|
label: string;
|
|
16347
|
-
url?: string | undefined;
|
|
16348
16595
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16596
|
+
url?: string | undefined;
|
|
16349
16597
|
entity?: string | undefined;
|
|
16350
16598
|
} | {
|
|
16351
16599
|
type: "kanban";
|
|
@@ -16355,11 +16603,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
16355
16603
|
cards: {
|
|
16356
16604
|
title: string;
|
|
16357
16605
|
id: string;
|
|
16606
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16358
16607
|
badge?: {
|
|
16359
16608
|
label: string;
|
|
16360
16609
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16361
16610
|
} | undefined;
|
|
16362
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16363
16611
|
meta?: string[] | undefined;
|
|
16364
16612
|
}[];
|
|
16365
16613
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|