extend-ai 0.0.14 → 0.0.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.
Files changed (37) hide show
  1. package/Client.js +2 -2
  2. package/api/types/Block.d.ts +4 -0
  3. package/api/types/BlockType.d.ts +3 -1
  4. package/api/types/BlockType.js +2 -0
  5. package/api/types/JsonOutputMetadataValue.d.ts +1 -0
  6. package/api/types/OutputMetadataValue.d.ts +1 -0
  7. package/api/types/ParseConfig.d.ts +7 -1
  8. package/api/types/ParseConfigAdvancedOptions.d.ts +2 -0
  9. package/api/types/ParseConfigAdvancedOptionsReturnOcr.d.ts +10 -0
  10. package/api/types/ParseConfigAdvancedOptionsReturnOcr.js +5 -0
  11. package/api/types/ParseConfigBlockOptionsTables.d.ts +2 -0
  12. package/api/types/ParseConfigEngine.d.ts +13 -0
  13. package/api/types/ParseConfigEngine.js +10 -0
  14. package/api/types/ParseConfigTarget.d.ts +1 -1
  15. package/api/types/index.d.ts +2 -0
  16. package/api/types/index.js +2 -0
  17. package/dist/Client.js +2 -2
  18. package/dist/api/types/Block.d.ts +4 -0
  19. package/dist/api/types/BlockType.d.ts +3 -1
  20. package/dist/api/types/BlockType.js +2 -0
  21. package/dist/api/types/JsonOutputMetadataValue.d.ts +1 -0
  22. package/dist/api/types/OutputMetadataValue.d.ts +1 -0
  23. package/dist/api/types/ParseConfig.d.ts +7 -1
  24. package/dist/api/types/ParseConfigAdvancedOptions.d.ts +2 -0
  25. package/dist/api/types/ParseConfigAdvancedOptionsReturnOcr.d.ts +10 -0
  26. package/dist/api/types/ParseConfigAdvancedOptionsReturnOcr.js +5 -0
  27. package/dist/api/types/ParseConfigBlockOptionsTables.d.ts +2 -0
  28. package/dist/api/types/ParseConfigEngine.d.ts +13 -0
  29. package/dist/api/types/ParseConfigEngine.js +10 -0
  30. package/dist/api/types/ParseConfigTarget.d.ts +1 -1
  31. package/dist/api/types/index.d.ts +2 -0
  32. package/dist/api/types/index.js +2 -0
  33. package/dist/version.d.ts +1 -1
  34. package/dist/version.js +1 -1
  35. package/package.json +1 -1
  36. package/version.d.ts +1 -1
  37. 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.14",
86
- "User-Agent": "extend-ai/0.0.14",
85
+ "X-Fern-SDK-Version": "0.0.15",
86
+ "User-Agent": "extend-ai/0.0.15",
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) });
@@ -7,6 +7,8 @@ export interface Block {
7
7
  object: string;
8
8
  /** A unique identifier for the block, deterministically generated as a hash of the block content. */
9
9
  id: string;
10
+ /** The ID of the parent block. For example, for a table cell block, this would be the ID of the parent table block. Only set if this is a child block. */
11
+ parentBlockId?: string;
10
12
  /**
11
13
  * The type of block:
12
14
  * * `"text"` - Regular text content
@@ -28,4 +30,6 @@ export interface Block {
28
30
  polygon: Extend.BlockPolygonItem[];
29
31
  /** A simplified bounding box for the block. */
30
32
  boundingBox: Extend.BlockBoundingBox;
33
+ /** An array of child blocks. For example, a table block may contain table cell blocks as children when `cellBlocksEnabled` is set to true. */
34
+ children?: Extend.Block[];
31
35
  }
@@ -11,11 +11,13 @@
11
11
  * * `"table_cell"` - Table body cells
12
12
  * * `"figure"` - Images, charts, diagrams, or logos
13
13
  */
