Skip to content

Commit c57f915

Browse files
committed
Release 0.2.2
1 parent 18c4258 commit c57f915

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

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

src/Client.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class HumeClient {
7272
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
7373
"X-Fern-Language": "JavaScript",
7474
"X-Fern-SDK-Name": "@fern-api/hume",
75-
"X-Fern-SDK-Version": "0.2.1",
75+
"X-Fern-SDK-Version": "0.2.2",
7676
},
7777
contentType: "application/json",
7878
queryParameters: _queryParams,
@@ -127,7 +127,7 @@ export class HumeClient {
127127
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
128128
"X-Fern-Language": "JavaScript",
129129
"X-Fern-SDK-Name": "@fern-api/hume",
130-
"X-Fern-SDK-Version": "0.2.1",
130+
"X-Fern-SDK-Version": "0.2.2",
131131
},
132132
contentType: "application/json",
133133
body: await serializers.BaseRequest.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -182,7 +182,7 @@ export class HumeClient {
182182
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
183183
"X-Fern-Language": "JavaScript",
184184
"X-Fern-SDK-Name": "@fern-api/hume",
185-
"X-Fern-SDK-Version": "0.2.1",
185+
"X-Fern-SDK-Version": "0.2.2",
186186
},
187187
contentType: "application/json",
188188
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
@@ -233,7 +233,7 @@ export class HumeClient {
233233
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
234234
"X-Fern-Language": "JavaScript",
235235
"X-Fern-SDK-Name": "@fern-api/hume",
236-
"X-Fern-SDK-Version": "0.2.1",
236+
"X-Fern-SDK-Version": "0.2.2",
237237
},
238238
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
239239
});
@@ -254,7 +254,7 @@ export class HumeClient {
254254
"X-Hume-Api-Key": await core.Supplier.get(this._options.apiKey),
255255
"X-Fern-Language": "JavaScript",
256256
"X-Fern-SDK-Name": "@fern-api/hume",
257-
"X-Fern-SDK-Version": "0.2.1",
257+
"X-Fern-SDK-Version": "0.2.2",
258258
},
259259
contentType: "application/json",
260260
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,

0 commit comments

Comments
 (0)