devtools-protocol 0.0.1081314 → 0.0.1082281

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.
@@ -1660,14 +1660,14 @@
1660
1660
  "enum": [
1661
1661
  "ShouldEmbargo",
1662
1662
  "TooManyRequests",
1663
- "ManifestListHttpNotFound",
1664
- "ManifestListNoResponse",
1665
- "ManifestListInvalidResponse",
1666
- "ManifestNotInManifestList",
1667
- "ManifestListTooBig",
1668
- "ManifestHttpNotFound",
1669
- "ManifestNoResponse",
1670
- "ManifestInvalidResponse",
1663
+ "WellKnownHttpNotFound",
1664
+ "WellKnownNoResponse",
1665
+ "WellKnownInvalidResponse",
1666
+ "ConfigNotInWellKnown",
1667
+ "WellKnownTooBig",
1668
+ "ConfigHttpNotFound",
1669
+ "ConfigNoResponse",
1670
+ "ConfigInvalidResponse",
1671
1671
  "ClientMetadataHttpNotFound",
1672
1672
  "ClientMetadataNoResponse",
1673
1673
  "ClientMetadataInvalidResponse",
@@ -8060,7 +8060,6 @@
8060
8060
  "type": "string",
8061
8061
  "enum": [
8062
8062
  "avif",
8063
- "jxl",
8064
8063
  "webp"
8065
8064
  ]
8066
8065
  }
@@ -15372,6 +15371,7 @@
15372
15371
  "serial",
15373
15372
  "shared-autofill",
15374
15373
  "shared-storage",
15374
+ "smart-card",
15375
15375
  "storage-access",
15376
15376
  "sync-xhr",
15377
15377
  "trust-token-redemption",
@@ -16432,7 +16432,8 @@
16432
16432
  "SameSiteCrossOriginNavigation",
16433
16433
  "SameSiteCrossOriginRedirectNotOptIn",
16434
16434
  "SameSiteCrossOriginNavigationNotOptIn",
16435
- "ActivationNavigationParameterMismatch"
16435
+ "ActivationNavigationParameterMismatch",
16436
+ "ActivatedInBackground"
16436
16437
  ]
16437
16438
  }
16438
16439
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1081314",
3
+ "version": "0.0.1082281",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -838,14 +838,14 @@ experimental domain Audits
838
838
  enum
839
839
  ShouldEmbargo
840
840
  TooManyRequests
841
- ManifestListHttpNotFound
842
- ManifestListNoResponse
843
- ManifestListInvalidResponse
844
- ManifestNotInManifestList
845
- ManifestListTooBig
846
- ManifestHttpNotFound
847
- ManifestNoResponse
848
- ManifestInvalidResponse
841
+ WellKnownHttpNotFound
842
+ WellKnownNoResponse
843
+ WellKnownInvalidResponse
844
+ ConfigNotInWellKnown
845
+ WellKnownTooBig
846
+ ConfigHttpNotFound
847
+ ConfigNoResponse
848
+ ConfigInvalidResponse
849
849
  ClientMetadataHttpNotFound
850
850
  ClientMetadataNoResponse
851
851
  ClientMetadataInvalidResponse
@@ -3897,7 +3897,6 @@ domain Emulation
3897
3897
  experimental type DisabledImageType extends string
3898
3898
  enum
3899
3899
  avif
3900
- jxl
3901
3900
  webp
3902
3901
 
3903
3902
  experimental command setDisabledImageTypes
@@ -7220,6 +7219,7 @@ domain Page
7220
7219
  serial
7221
7220
  shared-autofill
7222
7221
  shared-storage
7222
+ smart-card
7223
7223
  storage-access
7224
7224
  sync-xhr
7225
7225
  trust-token-redemption
@@ -8547,6 +8547,7 @@ domain Page
8547
8547
  SameSiteCrossOriginRedirectNotOptIn
8548
8548
  SameSiteCrossOriginNavigationNotOptIn
8549
8549
  ActivationNavigationParameterMismatch
8550
+ ActivatedInBackground
8550
8551
 
8551
8552
  # Fired when a prerender attempt is completed.
8552
8553
  experimental event prerenderAttemptCompleted
