@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 CHANGED
@@ -791,7 +791,7 @@ function defaultPathSerializer(pathname, pathParams) {
791
791
  return nextURL;
792
792
  }
793
793
 
794
- var version = "1.4464.1";
794
+ var version = "1.4470.1";
795
795
 
796
796
  const querySerializer = createQuerySerializer();
797
797
  class Fetcher {
package/dist/index.esm.js CHANGED
@@ -789,7 +789,7 @@ function defaultPathSerializer(pathname, pathParams) {
789
789
  return nextURL;
790
790
  }
791
791
 
792
- var version = "1.4464.1";
792
+ var version = "1.4470.1";
793
793
 
794
794
  const querySerializer = createQuerySerializer();
795
795
  class Fetcher {
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4464.1",
3
+ "version": "1.4470.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",