devtools-protocol 0.0.946318 → 0.0.946693

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.
@@ -4202,6 +4202,16 @@
4202
4202
  }
4203
4203
  ]
4204
4204
  },
4205
+ {
4206
+ "name": "startDesktopMirroring",
4207
+ "description": "Starts mirroring the desktop to the sink.",
4208
+ "parameters": [
4209
+ {
4210
+ "name": "sinkName",
4211
+ "type": "string"
4212
+ }
4213
+ ]
4214
+ },
4205
4215
  {
4206
4216
  "name": "startTabMirroring",
4207
4217
  "description": "Starts mirroring the tab to the sink.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.946318",
3
+ "version": "0.0.946693",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -1949,6 +1949,11 @@ experimental domain Cast
1949
1949
  parameters
1950
1950
  string sinkName
1951
1951
 
1952
+ # Starts mirroring the desktop to the sink.
1953
+ command startDesktopMirroring
1954
+ parameters
1955
+ string sinkName
1956
+
1952
1957
  # Starts mirroring the tab to the sink.
1953
1958
  command startTabMirroring
1954
1959
  parameters
@@ -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
  */
@@ -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
  }