@bluehive/sdk 0.1.0-alpha.20 → 0.1.0-alpha.22

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,39 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.22 (2025-12-19)
4
+
5
+ Full Changelog: [v0.1.0-alpha.21...v0.1.0-alpha.22](https://github.com/bluehive-health/bluehive-sdk-typescript/compare/v0.1.0-alpha.21...v0.1.0-alpha.22)
6
+
7
+ ### ⚠ BREAKING CHANGES
8
+
9
+ * **mcp:** remove deprecated tool schemes
10
+ * **mcp:** **Migration:** To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do.
11
+
12
+ ### Bug Fixes
13
+
14
+ * **mcp:** pass base url to code tool ([e9a276b](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/e9a276b5216d557015c38ec33e688c0925d98855))
15
+
16
+
17
+ ### Chores
18
+
19
+ * **mcp:** remove deprecated tool schemes ([61639b4](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/61639b4c9cc65ee5f13f57fb3f6a3748870b01cc))
20
+
21
+ ## 0.1.0-alpha.21 (2025-12-17)
22
+
23
+ Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/bluehive-health/bluehive-sdk-typescript/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)
24
+
25
+ ### Bug Fixes
26
+
27
+ * **mcp:** add client instantiation options to code tool ([7b212a8](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/7b212a8b27327cfc4c637a1315112e6cbe7a3aa9))
28
+ * **mcp:** correct code tool API endpoint ([f5b6fb9](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/f5b6fb92050b1008834a0f985e2908a0d8425082))
29
+
30
+
31
+ ### Chores
32
+
33
+ * **internal:** codegen related update ([459c50a](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/459c50a2558e83142819aa952a63f074a5a62166))
34
+ * **internal:** codegen related update ([fc8142e](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/fc8142ecbe9a7da8f40a33e65d327b28647e519e))
35
+ * **mcp:** update lockfile ([56bf6a7](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/56bf6a704508e0edc165eb156c20cef07ffe5ed7))
36
+
3
37
  ## 0.1.0-alpha.20 (2025-12-06)
4
38
 
5
39
  Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/bluehive-health/bluehive-sdk-typescript/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluehive/sdk",
3
- "version": "0.1.0-alpha.20",
3
+ "version": "0.1.0-alpha.22",
4
4
  "description": "The official TypeScript library for the BlueHive API",
5
5
  "author": "BlueHive <wreiske@bluehive.com>",
6
6
  "types": "./index.d.ts",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.1.0-alpha.20'; // x-release-please-version
1
+ export const VERSION = '0.1.0-alpha.22'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.1.0-alpha.20";
1
+ export declare const VERSION = "0.1.0-alpha.22";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.1.0-alpha.20";
1
+ export declare const VERSION = "0.1.0-alpha.22";
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.1.0-alpha.20'; // x-release-please-version
4
+ exports.VERSION = '0.1.0-alpha.22'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.1.0-alpha.20'; // x-release-please-version
1
+ export const VERSION = '0.1.0-alpha.22'; // 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';