devtools-protocol 0.0.1079624 → 0.0.1081726

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",
@@ -20251,6 +20251,22 @@
20251
20251
  }
20252
20252
  ]
20253
20253
  },
20254
+ {
20255
+ "name": "getFeatureState",
20256
+ "description": "Returns information about the feature state.",
20257
+ "parameters": [
20258
+ {
20259
+ "name": "featureState",
20260
+ "type": "string"
20261
+ }
20262
+ ],
20263
+ "returns": [
20264
+ {
20265
+ "name": "featureEnabled",
20266
+ "type": "boolean"
20267
+ }
20268
+ ]
20269
+ },
20254
20270
  {
20255
20271
  "name": "getProcessInfo",
20256
20272
  "description": "Returns information about all running processes.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1079624",
3
+ "version": "0.0.1081726",
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
@@ -9569,6 +9569,13 @@ experimental domain SystemInfo
9569
9569
  # supported.
9570
9570
  string commandLine
9571
9571
 
9572
+ # Returns information about the feature state.
9573
+ command getFeatureState
9574
+ parameters
9575
+ string featureState
9576
+ returns
9577
+ boolean featureEnabled
9578
+
9572
9579
  # Returns information about all running processes.
9573
9580
  command getProcessInfo
9574
9581
  returns
@@ -4165,6 +4165,13 @@ export namespace ProtocolMapping {
4165
4165
  paramsType: [];
4166
4166
  returnType: Protocol.SystemInfo.GetInfoResponse;
4167
4167
  };
4168
+ /**
4169
+ * Returns information about the feature state.
4170
+ */
4171
+ 'SystemInfo.getFeatureState': {
4172
+ paramsType: [Protocol.SystemInfo.GetFeatureStateRequest];
4173
+ returnType: Protocol.SystemInfo.GetFeatureStateResponse;
4174
+ };
4168
4175
  /**
4169
4176
  * Returns information about all running processes.
4170
4177
  */
@@ -3387,6 +3387,11 @@ export namespace ProtocolProxyApi {
3387
3387
  */
3388
3388
  getInfo(): Promise<Protocol.SystemInfo.GetInfoResponse>;
3389
3389
 
3390
+ /**
3391
+ * Returns information about the feature state.
3392
+ */
3393
+ getFeatureState(params: Protocol.SystemInfo.GetFeatureStateRequest): Promise<Protocol.SystemInfo.GetFeatureStateResponse>;
3394
+
3390
3395
  /**
3391
3396
  * Returns information about all running processes.
3392
3397
  */
@@ -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.
@@ -15249,6 +15249,14 @@ export namespace Protocol {
15249
15249
  commandLine: string;
15250
15250
  }
15251
15251
 
15252
+ export interface GetFeatureStateRequest {
15253
+ featureState: string;
15254
+ }
15255
+
15256
+ export interface GetFeatureStateResponse {
15257
+ featureEnabled: boolean;
15258
+ }
15259
+
15252
15260
  export interface GetProcessInfoResponse {
15253
15261
  /**
15254
15262
  * An array of process info blocks.