devtools-protocol 0.0.955313 → 0.0.957947

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
  },
@@ -14518,7 +14522,8 @@
14518
14522
  },
14519
14523
  {
14520
14524
  "name": "setShowHitTestBorders",
14521
- "description": "Requests that backend shows hit-test borders on layers",
14525
+ "description": "Deprecated, no longer has any effect.",
14526
+ "deprecated": true,
14522
14527
  "parameters": [
14523
14528
  {
14524
14529
  "name": "show",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.955313",
3
+ "version": "0.0.957947",
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
@@ -6712,8 +6713,8 @@ experimental domain Overlay
6712
6713
  # True for showing scroll bottleneck rects
6713
6714
  boolean show
6714
6715
 
6715
- # Requests that backend shows hit-test borders on layers
6716
- command setShowHitTestBorders
6716
+ # Deprecated, no longer has any effect.
6717
+ deprecated command setShowHitTestBorders
6717
6718
  parameters
6718
6719
  # True for showing hit-test borders
6719
6720
  boolean show
@@ -3309,7 +3309,7 @@ export namespace ProtocolMapping {
3309
3309
  returnType: void;
3310
3310
  };
3311
3311
  /**
3312
- * Requests that backend shows hit-test borders on layers
3312
+ * Deprecated, no longer has any effect.
3313
3313
  */
3314
3314
  'Overlay.setShowHitTestBorders': {
3315
3315
  paramsType: [Protocol.Overlay.SetShowHitTestBordersRequest];
@@ -2549,7 +2549,7 @@ export namespace ProtocolProxyApi {
2549
2549
  setShowScrollBottleneckRects(params: Protocol.Overlay.SetShowScrollBottleneckRectsRequest): Promise<void>;
2550
2550
 
2551
2551
  /**
2552
- * Requests that backend shows hit-test borders on layers
2552
+ * Deprecated, no longer has any effect.
2553
2553
  */
2554
2554
  setShowHitTestBorders(params: Protocol.Overlay.SetShowHitTestBordersRequest): Promise<void>;
2555
2555
 
@@ -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');