@prismicio/types-internal 3.2.0-alpha.3 → 3.3.0-alpha.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/lib/content/Document.d.ts +216 -0
- package/lib/content/fields/WidgetContent.d.ts +216 -0
- package/lib/content/fields/nestable/LinkContent.d.ts +48 -0
- package/lib/content/fields/nestable/LinkContent.js +6 -0
- package/lib/content/fields/nestable/NestableContent.d.ts +36 -0
- package/lib/content/fields/nestable/RepeatableContent.d.ts +12 -0
- package/lib/content/fields/nestable/RepeatableContent.js +1 -8
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +72 -0
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +12 -0
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +72 -0
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +36 -0
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +36 -0
- package/lib/content/fields/slices/Slice/index.d.ts +120 -0
- package/lib/content/fields/slices/SliceItem.d.ts +120 -0
- package/lib/content/fields/slices/SlicesContent.d.ts +180 -0
- package/lib/customtypes/CustomType.d.ts +72 -0
- package/lib/customtypes/Section.d.ts +72 -0
- package/lib/customtypes/diff/SharedSlice.d.ts +32 -0
- package/lib/customtypes/diff/Variation.d.ts +32 -0
- package/lib/customtypes/widgets/Group.d.ts +24 -0
- package/lib/customtypes/widgets/Widget.d.ts +84 -0
- package/lib/customtypes/widgets/nestable/Link.d.ts +8 -0
- package/lib/customtypes/widgets/nestable/Link.js +4 -0
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +4 -0
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +8 -0
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +8 -0
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +32 -0
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +24 -0
- package/lib/customtypes/widgets/slices/Slices.d.ts +112 -0
- package/package.json +1 -1
- package/src/content/fields/nestable/LinkContent.ts +6 -0
- package/src/content/fields/nestable/RepeatableContent.ts +1 -10
- package/src/customtypes/widgets/nestable/Link.ts +5 -0
|
@@ -131,6 +131,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
131
131
|
kind: t.LiteralC<"image">;
|
|
132
132
|
}>>]>, t.ExactC<t.PartialC<{
|
|
133
133
|
text: t.StringC;
|
|
134
|
+
variant: t.StringC;
|
|
134
135
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
135
136
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
136
137
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -145,6 +146,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
145
146
|
kind: t.LiteralC<"file">;
|
|
146
147
|
}>>]>, t.ExactC<t.PartialC<{
|
|
147
148
|
text: t.StringC;
|
|
149
|
+
variant: t.StringC;
|
|
148
150
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
149
151
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
150
152
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -153,6 +155,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
153
155
|
kind: t.LiteralC<"document">;
|
|
154
156
|
}>>]>, t.ExactC<t.PartialC<{
|
|
155
157
|
text: t.StringC;
|
|
158
|
+
variant: t.StringC;
|
|
156
159
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
157
160
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
158
161
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -169,18 +172,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
169
172
|
kind: t.LiteralC<"web">;
|
|
170
173
|
}>>]>, t.ExactC<t.PartialC<{
|
|
171
174
|
text: t.StringC;
|
|
175
|
+
variant: t.StringC;
|
|
172
176
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
173
177
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
174
178
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
175
179
|
kind: t.LiteralC<"media">;
|
|
176
180
|
}>>, t.ExactC<t.PartialC<{
|
|
177
181
|
text: t.StringC;
|
|
182
|
+
variant: t.StringC;
|
|
178
183
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
179
184
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
180
185
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
181
186
|
kind: t.LiteralC<"any">;
|
|
182
187
|
}>, t.PartialC<{
|
|
183
188
|
text: t.StringC;
|
|
189
|
+
variant: t.StringC;
|
|
184
190
|
}>]>>]>]>;
|
|
185
191
|
}>>]>, t.ExactC<t.TypeC<{
|
|
186
192
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -446,6 +452,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
446
452
|
kind: t.LiteralC<"image">;
|
|
447
453
|
}>>]>, t.ExactC<t.PartialC<{
|
|
448
454
|
text: t.StringC;
|
|
455
|
+
variant: t.StringC;
|
|
449
456
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
450
457
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
451
458
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -460,6 +467,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
460
467
|
kind: t.LiteralC<"file">;
|
|
461
468
|
}>>]>, t.ExactC<t.PartialC<{
|
|
462
469
|
text: t.StringC;
|
|
470
|
+
variant: t.StringC;
|
|
463
471
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
464
472
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
465
473
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -468,6 +476,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
468
476
|
kind: t.LiteralC<"document">;
|
|
469
477
|
}>>]>, t.ExactC<t.PartialC<{
|
|
470
478
|
text: t.StringC;
|
|
479
|
+
variant: t.StringC;
|
|
471
480
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
472
481
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
473
482
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -484,18 +493,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
484
493
|
kind: t.LiteralC<"web">;
|
|
485
494
|
}>>]>, t.ExactC<t.PartialC<{
|
|
486
495
|
text: t.StringC;
|
|
496
|
+
variant: t.StringC;
|
|
487
497
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
488
498
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
489
499
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
490
500
|
kind: t.LiteralC<"media">;
|
|
491
501
|
}>>, t.ExactC<t.PartialC<{
|
|
492
502
|
text: t.StringC;
|
|
503
|
+
variant: t.StringC;
|
|
493
504
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
494
505
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
495
506
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
496
507
|
kind: t.LiteralC<"any">;
|
|
497
508
|
}>, t.PartialC<{
|
|
498
509
|
text: t.StringC;
|
|
510
|
+
variant: t.StringC;
|
|
499
511
|
}>]>>]>]>;
|
|
500
512
|
}>>]>>;
|
|
501
513
|
}>>]>, t.TypeC<{
|
|
@@ -639,6 +651,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
639
651
|
kind: t.LiteralC<"image">;
|
|
640
652
|
}>>]>, t.ExactC<t.PartialC<{
|
|
641
653
|
text: t.StringC;
|
|
654
|
+
variant: t.StringC;
|
|
642
655
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
643
656
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
644
657
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -653,6 +666,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
653
666
|
kind: t.LiteralC<"file">;
|
|
654
667
|
}>>]>, t.ExactC<t.PartialC<{
|
|
655
668
|
text: t.StringC;
|
|
669
|
+
variant: t.StringC;
|
|
656
670
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
657
671
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
658
672
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -661,6 +675,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
661
675
|
kind: t.LiteralC<"document">;
|
|
662
676
|
}>>]>, t.ExactC<t.PartialC<{
|
|
663
677
|
text: t.StringC;
|
|
678
|
+
variant: t.StringC;
|
|
664
679
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
665
680
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
666
681
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -677,18 +692,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
677
692
|
kind: t.LiteralC<"web">;
|
|
678
693
|
}>>]>, t.ExactC<t.PartialC<{
|
|
679
694
|
text: t.StringC;
|
|
695
|
+
variant: t.StringC;
|
|
680
696
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
681
697
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
682
698
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
683
699
|
kind: t.LiteralC<"media">;
|
|
684
700
|
}>>, t.ExactC<t.PartialC<{
|
|
685
701
|
text: t.StringC;
|
|
702
|
+
variant: t.StringC;
|
|
686
703
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
687
704
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
688
705
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
689
706
|
kind: t.LiteralC<"any">;
|
|
690
707
|
}>, t.PartialC<{
|
|
691
708
|
text: t.StringC;
|
|
709
|
+
variant: t.StringC;
|
|
692
710
|
}>]>>]>]>;
|
|
693
711
|
}>>]>, t.ExactC<t.TypeC<{
|
|
694
712
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -954,6 +972,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
954
972
|
kind: t.LiteralC<"image">;
|
|
955
973
|
}>>]>, t.ExactC<t.PartialC<{
|
|
956
974
|
text: t.StringC;
|
|
975
|
+
variant: t.StringC;
|
|
957
976
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
958
977
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
959
978
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -968,6 +987,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
968
987
|
kind: t.LiteralC<"file">;
|
|
969
988
|
}>>]>, t.ExactC<t.PartialC<{
|
|
970
989
|
text: t.StringC;
|
|
990
|
+
variant: t.StringC;
|
|
971
991
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
972
992
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
973
993
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -976,6 +996,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
976
996
|
kind: t.LiteralC<"document">;
|
|
977
997
|
}>>]>, t.ExactC<t.PartialC<{
|
|
978
998
|
text: t.StringC;
|
|
999
|
+
variant: t.StringC;
|
|
979
1000
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
980
1001
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
981
1002
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -992,18 +1013,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
992
1013
|
kind: t.LiteralC<"web">;
|
|
993
1014
|
}>>]>, t.ExactC<t.PartialC<{
|
|
994
1015
|
text: t.StringC;
|
|
1016
|
+
variant: t.StringC;
|
|
995
1017
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
996
1018
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
997
1019
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
998
1020
|
kind: t.LiteralC<"media">;
|
|
999
1021
|
}>>, t.ExactC<t.PartialC<{
|
|
1000
1022
|
text: t.StringC;
|
|
1023
|
+
variant: t.StringC;
|
|
1001
1024
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1002
1025
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
1003
1026
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1004
1027
|
kind: t.LiteralC<"any">;
|
|
1005
1028
|
}>, t.PartialC<{
|
|
1006
1029
|
text: t.StringC;
|
|
1030
|
+
variant: t.StringC;
|
|
1007
1031
|
}>]>>]>]>;
|
|
1008
1032
|
}>>]>>;
|
|
1009
1033
|
}>>]>>;
|
|
@@ -1139,6 +1163,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1139
1163
|
kind: t.LiteralC<"image">;
|
|
1140
1164
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1141
1165
|
text: t.StringC;
|
|
1166
|
+
variant: t.StringC;
|
|
1142
1167
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1143
1168
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1144
1169
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1153,6 +1178,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1153
1178
|
kind: t.LiteralC<"file">;
|
|
1154
1179
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1155
1180
|
text: t.StringC;
|
|
1181
|
+
variant: t.StringC;
|
|
1156
1182
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1157
1183
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
1158
1184
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -1161,6 +1187,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1161
1187
|
kind: t.LiteralC<"document">;
|
|
1162
1188
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1163
1189
|
text: t.StringC;
|
|
1190
|
+
variant: t.StringC;
|
|
1164
1191
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1165
1192
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
1166
1193
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1177,18 +1204,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1177
1204
|
kind: t.LiteralC<"web">;
|
|
1178
1205
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1179
1206
|
text: t.StringC;
|
|
1207
|
+
variant: t.StringC;
|
|
1180
1208
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1181
1209
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
1182
1210
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1183
1211
|
kind: t.LiteralC<"media">;
|
|
1184
1212
|
}>>, t.ExactC<t.PartialC<{
|
|
1185
1213
|
text: t.StringC;
|
|
1214
|
+
variant: t.StringC;
|
|
1186
1215
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1187
1216
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
1188
1217
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1189
1218
|
kind: t.LiteralC<"any">;
|
|
1190
1219
|
}>, t.PartialC<{
|
|
1191
1220
|
text: t.StringC;
|
|
1221
|
+
variant: t.StringC;
|
|
1192
1222
|
}>]>>]>]>;
|
|
1193
1223
|
}>>]>, t.ExactC<t.TypeC<{
|
|
1194
1224
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -1454,6 +1484,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1454
1484
|
kind: t.LiteralC<"image">;
|
|
1455
1485
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1456
1486
|
text: t.StringC;
|
|
1487
|
+
variant: t.StringC;
|
|
1457
1488
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1458
1489
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1459
1490
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1468,6 +1499,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1468
1499
|
kind: t.LiteralC<"file">;
|
|
1469
1500
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1470
1501
|
text: t.StringC;
|
|
1502
|
+
variant: t.StringC;
|
|
1471
1503
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1472
1504
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
1473
1505
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -1476,6 +1508,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1476
1508
|
kind: t.LiteralC<"document">;
|
|
1477
1509
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1478
1510
|
text: t.StringC;
|
|
1511
|
+
variant: t.StringC;
|
|
1479
1512
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1480
1513
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
1481
1514
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1492,18 +1525,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1492
1525
|
kind: t.LiteralC<"web">;
|
|
1493
1526
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1494
1527
|
text: t.StringC;
|
|
1528
|
+
variant: t.StringC;
|
|
1495
1529
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1496
1530
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
1497
1531
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1498
1532
|
kind: t.LiteralC<"media">;
|
|
1499
1533
|
}>>, t.ExactC<t.PartialC<{
|
|
1500
1534
|
text: t.StringC;
|
|
1535
|
+
variant: t.StringC;
|
|
1501
1536
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1502
1537
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
1503
1538
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1504
1539
|
kind: t.LiteralC<"any">;
|
|
1505
1540
|
}>, t.PartialC<{
|
|
1506
1541
|
text: t.StringC;
|
|
1542
|
+
variant: t.StringC;
|
|
1507
1543
|
}>]>>]>]>;
|
|
1508
1544
|
}>>]>>;
|
|
1509
1545
|
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>]>>;
|
|
@@ -1641,6 +1677,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1641
1677
|
kind: t.LiteralC<"image">;
|
|
1642
1678
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1643
1679
|
text: t.StringC;
|
|
1680
|
+
variant: t.StringC;
|
|
1644
1681
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1645
1682
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1646
1683
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1655,6 +1692,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1655
1692
|
kind: t.LiteralC<"file">;
|
|
1656
1693
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1657
1694
|
text: t.StringC;
|
|
1695
|
+
variant: t.StringC;
|
|
1658
1696
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1659
1697
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
1660
1698
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -1663,6 +1701,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1663
1701
|
kind: t.LiteralC<"document">;
|
|
1664
1702
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1665
1703
|
text: t.StringC;
|
|
1704
|
+
variant: t.StringC;
|
|
1666
1705
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1667
1706
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
1668
1707
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1679,18 +1718,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1679
1718
|
kind: t.LiteralC<"web">;
|
|
1680
1719
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1681
1720
|
text: t.StringC;
|
|
1721
|
+
variant: t.StringC;
|
|
1682
1722
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1683
1723
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
1684
1724
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1685
1725
|
kind: t.LiteralC<"media">;
|
|
1686
1726
|
}>>, t.ExactC<t.PartialC<{
|
|
1687
1727
|
text: t.StringC;
|
|
1728
|
+
variant: t.StringC;
|
|
1688
1729
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1689
1730
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
1690
1731
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1691
1732
|
kind: t.LiteralC<"any">;
|
|
1692
1733
|
}>, t.PartialC<{
|
|
1693
1734
|
text: t.StringC;
|
|
1735
|
+
variant: t.StringC;
|
|
1694
1736
|
}>]>>]>]>;
|
|
1695
1737
|
}>>]>, t.ExactC<t.TypeC<{
|
|
1696
1738
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -1956,6 +1998,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1956
1998
|
kind: t.LiteralC<"image">;
|
|
1957
1999
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1958
2000
|
text: t.StringC;
|
|
2001
|
+
variant: t.StringC;
|
|
1959
2002
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1960
2003
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
1961
2004
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1970,6 +2013,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1970
2013
|
kind: t.LiteralC<"file">;
|
|
1971
2014
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1972
2015
|
text: t.StringC;
|
|
2016
|
+
variant: t.StringC;
|
|
1973
2017
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1974
2018
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
1975
2019
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -1978,6 +2022,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1978
2022
|
kind: t.LiteralC<"document">;
|
|
1979
2023
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1980
2024
|
text: t.StringC;
|
|
2025
|
+
variant: t.StringC;
|
|
1981
2026
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1982
2027
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
1983
2028
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -1994,18 +2039,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
1994
2039
|
kind: t.LiteralC<"web">;
|
|
1995
2040
|
}>>]>, t.ExactC<t.PartialC<{
|
|
1996
2041
|
text: t.StringC;
|
|
2042
|
+
variant: t.StringC;
|
|
1997
2043
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
1998
2044
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
1999
2045
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2000
2046
|
kind: t.LiteralC<"media">;
|
|
2001
2047
|
}>>, t.ExactC<t.PartialC<{
|
|
2002
2048
|
text: t.StringC;
|
|
2049
|
+
variant: t.StringC;
|
|
2003
2050
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2004
2051
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
2005
2052
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2006
2053
|
kind: t.LiteralC<"any">;
|
|
2007
2054
|
}>, t.PartialC<{
|
|
2008
2055
|
text: t.StringC;
|
|
2056
|
+
variant: t.StringC;
|
|
2009
2057
|
}>]>>]>]>;
|
|
2010
2058
|
}>>]>>;
|
|
2011
2059
|
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>>;
|
|
@@ -2141,6 +2189,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2141
2189
|
kind: t.LiteralC<"image">;
|
|
2142
2190
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2143
2191
|
text: t.StringC;
|
|
2192
|
+
variant: t.StringC;
|
|
2144
2193
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2145
2194
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2146
2195
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2155,6 +2204,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2155
2204
|
kind: t.LiteralC<"file">;
|
|
2156
2205
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2157
2206
|
text: t.StringC;
|
|
2207
|
+
variant: t.StringC;
|
|
2158
2208
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2159
2209
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2160
2210
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2163,6 +2213,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2163
2213
|
kind: t.LiteralC<"document">;
|
|
2164
2214
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2165
2215
|
text: t.StringC;
|
|
2216
|
+
variant: t.StringC;
|
|
2166
2217
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2167
2218
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2168
2219
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2179,18 +2230,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2179
2230
|
kind: t.LiteralC<"web">;
|
|
2180
2231
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2181
2232
|
text: t.StringC;
|
|
2233
|
+
variant: t.StringC;
|
|
2182
2234
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2183
2235
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
2184
2236
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2185
2237
|
kind: t.LiteralC<"media">;
|
|
2186
2238
|
}>>, t.ExactC<t.PartialC<{
|
|
2187
2239
|
text: t.StringC;
|
|
2240
|
+
variant: t.StringC;
|
|
2188
2241
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2189
2242
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
2190
2243
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2191
2244
|
kind: t.LiteralC<"any">;
|
|
2192
2245
|
}>, t.PartialC<{
|
|
2193
2246
|
text: t.StringC;
|
|
2247
|
+
variant: t.StringC;
|
|
2194
2248
|
}>]>>]>]>;
|
|
2195
2249
|
}>>]>, t.ExactC<t.TypeC<{
|
|
2196
2250
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -2456,6 +2510,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2456
2510
|
kind: t.LiteralC<"image">;
|
|
2457
2511
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2458
2512
|
text: t.StringC;
|
|
2513
|
+
variant: t.StringC;
|
|
2459
2514
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2460
2515
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2461
2516
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2470,6 +2525,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2470
2525
|
kind: t.LiteralC<"file">;
|
|
2471
2526
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2472
2527
|
text: t.StringC;
|
|
2528
|
+
variant: t.StringC;
|
|
2473
2529
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2474
2530
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2475
2531
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2478,6 +2534,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2478
2534
|
kind: t.LiteralC<"document">;
|
|
2479
2535
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2480
2536
|
text: t.StringC;
|
|
2537
|
+
variant: t.StringC;
|
|
2481
2538
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2482
2539
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2483
2540
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2494,18 +2551,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2494
2551
|
kind: t.LiteralC<"web">;
|
|
2495
2552
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2496
2553
|
text: t.StringC;
|
|
2554
|
+
variant: t.StringC;
|
|
2497
2555
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2498
2556
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
2499
2557
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2500
2558
|
kind: t.LiteralC<"media">;
|
|
2501
2559
|
}>>, t.ExactC<t.PartialC<{
|
|
2502
2560
|
text: t.StringC;
|
|
2561
|
+
variant: t.StringC;
|
|
2503
2562
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2504
2563
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
2505
2564
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2506
2565
|
kind: t.LiteralC<"any">;
|
|
2507
2566
|
}>, t.PartialC<{
|
|
2508
2567
|
text: t.StringC;
|
|
2568
|
+
variant: t.StringC;
|
|
2509
2569
|
}>]>>]>]>;
|
|
2510
2570
|
}>>]>>;
|
|
2511
2571
|
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>]>>;
|
|
@@ -2640,6 +2700,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2640
2700
|
kind: t.LiteralC<"image">;
|
|
2641
2701
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2642
2702
|
text: t.StringC;
|
|
2703
|
+
variant: t.StringC;
|
|
2643
2704
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2644
2705
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2645
2706
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2654,6 +2715,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2654
2715
|
kind: t.LiteralC<"file">;
|
|
2655
2716
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2656
2717
|
text: t.StringC;
|
|
2718
|
+
variant: t.StringC;
|
|
2657
2719
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2658
2720
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2659
2721
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2662,6 +2724,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2662
2724
|
kind: t.LiteralC<"document">;
|
|
2663
2725
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2664
2726
|
text: t.StringC;
|
|
2727
|
+
variant: t.StringC;
|
|
2665
2728
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2666
2729
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2667
2730
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2678,18 +2741,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2678
2741
|
kind: t.LiteralC<"web">;
|
|
2679
2742
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2680
2743
|
text: t.StringC;
|
|
2744
|
+
variant: t.StringC;
|
|
2681
2745
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2682
2746
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
2683
2747
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2684
2748
|
kind: t.LiteralC<"media">;
|
|
2685
2749
|
}>>, t.ExactC<t.PartialC<{
|
|
2686
2750
|
text: t.StringC;
|
|
2751
|
+
variant: t.StringC;
|
|
2687
2752
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2688
2753
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
2689
2754
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
2690
2755
|
kind: t.LiteralC<"any">;
|
|
2691
2756
|
}>, t.PartialC<{
|
|
2692
2757
|
text: t.StringC;
|
|
2758
|
+
variant: t.StringC;
|
|
2693
2759
|
}>]>>]>]>;
|
|
2694
2760
|
}>>]>, t.ExactC<t.TypeC<{
|
|
2695
2761
|
__TYPE__: t.LiteralC<"StructuredTextContent">;
|
|
@@ -2955,6 +3021,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2955
3021
|
kind: t.LiteralC<"image">;
|
|
2956
3022
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2957
3023
|
text: t.StringC;
|
|
3024
|
+
variant: t.StringC;
|
|
2958
3025
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2959
3026
|
__TYPE__: t.LiteralC<"FileLink">;
|
|
2960
3027
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2969,6 +3036,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2969
3036
|
kind: t.LiteralC<"file">;
|
|
2970
3037
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2971
3038
|
text: t.StringC;
|
|
3039
|
+
variant: t.StringC;
|
|
2972
3040
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2973
3041
|
__TYPE__: t.LiteralC<"DocumentLink">;
|
|
2974
3042
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.TypeC<{
|
|
@@ -2977,6 +3045,7 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2977
3045
|
kind: t.LiteralC<"document">;
|
|
2978
3046
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2979
3047
|
text: t.StringC;
|
|
3048
|
+
variant: t.StringC;
|
|
2980
3049
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2981
3050
|
__TYPE__: t.LiteralC<"ExternalLink">;
|
|
2982
3051
|
}>>, t.IntersectionC<[t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
@@ -2993,18 +3062,21 @@ export declare const WidgetContent: t.UnionC<[t.Type<GroupContent, GroupContent,
|
|
|
2993
3062
|
kind: t.LiteralC<"web">;
|
|
2994
3063
|
}>>]>, t.ExactC<t.PartialC<{
|
|
2995
3064
|
text: t.StringC;
|
|
3065
|
+
variant: t.StringC;
|
|
2996
3066
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2997
3067
|
__TYPE__: t.LiteralC<"MediaLink">;
|
|
2998
3068
|
}>>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
2999
3069
|
kind: t.LiteralC<"media">;
|
|
3000
3070
|
}>>, t.ExactC<t.PartialC<{
|
|
3001
3071
|
text: t.StringC;
|
|
3072
|
+
variant: t.StringC;
|
|
3002
3073
|
}>>]>]>, t.IntersectionC<[t.ExactC<t.TypeC<{
|
|
3003
3074
|
__TYPE__: t.LiteralC<"AnyLink">;
|
|
3004
3075
|
}>>, t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
3005
3076
|
kind: t.LiteralC<"any">;
|
|
3006
3077
|
}>, t.PartialC<{
|
|
3007
3078
|
text: t.StringC;
|
|
3079
|
+
variant: t.StringC;
|
|
3008
3080
|
}>]>>]>]>;
|
|
3009
3081
|
}>>]>>;
|
|
3010
3082
|
}>>]>, t.Type<GroupContent, GroupContent, unknown>]>]>;
|
|
@@ -3142,6 +3214,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3142
3214
|
kind: "image";
|
|
3143
3215
|
}) & {
|
|
3144
3216
|
text?: string;
|
|
3217
|
+
variant?: string;
|
|
3145
3218
|
})) | ({
|
|
3146
3219
|
__TYPE__: "FileLink";
|
|
3147
3220
|
} & ((({
|
|
@@ -3156,12 +3229,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3156
3229
|
kind: "file";
|
|
3157
3230
|
}) & {
|
|
3158
3231
|
text?: string;
|
|
3232
|
+
variant?: string;
|
|
3159
3233
|
})) | ({
|
|
3160
3234
|
__TYPE__: "MediaLink";
|
|
3161
3235
|
} & {
|
|
3162
3236
|
kind: "media";
|
|
3163
3237
|
} & {
|
|
3164
3238
|
text?: string;
|
|
3239
|
+
variant?: string;
|
|
3165
3240
|
}) | ({
|
|
3166
3241
|
__TYPE__: "DocumentLink";
|
|
3167
3242
|
} & (({
|
|
@@ -3170,6 +3245,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3170
3245
|
kind: "document";
|
|
3171
3246
|
}) & {
|
|
3172
3247
|
text?: string;
|
|
3248
|
+
variant?: string;
|
|
3173
3249
|
})) | ({
|
|
3174
3250
|
__TYPE__: "ExternalLink";
|
|
3175
3251
|
} & ((({
|
|
@@ -3184,12 +3260,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3184
3260
|
kind: "web";
|
|
3185
3261
|
}) & {
|
|
3186
3262
|
text?: string;
|
|
3263
|
+
variant?: string;
|
|
3187
3264
|
})) | ({
|
|
3188
3265
|
__TYPE__: "AnyLink";
|
|
3189
3266
|
} & {
|
|
3190
3267
|
kind: "any";
|
|
3191
3268
|
} & {
|
|
3192
3269
|
text?: string;
|
|
3270
|
+
variant?: string;
|
|
3193
3271
|
});
|
|
3194
3272
|
}) | {
|
|
3195
3273
|
__TYPE__: "RepeatableContent";
|
|
@@ -3214,6 +3292,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3214
3292
|
kind: "image";
|
|
3215
3293
|
}) & {
|
|
3216
3294
|
text?: string;
|
|
3295
|
+
variant?: string;
|
|
3217
3296
|
})) | ({
|
|
3218
3297
|
__TYPE__: "FileLink";
|
|
3219
3298
|
} & ((({
|
|
@@ -3228,12 +3307,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3228
3307
|
kind: "file";
|
|
3229
3308
|
}) & {
|
|
3230
3309
|
text?: string;
|
|
3310
|
+
variant?: string;
|
|
3231
3311
|
})) | ({
|
|
3232
3312
|
__TYPE__: "MediaLink";
|
|
3233
3313
|
} & {
|
|
3234
3314
|
kind: "media";
|
|
3235
3315
|
} & {
|
|
3236
3316
|
text?: string;
|
|
3317
|
+
variant?: string;
|
|
3237
3318
|
}) | ({
|
|
3238
3319
|
__TYPE__: "DocumentLink";
|
|
3239
3320
|
} & (({
|
|
@@ -3242,6 +3323,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3242
3323
|
kind: "document";
|
|
3243
3324
|
}) & {
|
|
3244
3325
|
text?: string;
|
|
3326
|
+
variant?: string;
|
|
3245
3327
|
})) | ({
|
|
3246
3328
|
__TYPE__: "ExternalLink";
|
|
3247
3329
|
} & ((({
|
|
@@ -3256,12 +3338,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3256
3338
|
kind: "web";
|
|
3257
3339
|
}) & {
|
|
3258
3340
|
text?: string;
|
|
3341
|
+
variant?: string;
|
|
3259
3342
|
})) | ({
|
|
3260
3343
|
__TYPE__: "AnyLink";
|
|
3261
3344
|
} & {
|
|
3262
3345
|
kind: "any";
|
|
3263
3346
|
} & {
|
|
3264
3347
|
text?: string;
|
|
3348
|
+
variant?: string;
|
|
3265
3349
|
});
|
|
3266
3350
|
})[];
|
|
3267
3351
|
} | GroupContent | {
|
|
@@ -3560,6 +3644,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3560
3644
|
kind: "image";
|
|
3561
3645
|
}) & {
|
|
3562
3646
|
text?: string;
|
|
3647
|
+
variant?: string;
|
|
3563
3648
|
})) | ({
|
|
3564
3649
|
__TYPE__: "FileLink";
|
|
3565
3650
|
} & ((({
|
|
@@ -3574,12 +3659,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3574
3659
|
kind: "file";
|
|
3575
3660
|
}) & {
|
|
3576
3661
|
text?: string;
|
|
3662
|
+
variant?: string;
|
|
3577
3663
|
})) | ({
|
|
3578
3664
|
__TYPE__: "MediaLink";
|
|
3579
3665
|
} & {
|
|
3580
3666
|
kind: "media";
|
|
3581
3667
|
} & {
|
|
3582
3668
|
text?: string;
|
|
3669
|
+
variant?: string;
|
|
3583
3670
|
}) | ({
|
|
3584
3671
|
__TYPE__: "DocumentLink";
|
|
3585
3672
|
} & (({
|
|
@@ -3588,6 +3675,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3588
3675
|
kind: "document";
|
|
3589
3676
|
}) & {
|
|
3590
3677
|
text?: string;
|
|
3678
|
+
variant?: string;
|
|
3591
3679
|
})) | ({
|
|
3592
3680
|
__TYPE__: "ExternalLink";
|
|
3593
3681
|
} & ((({
|
|
@@ -3602,12 +3690,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3602
3690
|
kind: "web";
|
|
3603
3691
|
}) & {
|
|
3604
3692
|
text?: string;
|
|
3693
|
+
variant?: string;
|
|
3605
3694
|
})) | ({
|
|
3606
3695
|
__TYPE__: "AnyLink";
|
|
3607
3696
|
} & {
|
|
3608
3697
|
kind: "any";
|
|
3609
3698
|
} & {
|
|
3610
3699
|
text?: string;
|
|
3700
|
+
variant?: string;
|
|
3611
3701
|
});
|
|
3612
3702
|
}) | {
|
|
3613
3703
|
__TYPE__: "RepeatableContent";
|
|
@@ -3632,6 +3722,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3632
3722
|
kind: "image";
|
|
3633
3723
|
}) & {
|
|
3634
3724
|
text?: string;
|
|
3725
|
+
variant?: string;
|
|
3635
3726
|
})) | ({
|
|
3636
3727
|
__TYPE__: "FileLink";
|
|
3637
3728
|
} & ((({
|
|
@@ -3646,12 +3737,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3646
3737
|
kind: "file";
|
|
3647
3738
|
}) & {
|
|
3648
3739
|
text?: string;
|
|
3740
|
+
variant?: string;
|
|
3649
3741
|
})) | ({
|
|
3650
3742
|
__TYPE__: "MediaLink";
|
|
3651
3743
|
} & {
|
|
3652
3744
|
kind: "media";
|
|
3653
3745
|
} & {
|
|
3654
3746
|
text?: string;
|
|
3747
|
+
variant?: string;
|
|
3655
3748
|
}) | ({
|
|
3656
3749
|
__TYPE__: "DocumentLink";
|
|
3657
3750
|
} & (({
|
|
@@ -3660,6 +3753,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3660
3753
|
kind: "document";
|
|
3661
3754
|
}) & {
|
|
3662
3755
|
text?: string;
|
|
3756
|
+
variant?: string;
|
|
3663
3757
|
})) | ({
|
|
3664
3758
|
__TYPE__: "ExternalLink";
|
|
3665
3759
|
} & ((({
|
|
@@ -3674,12 +3768,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3674
3768
|
kind: "web";
|
|
3675
3769
|
}) & {
|
|
3676
3770
|
text?: string;
|
|
3771
|
+
variant?: string;
|
|
3677
3772
|
})) | ({
|
|
3678
3773
|
__TYPE__: "AnyLink";
|
|
3679
3774
|
} & {
|
|
3680
3775
|
kind: "any";
|
|
3681
3776
|
} & {
|
|
3682
3777
|
text?: string;
|
|
3778
|
+
variant?: string;
|
|
3683
3779
|
});
|
|
3684
3780
|
})[];
|
|
3685
3781
|
} | GroupContent | {
|
|
@@ -3972,6 +4068,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3972
4068
|
kind: "image";
|
|
3973
4069
|
}) & {
|
|
3974
4070
|
text?: string;
|
|
4071
|
+
variant?: string;
|
|
3975
4072
|
})) | ({
|
|
3976
4073
|
__TYPE__: "FileLink";
|
|
3977
4074
|
} & ((({
|
|
@@ -3986,12 +4083,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3986
4083
|
kind: "file";
|
|
3987
4084
|
}) & {
|
|
3988
4085
|
text?: string;
|
|
4086
|
+
variant?: string;
|
|
3989
4087
|
})) | ({
|
|
3990
4088
|
__TYPE__: "MediaLink";
|
|
3991
4089
|
} & {
|
|
3992
4090
|
kind: "media";
|
|
3993
4091
|
} & {
|
|
3994
4092
|
text?: string;
|
|
4093
|
+
variant?: string;
|
|
3995
4094
|
}) | ({
|
|
3996
4095
|
__TYPE__: "DocumentLink";
|
|
3997
4096
|
} & (({
|
|
@@ -4000,6 +4099,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4000
4099
|
kind: "document";
|
|
4001
4100
|
}) & {
|
|
4002
4101
|
text?: string;
|
|
4102
|
+
variant?: string;
|
|
4003
4103
|
})) | ({
|
|
4004
4104
|
__TYPE__: "ExternalLink";
|
|
4005
4105
|
} & ((({
|
|
@@ -4014,12 +4114,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4014
4114
|
kind: "web";
|
|
4015
4115
|
}) & {
|
|
4016
4116
|
text?: string;
|
|
4117
|
+
variant?: string;
|
|
4017
4118
|
})) | ({
|
|
4018
4119
|
__TYPE__: "AnyLink";
|
|
4019
4120
|
} & {
|
|
4020
4121
|
kind: "any";
|
|
4021
4122
|
} & {
|
|
4022
4123
|
text?: string;
|
|
4124
|
+
variant?: string;
|
|
4023
4125
|
});
|
|
4024
4126
|
}) | {
|
|
4025
4127
|
__TYPE__: "RepeatableContent";
|
|
@@ -4044,6 +4146,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4044
4146
|
kind: "image";
|
|
4045
4147
|
}) & {
|
|
4046
4148
|
text?: string;
|
|
4149
|
+
variant?: string;
|
|
4047
4150
|
})) | ({
|
|
4048
4151
|
__TYPE__: "FileLink";
|
|
4049
4152
|
} & ((({
|
|
@@ -4058,12 +4161,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4058
4161
|
kind: "file";
|
|
4059
4162
|
}) & {
|
|
4060
4163
|
text?: string;
|
|
4164
|
+
variant?: string;
|
|
4061
4165
|
})) | ({
|
|
4062
4166
|
__TYPE__: "MediaLink";
|
|
4063
4167
|
} & {
|
|
4064
4168
|
kind: "media";
|
|
4065
4169
|
} & {
|
|
4066
4170
|
text?: string;
|
|
4171
|
+
variant?: string;
|
|
4067
4172
|
}) | ({
|
|
4068
4173
|
__TYPE__: "DocumentLink";
|
|
4069
4174
|
} & (({
|
|
@@ -4072,6 +4177,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4072
4177
|
kind: "document";
|
|
4073
4178
|
}) & {
|
|
4074
4179
|
text?: string;
|
|
4180
|
+
variant?: string;
|
|
4075
4181
|
})) | ({
|
|
4076
4182
|
__TYPE__: "ExternalLink";
|
|
4077
4183
|
} & ((({
|
|
@@ -4086,12 +4192,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4086
4192
|
kind: "web";
|
|
4087
4193
|
}) & {
|
|
4088
4194
|
text?: string;
|
|
4195
|
+
variant?: string;
|
|
4089
4196
|
})) | ({
|
|
4090
4197
|
__TYPE__: "AnyLink";
|
|
4091
4198
|
} & {
|
|
4092
4199
|
kind: "any";
|
|
4093
4200
|
} & {
|
|
4094
4201
|
text?: string;
|
|
4202
|
+
variant?: string;
|
|
4095
4203
|
});
|
|
4096
4204
|
})[];
|
|
4097
4205
|
} | {
|
|
@@ -4385,6 +4493,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4385
4493
|
kind: "image";
|
|
4386
4494
|
}) & {
|
|
4387
4495
|
text?: string;
|
|
4496
|
+
variant?: string;
|
|
4388
4497
|
})) | ({
|
|
4389
4498
|
__TYPE__: "FileLink";
|
|
4390
4499
|
} & ((({
|
|
@@ -4399,12 +4508,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4399
4508
|
kind: "file";
|
|
4400
4509
|
}) & {
|
|
4401
4510
|
text?: string;
|
|
4511
|
+
variant?: string;
|
|
4402
4512
|
})) | ({
|
|
4403
4513
|
__TYPE__: "MediaLink";
|
|
4404
4514
|
} & {
|
|
4405
4515
|
kind: "media";
|
|
4406
4516
|
} & {
|
|
4407
4517
|
text?: string;
|
|
4518
|
+
variant?: string;
|
|
4408
4519
|
}) | ({
|
|
4409
4520
|
__TYPE__: "DocumentLink";
|
|
4410
4521
|
} & (({
|
|
@@ -4413,6 +4524,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4413
4524
|
kind: "document";
|
|
4414
4525
|
}) & {
|
|
4415
4526
|
text?: string;
|
|
4527
|
+
variant?: string;
|
|
4416
4528
|
})) | ({
|
|
4417
4529
|
__TYPE__: "ExternalLink";
|
|
4418
4530
|
} & ((({
|
|
@@ -4427,12 +4539,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4427
4539
|
kind: "web";
|
|
4428
4540
|
}) & {
|
|
4429
4541
|
text?: string;
|
|
4542
|
+
variant?: string;
|
|
4430
4543
|
})) | ({
|
|
4431
4544
|
__TYPE__: "AnyLink";
|
|
4432
4545
|
} & {
|
|
4433
4546
|
kind: "any";
|
|
4434
4547
|
} & {
|
|
4435
4548
|
text?: string;
|
|
4549
|
+
variant?: string;
|
|
4436
4550
|
});
|
|
4437
4551
|
}) | {
|
|
4438
4552
|
__TYPE__: "RepeatableContent";
|
|
@@ -4457,6 +4571,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4457
4571
|
kind: "image";
|
|
4458
4572
|
}) & {
|
|
4459
4573
|
text?: string;
|
|
4574
|
+
variant?: string;
|
|
4460
4575
|
})) | ({
|
|
4461
4576
|
__TYPE__: "FileLink";
|
|
4462
4577
|
} & ((({
|
|
@@ -4471,12 +4586,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4471
4586
|
kind: "file";
|
|
4472
4587
|
}) & {
|
|
4473
4588
|
text?: string;
|
|
4589
|
+
variant?: string;
|
|
4474
4590
|
})) | ({
|
|
4475
4591
|
__TYPE__: "MediaLink";
|
|
4476
4592
|
} & {
|
|
4477
4593
|
kind: "media";
|
|
4478
4594
|
} & {
|
|
4479
4595
|
text?: string;
|
|
4596
|
+
variant?: string;
|
|
4480
4597
|
}) | ({
|
|
4481
4598
|
__TYPE__: "DocumentLink";
|
|
4482
4599
|
} & (({
|
|
@@ -4485,6 +4602,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4485
4602
|
kind: "document";
|
|
4486
4603
|
}) & {
|
|
4487
4604
|
text?: string;
|
|
4605
|
+
variant?: string;
|
|
4488
4606
|
})) | ({
|
|
4489
4607
|
__TYPE__: "ExternalLink";
|
|
4490
4608
|
} & ((({
|
|
@@ -4499,12 +4617,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4499
4617
|
kind: "web";
|
|
4500
4618
|
}) & {
|
|
4501
4619
|
text?: string;
|
|
4620
|
+
variant?: string;
|
|
4502
4621
|
})) | ({
|
|
4503
4622
|
__TYPE__: "AnyLink";
|
|
4504
4623
|
} & {
|
|
4505
4624
|
kind: "any";
|
|
4506
4625
|
} & {
|
|
4507
4626
|
text?: string;
|
|
4627
|
+
variant?: string;
|
|
4508
4628
|
});
|
|
4509
4629
|
})[];
|
|
4510
4630
|
} | GroupContent | {
|
|
@@ -4800,6 +4920,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4800
4920
|
kind: "image";
|
|
4801
4921
|
}) & {
|
|
4802
4922
|
text?: string;
|
|
4923
|
+
variant?: string;
|
|
4803
4924
|
})) | ({
|
|
4804
4925
|
__TYPE__: "FileLink";
|
|
4805
4926
|
} & ((({
|
|
@@ -4814,12 +4935,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4814
4935
|
kind: "file";
|
|
4815
4936
|
}) & {
|
|
4816
4937
|
text?: string;
|
|
4938
|
+
variant?: string;
|
|
4817
4939
|
})) | ({
|
|
4818
4940
|
__TYPE__: "MediaLink";
|
|
4819
4941
|
} & {
|
|
4820
4942
|
kind: "media";
|
|
4821
4943
|
} & {
|
|
4822
4944
|
text?: string;
|
|
4945
|
+
variant?: string;
|
|
4823
4946
|
}) | ({
|
|
4824
4947
|
__TYPE__: "DocumentLink";
|
|
4825
4948
|
} & (({
|
|
@@ -4828,6 +4951,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4828
4951
|
kind: "document";
|
|
4829
4952
|
}) & {
|
|
4830
4953
|
text?: string;
|
|
4954
|
+
variant?: string;
|
|
4831
4955
|
})) | ({
|
|
4832
4956
|
__TYPE__: "ExternalLink";
|
|
4833
4957
|
} & ((({
|
|
@@ -4842,12 +4966,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4842
4966
|
kind: "web";
|
|
4843
4967
|
}) & {
|
|
4844
4968
|
text?: string;
|
|
4969
|
+
variant?: string;
|
|
4845
4970
|
})) | ({
|
|
4846
4971
|
__TYPE__: "AnyLink";
|
|
4847
4972
|
} & {
|
|
4848
4973
|
kind: "any";
|
|
4849
4974
|
} & {
|
|
4850
4975
|
text?: string;
|
|
4976
|
+
variant?: string;
|
|
4851
4977
|
});
|
|
4852
4978
|
}) | {
|
|
4853
4979
|
__TYPE__: "RepeatableContent";
|
|
@@ -4872,6 +4998,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4872
4998
|
kind: "image";
|
|
4873
4999
|
}) & {
|
|
4874
5000
|
text?: string;
|
|
5001
|
+
variant?: string;
|
|
4875
5002
|
})) | ({
|
|
4876
5003
|
__TYPE__: "FileLink";
|
|
4877
5004
|
} & ((({
|
|
@@ -4886,12 +5013,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4886
5013
|
kind: "file";
|
|
4887
5014
|
}) & {
|
|
4888
5015
|
text?: string;
|
|
5016
|
+
variant?: string;
|
|
4889
5017
|
})) | ({
|
|
4890
5018
|
__TYPE__: "MediaLink";
|
|
4891
5019
|
} & {
|
|
4892
5020
|
kind: "media";
|
|
4893
5021
|
} & {
|
|
4894
5022
|
text?: string;
|
|
5023
|
+
variant?: string;
|
|
4895
5024
|
}) | ({
|
|
4896
5025
|
__TYPE__: "DocumentLink";
|
|
4897
5026
|
} & (({
|
|
@@ -4900,6 +5029,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4900
5029
|
kind: "document";
|
|
4901
5030
|
}) & {
|
|
4902
5031
|
text?: string;
|
|
5032
|
+
variant?: string;
|
|
4903
5033
|
})) | ({
|
|
4904
5034
|
__TYPE__: "ExternalLink";
|
|
4905
5035
|
} & ((({
|
|
@@ -4914,12 +5044,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4914
5044
|
kind: "web";
|
|
4915
5045
|
}) & {
|
|
4916
5046
|
text?: string;
|
|
5047
|
+
variant?: string;
|
|
4917
5048
|
})) | ({
|
|
4918
5049
|
__TYPE__: "AnyLink";
|
|
4919
5050
|
} & {
|
|
4920
5051
|
kind: "any";
|
|
4921
5052
|
} & {
|
|
4922
5053
|
text?: string;
|
|
5054
|
+
variant?: string;
|
|
4923
5055
|
});
|
|
4924
5056
|
})[];
|
|
4925
5057
|
} | GroupContent | {
|
|
@@ -5213,6 +5345,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5213
5345
|
kind: "image";
|
|
5214
5346
|
}) & {
|
|
5215
5347
|
text?: string;
|
|
5348
|
+
variant?: string;
|
|
5216
5349
|
})) | ({
|
|
5217
5350
|
__TYPE__: "FileLink";
|
|
5218
5351
|
} & ((({
|
|
@@ -5227,12 +5360,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5227
5360
|
kind: "file";
|
|
5228
5361
|
}) & {
|
|
5229
5362
|
text?: string;
|
|
5363
|
+
variant?: string;
|
|
5230
5364
|
})) | ({
|
|
5231
5365
|
__TYPE__: "MediaLink";
|
|
5232
5366
|
} & {
|
|
5233
5367
|
kind: "media";
|
|
5234
5368
|
} & {
|
|
5235
5369
|
text?: string;
|
|
5370
|
+
variant?: string;
|
|
5236
5371
|
}) | ({
|
|
5237
5372
|
__TYPE__: "DocumentLink";
|
|
5238
5373
|
} & (({
|
|
@@ -5241,6 +5376,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5241
5376
|
kind: "document";
|
|
5242
5377
|
}) & {
|
|
5243
5378
|
text?: string;
|
|
5379
|
+
variant?: string;
|
|
5244
5380
|
})) | ({
|
|
5245
5381
|
__TYPE__: "ExternalLink";
|
|
5246
5382
|
} & ((({
|
|
@@ -5255,12 +5391,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5255
5391
|
kind: "web";
|
|
5256
5392
|
}) & {
|
|
5257
5393
|
text?: string;
|
|
5394
|
+
variant?: string;
|
|
5258
5395
|
})) | ({
|
|
5259
5396
|
__TYPE__: "AnyLink";
|
|
5260
5397
|
} & {
|
|
5261
5398
|
kind: "any";
|
|
5262
5399
|
} & {
|
|
5263
5400
|
text?: string;
|
|
5401
|
+
variant?: string;
|
|
5264
5402
|
});
|
|
5265
5403
|
}) | {
|
|
5266
5404
|
__TYPE__: "RepeatableContent";
|
|
@@ -5285,6 +5423,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5285
5423
|
kind: "image";
|
|
5286
5424
|
}) & {
|
|
5287
5425
|
text?: string;
|
|
5426
|
+
variant?: string;
|
|
5288
5427
|
})) | ({
|
|
5289
5428
|
__TYPE__: "FileLink";
|
|
5290
5429
|
} & ((({
|
|
@@ -5299,12 +5438,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5299
5438
|
kind: "file";
|
|
5300
5439
|
}) & {
|
|
5301
5440
|
text?: string;
|
|
5441
|
+
variant?: string;
|
|
5302
5442
|
})) | ({
|
|
5303
5443
|
__TYPE__: "MediaLink";
|
|
5304
5444
|
} & {
|
|
5305
5445
|
kind: "media";
|
|
5306
5446
|
} & {
|
|
5307
5447
|
text?: string;
|
|
5448
|
+
variant?: string;
|
|
5308
5449
|
}) | ({
|
|
5309
5450
|
__TYPE__: "DocumentLink";
|
|
5310
5451
|
} & (({
|
|
@@ -5313,6 +5454,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5313
5454
|
kind: "document";
|
|
5314
5455
|
}) & {
|
|
5315
5456
|
text?: string;
|
|
5457
|
+
variant?: string;
|
|
5316
5458
|
})) | ({
|
|
5317
5459
|
__TYPE__: "ExternalLink";
|
|
5318
5460
|
} & ((({
|
|
@@ -5327,12 +5469,14 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5327
5469
|
kind: "web";
|
|
5328
5470
|
}) & {
|
|
5329
5471
|
text?: string;
|
|
5472
|
+
variant?: string;
|
|
5330
5473
|
})) | ({
|
|
5331
5474
|
__TYPE__: "AnyLink";
|
|
5332
5475
|
} & {
|
|
5333
5476
|
kind: "any";
|
|
5334
5477
|
} & {
|
|
5335
5478
|
text?: string;
|
|
5479
|
+
variant?: string;
|
|
5336
5480
|
});
|
|
5337
5481
|
})[];
|
|
5338
5482
|
} | GroupContent | {
|
|
@@ -5630,6 +5774,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5630
5774
|
kind: "image";
|
|
5631
5775
|
}) & {
|
|
5632
5776
|
text?: string;
|
|
5777
|
+
variant?: string;
|
|
5633
5778
|
})) | ({
|
|
5634
5779
|
__TYPE__: "FileLink";
|
|
5635
5780
|
} & ((({
|
|
@@ -5644,12 +5789,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5644
5789
|
kind: "file";
|
|
5645
5790
|
}) & {
|
|
5646
5791
|
text?: string;
|
|
5792
|
+
variant?: string;
|
|
5647
5793
|
})) | ({
|
|
5648
5794
|
__TYPE__: "MediaLink";
|
|
5649
5795
|
} & {
|
|
5650
5796
|
kind: "media";
|
|
5651
5797
|
} & {
|
|
5652
5798
|
text?: string;
|
|
5799
|
+
variant?: string;
|
|
5653
5800
|
}) | ({
|
|
5654
5801
|
__TYPE__: "DocumentLink";
|
|
5655
5802
|
} & (({
|
|
@@ -5658,6 +5805,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5658
5805
|
kind: "document";
|
|
5659
5806
|
}) & {
|
|
5660
5807
|
text?: string;
|
|
5808
|
+
variant?: string;
|
|
5661
5809
|
})) | ({
|
|
5662
5810
|
__TYPE__: "ExternalLink";
|
|
5663
5811
|
} & ((({
|
|
@@ -5672,12 +5820,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5672
5820
|
kind: "web";
|
|
5673
5821
|
}) & {
|
|
5674
5822
|
text?: string;
|
|
5823
|
+
variant?: string;
|
|
5675
5824
|
})) | ({
|
|
5676
5825
|
__TYPE__: "AnyLink";
|
|
5677
5826
|
} & {
|
|
5678
5827
|
kind: "any";
|
|
5679
5828
|
} & {
|
|
5680
5829
|
text?: string;
|
|
5830
|
+
variant?: string;
|
|
5681
5831
|
});
|
|
5682
5832
|
}> | import("fp-ts/lib/Either").Right<{
|
|
5683
5833
|
__TYPE__: "RepeatableContent";
|
|
@@ -5702,6 +5852,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5702
5852
|
kind: "image";
|
|
5703
5853
|
}) & {
|
|
5704
5854
|
text?: string;
|
|
5855
|
+
variant?: string;
|
|
5705
5856
|
})) | ({
|
|
5706
5857
|
__TYPE__: "FileLink";
|
|
5707
5858
|
} & ((({
|
|
@@ -5716,12 +5867,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5716
5867
|
kind: "file";
|
|
5717
5868
|
}) & {
|
|
5718
5869
|
text?: string;
|
|
5870
|
+
variant?: string;
|
|
5719
5871
|
})) | ({
|
|
5720
5872
|
__TYPE__: "MediaLink";
|
|
5721
5873
|
} & {
|
|
5722
5874
|
kind: "media";
|
|
5723
5875
|
} & {
|
|
5724
5876
|
text?: string;
|
|
5877
|
+
variant?: string;
|
|
5725
5878
|
}) | ({
|
|
5726
5879
|
__TYPE__: "DocumentLink";
|
|
5727
5880
|
} & (({
|
|
@@ -5730,6 +5883,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5730
5883
|
kind: "document";
|
|
5731
5884
|
}) & {
|
|
5732
5885
|
text?: string;
|
|
5886
|
+
variant?: string;
|
|
5733
5887
|
})) | ({
|
|
5734
5888
|
__TYPE__: "ExternalLink";
|
|
5735
5889
|
} & ((({
|
|
@@ -5744,12 +5898,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
5744
5898
|
kind: "web";
|
|
5745
5899
|
}) & {
|
|
5746
5900
|
text?: string;
|
|
5901
|
+
variant?: string;
|
|
5747
5902
|
})) | ({
|
|
5748
5903
|
__TYPE__: "AnyLink";
|
|
5749
5904
|
} & {
|
|
5750
5905
|
kind: "any";
|
|
5751
5906
|
} & {
|
|
5752
5907
|
text?: string;
|
|
5908
|
+
variant?: string;
|
|
5753
5909
|
});
|
|
5754
5910
|
})[];
|
|
5755
5911
|
}> | import("fp-ts/lib/Either").Right<{
|
|
@@ -6048,6 +6204,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6048
6204
|
kind: "image";
|
|
6049
6205
|
}) & {
|
|
6050
6206
|
text?: string;
|
|
6207
|
+
variant?: string;
|
|
6051
6208
|
})) | ({
|
|
6052
6209
|
__TYPE__: "FileLink";
|
|
6053
6210
|
} & ((({
|
|
@@ -6062,12 +6219,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6062
6219
|
kind: "file";
|
|
6063
6220
|
}) & {
|
|
6064
6221
|
text?: string;
|
|
6222
|
+
variant?: string;
|
|
6065
6223
|
})) | ({
|
|
6066
6224
|
__TYPE__: "MediaLink";
|
|
6067
6225
|
} & {
|
|
6068
6226
|
kind: "media";
|
|
6069
6227
|
} & {
|
|
6070
6228
|
text?: string;
|
|
6229
|
+
variant?: string;
|
|
6071
6230
|
}) | ({
|
|
6072
6231
|
__TYPE__: "DocumentLink";
|
|
6073
6232
|
} & (({
|
|
@@ -6076,6 +6235,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6076
6235
|
kind: "document";
|
|
6077
6236
|
}) & {
|
|
6078
6237
|
text?: string;
|
|
6238
|
+
variant?: string;
|
|
6079
6239
|
})) | ({
|
|
6080
6240
|
__TYPE__: "ExternalLink";
|
|
6081
6241
|
} & ((({
|
|
@@ -6090,12 +6250,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6090
6250
|
kind: "web";
|
|
6091
6251
|
}) & {
|
|
6092
6252
|
text?: string;
|
|
6253
|
+
variant?: string;
|
|
6093
6254
|
})) | ({
|
|
6094
6255
|
__TYPE__: "AnyLink";
|
|
6095
6256
|
} & {
|
|
6096
6257
|
kind: "any";
|
|
6097
6258
|
} & {
|
|
6098
6259
|
text?: string;
|
|
6260
|
+
variant?: string;
|
|
6099
6261
|
});
|
|
6100
6262
|
}) | {
|
|
6101
6263
|
__TYPE__: "RepeatableContent";
|
|
@@ -6120,6 +6282,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6120
6282
|
kind: "image";
|
|
6121
6283
|
}) & {
|
|
6122
6284
|
text?: string;
|
|
6285
|
+
variant?: string;
|
|
6123
6286
|
})) | ({
|
|
6124
6287
|
__TYPE__: "FileLink";
|
|
6125
6288
|
} & ((({
|
|
@@ -6134,12 +6297,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6134
6297
|
kind: "file";
|
|
6135
6298
|
}) & {
|
|
6136
6299
|
text?: string;
|
|
6300
|
+
variant?: string;
|
|
6137
6301
|
})) | ({
|
|
6138
6302
|
__TYPE__: "MediaLink";
|
|
6139
6303
|
} & {
|
|
6140
6304
|
kind: "media";
|
|
6141
6305
|
} & {
|
|
6142
6306
|
text?: string;
|
|
6307
|
+
variant?: string;
|
|
6143
6308
|
}) | ({
|
|
6144
6309
|
__TYPE__: "DocumentLink";
|
|
6145
6310
|
} & (({
|
|
@@ -6148,6 +6313,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6148
6313
|
kind: "document";
|
|
6149
6314
|
}) & {
|
|
6150
6315
|
text?: string;
|
|
6316
|
+
variant?: string;
|
|
6151
6317
|
})) | ({
|
|
6152
6318
|
__TYPE__: "ExternalLink";
|
|
6153
6319
|
} & ((({
|
|
@@ -6162,12 +6328,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6162
6328
|
kind: "web";
|
|
6163
6329
|
}) & {
|
|
6164
6330
|
text?: string;
|
|
6331
|
+
variant?: string;
|
|
6165
6332
|
})) | ({
|
|
6166
6333
|
__TYPE__: "AnyLink";
|
|
6167
6334
|
} & {
|
|
6168
6335
|
kind: "any";
|
|
6169
6336
|
} & {
|
|
6170
6337
|
text?: string;
|
|
6338
|
+
variant?: string;
|
|
6171
6339
|
});
|
|
6172
6340
|
})[];
|
|
6173
6341
|
} | GroupContent | {
|
|
@@ -6460,6 +6628,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6460
6628
|
kind: "image";
|
|
6461
6629
|
}) & {
|
|
6462
6630
|
text?: string;
|
|
6631
|
+
variant?: string;
|
|
6463
6632
|
})) | ({
|
|
6464
6633
|
__TYPE__: "FileLink";
|
|
6465
6634
|
} & ((({
|
|
@@ -6474,12 +6643,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6474
6643
|
kind: "file";
|
|
6475
6644
|
}) & {
|
|
6476
6645
|
text?: string;
|
|
6646
|
+
variant?: string;
|
|
6477
6647
|
})) | ({
|
|
6478
6648
|
__TYPE__: "MediaLink";
|
|
6479
6649
|
} & {
|
|
6480
6650
|
kind: "media";
|
|
6481
6651
|
} & {
|
|
6482
6652
|
text?: string;
|
|
6653
|
+
variant?: string;
|
|
6483
6654
|
}) | ({
|
|
6484
6655
|
__TYPE__: "DocumentLink";
|
|
6485
6656
|
} & (({
|
|
@@ -6488,6 +6659,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6488
6659
|
kind: "document";
|
|
6489
6660
|
}) & {
|
|
6490
6661
|
text?: string;
|
|
6662
|
+
variant?: string;
|
|
6491
6663
|
})) | ({
|
|
6492
6664
|
__TYPE__: "ExternalLink";
|
|
6493
6665
|
} & ((({
|
|
@@ -6502,12 +6674,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6502
6674
|
kind: "web";
|
|
6503
6675
|
}) & {
|
|
6504
6676
|
text?: string;
|
|
6677
|
+
variant?: string;
|
|
6505
6678
|
})) | ({
|
|
6506
6679
|
__TYPE__: "AnyLink";
|
|
6507
6680
|
} & {
|
|
6508
6681
|
kind: "any";
|
|
6509
6682
|
} & {
|
|
6510
6683
|
text?: string;
|
|
6684
|
+
variant?: string;
|
|
6511
6685
|
});
|
|
6512
6686
|
}) | {
|
|
6513
6687
|
__TYPE__: "RepeatableContent";
|
|
@@ -6532,6 +6706,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6532
6706
|
kind: "image";
|
|
6533
6707
|
}) & {
|
|
6534
6708
|
text?: string;
|
|
6709
|
+
variant?: string;
|
|
6535
6710
|
})) | ({
|
|
6536
6711
|
__TYPE__: "FileLink";
|
|
6537
6712
|
} & ((({
|
|
@@ -6546,12 +6721,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6546
6721
|
kind: "file";
|
|
6547
6722
|
}) & {
|
|
6548
6723
|
text?: string;
|
|
6724
|
+
variant?: string;
|
|
6549
6725
|
})) | ({
|
|
6550
6726
|
__TYPE__: "MediaLink";
|
|
6551
6727
|
} & {
|
|
6552
6728
|
kind: "media";
|
|
6553
6729
|
} & {
|
|
6554
6730
|
text?: string;
|
|
6731
|
+
variant?: string;
|
|
6555
6732
|
}) | ({
|
|
6556
6733
|
__TYPE__: "DocumentLink";
|
|
6557
6734
|
} & (({
|
|
@@ -6560,6 +6737,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6560
6737
|
kind: "document";
|
|
6561
6738
|
}) & {
|
|
6562
6739
|
text?: string;
|
|
6740
|
+
variant?: string;
|
|
6563
6741
|
})) | ({
|
|
6564
6742
|
__TYPE__: "ExternalLink";
|
|
6565
6743
|
} & ((({
|
|
@@ -6574,12 +6752,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6574
6752
|
kind: "web";
|
|
6575
6753
|
}) & {
|
|
6576
6754
|
text?: string;
|
|
6755
|
+
variant?: string;
|
|
6577
6756
|
})) | ({
|
|
6578
6757
|
__TYPE__: "AnyLink";
|
|
6579
6758
|
} & {
|
|
6580
6759
|
kind: "any";
|
|
6581
6760
|
} & {
|
|
6582
6761
|
text?: string;
|
|
6762
|
+
variant?: string;
|
|
6583
6763
|
});
|
|
6584
6764
|
})[];
|
|
6585
6765
|
} | {
|
|
@@ -6873,6 +7053,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6873
7053
|
kind: "image";
|
|
6874
7054
|
}) & {
|
|
6875
7055
|
text?: string;
|
|
7056
|
+
variant?: string;
|
|
6876
7057
|
})) | ({
|
|
6877
7058
|
__TYPE__: "FileLink";
|
|
6878
7059
|
} & ((({
|
|
@@ -6887,12 +7068,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6887
7068
|
kind: "file";
|
|
6888
7069
|
}) & {
|
|
6889
7070
|
text?: string;
|
|
7071
|
+
variant?: string;
|
|
6890
7072
|
})) | ({
|
|
6891
7073
|
__TYPE__: "MediaLink";
|
|
6892
7074
|
} & {
|
|
6893
7075
|
kind: "media";
|
|
6894
7076
|
} & {
|
|
6895
7077
|
text?: string;
|
|
7078
|
+
variant?: string;
|
|
6896
7079
|
}) | ({
|
|
6897
7080
|
__TYPE__: "DocumentLink";
|
|
6898
7081
|
} & (({
|
|
@@ -6901,6 +7084,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6901
7084
|
kind: "document";
|
|
6902
7085
|
}) & {
|
|
6903
7086
|
text?: string;
|
|
7087
|
+
variant?: string;
|
|
6904
7088
|
})) | ({
|
|
6905
7089
|
__TYPE__: "ExternalLink";
|
|
6906
7090
|
} & ((({
|
|
@@ -6915,12 +7099,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6915
7099
|
kind: "web";
|
|
6916
7100
|
}) & {
|
|
6917
7101
|
text?: string;
|
|
7102
|
+
variant?: string;
|
|
6918
7103
|
})) | ({
|
|
6919
7104
|
__TYPE__: "AnyLink";
|
|
6920
7105
|
} & {
|
|
6921
7106
|
kind: "any";
|
|
6922
7107
|
} & {
|
|
6923
7108
|
text?: string;
|
|
7109
|
+
variant?: string;
|
|
6924
7110
|
});
|
|
6925
7111
|
}) | {
|
|
6926
7112
|
__TYPE__: "RepeatableContent";
|
|
@@ -6945,6 +7131,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6945
7131
|
kind: "image";
|
|
6946
7132
|
}) & {
|
|
6947
7133
|
text?: string;
|
|
7134
|
+
variant?: string;
|
|
6948
7135
|
})) | ({
|
|
6949
7136
|
__TYPE__: "FileLink";
|
|
6950
7137
|
} & ((({
|
|
@@ -6959,12 +7146,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6959
7146
|
kind: "file";
|
|
6960
7147
|
}) & {
|
|
6961
7148
|
text?: string;
|
|
7149
|
+
variant?: string;
|
|
6962
7150
|
})) | ({
|
|
6963
7151
|
__TYPE__: "MediaLink";
|
|
6964
7152
|
} & {
|
|
6965
7153
|
kind: "media";
|
|
6966
7154
|
} & {
|
|
6967
7155
|
text?: string;
|
|
7156
|
+
variant?: string;
|
|
6968
7157
|
}) | ({
|
|
6969
7158
|
__TYPE__: "DocumentLink";
|
|
6970
7159
|
} & (({
|
|
@@ -6973,6 +7162,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6973
7162
|
kind: "document";
|
|
6974
7163
|
}) & {
|
|
6975
7164
|
text?: string;
|
|
7165
|
+
variant?: string;
|
|
6976
7166
|
})) | ({
|
|
6977
7167
|
__TYPE__: "ExternalLink";
|
|
6978
7168
|
} & ((({
|
|
@@ -6987,12 +7177,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6987
7177
|
kind: "web";
|
|
6988
7178
|
}) & {
|
|
6989
7179
|
text?: string;
|
|
7180
|
+
variant?: string;
|
|
6990
7181
|
})) | ({
|
|
6991
7182
|
__TYPE__: "AnyLink";
|
|
6992
7183
|
} & {
|
|
6993
7184
|
kind: "any";
|
|
6994
7185
|
} & {
|
|
6995
7186
|
text?: string;
|
|
7187
|
+
variant?: string;
|
|
6996
7188
|
});
|
|
6997
7189
|
})[];
|
|
6998
7190
|
} | GroupContent | {
|
|
@@ -7288,6 +7480,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7288
7480
|
kind: "image";
|
|
7289
7481
|
}) & {
|
|
7290
7482
|
text?: string;
|
|
7483
|
+
variant?: string;
|
|
7291
7484
|
})) | ({
|
|
7292
7485
|
__TYPE__: "FileLink";
|
|
7293
7486
|
} & ((({
|
|
@@ -7302,12 +7495,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7302
7495
|
kind: "file";
|
|
7303
7496
|
}) & {
|
|
7304
7497
|
text?: string;
|
|
7498
|
+
variant?: string;
|
|
7305
7499
|
})) | ({
|
|
7306
7500
|
__TYPE__: "MediaLink";
|
|
7307
7501
|
} & {
|
|
7308
7502
|
kind: "media";
|
|
7309
7503
|
} & {
|
|
7310
7504
|
text?: string;
|
|
7505
|
+
variant?: string;
|
|
7311
7506
|
}) | ({
|
|
7312
7507
|
__TYPE__: "DocumentLink";
|
|
7313
7508
|
} & (({
|
|
@@ -7316,6 +7511,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7316
7511
|
kind: "document";
|
|
7317
7512
|
}) & {
|
|
7318
7513
|
text?: string;
|
|
7514
|
+
variant?: string;
|
|
7319
7515
|
})) | ({
|
|
7320
7516
|
__TYPE__: "ExternalLink";
|
|
7321
7517
|
} & ((({
|
|
@@ -7330,12 +7526,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7330
7526
|
kind: "web";
|
|
7331
7527
|
}) & {
|
|
7332
7528
|
text?: string;
|
|
7529
|
+
variant?: string;
|
|
7333
7530
|
})) | ({
|
|
7334
7531
|
__TYPE__: "AnyLink";
|
|
7335
7532
|
} & {
|
|
7336
7533
|
kind: "any";
|
|
7337
7534
|
} & {
|
|
7338
7535
|
text?: string;
|
|
7536
|
+
variant?: string;
|
|
7339
7537
|
});
|
|
7340
7538
|
}) | {
|
|
7341
7539
|
__TYPE__: "RepeatableContent";
|
|
@@ -7360,6 +7558,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7360
7558
|
kind: "image";
|
|
7361
7559
|
}) & {
|
|
7362
7560
|
text?: string;
|
|
7561
|
+
variant?: string;
|
|
7363
7562
|
})) | ({
|
|
7364
7563
|
__TYPE__: "FileLink";
|
|
7365
7564
|
} & ((({
|
|
@@ -7374,12 +7573,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7374
7573
|
kind: "file";
|
|
7375
7574
|
}) & {
|
|
7376
7575
|
text?: string;
|
|
7576
|
+
variant?: string;
|
|
7377
7577
|
})) | ({
|
|
7378
7578
|
__TYPE__: "MediaLink";
|
|
7379
7579
|
} & {
|
|
7380
7580
|
kind: "media";
|
|
7381
7581
|
} & {
|
|
7382
7582
|
text?: string;
|
|
7583
|
+
variant?: string;
|
|
7383
7584
|
}) | ({
|
|
7384
7585
|
__TYPE__: "DocumentLink";
|
|
7385
7586
|
} & (({
|
|
@@ -7388,6 +7589,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7388
7589
|
kind: "document";
|
|
7389
7590
|
}) & {
|
|
7390
7591
|
text?: string;
|
|
7592
|
+
variant?: string;
|
|
7391
7593
|
})) | ({
|
|
7392
7594
|
__TYPE__: "ExternalLink";
|
|
7393
7595
|
} & ((({
|
|
@@ -7402,12 +7604,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7402
7604
|
kind: "web";
|
|
7403
7605
|
}) & {
|
|
7404
7606
|
text?: string;
|
|
7607
|
+
variant?: string;
|
|
7405
7608
|
})) | ({
|
|
7406
7609
|
__TYPE__: "AnyLink";
|
|
7407
7610
|
} & {
|
|
7408
7611
|
kind: "any";
|
|
7409
7612
|
} & {
|
|
7410
7613
|
text?: string;
|
|
7614
|
+
variant?: string;
|
|
7411
7615
|
});
|
|
7412
7616
|
})[];
|
|
7413
7617
|
} | GroupContent | {
|
|
@@ -7701,6 +7905,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7701
7905
|
kind: "image";
|
|
7702
7906
|
}) & {
|
|
7703
7907
|
text?: string;
|
|
7908
|
+
variant?: string;
|
|
7704
7909
|
})) | ({
|
|
7705
7910
|
__TYPE__: "FileLink";
|
|
7706
7911
|
} & ((({
|
|
@@ -7715,12 +7920,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7715
7920
|
kind: "file";
|
|
7716
7921
|
}) & {
|
|
7717
7922
|
text?: string;
|
|
7923
|
+
variant?: string;
|
|
7718
7924
|
})) | ({
|
|
7719
7925
|
__TYPE__: "MediaLink";
|
|
7720
7926
|
} & {
|
|
7721
7927
|
kind: "media";
|
|
7722
7928
|
} & {
|
|
7723
7929
|
text?: string;
|
|
7930
|
+
variant?: string;
|
|
7724
7931
|
}) | ({
|
|
7725
7932
|
__TYPE__: "DocumentLink";
|
|
7726
7933
|
} & (({
|
|
@@ -7729,6 +7936,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7729
7936
|
kind: "document";
|
|
7730
7937
|
}) & {
|
|
7731
7938
|
text?: string;
|
|
7939
|
+
variant?: string;
|
|
7732
7940
|
})) | ({
|
|
7733
7941
|
__TYPE__: "ExternalLink";
|
|
7734
7942
|
} & ((({
|
|
@@ -7743,12 +7951,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7743
7951
|
kind: "web";
|
|
7744
7952
|
}) & {
|
|
7745
7953
|
text?: string;
|
|
7954
|
+
variant?: string;
|
|
7746
7955
|
})) | ({
|
|
7747
7956
|
__TYPE__: "AnyLink";
|
|
7748
7957
|
} & {
|
|
7749
7958
|
kind: "any";
|
|
7750
7959
|
} & {
|
|
7751
7960
|
text?: string;
|
|
7961
|
+
variant?: string;
|
|
7752
7962
|
});
|
|
7753
7963
|
}) | {
|
|
7754
7964
|
__TYPE__: "RepeatableContent";
|
|
@@ -7773,6 +7983,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7773
7983
|
kind: "image";
|
|
7774
7984
|
}) & {
|
|
7775
7985
|
text?: string;
|
|
7986
|
+
variant?: string;
|
|
7776
7987
|
})) | ({
|
|
7777
7988
|
__TYPE__: "FileLink";
|
|
7778
7989
|
} & ((({
|
|
@@ -7787,12 +7998,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7787
7998
|
kind: "file";
|
|
7788
7999
|
}) & {
|
|
7789
8000
|
text?: string;
|
|
8001
|
+
variant?: string;
|
|
7790
8002
|
})) | ({
|
|
7791
8003
|
__TYPE__: "MediaLink";
|
|
7792
8004
|
} & {
|
|
7793
8005
|
kind: "media";
|
|
7794
8006
|
} & {
|
|
7795
8007
|
text?: string;
|
|
8008
|
+
variant?: string;
|
|
7796
8009
|
}) | ({
|
|
7797
8010
|
__TYPE__: "DocumentLink";
|
|
7798
8011
|
} & (({
|
|
@@ -7801,6 +8014,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7801
8014
|
kind: "document";
|
|
7802
8015
|
}) & {
|
|
7803
8016
|
text?: string;
|
|
8017
|
+
variant?: string;
|
|
7804
8018
|
})) | ({
|
|
7805
8019
|
__TYPE__: "ExternalLink";
|
|
7806
8020
|
} & ((({
|
|
@@ -7815,12 +8029,14 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7815
8029
|
kind: "web";
|
|
7816
8030
|
}) & {
|
|
7817
8031
|
text?: string;
|
|
8032
|
+
variant?: string;
|
|
7818
8033
|
})) | ({
|
|
7819
8034
|
__TYPE__: "AnyLink";
|
|
7820
8035
|
} & {
|
|
7821
8036
|
kind: "any";
|
|
7822
8037
|
} & {
|
|
7823
8038
|
text?: string;
|
|
8039
|
+
variant?: string;
|
|
7824
8040
|
});
|
|
7825
8041
|
})[];
|
|
7826
8042
|
} | GroupContent | {
|