devtools-protocol 0.0.1004164 → 0.0.1005172

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.
@@ -1568,7 +1568,6 @@
1568
1568
  "InsecurePrivateNetworkSubresourceRequest",
1569
1569
  "LegacyConstraintGoogIPv6",
1570
1570
  "LocalCSSFileExtensionRejected",
1571
- "MediaElementAudioSourceNode",
1572
1571
  "MediaSourceAbortRemove",
1573
1572
  "MediaSourceDurationTruncatingBuffered",
1574
1573
  "NoSysexWebMIDIWithoutPermission",
@@ -1576,7 +1575,6 @@
1576
1575
  "NotificationPermissionRequestedIframe",
1577
1576
  "ObsoleteWebRtcCipherSuite",
1578
1577
  "PaymentRequestBasicCard",
1579
- "PaymentRequestShowWithoutGesture",
1580
1578
  "PictureSourceSrc",
1581
1579
  "PrefixedCancelAnimationFrame",
1582
1580
  "PrefixedRequestAnimationFrame",
@@ -7474,21 +7472,6 @@
7474
7472
  "type": "string"
7475
7473
  }
7476
7474
  ]
7477
- },
7478
- {
7479
- "name": "getStorageKeyForFrame",
7480
- "parameters": [
7481
- {
7482
- "name": "frameId",
7483
- "$ref": "Page.FrameId"
7484
- }
7485
- ],
7486
- "returns": [
7487
- {
7488
- "name": "storageKey",
7489
- "$ref": "SerializedStorageKey"
7490
- }
7491
- ]
7492
7475
  }
7493
7476
  ],
7494
7477
  "events": [
@@ -18936,6 +18919,22 @@
18936
18919
  }
18937
18920
  ],
