devtools-protocol 0.0.945905 → 0.0.948336

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.
@@ -1450,7 +1450,12 @@
1450
1450
  "AttributionSourceUntrustworthyOrigin",
1451
1451
  "AttributionUntrustworthyOrigin",
1452
1452
  "AttributionTriggerDataTooLarge",
1453
- "AttributionEventSourceTriggerDataTooLarge"
1453
+ "AttributionEventSourceTriggerDataTooLarge",
1454
+ "InvalidAttributionSourceExpiry",
1455
+ "InvalidAttributionSourcePriority",
1456
+ "InvalidEventSourceTriggerData",
1457
+ "InvalidTriggerPriority",
1458
+ "InvalidTriggerDedupKey"
1454
1459
  ]
1455
1460
  },
1456
1461
  {
@@ -4202,6 +4207,16 @@
4202
4207
  }
4203
4208
  ]
4204
4209
  },
4210
+ {
4211
+ "name": "startDesktopMirroring",
4212
+ "description": "Starts mirroring the desktop to the sink.",
4213
+ "parameters": [
4214
+ {
4215
+ "name": "sinkName",
4216
+ "type": "string"
4217
+ }
4218
+ ]
4219
+ },
4205
4220
  {
4206
4221
  "name": "startTabMirroring",
4207
4222
  "description": "Starts mirroring the tab to the sink.",
@@ -15629,6 +15644,7 @@
15629
15644
  "ContentWebUSB",
15630
15645
  "ContentMediaSession",
15631
15646
  "ContentMediaSessionService",
15647
+ "ContentScreenReader",
15632
15648
  "EmbedderPopupBlockerTabHelper",
15633
15649
  "EmbedderSafeBrowsingTriggeredPopupBlocker",
15634
15650
  "EmbedderSafeBrowsingThreatDetails",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.945905",
3
+ "version": "0.0.948336",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -703,6 +703,11 @@ experimental domain Audits
703
703
  AttributionUntrustworthyOrigin
704
704
  AttributionTriggerDataTooLarge
705
705
  AttributionEventSourceTriggerDataTooLarge
706
+ InvalidAttributionSourceExpiry
707
+ InvalidAttributionSourcePriority
708
+ InvalidEventSourceTriggerData
709
+ InvalidTriggerPriority
710
+ InvalidTriggerDedupKey
706
711
 
707
712
  # Details for issues around "Attribution Reporting API" usage.
708
713
  # Explainer: https://github.com/WICG/conversion-measurement-api
@@ -1949,6 +1954,11 @@ experimental domain Cast
1949
1954
  parameters
1950
1955
  string sinkName
1951
1956
 
1957
+ # Starts mirroring the desktop to the sink.
1958
+ command startDesktopMirroring
1959
+ parameters
1960
+ string sinkName
1961
+
1952
1962
  # Starts mirroring the tab to the sink.
1953
1963
  command startTabMirroring
1954
1964
  parameters
@@ -8035,6 +8045,7 @@ domain Page
8035
8045
  ContentWebUSB
8036
8046
  ContentMediaSession
8037
8047
  ContentMediaSessionService
8048
+ ContentScreenReader
8038
8049
 
8039
8050
  # See components/back_forward_cache/back_forward_cache_disable.h for explanations.
8040
8051
  EmbedderPopupBlockerTabHelper
@@ -1790,6 +1790,13 @@ export namespace ProtocolMapping {
1790
1790
  paramsType: [Protocol.Cast.SetSinkToUseRequest];
1791
1791
  returnType: void;
1792
1792
  };
1793
+ /**
1794
+ * Starts mirroring the desktop to the sink.
1795
+ */
1796
+ 'Cast.startDesktopMirroring': {
1797
+ paramsType: [Protocol.Cast.StartDesktopMirroringRequest];
1798
+ returnType: void;
1799
+ };
1793
1800
  /**
1794
1801
  * Starts mirroring the tab to the sink.
1795
1802
  */
@@ -1114,6 +1114,11 @@ export namespace ProtocolProxyApi {
1114
1114
  */
1115
1115
  setSinkToUse(params: Protocol.Cast.SetSinkToUseRequest): Promise<void>;
1116
1116
 
1117
+ /**
1118
+ * Starts mirroring the desktop to the sink.
1119
+ */
1120
+ startDesktopMirroring(params: Protocol.Cast.StartDesktopMirroringRequest): Promise<void>;
1121
+
1117
1122
  /**
1118
1123
  * Starts mirroring the tab to the sink.
1119
1124
  */
@@ -3261,7 +3261,7 @@ export namespace Protocol {
3261
3261
  clientSecurityState?: Network.ClientSecurityState;
3262
3262
  }
3263
3263
 
3264
- export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'InvalidAttributionSourceEventId' | 'InvalidAttributionData' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'AttributionTriggerDataTooLarge' | 'AttributionEventSourceTriggerDataTooLarge');
3264
+ export type AttributionReportingIssueType = ('PermissionPolicyDisabled' | 'InvalidAttributionSourceEventId' | 'InvalidAttributionData' | 'AttributionSourceUntrustworthyOrigin' | 'AttributionUntrustworthyOrigin' | 'AttributionTriggerDataTooLarge' | 'AttributionEventSourceTriggerDataTooLarge' | 'InvalidAttributionSourceExpiry' | 'InvalidAttributionSourcePriority' | 'InvalidEventSourceTriggerData' | 'InvalidTriggerPriority' | 'InvalidTriggerDedupKey');
3265
3265
 
3266
3266
  /**
3267
3267
  * Details for issues around "Attribution Reporting API" usage.
@@ -4994,6 +4994,10 @@ export namespace Protocol {
4994
4994
  sinkName: string;
4995
4995
  }
4996
4996
 
4997
+ export interface StartDesktopMirroringRequest {
4998
+ sinkName: string;
4999
+ }
5000
+
4997
5001
  export interface StartTabMirroringRequest {
4998
5002
  sinkName: string;
4999
5003
  }
@@ -12353,7 +12357,7 @@ export namespace Protocol {
12353
12357
  /**
12354
12358
  * List of not restored reasons for back-forward cache.
12355
12359
  */
12356
- export type BackForwardCacheNotRestoredReason = ('NotMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'GrantedMediaStreamAccess' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'OptInUnloadHeaderNotPresent' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedNotificationsPermission' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'IndexedDBConnection' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'Dummy' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSession' | 'ContentMediaSessionService' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame');
12360
+ export type BackForwardCacheNotRestoredReason = ('NotMainFrame' | 'BackForwardCacheDisabled' | 'RelatedActiveContentsExist' | 'HTTPStatusNotOK' | 'SchemeNotHTTPOrHTTPS' | 'Loading' | 'WasGrantedMediaAccess' | 'DisableForRenderFrameHostCalled' | 'DomainNotAllowed' | 'HTTPMethodNotGET' | 'SubframeIsNavigating' | 'Timeout' | 'CacheLimit' | 'JavaScriptExecution' | 'RendererProcessKilled' | 'RendererProcessCrashed' | 'GrantedMediaStreamAccess' | 'SchedulerTrackedFeatureUsed' | 'ConflictingBrowsingInstance' | 'CacheFlushed' | 'ServiceWorkerVersionActivation' | 'SessionRestored' | 'ServiceWorkerPostMessage' | 'EnteredBackForwardCacheBeforeServiceWorkerHostAdded' | 'RenderFrameHostReused_SameSite' | 'RenderFrameHostReused_CrossSite' | 'ServiceWorkerClaim' | 'IgnoreEventAndEvict' | 'HaveInnerContents' | 'TimeoutPuttingInCache' | 'BackForwardCacheDisabledByLowMemory' | 'BackForwardCacheDisabledByCommandLine' | 'NetworkRequestDatapipeDrainedAsBytesConsumer' | 'NetworkRequestRedirected' | 'NetworkRequestTimeout' | 'NetworkExceedsBufferLimit' | 'NavigationCancelledWhileRestoring' | 'NotMostRecentNavigationEntry' | 'BackForwardCacheDisabledForPrerender' | 'UserAgentOverrideDiffers' | 'ForegroundCacheLimit' | 'BrowsingInstanceNotSwapped' | 'BackForwardCacheDisabledForDelegate' | 'OptInUnloadHeaderNotPresent' | 'UnloadHandlerExistsInMainFrame' | 'UnloadHandlerExistsInSubFrame' | 'ServiceWorkerUnregistration' | 'CacheControlNoStore' | 'CacheControlNoStoreCookieModified' | 'CacheControlNoStoreHTTPOnlyCookieModified' | 'NoResponseHead' | 'Unknown' | 'ActivationNavigationsDisallowedForBug1234857' | 'WebSocket' | 'WebTransport' | 'WebRTC' | 'MainResourceHasCacheControlNoStore' | 'MainResourceHasCacheControlNoCache' | 'SubresourceHasCacheControlNoStore' | 'SubresourceHasCacheControlNoCache' | 'ContainsPlugins' | 'DocumentLoaded' | 'DedicatedWorkerOrWorklet' | 'OutstandingNetworkRequestOthers' | 'OutstandingIndexedDBTransaction' | 'RequestedNotificationsPermission' | 'RequestedMIDIPermission' | 'RequestedAudioCapturePermission' | 'RequestedVideoCapturePermission' | 'RequestedBackForwardCacheBlockedSensors' | 'RequestedBackgroundWorkPermission' | 'BroadcastChannel' | 'IndexedDBConnection' | 'WebXR' | 'SharedWorker' | 'WebLocks' | 'WebHID' | 'WebShare' | 'RequestedStorageAccessGrant' | 'WebNfc' | 'OutstandingNetworkRequestFetch' | 'OutstandingNetworkRequestXHR' | 'AppBanner' | 'Printing' | 'WebDatabase' | 'PictureInPicture' | 'Portal' | 'SpeechRecognizer' | 'IdleManager' | 'PaymentManager' | 'SpeechSynthesis' | 'KeyboardLock' | 'WebOTPService' | 'OutstandingNetworkRequestDirectSocket' | 'InjectedJavascript' | 'InjectedStyleSheet' | 'Dummy' | 'ContentSecurityHandler' | 'ContentWebAuthenticationAPI' | 'ContentFileChooser' | 'ContentSerial' | 'ContentFileSystemAccess' | 'ContentMediaDevicesDispatcherHost' | 'ContentWebBluetooth' | 'ContentWebUSB' | 'ContentMediaSession' | 'ContentMediaSessionService' | 'ContentScreenReader' | 'EmbedderPopupBlockerTabHelper' | 'EmbedderSafeBrowsingTriggeredPopupBlocker' | 'EmbedderSafeBrowsingThreatDetails' | 'EmbedderAppBannerManager' | 'EmbedderDomDistillerViewerSource' | 'EmbedderDomDistillerSelfDeletingRequestDelegate' | 'EmbedderOomInterventionTabHelper' | 'EmbedderOfflinePage' | 'EmbedderChromePasswordManagerClientBindCredentialManager' | 'EmbedderPermissionRequestManager' | 'EmbedderModalDialog' | 'EmbedderExtensions' | 'EmbedderExtensionMessaging' | 'EmbedderExtensionMessagingForOpenPort' | 'EmbedderExtensionSentMessageToCachedFrame');
12357
12361
 
12358
12362
  /**
12359
12363
  * Types of not restored reasons for back-forward cache.