playwright-core 1.58.0-alpha-2025-12-08 → 1.58.0-alpha-2025-12-09

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/types/types.d.ts CHANGED
@@ -22087,12 +22087,12 @@ export interface BrowserContextOptions {
22087
22087
  */
22088
22088
  agent?: {
22089
22089
  /**
22090
- * LLM provider to use
22090
+ * LLM provider to use.
22091
22091
  */
22092
22092
  provider: string;
22093
22093
 
22094
22094
  /**
22095
- * Model identifier within provider
22095
+ * Model identifier within provider.
22096
22096
  */
22097
22097
  model: string;
22098
22098
 
@@ -22102,9 +22102,14 @@ export interface BrowserContextOptions {
22102
22102
  cacheFile?: string;
22103
22103
 
22104
22104
  /**
22105
- * Cache control, defauls to 'auto'
22105
+ * Cache control, defaults to 'auto'.
22106
22106
  */
22107
22107
  cacheMode?: 'force'|'ignore'|'auto';
22108
+
22109
+ /**
22110
+ * Secrets to hide from the LLM.
22111
+ */
22112
+ secrets?: { [key: string]: string; };
22108
22113
  };
22109
22114
 
22110
22115
  /**