pdf-codec 1.10.2 → 1.10.4

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 CHANGED
@@ -24,12 +24,12 @@ declare const pdfCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Arr
24
24
  font: z.ZodObject<{
25
25
  family: z.ZodString;
26
26
  weight: z.ZodEnum<{
27
- normal: "normal";
28
27
  bold: "bold";
28
+ normal: "normal";
29
29
  }>;
30
30
  style: z.ZodEnum<{
31
- normal: "normal";
32
31
  italic: "italic";
32
+ normal: "normal";
33
33
  }>;
34
34
  }, z.core.$strip>;
35
35
  sizePt: z.ZodNumber;
package/dist/codec.d.ts CHANGED
@@ -24,12 +24,12 @@ declare const pdfCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Arr
24
24
  font: z.ZodObject<{
25
25
  family: z.ZodString;
26
26
  weight: z.ZodEnum<{
27
- normal: "normal";
28
27
  bold: "bold";
28
+ normal: "normal";
29
29
  }>;
30
30
  style: z.ZodEnum<{
31
- normal: "normal";
32
31
  italic: "italic";
32
+ normal: "normal";
33
33
  }>;
34
34
  }, z.core.$strip>;
35
35
  sizePt: z.ZodNumber;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pdf-codec",
3
- "version": "1.10.2",
3
+ "version": "1.10.4",
4
4
  "description": "Hand-written, dependency-minimal PDF codec: parses arbitrary real-world PDFs and generates new ones, built on document-schema.js's LayoutDocument pivot and Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {