Skip to content

Commit 8884381

Browse files
committed
SDK regeneration
1 parent 3bce4a1 commit 8884381

File tree

18 files changed

+130
-130
lines changed

18 files changed

+130
-130
lines changed

package.json

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

src/api/resources/v1/resources/agentVersions/client/Client.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ export class AgentVersions {
5757
Authorization: await this._getAuthorizationHeader(),
5858
"X-Fern-Language": "JavaScript",
5959
"X-Fern-SDK-Name": "truefoundry-sdk",
60-
"X-Fern-SDK-Version": "0.0.0",
61-
"User-Agent": "truefoundry-sdk/0.0.0",
60+
"X-Fern-SDK-Version": "0.0.8",
61+
"User-Agent": "truefoundry-sdk/0.0.8",
6262
"X-Fern-Runtime": core.RUNTIME.type,
6363
"X-Fern-Runtime-Version": core.RUNTIME.version,
6464
...requestOptions?.headers,
@@ -125,8 +125,8 @@ export class AgentVersions {
125125
Authorization: await this._getAuthorizationHeader(),
126126
"X-Fern-Language": "JavaScript",
127127
"X-Fern-SDK-Name": "truefoundry-sdk",
128-
"X-Fern-SDK-Version": "0.0.0",
129-
"User-Agent": "truefoundry-sdk/0.0.0",
128+
"X-Fern-SDK-Version": "0.0.8",
129+
"User-Agent": "truefoundry-sdk/0.0.8",
130130
"X-Fern-Runtime": core.RUNTIME.type,
131131
"X-Fern-Runtime-Version": core.RUNTIME.version,
132132
...requestOptions?.headers,
@@ -213,8 +213,8 @@ export class AgentVersions {
213213
Authorization: await this._getAuthorizationHeader(),
214214
"X-Fern-Language": "JavaScript",
215215
"X-Fern-SDK-Name": "truefoundry-sdk",
216-
"X-Fern-SDK-Version": "0.0.0",
217-
"User-Agent": "truefoundry-sdk/0.0.0",
216+
"X-Fern-SDK-Version": "0.0.8",
217+
"User-Agent": "truefoundry-sdk/0.0.8",
218218
"X-Fern-Runtime": core.RUNTIME.type,
219219
"X-Fern-Runtime-Version": core.RUNTIME.version,
220220
...requestOptions?.headers,
@@ -297,8 +297,8 @@ export class AgentVersions {
297297
Authorization: await this._getAuthorizationHeader(),
298298
"X-Fern-Language": "JavaScript",
299299
"X-Fern-SDK-Name": "truefoundry-sdk",
300-
"X-Fern-SDK-Version": "0.0.0",
301-
"User-Agent": "truefoundry-sdk/0.0.0",
300+
"X-Fern-SDK-Version": "0.0.8",
301+
"User-Agent": "truefoundry-sdk/0.0.8",
302302
"X-Fern-Runtime": core.RUNTIME.type,
303303
"X-Fern-Runtime-Version": core.RUNTIME.version,
304304
...requestOptions?.headers,

src/api/resources/v1/resources/agents/client/Client.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export class Agents {
5252
Authorization: await this._getAuthorizationHeader(),
5353
"X-Fern-Language": "JavaScript",
5454
"X-Fern-SDK-Name": "truefoundry-sdk",
55-
"X-Fern-SDK-Version": "0.0.0",
56-
"User-Agent": "truefoundry-sdk/0.0.0",
55+
"X-Fern-SDK-Version": "0.0.8",
56+
"User-Agent": "truefoundry-sdk/0.0.8",
5757
"X-Fern-Runtime": core.RUNTIME.type,
5858
"X-Fern-Runtime-Version": core.RUNTIME.version,
5959
...requestOptions?.headers,
@@ -116,8 +116,8 @@ export class Agents {
116116
Authorization: await this._getAuthorizationHeader(),
117117
"X-Fern-Language": "JavaScript",
118118
"X-Fern-SDK-Name": "truefoundry-sdk",
119-
"X-Fern-SDK-Version": "0.0.0",
120-
"User-Agent": "truefoundry-sdk/0.0.0",
119+
"X-Fern-SDK-Version": "0.0.8",
120+
"User-Agent": "truefoundry-sdk/0.0.8",
121121
"X-Fern-Runtime": core.RUNTIME.type,
122122
"X-Fern-Runtime-Version": core.RUNTIME.version,
123123
...requestOptions?.headers,
@@ -200,8 +200,8 @@ export class Agents {
200200
Authorization: await this._getAuthorizationHeader(),
201201
"X-Fern-Language": "JavaScript",
202202
"X-Fern-SDK-Name": "truefoundry-sdk",
203-
"X-Fern-SDK-Version": "0.0.0",
204-
"User-Agent": "truefoundry-sdk/0.0.0",
203+
"X-Fern-SDK-Version": "0.0.8",
204+
"User-Agent": "truefoundry-sdk/0.0.8",
205205
"X-Fern-Runtime": core.RUNTIME.type,
206206
"X-Fern-Runtime-Version": core.RUNTIME.version,
207207
...requestOptions?.headers,
@@ -289,8 +289,8 @@ export class Agents {
289289
Authorization: await this._getAuthorizationHeader(),
290290
"X-Fern-Language": "JavaScript",
291291
"X-Fern-SDK-Name": "truefoundry-sdk",
292-
"X-Fern-SDK-Version": "0.0.0",
293-
"User-Agent": "truefoundry-sdk/0.0.0",
292+
"X-Fern-SDK-Version": "0.0.8",
293+
"User-Agent": "truefoundry-sdk/0.0.8",
294294
"X-Fern-Runtime": core.RUNTIME.type,
295295
"X-Fern-Runtime-Version": core.RUNTIME.version,
296296
...requestOptions?.headers,

src/api/resources/v1/resources/artifactVersions/client/Client.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ export class ArtifactVersions {
5757
Authorization: await this._getAuthorizationHeader(),
5858
"X-Fern-Language": "JavaScript",
5959
"X-Fern-SDK-Name": "truefoundry-sdk",
60-
"X-Fern-SDK-Version": "0.0.0",
61-
"User-Agent": "truefoundry-sdk/0.0.0",
60+
"X-Fern-SDK-Version": "0.0.8",
61+
"User-Agent": "truefoundry-sdk/0.0.8",
6262
"X-Fern-Runtime": core.RUNTIME.type,
6363
"X-Fern-Runtime-Version": core.RUNTIME.version,
6464
...requestOptions?.headers,
@@ -128,8 +128,8 @@ export class ArtifactVersions {
128128
Authorization: await this._getAuthorizationHeader(),
129129
"X-Fern-Language": "JavaScript",
130130
"X-Fern-SDK-Name": "truefoundry-sdk",
131-
"X-Fern-SDK-Version": "0.0.0",
132-
"User-Agent": "truefoundry-sdk/0.0.0",
131+
"X-Fern-SDK-Version": "0.0.8",
132+
"User-Agent": "truefoundry-sdk/0.0.8",
133133
"X-Fern-Runtime": core.RUNTIME.type,
134134
"X-Fern-Runtime-Version": core.RUNTIME.version,
135135
...requestOptions?.headers,
@@ -241,8 +241,8 @@ export class ArtifactVersions {
241241
Authorization: await this._getAuthorizationHeader(),
242242
"X-Fern-Language": "JavaScript",
243243
"X-Fern-SDK-Name": "truefoundry-sdk",
244-
"X-Fern-SDK-Version": "0.0.0",
245-
"User-Agent": "truefoundry-sdk/0.0.0",
244+
"X-Fern-SDK-Version": "0.0.8",
245+
"User-Agent": "truefoundry-sdk/0.0.8",
246246
"X-Fern-Runtime": core.RUNTIME.type,
247247
"X-Fern-Runtime-Version": core.RUNTIME.version,
248248
...requestOptions?.headers,
@@ -324,8 +324,8 @@ export class ArtifactVersions {
324324
Authorization: await this._getAuthorizationHeader(),
325325
"X-Fern-Language": "JavaScript",
326326
"X-Fern-SDK-Name": "truefoundry-sdk",
327-
"X-Fern-SDK-Version": "0.0.0",
328-
"User-Agent": "truefoundry-sdk/0.0.0",
327+
"X-Fern-SDK-Version": "0.0.8",
328+
"User-Agent": "truefoundry-sdk/0.0.8",
329329
"X-Fern-Runtime": core.RUNTIME.type,
330330
"X-Fern-Runtime-Version": core.RUNTIME.version,
331331
...requestOptions?.headers,
@@ -398,8 +398,8 @@ export class ArtifactVersions {
398398
Authorization: await this._getAuthorizationHeader(),
399399
"X-Fern-Language": "JavaScript",
400400
"X-Fern-SDK-Name": "truefoundry-sdk",
401-
"X-Fern-SDK-Version": "0.0.0",
402-
"User-Agent": "truefoundry-sdk/0.0.0",
401+
"X-Fern-SDK-Version": "0.0.8",
402+
"User-Agent": "truefoundry-sdk/0.0.8",
403403
"X-Fern-Runtime": core.RUNTIME.type,
404404
"X-Fern-Runtime-Version": core.RUNTIME.version,
405405
...requestOptions?.headers,
@@ -480,8 +480,8 @@ export class ArtifactVersions {
480480
Authorization: await this._getAuthorizationHeader(),
481481
"X-Fern-Language": "JavaScript",
482482
"X-Fern-SDK-Name": "truefoundry-sdk",
483-
"X-Fern-SDK-Version": "0.0.0",
484-
"User-Agent": "truefoundry-sdk/0.0.0",
483+
"X-Fern-SDK-Version": "0.0.8",
484+
"User-Agent": "truefoundry-sdk/0.0.8",
485485
"X-Fern-Runtime": core.RUNTIME.type,
486486
"X-Fern-Runtime-Version": core.RUNTIME.version,
487487
...requestOptions?.headers,
@@ -553,8 +553,8 @@ export class ArtifactVersions {
553553
Authorization: await this._getAuthorizationHeader(),
554554
"X-Fern-Language": "JavaScript",
555555
"X-Fern-SDK-Name": "truefoundry-sdk",
556-
"X-Fern-SDK-Version": "0.0.0",
557-
"User-Agent": "truefoundry-sdk/0.0.0",
556+
"X-Fern-SDK-Version": "0.0.8",
557+
"User-Agent": "truefoundry-sdk/0.0.8",
558558
"X-Fern-Runtime": core.RUNTIME.type,
559559
"X-Fern-Runtime-Version": core.RUNTIME.version,
560560
...requestOptions?.headers,

src/api/resources/v1/resources/artifacts/client/Client.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export class Artifacts {
5252
Authorization: await this._getAuthorizationHeader(),
5353
"X-Fern-Language": "JavaScript",
5454
"X-Fern-SDK-Name": "truefoundry-sdk",
55-
"X-Fern-SDK-Version": "0.0.0",
56-
"User-Agent": "truefoundry-sdk/0.0.0",
55+
"X-Fern-SDK-Version": "0.0.8",
56+
"User-Agent": "truefoundry-sdk/0.0.8",
5757
"X-Fern-Runtime": core.RUNTIME.type,
5858
"X-Fern-Runtime-Version": core.RUNTIME.version,
5959
...requestOptions?.headers,
@@ -118,8 +118,8 @@ export class Artifacts {
118118
Authorization: await this._getAuthorizationHeader(),
119119
"X-Fern-Language": "JavaScript",
120120
"X-Fern-SDK-Name": "truefoundry-sdk",
121-
"X-Fern-SDK-Version": "0.0.0",
122-
"User-Agent": "truefoundry-sdk/0.0.0",
121+
"X-Fern-SDK-Version": "0.0.8",
122+
"User-Agent": "truefoundry-sdk/0.0.8",
123123
"X-Fern-Runtime": core.RUNTIME.type,
124124
"X-Fern-Runtime-Version": core.RUNTIME.version,
125125
...requestOptions?.headers,
@@ -207,8 +207,8 @@ export class Artifacts {
207207
Authorization: await this._getAuthorizationHeader(),
208208
"X-Fern-Language": "JavaScript",
209209
"X-Fern-SDK-Name": "truefoundry-sdk",
210-
"X-Fern-SDK-Version": "0.0.0",
211-
"User-Agent": "truefoundry-sdk/0.0.0",
210+
"X-Fern-SDK-Version": "0.0.8",
211+
"User-Agent": "truefoundry-sdk/0.0.8",
212212
"X-Fern-Runtime": core.RUNTIME.type,
213213
"X-Fern-Runtime-Version": core.RUNTIME.version,
214214
...requestOptions?.headers,
@@ -296,8 +296,8 @@ export class Artifacts {
296296
Authorization: await this._getAuthorizationHeader(),
297297
"X-Fern-Language": "JavaScript",
298298
"X-Fern-SDK-Name": "truefoundry-sdk",
299-
"X-Fern-SDK-Version": "0.0.0",
300-
"User-Agent": "truefoundry-sdk/0.0.0",
299+
"X-Fern-SDK-Version": "0.0.8",
300+
"User-Agent": "truefoundry-sdk/0.0.8",
301301
"X-Fern-Runtime": core.RUNTIME.type,
302302
"X-Fern-Runtime-Version": core.RUNTIME.version,
303303
...requestOptions?.headers,

src/api/resources/v1/resources/clusters/client/Client.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ export class Clusters {
6666
Authorization: await this._getAuthorizationHeader(),
6767
"X-Fern-Language": "JavaScript",
6868
"X-Fern-SDK-Name": "truefoundry-sdk",
69-
"X-Fern-SDK-Version": "0.0.0",
70-
"User-Agent": "truefoundry-sdk/0.0.0",
69+
"X-Fern-SDK-Version": "0.0.8",
70+
"User-Agent": "truefoundry-sdk/0.0.8",
7171
"X-Fern-Runtime": core.RUNTIME.type,
7272
"X-Fern-Runtime-Version": core.RUNTIME.version,
7373
...requestOptions?.headers,
@@ -158,8 +158,8 @@ export class Clusters {
158158
Authorization: await this._getAuthorizationHeader(),
159159
"X-Fern-Language": "JavaScript",
160160
"X-Fern-SDK-Name": "truefoundry-sdk",
161-
"X-Fern-SDK-Version": "0.0.0",
162-
"User-Agent": "truefoundry-sdk/0.0.0",
161+
"X-Fern-SDK-Version": "0.0.8",
162+
"User-Agent": "truefoundry-sdk/0.0.8",
163163
"X-Fern-Runtime": core.RUNTIME.type,
164164
"X-Fern-Runtime-Version": core.RUNTIME.version,
165165
...requestOptions?.headers,
@@ -230,8 +230,8 @@ export class Clusters {
230230
Authorization: await this._getAuthorizationHeader(),
231231
"X-Fern-Language": "JavaScript",
232232
"X-Fern-SDK-Name": "truefoundry-sdk",
233-
"X-Fern-SDK-Version": "0.0.0",
234-
"User-Agent": "truefoundry-sdk/0.0.0",
233+
"X-Fern-SDK-Version": "0.0.8",
234+
"User-Agent": "truefoundry-sdk/0.0.8",
235235
"X-Fern-Runtime": core.RUNTIME.type,
236236
"X-Fern-Runtime-Version": core.RUNTIME.version,
237237
...requestOptions?.headers,
@@ -304,8 +304,8 @@ export class Clusters {
304304
Authorization: await this._getAuthorizationHeader(),
305305
"X-Fern-Language": "JavaScript",
306306
"X-Fern-SDK-Name": "truefoundry-sdk",
307-
"X-Fern-SDK-Version": "0.0.0",
308-
"User-Agent": "truefoundry-sdk/0.0.0",
307+
"X-Fern-SDK-Version": "0.0.8",
308+
"User-Agent": "truefoundry-sdk/0.0.8",
309309
"X-Fern-Runtime": core.RUNTIME.type,
310310
"X-Fern-Runtime-Version": core.RUNTIME.version,
311311
...requestOptions?.headers,

src/api/resources/v1/resources/dataDirectories/client/Client.ts

+16-16
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ export class DataDirectories {
6464
Authorization: await this._getAuthorizationHeader(),
6565
"X-Fern-Language": "JavaScript",
6666
"X-Fern-SDK-Name": "truefoundry-sdk",
67-
"X-Fern-SDK-Version": "0.0.0",
68-
"User-Agent": "truefoundry-sdk/0.0.0",
67+
"X-Fern-SDK-Version": "0.0.8",
68+
"User-Agent": "truefoundry-sdk/0.0.8",
6969
"X-Fern-Runtime": core.RUNTIME.type,
7070
"X-Fern-Runtime-Version": core.RUNTIME.version,
7171
...requestOptions?.headers,
@@ -151,8 +151,8 @@ export class DataDirectories {
151151
Authorization: await this._getAuthorizationHeader(),
152152
"X-Fern-Language": "JavaScript",
153153
"X-Fern-SDK-Name": "truefoundry-sdk",
154-
"X-Fern-SDK-Version": "0.0.0",
155-
"User-Agent": "truefoundry-sdk/0.0.0",
154+
"X-Fern-SDK-Version": "0.0.8",
155+
"User-Agent": "truefoundry-sdk/0.0.8",
156156
"X-Fern-Runtime": core.RUNTIME.type,
157157
"X-Fern-Runtime-Version": core.RUNTIME.version,
158158
...requestOptions?.headers,
@@ -251,8 +251,8 @@ export class DataDirectories {
251251
Authorization: await this._getAuthorizationHeader(),
252252
"X-Fern-Language": "JavaScript",
253253
"X-Fern-SDK-Name": "truefoundry-sdk",
254-
"X-Fern-SDK-Version": "0.0.0",
255-
"User-Agent": "truefoundry-sdk/0.0.0",
254+
"X-Fern-SDK-Version": "0.0.8",
255+
"User-Agent": "truefoundry-sdk/0.0.8",
256256
"X-Fern-Runtime": core.RUNTIME.type,
257257
"X-Fern-Runtime-Version": core.RUNTIME.version,
258258
...requestOptions?.headers,
@@ -342,8 +342,8 @@ export class DataDirectories {
342342
Authorization: await this._getAuthorizationHeader(),
343343
"X-Fern-Language": "JavaScript",
344344
"X-Fern-SDK-Name": "truefoundry-sdk",
345-
"X-Fern-SDK-Version": "0.0.0",
346-
"User-Agent": "truefoundry-sdk/0.0.0",
345+
"X-Fern-SDK-Version": "0.0.8",
346+
"User-Agent": "truefoundry-sdk/0.0.8",
347347
"X-Fern-Runtime": core.RUNTIME.type,
348348
"X-Fern-Runtime-Version": core.RUNTIME.version,
349349
...requestOptions?.headers,
@@ -425,8 +425,8 @@ export class DataDirectories {
425425
Authorization: await this._getAuthorizationHeader(),
426426
"X-Fern-Language": "JavaScript",
427427
"X-Fern-SDK-Name": "truefoundry-sdk",
428-
"X-Fern-SDK-Version": "0.0.0",
429-
"User-Agent": "truefoundry-sdk/0.0.0",
428+
"X-Fern-SDK-Version": "0.0.8",
429+
"User-Agent": "truefoundry-sdk/0.0.8",
430430
"X-Fern-Runtime": core.RUNTIME.type,
431431
"X-Fern-Runtime-Version": core.RUNTIME.version,
432432
...requestOptions?.headers,
@@ -507,8 +507,8 @@ export class DataDirectories {
507507
Authorization: await this._getAuthorizationHeader(),
508508
"X-Fern-Language": "JavaScript",
509509
"X-Fern-SDK-Name": "truefoundry-sdk",
510-
"X-Fern-SDK-Version": "0.0.0",
511-
"User-Agent": "truefoundry-sdk/0.0.0",
510+
"X-Fern-SDK-Version": "0.0.8",
511+
"User-Agent": "truefoundry-sdk/0.0.8",
512512
"X-Fern-Runtime": core.RUNTIME.type,
513513
"X-Fern-Runtime-Version": core.RUNTIME.version,
514514
...requestOptions?.headers,
@@ -596,8 +596,8 @@ export class DataDirectories {
596596
Authorization: await this._getAuthorizationHeader(),
597597
"X-Fern-Language": "JavaScript",
598598
"X-Fern-SDK-Name": "truefoundry-sdk",
599-
"X-Fern-SDK-Version": "0.0.0",
600-
"User-Agent": "truefoundry-sdk/0.0.0",
599+
"X-Fern-SDK-Version": "0.0.8",
600+
"User-Agent": "truefoundry-sdk/0.0.8",
601601
"X-Fern-Runtime": core.RUNTIME.type,
602602
"X-Fern-Runtime-Version": core.RUNTIME.version,
603603
...requestOptions?.headers,
@@ -679,8 +679,8 @@ export class DataDirectories {
679679
Authorization: await this._getAuthorizationHeader(),
680680
"X-Fern-Language": "JavaScript",
681681
"X-Fern-SDK-Name": "truefoundry-sdk",
682-
"X-Fern-SDK-Version": "0.0.0",
683-
"User-Agent": "truefoundry-sdk/0.0.0",
682+
"X-Fern-SDK-Version": "0.0.8",
683+
"User-Agent": "truefoundry-sdk/0.0.8",
684684
"X-Fern-Runtime": core.RUNTIME.type,
685685
"X-Fern-Runtime-Version": core.RUNTIME.version,
686686
...requestOptions?.headers,

0 commit comments

Comments
 (0)