devtools-protocol 0.0.1094867 → 0.0.1096618

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.
@@ -1537,7 +1537,8 @@
1537
1537
  "CrossOriginPortalPostMessageError",
1538
1538
  "FormLabelForNameError",
1539
1539
  "FormDuplicateIdForInputError",
1540
- "FormInputWithNoLabelError"
1540
+ "FormInputWithNoLabelError",
1541
+ "FormAutocompleteAttributeEmptyError"
1541
1542
  ]
1542
1543
  },
1543
1544
  {
@@ -2496,7 +2497,7 @@
2496
2497
  },
2497
2498
  {
2498
2499
  "name": "delta",
2499
- "description": "If true, retrieve delta since last call.",
2500
+ "description": "If true, retrieve delta since last delta call.",
2500
2501
  "optional": true,
2501
2502
  "type": "boolean"
2502
2503
  }
@@ -2524,7 +2525,7 @@
2524
2525
  },
2525
2526
  {
2526
2527
  "name": "delta",
2527
- "description": "If true, retrieve delta since last call.",
2528
+ "description": "If true, retrieve delta since last delta call.",
2528
2529
  "optional": true,
2529
2530
  "type": "boolean"
2530
2531
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1094867",
3
+ "version": "0.0.1096618",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -746,6 +746,7 @@ experimental domain Audits
746
746
  FormLabelForNameError
747
747
  FormDuplicateIdForInputError
748
748
  FormInputWithNoLabelError
749
+ FormAutocompleteAttributeEmptyError
749
750
 
750
751
  # Depending on the concrete errorType, different properties are set.
751
752
  type GenericIssueDetails extends object
@@ -1273,7 +1274,7 @@ domain Browser
1273
1274
  # substring in their name are extracted. An empty or absent query returns
1274
1275
  # all histograms.
1275
1276
  optional string query
1276
- # If true, retrieve delta since last call.
1277
+ # If true, retrieve delta since last delta call.
1277
1278
  optional boolean delta
1278
1279
 
1279
1280
  returns
@@ -1285,7 +1286,7 @@ domain Browser
1285
1286
  parameters
1286
1287
  # Requested histogram name.
1287
1288
  string name
1288
- # If true, retrieve delta since last call.
1289
+ # If true, retrieve delta since last delta call.
1289
1290
  optional boolean delta
1290
1291
  returns
1291
1292
  # Histogram.
@@ -3442,7 +3442,7 @@ export namespace Protocol {
3442
3442
  location?: SourceCodeLocation;
3443
3443
  }
3444
3444
 
3445
- export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError');
3445
+ export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError');
3446
3446
 
3447
3447
  /**
3448
3448
  * Depending on the concrete errorType, different properties are set.
@@ -3916,7 +3916,7 @@ export namespace Protocol {
3916
3916
  */
3917
3917
  query?: string;
3918
3918
  /**
3919
- * If true, retrieve delta since last call.
3919
+ * If true, retrieve delta since last delta call.
3920
3920
  */
3921
3921
  delta?: boolean;
3922
3922
  }
@@ -3934,7 +3934,7 @@ export namespace Protocol {
3934
3934
  */
3935
3935
  name: string;
3936
3936
  /**
3937
- * If true, retrieve delta since last call.
3937
+ * If true, retrieve delta since last delta call.
3938
3938
  */
3939
3939
  delta?: boolean;
3940
3940
  }