@qandq/cloud-gcs-core 1.2.54-cloud-752-2 → 1.2.54-cloud-752-4

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.
@@ -5,6 +5,6 @@ export interface AircraftInfo {
5
5
  autopilotVersion: string;
6
6
  installedPlugins: AircraftPlugin[];
7
7
  notInstalledPlugins: AircraftPlugin[];
8
- videoStreamUrl: string;
8
+ videoStreamServer: string;
9
9
  config: Map<string, any>;
10
10
  }
@@ -57,6 +57,7 @@ export interface IAircraftApi {
57
57
  */
58
58
  getAircraftConfiguration(identifier: AircraftIdentifier): Map<string, any> | null;
59
59
  getAircraftInfo(identifier: AircraftIdentifier): AircraftInfo;
60
+ getAircraftVideoStreamUrl(identifier: AircraftIdentifier, streamName: string): string;
60
61
  /**
61
62
  * Returns true if the aircraft is a simulator.
62
63
  */
@@ -27,6 +27,7 @@ export interface ISelectedAircraftApi {
27
27
  */
28
28
  getAircraftConfiguration(): Map<string, any> | null;
29
29
  getAircraftInfo(): AircraftInfo;
30
+ getAircraftVideoStreamUrl(streamName: string): string;
30
31
  /**
31
32
  * Returns the latest telemetry data of the selected aircraft.
32
33
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qandq/cloud-gcs-core",
3
- "version": "1.2.54-cloud-752-2",
3
+ "version": "1.2.54-cloud-752-4",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -6,6 +6,6 @@ export interface AircraftInfo {
6
6
  autopilotVersion: string,
7
7
  installedPlugins: AircraftPlugin[],
8
8
  notInstalledPlugins: AircraftPlugin[],
9
- videoStreamUrl: string,
9
+ videoStreamServer: string,
10
10
  config: Map<string, any>
11
11
  }
@@ -69,6 +69,7 @@ export interface IAircraftApi {
69
69
  */
70
70
  getAircraftConfiguration(identifier: AircraftIdentifier): Map<string, any> | null;
71
71
  getAircraftInfo(identifier: AircraftIdentifier): AircraftInfo;
72
+ getAircraftVideoStreamUrl(identifier: AircraftIdentifier, streamName: string): string
72
73
 
73
74
  /**
74
75
  * Returns true if the aircraft is a simulator.
@@ -32,6 +32,7 @@ export interface ISelectedAircraftApi {
32
32
  */
33
33
  getAircraftConfiguration(): Map<string, any> | null;
34
34
  getAircraftInfo(): AircraftInfo;
35
+ getAircraftVideoStreamUrl(streamName: string): string
35
36
 
36
37
  /**
37
38
  * Returns the latest telemetry data of the selected aircraft.