markdown-codec 4.0.12 → 4.0.14
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 +6 -0
- package/dist/codec.d.ts +6 -0
- package/package.json +2 -2
package/dist/codec.d.cts
CHANGED
|
@@ -649,6 +649,12 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
649
649
|
leftPt: z.ZodNumber;
|
|
650
650
|
}, z.core.$strip>;
|
|
651
651
|
blocks: z.ZodArray<z.ZodCustom<import("document-schema.js").ContentBlock, import("document-schema.js").ContentBlock>>;
|
|
652
|
+
breakType: z.ZodOptional<z.ZodEnum<{
|
|
653
|
+
nextPage: "nextPage";
|
|
654
|
+
continuous: "continuous";
|
|
655
|
+
evenPage: "evenPage";
|
|
656
|
+
oddPage: "oddPage";
|
|
657
|
+
}>>;
|
|
652
658
|
source: z.ZodOptional<z.ZodObject<{
|
|
653
659
|
format: z.ZodEnum<{
|
|
654
660
|
docx: "docx";
|
package/dist/codec.d.ts
CHANGED
|
@@ -649,6 +649,12 @@ declare const markdownContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffe
|
|
|
649
649
|
leftPt: z.ZodNumber;
|
|
650
650
|
}, z.core.$strip>;
|
|
651
651
|
blocks: z.ZodArray<z.ZodCustom<import("document-schema.js").ContentBlock, import("document-schema.js").ContentBlock>>;
|
|
652
|
+
breakType: z.ZodOptional<z.ZodEnum<{
|
|
653
|
+
nextPage: "nextPage";
|
|
654
|
+
continuous: "continuous";
|
|
655
|
+
evenPage: "evenPage";
|
|
656
|
+
oddPage: "oddPage";
|
|
657
|
+
}>>;
|
|
652
658
|
source: z.ZodOptional<z.ZodObject<{
|
|
653
659
|
format: z.ZodEnum<{
|
|
654
660
|
docx: "docx";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markdown-codec",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.14",
|
|
4
4
|
"description": "Hand-written CommonMark+GFM <-> DocumentPackage codec, built on document-schema.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"license": "MIT",
|
|
82
82
|
"packageManager": "pnpm@11.6.0",
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"document-schema.js": "^4.
|
|
84
|
+
"document-schema.js": "^4.6.0",
|
|
85
85
|
"zod": "^4.4.3"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|