@kreuzberg/html-to-markdown-node 3.4.0-rc.43 → 3.4.0-rc.44

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -12
  2. package/package.json +6 -6
package/index.d.ts CHANGED
@@ -400,7 +400,7 @@ export interface JsStructuredData {
400
400
  export declare const enum JsStructuredDataType {
401
401
  JsonLd = 'json_ld',
402
402
  Microdata = 'microdata',
403
- RDFa = 'rd_fa'
403
+ RDFa = 'rdfa'
404
404
  }
405
405
 
406
406
  export interface JsTableData {
@@ -421,17 +421,9 @@ export interface JsTextAnnotation {
421
421
  }
422
422
 
423
423
  export declare const enum JsTextDirection {
424
- LeftToRight = 'LeftToRight',
425
- RightToLeft = 'RightToLeft',
426
- Auto = 'Auto'
427
- }
428
-
429
- export declare const enum JsVisitResult {
430
- Continue = 'Continue',
431
- Custom = 'Custom',
432
- Skip = 'Skip',
433
- PreserveHtml = 'PreserveHtml',
434
- Error = 'Error'
424
+ LeftToRight = 'ltr',
425
+ RightToLeft = 'rtl',
426
+ Auto = 'auto'
435
427
  }
436
428
 
437
429
  export declare const enum JsWarningKind {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kreuzberg/html-to-markdown-node",
3
- "version": "3.4.0-rc.43",
3
+ "version": "3.4.0-rc.44",
4
4
  "description": "High-performance HTML to Markdown converter",
5
5
  "homepage": "https://github.com/kreuzberg-dev/html-to-markdown",
6
6
  "bugs": "https://github.com/kreuzberg-dev/html-to-markdown/issues",
@@ -39,10 +39,10 @@
39
39
  "node": ">= 18"
40
40
  },
41
41
  "optionalDependencies": {
42
- "@kreuzberg/html-to-markdown-node-darwin-arm64": "3.4.0-rc.43",
43
- "@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.43",
44
- "@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.43",
45
- "@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.43",
46
- "@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.43"
42
+ "@kreuzberg/html-to-markdown-node-darwin-arm64": "3.4.0-rc.44",
43
+ "@kreuzberg/html-to-markdown-node-darwin-x64": "3.4.0-rc.44",
44
+ "@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "3.4.0-rc.44",
45
+ "@kreuzberg/html-to-markdown-node-linux-x64-gnu": "3.4.0-rc.44",
46
+ "@kreuzberg/html-to-markdown-node-win32-x64-msvc": "3.4.0-rc.44"
47
47
  }
48
48
  }