devtools-protocol 0.0.1059612 → 0.0.1060866

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.
@@ -17603,14 +17603,6 @@
17603
17603
  "description": "JavaScript stack trace of when frame was attached, only set if frame initiated from script.",
17604
17604
  "optional": true,
17605
17605
  "$ref": "Runtime.StackTrace"
17606
- },
17607
- {
17608
- "name": "adScriptId",
17609
- "description": "Identifies the bottom-most script which caused the frame to be labelled\nas an ad. Only sent if frame is labelled as an ad and id is available.\nDeprecated: use Page.getAdScriptId instead.",
17610
- "experimental": true,
17611
- "deprecated": true,
17612
- "optional": true,
17613
- "$ref": "AdScriptId"
17614
17606
  }
17615
17607
  ]
17616
17608
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1059612",
3
+ "version": "0.0.1060866",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -8135,10 +8135,6 @@ domain Page
8135
8135
  FrameId parentFrameId
8136
8136
  # JavaScript stack trace of when frame was attached, only set if frame initiated from script.
8137
8137
  optional Runtime.StackTrace stack
8138
- # Identifies the bottom-most script which caused the frame to be labelled
8139
- # as an ad. Only sent if frame is labelled as an ad and id is available.
8140
- # Deprecated: use Page.getAdScriptId instead.
8141
- experimental deprecated optional AdScriptId adScriptId
8142
8138
 
8143
8139
  # Fired when frame no longer has a scheduled navigation.
8144
8140
  deprecated event frameClearedScheduledNavigation
@@ -13600,12 +13600,6 @@ export namespace Protocol {
13600
13600
  * JavaScript stack trace of when frame was attached, only set if frame initiated from script.
13601
13601
  */
13602
13602
  stack?: Runtime.StackTrace;
13603
- /**
13604
- * Identifies the bottom-most script which caused the frame to be labelled
13605
- * as an ad. Only sent if frame is labelled as an ad and id is available.
13606
- * Deprecated: use Page.getAdScriptId instead.
13607
- */
13608
- adScriptId?: AdScriptId;
13609
13603
  }
13610
13604
 
13611
13605
  /**