devtools-protocol 0.0.1092232 → 0.0.1092731

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.
@@ -1536,7 +1536,8 @@
1536
1536
  "enum": [
1537
1537
  "CrossOriginPortalPostMessageError",
1538
1538
  "FormLabelForNameError",
1539
- "FormDuplicateIdForInputError"
1539
+ "FormDuplicateIdForInputError",
1540
+ "FormInputWithNoLabelError"
1540
1541
  ]
1541
1542
  },
1542
1543
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1092232",
3
+ "version": "0.0.1092731",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -745,6 +745,7 @@ experimental domain Audits
745
745
  CrossOriginPortalPostMessageError
746
746
  FormLabelForNameError
747
747
  FormDuplicateIdForInputError
748
+ FormInputWithNoLabelError
748
749
 
749
750
  # Depending on the concrete errorType, different properties are set.
750
751
  type GenericIssueDetails extends object
@@ -3442,7 +3442,7 @@ export namespace Protocol {
3442
3442
  location?: SourceCodeLocation;
3443
3443
  }
3444
3444
 
3445
- export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError');
3445
+ export type GenericIssueErrorType = ('CrossOriginPortalPostMessageError' | 'FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError');
3446
3446
 
3447
3447
  /**
3448
3448
  * Depending on the concrete errorType, different properties are set.