browser-use-sdk 2.0.9 → 2.0.10

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.
Files changed (166) hide show
  1. package/dist/cjs/BaseClient.d.ts +1 -2
  2. package/dist/cjs/BaseClient.js +0 -47
  3. package/dist/cjs/Client.d.ts +25 -22
  4. package/dist/cjs/Client.js +58 -12
  5. package/dist/cjs/api/errors/PaymentRequiredError.d.ts +1 -2
  6. package/dist/cjs/api/resources/billing/client/Client.d.ts +6 -6
  7. package/dist/cjs/api/resources/billing/client/Client.js +6 -7
  8. package/dist/cjs/api/resources/browsers/client/Client.d.ts +12 -12
  9. package/dist/cjs/api/resources/browsers/client/Client.js +9 -10
  10. package/dist/cjs/api/resources/browsers/client/requests/CreateBrowserSessionRequest.d.ts +2 -0
  11. package/dist/cjs/api/resources/files/client/Client.d.ts +10 -10
  12. package/dist/cjs/api/resources/files/client/Client.js +8 -9
  13. package/dist/cjs/api/resources/index.d.ts +2 -0
  14. package/dist/cjs/api/resources/index.js +3 -1
  15. package/dist/cjs/api/resources/profiles/client/Client.d.ts +14 -14
  16. package/dist/cjs/api/resources/profiles/client/Client.js +10 -11
  17. package/dist/cjs/api/resources/sessions/client/Client.d.ts +20 -20
  18. package/dist/cjs/api/resources/sessions/client/Client.js +13 -14
  19. package/dist/cjs/api/resources/skills/client/Client.d.ts +146 -0
  20. package/dist/cjs/api/resources/skills/client/Client.js +643 -0
  21. package/dist/cjs/api/resources/skills/client/index.d.ts +1 -0
  22. package/dist/cjs/api/resources/skills/client/index.js +17 -0
  23. package/dist/cjs/api/resources/skills/client/requests/CancelGenerationSkillsSkillIdCancelGenerationPostRequest.d.ts +9 -0
  24. package/dist/cjs/api/resources/skills/client/requests/CancelGenerationSkillsSkillIdCancelGenerationPostRequest.js +3 -0
  25. package/dist/cjs/api/resources/skills/client/requests/CreateSkillRequest.d.ts +15 -0
  26. package/dist/cjs/api/resources/skills/client/requests/CreateSkillRequest.js +3 -0
  27. package/dist/cjs/api/resources/skills/client/requests/DeleteSkillSkillsSkillIdDeleteRequest.d.ts +9 -0
  28. package/dist/cjs/api/resources/skills/client/requests/DeleteSkillSkillsSkillIdDeleteRequest.js +3 -0
  29. package/dist/cjs/api/resources/skills/client/requests/ExecuteSkillRequest.d.ts +11 -0
  30. package/dist/cjs/api/resources/skills/client/requests/ExecuteSkillRequest.js +3 -0
  31. package/dist/cjs/api/resources/skills/client/requests/GetSkillSkillsSkillIdGetRequest.d.ts +9 -0
  32. package/dist/cjs/api/resources/skills/client/requests/GetSkillSkillsSkillIdGetRequest.js +3 -0
  33. package/dist/cjs/api/resources/skills/client/requests/ListSkillsSkillsGetRequest.d.ts +9 -0
  34. package/dist/cjs/api/resources/skills/client/requests/ListSkillsSkillsGetRequest.js +3 -0
  35. package/dist/cjs/api/resources/skills/client/requests/RefineSkillRequest.d.ts +16 -0
  36. package/dist/cjs/api/resources/skills/client/requests/RefineSkillRequest.js +3 -0
  37. package/dist/cjs/api/resources/skills/client/requests/UpdateSkillRequest.d.ts +17 -0
  38. package/dist/cjs/api/resources/skills/client/requests/UpdateSkillRequest.js +3 -0
  39. package/dist/cjs/api/resources/skills/client/requests/index.d.ts +8 -0
  40. package/dist/cjs/api/resources/skills/client/requests/index.js +2 -0
  41. package/dist/cjs/api/resources/skills/index.d.ts +1 -0
  42. package/dist/cjs/api/resources/skills/index.js +17 -0
  43. package/dist/cjs/api/resources/tasks/client/Client.d.ts +14 -14
  44. package/dist/cjs/api/resources/tasks/client/Client.js +10 -11
  45. package/dist/cjs/api/resources/workflows/client/Client.d.ts +36 -36
  46. package/dist/cjs/api/resources/workflows/client/Client.js +21 -22
  47. package/dist/cjs/api/types/AppApiV2SkillsViewsInsufficientCreditsError.d.ts +6 -0
  48. package/dist/cjs/api/types/AppApiV2SkillsViewsInsufficientCreditsError.js +3 -0
  49. package/dist/cjs/api/types/AppViewsV2ErrorViewsInsufficientCreditsError.d.ts +6 -0
  50. package/dist/cjs/api/types/AppViewsV2ErrorViewsInsufficientCreditsError.js +3 -0
  51. package/dist/cjs/api/types/CannotDeleteSkillWhileGeneratingError.d.ts +6 -0
  52. package/dist/cjs/api/types/CannotDeleteSkillWhileGeneratingError.js +3 -0
  53. package/dist/cjs/api/types/ConcurrentSkillCreationsError.d.ts +6 -0
  54. package/dist/cjs/api/types/ConcurrentSkillCreationsError.js +3 -0
  55. package/dist/cjs/api/types/CreateSkillResponse.d.ts +7 -0
  56. package/dist/cjs/api/types/CreateSkillResponse.js +3 -0
  57. package/dist/cjs/api/types/ExecuteSkillResponse.d.ts +15 -0
  58. package/dist/cjs/api/types/ExecuteSkillResponse.js +3 -0
  59. package/dist/cjs/api/types/GenerationNotCancellableError.d.ts +6 -0
  60. package/dist/cjs/api/types/GenerationNotCancellableError.js +3 -0
  61. package/dist/cjs/api/types/ParameterSchema.d.ts +11 -0
  62. package/dist/cjs/api/types/ParameterSchema.js +3 -0
  63. package/dist/cjs/api/types/ParameterType.d.ts +9 -0
  64. package/dist/cjs/api/types/ParameterType.js +12 -0
  65. package/dist/cjs/api/types/RefineSkillResponse.d.ts +7 -0
  66. package/dist/cjs/api/types/RefineSkillResponse.js +3 -0
  67. package/dist/cjs/api/types/SkillListResponse.d.ts +14 -0
  68. package/dist/cjs/api/types/SkillListResponse.js +3 -0
  69. package/dist/cjs/api/types/SkillNotFinishedError.d.ts +6 -0
  70. package/dist/cjs/api/types/SkillNotFinishedError.js +3 -0
  71. package/dist/cjs/api/types/SkillNotFoundError.d.ts +6 -0
  72. package/dist/cjs/api/types/SkillNotFoundError.js +3 -0
  73. package/dist/cjs/api/types/SkillResponse.d.ts +34 -0
  74. package/dist/cjs/api/types/SkillResponse.js +3 -0
  75. package/dist/cjs/api/types/SkillsGenerationStatus.d.ts +9 -0
  76. package/dist/cjs/api/types/SkillsGenerationStatus.js +12 -0
  77. package/dist/cjs/api/types/index.d.ts +15 -1
  78. package/dist/cjs/api/types/index.js +15 -1
  79. package/dist/cjs/version.d.ts +1 -1
  80. package/dist/cjs/version.js +1 -1
  81. package/dist/cjs/wrapper/api/BrowserUseTasks.d.ts +7 -7
  82. package/dist/cjs/wrapper/api/BrowserUseTasks.js +1 -1
  83. package/dist/esm/BaseClient.d.mts +1 -2
  84. package/dist/esm/BaseClient.mjs +1 -13
  85. package/dist/esm/Client.d.mts +25 -22
  86. package/dist/esm/Client.mjs +30 -17
  87. package/dist/esm/api/errors/PaymentRequiredError.d.mts +1 -2
  88. package/dist/esm/api/resources/billing/client/Client.d.mts +6 -6
  89. package/dist/esm/api/resources/billing/client/Client.mjs +4 -5
  90. package/dist/esm/api/resources/browsers/client/Client.d.mts +12 -12
  91. package/dist/esm/api/resources/browsers/client/Client.mjs +7 -8
  92. package/dist/esm/api/resources/browsers/client/requests/CreateBrowserSessionRequest.d.mts +2 -0
  93. package/dist/esm/api/resources/files/client/Client.d.mts +10 -10
  94. package/dist/esm/api/resources/files/client/Client.mjs +6 -7
  95. package/dist/esm/api/resources/index.d.mts +2 -0
  96. package/dist/esm/api/resources/index.mjs +2 -0
  97. package/dist/esm/api/resources/profiles/client/Client.d.mts +14 -14
  98. package/dist/esm/api/resources/profiles/client/Client.mjs +8 -9
  99. package/dist/esm/api/resources/sessions/client/Client.d.mts +20 -20
  100. package/dist/esm/api/resources/sessions/client/Client.mjs +11 -12
  101. package/dist/esm/api/resources/skills/client/Client.d.mts +146 -0
  102. package/dist/esm/api/resources/skills/client/Client.mjs +606 -0
  103. package/dist/esm/api/resources/skills/client/index.d.mts +1 -0
  104. package/dist/esm/api/resources/skills/client/index.mjs +1 -0
  105. package/dist/esm/api/resources/skills/client/requests/CancelGenerationSkillsSkillIdCancelGenerationPostRequest.d.mts +9 -0
  106. package/dist/esm/api/resources/skills/client/requests/CancelGenerationSkillsSkillIdCancelGenerationPostRequest.mjs +2 -0
  107. package/dist/esm/api/resources/skills/client/requests/CreateSkillRequest.d.mts +15 -0
  108. package/dist/esm/api/resources/skills/client/requests/CreateSkillRequest.mjs +2 -0
  109. package/dist/esm/api/resources/skills/client/requests/DeleteSkillSkillsSkillIdDeleteRequest.d.mts +9 -0
  110. package/dist/esm/api/resources/skills/client/requests/DeleteSkillSkillsSkillIdDeleteRequest.mjs +2 -0
  111. package/dist/esm/api/resources/skills/client/requests/ExecuteSkillRequest.d.mts +11 -0
  112. package/dist/esm/api/resources/skills/client/requests/ExecuteSkillRequest.mjs +2 -0
  113. package/dist/esm/api/resources/skills/client/requests/GetSkillSkillsSkillIdGetRequest.d.mts +9 -0
  114. package/dist/esm/api/resources/skills/client/requests/GetSkillSkillsSkillIdGetRequest.mjs +2 -0
  115. package/dist/esm/api/resources/skills/client/requests/ListSkillsSkillsGetRequest.d.mts +9 -0
  116. package/dist/esm/api/resources/skills/client/requests/ListSkillsSkillsGetRequest.mjs +2 -0
  117. package/dist/esm/api/resources/skills/client/requests/RefineSkillRequest.d.mts +16 -0
  118. package/dist/esm/api/resources/skills/client/requests/RefineSkillRequest.mjs +2 -0
  119. package/dist/esm/api/resources/skills/client/requests/UpdateSkillRequest.d.mts +17 -0
  120. package/dist/esm/api/resources/skills/client/requests/UpdateSkillRequest.mjs +2 -0
  121. package/dist/esm/api/resources/skills/client/requests/index.d.mts +8 -0
  122. package/dist/esm/api/resources/skills/client/requests/index.mjs +1 -0
  123. package/dist/esm/api/resources/skills/index.d.mts +1 -0
  124. package/dist/esm/api/resources/skills/index.mjs +1 -0
  125. package/dist/esm/api/resources/tasks/client/Client.d.mts +14 -14
  126. package/dist/esm/api/resources/tasks/client/Client.mjs +8 -9
  127. package/dist/esm/api/resources/workflows/client/Client.d.mts +36 -36
  128. package/dist/esm/api/resources/workflows/client/Client.mjs +19 -20
  129. package/dist/esm/api/types/AppApiV2SkillsViewsInsufficientCreditsError.d.mts +6 -0
  130. package/dist/esm/api/types/AppApiV2SkillsViewsInsufficientCreditsError.mjs +2 -0
  131. package/dist/esm/api/types/AppViewsV2ErrorViewsInsufficientCreditsError.d.mts +6 -0
  132. package/dist/esm/api/types/AppViewsV2ErrorViewsInsufficientCreditsError.mjs +2 -0
  133. package/dist/esm/api/types/CannotDeleteSkillWhileGeneratingError.d.mts +6 -0
  134. package/dist/esm/api/types/CannotDeleteSkillWhileGeneratingError.mjs +2 -0
  135. package/dist/esm/api/types/ConcurrentSkillCreationsError.d.mts +6 -0
  136. package/dist/esm/api/types/ConcurrentSkillCreationsError.mjs +2 -0
  137. package/dist/esm/api/types/CreateSkillResponse.d.mts +7 -0
  138. package/dist/esm/api/types/CreateSkillResponse.mjs +2 -0
  139. package/dist/esm/api/types/ExecuteSkillResponse.d.mts +15 -0
  140. package/dist/esm/api/types/ExecuteSkillResponse.mjs +2 -0
  141. package/dist/esm/api/types/GenerationNotCancellableError.d.mts +6 -0
  142. package/dist/esm/api/types/GenerationNotCancellableError.mjs +2 -0
  143. package/dist/esm/api/types/ParameterSchema.d.mts +11 -0
  144. package/dist/esm/api/types/ParameterSchema.mjs +2 -0
  145. package/dist/esm/api/types/ParameterType.d.mts +9 -0
  146. package/dist/esm/api/types/ParameterType.mjs +9 -0
  147. package/dist/esm/api/types/RefineSkillResponse.d.mts +7 -0
  148. package/dist/esm/api/types/RefineSkillResponse.mjs +2 -0
  149. package/dist/esm/api/types/SkillListResponse.d.mts +14 -0
  150. package/dist/esm/api/types/SkillListResponse.mjs +2 -0
  151. package/dist/esm/api/types/SkillNotFinishedError.d.mts +6 -0
  152. package/dist/esm/api/types/SkillNotFinishedError.mjs +2 -0
  153. package/dist/esm/api/types/SkillNotFoundError.d.mts +6 -0
  154. package/dist/esm/api/types/SkillNotFoundError.mjs +2 -0
  155. package/dist/esm/api/types/SkillResponse.d.mts +34 -0
  156. package/dist/esm/api/types/SkillResponse.mjs +2 -0
  157. package/dist/esm/api/types/SkillsGenerationStatus.d.mts +9 -0
  158. package/dist/esm/api/types/SkillsGenerationStatus.mjs +9 -0
  159. package/dist/esm/api/types/index.d.mts +15 -1
  160. package/dist/esm/api/types/index.mjs +15 -1
  161. package/dist/esm/version.d.mts +1 -1
  162. package/dist/esm/version.mjs +1 -1
  163. package/dist/esm/wrapper/api/BrowserUseTasks.d.mts +7 -7
  164. package/dist/esm/wrapper/api/BrowserUseTasks.mjs +2 -2
  165. package/package.json +4 -4
  166. package/reference.md +563 -42
