camara-sdk 0.7.0 → 0.9.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.0 (2025-12-06)
4
+
5
+ Full Changelog: [v0.8.0...v0.9.0](https://github.com/andreibesleaga/camara-sdk/compare/v0.8.0...v0.9.0)
6
+
7
+ ### Features
8
+
9
+ * **mcp:** add typescript check to code execution tool ([a282c38](https://github.com/andreibesleaga/camara-sdk/commit/a282c38c36911b0bf3faf8bc615192c0ff0e4cfa))
10
+ * **mcp:** handle code mode calls in the Stainless API ([1f38252](https://github.com/andreibesleaga/camara-sdk/commit/1f382527b524659a9d5d5f980692c65a2bcd31e7))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **mcp:** return correct lines on typescript errors ([fcb9b18](https://github.com/andreibesleaga/camara-sdk/commit/fcb9b181547bd49f9efd82e5b9d8d1abd71a8bc4))
16
+
17
+
18
+ ### Chores
19
+
20
+ * **internal:** upgrade eslint ([43698b5](https://github.com/andreibesleaga/camara-sdk/commit/43698b56ef33c75d957608f226f56812853b7e2f))
21
+ * use latest @modelcontextprotocol/sdk ([caddb86](https://github.com/andreibesleaga/camara-sdk/commit/caddb861ca6e09d1b09dbb38337c77dee1e1af9f))
22
+
23
+ ## 0.8.0 (2025-12-02)
24
+
25
+ Full Changelog: [v0.7.0...v0.8.0](https://github.com/andreibesleaga/camara-sdk/compare/v0.7.0...v0.8.0)
26
+
27
+ ### Features
28
+
29
+ * **mcp:** return logs on code tool errors ([0c34755](https://github.com/andreibesleaga/camara-sdk/commit/0c34755fff99f0d94e6c3758072706942a071922))
30
+
3
31
  ## 0.7.0 (2025-12-02)
4
32
 
5
33
  Full Changelog: [v0.6.0...v0.7.0](https://github.com/andreibesleaga/camara-sdk/compare/v0.6.0...v0.7.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "camara-sdk",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
4
4
  "description": "TypeScript library for the Camara API",
5
5
  "author": "Camara <>",
6
6
  "types": "./index.d.ts",
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file polyfills the global `File` object for you if it's not already defined
3
+ * when running on Node.js
4
+ *
5
+ * This is only needed on Node.js v18 & v19. Newer versions already define `File`
6
+ * as a global.
7
+ */
8
+
9
+ // @ts-ignore
10
+ type nodeBuffer = typeof import('node:buffer');
11
+ declare const File: typeof globalThis extends { File: unknown } ? (typeof globalThis)['File']
12
+ : nodeBuffer extends { File: unknown } ? nodeBuffer['File']
13
+ : any;
14
+ export {};
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file polyfills the global `File` object for you if it's not already defined
3
+ * when running on Node.js
4
+ *
5
+ * This is only needed on Node.js v18 & v19. Newer versions already define `File`
6
+ * as a global.
7
+ */
8
+
9
+ import './file.node.js';
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.7.0'; // x-release-please-version
1
+ export const VERSION = '0.9.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.7.0";
1
+ export declare const VERSION = "0.9.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.7.0";
1
+ export declare const VERSION = "0.9.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.7.0'; // x-release-please-version
4
+ exports.VERSION = '0.9.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.7.0'; // x-release-please-version
1
+ export const VERSION = '0.9.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map