js.documents 1.99.13 → 1.99.15

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.
@@ -62,7 +62,9 @@ function createLocalDocumentConverter() {
62
62
  const bytes = require_convert_convert.odfToPdf(source.bytes, {
63
63
  signal: options.signal,
64
64
  fonts: options.fonts,
65
- onFontSubstitution
65
+ onFontSubstitution,
66
+ onDocument,
67
+ clock: options.clock
66
68
  });
67
69
  return Promise.resolve({
68
70
  document: {
@@ -61,7 +61,9 @@ function createLocalDocumentConverter() {
61
61
  const bytes = odfToPdf(source.bytes, {
62
62
  signal: options.signal,
63
63
  fonts: options.fonts,
64
- onFontSubstitution
64
+ onFontSubstitution,
65
+ onDocument,
66
+ clock: options.clock
65
67
  });
66
68
  return Promise.resolve({
67
69
  document: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "js.documents",
3
- "version": "1.99.13",
3
+ "version": "1.99.15",
4
4
  "description": "Bidirectional docx/pptx <-> PDF conversion and a read+write editable OOXML document model, built on ooxml.js and Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {