@qandq/cloud-gcs-core 1.2.19 → 1.2.21
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 +3 -1
- package/dist/models/NavigationCommandParam.d.ts +4 -0
- package/dist/models/constants/PluginNames.d.ts +5 -0
- package/dist/models/constants/PluginServiceNames.d.ts +5 -0
- package/package.json +1 -1
- package/src/index.ts +6 -1
- package/src/models/NavigationCommandParam.ts +4 -0
- package/src/models/constants/PluginNames.ts +5 -0
- package/src/models/constants/PluginServiceNames.ts +5 -0
package/dist/index.d.ts
CHANGED
|
@@ -75,5 +75,7 @@ import { CommandTypeEnum } from "./models/enums/CommandTypeEnum";
|
|
|
75
75
|
import { MessageLog } from "./models/MessageLog";
|
|
76
76
|
import { SensorStatus } from "./models/enums/SensorStatus";
|
|
77
77
|
import { FailSafeTypeEnum } from "./models/enums/FailSafeTypeEnum";
|
|
78
|
+
import { PluginNames } from "./models/constants/PluginNames";
|
|
79
|
+
import { PluginServiceNames } from "./models/constants/PluginServiceNames";
|
|
78
80
|
export type { IPlugin, IPluginApi, IPluginEventManager, IPluginServiceManager, IPluginUIManager, IEventListener, ISystemApi, IAircraftLocationApi, ISelectedAircraftApi, ITelemetryApi, 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, AircraftPilotageStatus, AircraftState, AircraftStatusTopicMessage, PilotUserHealth, GCSController, UserStatusTopicSubscriptionMessage, HandOverResponseData, HandOverCommandData, AircraftIdentifier, GPSInfo, PluginTelemetryData, VtolControlInfo, LinkHealthStatus, AircraftMission, GeoFence, FailSafe, NavigationCommandParam, FailSafeAction, Coordinates, FlightIdentifier, PluginCallback, UserStatus, MessageLog };
|
|
79
|
-
export { SensorStatus, CommandTypeEnum, CommandEnum, CommandSourceEnum, GPSCorrectionStatusEnum, UnitTypeEnum, GPSFixStatusEnum, PayloadRetractStatusEnum, TravelStatusEnum, UnitSystemEnum, WarningStatusEnum, PilotageStateEnum, UserTypeEnum, AircraftHealthEnum, HandOverCommandType, IndicatorStatusEnum, LogLevel, FailSafeTypeEnum };
|
|
81
|
+
export { SensorStatus, CommandTypeEnum, CommandEnum, CommandSourceEnum, GPSCorrectionStatusEnum, UnitTypeEnum, GPSFixStatusEnum, PayloadRetractStatusEnum, TravelStatusEnum, UnitSystemEnum, WarningStatusEnum, PilotageStateEnum, UserTypeEnum, AircraftHealthEnum, HandOverCommandType, IndicatorStatusEnum, LogLevel, FailSafeTypeEnum, PluginNames, PluginServiceNames };
|
|
@@ -19,6 +19,8 @@ export interface NavigationCommandParam {
|
|
|
19
19
|
vtolLandRelativeAltitude: number;
|
|
20
20
|
followTrack: boolean;
|
|
21
21
|
isLoiterClockwise: boolean;
|
|
22
|
+
vtolSpeedUpDirection: number;
|
|
23
|
+
chuteDeploymentAltitude: number;
|
|
22
24
|
toString(): string;
|
|
23
25
|
getParameters(): {
|
|
24
26
|
taxiThrottle: number;
|
|
@@ -41,5 +43,7 @@ export interface NavigationCommandParam {
|
|
|
41
43
|
loiterRadius: number;
|
|
42
44
|
vtolLandHeadWind: number;
|
|
43
45
|
loiterExitAngle: number;
|
|
46
|
+
vtolSpeedUpDirection: number;
|
|
47
|
+
chuteDeploymentAltitude: number;
|
|
44
48
|
};
|
|
45
49
|
}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -80,6 +80,9 @@ import {CommandTypeEnum} from "./models/enums/CommandTypeEnum";
|
|
|
80
80
|
import {MessageLog} from "./models/MessageLog";
|
|
81
81
|
import {SensorStatus} from "./models/enums/SensorStatus"
|
|
82
82
|
import { FailSafeTypeEnum } from "./models/enums/FailSafeTypeEnum";
|
|
83
|
+
import { PluginNames } from "./models/constants/PluginNames";
|
|
84
|
+
import { PluginServiceNames } from "./models/constants/PluginServiceNames";
|
|
85
|
+
|
|
83
86
|
export type {
|
|
84
87
|
IPlugin,
|
|
85
88
|
IPluginApi,
|
|
@@ -160,5 +163,7 @@ export {
|
|
|
160
163
|
HandOverCommandType,
|
|
161
164
|
IndicatorStatusEnum,
|
|
162
165
|
LogLevel,
|
|
163
|
-
FailSafeTypeEnum
|
|
166
|
+
FailSafeTypeEnum,
|
|
167
|
+
PluginNames,
|
|
168
|
+
PluginServiceNames
|
|
164
169
|
};
|
|
@@ -19,6 +19,8 @@ export interface NavigationCommandParam {
|
|
|
19
19
|
vtolLandRelativeAltitude: number;
|
|
20
20
|
followTrack: boolean;
|
|
21
21
|
isLoiterClockwise: boolean;
|
|
22
|
+
vtolSpeedUpDirection: number
|
|
23
|
+
chuteDeploymentAltitude: number
|
|
22
24
|
|
|
23
25
|
toString(): string;
|
|
24
26
|
getParameters(): {
|
|
@@ -42,5 +44,7 @@ export interface NavigationCommandParam {
|
|
|
42
44
|
loiterRadius: number;
|
|
43
45
|
vtolLandHeadWind: number;
|
|
44
46
|
loiterExitAngle: number;
|
|
47
|
+
vtolSpeedUpDirection: number;
|
|
48
|
+
chuteDeploymentAltitude: number;
|
|
45
49
|
};
|
|
46
50
|
}
|