14
- export type BlockType = "text" | "heading" | "section_heading" | "table" | "figure";
14
+ export type BlockType = "text" | "heading" | "section_heading" | "table" | "figure" | "table_head" | "table_cell";
15
15
  export declare const BlockType: {
16
16
  readonly Text: "text";
17
17
  readonly Heading: "heading";
18
18
  readonly SectionHeading: "section_heading";
19
19
  readonly Table: "table";
20
20
  readonly Figure: "figure";
21
+ readonly TableHead: "table_head";
22
+ readonly TableCell: "table_cell";
21
23
  };
@@ -10,4 +10,6 @@ exports.BlockType = {
10
10
  SectionHeading: "section_heading",
11
11
  Table: "table",
12
12
  Figure: "figure",
13
+ TableHead: "table_head",
14
+ TableCell: "table_cell",
13
15
  };
@@ -16,6 +16,7 @@ export interface JsonOutputMetadataValue {
16
16
  * - 1: Very low confidence, significant problems detected
17
17
  *
18
18
  * These scores will be present when the `reviewAgent.enabled` flag is set to `true` in the processor config.
19
+ * If the review agent is enabled but a score is not returned for a field, this value will be `null`.
19
20
  * To learn more, view the [Review Agent Documentation](https://docs.extend.ai/product/extraction/review-agent)
20
21
  */
21
22
  reviewAgentScore?: number;
@@ -14,6 +14,7 @@ export interface OutputMetadataValue {
14
14
  * - 3: Moderate confidence, some uncertainty
15
15
  * - 2: Low confidence, likely issues
16
16
  * - 1: Very low confidence, significant problems detected
17
+ * If the review agent is enabled but a score is not returned for a field, this value will be `null`.
17
18
  */
18
19
  reviewAgentScore?: number;
19
20
  citations?: Extend.Citation[];
@@ -19,11 +19,17 @@ export interface ParseConfig {
19
19
  * * Prefer `markdown` for most documents, multi-column reading order, and retrieval use cases
20
20
  * * Prefer `spatial` for messy/scanned/handwritten or skewed documents, when you need near 1:1 layout fidelity, or for BOL-like logistics docs
21
21
  *
22
- * See Markdown vs Spatial in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
22
+ * See "Markdown vs Spatial" in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
23
23
  */
24
24
  target?: Extend.ParseConfigTarget;
25
25
  /** Strategy for dividing the document into chunks. */
26
26
  chunkingStrategy?: Extend.ParseConfigChunkingStrategy;
27
+ /**
28
+ * The parsing engine to use. Supported values:
29
+ * * `parse_performance`: Full-featured parsing engine with highest accuracy (default)
30
+ * * `parse_light`: Lightweight parsing engine optimized for speed. This does not have robust layout support and does not support markdown layout target.
31
+ */
32
+ engine?: Extend.ParseConfigEngine;
27
33
  /** Options for controlling how different block types are processed. */
28
34
  blockOptions?: Extend.ParseConfigBlockOptions;
29
35
  advancedOptions?: Extend.ParseConfigAdvancedOptions;
@@ -10,4 +10,6 @@ export interface ParseConfigAdvancedOptions {
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. */
12
12
  verticalGroupingThreshold?: number;
13
+ /** Options for returning raw OCR data in the response. */
14
+ returnOcr?: Extend.ParseConfigAdvancedOptionsReturnOcr;
13
15
  }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Options for returning raw OCR data in the response.
6
+ */
7
+ export interface ParseConfigAdvancedOptionsReturnOcr {
8
+ /** Whether to include word-level OCR data in the response, including word bounding boxes and confidence scores. This meaningfully impacts the response size, consider using the signed url return format. */
9
+ words?: boolean;
10
+ }
@@ -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 });
@@ -16,4 +16,6 @@ export interface ParseConfigBlockOptionsTables {
16
16
  targetFormat?: Extend.ParseConfigBlockOptionsTablesTargetFormat;
17
17
  /** Whether to automatically copy table headers to headerless tables on subsequent pages when they have matching column counts. Useful for multi-page tables. */
18
18
  tableHeaderContinuationEnabled?: boolean;
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
+ cellBlocksEnabled?: boolean;
19
21
  }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The parsing engine to use. Supported values:
6
+ * * `parse_performance`: Full-featured parsing engine with highest accuracy (default)
7
+ * * `parse_light`: Lightweight parsing engine optimized for speed. This does not have robust layout support and does not support markdown layout target.
8
+ */
9
+ export type ParseConfigEngine = "parse_performance" | "parse_light";
10
+ export declare const ParseConfigEngine: {
11
+ readonly ParsePerformance: "parse_performance";
12
+ readonly ParseLight: "parse_light";
13
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ParseConfigEngine = void 0;
7
+ exports.ParseConfigEngine = {
8
+ ParsePerformance: "parse_performance",
9
+ ParseLight: "parse_light",
10
+ };
@@ -14,7 +14,7 @@
14
14
  * * Prefer `markdown` for most documents, multi-column reading order, and retrieval use cases
15
15
  * * Prefer `spatial` for messy/scanned/handwritten or skewed documents, when you need near 1:1 layout fidelity, or for BOL-like logistics docs
16
16
  *
17
- * See Markdown vs Spatial in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
17
+ * See "Markdown vs Spatial" in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
18
18
  */
19
19
  export type ParseConfigTarget = "markdown" | "spatial";
20
20
  export declare const ParseConfigTarget: {
@@ -177,11 +177,13 @@ export * from "./ParseConfigTarget";
177
177
  export * from "./ParseConfigChunkingStrategyType";
178
178
  export * from "./ParseConfigChunkingStrategyOptions";
179
179
  export * from "./ParseConfigChunkingStrategy";
180
+ export * from "./ParseConfigEngine";
180
181
  export * from "./ParseConfigBlockOptionsFigures";
181
182
  export * from "./ParseConfigBlockOptionsTablesTargetFormat";
182
183
  export * from "./ParseConfigBlockOptionsTables";
183
184
  export * from "./ParseConfigBlockOptionsText";
184
185
  export * from "./ParseConfigBlockOptions";
186
+ export * from "./ParseConfigAdvancedOptionsReturnOcr";
185
187
  export * from "./ParseConfigAdvancedOptions";
186
188
  export * from "./ParseConfig";
187
189
  export * from "./OptimizerRunAgentType";
@@ -193,11 +193,13 @@ __exportStar(require("./ParseConfigTarget"), exports);
193
193
  __exportStar(require("./ParseConfigChunkingStrategyType"), exports);
194
194
  __exportStar(require("./ParseConfigChunkingStrategyOptions"), exports);
195
195
  __exportStar(require("./ParseConfigChunkingStrategy"), exports);
196
+ __exportStar(require("./ParseConfigEngine"), exports);
196
197
  __exportStar(require("./ParseConfigBlockOptionsFigures"), exports);
197
198
  __exportStar(require("./ParseConfigBlockOptionsTablesTargetFormat"), exports);
198
199
  __exportStar(require("./ParseConfigBlockOptionsTables"), exports);
199
200
  __exportStar(require("./ParseConfigBlockOptionsText"), exports);
200
201
  __exportStar(require("./ParseConfigBlockOptions"), exports);
202
+ __exportStar(require("./ParseConfigAdvancedOptionsReturnOcr"), exports);
201
203
  __exportStar(require("./ParseConfigAdvancedOptions"), exports);
202
204
  __exportStar(require("./ParseConfig"), exports);
203
205
  __exportStar(require("./OptimizerRunAgentType"), 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.14",
86
- "User-Agent": "extend-ai/0.0.14",
85
+ "X-Fern-SDK-Version": "0.0.15",
86
+ "User-Agent": "extend-ai/0.0.15",
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) });
@@ -7,6 +7,8 @@ export interface Block {
7
7
  object: string;
8
8
  /** A unique identifier for the block, deterministically generated as a hash of the block content. */
9
9
  id: string;
10
+ /** The ID of the parent block. For example, for a table cell block, this would be the ID of the parent table block. Only set if this is a child block. */
11
+ parentBlockId?: string;
10
12
  /**
11
13
  * The type of block:
12
14
  * * `"text"` - Regular text content
@@ -28,4 +30,6 @@ export interface Block {
28
30
  polygon: Extend.BlockPolygonItem[];
29
31
  /** A simplified bounding box for the block. */
30
32
  boundingBox: Extend.BlockBoundingBox;
33
+ /** An array of child blocks. For example, a table block may contain table cell blocks as children when `cellBlocksEnabled` is set to true. */
34
+ children?: Extend.Block[];
31
35
  }
@@ -11,11 +11,13 @@
11
11
  * * `"table_cell"` - Table body cells
12
12
  * * `"figure"` - Images, charts, diagrams, or logos
13
13
  */
14
- export type BlockType = "text" | "heading" | "section_heading" | "table" | "figure";
14
+ export type BlockType = "text" | "heading" | "section_heading" | "table" | "figure" | "table_head" | "table_cell";
15
15
  export declare const BlockType: {
16
16
  readonly Text: "text";
17
17
  readonly Heading: "heading";
18
18
  readonly SectionHeading: "section_heading";
19
19
  readonly Table: "table";
20
20
  readonly Figure: "figure";
21
+ readonly TableHead: "table_head";
22
+ readonly TableCell: "table_cell";
21
23
  };
@@ -10,4 +10,6 @@ exports.BlockType = {
10
10
  SectionHeading: "section_heading",
11
11
  Table: "table",
12
12
  Figure: "figure",
13
+ TableHead: "table_head",
14
+ TableCell: "table_cell",
13
15
  };
@@ -16,6 +16,7 @@ export interface JsonOutputMetadataValue {
16
16
  * - 1: Very low confidence, significant problems detected
17
17
  *
18
18
  * These scores will be present when the `reviewAgent.enabled` flag is set to `true` in the processor config.
19
+ * If the review agent is enabled but a score is not returned for a field, this value will be `null`.
19
20
  * To learn more, view the [Review Agent Documentation](https://docs.extend.ai/product/extraction/review-agent)
20
21
  */
21
22
  reviewAgentScore?: number;
@@ -14,6 +14,7 @@ export interface OutputMetadataValue {
14
14
  * - 3: Moderate confidence, some uncertainty
15
15
  * - 2: Low confidence, likely issues
16
16
  * - 1: Very low confidence, significant problems detected
17
+ * If the review agent is enabled but a score is not returned for a field, this value will be `null`.
17
18
  */
18
19
  reviewAgentScore?: number;
19
20
  citations?: Extend.Citation[];
@@ -19,11 +19,17 @@ export interface ParseConfig {
19
19
  * * Prefer `markdown` for most documents, multi-column reading order, and retrieval use cases
20
20
  * * Prefer `spatial` for messy/scanned/handwritten or skewed documents, when you need near 1:1 layout fidelity, or for BOL-like logistics docs
21
21
  *
22
- * See Markdown vs Spatial in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
22
+ * See "Markdown vs Spatial" in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
23
23
  */
24
24
  target?: Extend.ParseConfigTarget;
25
25
  /** Strategy for dividing the document into chunks. */
26
26
  chunkingStrategy?: Extend.ParseConfigChunkingStrategy;
27
+ /**
28
+ * The parsing engine to use. Supported values:
29
+ * * `parse_performance`: Full-featured parsing engine with highest accuracy (default)
30
+ * * `parse_light`: Lightweight parsing engine optimized for speed. This does not have robust layout support and does not support markdown layout target.
31
+ */
32
+ engine?: Extend.ParseConfigEngine;
27
33
  /** Options for controlling how different block types are processed. */
28
34
  blockOptions?: Extend.ParseConfigBlockOptions;
29
35
  advancedOptions?: Extend.ParseConfigAdvancedOptions;
@@ -10,4 +10,6 @@ export interface ParseConfigAdvancedOptions {
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. */
12
12
  verticalGroupingThreshold?: number;
13
+ /** Options for returning raw OCR data in the response. */
14
+ returnOcr?: Extend.ParseConfigAdvancedOptionsReturnOcr;
13
15
  }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Options for returning raw OCR data in the response.
6
+ */
7
+ export interface ParseConfigAdvancedOptionsReturnOcr {
8
+ /** Whether to include word-level OCR data in the response, including word bounding boxes and confidence scores. This meaningfully impacts the response size, consider using the signed url return format. */
9
+ words?: boolean;
10
+ }
@@ -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 });
@@ -16,4 +16,6 @@ export interface ParseConfigBlockOptionsTables {
16
16
  targetFormat?: Extend.ParseConfigBlockOptionsTablesTargetFormat;
17
17
  /** Whether to automatically copy table headers to headerless tables on subsequent pages when they have matching column counts. Useful for multi-page tables. */
18
18
  tableHeaderContinuationEnabled?: boolean;
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
+ cellBlocksEnabled?: boolean;
19
21
  }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * The parsing engine to use. Supported values:
6
+ * * `parse_performance`: Full-featured parsing engine with highest accuracy (default)
7
+ * * `parse_light`: Lightweight parsing engine optimized for speed. This does not have robust layout support and does not support markdown layout target.
8
+ */
9
+ export type ParseConfigEngine = "parse_performance" | "parse_light";
10
+ export declare const ParseConfigEngine: {
11
+ readonly ParsePerformance: "parse_performance";
12
+ readonly ParseLight: "parse_light";
13
+ };
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ParseConfigEngine = void 0;
7
+ exports.ParseConfigEngine = {
8
+ ParsePerformance: "parse_performance",
9
+ ParseLight: "parse_light",
10
+ };
@@ -14,7 +14,7 @@
14
14
  * * Prefer `markdown` for most documents, multi-column reading order, and retrieval use cases
15
15
  * * Prefer `spatial` for messy/scanned/handwritten or skewed documents, when you need near 1:1 layout fidelity, or for BOL-like logistics docs
16
16
  *
17
- * See Markdown vs Spatial in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
17
+ * See "Markdown vs Spatial" in the Parse guide for details: /2025-04-21/developers/guides/parse#markdown-vs-spatial
18
18
  */
19
19
  export type ParseConfigTarget = "markdown" | "spatial";
20
20
  export declare const ParseConfigTarget: {
@@ -177,11 +177,13 @@ export * from "./ParseConfigTarget";
177
177
  export * from "./ParseConfigChunkingStrategyType";
178
178
  export * from "./ParseConfigChunkingStrategyOptions";
179
179
  export * from "./ParseConfigChunkingStrategy";
180
+ export * from "./ParseConfigEngine";
180
181
  export * from "./ParseConfigBlockOptionsFigures";
181
182
  export * from "./ParseConfigBlockOptionsTablesTargetFormat";
182
183
  export * from "./ParseConfigBlockOptionsTables";
183
184
  export * from "./ParseConfigBlockOptionsText";
184
185
  export * from "./ParseConfigBlockOptions";
186
+ export * from "./ParseConfigAdvancedOptionsReturnOcr";
185
187
  export * from "./ParseConfigAdvancedOptions";
186
188
  export * from "./ParseConfig";
187
189
  export * from "./OptimizerRunAgentType";
@@ -193,11 +193,13 @@ __exportStar(require("./ParseConfigTarget"), exports);
193
193
  __exportStar(require("./ParseConfigChunkingStrategyType"), exports);
194
194
  __exportStar(require("./ParseConfigChunkingStrategyOptions"), exports);
195
195
  __exportStar(require("./ParseConfigChunkingStrategy"), exports);
196
+ __exportStar(require("./ParseConfigEngine"), exports);
196
197
  __exportStar(require("./ParseConfigBlockOptionsFigures"), exports);
197
198
  __exportStar(require("./ParseConfigBlockOptionsTablesTargetFormat"), exports);
198
199
  __exportStar(require("./ParseConfigBlockOptionsTables"), exports);
199
200
  __exportStar(require("./ParseConfigBlockOptionsText"), exports);
200
201
  __exportStar(require("./ParseConfigBlockOptions"), exports);
202
+ __exportStar(require("./ParseConfigAdvancedOptionsReturnOcr"), exports);
201
203
  __exportStar(require("./ParseConfigAdvancedOptions"), exports);
202
204
  __exportStar(require("./ParseConfig"), exports);
203
205
  __exportStar(require("./OptimizerRunAgentType"), exports);
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.0.14";
1
+ export declare const SDK_VERSION = "0.0.15";
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.14";
4
+ exports.SDK_VERSION = "0.0.15";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extend-ai",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
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.14";
1
+ export declare const SDK_VERSION = "0.0.15";
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.14";
4
+ exports.SDK_VERSION = "0.0.15";