@bluehive/sdk 0.1.0-alpha.26 → 0.1.0-alpha.28
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 +33 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/resources/employers/service-bundles.d.mts +9 -9
- package/resources/employers/service-bundles.d.ts +9 -9
- package/src/resources/employers/service-bundles.ts +9 -9
- 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,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.28 (2026-01-29)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.27...v0.1.0-alpha.28](https://github.com/bluehive-health/bluehive-sdk-typescript/compare/v0.1.0-alpha.27...v0.1.0-alpha.28)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **docs:** fix mcp installation instructions for remote servers ([873e966](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/873e9665388c7185e49049c7897b3fd2655e2e7c))
|
|
10
|
+
|
|
11
|
+
## 0.1.0-alpha.27 (2026-01-28)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.1.0-alpha.26...v0.1.0-alpha.27](https://github.com/bluehive-health/bluehive-sdk-typescript/compare/v0.1.0-alpha.26...v0.1.0-alpha.27)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **mcp:** allow falling back for required env variables ([40711fc](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/40711fc024e8516245e221c87cb99187e118698b))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
|
|
22
|
+
* **ci:** upgrade `actions/github-script` ([f18b268](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/f18b268a9815aeea1263c4f1c55d00a9a06246bd))
|
|
23
|
+
* fix typo in descriptions ([29b6be5](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/29b6be5a5821507bb8d47e224a3aefc81906182a))
|
|
24
|
+
* **internal:** codegen related update ([a37333c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/a37333c92f86146d285e0038be9a0e933b1d14c1))
|
|
25
|
+
* **internal:** codegen related update ([d1ea57d](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/d1ea57dc4045112e8a77d166f873d485b34de294))
|
|
26
|
+
* **internal:** codegen related update ([bae08d1](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/bae08d1e0af8a5a1729f0d0064397ea11571ad23))
|
|
27
|
+
* **internal:** codegen related update ([1704a75](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/1704a75b189709d476cbb1efd47cf9dbc3573219))
|
|
28
|
+
* **internal:** codegen related update ([187bc9c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/187bc9cfe22529926fb1fb6c7d7d00b0509f1dba))
|
|
29
|
+
* **internal:** update `actions/checkout` version ([4543498](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/45434981fbaed3aab0545b4dcbcf0bcee6578b69))
|
|
30
|
+
* **internal:** update lock file ([0651a87](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/0651a870e945106d6ef73fa2c2c3bcfd49532d1b))
|
|
31
|
+
* **internal:** upgrade babel, qs, js-yaml ([344d16c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/344d16cd5341e84fff50a3bb5265b8cb68efcee2))
|
|
32
|
+
* **mcp:** add intent param to execute tool ([e5389d8](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/e5389d8fe44a80b75c5df37ec4de3c730f567b58))
|
|
33
|
+
* **mcp:** pass intent param to execute handler ([15b9e2a](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/15b9e2a60d5c6c9aa18ecdf369f018f23792375d))
|
|
34
|
+
* **mcp:** upgrade dependencies ([6558c92](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/6558c92cd02c099aac6f69bfdfc5d8cebdb9b182))
|
|
35
|
+
|
|
3
36
|
## 0.1.0-alpha.26 (2026-01-09)
|
|
4
37
|
|
|
5
38
|
Full Changelog: [v0.1.0-alpha.25...v0.1.0-alpha.26](https://github.com/bluehive-health/bluehive-sdk-typescript/compare/v0.1.0-alpha.25...v0.1.0-alpha.26)
|
package/README.md
CHANGED
|
@@ -12,8 +12,8 @@ It is generated with [Stainless](https://www.stainless.com/).
|
|
|
12
12
|
|
|
13
13
|
Use the BlueHive MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
|
|
14
14
|
|
|
15
|
-
[](https://cursor.com/en-US/install-mcp?name=%40bluehive%2Fsdk-mcp&config=
|
|
16
|
-
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40bluehive%2Fsdk-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40bluehive%2Fsdk-mcp%22%5D%7D)
|
|
15
|
+
[](https://cursor.com/en-US/install-mcp?name=%40bluehive%2Fsdk-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBibHVlaGl2ZS9zZGstbWNwIl0sImVudiI6eyJCTFVFSElWRV9BUElfS0VZIjoiTXkgQVBJIEtleSJ9fQ)
|
|
16
|
+
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40bluehive%2Fsdk-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40bluehive%2Fsdk-mcp%22%5D%2C%22env%22%3A%7B%22BLUEHIVE_API_KEY%22%3A%22My%20API%20Key%22%7D%7D)
|
|
17
17
|
|
|
18
18
|
> Note: You may need to set environment variables in your MCP client.
|
|
19
19
|
|
package/package.json
CHANGED
|
@@ -101,39 +101,39 @@ export interface ServiceBundleRetrieveParams {
|
|
|
101
101
|
}
|
|
102
102
|
export interface ServiceBundleUpdateParams {
|
|
103
103
|
/**
|
|
104
|
-
* Path param
|
|
104
|
+
* Path param
|
|
105
105
|
*/
|
|
106
106
|
employerId: string;
|
|
107
107
|
/**
|
|
108
|
-
* Body param
|
|
108
|
+
* Body param
|
|
109
109
|
*/
|
|
110
110
|
bundleName: string;
|
|
111
111
|
/**
|
|
112
|
-
* Body param
|
|
112
|
+
* Body param
|
|
113
113
|
*/
|
|
114
114
|
serviceIds: Array<string>;
|
|
115
115
|
/**
|
|
116
|
-
* Body param
|
|
116
|
+
* Body param
|
|
117
117
|
*/
|
|
118
118
|
_id?: string;
|
|
119
119
|
/**
|
|
120
|
-
* Body param
|
|
120
|
+
* Body param
|
|
121
121
|
*/
|
|
122
122
|
limit?: number;
|
|
123
123
|
/**
|
|
124
|
-
* Body param
|
|
124
|
+
* Body param
|
|
125
125
|
*/
|
|
126
126
|
occurrence?: string;
|
|
127
127
|
/**
|
|
128
|
-
* Body param
|
|
128
|
+
* Body param
|
|
129
129
|
*/
|
|
130
130
|
recurring?: boolean;
|
|
131
131
|
/**
|
|
132
|
-
* Body param
|
|
132
|
+
* Body param
|
|
133
133
|
*/
|
|
134
134
|
roles?: Array<string> | null;
|
|
135
135
|
/**
|
|
136
|
-
* Body param
|
|
136
|
+
* Body param
|
|
137
137
|
*/
|
|
138
138
|
startDate?: string;
|
|
139
139
|
}
|
|
@@ -101,39 +101,39 @@ export interface ServiceBundleRetrieveParams {
|
|
|
101
101
|
}
|
|
102
102
|
export interface ServiceBundleUpdateParams {
|
|
103
103
|
/**
|
|
104
|
-
* Path param
|
|
104
|
+
* Path param
|
|
105
105
|
*/
|
|
106
106
|
employerId: string;
|
|
107
107
|
/**
|
|
108
|
-
* Body param
|
|
108
|
+
* Body param
|
|
109
109
|
*/
|
|
110
110
|
bundleName: string;
|
|
111
111
|
/**
|
|
112
|
-
* Body param
|
|
112
|
+
* Body param
|
|
113
113
|
*/
|
|
114
114
|
serviceIds: Array<string>;
|
|
115
115
|
/**
|
|
116
|
-
* Body param
|
|
116
|
+
* Body param
|
|
117
117
|
*/
|
|
118
118
|
_id?: string;
|
|
119
119
|
/**
|
|
120
|
-
* Body param
|
|
120
|
+
* Body param
|
|
121
121
|
*/
|
|
122
122
|
limit?: number;
|
|
123
123
|
/**
|
|
124
|
-
* Body param
|
|
124
|
+
* Body param
|
|
125
125
|
*/
|
|
126
126
|
occurrence?: string;
|
|
127
127
|
/**
|
|
128
|
-
* Body param
|
|
128
|
+
* Body param
|
|
129
129
|
*/
|
|
130
130
|
recurring?: boolean;
|
|
131
131
|
/**
|
|
132
|
-
* Body param
|
|
132
|
+
* Body param
|
|
133
133
|
*/
|
|
134
134
|
roles?: Array<string> | null;
|
|
135
135
|
/**
|
|
136
|
-
* Body param
|
|
136
|
+
* Body param
|
|
137
137
|
*/
|
|
138
138
|
startDate?: string;
|
|
139
139
|
}
|
|
@@ -201,47 +201,47 @@ export interface ServiceBundleRetrieveParams {
|
|
|
201
201
|
|
|
202
202
|
export interface ServiceBundleUpdateParams {
|
|
203
203
|
/**
|
|
204
|
-
* Path param
|
|
204
|
+
* Path param
|
|
205
205
|
*/
|
|
206
206
|
employerId: string;
|
|
207
207
|
|
|
208
208
|
/**
|
|
209
|
-
* Body param
|
|
209
|
+
* Body param
|
|
210
210
|
*/
|
|
211
211
|
bundleName: string;
|
|
212
212
|
|
|
213
213
|
/**
|
|
214
|
-
* Body param
|
|
214
|
+
* Body param
|
|
215
215
|
*/
|
|
216
216
|
serviceIds: Array<string>;
|
|
217
217
|
|
|
218
218
|
/**
|
|
219
|
-
* Body param
|
|
219
|
+
* Body param
|
|
220
220
|
*/
|
|
221
221
|
_id?: string;
|
|
222
222
|
|
|
223
223
|
/**
|
|
224
|
-
* Body param
|
|
224
|
+
* Body param
|
|
225
225
|
*/
|
|
226
226
|
limit?: number;
|
|
227
227
|
|
|
228
228
|
/**
|
|
229
|
-
* Body param
|
|
229
|
+
* Body param
|
|
230
230
|
*/
|
|
231
231
|
occurrence?: string;
|
|
232
232
|
|
|
233
233
|
/**
|
|
234
|
-
* Body param
|
|
234
|
+
* Body param
|
|
235
235
|
*/
|
|
236
236
|
recurring?: boolean;
|
|
237
237
|
|
|
238
238
|
/**
|
|
239
|
-
* Body param
|
|
239
|
+
* Body param
|
|
240
240
|
*/
|
|
241
241
|
roles?: Array<string> | null;
|
|
242
242
|
|
|
243
243
|
/**
|
|
244
|
-
* Body param
|
|
244
|
+
* Body param
|
|
245
245
|
*/
|
|
246
246
|
startDate?: string;
|
|
247
247
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.28'; // 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.28";
|
|
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.28";
|
|
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.28'; // 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.28'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|