browser-use-sdk 2.0.8 → 2.0.9
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/dist/cjs/BaseClient.d.ts +2 -1
- package/dist/cjs/BaseClient.js +47 -0
- package/dist/cjs/Client.d.ts +22 -22
- package/dist/cjs/Client.js +10 -51
- package/dist/cjs/api/resources/billing/client/Client.d.ts +6 -6
- package/dist/cjs/api/resources/billing/client/Client.js +7 -6
- package/dist/cjs/api/resources/browsers/client/Client.d.ts +12 -12
- package/dist/cjs/api/resources/browsers/client/Client.js +10 -9
- package/dist/cjs/api/resources/files/client/Client.d.ts +10 -10
- package/dist/cjs/api/resources/files/client/Client.js +9 -8
- package/dist/cjs/api/resources/profiles/client/Client.d.ts +14 -14
- package/dist/cjs/api/resources/profiles/client/Client.js +11 -10
- package/dist/cjs/api/resources/sessions/client/Client.d.ts +20 -20
- package/dist/cjs/api/resources/sessions/client/Client.js +14 -13
- package/dist/cjs/api/resources/tasks/client/Client.d.ts +14 -14
- package/dist/cjs/api/resources/tasks/client/Client.js +11 -10
- package/dist/cjs/api/resources/workflows/client/Client.d.ts +36 -36
- package/dist/cjs/api/resources/workflows/client/Client.js +22 -21
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/wrapper/api/BrowserUseTasks.d.ts +7 -7
- package/dist/cjs/wrapper/api/BrowserUseTasks.js +1 -1
- package/dist/esm/BaseClient.d.mts +2 -1
- package/dist/esm/BaseClient.mjs +13 -1
- package/dist/esm/Client.d.mts +22 -22
- package/dist/esm/Client.mjs +17 -25
- package/dist/esm/api/resources/billing/client/Client.d.mts +6 -6
- package/dist/esm/api/resources/billing/client/Client.mjs +5 -4
- package/dist/esm/api/resources/browsers/client/Client.d.mts +12 -12
- package/dist/esm/api/resources/browsers/client/Client.mjs +8 -7
- package/dist/esm/api/resources/files/client/Client.d.mts +10 -10
- package/dist/esm/api/resources/files/client/Client.mjs +7 -6
- package/dist/esm/api/resources/profiles/client/Client.d.mts +14 -14
- package/dist/esm/api/resources/profiles/client/Client.mjs +9 -8
- package/dist/esm/api/resources/sessions/client/Client.d.mts +20 -20
- package/dist/esm/api/resources/sessions/client/Client.mjs +12 -11
- package/dist/esm/api/resources/tasks/client/Client.d.mts +14 -14
- package/dist/esm/api/resources/tasks/client/Client.mjs +9 -8
- package/dist/esm/api/resources/workflows/client/Client.d.mts +36 -36
- package/dist/esm/api/resources/workflows/client/Client.mjs +20 -19
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/dist/esm/wrapper/api/BrowserUseTasks.d.mts +7 -7
- package/dist/esm/wrapper/api/BrowserUseTasks.mjs +2 -2
- package/package.json +4 -4
- package/reference.md +42 -42
|
@@ -19,20 +19,21 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
19
19
|
}
|
|
20
20
|
return t;
|
|
21
21
|
};
|
|
22
|
+
import { normalizeClientOptions } from "../../../../BaseClient.mjs";
|
|
22
23
|
import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../core/headers.mjs";
|
|
23
24
|
import * as core from "../../../../core/index.mjs";
|
|
24
25
|
import * as environments from "../../../../environments.mjs";
|
|
25
26
|
import * as errors from "../../../../errors/index.mjs";
|
|
26
27
|
import * as BrowserUse from "../../../index.mjs";
|
|
27
|
-
export class
|
|
28
|
-
constructor(
|
|
29
|
-
this._options =
|
|
28
|
+
export class WorkflowsClient {
|
|
29
|
+
constructor(options) {
|
|
30
|
+
this._options = normalizeClientOptions(options);
|
|
30
31
|
}
|
|
31
32
|
/**
|
|
32
33
|
* Get paginated list of workflows with optional filtering.
|
|
33
34
|
*
|
|
34
35
|
* @param {BrowserUse.ListWorkflowsWorkflowsGetRequest} request
|
|
35
|
-
* @param {
|
|
36
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
36
37
|
*
|
|
37
38
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
38
39
|
*
|
|
@@ -107,7 +108,7 @@ export class Workflows {
|
|
|
107
108
|
* Create a new workflow. The workflow YAML should be uploaded separately via the update endpoint.
|
|
108
109
|
*
|
|
109
110
|
* @param {BrowserUse.WorkflowCreateRequest} request
|
|
110
|
-
* @param {
|
|
111
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
111
112
|
*
|
|
112
113
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
113
114
|
*
|
|
@@ -173,7 +174,7 @@ export class Workflows {
|
|
|
173
174
|
* Get detailed workflow information including presigned URL to download YAML.
|
|
174
175
|
*
|
|
175
176
|
* @param {BrowserUse.GetWorkflowWorkflowsWorkflowIdGetRequest} request
|
|
176
|
-
* @param {
|
|
177
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
177
178
|
*
|
|
178
179
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
179
180
|
*
|
|
@@ -237,7 +238,7 @@ export class Workflows {
|
|
|
237
238
|
* Archive a workflow (soft delete).
|
|
238
239
|
*
|
|
239
240
|
* @param {BrowserUse.DeleteWorkflowWorkflowsWorkflowIdDeleteRequest} request
|
|
240
|
-
* @param {
|
|
241
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
241
242
|
*
|
|
242
243
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
243
244
|
*
|
|
@@ -301,7 +302,7 @@ export class Workflows {
|
|
|
301
302
|
* Update workflow metadata.
|
|
302
303
|
*
|
|
303
304
|
* @param {BrowserUse.WorkflowUpdateRequest} request
|
|
304
|
-
* @param {
|
|
305
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
305
306
|
*
|
|
306
307
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
307
308
|
*
|
|
@@ -372,7 +373,7 @@ export class Workflows {
|
|
|
372
373
|
* during generation to show real-time browser activity in the frontend.
|
|
373
374
|
*
|
|
374
375
|
* @param {BrowserUse.GetWorkflowGenerationStateWorkflowsWorkflowIdGenerationStateGetRequest} request
|
|
375
|
-
* @param {
|
|
376
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
376
377
|
*
|
|
377
378
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
378
379
|
*
|
|
@@ -442,7 +443,7 @@ export class Workflows {
|
|
|
442
443
|
* and avoiding KMS permission issues in local development.
|
|
443
444
|
*
|
|
444
445
|
* @param {BrowserUse.WorkflowYamlPresignedUploadRequest} request
|
|
445
|
-
* @param {
|
|
446
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
446
447
|
*
|
|
447
448
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
448
449
|
*
|
|
@@ -516,7 +517,7 @@ export class Workflows {
|
|
|
516
517
|
* Use the GET /workflows/executions/{execution_id} endpoint to check status and retrieve results.
|
|
517
518
|
*
|
|
518
519
|
* @param {BrowserUse.WorkflowExecuteRequest} request
|
|
519
|
-
* @param {
|
|
520
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
520
521
|
*
|
|
521
522
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
522
523
|
*
|
|
@@ -594,7 +595,7 @@ export class Workflows {
|
|
|
594
595
|
* The generation happens asynchronously via the workflow_worker Lambda.
|
|
595
596
|
*
|
|
596
597
|
* @param {BrowserUse.WorkflowGenerateRequest} request
|
|
597
|
-
* @param {
|
|
598
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
598
599
|
*
|
|
599
600
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
600
601
|
*
|
|
@@ -662,7 +663,7 @@ export class Workflows {
|
|
|
662
663
|
* Get detailed execution information including status, results, and costs.
|
|
663
664
|
*
|
|
664
665
|
* @param {BrowserUse.GetExecutionWorkflowsExecutionsExecutionIdGetRequest} request
|
|
665
|
-
* @param {
|
|
666
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
666
667
|
*
|
|
667
668
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
668
669
|
*
|
|
@@ -726,7 +727,7 @@ export class Workflows {
|
|
|
726
727
|
* Get paginated list of executions for a specific workflow.
|
|
727
728
|
*
|
|
728
729
|
* @param {BrowserUse.ListWorkflowExecutionsWorkflowsWorkflowIdExecutionsGetRequest} request
|
|
729
|
-
* @param {
|
|
730
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
730
731
|
*
|
|
731
732
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
732
733
|
*
|
|
@@ -806,7 +807,7 @@ export class Workflows {
|
|
|
806
807
|
* Get paginated list of all workflow executions for a project.
|
|
807
808
|
*
|
|
808
809
|
* @param {BrowserUse.ListAllExecutionsWorkflowsExecutionsGetRequest} request
|
|
809
|
-
* @param {
|
|
810
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
810
811
|
*
|
|
811
812
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
812
813
|
*
|
|
@@ -884,7 +885,7 @@ export class Workflows {
|
|
|
884
885
|
* Cancel a pending or running workflow execution.
|
|
885
886
|
*
|
|
886
887
|
* @param {BrowserUse.CancelExecutionWorkflowsExecutionsExecutionIdCancelPatchRequest} request
|
|
887
|
-
* @param {
|
|
888
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
888
889
|
*
|
|
889
890
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
890
891
|
*
|
|
@@ -948,7 +949,7 @@ export class Workflows {
|
|
|
948
949
|
* Get presigned URL to download execution logs.
|
|
949
950
|
*
|
|
950
951
|
* @param {BrowserUse.GetExecutionLogsWorkflowsExecutionsExecutionIdLogsGetRequest} request
|
|
951
|
-
* @param {
|
|
952
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
952
953
|
*
|
|
953
954
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
954
955
|
*
|
|
@@ -1019,7 +1020,7 @@ export class Workflows {
|
|
|
1019
1020
|
* to show real-time progress in the frontend.
|
|
1020
1021
|
*
|
|
1021
1022
|
* @param {BrowserUse.GetExecutionStateWorkflowsExecutionsExecutionIdStateGetRequest} request
|
|
1022
|
-
* @param {
|
|
1023
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1023
1024
|
*
|
|
1024
1025
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
1025
1026
|
*
|
|
@@ -1090,7 +1091,7 @@ export class Workflows {
|
|
|
1090
1091
|
* Should be called when execution status is 'completed', 'failed', or 'cancelled'.
|
|
1091
1092
|
*
|
|
1092
1093
|
* @param {BrowserUse.GetExecutionMediaWorkflowsExecutionsExecutionIdMediaGetRequest} request
|
|
1093
|
-
* @param {
|
|
1094
|
+
* @param {WorkflowsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
1094
1095
|
*
|
|
1095
1096
|
* @throws {@link BrowserUse.UnprocessableEntityError}
|
|
1096
1097
|
*
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.0.
|
|
1
|
+
export declare const SDK_VERSION = "2.0.9";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "2.0.
|
|
1
|
+
export const SDK_VERSION = "2.0.9";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import type { ZodType } from "zod";
|
|
2
2
|
import * as BrowserUse from "../../api/index.mjs";
|
|
3
3
|
import * as core from "../../core/index.mjs";
|
|
4
|
-
import {
|
|
4
|
+
import { TasksClient } from "../../api/resources/tasks/client/Client.mjs";
|
|
5
5
|
import { type CreateTaskRequestWithSchema, type WrappedTaskFnsWithSchema, type WrappedTaskFnsWithoutSchema, type TaskViewWithSchema } from "../lib/parse.mjs";
|
|
6
|
-
export declare class BrowserUseTasks extends
|
|
7
|
-
constructor(options:
|
|
8
|
-
createTask<T extends ZodType>(request: CreateTaskRequestWithSchema<T>, requestOptions?:
|
|
9
|
-
createTask(request: BrowserUse.CreateTaskRequest, requestOptions?:
|
|
6
|
+
export declare class BrowserUseTasks extends TasksClient {
|
|
7
|
+
constructor(options: TasksClient.Options);
|
|
8
|
+
createTask<T extends ZodType>(request: CreateTaskRequestWithSchema<T>, requestOptions?: TasksClient.RequestOptions): core.HttpResponsePromise<WrappedTaskFnsWithSchema<T>>;
|
|
9
|
+
createTask(request: BrowserUse.CreateTaskRequest, requestOptions?: TasksClient.RequestOptions): core.HttpResponsePromise<WrappedTaskFnsWithoutSchema>;
|
|
10
10
|
getTask<T extends ZodType>(request: {
|
|
11
11
|
task_id: string;
|
|
12
12
|
schema: T;
|
|
13
|
-
}, requestOptions?:
|
|
14
|
-
getTask(request: BrowserUse.GetTaskTasksTaskIdGetRequest, requestOptions?:
|
|
13
|
+
}, requestOptions?: TasksClient.RequestOptions): core.HttpResponsePromise<TaskViewWithSchema<T>>;
|
|
14
|
+
getTask(request: BrowserUse.GetTaskTasksTaskIdGetRequest, requestOptions?: TasksClient.RequestOptions): core.HttpResponsePromise<BrowserUse.TaskView>;
|
|
15
15
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as BrowserUse from "../../api/index.mjs";
|
|
2
2
|
import * as core from "../../core/index.mjs";
|
|
3
|
-
import {
|
|
3
|
+
import { TasksClient } from "../../api/resources/tasks/client/Client.mjs";
|
|
4
4
|
import { stringifyStructuredOutput, wrapCreateTaskResponse, parseStructuredTaskOutput, } from "../lib/parse.mjs";
|
|
5
|
-
export class BrowserUseTasks extends
|
|
5
|
+
export class BrowserUseTasks extends TasksClient {
|
|
6
6
|
constructor(options) {
|
|
7
7
|
super(options);
|
|
8
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browser-use-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": "github:browser-use/browser-use-node",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"LICENSE"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"fast-json-stable-stringify": "^2.1.0"
|
|
32
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
33
|
+
"zod": "^4"
|
|
33
34
|
},
|
|
34
35
|
"peerDependencies": {
|
|
35
36
|
"react": "^18 || ^19",
|
|
@@ -47,8 +48,7 @@
|
|
|
47
48
|
"react": "^19.1.1",
|
|
48
49
|
"react-dom": "^19.1.1",
|
|
49
50
|
"tsconfig-paths": "^4.2.0",
|
|
50
|
-
"ts-node": "^10.5.0"
|
|
51
|
-
"zod": "^4"
|
|
51
|
+
"ts-node": "^10.5.0"
|
|
52
52
|
},
|
|
53
53
|
"browser": {
|
|
54
54
|
"fs": false,
|
package/reference.md
CHANGED
|
@@ -43,7 +43,7 @@ await client.billing.getAccountBilling();
|
|
|
43
43
|
<dl>
|
|
44
44
|
<dd>
|
|
45
45
|
|
|
46
|
-
**requestOptions:** `
|
|
46
|
+
**requestOptions:** `BillingClient.RequestOptions`
|
|
47
47
|
|
|
48
48
|
</dd>
|
|
49
49
|
</dl>
|
|
@@ -107,7 +107,7 @@ await client.tasks.listTasks();
|
|
|
107
107
|
<dl>
|
|
108
108
|
<dd>
|
|
109
109
|
|
|
110
|
-
**requestOptions:** `
|
|
110
|
+
**requestOptions:** `TasksClient.RequestOptions`
|
|
111
111
|
|
|
112
112
|
</dd>
|
|
113
113
|
</dl>
|
|
@@ -174,7 +174,7 @@ await client.tasks.createTask({
|
|
|
174
174
|
<dl>
|
|
175
175
|
<dd>
|
|
176
176
|
|
|
177
|
-
**requestOptions:** `
|
|
177
|
+
**requestOptions:** `TasksClient.RequestOptions`
|
|
178
178
|
|
|
179
179
|
</dd>
|
|
180
180
|
</dl>
|
|
@@ -239,7 +239,7 @@ await client.tasks.getTask({
|
|
|
239
239
|
<dl>
|
|
240
240
|
<dd>
|
|
241
241
|
|
|
242
|
-
**requestOptions:** `
|
|
242
|
+
**requestOptions:** `TasksClient.RequestOptions`
|
|
243
243
|
|
|
244
244
|
</dd>
|
|
245
245
|
</dl>
|
|
@@ -305,7 +305,7 @@ await client.tasks.updateTask({
|
|
|
305
305
|
<dl>
|
|
306
306
|
<dd>
|
|
307
307
|
|
|
308
|
-
**requestOptions:** `
|
|
308
|
+
**requestOptions:** `TasksClient.RequestOptions`
|
|
309
309
|
|
|
310
310
|
</dd>
|
|
311
311
|
</dl>
|
|
@@ -370,7 +370,7 @@ await client.tasks.getTaskLogs({
|
|
|
370
370
|
<dl>
|
|
371
371
|
<dd>
|
|
372
372
|
|
|
373
|
-
**requestOptions:** `
|
|
373
|
+
**requestOptions:** `TasksClient.RequestOptions`
|
|
374
374
|
|
|
375
375
|
</dd>
|
|
376
376
|
</dl>
|
|
@@ -434,7 +434,7 @@ await client.sessions.listSessions();
|
|
|
434
434
|
<dl>
|
|
435
435
|
<dd>
|
|
436
436
|
|
|
437
|
-
**requestOptions:** `
|
|
437
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
438
438
|
|
|
439
439
|
</dd>
|
|
440
440
|
</dl>
|
|
@@ -497,7 +497,7 @@ await client.sessions.createSession();
|
|
|
497
497
|
<dl>
|
|
498
498
|
<dd>
|
|
499
499
|
|
|
500
|
-
**requestOptions:** `
|
|
500
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
501
501
|
|
|
502
502
|
</dd>
|
|
503
503
|
</dl>
|
|
@@ -562,7 +562,7 @@ await client.sessions.getSession({
|
|
|
562
562
|
<dl>
|
|
563
563
|
<dd>
|
|
564
564
|
|
|
565
|
-
**requestOptions:** `
|
|
565
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
566
566
|
|
|
567
567
|
</dd>
|
|
568
568
|
</dl>
|
|
@@ -627,7 +627,7 @@ await client.sessions.deleteSession({
|
|
|
627
627
|
<dl>
|
|
628
628
|
<dd>
|
|
629
629
|
|
|
630
|
-
**requestOptions:** `
|
|
630
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
631
631
|
|
|
632
632
|
</dd>
|
|
633
633
|
</dl>
|
|
@@ -692,7 +692,7 @@ await client.sessions.updateSession({
|
|
|
692
692
|
<dl>
|
|
693
693
|
<dd>
|
|
694
694
|
|
|
695
|
-
**requestOptions:** `
|
|
695
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
696
696
|
|
|
697
697
|
</dd>
|
|
698
698
|
</dl>
|
|
@@ -757,7 +757,7 @@ await client.sessions.getSessionPublicShare({
|
|
|
757
757
|
<dl>
|
|
758
758
|
<dd>
|
|
759
759
|
|
|
760
|
-
**requestOptions:** `
|
|
760
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
761
761
|
|
|
762
762
|
</dd>
|
|
763
763
|
</dl>
|
|
@@ -822,7 +822,7 @@ await client.sessions.createSessionPublicShare({
|
|
|
822
822
|
<dl>
|
|
823
823
|
<dd>
|
|
824
824
|
|
|
825
|
-
**requestOptions:** `
|
|
825
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
826
826
|
|
|
827
827
|
</dd>
|
|
828
828
|
</dl>
|
|
@@ -887,7 +887,7 @@ await client.sessions.deleteSessionPublicShare({
|
|
|
887
887
|
<dl>
|
|
888
888
|
<dd>
|
|
889
889
|
|
|
890
|
-
**requestOptions:** `
|
|
890
|
+
**requestOptions:** `SessionsClient.RequestOptions`
|
|
891
891
|
|
|
892
892
|
</dd>
|
|
893
893
|
</dl>
|
|
@@ -958,7 +958,7 @@ await client.files.agentSessionUploadFilePresignedUrl({
|
|
|
958
958
|
<dl>
|
|
959
959
|
<dd>
|
|
960
960
|
|
|
961
|
-
**requestOptions:** `
|
|
961
|
+
**requestOptions:** `FilesClient.RequestOptions`
|
|
962
962
|
|
|
963
963
|
</dd>
|
|
964
964
|
</dl>
|
|
@@ -1028,7 +1028,7 @@ await client.files.browserSessionUploadFilePresignedUrl({
|
|
|
1028
1028
|
<dl>
|
|
1029
1029
|
<dd>
|
|
1030
1030
|
|
|
1031
|
-
**requestOptions:** `
|
|
1031
|
+
**requestOptions:** `FilesClient.RequestOptions`
|
|
1032
1032
|
|
|
1033
1033
|
</dd>
|
|
1034
1034
|
</dl>
|
|
@@ -1094,7 +1094,7 @@ await client.files.getTaskOutputFilePresignedUrl({
|
|
|
1094
1094
|
<dl>
|
|
1095
1095
|
<dd>
|
|
1096
1096
|
|
|
1097
|
-
**requestOptions:** `
|
|
1097
|
+
**requestOptions:** `FilesClient.RequestOptions`
|
|
1098
1098
|
|
|
1099
1099
|
</dd>
|
|
1100
1100
|
</dl>
|
|
@@ -1158,7 +1158,7 @@ await client.profiles.listProfiles();
|
|
|
1158
1158
|
<dl>
|
|
1159
1159
|
<dd>
|
|
1160
1160
|
|
|
1161
|
-
**requestOptions:** `
|
|
1161
|
+
**requestOptions:** `ProfilesClient.RequestOptions`
|
|
1162
1162
|
|
|
1163
1163
|
</dd>
|
|
1164
1164
|
</dl>
|
|
@@ -1226,7 +1226,7 @@ await client.profiles.createProfile();
|
|
|
1226
1226
|
<dl>
|
|
1227
1227
|
<dd>
|
|
1228
1228
|
|
|
1229
|
-
**requestOptions:** `
|
|
1229
|
+
**requestOptions:** `ProfilesClient.RequestOptions`
|
|
1230
1230
|
|
|
1231
1231
|
</dd>
|
|
1232
1232
|
</dl>
|
|
@@ -1291,7 +1291,7 @@ await client.profiles.getProfile({
|
|
|
1291
1291
|
<dl>
|
|
1292
1292
|
<dd>
|
|
1293
1293
|
|
|
1294
|
-
**requestOptions:** `
|
|
1294
|
+
**requestOptions:** `ProfilesClient.RequestOptions`
|
|
1295
1295
|
|
|
1296
1296
|
</dd>
|
|
1297
1297
|
</dl>
|
|
@@ -1356,7 +1356,7 @@ await client.profiles.deleteBrowserProfile({
|
|
|
1356
1356
|
<dl>
|
|
1357
1357
|
<dd>
|
|
1358
1358
|
|
|
1359
|
-
**requestOptions:** `
|
|
1359
|
+
**requestOptions:** `ProfilesClient.RequestOptions`
|
|
1360
1360
|
|
|
1361
1361
|
</dd>
|
|
1362
1362
|
</dl>
|
|
@@ -1421,7 +1421,7 @@ await client.profiles.updateProfile({
|
|
|
1421
1421
|
<dl>
|
|
1422
1422
|
<dd>
|
|
1423
1423
|
|
|
1424
|
-
**requestOptions:** `
|
|
1424
|
+
**requestOptions:** `ProfilesClient.RequestOptions`
|
|
1425
1425
|
|
|
1426
1426
|
</dd>
|
|
1427
1427
|
</dl>
|
|
@@ -1485,7 +1485,7 @@ await client.browsers.listBrowserSessions();
|
|
|
1485
1485
|
<dl>
|
|
1486
1486
|
<dd>
|
|
1487
1487
|
|
|
1488
|
-
**requestOptions:** `
|
|
1488
|
+
**requestOptions:** `BrowsersClient.RequestOptions`
|
|
1489
1489
|
|
|
1490
1490
|
</dd>
|
|
1491
1491
|
</dl>
|
|
@@ -1559,7 +1559,7 @@ await client.browsers.createBrowserSession();
|
|
|
1559
1559
|
<dl>
|
|
1560
1560
|
<dd>
|
|
1561
1561
|
|
|
1562
|
-
**requestOptions:** `
|
|
1562
|
+
**requestOptions:** `BrowsersClient.RequestOptions`
|
|
1563
1563
|
|
|
1564
1564
|
</dd>
|
|
1565
1565
|
</dl>
|
|
@@ -1624,7 +1624,7 @@ await client.browsers.getBrowserSession({
|
|
|
1624
1624
|
<dl>
|
|
1625
1625
|
<dd>
|
|
1626
1626
|
|
|
1627
|
-
**requestOptions:** `
|
|
1627
|
+
**requestOptions:** `BrowsersClient.RequestOptions`
|
|
1628
1628
|
|
|
1629
1629
|
</dd>
|
|
1630
1630
|
</dl>
|
|
@@ -1693,7 +1693,7 @@ await client.browsers.updateBrowserSession({
|
|
|
1693
1693
|
<dl>
|
|
1694
1694
|
<dd>
|
|
1695
1695
|
|
|
1696
|
-
**requestOptions:** `
|
|
1696
|
+
**requestOptions:** `BrowsersClient.RequestOptions`
|
|
1697
1697
|
|
|
1698
1698
|
</dd>
|
|
1699
1699
|
</dl>
|
|
@@ -1757,7 +1757,7 @@ await client.workflows.listWorkflows();
|
|
|
1757
1757
|
<dl>
|
|
1758
1758
|
<dd>
|
|
1759
1759
|
|
|
1760
|
-
**requestOptions:** `
|
|
1760
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
1761
1761
|
|
|
1762
1762
|
</dd>
|
|
1763
1763
|
</dl>
|
|
@@ -1822,7 +1822,7 @@ await client.workflows.createWorkflow({
|
|
|
1822
1822
|
<dl>
|
|
1823
1823
|
<dd>
|
|
1824
1824
|
|
|
1825
|
-
**requestOptions:** `
|
|
1825
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
1826
1826
|
|
|
1827
1827
|
</dd>
|
|
1828
1828
|
</dl>
|
|
@@ -1887,7 +1887,7 @@ await client.workflows.getWorkflow({
|
|
|
1887
1887
|
<dl>
|
|
1888
1888
|
<dd>
|
|
1889
1889
|
|
|
1890
|
-
**requestOptions:** `
|
|
1890
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
1891
1891
|
|
|
1892
1892
|
</dd>
|
|
1893
1893
|
</dl>
|
|
@@ -1952,7 +1952,7 @@ await client.workflows.deleteWorkflow({
|
|
|
1952
1952
|
<dl>
|
|
1953
1953
|
<dd>
|
|
1954
1954
|
|
|
1955
|
-
**requestOptions:** `
|
|
1955
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
1956
1956
|
|
|
1957
1957
|
</dd>
|
|
1958
1958
|
</dl>
|
|
@@ -2017,7 +2017,7 @@ await client.workflows.updateWorkflow({
|
|
|
2017
2017
|
<dl>
|
|
2018
2018
|
<dd>
|
|
2019
2019
|
|
|
2020
|
-
**requestOptions:** `
|
|
2020
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2021
2021
|
|
|
2022
2022
|
</dd>
|
|
2023
2023
|
</dl>
|
|
@@ -2086,7 +2086,7 @@ await client.workflows.getWorkflowGenerationState({
|
|
|
2086
2086
|
<dl>
|
|
2087
2087
|
<dd>
|
|
2088
2088
|
|
|
2089
|
-
**requestOptions:** `
|
|
2089
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2090
2090
|
|
|
2091
2091
|
</dd>
|
|
2092
2092
|
</dl>
|
|
@@ -2155,7 +2155,7 @@ await client.workflows.getWorkflowYamlPresignedUrl({
|
|
|
2155
2155
|
<dl>
|
|
2156
2156
|
<dd>
|
|
2157
2157
|
|
|
2158
|
-
**requestOptions:** `
|
|
2158
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2159
2159
|
|
|
2160
2160
|
</dd>
|
|
2161
2161
|
</dl>
|
|
@@ -2223,7 +2223,7 @@ await client.workflows.runWorkflow({
|
|
|
2223
2223
|
<dl>
|
|
2224
2224
|
<dd>
|
|
2225
2225
|
|
|
2226
|
-
**requestOptions:** `
|
|
2226
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2227
2227
|
|
|
2228
2228
|
</dd>
|
|
2229
2229
|
</dl>
|
|
@@ -2297,7 +2297,7 @@ await client.workflows.generateWorkflow({
|
|
|
2297
2297
|
<dl>
|
|
2298
2298
|
<dd>
|
|
2299
2299
|
|
|
2300
|
-
**requestOptions:** `
|
|
2300
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2301
2301
|
|
|
2302
2302
|
</dd>
|
|
2303
2303
|
</dl>
|
|
@@ -2362,7 +2362,7 @@ await client.workflows.getExecution({
|
|
|
2362
2362
|
<dl>
|
|
2363
2363
|
<dd>
|
|
2364
2364
|
|
|
2365
|
-
**requestOptions:** `
|
|
2365
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2366
2366
|
|
|
2367
2367
|
</dd>
|
|
2368
2368
|
</dl>
|
|
@@ -2427,7 +2427,7 @@ await client.workflows.listWorkflowExecutions({
|
|
|
2427
2427
|
<dl>
|
|
2428
2428
|
<dd>
|
|
2429
2429
|
|
|
2430
|
-
**requestOptions:** `
|
|
2430
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2431
2431
|
|
|
2432
2432
|
</dd>
|
|
2433
2433
|
</dl>
|
|
@@ -2490,7 +2490,7 @@ await client.workflows.listAllExecutions();
|
|
|
2490
2490
|
<dl>
|
|
2491
2491
|
<dd>
|
|
2492
2492
|
|
|
2493
|
-
**requestOptions:** `
|
|
2493
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2494
2494
|
|
|
2495
2495
|
</dd>
|
|
2496
2496
|
</dl>
|
|
@@ -2555,7 +2555,7 @@ await client.workflows.cancelExecution({
|
|
|
2555
2555
|
<dl>
|
|
2556
2556
|
<dd>
|
|
2557
2557
|
|
|
2558
|
-
**requestOptions:** `
|
|
2558
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2559
2559
|
|
|
2560
2560
|
</dd>
|
|
2561
2561
|
</dl>
|
|
@@ -2620,7 +2620,7 @@ await client.workflows.getExecutionLogs({
|
|
|
2620
2620
|
<dl>
|
|
2621
2621
|
<dd>
|
|
2622
2622
|
|
|
2623
|
-
**requestOptions:** `
|
|
2623
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2624
2624
|
|
|
2625
2625
|
</dd>
|
|
2626
2626
|
</dl>
|
|
@@ -2689,7 +2689,7 @@ await client.workflows.getExecutionState({
|
|
|
2689
2689
|
<dl>
|
|
2690
2690
|
<dd>
|
|
2691
2691
|
|
|
2692
|
-
**requestOptions:** `
|
|
2692
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2693
2693
|
|
|
2694
2694
|
</dd>
|
|
2695
2695
|
</dl>
|
|
@@ -2758,7 +2758,7 @@ await client.workflows.getExecutionMedia({
|
|
|
2758
2758
|
<dl>
|
|
2759
2759
|
<dd>
|
|
2760
2760
|
|
|
2761
|
-
**requestOptions:** `
|
|
2761
|
+
**requestOptions:** `WorkflowsClient.RequestOptions`
|
|
2762
2762
|
|
|
2763
2763
|
</dd>
|
|
2764
2764
|
</dl>
|