Skip to content

Commit 7265e9e

Browse files
committed
Release 0.3.2
1 parent c3a30f5 commit 7265e9e

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hume",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"private": false,
55
"repository": "https://github.com/HumeAI/hume-typescript-sdk",
66
"main": "./index.js",
@@ -16,7 +16,8 @@
1616
"node-fetch": "2.7.0",
1717
"qs": "6.11.2",
1818
"ws": "^8.14.2",
19-
"@types/ws": "^8.5.9"
19+
"@types/ws": "^8.5.9",
20+
"uuid": "9.0.1"
2021
},
2122
"devDependencies": {
2223
"@types/url-join": "4.0.1",

src/Client.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class HumeClient {
8080
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
8181
"X-Fern-Language": "JavaScript",
8282
"X-Fern-SDK-Name": "hume",
83-
"X-Fern-SDK-Version": "0.3.1",
83+
"X-Fern-SDK-Version": "0.3.2",
8484
},
8585
contentType: "application/json",
8686
queryParameters: _queryParams,
@@ -135,7 +135,7 @@ export class HumeClient {
135135
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
136136
"X-Fern-Language": "JavaScript",
137137
"X-Fern-SDK-Name": "hume",
138-
"X-Fern-SDK-Version": "0.3.1",
138+
"X-Fern-SDK-Version": "0.3.2",
139139
},
140140
contentType: "application/json",
141141
body: await serializers.BaseRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -193,7 +193,7 @@ export class HumeClient {
193193
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
194194
"X-Fern-Language": "JavaScript",
195195
"X-Fern-SDK-Name": "hume",
196-
"X-Fern-SDK-Version": "0.3.1",
196+
"X-Fern-SDK-Version": "0.3.2",
197197
},
198198
contentType: "application/json",
199199
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -244,7 +244,7 @@ export class HumeClient {
244244
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
245245
"X-Fern-Language": "JavaScript",
246246
"X-Fern-SDK-Name": "hume",
247-
"X-Fern-SDK-Version": "0.3.1",
247+
"X-Fern-SDK-Version": "0.3.2",
248248
},
249249
contentType: "application/json",
250250
responseType: "streaming",
@@ -291,7 +291,7 @@ export class HumeClient {
291291
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
292292
"X-Fern-Language": "JavaScript",
293293
"X-Fern-SDK-Name": "hume",
294-
"X-Fern-SDK-Version": "0.3.1",
294+
"X-Fern-SDK-Version": "0.3.2",
295295
},
296296
contentType: "application/json",
297297
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,11 @@ [email protected]:
204204
resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7"
205205
integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==
206206

207+
208+
version "9.0.1"
209+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
210+
integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
211+
207212
webidl-conversions@^3.0.0:
208213
version "3.0.1"
209214
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"

0 commit comments

Comments
 (0)