@prismicio/types-internal 2.2.0-traverse.alpha-11 → 2.2.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 +32 -32
- package/lib/content/fields/GroupContent.d.ts +7 -7
- package/lib/content/fields/WidgetContent.d.ts +32 -32
- package/lib/content/fields/nestable/NestableContent.d.ts +4 -4
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +9 -6
- package/lib/content/fields/nestable/RichTextContent/Blocks.js +1 -0
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +5 -5
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +8 -8
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +3 -3
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +8 -8
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +8 -8
- package/lib/content/fields/slices/Slice/index.d.ts +18 -18
- package/lib/content/fields/slices/SliceItem.d.ts +18 -18
- package/lib/content/fields/slices/SlicesContent.d.ts +24 -24
- package/lib/import/converters/Document.js +2 -0
- package/lib/import/converters/fields/Group.d.ts +4 -0
- package/lib/import/converters/fields/Group.js +14 -0
- package/lib/import/converters/fields/RepeatableZone.d.ts +317 -0
- package/lib/import/converters/fields/RepeatableZone.js +15 -0
- package/lib/import/converters/fields/RepeatableZoneItem.d.ts +11 -0
- package/lib/import/converters/fields/RepeatableZoneItem.js +19 -0
- package/lib/import/converters/fields/Slices/SharedSliceContent.js +6 -41
- package/lib/import/converters/fields/index.d.ts +1 -0
- package/lib/import/converters/fields/index.js +1 -0
- package/lib/import/validators/fields/ImportField.d.ts +11 -1
- package/lib/import/validators/fields/ImportField.js +6 -1
- package/lib/import/validators/fields/ImportGroup.d.ts +345 -0
- package/lib/import/validators/fields/ImportGroup.js +27 -0
- package/lib/import/validators/fields/ImportSlices/SharedSlice/SharedSlice.d.ts +5 -3
- package/lib/import/validators/fields/ImportSlices/SharedSlice/SharedSlice.js +4 -4
- package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/index.d.ts +0 -1
- package/lib/import/validators/fields/ImportSlices/SharedSlice/fields/index.js +0 -1
- package/lib/import/validators/fields/RepeatableZone.d.ts +11 -0
- package/lib/import/validators/fields/RepeatableZone.js +14 -0
- package/lib/import/validators/fields/RepeatableZoneItem.d.ts +11 -0
- package/lib/import/validators/fields/RepeatableZoneItem.js +39 -0
- package/lib/import/validators/fields/index.d.ts +2 -0
- package/lib/import/validators/fields/index.js +2 -0
- package/lib/import/validators/fields/nestable/Nestable.d.ts +60 -0
- package/lib/import/validators/fields/nestable/Nestable.js +32 -30
- package/package.json +1 -1
- package/src/content/fields/nestable/RichTextContent/Blocks.ts +1 -0
- package/src/import/converters/Document.ts +7 -1
- package/src/import/converters/fields/Group.ts +18 -0
- package/src/import/converters/fields/RepeatableZone.ts +19 -0
- package/src/import/converters/fields/RepeatableZoneItem.ts +32 -0
- package/src/import/converters/fields/Slices/SharedSliceContent.ts +9 -76
- package/src/import/converters/fields/index.ts +1 -0
- package/src/import/validators/fields/ImportField.ts +7 -2
- package/src/import/validators/fields/ImportGroup.ts +45 -0
- package/src/import/validators/fields/ImportSlices/SharedSlice/SharedSlice.ts +6 -18
- package/src/import/validators/fields/ImportSlices/SharedSlice/fields/index.ts +0 -1
- package/src/import/validators/fields/RepeatableZone.ts +21 -0
- package/src/import/validators/fields/RepeatableZoneItem.ts +64 -0
- package/src/import/validators/fields/index.ts +2 -0
- package/src/import/validators/fields/nestable/Nestable.ts +34 -31
- package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContent.ts +0 -64
- package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/SharedSliceContentEntry.ts +0 -100
- package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/errors.ts +0 -10
- package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/index.ts +0 -2
- package/src/import/validators/fields/ImportSlices/SharedSlice/fields/SharedSliceContent/types.ts +0 -1
- package/src/utils/io-ts.ts +0 -29
|
@@ -339,7 +339,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
339
339
|
} | {
|
|
340
340
|
start: number;
|
|
341
341
|
end: number;
|
|
342
|
-
type: "strong" | "em";
|
|
342
|
+
type: "strong" | "em" | "list-item";
|
|
343
343
|
})[], ({
|
|
344
344
|
data: ({
|
|
345
345
|
__TYPE__: "ImageLink";
|
|
@@ -391,7 +391,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
391
391
|
} | {
|
|
392
392
|
start: number;
|
|
393
393
|
end: number;
|
|
394
|
-
type: "strong" | "em";
|
|
394
|
+
type: "strong" | "em" | "list-item";
|
|
395
395
|
})[], unknown>;
|
|
396
396
|
}>]>;
|
|
397
397
|
}>, t.PartialC<{
|
|
@@ -733,7 +733,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
733
733
|
} | {
|
|
734
734
|
start: number;
|
|
735
735
|
end: number;
|
|
736
|
-
type: "strong" | "em";
|
|
736
|
+
type: "strong" | "em" | "list-item";
|
|
737
737
|
})[], ({
|
|
738
738
|
data: ({
|
|
739
739
|
__TYPE__: "ImageLink";
|
|
@@ -785,7 +785,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
785
785
|
} | {
|
|
786
786
|
start: number;
|
|
787
787
|
end: number;
|
|
788
|
-
type: "strong" | "em";
|
|
788
|
+
type: "strong" | "em" | "list-item";
|
|
789
789
|
})[], unknown>;
|
|
790
790
|
}>]>;
|
|
791
791
|
}>, t.PartialC<{
|
|
@@ -1136,7 +1136,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1136
1136
|
} | {
|
|
1137
1137
|
start: number;
|
|
1138
1138
|
end: number;
|
|
1139
|
-
type: "strong" | "em";
|
|
1139
|
+
type: "strong" | "em" | "list-item";
|
|
1140
1140
|
})[], ({
|
|
1141
1141
|
data: ({
|
|
1142
1142
|
__TYPE__: "ImageLink";
|
|
@@ -1188,7 +1188,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1188
1188
|
} | {
|
|
1189
1189
|
start: number;
|
|
1190
1190
|
end: number;
|
|
1191
|
-
type: "strong" | "em";
|
|
1191
|
+
type: "strong" | "em" | "list-item";
|
|
1192
1192
|
})[], unknown>;
|
|
1193
1193
|
}>]>;
|
|
1194
1194
|
}>, t.PartialC<{
|
|
@@ -1531,7 +1531,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1531
1531
|
} | {
|
|
1532
1532
|
start: number;
|
|
1533
1533
|
end: number;
|
|
1534
|
-
type: "strong" | "em";
|
|
1534
|
+
type: "strong" | "em" | "list-item";
|
|
1535
1535
|
})[], ({
|
|
1536
1536
|
data: ({
|
|
1537
1537
|
__TYPE__: "ImageLink";
|
|
@@ -1583,7 +1583,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1583
1583
|
} | {
|
|
1584
1584
|
start: number;
|
|
1585
1585
|
end: number;
|
|
1586
|
-
type: "strong" | "em";
|
|
1586
|
+
type: "strong" | "em" | "list-item";
|
|
1587
1587
|
})[], unknown>;
|
|
1588
1588
|
}>]>;
|
|
1589
1589
|
}>, t.PartialC<{
|
|
@@ -1928,7 +1928,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1928
1928
|
} | {
|
|
1929
1929
|
start: number;
|
|
1930
1930
|
end: number;
|
|
1931
|
-
type: "strong" | "em";
|
|
1931
|
+
type: "strong" | "em" | "list-item";
|
|
1932
1932
|
})[], ({
|
|
1933
1933
|
data: ({
|
|
1934
1934
|
__TYPE__: "ImageLink";
|
|
@@ -1980,7 +1980,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
1980
1980
|
} | {
|
|
1981
1981
|
start: number;
|
|
1982
1982
|
end: number;
|
|
1983
|
-
type: "strong" | "em";
|
|
1983
|
+
type: "strong" | "em" | "list-item";
|
|
1984
1984
|
})[], unknown>;
|
|
1985
1985
|
}>]>;
|
|
1986
1986
|
}>, t.PartialC<{
|
|
@@ -2323,7 +2323,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2323
2323
|
} | {
|
|
2324
2324
|
start: number;
|
|
2325
2325
|
end: number;
|
|
2326
|
-
type: "strong" | "em";
|
|
2326
|
+
type: "strong" | "em" | "list-item";
|
|
2327
2327
|
})[], ({
|
|
2328
2328
|
data: ({
|
|
2329
2329
|
__TYPE__: "ImageLink";
|
|
@@ -2375,7 +2375,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2375
2375
|
} | {
|
|
2376
2376
|
start: number;
|
|
2377
2377
|
end: number;
|
|
2378
|
-
type: "strong" | "em";
|
|
2378
|
+
type: "strong" | "em" | "list-item";
|
|
2379
2379
|
})[], unknown>;
|
|
2380
2380
|
}>]>;
|
|
2381
2381
|
}>, t.PartialC<{
|
|
@@ -2717,7 +2717,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2717
2717
|
} | {
|
|
2718
2718
|
start: number;
|
|
2719
2719
|
end: number;
|
|
2720
|
-
type: "strong" | "em";
|
|
2720
|
+
type: "strong" | "em" | "list-item";
|
|
2721
2721
|
})[], ({
|
|
2722
2722
|
data: ({
|
|
2723
2723
|
__TYPE__: "ImageLink";
|
|
@@ -2769,7 +2769,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
2769
2769
|
} | {
|
|
2770
2770
|
start: number;
|
|
2771
2771
|
end: number;
|
|
2772
|
-
type: "strong" | "em";
|
|
2772
|
+
type: "strong" | "em" | "list-item";
|
|
2773
2773
|
})[], unknown>;
|
|
2774
2774
|
}>]>;
|
|
2775
2775
|
}>, t.PartialC<{
|
|
@@ -3113,7 +3113,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
3113
3113
|
} | {
|
|
3114
3114
|
start: number;
|
|
3115
3115
|
end: number;
|
|
3116
|
-
type: "strong" | "em";
|
|
3116
|
+
type: "strong" | "em" | "list-item";
|
|
3117
3117
|
})[], ({
|
|
3118
3118
|
data: ({
|
|
3119
3119
|
__TYPE__: "ImageLink";
|
|
@@ -3165,7 +3165,7 @@ export declare const Document: t.RecordC<t.Type<string, string, unknown>, t.Unio
|
|
|
3165
3165
|
} | {
|
|
3166
3166
|
start: number;
|
|
3167
3167
|
end: number;
|
|
3168
|
-
type: "strong" | "em";
|
|
3168
|
+
type: "strong" | "em" | "list-item";
|
|
3169
3169
|
})[], unknown>;
|
|
3170
3170
|
}>]>;
|
|
3171
3171
|
}>, t.PartialC<{
|
|
@@ -3500,7 +3500,7 @@ export declare const DocumentLegacy: {
|
|
|
3500
3500
|
} | {
|
|
3501
3501
|
start: number;
|
|
3502
3502
|
end: number;
|
|
3503
|
-
type: "strong" | "em";
|
|
3503
|
+
type: "strong" | "em" | "list-item";
|
|
3504
3504
|
})[];
|
|
3505
3505
|
};
|
|
3506
3506
|
} & {
|
|
@@ -3816,7 +3816,7 @@ export declare const DocumentLegacy: {
|
|
|
3816
3816
|
} | {
|
|
3817
3817
|
start: number;
|
|
3818
3818
|
end: number;
|
|
3819
|
-
type: "strong" | "em";
|
|
3819
|
+
type: "strong" | "em" | "list-item";
|
|
3820
3820
|
})[];
|
|
3821
3821
|
};
|
|
3822
3822
|
} & {
|
|
@@ -4139,7 +4139,7 @@ export declare const DocumentLegacy: {
|
|
|
4139
4139
|
} | {
|
|
4140
4140
|
start: number;
|
|
4141
4141
|
end: number;
|
|
4142
|
-
type: "strong" | "em";
|
|
4142
|
+
type: "strong" | "em" | "list-item";
|
|
4143
4143
|
})[];
|
|
4144
4144
|
};
|
|
4145
4145
|
} & {
|
|
@@ -4455,7 +4455,7 @@ export declare const DocumentLegacy: {
|
|
|
4455
4455
|
} | {
|
|
4456
4456
|
start: number;
|
|
4457
4457
|
end: number;
|
|
4458
|
-
type: "strong" | "em";
|
|
4458
|
+
type: "strong" | "em" | "list-item";
|
|
4459
4459
|
})[];
|
|
4460
4460
|
};
|
|
4461
4461
|
} & {
|
|
@@ -4772,7 +4772,7 @@ export declare const DocumentLegacy: {
|
|
|
4772
4772
|
} | {
|
|
4773
4773
|
start: number;
|
|
4774
4774
|
end: number;
|
|
4775
|
-
type: "strong" | "em";
|
|
4775
|
+
type: "strong" | "em" | "list-item";
|
|
4776
4776
|
})[];
|
|
4777
4777
|
};
|
|
4778
4778
|
} & {
|
|
@@ -5088,7 +5088,7 @@ export declare const DocumentLegacy: {
|
|
|
5088
5088
|
} | {
|
|
5089
5089
|
start: number;
|
|
5090
5090
|
end: number;
|
|
5091
|
-
type: "strong" | "em";
|
|
5091
|
+
type: "strong" | "em" | "list-item";
|
|
5092
5092
|
})[];
|
|
5093
5093
|
};
|
|
5094
5094
|
} & {
|
|
@@ -5406,7 +5406,7 @@ export declare const DocumentLegacy: {
|
|
|
5406
5406
|
} | {
|
|
5407
5407
|
start: number;
|
|
5408
5408
|
end: number;
|
|
5409
|
-
type: "strong" | "em";
|
|
5409
|
+
type: "strong" | "em" | "list-item";
|
|
5410
5410
|
})[];
|
|
5411
5411
|
};
|
|
5412
5412
|
} & {
|
|
@@ -5722,7 +5722,7 @@ export declare const DocumentLegacy: {
|
|
|
5722
5722
|
} | {
|
|
5723
5723
|
start: number;
|
|
5724
5724
|
end: number;
|
|
5725
|
-
type: "strong" | "em";
|
|
5725
|
+
type: "strong" | "em" | "list-item";
|
|
5726
5726
|
})[];
|
|
5727
5727
|
};
|
|
5728
5728
|
} & {
|
|
@@ -6068,7 +6068,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
6068
6068
|
} | {
|
|
6069
6069
|
start: number;
|
|
6070
6070
|
end: number;
|
|
6071
|
-
type: "strong" | "em";
|
|
6071
|
+
type: "strong" | "em" | "list-item";
|
|
6072
6072
|
})[];
|
|
6073
6073
|
};
|
|
6074
6074
|
} & {
|
|
@@ -6384,7 +6384,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
6384
6384
|
} | {
|
|
6385
6385
|
start: number;
|
|
6386
6386
|
end: number;
|
|
6387
|
-
type: "strong" | "em";
|
|
6387
|
+
type: "strong" | "em" | "list-item";
|
|
6388
6388
|
})[];
|
|
6389
6389
|
};
|
|
6390
6390
|
} & {
|
|
@@ -6707,7 +6707,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
6707
6707
|
} | {
|
|
6708
6708
|
start: number;
|
|
6709
6709
|
end: number;
|
|
6710
|
-
type: "strong" | "em";
|
|
6710
|
+
type: "strong" | "em" | "list-item";
|
|
6711
6711
|
})[];
|
|
6712
6712
|
};
|
|
6713
6713
|
} & {
|
|
@@ -7023,7 +7023,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
7023
7023
|
} | {
|
|
7024
7024
|
start: number;
|
|
7025
7025
|
end: number;
|
|
7026
|
-
type: "strong" | "em";
|
|
7026
|
+
type: "strong" | "em" | "list-item";
|
|
7027
7027
|
})[];
|
|
7028
7028
|
};
|
|
7029
7029
|
} & {
|
|
@@ -7340,7 +7340,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
7340
7340
|
} | {
|
|
7341
7341
|
start: number;
|
|
7342
7342
|
end: number;
|
|
7343
|
-
type: "strong" | "em";
|
|
7343
|
+
type: "strong" | "em" | "list-item";
|
|
7344
7344
|
})[];
|
|
7345
7345
|
};
|
|
7346
7346
|
} & {
|
|
@@ -7656,7 +7656,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
7656
7656
|
} | {
|
|
7657
7657
|
start: number;
|
|
7658
7658
|
end: number;
|
|
7659
|
-
type: "strong" | "em";
|
|
7659
|
+
type: "strong" | "em" | "list-item";
|
|
7660
7660
|
})[];
|
|
7661
7661
|
};
|
|
7662
7662
|
} & {
|
|
@@ -7974,7 +7974,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
7974
7974
|
} | {
|
|
7975
7975
|
start: number;
|
|
7976
7976
|
end: number;
|
|
7977
|
-
type: "strong" | "em";
|
|
7977
|
+
type: "strong" | "em" | "list-item";
|
|
7978
7978
|
})[];
|
|
7979
7979
|
};
|
|
7980
7980
|
} & {
|
|
@@ -8290,7 +8290,7 @@ export declare function migrateDocument(document: Document, customType: StaticCu
|
|
|
8290
8290
|
} | {
|
|
8291
8291
|
start: number;
|
|
8292
8292
|
end: number;
|
|
8293
|
-
type: "strong" | "em";
|
|
8293
|
+
type: "strong" | "em" | "list-item";
|
|
8294
8294
|
})[];
|
|
8295
8295
|
};
|
|
8296
8296
|
} & {
|
|
@@ -336,7 +336,7 @@ export declare const GroupItemContent: t.ExactC<t.TypeC<{
|
|
|
336
336
|
} | {
|
|
337
337
|
start: number;
|
|
338
338
|
end: number;
|
|
339
|
-
type: "strong" | "em";
|
|
339
|
+
type: "strong" | "em" | "list-item";
|
|
340
340
|
})[], ({
|
|
341
341
|
data: ({
|
|
342
342
|
__TYPE__: "ImageLink";
|
|
@@ -388,7 +388,7 @@ export declare const GroupItemContent: t.ExactC<t.TypeC<{
|
|
|
388
388
|
} | {
|
|
389
389
|
start: number;
|
|
390
390
|
end: number;
|
|
391
|
-
type: "strong" | "em";
|
|
391
|
+
type: "strong" | "em" | "list-item";
|
|
392
392
|
})[], unknown>;
|
|
393
393
|
}>]>;
|
|
394
394
|
}>, t.PartialC<{
|
|
@@ -707,7 +707,7 @@ export declare const GroupItemLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
707
707
|
} | {
|
|
708
708
|
start: number;
|
|
709
709
|
end: number;
|
|
710
|
-
type: "strong" | "em";
|
|
710
|
+
type: "strong" | "em" | "list-item";
|
|
711
711
|
})[];
|
|
712
712
|
};
|
|
713
713
|
} & {
|
|
@@ -1028,7 +1028,7 @@ export declare const GroupLegacy: (ctx: LegacyContentCtx) => t.Type<{
|
|
|
1028
1028
|
} | {
|
|
1029
1029
|
start: number;
|
|
1030
1030
|
end: number;
|
|
1031
|
-
type: "strong" | "em";
|
|
1031
|
+
type: "strong" | "em" | "list-item";
|
|
1032
1032
|
})[];
|
|
1033
1033
|
};
|
|
1034
1034
|
} & {
|
|
@@ -1348,7 +1348,7 @@ export declare const isGroupContent: (u: unknown) => u is {
|
|
|
1348
1348
|
} | {
|
|
1349
1349
|
start: number;
|
|
1350
1350
|
end: number;
|
|
1351
|
-
type: "strong" | "em";
|
|
1351
|
+
type: "strong" | "em" | "list-item";
|
|
1352
1352
|
})[];
|
|
1353
1353
|
};
|
|
1354
1354
|
} & {
|
|
@@ -1695,7 +1695,7 @@ export declare const GroupContent: t.ExactC<t.TypeC<{
|
|
|
1695
1695
|
} | {
|
|
1696
1696
|
start: number;
|
|
1697
1697
|
end: number;
|
|
1698
|
-
type: "strong" | "em";
|
|
1698
|
+
type: "strong" | "em" | "list-item";
|
|
1699
1699
|
})[], ({
|
|
1700
1700
|
data: ({
|
|
1701
1701
|
__TYPE__: "ImageLink";
|
|
@@ -1747,7 +1747,7 @@ export declare const GroupContent: t.ExactC<t.TypeC<{
|
|
|
1747
1747
|
} | {
|
|
1748
1748
|
start: number;
|
|
1749
1749
|
end: number;
|
|
1750
|
-
type: "strong" | "em";
|
|
1750
|
+
type: "strong" | "em" | "list-item";
|
|
1751
1751
|
})[], unknown>;
|
|
1752
1752
|
}>]>;
|
|
1753
1753
|
}>, t.PartialC<{
|
|
@@ -335,7 +335,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
335
335
|
} | {
|
|
336
336
|
start: number;
|
|
337
337
|
end: number;
|
|
338
|
-
type: "strong" | "em";
|
|
338
|
+
type: "strong" | "em" | "list-item";
|
|
339
339
|
})[], ({
|
|
340
340
|
data: ({
|
|
341
341
|
__TYPE__: "ImageLink";
|
|
@@ -387,7 +387,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
387
387
|
} | {
|
|
388
388
|
start: number;
|
|
389
389
|
end: number;
|
|
390
|
-
type: "strong" | "em";
|
|
390
|
+
type: "strong" | "em" | "list-item";
|
|
391
391
|
})[], unknown>;
|
|
392
392
|
}>]>;
|
|
393
393
|
}>, t.PartialC<{
|
|
@@ -729,7 +729,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
729
729
|
} | {
|
|
730
730
|
start: number;
|
|
731
731
|
end: number;
|
|
732
|
-
type: "strong" | "em";
|
|
732
|
+
type: "strong" | "em" | "list-item";
|
|
733
733
|
})[], ({
|
|
734
734
|
data: ({
|
|
735
735
|
__TYPE__: "ImageLink";
|
|
@@ -781,7 +781,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
781
781
|
} | {
|
|
782
782
|
start: number;
|
|
783
783
|
end: number;
|
|
784
|
-
type: "strong" | "em";
|
|
784
|
+
type: "strong" | "em" | "list-item";
|
|
785
785
|
})[], unknown>;
|
|
786
786
|
}>]>;
|
|
787
787
|
}>, t.PartialC<{
|
|
@@ -1132,7 +1132,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1132
1132
|
} | {
|
|
1133
1133
|
start: number;
|
|
1134
1134
|
end: number;
|
|
1135
|
-
type: "strong" | "em";
|
|
1135
|
+
type: "strong" | "em" | "list-item";
|
|
1136
1136
|
})[], ({
|
|
1137
1137
|
data: ({
|
|
1138
1138
|
__TYPE__: "ImageLink";
|
|
@@ -1184,7 +1184,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1184
1184
|
} | {
|
|
1185
1185
|
start: number;
|
|
1186
1186
|
end: number;
|
|
1187
|
-
type: "strong" | "em";
|
|
1187
|
+
type: "strong" | "em" | "list-item";
|
|
1188
1188
|
})[], unknown>;
|
|
1189
1189
|
}>]>;
|
|
1190
1190
|
}>, t.PartialC<{
|
|
@@ -1527,7 +1527,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1527
1527
|
} | {
|
|
1528
1528
|
start: number;
|
|
1529
1529
|
end: number;
|
|
1530
|
-
type: "strong" | "em";
|
|
1530
|
+
type: "strong" | "em" | "list-item";
|
|
1531
1531
|
})[], ({
|
|
1532
1532
|
data: ({
|
|
1533
1533
|
__TYPE__: "ImageLink";
|
|
@@ -1579,7 +1579,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1579
1579
|
} | {
|
|
1580
1580
|
start: number;
|
|
1581
1581
|
end: number;
|
|
1582
|
-
type: "strong" | "em";
|
|
1582
|
+
type: "strong" | "em" | "list-item";
|
|
1583
1583
|
})[], unknown>;
|
|
1584
1584
|
}>]>;
|
|
1585
1585
|
}>, t.PartialC<{
|
|
@@ -1924,7 +1924,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1924
1924
|
} | {
|
|
1925
1925
|
start: number;
|
|
1926
1926
|
end: number;
|
|
1927
|
-
type: "strong" | "em";
|
|
1927
|
+
type: "strong" | "em" | "list-item";
|
|
1928
1928
|
})[], ({
|
|
1929
1929
|
data: ({
|
|
1930
1930
|
__TYPE__: "ImageLink";
|
|
@@ -1976,7 +1976,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
1976
1976
|
} | {
|
|
1977
1977
|
start: number;
|
|
1978
1978
|
end: number;
|
|
1979
|
-
type: "strong" | "em";
|
|
1979
|
+
type: "strong" | "em" | "list-item";
|
|
1980
1980
|
})[], unknown>;
|
|
1981
1981
|
}>]>;
|
|
1982
1982
|
}>, t.PartialC<{
|
|
@@ -2319,7 +2319,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2319
2319
|
} | {
|
|
2320
2320
|
start: number;
|
|
2321
2321
|
end: number;
|
|
2322
|
-
type: "strong" | "em";
|
|
2322
|
+
type: "strong" | "em" | "list-item";
|
|
2323
2323
|
})[], ({
|
|
2324
2324
|
data: ({
|
|
2325
2325
|
__TYPE__: "ImageLink";
|
|
@@ -2371,7 +2371,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2371
2371
|
} | {
|
|
2372
2372
|
start: number;
|
|
2373
2373
|
end: number;
|
|
2374
|
-
type: "strong" | "em";
|
|
2374
|
+
type: "strong" | "em" | "list-item";
|
|
2375
2375
|
})[], unknown>;
|
|
2376
2376
|
}>]>;
|
|
2377
2377
|
}>, t.PartialC<{
|
|
@@ -2713,7 +2713,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2713
2713
|
} | {
|
|
2714
2714
|
start: number;
|
|
2715
2715
|
end: number;
|
|
2716
|
-
type: "strong" | "em";
|
|
2716
|
+
type: "strong" | "em" | "list-item";
|
|
2717
2717
|
})[], ({
|
|
2718
2718
|
data: ({
|
|
2719
2719
|
__TYPE__: "ImageLink";
|
|
@@ -2765,7 +2765,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
2765
2765
|
} | {
|
|
2766
2766
|
start: number;
|
|
2767
2767
|
end: number;
|
|
2768
|
-
type: "strong" | "em";
|
|
2768
|
+
type: "strong" | "em" | "list-item";
|
|
2769
2769
|
})[], unknown>;
|
|
2770
2770
|
}>]>;
|
|
2771
2771
|
}>, t.PartialC<{
|
|
@@ -3109,7 +3109,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3109
3109
|
} | {
|
|
3110
3110
|
start: number;
|
|
3111
3111
|
end: number;
|
|
3112
|
-
type: "strong" | "em";
|
|
3112
|
+
type: "strong" | "em" | "list-item";
|
|
3113
3113
|
})[], ({
|
|
3114
3114
|
data: ({
|
|
3115
3115
|
__TYPE__: "ImageLink";
|
|
@@ -3161,7 +3161,7 @@ export declare const WidgetContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
3161
3161
|
} | {
|
|
3162
3162
|
start: number;
|
|
3163
3163
|
end: number;
|
|
3164
|
-
type: "strong" | "em";
|
|
3164
|
+
type: "strong" | "em" | "list-item";
|
|
3165
3165
|
})[], unknown>;
|
|
3166
3166
|
}>]>;
|
|
3167
3167
|
}>, t.PartialC<{
|
|
@@ -3478,7 +3478,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3478
3478
|
} | {
|
|
3479
3479
|
start: number;
|
|
3480
3480
|
end: number;
|
|
3481
|
-
type: "strong" | "em";
|
|
3481
|
+
type: "strong" | "em" | "list-item";
|
|
3482
3482
|
})[];
|
|
3483
3483
|
};
|
|
3484
3484
|
} & {
|
|
@@ -3794,7 +3794,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
3794
3794
|
} | {
|
|
3795
3795
|
start: number;
|
|
3796
3796
|
end: number;
|
|
3797
|
-
type: "strong" | "em";
|
|
3797
|
+
type: "strong" | "em" | "list-item";
|
|
3798
3798
|
})[];
|
|
3799
3799
|
};
|
|
3800
3800
|
} & {
|
|
@@ -4117,7 +4117,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4117
4117
|
} | {
|
|
4118
4118
|
start: number;
|
|
4119
4119
|
end: number;
|
|
4120
|
-
type: "strong" | "em";
|
|
4120
|
+
type: "strong" | "em" | "list-item";
|
|
4121
4121
|
})[];
|
|
4122
4122
|
};
|
|
4123
4123
|
} & {
|
|
@@ -4433,7 +4433,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4433
4433
|
} | {
|
|
4434
4434
|
start: number;
|
|
4435
4435
|
end: number;
|
|
4436
|
-
type: "strong" | "em";
|
|
4436
|
+
type: "strong" | "em" | "list-item";
|
|
4437
4437
|
})[];
|
|
4438
4438
|
};
|
|
4439
4439
|
} & {
|
|
@@ -4750,7 +4750,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
4750
4750
|
} | {
|
|
4751
4751
|
start: number;
|
|
4752
4752
|
end: number;
|
|
4753
|
-
type: "strong" | "em";
|
|
4753
|
+
type: "strong" | "em" | "list-item";
|
|
4754
4754
|
})[];
|
|
4755
4755
|
};
|
|
4756
4756
|
} & {
|
|
@@ -5066,7 +5066,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5066
5066
|
} | {
|
|
5067
5067
|
start: number;
|
|
5068
5068
|
end: number;
|
|
5069
|
-
type: "strong" | "em";
|
|
5069
|
+
type: "strong" | "em" | "list-item";
|
|
5070
5070
|
})[];
|
|
5071
5071
|
};
|
|
5072
5072
|
} & {
|
|
@@ -5384,7 +5384,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5384
5384
|
} | {
|
|
5385
5385
|
start: number;
|
|
5386
5386
|
end: number;
|
|
5387
|
-
type: "strong" | "em";
|
|
5387
|
+
type: "strong" | "em" | "list-item";
|
|
5388
5388
|
})[];
|
|
5389
5389
|
};
|
|
5390
5390
|
} & {
|
|
@@ -5700,7 +5700,7 @@ export declare const isWidgetContent: (u: unknown) => u is {
|
|
|
5700
5700
|
} | {
|
|
5701
5701
|
start: number;
|
|
5702
5702
|
end: number;
|
|
5703
|
-
type: "strong" | "em";
|
|
5703
|
+
type: "strong" | "em" | "list-item";
|
|
5704
5704
|
})[];
|
|
5705
5705
|
};
|
|
5706
5706
|
} & {
|
|
@@ -6020,7 +6020,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6020
6020
|
} | {
|
|
6021
6021
|
start: number;
|
|
6022
6022
|
end: number;
|
|
6023
|
-
type: "strong" | "em";
|
|
6023
|
+
type: "strong" | "em" | "list-item";
|
|
6024
6024
|
})[];
|
|
6025
6025
|
};
|
|
6026
6026
|
} & {
|
|
@@ -6336,7 +6336,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6336
6336
|
} | {
|
|
6337
6337
|
start: number;
|
|
6338
6338
|
end: number;
|
|
6339
|
-
type: "strong" | "em";
|
|
6339
|
+
type: "strong" | "em" | "list-item";
|
|
6340
6340
|
})[];
|
|
6341
6341
|
};
|
|
6342
6342
|
} & {
|
|
@@ -6659,7 +6659,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6659
6659
|
} | {
|
|
6660
6660
|
start: number;
|
|
6661
6661
|
end: number;
|
|
6662
|
-
type: "strong" | "em";
|
|
6662
|
+
type: "strong" | "em" | "list-item";
|
|
6663
6663
|
})[];
|
|
6664
6664
|
};
|
|
6665
6665
|
} & {
|
|
@@ -6975,7 +6975,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
6975
6975
|
} | {
|
|
6976
6976
|
start: number;
|
|
6977
6977
|
end: number;
|
|
6978
|
-
type: "strong" | "em";
|
|
6978
|
+
type: "strong" | "em" | "list-item";
|
|
6979
6979
|
})[];
|
|
6980
6980
|
};
|
|
6981
6981
|
} & {
|
|
@@ -7292,7 +7292,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7292
7292
|
} | {
|
|
7293
7293
|
start: number;
|
|
7294
7294
|
end: number;
|
|
7295
|
-
type: "strong" | "em";
|
|
7295
|
+
type: "strong" | "em" | "list-item";
|
|
7296
7296
|
})[];
|
|
7297
7297
|
};
|
|
7298
7298
|
} & {
|
|
@@ -7608,7 +7608,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7608
7608
|
} | {
|
|
7609
7609
|
start: number;
|
|
7610
7610
|
end: number;
|
|
7611
|
-
type: "strong" | "em";
|
|
7611
|
+
type: "strong" | "em" | "list-item";
|
|
7612
7612
|
})[];
|
|
7613
7613
|
};
|
|
7614
7614
|
} & {
|
|
@@ -7926,7 +7926,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
7926
7926
|
} | {
|
|
7927
7927
|
start: number;
|
|
7928
7928
|
end: number;
|
|
7929
|
-
type: "strong" | "em";
|
|
7929
|
+
type: "strong" | "em" | "list-item";
|
|
7930
7930
|
})[];
|
|
7931
7931
|
};
|
|
7932
7932
|
} & {
|
|
@@ -8242,7 +8242,7 @@ export declare const WidgetLegacy: (ctx: LegacyContentCtx) => {
|
|
|
8242
8242
|
} | {
|
|
8243
8243
|
start: number;
|
|
8244
8244
|
end: number;
|
|
8245
|
-
type: "strong" | "em";
|
|
8245
|
+
type: "strong" | "em" | "list-item";
|
|
8246
8246
|
})[];
|
|
8247
8247
|
};
|
|
8248
8248
|
} & {
|
|
@@ -331,7 +331,7 @@ export declare const NestableContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
331
331
|
} | {
|
|
332
332
|
start: number;
|
|
333
333
|
end: number;
|
|
334
|
-
type: "strong" | "em";
|
|
334
|
+
type: "strong" | "em" | "list-item";
|
|
335
335
|
})[], ({
|
|
336
336
|
data: ({
|
|
337
337
|
__TYPE__: "ImageLink";
|
|
@@ -383,7 +383,7 @@ export declare const NestableContent: t.UnionC<[t.ExactC<t.TypeC<{
|
|
|
383
383
|
} | {
|
|
384
384
|
start: number;
|
|
385
385
|
end: number;
|
|
386
|
-
type: "strong" | "em";
|
|
386
|
+
type: "strong" | "em" | "list-item";
|
|
387
387
|
})[], unknown>;
|
|
388
388
|
}>]>;
|
|
389
389
|
}>, t.PartialC<{
|
|
@@ -698,7 +698,7 @@ export declare const isNestableContent: (u: unknown) => u is {
|
|
|
698
698
|
} | {
|
|
699
699
|
start: number;
|
|
700
700
|
end: number;
|
|
701
|
-
type: "strong" | "em";
|
|
701
|
+
type: "strong" | "em" | "list-item";
|
|
702
702
|
})[];
|
|
703
703
|
};
|
|
704
704
|
} & {
|
|
@@ -1012,7 +1012,7 @@ export declare const NestableLegacy: (ctx: LegacyContentCtx) => {
|
|
|
1012
1012
|
} | {
|
|
1013
1013
|
start: number;
|
|
1014
1014
|
end: number;
|
|
1015
|
-
type: "strong" | "em";
|
|
1015
|
+
type: "strong" | "em" | "list-item";
|
|
1016
1016
|
})[];
|
|
1017
1017
|
};
|
|
1018
1018
|
} & {
|