@@ -1,4 +1,4 @@
1
- import * as core from "./core/index.js";
1
+ import type * as core from "./core/index.js";
2
2
  import type * as environments from "./environments.js";
3
3
  export interface BaseClientOptions {
4
4
  environment?: core.Supplier<environments.BrowserUseEnvironment | string>;
@@ -28,4 +28,3 @@ export interface BaseRequestOptions {
28
28
  /** Additional headers to include in the request. */
29
29
  headers?: Record<string, string | core.Supplier<string | null | undefined> | null | undefined>;
30
30
  }
31
- export declare function normalizeClientOptions<T extends BaseClientOptions>(options: T): T;
@@ -1,50 +1,3 @@
1
1
  "use strict";
2
2
  // This file was auto-generated by Fern from our API Definition.
3
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
- if (k2 === undefined) k2 = k;
5
- var desc = Object.getOwnPropertyDescriptor(m, k);
6
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
- desc = { enumerable: true, get: function() { return m[k]; } };
8
- }
9
- Object.defineProperty(o, k2, desc);
10
- }) : (function(o, m, k, k2) {
11
- if (k2 === undefined) k2 = k;
12
- o[k2] = m[k];
13
- }));
14
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
- Object.defineProperty(o, "default", { enumerable: true, value: v });
16
- }) : function(o, v) {
17
- o["default"] = v;
18
- });
19
- var __importStar = (this && this.__importStar) || (function () {
20
- var ownKeys = function(o) {
21
- ownKeys = Object.getOwnPropertyNames || function (o) {
22
- var ar = [];
23
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
- return ar;
25
- };
26
- return ownKeys(o);
27
- };
28
- return function (mod) {
29
- if (mod && mod.__esModule) return mod;
30
- var result = {};
31
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
- __setModuleDefault(result, mod);
33
- return result;
34
- };
35
- })();
36
3
  Object.defineProperty(exports, "__esModule", { value: true });
