Skip to content

Commit ac71d45

Browse files
committed
Release 0.1.4
1 parent 196956f commit ac71d45

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fern-api/hume",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"private": false,
55
"repository": "https://github.com/fern-hume/hume-typescript-sdk",
66
"main": "./index.js",

src/Client.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class HumeClient {
7373
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
7474
"X-Fern-Language": "JavaScript",
7575
"X-Fern-SDK-Name": "@fern-api/hume",
76-
"X-Fern-SDK-Version": "0.1.3",
76+
"X-Fern-SDK-Version": "0.1.4",
7777
},
7878
contentType: "application/json",
7979
queryParameters: _queryParams,
@@ -128,7 +128,7 @@ export class HumeClient {
128128
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
129129
"X-Fern-Language": "JavaScript",
130130
"X-Fern-SDK-Name": "@fern-api/hume",
131-
"X-Fern-SDK-Version": "0.1.3",
131+
"X-Fern-SDK-Version": "0.1.4",
132132
},
133133
contentType: "application/json",
134134
body: await serializers.BaseRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -183,7 +183,7 @@ export class HumeClient {
183183
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
184184
"X-Fern-Language": "JavaScript",
185185
"X-Fern-SDK-Name": "@fern-api/hume",
186-
"X-Fern-SDK-Version": "0.1.3",
186+
"X-Fern-SDK-Version": "0.1.4",
187187
},
188188
contentType: "application/json",
189189
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -234,7 +234,7 @@ export class HumeClient {
234234
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
235235
"X-Fern-Language": "JavaScript",
236236
"X-Fern-SDK-Name": "@fern-api/hume",
237-
"X-Fern-SDK-Version": "0.1.3",
237+
"X-Fern-SDK-Version": "0.1.4",
238238
},
239239
contentType: "application/json",
240240
responseType: "blob",
@@ -281,7 +281,7 @@ export class HumeClient {
281281
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
282282
"X-Fern-Language": "JavaScript",
283283
"X-Fern-SDK-Name": "@fern-api/hume",
284-
"X-Fern-SDK-Version": "0.1.3",
284+
"X-Fern-SDK-Version": "0.1.4",
285285
},
286286
contentType: "application/json",
287287
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,

0 commit comments

Comments
 (0)