extend-ai 0.0.15 → 0.0.18

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 (43) hide show
  1. package/Client.js +2 -2
  2. package/api/types/Citation.d.ts +4 -0
  3. package/api/types/JsonOutputMetadataValueCitationsItem.d.ts +4 -0
  4. package/api/types/ParseConfigAdvancedOptions.d.ts +1 -1
  5. package/api/types/ParseConfigBlockOptionsTables.d.ts +3 -1
  6. package/api/types/ParseConfigBlockOptionsTablesAgentic.d.ts +12 -0
  7. package/api/types/ParseConfigBlockOptionsTablesAgentic.js +5 -0
  8. package/api/types/ParseConfigBlockOptionsText.d.ts +3 -0
  9. package/api/types/ParseConfigBlockOptionsTextAgentic.d.ts +12 -0
  10. package/api/types/ParseConfigBlockOptionsTextAgentic.js +5 -0
  11. package/api/types/ParserRun.d.ts +2 -0
  12. package/api/types/ParserRunOcr.d.ts +11 -0
  13. package/api/types/ParserRunOcr.js +5 -0
  14. package/api/types/ParserRunOcrWordsItem.d.ts +14 -0
  15. package/api/types/ParserRunOcrWordsItem.js +5 -0
  16. package/api/types/ParserRunOcrWordsItemBoundingBox.d.ts +16 -0
  17. package/api/types/ParserRunOcrWordsItemBoundingBox.js +5 -0
  18. package/api/types/index.d.ts +5 -0
  19. package/api/types/index.js +5 -0
  20. package/dist/Client.js +2 -2
  21. package/dist/api/types/Citation.d.ts +4 -0
  22. package/dist/api/types/JsonOutputMetadataValueCitationsItem.d.ts +4 -0
  23. package/dist/api/types/ParseConfigAdvancedOptions.d.ts +1 -1
  24. package/dist/api/types/ParseConfigBlockOptionsTables.d.ts +3 -1
  25. package/dist/api/types/ParseConfigBlockOptionsTablesAgentic.d.ts +12 -0
  26. package/dist/api/types/ParseConfigBlockOptionsTablesAgentic.js +5 -0
  27. package/dist/api/types/ParseConfigBlockOptionsText.d.ts +3 -0
  28. package/dist/api/types/ParseConfigBlockOptionsTextAgentic.d.ts +12 -0
  29. package/dist/api/types/ParseConfigBlockOptionsTextAgentic.js +5 -0
  30. package/dist/api/types/ParserRun.d.ts +2 -0
  31. package/dist/api/types/ParserRunOcr.d.ts +11 -0
  32. package/dist/api/types/ParserRunOcr.js +5 -0
  33. package/dist/api/types/ParserRunOcrWordsItem.d.ts +14 -0
  34. package/dist/api/types/ParserRunOcrWordsItem.js +5 -0
  35. package/dist/api/types/ParserRunOcrWordsItemBoundingBox.d.ts +16 -0
  36. package/dist/api/types/ParserRunOcrWordsItemBoundingBox.js +5 -0
  37. package/dist/api/types/index.d.ts +5 -0
  38. package/dist/api/types/index.js +5 -0
  39. package/dist/version.d.ts +1 -1
  40. package/dist/version.js +1 -1
  41. package/package.json +1 -1
  42. package/version.d.ts +1 -1
  43. package/version.js +1 -1
