epub-codec 1.0.3 → 1.0.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
@@ -1356,10 +1356,10 @@ declare const epubContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>,
1356
1356
  endColumn: z.ZodNumber;
1357
1357
  }, z.core.$strip>>;
1358
1358
  type: z.ZodEnum<{
1359
- decimal: "decimal";
1360
- list: "list";
1361
1359
  date: "date";
1362
1360
  custom: "custom";
1361
+ decimal: "decimal";
1362
+ list: "list";
1363
1363
  time: "time";
1364
1364
  whole: "whole";
1365
1365
  textLength: "textLength";
package/dist/codec.d.ts CHANGED
@@ -1356,10 +1356,10 @@ declare const epubContentCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>,
1356
1356
  endColumn: z.ZodNumber;
1357
1357
  }, z.core.$strip>>;
1358
1358
  type: z.ZodEnum<{
1359
- decimal: "decimal";
1360
- list: "list";
1361
1359
  date: "date";
1362
1360
  custom: "custom";
1361
+ decimal: "decimal";
1362
+ list: "list";
1363
1363
  time: "time";
1364
1364
  whole: "whole";
1365
1365
  textLength: "textLength";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epub-codec",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "EPUB 2/3 reading and deterministic EPUB 3 writing against the shared document-schema.js content pivot.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -57,6 +57,7 @@
57
57
  "_typecheck:attw": "attw --pack",
58
58
  "test": "turbo run _test",
59
59
  "_test": "vitest run --project unit",
60
+ "_test:coverage": "vitest run --project unit --coverage",
60
61
  "test:watch": "vitest --project unit",
61
62
  "test:workers": "turbo run _test:workers",
62
63
  "_test:workers": "vitest run --config vitest.workers.config.ts",