@skyvexsoftware/stratos-sdk 0.9.2 → 0.10.0
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.
|
@@ -119,6 +119,10 @@ export type FlightData = {
|
|
|
119
119
|
reverser2Deployed?: boolean;
|
|
120
120
|
autobrakePosition?: number;
|
|
121
121
|
speedbrakePosition?: number;
|
|
122
|
+
/** Unlimited-fuel mode flag. MSFS: UNLIMITED FUEL SimVar. X-Plane: undefined (no clean dataref). */
|
|
123
|
+
unlimitedFuel?: boolean;
|
|
124
|
+
/** Detent index of the flap handle. MSFS: FLAPS HANDLE INDEX. X-Plane: derived from flaprqst × acf_flap_detents. */
|
|
125
|
+
flapsHandleIndex?: number;
|
|
122
126
|
transponderFreq: string;
|
|
123
127
|
com1Freq: string;
|
|
124
128
|
com2Freq: string;
|
|
@@ -256,6 +260,8 @@ export type CapturePoint = {
|
|
|
256
260
|
windDirection: number;
|
|
257
261
|
windSpeed: number;
|
|
258
262
|
totalFuelLbs: number;
|
|
263
|
+
/** Snapshot of data.flapsHandleIndex at the capture moment, null if the sim doesn't provide it. */
|
|
264
|
+
flapsHandleIndex: number | null;
|
|
259
265
|
};
|
|
260
266
|
/** Bounce data — captured when aircraft becomes airborne after touchdown */
|
|
261
267
|
export type BounceData = {
|
|
@@ -286,6 +292,10 @@ export type LandingAnalysis = {
|
|
|
286
292
|
touchdownLongitude: number;
|
|
287
293
|
touchdownHeading: number;
|
|
288
294
|
touchdownGroundSpeed: number;
|
|
295
|
+
/** Indicated airspeed at touchdown (knots) — sourced from the touchdown CapturePoint. */
|
|
296
|
+
touchdownIas: number;
|
|
297
|
+
/** Flaps handle index at touchdown, null if the sim doesn't provide one. */
|
|
298
|
+
touchdownFlapsIndex: number | null;
|
|
289
299
|
touchdownPitch: number;
|
|
290
300
|
touchdownBank: number;
|
|
291
301
|
touchdownGForce: number;
|
package/dist/types/manifest.d.ts
CHANGED
|
@@ -36,6 +36,8 @@ export type PluginManifest = {
|
|
|
36
36
|
icon_light: string;
|
|
37
37
|
/** Sidebar icon for dark theme — relative path to a PNG in the plugin's assets/ directory (e.g. "icon-dark.png") */
|
|
38
38
|
icon_dark: string;
|
|
39
|
+
/** Optional homepage URL for the plugin (e.g. "https://www.example.com/"). Rendered as a clickable link in the plugin info panel. Must be a fully-qualified http(s) URL. */
|
|
40
|
+
homepage?: string;
|
|
39
41
|
/** Typed settings this plugin declares. User-scoped settings render in the Settings page; airline-scoped settings are managed by the VA platform. */
|
|
40
42
|
availableSettings?: PluginSettingDefinition[];
|
|
41
43
|
/** Whether to include source maps in the published CDN bundle. Defaults to false — source maps are stripped on approval. Set to true if you want end users to have access to source maps for debugging. */
|