devtools-protocol 0.0.955313 → 0.0.955664

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.
@@ -1598,6 +1598,10 @@
1598
1598
  "deprecated": true,
1599
1599
  "optional": true,
1600
1600
  "type": "string"
1601
+ },
1602
+ {
1603
+ "name": "deprecationType",
1604
+ "type": "string"
1601
1605
  }
1602
1606
  ]
1603
1607
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.955313",
3
+ "version": "0.0.955664",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -769,6 +769,7 @@ experimental domain Audits
769
769
  # instead. This standard was abandoned in January, 1970. See
770
770
  # https://www.chromestatus.com/feature/5684870116278272 for more details."
771
771
  deprecated optional string message
772
+ string deprecationType
772
773
 
773
774
  type ClientHintIssueReason extends string
774
775
  enum
@@ -3334,6 +3334,7 @@ export namespace Protocol {
3334
3334
  * https://www.chromestatus.com/feature/5684870116278272 for more details."
3335
3335
  */
3336
3336
  message?: string;
3337
+ deprecationType: string;
3337
3338
  }
3338
3339
 
3339
3340
  export type ClientHintIssueReason = ('MetaTagAllowListInvalidOrigin' | 'MetaTagModifiedHTML');