devtools-protocol 0.0.1551306 → 0.0.1557841

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.
@@ -1755,7 +1755,10 @@
1755
1755
  "FormLabelForMatchesNonExistingIdError",
1756
1756
  "FormInputHasWrongButWellIntendedAutocompleteValueError",
1757
1757
  "ResponseWasBlockedByORB",
1758
- "NavigationEntryMarkedSkippable"
1758
+ "NavigationEntryMarkedSkippable",
1759
+ "AutofillAndManualTextPolicyControlledFeaturesInfo",
1760
+ "AutofillPolicyControlledFeatureInfo",
1761
+ "ManualTextPolicyControlledFeatureInfo"
1759
1762
  ]
1760
1763
  },
1761
1764
  {
@@ -6893,8 +6896,7 @@
6893
6896
  "details-content",
6894
6897
  "picker",
6895
6898
  "permission-icon",
6896
- "overscroll-area-parent",
6897
- "overscroll-client-area"
6899
+ "overscroll-area-parent"
6898
6900
  ]
6899
6901
  },
6900
6902
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1551306",
3
+ "version": "0.0.1557841",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -412,6 +412,9 @@ experimental domain Audits
412
412
  FormInputHasWrongButWellIntendedAutocompleteValueError
413
413
  ResponseWasBlockedByORB
414
414
  NavigationEntryMarkedSkippable
415
+ AutofillAndManualTextPolicyControlledFeaturesInfo
416
+ AutofillPolicyControlledFeatureInfo
417
+ ManualTextPolicyControlledFeatureInfo
415
418
 
416
419
  # Depending on the concrete errorType, different properties are set.
417
420
  type GenericIssueDetails extends object
@@ -76,7 +76,6 @@ domain DOM
76
76
  picker
77
77
  permission-icon
78
78
  overscroll-area-parent
79
- overscroll-client-area
80
79
 
81
80
  # Shadow root type.
82
81
  type ShadowRootType extends string
@@ -3698,7 +3698,7 @@ export namespace Protocol {
3698
3698
  request: AffectedRequest;
3699
3699
  }
3700
3700
 
3701
- export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable');
3701
+ export type GenericIssueErrorType = ('FormLabelForNameError' | 'FormDuplicateIdForInputError' | 'FormInputWithNoLabelError' | 'FormAutocompleteAttributeEmptyError' | 'FormEmptyIdAndNameAttributesForInputError' | 'FormAriaLabelledByToNonExistingIdError' | 'FormInputAssignedAutocompleteValueToIdOrNameAttributeError' | 'FormLabelHasNeitherForNorNestedInputError' | 'FormLabelForMatchesNonExistingIdError' | 'FormInputHasWrongButWellIntendedAutocompleteValueError' | 'ResponseWasBlockedByORB' | 'NavigationEntryMarkedSkippable' | 'AutofillAndManualTextPolicyControlledFeaturesInfo' | 'AutofillPolicyControlledFeatureInfo' | 'ManualTextPolicyControlledFeatureInfo');
3702
3702
 
3703
3703
  /**
3704
3704
  * Depending on the concrete errorType, different properties are set.
@@ -6818,7 +6818,7 @@ export namespace Protocol {
6818
6818
  /**
6819
6819
  * Pseudo element type.
6820
6820
  */
6821
- export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon' | 'overscroll-area-parent' | 'overscroll-client-area');
6821
+ export type PseudoType = ('first-line' | 'first-letter' | 'checkmark' | 'before' | 'after' | 'picker-icon' | 'interest-hint' | 'marker' | 'backdrop' | 'column' | 'selection' | 'search-text' | 'target-text' | 'spelling-error' | 'grammar-error' | 'highlight' | 'first-line-inherited' | 'scroll-marker' | 'scroll-marker-group' | 'scroll-button' | 'scrollbar' | 'scrollbar-thumb' | 'scrollbar-button' | 'scrollbar-track' | 'scrollbar-track-piece' | 'scrollbar-corner' | 'resizer' | 'input-list-button' | 'view-transition' | 'view-transition-group' | 'view-transition-image-pair' | 'view-transition-group-children' | 'view-transition-old' | 'view-transition-new' | 'placeholder' | 'file-selector-button' | 'details-content' | 'picker' | 'permission-icon' | 'overscroll-area-parent');
6822
6822
 
6823
6823
  /**
6824
6824
  * Shadow root type.