devtools-protocol 0.0.1023572 → 0.0.1025565

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.
@@ -10674,6 +10674,7 @@
10674
10674
  "TextTrack",
10675
10675
  "XHR",
10676
10676
  "Fetch",
10677
+ "Prefetch",
10677
10678
  "EventSource",
10678
10679
  "WebSocket",
10679
10680
  "Manifest",
@@ -11130,6 +11131,17 @@
11130
11131
  "name": "certificateTransparencyCompliance",
11131
11132
  "description": "Whether the request complied with Certificate Transparency policy",
11132
11133
  "$ref": "CertificateTransparencyCompliance"
11134
+ },
11135
+ {
11136
+ "name": "serverSignatureAlgorithm",
11137
+ "description": "The signature algorithm used by the server in the TLS server signature,\nrepresented as a TLS SignatureScheme code point. Omitted if not\napplicable or not known.",
11138
+ "optional": true,
11139
+ "type": "integer"
11140
+ },
11141
+ {
11142
+ "name": "encryptedClientHello",
11143
+ "description": "Whether the connection used Encrypted ClientHello",
11144
+ "type": "boolean"
11133
11145
  }
11134
11146
  ]
11135
11147
  },
@@ -15194,6 +15206,7 @@
15194
15206
  "screen-wake-lock",
15195
15207
  "serial",
15196
15208
  "shared-autofill",
15209
+ "shared-storage",
15197
15210
  "storage-access-api",
15198
15211
  "sync-xhr",
15199
15212
  "trust-token-redemption",
@@ -16241,9 +16254,7 @@
16241
16254
  "TriggerBackgrounded",
16242
16255
  "EmbedderTriggeredAndSameOriginRedirected",
16243
16256
  "EmbedderTriggeredAndCrossOriginRedirected",
16244
- "EmbedderTriggeredAndDestroyed",
16245
- "MemoryLimitExceeded",
16246
- "FailToGetMemoryUsage"
16257
+ "EmbedderTriggeredAndDestroyed"
16247
16258
  ]
16248
16259
  }
16249
16260
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1023572",
3
+ "version": "0.0.1025565",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -4875,6 +4875,7 @@ domain Network
4875
4875
  TextTrack
4876
4876
  XHR
4877
4877
  Fetch
4878
+ Prefetch
4878
4879
  EventSource
4879
4880
  WebSocket
4880
4881
  Manifest
@@ -5103,6 +5104,12 @@ domain Network
5103
5104
  array of SignedCertificateTimestamp signedCertificateTimestampList
5104
5105
  # Whether the request complied with Certificate Transparency policy
5105
5106
  CertificateTransparencyCompliance certificateTransparencyCompliance
5107
+ # The signature algorithm used by the server in the TLS server signature,
5108
+ # represented as a TLS SignatureScheme code point. Omitted if not
5109
+ # applicable or not known.
5110
+ optional integer serverSignatureAlgorithm
5111
+ # Whether the connection used Encrypted ClientHello
5112
+ boolean encryptedClientHello
5106
5113
 
5107
5114
  # Whether the request complied with Certificate Transparency policy.
5108
5115
  type CertificateTransparencyCompliance extends string
@@ -7109,6 +7116,7 @@ domain Page
7109
7116
  screen-wake-lock
7110
7117
  serial
7111
7118
  shared-autofill
7119
+ shared-storage
7112
7120
  storage-access-api
7113
7121
  sync-xhr
7114
7122
  trust-token-redemption
@@ -8412,10 +8420,6 @@ domain Page
8412
8420
  EmbedderTriggeredAndSameOriginRedirected
8413
8421
  EmbedderTriggeredAndCrossOriginRedirected
8414
8422
  EmbedderTriggeredAndDestroyed
8415
- MemoryLimitExceeded
8416
- # Prerenders can be cancelled when Chrome uses excessive memory. This is
8417
- # recorded when it fails to get the memory usage.
8418
- FailToGetMemoryUsage
8419
8423
 
8420
8424
  # Fired when a prerender attempt is completed.
8421
8425
  event prerenderAttemptCompleted
