@qandq/cloud-gcs-core 1.2.55 → 1.2.56-CLOUD-873-2

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.
@@ -1,9 +1,7 @@
1
- import { GeoFence } from "./GeoFence";
2
1
  import { Mission } from "./Mission";
3
- import { FailSafe } from "./FailSafe";
4
2
  export interface AircraftMission {
5
- geoFence: GeoFence;
3
+ geoFence: any;
6
4
  mission: Mission;
7
5
  randomCode: number;
8
- failSafe: FailSafe;
6
+ failSafe: any;
9
7
  }
@@ -7,6 +7,7 @@ import { AircraftPlugin } from "../../../models/AircraftPlugin";
7
7
  import { PluginCommandResponseData } from "../../../models/PluginCommandResponseData";
8
8
  import { PluginData } from "../../../models/PluginData";
9
9
  import { FlightIdentifier } from "../../../models/telemetry/FlightIdentifier";
10
+ import { AircraftTelemetry } from "../../../models/telemetry/AircraftTelemetry";
10
11
  export interface IAircraftApi {
11
12
  /**
12
13
  * Indicates whether the aircraft is being controlled.
@@ -24,6 +25,7 @@ export interface IAircraftApi {
24
25
  * Returns the list of controlled aircraft.
25
26
  */
26
27
  getControllingAircraft(): AircraftIdentifier[];
28
+ getTelemetry(aircraftId: number): AircraftTelemetry;
27
29
  /**
28
30
  * Returns the 3D model file URL of the aircraft.
29
31
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qandq/cloud-gcs-core",
3
- "version": "1.2.55",
3
+ "version": "1.2.56-CLOUD-873-2",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1,10 +1,8 @@
1
- import {GeoFence} from "./GeoFence";
2
1
  import {Mission} from "./Mission";
3
- import {FailSafe} from "./FailSafe";
4
2
 
5
3
  export interface AircraftMission {
6
- geoFence: GeoFence;
4
+ geoFence: any;
7
5
  mission: Mission;
8
6
  randomCode: number;
9
- failSafe: FailSafe
7
+ failSafe: any
10
8
  }
@@ -7,6 +7,7 @@ import { AircraftPlugin } from "../../../models/AircraftPlugin";
7
7
  import {PluginCommandResponseData} from "../../../models/PluginCommandResponseData";
8
8
  import {PluginData} from "../../../models/PluginData";
9
9
  import {FlightIdentifier} from "../../../models/telemetry/FlightIdentifier";
10
+ import {AircraftTelemetry} from "../../../models/telemetry/AircraftTelemetry";
10
11
 
11
12
  export interface IAircraftApi {
12
13
  /**
@@ -28,7 +29,7 @@ export interface IAircraftApi {
28
29
  * Returns the list of controlled aircraft.
29
30
  */
30
31
  getControllingAircraft(): AircraftIdentifier[];
31
-
32
+ getTelemetry(aircraftId: number): AircraftTelemetry
32
33
  /**
33
34
  * Returns the 3D model file URL of the aircraft.
34
35
  */