@volant-autonomy/via-sdk 1.4464.1 → 1.4470.1
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.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +27 -3
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -3509,10 +3509,34 @@ export interface components {
|
|
|
3509
3509
|
duration: number;
|
|
3510
3510
|
/**
|
|
3511
3511
|
* Total Cost
|
|
3512
|
-
* @description The estimated total cost to complete the flightplan, given in GBP
|
|
3512
|
+
* @description The estimated total cost to complete the flightplan, given in GBP. When a cost could not calculated this field is returned as `null`.
|
|
3513
3513
|
* @example 5.62
|
|
3514
3514
|
*/
|
|
3515
|
-
total_cost: number;
|
|
3515
|
+
total_cost: number | null;
|
|
3516
|
+
/**
|
|
3517
|
+
* Planar Length
|
|
3518
|
+
* @description The length along a flat horizontal 2D plane (ignoring altitude) of the projected path. This value is expressed in metres and is the result of a cartesian reprojection and therefore is not guaranteed to match the minimum straight-line distance between waypoints.
|
|
3519
|
+
* @example 300
|
|
3520
|
+
*/
|
|
3521
|
+
planar_length: number;
|
|
3522
|
+
/**
|
|
3523
|
+
* Flightpath Length
|
|
3524
|
+
* @description The length along the 3D path constructed by straight-lines between waypoints in metres.
|
|
3525
|
+
* @example 500
|
|
3526
|
+
*/
|
|
3527
|
+
flightpath_length: number;
|
|
3528
|
+
/**
|
|
3529
|
+
* Max Climb Angle
|
|
3530
|
+
* @description The maximum angle of climb, in degrees, assuming constant-climb straight-line between waypoints. A value of 0 is returned if there is no climb.
|
|
3531
|
+
* @example 2
|
|
3532
|
+
*/
|
|
3533
|
+
max_climb_angle: number;
|
|
3534
|
+
/**
|
|
3535
|
+
* Max Descent Angle
|
|
3536
|
+
* @description The maximum angle of descent, in degrees, assuming constant-descent straight-line between waypoints. A value of 0 is returned if there is no descent.
|
|
3537
|
+
* @example 2
|
|
3538
|
+
*/
|
|
3539
|
+
max_descent_angle: number;
|
|
3516
3540
|
};
|
|
3517
3541
|
/**
|
|
3518
3542
|
* StatisticsResponse
|
|
@@ -4400,7 +4424,7 @@ export interface operations {
|
|
|
4400
4424
|
"filter[chart_id]"?: string | null;
|
|
4401
4425
|
/** @description Filter results by the specified substring for the title field. Matching is case insensitive and the substring may occur at any point in the field. */
|
|
4402
4426
|
"filter[title]"?: string | null;
|
|
4403
|
-
/** @description Filter results by a specified start time, note that this comparison is evaluated against the earliest possible start time for a given Flightplan and not the time_start field directly. The earliest possible start time must be greater than or equal to this value.Must be RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'. */
|
|
4427
|
+
/** @description Filter results by a specified start time, note that this comparison is evaluated against the earliest possible start time for a given Flightplan and not the time_start field directly. The earliest possible start time must be greater than or equal to this value. Must be RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'. */
|
|
4404
4428
|
"filter[time_start][gte]"?: string | null;
|
|
4405
4429
|
"page[offset]"?: number;
|
|
4406
4430
|
"page[limit]"?: number;
|