@bluehive/sdk 0.1.0-alpha.26 → 0.1.0-alpha.27

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,30 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.27 (2026-01-28)
4
+
5
+ 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)
6
+
7
+ ### Bug Fixes
8
+
9
+ * **mcp:** allow falling back for required env variables ([40711fc](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/40711fc024e8516245e221c87cb99187e118698b))
10
+
11
+
12
+ ### Chores
13
+
14
+ * **ci:** upgrade `actions/github-script` ([f18b268](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/f18b268a9815aeea1263c4f1c55d00a9a06246bd))
15
+ * fix typo in descriptions ([29b6be5](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/29b6be5a5821507bb8d47e224a3aefc81906182a))
16
+ * **internal:** codegen related update ([a37333c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/a37333c92f86146d285e0038be9a0e933b1d14c1))
17
+ * **internal:** codegen related update ([d1ea57d](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/d1ea57dc4045112e8a77d166f873d485b34de294))
18
+ * **internal:** codegen related update ([bae08d1](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/bae08d1e0af8a5a1729f0d0064397ea11571ad23))
19
+ * **internal:** codegen related update ([1704a75](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/1704a75b189709d476cbb1efd47cf9dbc3573219))
20
+ * **internal:** codegen related update ([187bc9c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/187bc9cfe22529926fb1fb6c7d7d00b0509f1dba))
21
+ * **internal:** update `actions/checkout` version ([4543498](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/45434981fbaed3aab0545b4dcbcf0bcee6578b69))
22
+ * **internal:** update lock file ([0651a87](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/0651a870e945106d6ef73fa2c2c3bcfd49532d1b))
23
+ * **internal:** upgrade babel, qs, js-yaml ([344d16c](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/344d16cd5341e84fff50a3bb5265b8cb68efcee2))
24
+ * **mcp:** add intent param to execute tool ([e5389d8](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/e5389d8fe44a80b75c5df37ec4de3c730f567b58))
25
+ * **mcp:** pass intent param to execute handler ([15b9e2a](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/15b9e2a60d5c6c9aa18ecdf369f018f23792375d))
26
+ * **mcp:** upgrade dependencies ([6558c92](https://github.com/bluehive-health/bluehive-sdk-typescript/commit/6558c92cd02c099aac6f69bfdfc5d8cebdb9b182))
27
+
3
28
  ## 0.1.0-alpha.26 (2026-01-09)
4
29
 
5
30
  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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluehive/sdk",
3
- "version": "0.1.0-alpha.26",
3
+ "version": "0.1.0-alpha.27",
4
4
  "description": "The official TypeScript library for the BlueHive API",
5
5
  "author": "BlueHive <wreiske@bluehive.com>",
6
6
  "types": "./index.d.ts",
@@ -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.26'; // x-release-please-version
1
+ export const VERSION = '0.1.0-alpha.27'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.1.0-alpha.26";
1
+ export declare const VERSION = "0.1.0-alpha.27";
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.26";
1
+ export declare const VERSION = "0.1.0-alpha.27";
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.26'; // x-release-please-version
4
+ exports.VERSION = '0.1.0-alpha.27'; // 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.26'; // x-release-please-version
1
+ export const VERSION = '0.1.0-alpha.27'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map