package/Client.js CHANGED
@@ -82,8 +82,8 @@ class ExtendClient {
82
82
  "x-extend-api-version": (_a = _options === null || _options === void 0 ? void 0 : _options.extendApiVersion) !== null && _a !== void 0 ? _a : "2025-04-21",
83
83
  "X-Fern-Language": "JavaScript",
84
84
  "X-Fern-SDK-Name": "extend-ai",
85
- "X-Fern-SDK-Version": "0.0.15",
86
- "User-Agent": "extend-ai/0.0.15",
85
+ "X-Fern-SDK-Version": "0.0.18",
86
+ "User-Agent": "extend-ai/0.0.18",
87
87
  "X-Fern-Runtime": core.RUNTIME.type,
88
88
  "X-Fern-Runtime-Version": core.RUNTIME.version,
89
89
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -9,4 +9,8 @@ export interface Citation {
9
9
  referenceText?: string;
10
10
  /** Array of points defining the polygon */
11
11
  polygon?: Extend.Polygon[];
12
+ /** Width of the page in points */
13
+ pageWidth?: number;
14
+ /** Height of the page in points */
15
+ pageHeight?: number;
12
16
  }
@@ -9,4 +9,8 @@ export interface JsonOutputMetadataValueCitationsItem {
9
9
  referenceText?: string;
10
10
  /** Array of points defining the polygon around the referenced text */
11
11
  polygon?: Extend.JsonOutputMetadataValueCitationsItemPolygonItem[];
12
+ /** Width of the page in points */
13
+ pageWidth?: number;
14
+ /** Height of the page in points */
15
+ pageHeight?: number;
12
16
  }
@@ -5,7 +5,7 @@ import * as Extend from "../index";
5
5
  export interface ParseConfigAdvancedOptions {
6
6
  /** Whether to automatically detect and correct page rotation. */
7
7
  pageRotationEnabled?: boolean;
8
- /** Whether to enable agentic OCR corrections using VLM-based review and correction of OCR errors for messy handwriting and poorly scanned text. */
8
+ /** Whether to enable agentic OCR corrections using VLM-based review and correction of OCR errors for messy handwriting and poorly scanned text. Deprecated - use `blockOptions.text.agentic` or `blockOptions.tables.agentic` instead for more granular control. */
9
9
  agenticOcrEnabled?: boolean;
10
10
  pageRanges?: Extend.PageRanges;
11
11
  /** Multiplier for the Y-axis threshold used to determine if text blocks should be placed on the same line or not (0.1-5.0, default 1.0). Higher values group elements that are further apart vertically. Only applies when the spatial target is set. */
@@ -6,7 +6,7 @@ import * as Extend from "../index";
6
6
  * Options for table blocks.
7
7
  */
8
8
  export interface ParseConfigBlockOptionsTables {
9
- /** Whether to include tables in the output. */
9
+ /** This option is deprecated and will have no effect. It will be removed in the next API version. */
10
10
  enabled?: boolean;
11
11
  /**
12
12
  * The target format for the table blocks. Supported values:
@@ -18,4 +18,6 @@ export interface ParseConfigBlockOptionsTables {
18
18
  tableHeaderContinuationEnabled?: boolean;
19
19
  /** Whether to include individual table cell blocks in the output. When enabled, each cell in a table will be represented as a separate block with its own bounding box and content and will be `children` of the table block. */
20
20
  cellBlocksEnabled?: boolean;
21
+ /** Options for agentic table processing using VLM-based review and correction. */
22
+ agentic?: Extend.ParseConfigBlockOptionsTablesAgentic;
21
23
  }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Options for agentic table processing using VLM-based review and correction.
6
+ */
7
+ export interface ParseConfigBlockOptionsTablesAgentic {
8
+ /** Whether to enable agentic table processing. */
9
+ enabled?: boolean;
10
+ /** Custom instructions to guide the agentic table processing. */
11
+ customInstructions?: string;
12
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,10 +1,13 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as Extend from "../index";
4
5
  /**
5
6
  * Options for text blocks.
6
7
  */
7
8
  export interface ParseConfigBlockOptionsText {
8
9
  /** Whether an additional vision model will be utilized for advanced signature detection. Recommended for most use cases, but should be disabled if signature detection is not necessary and latency is a concern. */
9
10
  signatureDetectionEnabled?: boolean;
11
+ /** Options for agentic text processing using VLM-based review and correction. */
12
+ agentic?: Extend.ParseConfigBlockOptionsTextAgentic;
10
13
  }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Options for agentic text processing using VLM-based review and correction.
6
+ */
7
+ export interface ParseConfigBlockOptionsTextAgentic {
8
+ /** Whether to enable agentic text processing for OCR corrections. */
9
+ enabled?: boolean;
10
+ /** Custom instructions to guide the agentic text processing. */
11
+ customInstructions?: string;
12
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -18,6 +18,8 @@ export interface ParserRun {
18
18
  fileId: string;
19
19
  /** An array of chunks that were parsed from the file. */
20
20
  chunks: Extend.Chunk[];
21
+ /** Raw OCR data from the parsing process. Only included when `returnOcr` is configured in the parse config's advanced options. */
22
+ ocr?: Extend.ParserRunOcr;
21
23
  /**
22
24
  * The status of the parser run:
23
25
  * * `"PROCESSED"` - The file was successfully processed
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Extend from "../index";
5
+ /**
6
+ * Raw OCR data from the parsing process. Only included when `returnOcr` is configured in the parse config's advanced options.
7
+ */
8
+ export interface ParserRunOcr {
9
+ /** An array of individual words detected by OCR. */
10
+ words?: Extend.ParserRunOcrWordsItem[];
11
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Extend from "../index";
5
+ export interface ParserRunOcrWordsItem {
6
+ /** The text content of the word. */
7
+ content: string;
8
+ /** The bounding box coordinates of the word. */
9
+ boundingBox: Extend.ParserRunOcrWordsItemBoundingBox;
10
+ /** The confidence score of the OCR detection for this word, between 0 and 1. */
11
+ confidence: number;
12
+ /** The page number where the word was detected. */
13
+ pageNumber: number;
14
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The bounding box coordinates of the word.
6
+ */
7
+ export interface ParserRunOcrWordsItemBoundingBox {
8
+ /** The left coordinate of the bounding box. */
9
+ left: number;
10
+ /** The right coordinate of the bounding box. */
11
+ right: number;
12
+ /** The top coordinate of the bounding box. */
13
+ top: number;
14
+ /** The bottom coordinate of the bounding box. */
15
+ bottom: number;
16
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -65,6 +65,9 @@ export * from "./ProcessorRunSummaryType";
65
65
  export * from "./ProcessorRunSummary";
66
66
  export * from "./ParseErrorCode";
67
67
  export * from "./ParseError";
68
+ export * from "./ParserRunOcrWordsItemBoundingBox";
69
+ export * from "./ParserRunOcrWordsItem";
70
+ export * from "./ParserRunOcr";
68
71
  export * from "./ParserRunStatusEnum";
69
72
  export * from "./ParserRunMetrics";
70
73
  export * from "./ParserRun";
@@ -180,7 +183,9 @@ export * from "./ParseConfigChunkingStrategy";
180
183
  export * from "./ParseConfigEngine";
181
184
  export * from "./ParseConfigBlockOptionsFigures";
182
185
  export * from "./ParseConfigBlockOptionsTablesTargetFormat";
186
+ export * from "./ParseConfigBlockOptionsTablesAgentic";
183
187
  export * from "./ParseConfigBlockOptionsTables";
188
+ export * from "./ParseConfigBlockOptionsTextAgentic";
184
189
  export * from "./ParseConfigBlockOptionsText";
185
190
  export * from "./ParseConfigBlockOptions";
186
191
  export * from "./ParseConfigAdvancedOptionsReturnOcr";
@@ -81,6 +81,9 @@ __exportStar(require("./ProcessorRunSummaryType"), exports);
81
81
  __exportStar(require("./ProcessorRunSummary"), exports);
82
82
  __exportStar(require("./ParseErrorCode"), exports);
83
83
  __exportStar(require("./ParseError"), exports);
84
+ __exportStar(require("./ParserRunOcrWordsItemBoundingBox"), exports);
85
+ __exportStar(require("./ParserRunOcrWordsItem"), exports);
86
+ __exportStar(require("./ParserRunOcr"), exports);
84
87
  __exportStar(require("./ParserRunStatusEnum"), exports);
85
88
  __exportStar(require("./ParserRunMetrics"), exports);
86
89
  __exportStar(require("./ParserRun"), exports);
@@ -196,7 +199,9 @@ __exportStar(require("./ParseConfigChunkingStrategy"), exports);
196
199
  __exportStar(require("./ParseConfigEngine"), exports);
197
200
  __exportStar(require("./ParseConfigBlockOptionsFigures"), exports);
198
201
  __exportStar(require("./ParseConfigBlockOptionsTablesTargetFormat"), exports);
202
+ __exportStar(require("./ParseConfigBlockOptionsTablesAgentic"), exports);
199
203
  __exportStar(require("./ParseConfigBlockOptionsTables"), exports);
204
+ __exportStar(require("./ParseConfigBlockOptionsTextAgentic"), exports);
200
205
  __exportStar(require("./ParseConfigBlockOptionsText"), exports);
201
206
  __exportStar(require("./ParseConfigBlockOptions"), exports);
202
207
  __exportStar(require("./ParseConfigAdvancedOptionsReturnOcr"), exports);
package/dist/Client.js CHANGED
@@ -82,8 +82,8 @@ class ExtendClient {
82
82
  "x-extend-api-version": (_a = _options === null || _options === void 0 ? void 0 : _options.extendApiVersion) !== null && _a !== void 0 ? _a : "2025-04-21",
83
83
  "X-Fern-Language": "JavaScript",
84
84
  "X-Fern-SDK-Name": "extend-ai",
85
- "X-Fern-SDK-Version": "0.0.15",
86
- "User-Agent": "extend-ai/0.0.15",
85
+ "X-Fern-SDK-Version": "0.0.18",
86
+ "User-Agent": "extend-ai/0.0.18",
87
87
  "X-Fern-Runtime": core.RUNTIME.type,
88
88
  "X-Fern-Runtime-Version": core.RUNTIME.version,
89
89
  }, _options === null || _options === void 0 ? void 0 : _options.headers) });
@@ -9,4 +9,8 @@ export interface Citation {
9
9
  referenceText?: string;
10
10
  /** Array of points defining the polygon */
11
11
  polygon?: Extend.Polygon[];
12
+ /** Width of the page in points */
13
+ pageWidth?: number;
14
+ /** Height of the page in points */
15
+ pageHeight?: number;
12
16
  }
@@ -9,4 +9,8 @@ export interface JsonOutputMetadataValueCitationsItem {
9
9
  referenceText?: string;
10
10
  /** Array of points defining the polygon around the referenced text */
11
11
  polygon?: Extend.JsonOutputMetadataValueCitationsItemPolygonItem[];
12
+ /** Width of the page in points */
13
+ pageWidth?: number;
14
+ /** Height of the page in points */
15
+ pageHeight?: number;
12
16
  }
@@ -5,7 +5,7 @@ import * as Extend from "../index";
5
5
  export interface ParseConfigAdvancedOptions {
6
6
  /** Whether to automatically detect and correct page rotation. */
7
7
  pageRotationEnabled?: boolean;
8
- /** Whether to enable agentic OCR corrections using VLM-based review and correction of OCR errors for messy handwriting and poorly scanned text. */
8
+ /** Whether to enable agentic OCR corrections using VLM-based review and correction of OCR errors for messy handwriting and poorly scanned text. Deprecated - use `blockOptions.text.agentic` or `blockOptions.tables.agentic` instead for more granular control. */
9
9
  agenticOcrEnabled?: boolean;
10
10
  pageRanges?: Extend.PageRanges;
11
11
  /** Multiplier for the Y-axis threshold used to determine if text blocks should be placed on the same line or not (0.1-5.0, default 1.0). Higher values group elements that are further apart vertically. Only applies when the spatial target is set. */
@@ -6,7 +6,7 @@ import * as Extend from "../index";
6
6
  * Options for table blocks.
7
7
  */
8
8
  export interface ParseConfigBlockOptionsTables {
9
- /** Whether to include tables in the output. */
9
+ /** This option is deprecated and will have no effect. It will be removed in the next API version. */
10
10
  enabled?: boolean;
11
11
  /**
12
12
  * The target format for the table blocks. Supported values:
@@ -18,4 +18,6 @@ export interface ParseConfigBlockOptionsTables {
18
18
  tableHeaderContinuationEnabled?: boolean;
19
19
  /** Whether to include individual table cell blocks in the output. When enabled, each cell in a table will be represented as a separate block with its own bounding box and content and will be `children` of the table block. */
20
20
  cellBlocksEnabled?: boolean;
21
+ /** Options for agentic table processing using VLM-based review and correction. */
22
+ agentic?: Extend.ParseConfigBlockOptionsTablesAgentic;
21
23
  }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Options for agentic table processing using VLM-based review and correction.
6
+ */
7
+ export interface ParseConfigBlockOptionsTablesAgentic {
8
+ /** Whether to enable agentic table processing. */
9
+ enabled?: boolean;
10
+ /** Custom instructions to guide the agentic table processing. */
11
+ customInstructions?: string;
12
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,10 +1,13 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
+ import * as Extend from "../index";
4
5
  /**
5
6
  * Options for text blocks.
6
7
  */
7
8
  export interface ParseConfigBlockOptionsText {
8
9
  /** Whether an additional vision model will be utilized for advanced signature detection. Recommended for most use cases, but should be disabled if signature detection is not necessary and latency is a concern. */
9
10
  signatureDetectionEnabled?: boolean;
11
+ /** Options for agentic text processing using VLM-based review and correction. */
12
+ agentic?: Extend.ParseConfigBlockOptionsTextAgentic;
10
13
  }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Options for agentic text processing using VLM-based review and correction.
6
+ */
7
+ export interface ParseConfigBlockOptionsTextAgentic {
8
+ /** Whether to enable agentic text processing for OCR corrections. */
9
+ enabled?: boolean;
10
+ /** Custom instructions to guide the agentic text processing. */
11
+ customInstructions?: string;
12
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -18,6 +18,8 @@ export interface ParserRun {
18
18
  fileId: string;
19
19
  /** An array of chunks that were parsed from the file. */
20
20
  chunks: Extend.Chunk[];
21
+ /** Raw OCR data from the parsing process. Only included when `returnOcr` is configured in the parse config's advanced options. */
22
+ ocr?: Extend.ParserRunOcr;
21
23
  /**
22
24
  * The status of the parser run:
23
25
  * * `"PROCESSED"` - The file was successfully processed
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Extend from "../index";
5
+ /**
6
+ * Raw OCR data from the parsing process. Only included when `returnOcr` is configured in the parse config's advanced options.
7
+ */
8
+ export interface ParserRunOcr {
9
+ /** An array of individual words detected by OCR. */
10
+ words?: Extend.ParserRunOcrWordsItem[];
11
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Extend from "../index";
5
+ export interface ParserRunOcrWordsItem {
6
+ /** The text content of the word. */
7
+ content: string;
8
+ /** The bounding box coordinates of the word. */
9
+ boundingBox: Extend.ParserRunOcrWordsItemBoundingBox;
10
+ /** The confidence score of the OCR detection for this word, between 0 and 1. */
11
+ confidence: number;
12
+ /** The page number where the word was detected. */
13
+ pageNumber: number;
14
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The bounding box coordinates of the word.
6
+ */
7
+ export interface ParserRunOcrWordsItemBoundingBox {
8
+ /** The left coordinate of the bounding box. */
9
+ left: number;
10
+ /** The right coordinate of the bounding box. */
11
+ right: number;
12
+ /** The top coordinate of the bounding box. */
13
+ top: number;
14
+ /** The bottom coordinate of the bounding box. */
15
+ bottom: number;
16
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -65,6 +65,9 @@ export * from "./ProcessorRunSummaryType";
65
65
  export * from "./ProcessorRunSummary";
66
66
  export * from "./ParseErrorCode";
67
67
  export * from "./ParseError";
68
+ export * from "./ParserRunOcrWordsItemBoundingBox";
69
+ export * from "./ParserRunOcrWordsItem";
70
+ export * from "./ParserRunOcr";
68
71
  export * from "./ParserRunStatusEnum";
69
72
  export * from "./ParserRunMetrics";
70
73
  export * from "./ParserRun";
@@ -180,7 +183,9 @@ export * from "./ParseConfigChunkingStrategy";
180
183
  export * from "./ParseConfigEngine";
181
184
  export * from "./ParseConfigBlockOptionsFigures";
182
185
  export * from "./ParseConfigBlockOptionsTablesTargetFormat";
186
+ export * from "./ParseConfigBlockOptionsTablesAgentic";
183
187
  export * from "./ParseConfigBlockOptionsTables";
188
+ export * from "./ParseConfigBlockOptionsTextAgentic";
184
189
  export * from "./ParseConfigBlockOptionsText";
185
190
  export * from "./ParseConfigBlockOptions";
186
191
  export * from "./ParseConfigAdvancedOptionsReturnOcr";
@@ -81,6 +81,9 @@ __exportStar(require("./ProcessorRunSummaryType"), exports);
81
81
  __exportStar(require("./ProcessorRunSummary"), exports);
82
82
  __exportStar(require("./ParseErrorCode"), exports);
83
83
  __exportStar(require("./ParseError"), exports);
84
+ __exportStar(require("./ParserRunOcrWordsItemBoundingBox"), exports);
85
+ __exportStar(require("./ParserRunOcrWordsItem"), exports);
86
+ __exportStar(require("./ParserRunOcr"), exports);
84
87
  __exportStar(require("./ParserRunStatusEnum"), exports);
85
88
  __exportStar(require("./ParserRunMetrics"), exports);
86
89
  __exportStar(require("./ParserRun"), exports);
@@ -196,7 +199,9 @@ __exportStar(require("./ParseConfigChunkingStrategy"), exports);
196
199
  __exportStar(require("./ParseConfigEngine"), exports);
197
200
  __exportStar(require("./ParseConfigBlockOptionsFigures"), exports);
198
201
  __exportStar(require("./ParseConfigBlockOptionsTablesTargetFormat"), exports);
202
+ __exportStar(require("./ParseConfigBlockOptionsTablesAgentic"), exports);
199
203
  __exportStar(require("./ParseConfigBlockOptionsTables"), exports);
204
+ __exportStar(require("./ParseConfigBlockOptionsTextAgentic"), exports);
200
205
  __exportStar(require("./ParseConfigBlockOptionsText"), exports);
201
206
  __exportStar(require("./ParseConfigBlockOptions"), exports);
202
207
  __exportStar(require("./ParseConfigAdvancedOptionsReturnOcr"), exports);
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.0.15";
1
+ export declare const SDK_VERSION = "0.0.18";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.0.15";
4
+ exports.SDK_VERSION = "0.0.18";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extend-ai",
3
- "version": "0.0.15",
3
+ "version": "0.0.18",
4
4
  "private": false,
5
5
  "repository": "github:extend-hq/extend-typescript-sdk",
6
6
  "main": "./index.js",
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.0.15";
1
+ export declare const SDK_VERSION = "0.0.18";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.0.15";
4
+ exports.SDK_VERSION = "0.0.18";