markdown-codec 6.6.5 → 6.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/codec.d.cts +50 -18
- package/dist/codec.d.ts +50 -18
- package/package.json +2 -2
package/dist/codec.d.cts
CHANGED
|
@@ -7,12 +7,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
7
7
|
widthPt: z.ZodNumber;
|
|
8
8
|
heightPt: z.ZodNumber;
|
|
9
9
|
}, z.core.$strip>>>;
|
|
10
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11
|
+
family: z.ZodString;
|
|
12
|
+
bold: z.ZodBoolean;
|
|
13
|
+
italic: z.ZodBoolean;
|
|
14
|
+
base64: z.ZodString;
|
|
15
|
+
}, z.core.$strip>>>;
|
|
10
16
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11
17
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
12
18
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
13
19
|
left: "left";
|
|
14
|
-
center: "center";
|
|
15
20
|
right: "right";
|
|
21
|
+
center: "center";
|
|
16
22
|
justify: "justify";
|
|
17
23
|
}>>;
|
|
18
24
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -97,9 +103,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
97
103
|
symbol: z.ZodString;
|
|
98
104
|
name: z.ZodOptional<z.ZodString>;
|
|
99
105
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
100
|
-
time: "time";
|
|
101
106
|
length: "length";
|
|
102
107
|
mass: "mass";
|
|
108
|
+
time: "time";
|
|
103
109
|
electricCurrent: "electricCurrent";
|
|
104
110
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
105
111
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -156,12 +162,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
156
162
|
widthPt: z.ZodNumber;
|
|
157
163
|
heightPt: z.ZodNumber;
|
|
158
164
|
}, z.core.$strip>>>;
|
|
165
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
166
|
+
family: z.ZodString;
|
|
167
|
+
bold: z.ZodBoolean;
|
|
168
|
+
italic: z.ZodBoolean;
|
|
169
|
+
base64: z.ZodString;
|
|
170
|
+
}, z.core.$strip>>>;
|
|
159
171
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
160
172
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
161
173
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
162
174
|
left: "left";
|
|
163
|
-
center: "center";
|
|
164
175
|
right: "right";
|
|
176
|
+
center: "center";
|
|
165
177
|
justify: "justify";
|
|
166
178
|
}>>;
|
|
167
179
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -246,9 +258,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
246
258
|
symbol: z.ZodString;
|
|
247
259
|
name: z.ZodOptional<z.ZodString>;
|
|
248
260
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
249
|
-
time: "time";
|
|
250
261
|
length: "length";
|
|
251
262
|
mass: "mass";
|
|
263
|
+
time: "time";
|
|
252
264
|
electricCurrent: "electricCurrent";
|
|
253
265
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
254
266
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -310,12 +322,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
310
322
|
widthPt: z.ZodNumber;
|
|
311
323
|
heightPt: z.ZodNumber;
|
|
312
324
|
}, z.core.$strip>>>;
|
|
325
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
326
|
+
family: z.ZodString;
|
|
327
|
+
bold: z.ZodBoolean;
|
|
328
|
+
italic: z.ZodBoolean;
|
|
329
|
+
base64: z.ZodString;
|
|
330
|
+
}, z.core.$strip>>>;
|
|
313
331
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
314
332
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
315
333
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
316
334
|
left: "left";
|
|
317
|
-
center: "center";
|
|
318
335
|
right: "right";
|
|
336
|
+
center: "center";
|
|
319
337
|
justify: "justify";
|
|
320
338
|
}>>;
|
|
321
339
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -400,9 +418,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
400
418
|
symbol: z.ZodString;
|
|
401
419
|
name: z.ZodOptional<z.ZodString>;
|
|
402
420
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
403
|
-
time: "time";
|
|
404
421
|
length: "length";
|
|
405
422
|
mass: "mass";
|
|
423
|
+
time: "time";
|
|
406
424
|
electricCurrent: "electricCurrent";
|
|
407
425
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
408
426
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -459,12 +477,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
459
477
|
widthPt: z.ZodNumber;
|
|
460
478
|
heightPt: z.ZodNumber;
|
|
461
479
|
}, z.core.$strip>>>;
|
|
480
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
481
|
+
family: z.ZodString;
|
|
482
|
+
bold: z.ZodBoolean;
|
|
483
|
+
italic: z.ZodBoolean;
|
|
484
|
+
base64: z.ZodString;
|
|
485
|
+
}, z.core.$strip>>>;
|
|
462
486
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
463
487
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
464
488
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
465
489
|
left: "left";
|
|
466
|
-
center: "center";
|
|
467
490
|
right: "right";
|
|
491
|
+
center: "center";
|
|
468
492
|
justify: "justify";
|
|
469
493
|
}>>;
|
|
470
494
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -549,9 +573,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
549
573
|
symbol: z.ZodString;
|
|
550
574
|
name: z.ZodOptional<z.ZodString>;
|
|
551
575
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
552
|
-
time: "time";
|
|
553
576
|
length: "length";
|
|
554
577
|
mass: "mass";
|
|
578
|
+
time: "time";
|
|
555
579
|
electricCurrent: "electricCurrent";
|
|
556
580
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
557
581
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -667,12 +691,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
667
691
|
widthPt: z.ZodNumber;
|
|
668
692
|
heightPt: z.ZodNumber;
|
|
669
693
|
}, z.core.$strip>>>;
|
|
694
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
695
|
+
family: z.ZodString;
|
|
696
|
+
bold: z.ZodBoolean;
|
|
697
|
+
italic: z.ZodBoolean;
|
|
698
|
+
base64: z.ZodString;
|
|
699
|
+
}, z.core.$strip>>>;
|
|
670
700
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
671
701
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
672
702
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
673
703
|
left: "left";
|
|
674
|
-
center: "center";
|
|
675
704
|
right: "right";
|
|
705
|
+
center: "center";
|
|
676
706
|
justify: "justify";
|
|
677
707
|
}>>;
|
|
678
708
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -757,9 +787,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
757
787
|
symbol: z.ZodString;
|
|
758
788
|
name: z.ZodOptional<z.ZodString>;
|
|
759
789
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
760
|
-
time: "time";
|
|
761
790
|
length: "length";
|
|
762
791
|
mass: "mass";
|
|
792
|
+
time: "time";
|
|
763
793
|
electricCurrent: "electricCurrent";
|
|
764
794
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
765
795
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -902,9 +932,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
902
932
|
symbol: z.ZodString;
|
|
903
933
|
name: z.ZodOptional<z.ZodString>;
|
|
904
934
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
905
|
-
time: "time";
|
|
906
935
|
length: "length";
|
|
907
936
|
mass: "mass";
|
|
937
|
+
time: "time";
|
|
908
938
|
electricCurrent: "electricCurrent";
|
|
909
939
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
910
940
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -1032,6 +1062,7 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1032
1062
|
fontScale: z.ZodOptional<z.ZodNumber>;
|
|
1033
1063
|
lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
|
|
1034
1064
|
paintOrder: z.ZodOptional<z.ZodNumber>;
|
|
1065
|
+
readingOrder: z.ZodOptional<z.ZodNumber>;
|
|
1035
1066
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
1036
1067
|
source: z.ZodOptional<z.ZodObject<{
|
|
1037
1068
|
format: z.ZodEnum<{
|
|
@@ -1097,9 +1128,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1097
1128
|
symbol: z.ZodString;
|
|
1098
1129
|
name: z.ZodOptional<z.ZodString>;
|
|
1099
1130
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
1100
|
-
time: "time";
|
|
1101
1131
|
length: "length";
|
|
1102
1132
|
mass: "mass";
|
|
1133
|
+
time: "time";
|
|
1103
1134
|
electricCurrent: "electricCurrent";
|
|
1104
1135
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
1105
1136
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -1502,8 +1533,8 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1502
1533
|
}, z.core.$strip>>;
|
|
1503
1534
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
1504
1535
|
left: "left";
|
|
1505
|
-
center: "center";
|
|
1506
1536
|
right: "right";
|
|
1537
|
+
center: "center";
|
|
1507
1538
|
justify: "justify";
|
|
1508
1539
|
}>>;
|
|
1509
1540
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1645,10 +1676,10 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1645
1676
|
}>;
|
|
1646
1677
|
align: z.ZodEnum<{
|
|
1647
1678
|
left: "left";
|
|
1648
|
-
center: "center";
|
|
1649
1679
|
right: "right";
|
|
1650
1680
|
top: "top";
|
|
1651
1681
|
bottom: "bottom";
|
|
1682
|
+
center: "center";
|
|
1652
1683
|
inside: "inside";
|
|
1653
1684
|
outside: "outside";
|
|
1654
1685
|
}>;
|
|
@@ -1688,10 +1719,10 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1688
1719
|
}>;
|
|
1689
1720
|
align: z.ZodEnum<{
|
|
1690
1721
|
left: "left";
|
|
1691
|
-
center: "center";
|
|
1692
1722
|
right: "right";
|
|
1693
1723
|
top: "top";
|
|
1694
1724
|
bottom: "bottom";
|
|
1725
|
+
center: "center";
|
|
1695
1726
|
inside: "inside";
|
|
1696
1727
|
outside: "outside";
|
|
1697
1728
|
}>;
|
|
@@ -2442,9 +2473,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
2442
2473
|
symbol: z.ZodString;
|
|
2443
2474
|
name: z.ZodOptional<z.ZodString>;
|
|
2444
2475
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
2445
|
-
time: "time";
|
|
2446
2476
|
length: "length";
|
|
2447
2477
|
mass: "mass";
|
|
2478
|
+
time: "time";
|
|
2448
2479
|
electricCurrent: "electricCurrent";
|
|
2449
2480
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
2450
2481
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -2572,6 +2603,7 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
2572
2603
|
fontScale: z.ZodOptional<z.ZodNumber>;
|
|
2573
2604
|
lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
|
|
2574
2605
|
paintOrder: z.ZodOptional<z.ZodNumber>;
|
|
2606
|
+
readingOrder: z.ZodOptional<z.ZodNumber>;
|
|
2575
2607
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
2576
2608
|
source: z.ZodOptional<z.ZodObject<{
|
|
2577
2609
|
format: z.ZodEnum<{
|
|
@@ -3171,9 +3203,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
3171
3203
|
symbol: z.ZodString;
|
|
3172
3204
|
name: z.ZodOptional<z.ZodString>;
|
|
3173
3205
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
3174
|
-
time: "time";
|
|
3175
3206
|
length: "length";
|
|
3176
3207
|
mass: "mass";
|
|
3208
|
+
time: "time";
|
|
3177
3209
|
electricCurrent: "electricCurrent";
|
|
3178
3210
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
3179
3211
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -3299,9 +3331,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
3299
3331
|
symbol: z.ZodString;
|
|
3300
3332
|
name: z.ZodOptional<z.ZodString>;
|
|
3301
3333
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
3302
|
-
time: "time";
|
|
3303
3334
|
length: "length";
|
|
3304
3335
|
mass: "mass";
|
|
3336
|
+
time: "time";
|
|
3305
3337
|
electricCurrent: "electricCurrent";
|
|
3306
3338
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
3307
3339
|
amountOfSubstance: "amountOfSubstance";
|
package/dist/codec.d.ts
CHANGED
|
@@ -7,12 +7,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
7
7
|
widthPt: z.ZodNumber;
|
|
8
8
|
heightPt: z.ZodNumber;
|
|
9
9
|
}, z.core.$strip>>>;
|
|
10
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11
|
+
family: z.ZodString;
|
|
12
|
+
bold: z.ZodBoolean;
|
|
13
|
+
italic: z.ZodBoolean;
|
|
14
|
+
base64: z.ZodString;
|
|
15
|
+
}, z.core.$strip>>>;
|
|
10
16
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11
17
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
12
18
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
13
19
|
left: "left";
|
|
14
|
-
center: "center";
|
|
15
20
|
right: "right";
|
|
21
|
+
center: "center";
|
|
16
22
|
justify: "justify";
|
|
17
23
|
}>>;
|
|
18
24
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -97,9 +103,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
97
103
|
symbol: z.ZodString;
|
|
98
104
|
name: z.ZodOptional<z.ZodString>;
|
|
99
105
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
100
|
-
time: "time";
|
|
101
106
|
length: "length";
|
|
102
107
|
mass: "mass";
|
|
108
|
+
time: "time";
|
|
103
109
|
electricCurrent: "electricCurrent";
|
|
104
110
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
105
111
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -156,12 +162,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
156
162
|
widthPt: z.ZodNumber;
|
|
157
163
|
heightPt: z.ZodNumber;
|
|
158
164
|
}, z.core.$strip>>>;
|
|
165
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
166
|
+
family: z.ZodString;
|
|
167
|
+
bold: z.ZodBoolean;
|
|
168
|
+
italic: z.ZodBoolean;
|
|
169
|
+
base64: z.ZodString;
|
|
170
|
+
}, z.core.$strip>>>;
|
|
159
171
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
160
172
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
161
173
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
162
174
|
left: "left";
|
|
163
|
-
center: "center";
|
|
164
175
|
right: "right";
|
|
176
|
+
center: "center";
|
|
165
177
|
justify: "justify";
|
|
166
178
|
}>>;
|
|
167
179
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -246,9 +258,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
246
258
|
symbol: z.ZodString;
|
|
247
259
|
name: z.ZodOptional<z.ZodString>;
|
|
248
260
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
249
|
-
time: "time";
|
|
250
261
|
length: "length";
|
|
251
262
|
mass: "mass";
|
|
263
|
+
time: "time";
|
|
252
264
|
electricCurrent: "electricCurrent";
|
|
253
265
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
254
266
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -310,12 +322,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
310
322
|
widthPt: z.ZodNumber;
|
|
311
323
|
heightPt: z.ZodNumber;
|
|
312
324
|
}, z.core.$strip>>>;
|
|
325
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
326
|
+
family: z.ZodString;
|
|
327
|
+
bold: z.ZodBoolean;
|
|
328
|
+
italic: z.ZodBoolean;
|
|
329
|
+
base64: z.ZodString;
|
|
330
|
+
}, z.core.$strip>>>;
|
|
313
331
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
314
332
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
315
333
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
316
334
|
left: "left";
|
|
317
|
-
center: "center";
|
|
318
335
|
right: "right";
|
|
336
|
+
center: "center";
|
|
319
337
|
justify: "justify";
|
|
320
338
|
}>>;
|
|
321
339
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -400,9 +418,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
400
418
|
symbol: z.ZodString;
|
|
401
419
|
name: z.ZodOptional<z.ZodString>;
|
|
402
420
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
403
|
-
time: "time";
|
|
404
421
|
length: "length";
|
|
405
422
|
mass: "mass";
|
|
423
|
+
time: "time";
|
|
406
424
|
electricCurrent: "electricCurrent";
|
|
407
425
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
408
426
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -459,12 +477,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
459
477
|
widthPt: z.ZodNumber;
|
|
460
478
|
heightPt: z.ZodNumber;
|
|
461
479
|
}, z.core.$strip>>>;
|
|
480
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
481
|
+
family: z.ZodString;
|
|
482
|
+
bold: z.ZodBoolean;
|
|
483
|
+
italic: z.ZodBoolean;
|
|
484
|
+
base64: z.ZodString;
|
|
485
|
+
}, z.core.$strip>>>;
|
|
462
486
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
463
487
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
464
488
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
465
489
|
left: "left";
|
|
466
|
-
center: "center";
|
|
467
490
|
right: "right";
|
|
491
|
+
center: "center";
|
|
468
492
|
justify: "justify";
|
|
469
493
|
}>>;
|
|
470
494
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -549,9 +573,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
549
573
|
symbol: z.ZodString;
|
|
550
574
|
name: z.ZodOptional<z.ZodString>;
|
|
551
575
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
552
|
-
time: "time";
|
|
553
576
|
length: "length";
|
|
554
577
|
mass: "mass";
|
|
578
|
+
time: "time";
|
|
555
579
|
electricCurrent: "electricCurrent";
|
|
556
580
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
557
581
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -667,12 +691,18 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
667
691
|
widthPt: z.ZodNumber;
|
|
668
692
|
heightPt: z.ZodNumber;
|
|
669
693
|
}, z.core.$strip>>>;
|
|
694
|
+
fonts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
695
|
+
family: z.ZodString;
|
|
696
|
+
bold: z.ZodBoolean;
|
|
697
|
+
italic: z.ZodBoolean;
|
|
698
|
+
base64: z.ZodString;
|
|
699
|
+
}, z.core.$strip>>>;
|
|
670
700
|
styles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
671
701
|
paragraph: z.ZodOptional<z.ZodObject<{
|
|
672
702
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
673
703
|
left: "left";
|
|
674
|
-
center: "center";
|
|
675
704
|
right: "right";
|
|
705
|
+
center: "center";
|
|
676
706
|
justify: "justify";
|
|
677
707
|
}>>;
|
|
678
708
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -757,9 +787,9 @@ declare const markdownCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uin
|
|
|
757
787
|
symbol: z.ZodString;
|
|
758
788
|
name: z.ZodOptional<z.ZodString>;
|
|
759
789
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
760
|
-
time: "time";
|
|
761
790
|
length: "length";
|
|
762
791
|
mass: "mass";
|
|
792
|
+
time: "time";
|
|
763
793
|
electricCurrent: "electricCurrent";
|
|
764
794
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
765
795
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -902,9 +932,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
902
932
|
symbol: z.ZodString;
|
|
903
933
|
name: z.ZodOptional<z.ZodString>;
|
|
904
934
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
905
|
-
time: "time";
|
|
906
935
|
length: "length";
|
|
907
936
|
mass: "mass";
|
|
937
|
+
time: "time";
|
|
908
938
|
electricCurrent: "electricCurrent";
|
|
909
939
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
910
940
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -1032,6 +1062,7 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1032
1062
|
fontScale: z.ZodOptional<z.ZodNumber>;
|
|
1033
1063
|
lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
|
|
1034
1064
|
paintOrder: z.ZodOptional<z.ZodNumber>;
|
|
1065
|
+
readingOrder: z.ZodOptional<z.ZodNumber>;
|
|
1035
1066
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
1036
1067
|
source: z.ZodOptional<z.ZodObject<{
|
|
1037
1068
|
format: z.ZodEnum<{
|
|
@@ -1097,9 +1128,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1097
1128
|
symbol: z.ZodString;
|
|
1098
1129
|
name: z.ZodOptional<z.ZodString>;
|
|
1099
1130
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
1100
|
-
time: "time";
|
|
1101
1131
|
length: "length";
|
|
1102
1132
|
mass: "mass";
|
|
1133
|
+
time: "time";
|
|
1103
1134
|
electricCurrent: "electricCurrent";
|
|
1104
1135
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
1105
1136
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -1502,8 +1533,8 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1502
1533
|
}, z.core.$strip>>;
|
|
1503
1534
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
1504
1535
|
left: "left";
|
|
1505
|
-
center: "center";
|
|
1506
1536
|
right: "right";
|
|
1537
|
+
center: "center";
|
|
1507
1538
|
justify: "justify";
|
|
1508
1539
|
}>>;
|
|
1509
1540
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1645,10 +1676,10 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1645
1676
|
}>;
|
|
1646
1677
|
align: z.ZodEnum<{
|
|
1647
1678
|
left: "left";
|
|
1648
|
-
center: "center";
|
|
1649
1679
|
right: "right";
|
|
1650
1680
|
top: "top";
|
|
1651
1681
|
bottom: "bottom";
|
|
1682
|
+
center: "center";
|
|
1652
1683
|
inside: "inside";
|
|
1653
1684
|
outside: "outside";
|
|
1654
1685
|
}>;
|
|
@@ -1688,10 +1719,10 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
1688
1719
|
}>;
|
|
1689
1720
|
align: z.ZodEnum<{
|
|
1690
1721
|
left: "left";
|
|
1691
|
-
center: "center";
|
|
1692
1722
|
right: "right";
|
|
1693
1723
|
top: "top";
|
|
1694
1724
|
bottom: "bottom";
|
|
1725
|
+
center: "center";
|
|
1695
1726
|
inside: "inside";
|
|
1696
1727
|
outside: "outside";
|
|
1697
1728
|
}>;
|
|
@@ -2442,9 +2473,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
2442
2473
|
symbol: z.ZodString;
|
|
2443
2474
|
name: z.ZodOptional<z.ZodString>;
|
|
2444
2475
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
2445
|
-
time: "time";
|
|
2446
2476
|
length: "length";
|
|
2447
2477
|
mass: "mass";
|
|
2478
|
+
time: "time";
|
|
2448
2479
|
electricCurrent: "electricCurrent";
|
|
2449
2480
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
2450
2481
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -2572,6 +2603,7 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
2572
2603
|
fontScale: z.ZodOptional<z.ZodNumber>;
|
|
2573
2604
|
lineSpacingReduction: z.ZodOptional<z.ZodNumber>;
|
|
2574
2605
|
paintOrder: z.ZodOptional<z.ZodNumber>;
|
|
2606
|
+
readingOrder: z.ZodOptional<z.ZodNumber>;
|
|
2575
2607
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
2576
2608
|
source: z.ZodOptional<z.ZodObject<{
|
|
2577
2609
|
format: z.ZodEnum<{
|
|
@@ -3171,9 +3203,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
3171
3203
|
symbol: z.ZodString;
|
|
3172
3204
|
name: z.ZodOptional<z.ZodString>;
|
|
3173
3205
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
3174
|
-
time: "time";
|
|
3175
3206
|
length: "length";
|
|
3176
3207
|
mass: "mass";
|
|
3208
|
+
time: "time";
|
|
3177
3209
|
electricCurrent: "electricCurrent";
|
|
3178
3210
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
3179
3211
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -3299,9 +3331,9 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
3299
3331
|
symbol: z.ZodString;
|
|
3300
3332
|
name: z.ZodOptional<z.ZodString>;
|
|
3301
3333
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
3302
|
-
time: "time";
|
|
3303
3334
|
length: "length";
|
|
3304
3335
|
mass: "mass";
|
|
3336
|
+
time: "time";
|
|
3305
3337
|
electricCurrent: "electricCurrent";
|
|
3306
3338
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
3307
3339
|
amountOfSubstance: "amountOfSubstance";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-codec",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.7",
|
|
4
4
|
"description": "Hand-written CommonMark+GFM <-> DocumentTree codec, built on document-schema.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"license": "MIT",
|
|
84
84
|
"packageManager": "pnpm@11.6.0",
|
|
85
85
|
"dependencies": {
|
|
86
|
-
"document-schema.js": "7.
|
|
86
|
+
"document-schema.js": "7.10.0",
|
|
87
87
|
"zod": "4.4.3"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|