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 +7 -0
- package/dist/v3.d.ts +7 -0
- package/package.json +1 -1
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.
|