@@ -3466,7 +3466,7 @@ export namespace Protocol {
3466
3466
  * third_party/blink/public/mojom/devtools/inspector_issue.mojom to include
3467
3467
  * all cases except for success.
3468
3468
  */
3469
- export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'ManifestListHttpNotFound' | 'ManifestListNoResponse' | 'ManifestListInvalidResponse' | 'ManifestNotInManifestList' | 'ManifestListTooBig' | 'ManifestHttpNotFound' | 'ManifestNoResponse' | 'ManifestInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
3469
+ export type FederatedAuthRequestIssueReason = ('ShouldEmbargo' | 'TooManyRequests' | 'WellKnownHttpNotFound' | 'WellKnownNoResponse' | 'WellKnownInvalidResponse' | 'ConfigNotInWellKnown' | 'WellKnownTooBig' | 'ConfigHttpNotFound' | 'ConfigNoResponse' | 'ConfigInvalidResponse' | 'ClientMetadataHttpNotFound' | 'ClientMetadataNoResponse' | 'ClientMetadataInvalidResponse' | 'DisabledInSettings' | 'ErrorFetchingSignin' | 'InvalidSigninResponse' | 'AccountsHttpNotFound' | 'AccountsNoResponse' | 'AccountsInvalidResponse' | 'IdTokenHttpNotFound' | 'IdTokenNoResponse' | 'IdTokenInvalidResponse' | 'IdTokenInvalidRequest' | 'ErrorIdToken' | 'Canceled' | 'RpPageNotVisible');
3470
3470
 
3471
3471
  /**
3472
3472
  * This issue tracks client hints related issues. It's used to deprecate old
@@ -7508,7 +7508,7 @@ export namespace Protocol {
7508
7508
  /**
7509
7509
  * Enum of image types that can be disabled.
7510
7510
  */
7511
- export type DisabledImageType = ('avif' | 'jxl' | 'webp');
7511
+ export type DisabledImageType = ('avif' | 'webp');
7512
7512
 
7513
7513
  export interface CanEmulateResponse {
7514
7514
  /**
@@ -12324,7 +12324,7 @@ export namespace Protocol {
12324
12324
  * All Permissions Policy features. This enum should match the one defined
12325
12325
  * in third_party/blink/renderer/core/permissions_policy/permissions_policy_features.json5.
12326
12326
  */
12327
- 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-prefers-reduced-motion' | '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' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | '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' | 'sync-xhr' | 'trust-token-redemption' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
12327
+ 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-prefers-reduced-motion' | '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' | 'compute-pressure' | 'cross-origin-isolated' | 'direct-sockets' | 'display-capture' | 'document-domain' | 'encrypted-media' | 'execution-while-out-of-viewport' | 'execution-while-not-rendered' | 'focus-without-user-activation' | 'fullscreen' | 'frobulate' | 'gamepad' | 'geolocation' | 'gyroscope' | 'hid' | 'identity-credentials-get' | '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' | 'smart-card' | 'storage-access' | 'sync-xhr' | 'trust-token-redemption' | 'unload' | 'usb' | 'vertical-scroll' | 'web-share' | 'window-placement' | 'xr-spatial-tracking');
12328
12328
 
12329
12329
  /**
12330
12330
  * Reason for a permissions policy feature to be disabled.
@@ -12865,7 +12865,7 @@ export namespace Protocol {
12865
12865
  /**
12866
12866
  * List of FinalStatus reasons for Prerender2.
12867
12867
  */
12868
- export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | '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' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch');
12868
+ export type PrerenderFinalStatus = ('Activated' | 'Destroyed' | 'LowEndDevice' | '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' | 'EmbedderTriggeredAndCrossOriginRedirected' | 'MemoryLimitExceeded' | 'FailToGetMemoryUsage' | 'DataSaverEnabled' | 'HasEffectiveUrl' | 'ActivatedBeforeStarted' | 'InactivePageRestriction' | 'StartFailed' | 'TimeoutBackgrounded' | 'CrossSiteRedirect' | 'CrossSiteNavigation' | 'SameSiteCrossOriginRedirect' | 'SameSiteCrossOriginNavigation' | 'SameSiteCrossOriginRedirectNotOptIn' | 'SameSiteCrossOriginNavigationNotOptIn' | 'ActivationNavigationParameterMismatch' | 'ActivatedInBackground');
12869
12869
 
12870
12870
  export interface AddScriptToEvaluateOnLoadRequest {
12871
12871
  scriptSource: string;