@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.
- package/dist/models/AircraftInfo.d.ts +1 -1
- package/dist/plugin-contract/system-api/aircraft-api/IAircraftApi.d.ts +1 -0
- package/dist/plugin-contract/system-api/selected-aircraft-api/ISelectedAircraftApi.d.ts +1 -0
- package/package.json +1 -1
- package/src/models/AircraftInfo.ts +1 -1
- package/src/plugin-contract/system-api/aircraft-api/IAircraftApi.ts +1 -0
- package/src/plugin-contract/system-api/selected-aircraft-api/ISelectedAircraftApi.ts +1 -0
|
@@ -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
|
@@ -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.
|