@ox-content/napi 2.64.0 → 2.65.0

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 +6 -0
  2. package/package.json +6 -6
package/index.d.ts CHANGED
@@ -474,6 +474,8 @@ export interface JsDocsMarkdownOptions {
474
474
  * sort strategy.
475
475
  */
476
476
  kindSortOrder?: Array<string>
477
+ /** Single-entry root handling for TypeDoc-style Markdown output. */
478
+ singleEntryRoot?: 'preserve' | 'flatten'
477
479
  }
478
480
 
479
481
  /** Ordered JSDoc tag used by generated API Markdown. */
@@ -513,6 +515,8 @@ export interface JsDocsNavOptions {
513
515
  * `groupOrder`) and the `kind` sort strategy.
514
516
  */
515
517
  kindSortOrder?: Array<string>
518
+ /** Single-entry root handling for TypeDoc-style nav. */
519
+ singleEntryRoot?: 'preserve' | 'flatten'
516
520
  }
517
521
 
518
522
  /** Options for writing generated API documentation files. */
@@ -530,6 +534,8 @@ export interface JsDocsOutputOptions {
530
534
  sortEntryPoints?: boolean
531
535
  /** TypeDoc-style kind ranking for generated nav groups. */
532
536
  kindSortOrder?: Array<string>
537
+ /** Single-entry root handling for generated nav metadata. */
538
+ singleEntryRoot?: 'preserve' | 'flatten'
533
539
  }
534
540
 
535
541
  /** Docs-as-tests extraction options. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ox-content/napi",
3
- "version": "2.64.0",
3
+ "version": "2.65.0",
4
4
  "description": "Node.js bindings for Ox Content - High-performance Markdown parser",
5
5
  "keywords": [
6
6
  "markdown",
@@ -45,10 +45,10 @@
45
45
  ]
46
46
  },
47
47
  "optionalDependencies": {
48
- "@ox-content/binding-darwin-x64": "2.64.0",
49
- "@ox-content/binding-darwin-arm64": "2.64.0",
50
- "@ox-content/binding-linux-x64-gnu": "2.64.0",
51
- "@ox-content/binding-linux-arm64-gnu": "2.64.0",
52
- "@ox-content/binding-win32-x64-msvc": "2.64.0"
48
+ "@ox-content/binding-darwin-x64": "2.65.0",
49
+ "@ox-content/binding-darwin-arm64": "2.65.0",
50
+ "@ox-content/binding-linux-x64-gnu": "2.65.0",
51
+ "@ox-content/binding-linux-arm64-gnu": "2.65.0",
52
+ "@ox-content/binding-win32-x64-msvc": "2.65.0"
53
53
  }
54
54
  }