@@ -9230,7 +9230,7 @@ export namespace Protocol {
9230
9230
  /**
9231
9231
  * Resource type as it was perceived by the rendering engine.
9232
9232
  */
9233
- export type ResourceType = ('Document' | 'Stylesheet' | 'Image' | 'Media' | 'Font' | 'Script' | 'TextTrack' | 'XHR' | 'Fetch' | 'EventSource' | 'WebSocket' | 'Manifest' | 'SignedExchange' | 'Ping' | 'CSPViolationReport' | 'Preflight' | 'Other');
9233
+ export type ResourceType = ('Document' | 'Stylesheet' | 'Image' | 'Media' | 'Font' | 'Script' | 'TextTrack' | 'XHR' | 'Fetch' | 'Prefetch' | 'EventSource' | 'WebSocket' | 'Manifest' | 'SignedExchange' | 'Ping' | 'CSPViolationReport' | 'Preflight' | 'Other');
9234
9234
 
9235
9235
  /**
9236
9236
  * Unique loader identifier.
@@ -9550,6 +9550,16 @@ export namespace Protocol {
9550
9550
  * Whether the request complied with Certificate Transparency policy
9551
9551
  */
9552
9552
  certificateTransparencyCompliance: CertificateTransparencyCompliance;
9553
+ /**
9554
+ * The signature algorithm used by the server in the TLS server signature,
9555
+ * represented as a TLS SignatureScheme code point. Omitted if not
9556
+ * applicable or not known.
9557
+ */
9558
+ serverSignatureAlgorithm?: integer;
9559
+ /**
9560
+ * Whether the connection used Encrypted ClientHello
9561
+ */
9562
+ encryptedClientHello: boolean;
9553
9563
  }
9554
9564
 
9555
9565
  /**
@@ -12207,7 +12217,7 @@ export namespace Protocol {
12207
12217
  * All Permissions Policy features. This enum should match the one defined
12208
12218
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
12209
12219
  */
12210
- export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'federated-credentials' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
12220
+ export type PermissionsPolicyFeature = ('accelerometer' | 'ambient-light-sensor' | 'attribution-reporting' | 'autoplay' | 'bluetooth' | 'browsing-topics' | 'camera' | 'ch-dpr' | 'ch-device-memory' | 'ch-downlink' | 'ch-ect' | 'ch-prefers-color-scheme' | 'ch-rtt' | 'ch-save-data' | 'ch-ua' | 'ch-ua-arch' | 'ch-ua-bitness' | 'ch-ua-platform' | 'ch-ua-model' | 'ch-ua-mobile' | 'ch-ua-full' | 'ch-ua-full-version' | 'ch-ua-full-version-list' | 'ch-ua-platform-version' | 'ch-ua-reduced' | 'ch-ua-wow64' | 'ch-viewport-height' | 'ch-viewport-width' | 'ch-width' | 'clipboard-read' | 'clipboard-write' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'federated-credentials' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'idle-detection' | 'interest-cohort' | 'join-ad-interest-group' | 'keyboard-map' | 'local-fonts' | 'magnetometer' | 'microphone' | 'midi' | 'otp-credentials' | 'payment' | 'picture-in-picture' | 'publickey-credentials-get' | 'run-ad-auction' | 'screen-wake-lock' | 'serial' | 'shared-autofill' | 'shared-storage' | 'storage-access-api' | 'sync-xhr' | 'trust-token-redemption' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
12211
12221
 
12212
12222
  /**
12213
12223
  * Reason for a permissions policy feature to be disabled.
@@ -12748,7 +12758,7 @@ export namespace Protocol {
12748
12758
  /**
12749
12759
  * List of FinalStatus reasons for Prerender2.
12750
12760
  */
12751
- export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'CrossOriginRedirect' | 'CrossOriginNavigation' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndSameOriginRedirected' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'EmbedderTriggeredAndDestroyed' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage');
12761
+ export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | 'CrossOriginRedirect' | 'CrossOriginNavigation' | 'InvalidSchemeRedirect' | 'InvalidSchemeNavigation' | 'InProgressNavigation' | 'NavigationRequestBlockedByCsp' | 'MainFrameNavigation' | 'MojoBinderPolicy' | 'RendererProcessCrashed' | 'RendererProcessKilled' | 'Download' | 'TriggerDestroyed' | 'NavigationNotCommitted' | 'NavigationBadHttpStatus' | 'ClientCertRequested' | 'NavigationRequestNetworkError' | 'MaxNumOfRunningPrerendersExceeded' | 'CancelAllHostsForTesting' | 'DidFailLoad' | 'Stop' | 'SslCertificateError' | 'LoginAuthRequested' | 'UaChangeRequiresReload' | 'BlockedByClient' | 'AudioOutputDeviceRequested' | 'MixedContent' | 'TriggerBackgrounded' | 'EmbedderTriggeredAndSameOriginRedirected' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'EmbedderTriggeredAndDestroyed');
12752
12762
 
12753
12763
  export interface AddScriptToEvaluateOnLoadRequest {
12754
12764
  scriptSource: string;