camara-sdk 0.9.0 → 0.9.2

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,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.2 (2025-12-06)
4
+
5
+ Full Changelog: [v0.9.1...v0.9.2](https://github.com/andreibesleaga/camara-sdk/compare/v0.9.1...v0.9.2)
6
+
7
+ ### Chores
8
+
9
+ * **internal:** codegen related update ([fce5ab2](https://github.com/andreibesleaga/camara-sdk/commit/fce5ab2ea89dca1099b52d3a3b919dea9e85f386))
10
+
11
+ ## 0.9.1 (2025-12-06)
12
+
13
+ Full Changelog: [v0.9.0...v0.9.1](https://github.com/andreibesleaga/camara-sdk/compare/v0.9.0...v0.9.1)
14
+
15
+ ### Bug Fixes
16
+
17
+ * **mcp:** correct code tool API endpoint ([85d455c](https://github.com/andreibesleaga/camara-sdk/commit/85d455cba0a64bc14820c4ca9a2b481a31ea61b0))
18
+
19
+
20
+ ### Chores
21
+
22
+ * **internal:** codegen related update ([2e393b8](https://github.com/andreibesleaga/camara-sdk/commit/2e393b89e6f164be79c6a58c3cafa133fc7045b3))
23
+
3
24
  ## 0.9.0 (2025-12-06)
4
25
 
5
26
  Full Changelog: [v0.8.0...v0.9.0](https://github.com/andreibesleaga/camara-sdk/compare/v0.8.0...v0.9.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "camara-sdk",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "TypeScript library for the Camara API",
5
5
  "author": "Camara <>",
6
6
  "types": "./index.d.ts",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.9.0'; // x-release-please-version
1
+ export const VERSION = '0.9.2'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.9.0";
1
+ export declare const VERSION = "0.9.2";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.9.0";
1
+ export declare const VERSION = "0.9.2";
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.9.0'; // x-release-please-version
4
+ exports.VERSION = '0.9.2'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.9.0'; // x-release-please-version
1
+ export const VERSION = '0.9.2'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map
@@ -1,14 +0,0 @@
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 {};
@@ -1,9 +0,0 @@
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';