37
- exports.normalizeClientOptions = normalizeClientOptions;
38
- const headers_js_1 = require("./core/headers.js");
39
- const core = __importStar(require("./core/index.js"));
40
- function normalizeClientOptions(options) {
41
- const headers = (0, headers_js_1.mergeHeaders)({
42
- "X-Fern-Language": "JavaScript",
43
- "X-Fern-SDK-Name": "browser-use-sdk",
44
- "X-Fern-SDK-Version": "2.0.9",
45
- "User-Agent": "browser-use-sdk/2.0.9",
46
- "X-Fern-Runtime": core.RUNTIME.type,
47
- "X-Fern-Runtime-Version": core.RUNTIME.version,
48
- }, options === null || options === void 0 ? void 0 : options.headers);
49
- return Object.assign(Object.assign({}, options), { logging: core.logging.createLogger(options === null || options === void 0 ? void 0 : options.logging), headers });
50
- }
@@ -1,10 +1,11 @@
1
- import { BillingClient } from "./api/resources/billing/client/Client.js";
2
- import { BrowsersClient } from "./api/resources/browsers/client/Client.js";
3
- import { FilesClient } from "./api/resources/files/client/Client.js";
4
- import { ProfilesClient } from "./api/resources/profiles/client/Client.js";
5
- import { SessionsClient } from "./api/resources/sessions/client/Client.js";
6
- import { TasksClient } from "./api/resources/tasks/client/Client.js";
7
- import { WorkflowsClient } from "./api/resources/workflows/client/Client.js";
1
+ import { Billing } from "./api/resources/billing/client/Client.js";
2
+ import { Browsers } from "./api/resources/browsers/client/Client.js";
3
+ import { Files } from "./api/resources/files/client/Client.js";
4
+ import { Profiles } from "./api/resources/profiles/client/Client.js";
5
+ import { Sessions } from "./api/resources/sessions/client/Client.js";
6
+ import { Skills } from "./api/resources/skills/client/Client.js";
7
+ import { Tasks } from "./api/resources/tasks/client/Client.js";
8
+ import { Workflows } from "./api/resources/workflows/client/Client.js";
8
9
  import type { BaseClientOptions, BaseRequestOptions } from "./BaseClient.js";
