devtools-protocol 0.0.1238944 → 0.0.1239539

Sign up to get free protection for your applications and to get access to all the features.
@@ -2183,6 +2183,11 @@
2183
2183
  "name": "fillingStrategy",
2184
2184
  "description": "The filling strategy",
2185
2185
  "$ref": "FillingStrategy"
2186
+ },
2187
+ {
2188
+ "name": "fieldId",
2189
+ "description": "The form field's DOM node",
2190
+ "$ref": "DOM.BackendNodeId"
2186
2191
  }
2187
2192
  ]
2188
2193
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1238944",
3
+ "version": "0.0.1239539",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1083,6 +1083,8 @@ experimental domain Autofill
1083
1083
  string autofillType
1084
1084
  # The filling strategy
1085
1085
  FillingStrategy fillingStrategy
1086
+ # The form field's DOM node
1087
+ DOM.BackendNodeId fieldId
1086
1088
 
1087
1089
  # Emitted when an address form is filled.
1088
1090
  event addressFormFilled
@@ -3803,6 +3803,10 @@ export namespace Protocol {
3803
3803
  * The filling strategy
3804
3804
  */
3805
3805
  fillingStrategy: FillingStrategy;
3806
+ /**
3807
+ * The form field's DOM node
3808
+ */
3809
+ fieldId: DOM.BackendNodeId;
3806
3810
  }
3807
3811
 
3808
3812
  export interface TriggerRequest {