@llamaindex/liteparse 2.14.4 → 2.14.6

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/cli.js CHANGED
@@ -337,6 +337,7 @@ var LiteParse = class {
337
337
  extractTextMetadata: userConfig.extractTextMetadata,
338
338
  cropBox: userConfig.cropBox,
339
339
  skipDiagonalText: userConfig.skipDiagonalText,
340
+ pageOrientationCorrections: userConfig.pageOrientationCorrections,
340
341
  includeComplexity: userConfig.includeComplexity,
341
342
  extractVectorGraphics: userConfig.extractVectorGraphics
342
343
  };
@@ -390,6 +391,7 @@ var LiteParse = class {
390
391
  extractTextMetadata: resolved.extractTextMetadata ?? false,
391
392
  cropBox: resolved.cropBox ?? void 0,
392
393
  skipDiagonalText: resolved.skipDiagonalText ?? false,
394
+ pageOrientationCorrections: resolved.pageOrientationCorrections ?? void 0,
393
395
  includeComplexity: resolved.includeComplexity ?? false,
394
396
  extractVectorGraphics: resolved.extractVectorGraphics ?? false
395
397
  };
@@ -559,6 +561,7 @@ function toParseResult(result) {
559
561
  function toPage(p) {
560
562
  return {
561
563
  pageNum: p.pageNum,
564
+ pageLabel: p.pageLabel ?? void 0,
562
565
  width: p.width,
563
566
  height: p.height,
564
567
  contentBounds: p.contentBounds,