@skyvexsoftware/stratos-sdk 0.5.7 → 0.5.9
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/LICENSE +1 -1
- package/dist/shared-types/flight-manager.d.ts +3 -0
- package/package.json +2 -2
package/LICENSE
CHANGED
|
@@ -48,6 +48,7 @@ export type CurrentFlight = {
|
|
|
48
48
|
heading: number;
|
|
49
49
|
startingFuel: number;
|
|
50
50
|
currentFuel: number;
|
|
51
|
+
landingFuel: number | null;
|
|
51
52
|
lastUpdateSentAt: number | null;
|
|
52
53
|
updatesSent: number;
|
|
53
54
|
updateIntervalMs: number;
|
|
@@ -94,6 +95,8 @@ export type RecoverableFlight = {
|
|
|
94
95
|
elapsedMs: number;
|
|
95
96
|
status: string;
|
|
96
97
|
phase: string | null;
|
|
98
|
+
/** Last known fuel in lbs (canonical). Null if no fuel data was captured. */
|
|
99
|
+
lastFuel: number | null;
|
|
97
100
|
};
|
|
98
101
|
/** Socket.io payload for flight:manager events */
|
|
99
102
|
export type FlightManagerPayload = {
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyvexsoftware/stratos-sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"description": "Plugin SDK for Stratos — types, hooks, and UI components",
|
|
5
5
|
"author": {
|
|
6
|
-
"name": "Skyvex Software",
|
|
6
|
+
"name": "Skyvex Software Pty Ltd",
|
|
7
7
|
"email": "jordan@skyvexsoftware.com"
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|