browser-use-sdk 3.4.2 → 3.4.3

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/v3.d.cts CHANGED
@@ -760,6 +760,13 @@ interface components {
760
760
  * @default false
761
761
  */
762
762
  enableScheduledTasks: boolean;
763
+ /**
764
+ * Sensitivedata
765
+ * @description Key-value pairs of sensitive data (e.g. passwords, API keys) that the agent can use via secure placeholders. Keys are exposed to the LLM; values are never shown. The agent uses `<secret>key</secret>` placeholders in browser_type_text to securely enter values. WARNING: sensitive data may be visible in screenshots if the page renders values in unmasked form fields.
766
+ */
767
+ sensitiveData?: {
768
+ [key: string]: string;
769
+ } | null;
763
770
  /**
764
771
  * Enablerecording
765
772
  * @description If true, records a video of the browser session. The recording URLs will be available in the `recordingUrls` field of the session response after the task completes.
package/dist/v3.d.ts CHANGED
@@ -760,6 +760,13 @@ interface components {
760
760
  * @default false
761
761
  */
762
762
  enableScheduledTasks: boolean;
763
+ /**
764
+ * Sensitivedata
765
+ * @description Key-value pairs of sensitive data (e.g. passwords, API keys) that the agent can use via secure placeholders. Keys are exposed to the LLM; values are never shown. The agent uses `<secret>key</secret>` placeholders in browser_type_text to securely enter values. WARNING: sensitive data may be visible in screenshots if the page renders values in unmasked form fields.
766
+ */
767
+ sensitiveData?: {
768
+ [key: string]: string;
769
+ } | null;
763
770
  /**
764
771
  * Enablerecording
765
772
  * @description If true, records a video of the browser session. The recording URLs will be available in the `recordingUrls` field of the session response after the task completes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-use-sdk",
3
- "version": "3.4.2",
3
+ "version": "3.4.3",
4
4
  "description": "Official TypeScript SDK for the Browser Use API",
5
5
  "author": "Browser Use",
6
6
  "license": "MIT",