@volant-autonomy/via-sdk 1.4490.1 → 1.4502.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 +26 -2
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -953,6 +953,12 @@ export interface components {
|
|
|
953
953
|
};
|
|
954
954
|
/** AirspaceConstraint */
|
|
955
955
|
"AirspaceConstraint-Input": {
|
|
956
|
+
/**
|
|
957
|
+
* Title
|
|
958
|
+
* @description Human-Readable name, may contain symbols and spaces
|
|
959
|
+
* @example New Airspace Constraint
|
|
960
|
+
*/
|
|
961
|
+
title?: string | null;
|
|
956
962
|
/**
|
|
957
963
|
* Chart ID
|
|
958
964
|
* @description Unique identifier for a chart.
|
|
@@ -1009,6 +1015,12 @@ export interface components {
|
|
|
1009
1015
|
};
|
|
1010
1016
|
/** AirspaceConstraint */
|
|
1011
1017
|
"AirspaceConstraint-Output": {
|
|
1018
|
+
/**
|
|
1019
|
+
* Title
|
|
1020
|
+
* @description Human-Readable name, may contain symbols and spaces
|
|
1021
|
+
* @example New Airspace Constraint
|
|
1022
|
+
*/
|
|
1023
|
+
title?: string | null;
|
|
1012
1024
|
/**
|
|
1013
1025
|
* Chart ID
|
|
1014
1026
|
* @description Unique identifier for a chart.
|
|
@@ -2377,7 +2389,7 @@ export interface components {
|
|
|
2377
2389
|
planar_distance: number;
|
|
2378
2390
|
/**
|
|
2379
2391
|
* Above Mean Sea Level (AMSL) Altitude
|
|
2380
|
-
* @description Altitude above mean sea level (AMSL), expressed in
|
|
2392
|
+
* @description Altitude above mean sea level (AMSL), expressed in metres. This value is derived by combining the input altitude (specified above ground level (AGL)) with the terrain elevation from the selected elevation dataset.
|
|
2381
2393
|
*/
|
|
2382
2394
|
altitude_amsl: number;
|
|
2383
2395
|
};
|
|
@@ -3567,7 +3579,7 @@ export interface components {
|
|
|
3567
3579
|
planar_distance: number;
|
|
3568
3580
|
/**
|
|
3569
3581
|
* Above Mean Sea Level (AMSL) Altitude
|
|
3570
|
-
* @description Altitude above mean sea level (AMSL), expressed in
|
|
3582
|
+
* @description Altitude above mean sea level (AMSL), expressed in metres. This value is derived by combining the input altitude (specified above ground level (AGL)) with the terrain elevation from the selected elevation dataset.
|
|
3571
3583
|
*/
|
|
3572
3584
|
altitude_amsl: number;
|
|
3573
3585
|
};
|
|
@@ -3634,6 +3646,18 @@ export interface components {
|
|
|
3634
3646
|
* @example 2
|
|
3635
3647
|
*/
|
|
3636
3648
|
max_descent_angle: number;
|
|
3649
|
+
/**
|
|
3650
|
+
* Max Altitude Amsl
|
|
3651
|
+
* @description Maximum altitude above mean sea level (AMSL), expressed in metres.
|
|
3652
|
+
* @example 1000
|
|
3653
|
+
*/
|
|
3654
|
+
max_altitude_amsl: number;
|
|
3655
|
+
/**
|
|
3656
|
+
* Min Altitude Amsl
|
|
3657
|
+
* @description Minimum altitude above mean sea level (AMSL), expressed in metres.
|
|
3658
|
+
* @example 1000
|
|
3659
|
+
*/
|
|
3660
|
+
min_altitude_amsl: number;
|
|
3637
3661
|
};
|
|
3638
3662
|
/**
|
|
3639
3663
|
* StatisticsResponse
|