@qandq/cloud-gcs-core 1.2.50 → 1.2.51
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/index.d.ts +1 -2
- package/dist/plugin-contract/interfaces/IEventListener.d.ts +2 -2
- package/dist/plugin-contract/system-api/aircraft-api/IAircraftApi.d.ts +2 -2
- package/dist/plugin-contract/system-api/selected-aircraft-api/ISelectedAircraftApi.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.ts +0 -2
- package/src/plugin-contract/interfaces/IEventListener.ts +2 -2
- package/src/plugin-contract/system-api/aircraft-api/IAircraftApi.ts +2 -2
- package/src/plugin-contract/system-api/selected-aircraft-api/ISelectedAircraftApi.ts +2 -2
- package/dist/models/FlightInfo.d.ts +0 -5
- package/src/models/FlightInfo.ts +0 -6
package/dist/index.d.ts
CHANGED
|
@@ -94,6 +94,5 @@ import { TelemetryHeader } from "./models/TelemetryHeader";
|
|
|
94
94
|
import { FlightEventMessage } from "./models/FlightEventMessage";
|
|
95
95
|
import { FlightEventMessageInput } from "./models/FlightEventMessageInput";
|
|
96
96
|
import { FlightEventTarget } from "./models/FlightEventTarget";
|
|
97
|
-
|
|
98
|
-
export type { IPlugin, IPluginApi, IPluginEventManager, IPluginServiceManager, IPluginUIManager, IEventListener, ISystemApi, IAircraftLocationApi, ISelectedAircraftApi, ITelemetryApi, IDataAnalyzeApi, IUnitsApi, IUserApi, IHandOverApi, IAircraftApi, AircraftConfiguration, AircraftLocation, AircraftTelemetry, AircraftWarningStatuses, AirInfo, AttitudeInfo, BatteryInfo, ClimbInfo, CommandInfo, Coordinates2D, EngineInfo, HeadingInfo, IndexedWaypoint, PluginService, MenuItem, PluginEventArgs, PluginEventCallback, PluginServiceInformation, SpeedInfo, StatusInfo, Waypoint, User, AircraftPlugin, AircraftPilotageStatus, AircraftState, AircraftStatusTopicMessage, PilotUserHealth, GCSController, UserStatusTopicSubscriptionMessage, HandOverResponseData, HandOverCommandData, AircraftIdentifier, GPSInfo, PluginTelemetryData, VtolControlInfo, VtolQuadInfo, LinkHealthStatus, AircraftMission, GeoFence, FailSafe, NavigationCommandParam, FailSafeAction, FlightInfo, Coordinates, FlightIdentifier, PluginCallback, PluginCommandResponseData, UserStatus, ICurrentUser, UIPluginCommand, IFlightEventApi, IMissionApi, IUserAuth, Mission, PilotUserStatus, TelemetryHeader, FlightEventMessage, FlightEventMessageInput };
|
|
97
|
+
export type { IPlugin, IPluginApi, IPluginEventManager, IPluginServiceManager, IPluginUIManager, IEventListener, ISystemApi, IAircraftLocationApi, ISelectedAircraftApi, ITelemetryApi, IDataAnalyzeApi, IUnitsApi, IUserApi, IHandOverApi, IAircraftApi, AircraftConfiguration, AircraftLocation, AircraftTelemetry, AircraftWarningStatuses, AirInfo, AttitudeInfo, BatteryInfo, ClimbInfo, CommandInfo, Coordinates2D, EngineInfo, HeadingInfo, IndexedWaypoint, PluginService, MenuItem, PluginEventArgs, PluginEventCallback, PluginServiceInformation, SpeedInfo, StatusInfo, Waypoint, User, AircraftPlugin, AircraftPilotageStatus, AircraftState, AircraftStatusTopicMessage, PilotUserHealth, GCSController, UserStatusTopicSubscriptionMessage, HandOverResponseData, HandOverCommandData, AircraftIdentifier, GPSInfo, PluginTelemetryData, VtolControlInfo, VtolQuadInfo, LinkHealthStatus, AircraftMission, GeoFence, FailSafe, NavigationCommandParam, FailSafeAction, Coordinates, FlightIdentifier, PluginCallback, PluginCommandResponseData, UserStatus, ICurrentUser, UIPluginCommand, IFlightEventApi, IMissionApi, IUserAuth, Mission, PilotUserStatus, TelemetryHeader, FlightEventMessage, FlightEventMessageInput };
|
|
99
98
|
export { SensorStatus, CommandTypeEnum, CommandSourceEnum, GPSCorrectionStatusEnum, UnitTypeEnum, GPSFixStatusEnum, PayloadRetractStatusEnum, TravelStatusEnum, UnitSystemEnum, WarningStatusEnum, PilotageStateEnum, UserTypeEnum, AircraftHealthEnum, HandOverCommandType, IndicatorStatusEnum, LogLevel, FailSafeTypeEnum, PluginNames, PluginServiceNames, PilotageStatus, PluginData, ClientType, IPluginDataAnalysis, FlightEventTarget };
|
|
@@ -56,7 +56,7 @@ export interface IEventListener {
|
|
|
56
56
|
* Triggered when the active aircraft changes.
|
|
57
57
|
*/
|
|
58
58
|
onActiveAircraftChanged(callback: any): void;
|
|
59
|
-
|
|
59
|
+
onFlightIdentifierChanged(callback: any): void;
|
|
60
60
|
/**
|
|
61
61
|
* Triggered when aircraft parameters change.
|
|
62
62
|
*/
|
|
@@ -125,5 +125,5 @@ export interface IEventListener {
|
|
|
125
125
|
removeUnitTypeChanged(callback: any): void;
|
|
126
126
|
removeInsertFlightEvent(callback: any): void;
|
|
127
127
|
removeAircraftParametersChanged(callback: any): void;
|
|
128
|
-
|
|
128
|
+
removeFlightIdentifierChanged(callback: any): void;
|
|
129
129
|
}
|
|
@@ -6,7 +6,7 @@ import { CommandTypeEnum } from "../../../models/enums/CommandTypeEnum";
|
|
|
6
6
|
import { AircraftPlugin } from "../../../models/AircraftPlugin";
|
|
7
7
|
import { PluginCommandResponseData } from "../../../models/PluginCommandResponseData";
|
|
8
8
|
import { PluginData } from "../../../models/PluginData";
|
|
9
|
-
import {
|
|
9
|
+
import { FlightIdentifier } from "../../../models/telemetry/FlightIdentifier";
|
|
10
10
|
export interface IAircraftApi {
|
|
11
11
|
/**
|
|
12
12
|
* Indicates whether the aircraft is being controlled.
|
|
@@ -64,5 +64,5 @@ export interface IAircraftApi {
|
|
|
64
64
|
* Lists the installed plugins in the mission controller.
|
|
65
65
|
*/
|
|
66
66
|
getAircraftPlugins(aircraftIdentifier: AircraftIdentifier): AircraftPlugin[];
|
|
67
|
-
|
|
67
|
+
getFlightIdentifier(aircraftIdentifier: AircraftIdentifier): FlightIdentifier;
|
|
68
68
|
}
|
|
@@ -4,7 +4,7 @@ import { AircraftLocation } from "../../../models/AircraftLocation";
|
|
|
4
4
|
import { AircraftIdentifier } from "../../../models/AircraftIdentifier";
|
|
5
5
|
import { CommandTypeEnum } from "../../../models/enums/CommandTypeEnum";
|
|
6
6
|
import { PluginData } from "../../../models/PluginData";
|
|
7
|
-
import {
|
|
7
|
+
import { FlightIdentifier } from "../../../models/telemetry/FlightIdentifier";
|
|
8
8
|
export interface ISelectedAircraftApi {
|
|
9
9
|
/**
|
|
10
10
|
* Indicates whether the selected aircraft is being controlled.
|
|
@@ -55,5 +55,5 @@ export interface ISelectedAircraftApi {
|
|
|
55
55
|
* Returns the configuration of this plugin on the selected aircraft.
|
|
56
56
|
*/
|
|
57
57
|
getPluginConfig(): any;
|
|
58
|
-
|
|
58
|
+
getFlightIdentifier(): FlightIdentifier;
|
|
59
59
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -100,7 +100,6 @@ import {TelemetryHeader} from "./models/TelemetryHeader";
|
|
|
100
100
|
import {FlightEventMessage} from "./models/FlightEventMessage";
|
|
101
101
|
import {FlightEventMessageInput} from "./models/FlightEventMessageInput";
|
|
102
102
|
import {FlightEventTarget} from "./models/FlightEventTarget";
|
|
103
|
-
import { FlightInfo } from "./models/FlightInfo";
|
|
104
103
|
|
|
105
104
|
export type {
|
|
106
105
|
IPlugin,
|
|
@@ -160,7 +159,6 @@ export type {
|
|
|
160
159
|
FailSafe,
|
|
161
160
|
NavigationCommandParam,
|
|
162
161
|
FailSafeAction,
|
|
163
|
-
FlightInfo,
|
|
164
162
|
Coordinates,
|
|
165
163
|
FlightIdentifier,
|
|
166
164
|
PluginCallback,
|
|
@@ -72,7 +72,7 @@ export interface IEventListener {
|
|
|
72
72
|
* Triggered when the active aircraft changes.
|
|
73
73
|
*/
|
|
74
74
|
onActiveAircraftChanged(callback: any): void;
|
|
75
|
-
|
|
75
|
+
onFlightIdentifierChanged(callback: any): void;
|
|
76
76
|
|
|
77
77
|
/**
|
|
78
78
|
* Triggered when aircraft parameters change.
|
|
@@ -153,5 +153,5 @@ export interface IEventListener {
|
|
|
153
153
|
removeUnitTypeChanged(callback: any): void;
|
|
154
154
|
removeInsertFlightEvent(callback: any): void
|
|
155
155
|
removeAircraftParametersChanged(callback: any): void;
|
|
156
|
-
|
|
156
|
+
removeFlightIdentifierChanged(callback: any): void;
|
|
157
157
|
}
|
|
@@ -6,7 +6,7 @@ import {CommandTypeEnum} from "../../../models/enums/CommandTypeEnum";
|
|
|
6
6
|
import { AircraftPlugin } from "../../../models/AircraftPlugin";
|
|
7
7
|
import {PluginCommandResponseData} from "../../../models/PluginCommandResponseData";
|
|
8
8
|
import {PluginData} from "../../../models/PluginData";
|
|
9
|
-
import {
|
|
9
|
+
import {FlightIdentifier} from "../../../models/telemetry/FlightIdentifier";
|
|
10
10
|
|
|
11
11
|
export interface IAircraftApi {
|
|
12
12
|
/**
|
|
@@ -79,5 +79,5 @@ export interface IAircraftApi {
|
|
|
79
79
|
*/
|
|
80
80
|
getAircraftPlugins(aircraftIdentifier: AircraftIdentifier): AircraftPlugin[];
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
getFlightIdentifier(aircraftIdentifier: AircraftIdentifier): FlightIdentifier;
|
|
83
83
|
}
|
|
@@ -4,7 +4,7 @@ import {AircraftLocation} from "../../../models/AircraftLocation";
|
|
|
4
4
|
import {AircraftIdentifier} from "../../../models/AircraftIdentifier";
|
|
5
5
|
import {CommandTypeEnum} from "../../../models/enums/CommandTypeEnum";
|
|
6
6
|
import {PluginData} from "../../../models/PluginData";
|
|
7
|
-
import {
|
|
7
|
+
import {FlightIdentifier} from "../../../models/telemetry/FlightIdentifier";
|
|
8
8
|
|
|
9
9
|
export interface ISelectedAircraftApi {
|
|
10
10
|
/**
|
|
@@ -67,6 +67,6 @@ export interface ISelectedAircraftApi {
|
|
|
67
67
|
* Returns the configuration of this plugin on the selected aircraft.
|
|
68
68
|
*/
|
|
69
69
|
getPluginConfig(): any;
|
|
70
|
-
|
|
70
|
+
getFlightIdentifier(): FlightIdentifier;
|
|
71
71
|
}
|
|
72
72
|
|