devtools-protocol 0.0.1079624 → 0.0.1081314

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.
@@ -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.1081314",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -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
  */
@@ -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.