9
10
  export declare namespace BrowserUseClient {
10
11
  interface Options extends BaseClientOptions {
@@ -14,19 +15,21 @@ export declare namespace BrowserUseClient {
14
15
  }
15
16
  export declare class BrowserUseClient {
16
17
  protected readonly _options: BrowserUseClient.Options;
17
- protected _billing: BillingClient | undefined;
18
- protected _tasks: TasksClient | undefined;
19
- protected _sessions: SessionsClient | undefined;
20
- protected _files: FilesClient | undefined;
21
- protected _profiles: ProfilesClient | undefined;
22
- protected _browsers: BrowsersClient | undefined;
23
- protected _workflows: WorkflowsClient | undefined;
24
- constructor(options: BrowserUseClient.Options);
25
- get billing(): BillingClient;
26
- get tasks(): TasksClient;
27
- get sessions(): SessionsClient;
28
- get files(): FilesClient;
29
- get profiles(): ProfilesClient;
30
- get browsers(): BrowsersClient;
31
- get workflows(): WorkflowsClient;
18
+ protected _billing: Billing | undefined;
19
+ protected _tasks: Tasks | undefined;
20
+ protected _sessions: Sessions | undefined;
21
+ protected _files: Files | undefined;
22
+ protected _profiles: Profiles | undefined;
23
+ protected _browsers: Browsers | undefined;
24
+ protected _skills: Skills | undefined;
25
+ protected _workflows: Workflows | undefined;
26
+ constructor(_options: BrowserUseClient.Options);
27
+ get billing(): Billing;
28
+ get tasks(): Tasks;
29
+ get sessions(): Sessions;
30
+ get files(): Files;
31
+ get profiles(): Profiles;
32
+ get browsers(): Browsers;
33
+ get skills(): Skills;
34
+ get workflows(): Workflows;
32
35
  }
@@ -1,5 +1,38 @@
1
1
  "use strict";
2
2
  // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
3
36
  Object.defineProperty(exports, "__esModule", { value: true });
4
37
  exports.BrowserUseClient = void 0;
5
38
  const Client_js_1 = require("./api/resources/billing/client/Client.js");
@@ -7,40 +40,53 @@ const Client_js_2 = require("./api/resources/browsers/client/Client.js");
7
40
  const Client_js_3 = require("./api/resources/files/client/Client.js");
8
41
  const Client_js_4 = require("./api/resources/profiles/client/Client.js");
9
42
  const Client_js_5 = require("./api/resources/sessions/client/Client.js");
10
- const Client_js_6 = require("./api/resources/tasks/client/Client.js");
11
- const Client_js_7 = require("./api/resources/workflows/client/Client.js");
12
- const BaseClient_js_1 = require("./BaseClient.js");
43
+ const Client_js_6 = require("./api/resources/skills/client/Client.js");
44
+ const Client_js_7 = require("./api/resources/tasks/client/Client.js");
45
+ const Client_js_8 = require("./api/resources/workflows/client/Client.js");
46
+ const headers_js_1 = require("./core/headers.js");
47
+ const core = __importStar(require("./core/index.js"));
13
48
  class BrowserUseClient {
14
- constructor(options) {
15
- this._options = (0, BaseClient_js_1.normalizeClientOptions)(options);
49
+ constructor(_options) {
50
+ this._options = Object.assign(Object.assign({}, _options), { logging: core.logging.createLogger(_options === null || _options === void 0 ? void 0 : _options.logging), headers: (0, headers_js_1.mergeHeaders)({
51
+ "X-Fern-Language": "JavaScript",
52
+ "X-Fern-SDK-Name": "browser-use-sdk",
53
+ "X-Fern-SDK-Version": "2.0.10",
54
+ "User-Agent": "browser-use-sdk/2.0.10",
55
+ "X-Fern-Runtime": core.RUNTIME.type,
56
+ "X-Fern-Runtime-Version": core.RUNTIME.version,
57
+ }, _options === null || _options === void 0 ? void 0 : _options.headers) });
16
58
  }
17
59
  get billing() {
18
60
  var _a;
19
- return ((_a = this._billing) !== null && _a !== void 0 ? _a : (this._billing = new Client_js_1.BillingClient(this._options)));
61
+ return ((_a = this._billing) !== null && _a !== void 0 ? _a : (this._billing = new Client_js_1.Billing(this._options)));
20
62
  }
21
63
  get tasks() {
22
64
  var _a;
23
- return ((_a = this._tasks) !== null && _a !== void 0 ? _a : (this._tasks = new Client_js_6.TasksClient(this._options)));
65
+ return ((_a = this._tasks) !== null && _a !== void 0 ? _a : (this._tasks = new Client_js_7.Tasks(this._options)));
24
66
  }
25
67
  get sessions() {
26
68
  var _a;
27
- return ((_a = this._sessions) !== null && _a !== void 0 ? _a : (this._sessions = new Client_js_5.SessionsClient(this._options)));
69
+ return ((_a = this._sessions) !== null && _a !== void 0 ? _a : (this._sessions = new Client_js_5.Sessions(this._options)));
28
70
  }
29
71
  get files() {
30
72
  var _a;
31
- return ((_a = this._files) !== null && _a !== void 0 ? _a : (this._files = new Client_js_3.FilesClient(this._options)));
73
+ return ((_a = this._files) !== null && _a !== void 0 ? _a : (this._files = new Client_js_3.Files(this._options)));
32
74
  }
33
75
  get profiles() {
34
76
  var _a;
35
- return ((_a = this._profiles) !== null && _a !== void 0 ? _a : (this._profiles = new Client_js_4.ProfilesClient(this._options)));
77
+ return ((_a = this._profiles) !== null && _a !== void 0 ? _a : (this._profiles = new Client_js_4.Profiles(this._options)));
36
78
  }
37
79
  get browsers() {
38
80
  var _a;
39
- return ((_a = this._browsers) !== null && _a !== void 0 ? _a : (this._browsers = new Client_js_2.BrowsersClient(this._options)));
81
+ return ((_a = this._browsers) !== null && _a !== void 0 ? _a : (this._browsers = new Client_js_2.Browsers(this._options)));
82
+ }
83
+ get skills() {
84
+ var _a;
85
+ return ((_a = this._skills) !== null && _a !== void 0 ? _a : (this._skills = new Client_js_6.Skills(this._options)));
40
86
  }
41
87
  get workflows() {
42
88
  var _a;
43
- return ((_a = this._workflows) !== null && _a !== void 0 ? _a : (this._workflows = new Client_js_7.WorkflowsClient(this._options)));
89
+ return ((_a = this._workflows) !== null && _a !== void 0 ? _a : (this._workflows = new Client_js_8.Workflows(this._options)));
44
90
  }
45
91
  }
46
92
  exports.BrowserUseClient = BrowserUseClient;
@@ -1,6 +1,5 @@
1
1
  import type * as core from "../../core/index.js";
2
2
  import * as errors from "../../errors/index.js";
3
- import type * as BrowserUse from "../index.js";
4
3
  export declare class PaymentRequiredError extends errors.BrowserUseError {
5
- constructor(body: BrowserUse.InsufficientCreditsError, rawResponse?: core.RawResponse);
4
+ constructor(body?: unknown, rawResponse?: core.RawResponse);
6
5
  }
@@ -1,19 +1,19 @@
1
1
  import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js";
2
2
  import * as core from "../../../../core/index.js";
3
3
  import * as BrowserUse from "../../../index.js";
4
- export declare namespace BillingClient {
4
+ export declare namespace Billing {
5
5
  interface Options extends BaseClientOptions {
6
6
  }
7
7
  interface RequestOptions extends BaseRequestOptions {
8
8
  }
9
9
  }
10
- export declare class BillingClient {
11
- protected readonly _options: BillingClient.Options;
12
- constructor(options: BillingClient.Options);
10
+ export declare class Billing {
11
+ protected readonly _options: Billing.Options;
12
+ constructor(_options: Billing.Options);
13
13
  /**
14
14
  * Get authenticated account information including credit balances and account details.
15
15
  *
16
- * @param {BillingClient.RequestOptions} requestOptions - Request-specific configuration.
16
+ * @param {Billing.RequestOptions} requestOptions - Request-specific configuration.
17
17
  *
18
18
  * @throws {@link BrowserUse.NotFoundError}
19
19
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -21,7 +21,7 @@ export declare class BillingClient {
21
21
  * @example
22
22
  * await client.billing.getAccountBilling()
23
23
  */
24
- getAccountBilling(requestOptions?: BillingClient.RequestOptions): core.HttpResponsePromise<BrowserUse.AccountView>;
24
+ getAccountBilling(requestOptions?: Billing.RequestOptions): core.HttpResponsePromise<BrowserUse.AccountView>;
25
25
  private __getAccountBilling;
26
26
  protected _getCustomAuthorizationHeaders(): Promise<Record<string, string | undefined>>;
27
27
  }
@@ -43,21 +43,20 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
43
43
  });
44
44
  };
45
45
  Object.defineProperty(exports, "__esModule", { value: true });
46
- exports.BillingClient = void 0;
47
- const BaseClient_js_1 = require("../../../../BaseClient.js");
46
+ exports.Billing = void 0;
48
47
  const headers_js_1 = require("../../../../core/headers.js");
49
48
  const core = __importStar(require("../../../../core/index.js"));
50
49
  const environments = __importStar(require("../../../../environments.js"));
51
50
  const errors = __importStar(require("../../../../errors/index.js"));
52
51
  const BrowserUse = __importStar(require("../../../index.js"));
53
- class BillingClient {
54
- constructor(options) {
55
- this._options = (0, BaseClient_js_1.normalizeClientOptions)(options);
52
+ class Billing {
53
+ constructor(_options) {
54
+ this._options = _options;
56
55
  }
57
56
  /**
58
57
  * Get authenticated account information including credit balances and account details.
59
58
  *
60
- * @param {BillingClient.RequestOptions} requestOptions - Request-specific configuration.
59
+ * @param {Billing.RequestOptions} requestOptions - Request-specific configuration.
61
60
  *
62
61
  * @throws {@link BrowserUse.NotFoundError}
63
62
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -124,4 +123,4 @@ class BillingClient {
124
123
  });
125
124
  }
126
125
  }
127
- exports.BillingClient = BillingClient;
126
+ exports.Billing = Billing;
@@ -1,27 +1,27 @@
1
1
  import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js";
2
2
  import * as core from "../../../../core/index.js";
3
3
  import * as BrowserUse from "../../../index.js";
4
- export declare namespace BrowsersClient {
4
+ export declare namespace Browsers {
5
5
  interface Options extends BaseClientOptions {
6
6
  }
7
7
  interface RequestOptions extends BaseRequestOptions {
8
8
  }
9
9
  }
10
- export declare class BrowsersClient {
11
- protected readonly _options: BrowsersClient.Options;
12
- constructor(options: BrowsersClient.Options);
10
+ export declare class Browsers {
11
+ protected readonly _options: Browsers.Options;
12
+ constructor(_options: Browsers.Options);
13
13
  /**
14
14
  * Get paginated list of browser sessions with optional status filtering.
15
15
  *
16
16
  * @param {BrowserUse.ListBrowserSessionsBrowsersGetRequest} request
17
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
17
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
18
18
  *
19
19
  * @throws {@link BrowserUse.UnprocessableEntityError}
20
20
  *
21
21
  * @example
22
22
  * await client.browsers.listBrowserSessions()
23
23
  */
24
- listBrowserSessions(request?: BrowserUse.ListBrowserSessionsBrowsersGetRequest, requestOptions?: BrowsersClient.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionListResponse>;
24
+ listBrowserSessions(request?: BrowserUse.ListBrowserSessionsBrowsersGetRequest, requestOptions?: Browsers.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionListResponse>;
25
25
  private __listBrowserSessions;
26
26
  /**
27
27
  * Create a new browser session.
@@ -38,7 +38,7 @@ export declare class BrowsersClient {
38
38
  * - Paid subscribers: Up to 4 hours per session
39
39
  *
40
40
  * @param {BrowserUse.CreateBrowserSessionRequest} request
41
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
41
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
42
42
  *
43
43
  * @throws {@link BrowserUse.ForbiddenError}
44
44
  * @throws {@link BrowserUse.NotFoundError}
@@ -48,13 +48,13 @@ export declare class BrowsersClient {
48
48
  * @example
49
49
  * await client.browsers.createBrowserSession()
50
50
  */
51
- createBrowserSession(request?: BrowserUse.CreateBrowserSessionRequest, requestOptions?: BrowsersClient.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionItemView>;
51
+ createBrowserSession(request?: BrowserUse.CreateBrowserSessionRequest, requestOptions?: Browsers.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionItemView>;
52
52
  private __createBrowserSession;
53
53
  /**
54
54
  * Get detailed browser session information including status and URLs.
55
55
  *
56
56
  * @param {BrowserUse.GetBrowserSessionBrowsersSessionIdGetRequest} request
57
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
57
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
58
58
  *
59
59
  * @throws {@link BrowserUse.NotFoundError}
60
60
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -64,7 +64,7 @@ export declare class BrowsersClient {
64
64
  * session_id: "session_id"
65
65
  * })
66
66
  */
67
- getBrowserSession(request: BrowserUse.GetBrowserSessionBrowsersSessionIdGetRequest, requestOptions?: BrowsersClient.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionView>;
67
+ getBrowserSession(request: BrowserUse.GetBrowserSessionBrowsersSessionIdGetRequest, requestOptions?: Browsers.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionView>;
68
68
  private __getBrowserSession;
69
69
  /**
70
70
  * Stop a browser session.
@@ -74,7 +74,7 @@ export declare class BrowsersClient {
74
74
  * Billing is ceil to the nearest minute (minimum 1 minute).
75
75
  *
76
76
  * @param {BrowserUse.UpdateBrowserSessionRequest} request
77
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
77
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
78
78
  *
79
79
  * @throws {@link BrowserUse.NotFoundError}
80
80
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -84,7 +84,7 @@ export declare class BrowsersClient {
84
84
  * session_id: "session_id"
85
85
  * })
86
86
  */
87
- updateBrowserSession(request: BrowserUse.UpdateBrowserSessionRequest, requestOptions?: BrowsersClient.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionView>;
87
+ updateBrowserSession(request: BrowserUse.UpdateBrowserSessionRequest, requestOptions?: Browsers.RequestOptions): core.HttpResponsePromise<BrowserUse.BrowserSessionView>;
88
88
  private __updateBrowserSession;
89
89
  protected _getCustomAuthorizationHeaders(): Promise<Record<string, string | undefined>>;
90
90
  }
@@ -54,22 +54,21 @@ var __rest = (this && this.__rest) || function (s, e) {
54
54
  return t;
55
55
  };
56
56
  Object.defineProperty(exports, "__esModule", { value: true });
57
- exports.BrowsersClient = void 0;
58
- const BaseClient_js_1 = require("../../../../BaseClient.js");
57
+ exports.Browsers = void 0;
59
58
  const headers_js_1 = require("../../../../core/headers.js");
60
59
  const core = __importStar(require("../../../../core/index.js"));
61
60
  const environments = __importStar(require("../../../../environments.js"));
62
61
  const errors = __importStar(require("../../../../errors/index.js"));
63
62
  const BrowserUse = __importStar(require("../../../index.js"));
64
- class BrowsersClient {
65
- constructor(options) {
66
- this._options = (0, BaseClient_js_1.normalizeClientOptions)(options);
63
+ class Browsers {
64
+ constructor(_options) {
65
+ this._options = _options;
67
66
  }
68
67
  /**
69
68
  * Get paginated list of browser sessions with optional status filtering.
70
69
  *
71
70
  * @param {BrowserUse.ListBrowserSessionsBrowsersGetRequest} request
72
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
71
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
73
72
  *
74
73
  * @throws {@link BrowserUse.UnprocessableEntityError}
75
74
  *
@@ -155,7 +154,7 @@ class BrowsersClient {
155
154
  * - Paid subscribers: Up to 4 hours per session
156
155
  *
157
156
  * @param {BrowserUse.CreateBrowserSessionRequest} request
158
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
157
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
159
158
  *
160
159
  * @throws {@link BrowserUse.ForbiddenError}
161
160
  * @throws {@link BrowserUse.NotFoundError}
@@ -228,7 +227,7 @@ class BrowsersClient {
228
227
  * Get detailed browser session information including status and URLs.
229
228
  *
230
229
  * @param {BrowserUse.GetBrowserSessionBrowsersSessionIdGetRequest} request
231
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
230
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
232
231
  *
233
232
  * @throws {@link BrowserUse.NotFoundError}
234
233
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -299,7 +298,7 @@ class BrowsersClient {
299
298
  * Billing is ceil to the nearest minute (minimum 1 minute).
300
299
  *
301
300
  * @param {BrowserUse.UpdateBrowserSessionRequest} request
302
- * @param {BrowsersClient.RequestOptions} requestOptions - Request-specific configuration.
301
+ * @param {Browsers.RequestOptions} requestOptions - Request-specific configuration.
303
302
  *
304
303
  * @throws {@link BrowserUse.NotFoundError}
305
304
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -372,4 +371,4 @@ class BrowsersClient {
372
371
  });
373
372
  }
374
373
  }
375
- exports.BrowsersClient = BrowsersClient;
374
+ exports.Browsers = Browsers;
@@ -14,4 +14,6 @@ export interface CreateBrowserSessionRequest {
14
14
  browserScreenWidth?: number | null;
15
15
  /** Custom screen height in pixels for the browser. */
16
16
  browserScreenHeight?: number | null;
17
+ /** Whether to allow the browser to be resized during the session (not recommended since it reduces stealthiness). */
18
+ allowResizing?: boolean;
17
19
  }
@@ -1,20 +1,20 @@
1
1
  import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js";
2
2
  import * as core from "../../../../core/index.js";
3
3
  import * as BrowserUse from "../../../index.js";
4
- export declare namespace FilesClient {
4
+ export declare namespace Files {
5
5
  interface Options extends BaseClientOptions {
6
6
  }
7
7
  interface RequestOptions extends BaseRequestOptions {
8
8
  }
9
9
  }
10
- export declare class FilesClient {
11
- protected readonly _options: FilesClient.Options;
12
- constructor(options: FilesClient.Options);
10
+ export declare class Files {
11
+ protected readonly _options: Files.Options;
12
+ constructor(_options: Files.Options);
13
13
  /**
14
14
  * Generate a secure presigned URL for uploading files to an agent session.
15
15
  *
16
16
  * @param {BrowserUse.AgentSessionUploadFilePresignedUrlFilesSessionsSessionIdPresignedUrlPostRequest} request
17
- * @param {FilesClient.RequestOptions} requestOptions - Request-specific configuration.
17
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
18
18
  *
19
19
  * @throws {@link BrowserUse.BadRequestError}
20
20
  * @throws {@link BrowserUse.NotFoundError}
@@ -31,13 +31,13 @@ export declare class FilesClient {
31
31
  * }
32
32
  * })
33
33
  */
34
- agentSessionUploadFilePresignedUrl(request: BrowserUse.AgentSessionUploadFilePresignedUrlFilesSessionsSessionIdPresignedUrlPostRequest, requestOptions?: FilesClient.RequestOptions): core.HttpResponsePromise<BrowserUse.UploadFilePresignedUrlResponse>;
34
+ agentSessionUploadFilePresignedUrl(request: BrowserUse.AgentSessionUploadFilePresignedUrlFilesSessionsSessionIdPresignedUrlPostRequest, requestOptions?: Files.RequestOptions): core.HttpResponsePromise<BrowserUse.UploadFilePresignedUrlResponse>;
35
35
  private __agentSessionUploadFilePresignedUrl;
36
36
  /**
37
37
  * Generate a secure presigned URL for uploading files to a browser session.
38
38
  *
39
39
  * @param {BrowserUse.BrowserSessionUploadFilePresignedUrlFilesBrowsersSessionIdPresignedUrlPostRequest} request
40
- * @param {FilesClient.RequestOptions} requestOptions - Request-specific configuration.
40
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
41
41
  *
42
42
  * @throws {@link BrowserUse.BadRequestError}
43
43
  * @throws {@link BrowserUse.NotFoundError}
@@ -54,13 +54,13 @@ export declare class FilesClient {
54
54
  * }
55
55
  * })
56
56
  */
57
- browserSessionUploadFilePresignedUrl(request: BrowserUse.BrowserSessionUploadFilePresignedUrlFilesBrowsersSessionIdPresignedUrlPostRequest, requestOptions?: FilesClient.RequestOptions): core.HttpResponsePromise<BrowserUse.UploadFilePresignedUrlResponse>;
57
+ browserSessionUploadFilePresignedUrl(request: BrowserUse.BrowserSessionUploadFilePresignedUrlFilesBrowsersSessionIdPresignedUrlPostRequest, requestOptions?: Files.RequestOptions): core.HttpResponsePromise<BrowserUse.UploadFilePresignedUrlResponse>;
58
58
  private __browserSessionUploadFilePresignedUrl;
59
59
  /**
60
60
  * Get secure download URL for an output file generated by the AI agent.
61
61
  *
62
62
  * @param {BrowserUse.GetTaskOutputFilePresignedUrlFilesTasksTaskIdOutputFilesFileIdGetRequest} request
63
- * @param {FilesClient.RequestOptions} requestOptions - Request-specific configuration.
63
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
64
64
  *
65
65
  * @throws {@link BrowserUse.NotFoundError}
66
66
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -72,7 +72,7 @@ export declare class FilesClient {
72
72
  * file_id: "file_id"
73
73
  * })
74
74
  */
75
- getTaskOutputFilePresignedUrl(request: BrowserUse.GetTaskOutputFilePresignedUrlFilesTasksTaskIdOutputFilesFileIdGetRequest, requestOptions?: FilesClient.RequestOptions): core.HttpResponsePromise<BrowserUse.TaskOutputFileResponse>;
75
+ getTaskOutputFilePresignedUrl(request: BrowserUse.GetTaskOutputFilePresignedUrlFilesTasksTaskIdOutputFilesFileIdGetRequest, requestOptions?: Files.RequestOptions): core.HttpResponsePromise<BrowserUse.TaskOutputFileResponse>;
76
76
  private __getTaskOutputFilePresignedUrl;
77
77
  protected _getCustomAuthorizationHeaders(): Promise<Record<string, string | undefined>>;
78
78
  }
@@ -43,22 +43,21 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
43
43
  });
44
44
  };
45
45
  Object.defineProperty(exports, "__esModule", { value: true });
46
- exports.FilesClient = void 0;
47
- const BaseClient_js_1 = require("../../../../BaseClient.js");
46
+ exports.Files = void 0;
48
47
  const headers_js_1 = require("../../../../core/headers.js");
49
48
  const core = __importStar(require("../../../../core/index.js"));
50
49
  const environments = __importStar(require("../../../../environments.js"));
51
50
  const errors = __importStar(require("../../../../errors/index.js"));
52
51
  const BrowserUse = __importStar(require("../../../index.js"));
53
- class FilesClient {
54
- constructor(options) {
55
- this._options = (0, BaseClient_js_1.normalizeClientOptions)(options);
52
+ class Files {
53
+ constructor(_options) {
54
+ this._options = _options;
56
55
  }
57
56
  /**
58
57
  * Generate a secure presigned URL for uploading files to an agent session.
59
58
  *
60
59
  * @param {BrowserUse.AgentSessionUploadFilePresignedUrlFilesSessionsSessionIdPresignedUrlPostRequest} request
61
- * @param {FilesClient.RequestOptions} requestOptions - Request-specific configuration.
60
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
62
61
  *
63
62
  * @throws {@link BrowserUse.BadRequestError}
64
63
  * @throws {@link BrowserUse.NotFoundError}
@@ -142,7 +141,7 @@ class FilesClient {
142
141
  * Generate a secure presigned URL for uploading files to a browser session.
143
142
  *
144
143
  * @param {BrowserUse.BrowserSessionUploadFilePresignedUrlFilesBrowsersSessionIdPresignedUrlPostRequest} request
145
- * @param {FilesClient.RequestOptions} requestOptions - Request-specific configuration.
144
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
146
145
  *
147
146
  * @throws {@link BrowserUse.BadRequestError}
148
147
  * @throws {@link BrowserUse.NotFoundError}
@@ -226,7 +225,7 @@ class FilesClient {
226
225
  * Get secure download URL for an output file generated by the AI agent.
227
226
  *
228
227
  * @param {BrowserUse.GetTaskOutputFilePresignedUrlFilesTasksTaskIdOutputFilesFileIdGetRequest} request
229
- * @param {FilesClient.RequestOptions} requestOptions - Request-specific configuration.
228
+ * @param {Files.RequestOptions} requestOptions - Request-specific configuration.
230
229
  *
231
230
  * @throws {@link BrowserUse.NotFoundError}
232
231
  * @throws {@link BrowserUse.UnprocessableEntityError}
@@ -300,4 +299,4 @@ class FilesClient {
300
299
  });
301
300
  }
302
301
  }
303
- exports.FilesClient = FilesClient;
302
+ exports.Files = Files;
@@ -7,6 +7,8 @@ export * from "./profiles/client/requests/index.js";
7
7
  export * as profiles from "./profiles/index.js";
8
8
  export * from "./sessions/client/requests/index.js";
9
9
  export * as sessions from "./sessions/index.js";
10
+ export * from "./skills/client/requests/index.js";
11
+ export * as skills from "./skills/index.js";
10
12
  export * from "./tasks/client/requests/index.js";
11
13
  export * as tasks from "./tasks/index.js";
12
14
  export * from "./workflows/client/requests/index.js";
@@ -36,7 +36,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.workflows = exports.tasks = exports.sessions = exports.profiles = exports.files = exports.browsers = exports.billing = void 0;
39
+ exports.workflows = exports.tasks = exports.skills = exports.sessions = exports.profiles = exports.files = exports.browsers = exports.billing = void 0;
40
40
  exports.billing = __importStar(require("./billing/index.js"));
41
41
  __exportStar(require("./browsers/client/requests/index.js"), exports);
42
42
  exports.browsers = __importStar(require("./browsers/index.js"));
@@ -46,6 +46,8 @@ __exportStar(require("./profiles/client/requests/index.js"), exports);
46
46
  exports.profiles = __importStar(require("./profiles/index.js"));
47
47
  __exportStar(require("./sessions/client/requests/index.js"), exports);
48
48
  exports.sessions = __importStar(require("./sessions/index.js"));
49
+ __exportStar(require("./skills/client/requests/index.js"), exports);
50
+ exports.skills = __importStar(require("./skills/index.js"));
49
51
  __exportStar(require("./tasks/client/requests/index.js"), exports);
50
52
  exports.tasks = __importStar(require("./tasks/index.js"));
51
53
  __exportStar(require("./workflows/client/requests/index.js"), exports);