@volant-autonomy/via-sdk 1.5334.1 → 1.5337.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 +67 -4
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -2486,11 +2486,28 @@ export interface components {
|
|
|
2486
2486
|
/**
|
|
2487
2487
|
* Time
|
|
2488
2488
|
* Format: date-time
|
|
2489
|
-
* @
|
|
2489
|
+
* @deprecated
|
|
2490
|
+
* @description Deprecated, use time_arrival and time_departure instead.
|
|
2490
2491
|
* @example 2023-10-30T10:57:57Z
|
|
2491
2492
|
* @example 2023-10-30T10:57:57+00:00
|
|
2492
2493
|
*/
|
|
2493
2494
|
time: string;
|
|
2495
|
+
/**
|
|
2496
|
+
* Time Arrival
|
|
2497
|
+
* Format: date-time
|
|
2498
|
+
* @description 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'.
|
|
2499
|
+
* @example 2023-10-30T10:57:57Z
|
|
2500
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
2501
|
+
*/
|
|
2502
|
+
time_arrival: string;
|
|
2503
|
+
/**
|
|
2504
|
+
* Time Departure
|
|
2505
|
+
* Format: date-time
|
|
2506
|
+
* @description 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'.
|
|
2507
|
+
* @example 2023-10-30T10:57:57Z
|
|
2508
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
2509
|
+
*/
|
|
2510
|
+
time_departure: string;
|
|
2494
2511
|
/**
|
|
2495
2512
|
* Planar Distance
|
|
2496
2513
|
* @description The cumulative distance along a flat horizontal 2D plane (ignoring altitude) of the projected path between the start position and this position following all prior waypoints. 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.
|
|
@@ -2611,11 +2628,28 @@ export interface components {
|
|
|
2611
2628
|
/**
|
|
2612
2629
|
* Time
|
|
2613
2630
|
* Format: date-time
|
|
2614
|
-
* @
|
|
2631
|
+
* @deprecated
|
|
2632
|
+
* @description Deprecated, use time_arrival and time_departure instead.
|
|
2615
2633
|
* @example 2023-10-30T10:57:57Z
|
|
2616
2634
|
* @example 2023-10-30T10:57:57+00:00
|
|
2617
2635
|
*/
|
|
2618
2636
|
time: string;
|
|
2637
|
+
/**
|
|
2638
|
+
* Time Arrival
|
|
2639
|
+
* Format: date-time
|
|
2640
|
+
* @description 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'.
|
|
2641
|
+
* @example 2023-10-30T10:57:57Z
|
|
2642
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
2643
|
+
*/
|
|
2644
|
+
time_arrival: string;
|
|
2645
|
+
/**
|
|
2646
|
+
* Time Departure
|
|
2647
|
+
* Format: date-time
|
|
2648
|
+
* @description 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'.
|
|
2649
|
+
* @example 2023-10-30T10:57:57Z
|
|
2650
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
2651
|
+
*/
|
|
2652
|
+
time_departure: string;
|
|
2619
2653
|
/**
|
|
2620
2654
|
* Planar Distance
|
|
2621
2655
|
* @description The cumulative distance along a flat horizontal 2D plane (ignoring altitude) of the projected path between the start position and this position following all prior waypoints. 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.
|
|
@@ -3949,11 +3983,28 @@ export interface components {
|
|
|
3949
3983
|
/**
|
|
3950
3984
|
* Time
|
|
3951
3985
|
* Format: date-time
|
|
3952
|
-
* @
|
|
3986
|
+
* @deprecated
|
|
3987
|
+
* @description Deprecated, use time_arrival and time_departure instead.
|
|
3953
3988
|
* @example 2023-10-30T10:57:57Z
|
|
3954
3989
|
* @example 2023-10-30T10:57:57+00:00
|
|
3955
3990
|
*/
|
|
3956
3991
|
time: string;
|
|
3992
|
+
/**
|
|
3993
|
+
* Time Arrival
|
|
3994
|
+
* Format: date-time
|
|
3995
|
+
* @description 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'.
|
|
3996
|
+
* @example 2023-10-30T10:57:57Z
|
|
3997
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
3998
|
+
*/
|
|
3999
|
+
time_arrival: string;
|
|
4000
|
+
/**
|
|
4001
|
+
* Time Departure
|
|
4002
|
+
* Format: date-time
|
|
4003
|
+
* @description 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'.
|
|
4004
|
+
* @example 2023-10-30T10:57:57Z
|
|
4005
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
4006
|
+
*/
|
|
4007
|
+
time_departure: string;
|
|
3957
4008
|
/**
|
|
3958
4009
|
* Planar Distance
|
|
3959
4010
|
* @description The cumulative distance along a flat horizontal 2D plane (ignoring altitude) of the projected path between the start position and this position following all prior waypoints. 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.
|
|
@@ -4005,9 +4056,17 @@ export interface components {
|
|
|
4005
4056
|
* @example 2023-10-30T10:57:57+00:00
|
|
4006
4057
|
*/
|
|
4007
4058
|
estimated_arrival_time: string;
|
|
4059
|
+
/**
|
|
4060
|
+
* Estimated Completion Time
|
|
4061
|
+
* Format: date-time
|
|
4062
|
+
* @description The estimated time of completion assuming nominal conditions. May differ from estimated arrival time if the flightplan has a final loitering waypoint.
|
|
4063
|
+
* @example 2023-10-30T10:57:57Z
|
|
4064
|
+
* @example 2023-10-30T10:57:57+00:00
|
|
4065
|
+
*/
|
|
4066
|
+
estimated_completion_time: string;
|
|
4008
4067
|
/**
|
|
4009
4068
|
* Total Cost
|
|
4010
|
-
* @description The estimated total cost to complete the flightplan, given in GBP. When a cost could not calculated this field is returned as `null`.
|
|
4069
|
+
* @description The estimated total cost to complete the flightplan, given in GBP. When a cost could not be calculated this field is returned as `null`.
|
|
4011
4070
|
* @example 5.62
|
|
4012
4071
|
*/
|
|
4013
4072
|
total_cost: number | null;
|
|
@@ -4718,6 +4777,8 @@ export interface components {
|
|
|
4718
4777
|
* "lng": -2.363
|
|
4719
4778
|
* },
|
|
4720
4779
|
* "time": "2023-10-30T10:57:57Z",
|
|
4780
|
+
* "time_arrival": "2023-10-30T10:57:57Z",
|
|
4781
|
+
* "time_departure": "2023-10-30T10:57:57Z",
|
|
4721
4782
|
* "type": "start"
|
|
4722
4783
|
* },
|
|
4723
4784
|
* {
|
|
@@ -4746,6 +4807,8 @@ export interface components {
|
|
|
4746
4807
|
* "lng": -2.357
|
|
4747
4808
|
* },
|
|
4748
4809
|
* "time": "2023-10-30T10:58:15Z",
|
|
4810
|
+
* "time_arrival": "2023-10-30T10:58:15Z",
|
|
4811
|
+
* "time_departure": "2023-10-30T10:58:15Z",
|
|
4749
4812
|
* "type": "goto"
|
|
4750
4813
|
* }
|
|
4751
4814
|
* ]
|