18938
18921
  "commands": [
18922
+ {
18923
+ "name": "getStorageKeyForFrame",
18924
+ "description": "Returns a storage key given a frame id.",
18925
+ "parameters": [
18926
+ {
18927
+ "name": "frameId",
18928
+ "$ref": "Page.FrameId"
18929
+ }
18930
+ ],
18931
+ "returns": [
18932
+ {
18933
+ "name": "storageKey",
18934
+ "$ref": "SerializedStorageKey"
18935
+ }
18936
+ ]
18937
+ },
18939
18938
  {
18940
18939
  "name": "clearDataForOrigin",
18941
18940
  "description": "Clears storage for origin.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1004164",
3
+ "version": "0.0.1005172",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -762,7 +762,6 @@ experimental domain Audits
762
762
  InsecurePrivateNetworkSubresourceRequest
763
763
  LegacyConstraintGoogIPv6
764
764
  LocalCSSFileExtensionRejected
765
- MediaElementAudioSourceNode
766
765
  MediaSourceAbortRemove
767
766
  MediaSourceDurationTruncatingBuffered
768
767
  NoSysexWebMIDIWithoutPermission
@@ -770,7 +769,6 @@ experimental domain Audits
770
769
  NotificationPermissionRequestedIframe
771
770
  ObsoleteWebRtcCipherSuite
772
771
  PaymentRequestBasicCard
773
- PaymentRequestShowWithoutGesture
774
772
  PictureSourceSrc
775
773
  PrefixedCancelAnimationFrame
776
774
  PrefixedRequestAnimationFrame
@@ -3436,12 +3434,6 @@ experimental domain DOMStorage
3436
3434
  string key
3437
3435
  string value
3438
3436
 
3439
- command getStorageKeyForFrame
3440
- parameters
3441
- Page.FrameId frameId
3442
- returns
3443
- SerializedStorageKey storageKey
3444
-
3445
3437
  event domStorageItemAdded
3446
3438
  parameters
3447
3439
  StorageId storageId
@@ -8906,6 +8898,13 @@ experimental domain Storage
8906
8898
  array of InterestGroupAd ads
8907
8899
  array of InterestGroupAd adComponents
8908
8900
 
8901
+ # Returns a storage key given a frame id.
8902
+ command getStorageKeyForFrame
8903
+ parameters
8904
+ Page.FrameId frameId
8905
+ returns
8906
+ SerializedStorageKey storageKey
8907
+
8909
8908
  # Clears storage for origin.
8910
8909
  command clearDataForOrigin
8911
8910
  parameters
@@ -2352,10 +2352,6 @@ export namespace ProtocolMapping {
2352
2352
  paramsType: [Protocol.DOMStorage.SetDOMStorageItemRequest];
2353
2353
  returnType: void;
2354
2354
  };
2355
- 'DOMStorage.getStorageKeyForFrame': {
2356
- paramsType: [Protocol.DOMStorage.GetStorageKeyForFrameRequest];
2357
- returnType: Protocol.DOMStorage.GetStorageKeyForFrameResponse;
2358
- };
2359
2355
  /**
2360
2356
  * Disables database tracking, prevents database events from being sent to the client.
2361
2357
  */
@@ -3930,6 +3926,13 @@ export namespace ProtocolMapping {
3930
3926
  paramsType: [Protocol.ServiceWorker.UpdateRegistrationRequest];
3931
3927
  returnType: void;
3932
3928
  };
3929
+ /**
3930
+ * Returns a storage key given a frame id.
3931
+ */
3932
+ 'Storage.getStorageKeyForFrame': {
3933
+ paramsType: [Protocol.Storage.GetStorageKeyForFrameRequest];
3934
+ returnType: Protocol.Storage.GetStorageKeyForFrameResponse;
3935
+ };
3933
3936
  /**
3934
3937
  * Clears storage for origin.
3935
3938
  */
@@ -1614,8 +1614,6 @@ export namespace ProtocolProxyApi {
1614
1614
 
1615
1615
  setDOMStorageItem(params: Protocol.DOMStorage.SetDOMStorageItemRequest): Promise<void>;
1616
1616
 
1617
- getStorageKeyForFrame(params: Protocol.DOMStorage.GetStorageKeyForFrameRequest): Promise<Protocol.DOMStorage.GetStorageKeyForFrameResponse>;
1618
-
1619
1617
  on(event: 'domStorageItemAdded', listener: (params: Protocol.DOMStorage.DomStorageItemAddedEvent) => void): void;
1620
1618
 
1621
1619
  on(event: 'domStorageItemRemoved', listener: (params: Protocol.DOMStorage.DomStorageItemRemovedEvent) => void): void;
@@ -3189,6 +3187,11 @@ export namespace ProtocolProxyApi {
3189
3187
  }
3190
3188
 
3191
3189
  export interface StorageApi {
3190
+ /**
3191
+ * Returns a storage key given a frame id.
3192
+ */
3193
+ getStorageKeyForFrame(params: Protocol.Storage.GetStorageKeyForFrameRequest): Promise<Protocol.Storage.GetStorageKeyForFrameResponse>;
3194
+
3192
3195
  /**
3193
3196
  * Clears storage for origin.
3194
3197
  */
@@ -3378,7 +3378,7 @@ export namespace Protocol {
3378
3378
  frameId?: Page.FrameId;
3379
3379
  }
3380
3380
 
3381
- export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'CustomCursorIntersectsViewport' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogIPv6' | 'LocalCSSFileExtensionRejected' | 'MediaElementAudioSourceNode' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PaymentRequestShowWithoutGesture' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3381
+ export type DeprecationIssueType = ('AuthorizationCoveredByWildcard' | 'CanRequestURLHTTPContainingNewline' | 'ChromeLoadTimesConnectionInfo' | 'ChromeLoadTimesFirstPaintAfterLoadTime' | 'ChromeLoadTimesWasAlternateProtocolAvailable' | 'CookieWithTruncatingChar' | 'CrossOriginAccessBasedOnDocumentDomain' | 'CrossOriginWindowAlert' | 'CrossOriginWindowConfirm' | 'CSSSelectorInternalMediaControlsOverlayCastButton' | 'CustomCursorIntersectsViewport' | 'DeprecationExample' | 'DocumentDomainSettingWithoutOriginAgentClusterHeader' | 'EventPath' | 'GeolocationInsecureOrigin' | 'GeolocationInsecureOriginDeprecatedNotRemoved' | 'GetUserMediaInsecureOrigin' | 'HostCandidateAttributeGetter' | 'InsecurePrivateNetworkSubresourceRequest' | 'LegacyConstraintGoogIPv6' | 'LocalCSSFileExtensionRejected' | 'MediaSourceAbortRemove' | 'MediaSourceDurationTruncatingBuffered' | 'NoSysexWebMIDIWithoutPermission' | 'NotificationInsecureOrigin' | 'NotificationPermissionRequestedIframe' | 'ObsoleteWebRtcCipherSuite' | 'PaymentRequestBasicCard' | 'PictureSourceSrc' | 'PrefixedCancelAnimationFrame' | 'PrefixedRequestAnimationFrame' | 'PrefixedStorageInfo' | 'PrefixedVideoDisplayingFullscreen' | 'PrefixedVideoEnterFullscreen' | 'PrefixedVideoEnterFullScreen' | 'PrefixedVideoExitFullscreen' | 'PrefixedVideoExitFullScreen' | 'PrefixedVideoSupportsFullscreen' | 'RangeExpand' | 'RequestedSubresourceWithEmbeddedCredentials' | 'RTCConstraintEnableDtlsSrtpFalse' | 'RTCConstraintEnableDtlsSrtpTrue' | 'RTCPeerConnectionComplexPlanBSdpUsingDefaultSdpSemantics' | 'RTCPeerConnectionSdpSemanticsPlanB' | 'RtcpMuxPolicyNegotiate' | 'RTPDataChannel' | 'SharedArrayBufferConstructedWithoutIsolation' | 'TextToSpeech_DisallowedByAutoplay' | 'V8SharedArrayBufferConstructedInExtensionWithoutIsolation' | 'XHRJSONEncodingDetection' | 'XMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload' | 'XRSupportsSession');
3382
3382
 
3383
3383
  /**
3384
3384
  * This issue tracks information needed to print a deprecation message.
@@ -7142,14 +7142,6 @@ export namespace Protocol {
7142
7142
  value: string;
7143
7143
  }
7144
7144
 
7145
- export interface GetStorageKeyForFrameRequest {
7146
- frameId: Page.FrameId;
7147
- }
7148
-
7149
- export interface GetStorageKeyForFrameResponse {
7150
- storageKey: SerializedStorageKey;
7151
- }
7152
-
7153
7145
  export interface DomStorageItemAddedEvent {
7154
7146
  storageId: StorageId;
7155
7147
  key: string;
@@ -14350,6 +14342,14 @@ export namespace Protocol {
14350
14342
  adComponents: InterestGroupAd[];
14351
14343
  }
14352
14344
 
14345
+ export interface GetStorageKeyForFrameRequest {
14346
+ frameId: Page.FrameId;
14347
+ }
14348
+
14349
+ export interface GetStorageKeyForFrameResponse {
14350
+ storageKey: SerializedStorageKey;
14351
+ }
14352
+
14353
14353
  export interface ClearDataForOriginRequest {
14354
14354
  /**
14355
14355
  * Security origin.