@bluehive/sdk 0.1.0-alpha.19 → 0.1.0-alpha.20
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 +21 -0
- package/package.json +1 -1
- package/src/internal/polyfill/file.node.d.ts +14 -0
- package/src/internal/polyfill/file.node.mjs +9 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.20 (2025-12-06)
|
|
4
|
+
|
|
5
|
+
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)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **mcp:** add typescript check to code execution tool ([b52a18c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/b52a18c15d8b18dd5f0ab972902ce9872b4f736a))
|
|
10
|
+
* **mcp:** handle code mode calls in the Stainless API ([1721be3](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/1721be3e9c7887b65dfb1f67ce7b829f4aa6ef16))
|
|
11
|
+
* **mcp:** return logs on code tool errors ([0a503ab](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/0a503ab6562b27e48e84717c8ce29accee22ccc4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **mcp:** return correct lines on typescript errors ([7fef38c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/7fef38c8fc822904f8e0116a4d8c21f58d077e56))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Chores
|
|
20
|
+
|
|
21
|
+
* **internal:** upgrade eslint ([fbe7ad8](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/fbe7ad82994decacdccb5ed9360772202da78f33))
|
|
22
|
+
* use latest @modelcontextprotocol/sdk ([7a0d906](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/7a0d906e850ed7aaee3de0057e9d8812da9756b4))
|
|
23
|
+
|
|
3
24
|
## 0.1.0-alpha.19 (2025-12-02)
|
|
4
25
|
|
|
5
26
|
Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/bluehive-health/bluehive-sdk-typescript/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
|
package/package.json
CHANGED
|
@@ -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 {};
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.20'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.20";
|
|
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.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.20";
|
|
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.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.20'; // 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.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.20'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|