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

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,4 +1,5 @@
1
1
  import { FailSafeAction } from "./FailSafeAction";
2
+ /** @deprecated Use any instead */
2
3
  export interface FailSafe {
3
4
  longAction: FailSafeAction;
4
5
  rescueOnLossOfControl: boolean;
@@ -1,4 +1,5 @@
1
1
  import { Coordinates2D } from "./telemetry/Coordinates2D";
2
+ /** @deprecated Use any instead */
2
3
  export interface GeoFence {
3
4
  maxAltitude: number;
4
5
  minAltitude: number;
@@ -5,4 +5,6 @@ export interface Waypoint {
5
5
  command: CommandTypeEnum;
6
6
  coordinates: Coordinates;
7
7
  parameters?: NavigationCommandParam;
8
+ isSelected: boolean;
9
+ prevSelected: boolean;
8
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qandq/cloud-gcs-core",
3
- "version": "1.2.56-CLOUD-873-2",
3
+ "version": "1.2.56-test",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1,5 +1,6 @@
1
1
  import {FailSafeAction} from "./FailSafeAction";
2
2
 
3
+ /** @deprecated Use any instead */
3
4
  export interface FailSafe {
4
5
  longAction: FailSafeAction;
5
6
  rescueOnLossOfControl: boolean;
@@ -1,5 +1,6 @@
1
1
  import {Coordinates2D} from "./telemetry/Coordinates2D";
2
2
 
3
+ /** @deprecated Use any instead */
3
4
  export interface GeoFence {
4
5
  maxAltitude: number;
5
6
  minAltitude: number;
@@ -6,4 +6,6 @@ export interface Waypoint {
6
6
  command: CommandTypeEnum;
7
7
  coordinates: Coordinates;
8
8
  parameters?: NavigationCommandParam;
9
+ isSelected: boolean;
10
+ prevSelected: boolean;
9
11
  }