@volant-autonomy/via-sdk 1.3227.1 → 1.3228.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/volant-schema.d.ts +15 -3
- package/package.json +1 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -1957,10 +1957,22 @@ export interface components {
|
|
|
1957
1957
|
geocage?: components["schemas"]["Polygon"] | null;
|
|
1958
1958
|
/**
|
|
1959
1959
|
* Time Start
|
|
1960
|
-
*
|
|
1961
|
-
* @description
|
|
1960
|
+
* @deprecated
|
|
1961
|
+
* @description Please transition to use `time`. This field will be overridden if both are used.
|
|
1962
1962
|
*/
|
|
1963
|
-
time_start
|
|
1963
|
+
time_start?: string | null;
|
|
1964
|
+
/**
|
|
1965
|
+
* Time
|
|
1966
|
+
* @description Used in combination with `time_mode` to set the nominal time of departure from the first checkpoint or nominal time of arrival at the last checkpoint. Must be provided if the deprecated field `time_start` is not provided.
|
|
1967
|
+
*/
|
|
1968
|
+
time?: string | null;
|
|
1969
|
+
/**
|
|
1970
|
+
* Pathing Time Mode
|
|
1971
|
+
* @description Sets whether to produce a path such that the nominal departure time at the first checkpoint is `time` or the nominal arrival time at the last checkpoint is `time`.
|
|
1972
|
+
* @default depart_at
|
|
1973
|
+
* @enum {string}
|
|
1974
|
+
*/
|
|
1975
|
+
time_mode?: "depart_at" | "arrive_at";
|
|
1964
1976
|
/**
|
|
1965
1977
|
* Tse Temporal
|
|
1966
1978
|
* @description Total system error in the time dimension, in seconds. Includes error due to uncertainty in take-off time, speed, and operational parameters. Defined as the 2-sigma/95% error limit. For example, if the tse_temporal is 300 s then on average an aircraft should be less than 5 minutes ahead or behind schedule for at least 95% of its route.
|