@volant-autonomy/via-sdk 1.4657.1 → 1.4665.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.4657.1";
794
+ var version = "1.4665.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.4657.1";
792
+ var version = "1.4665.1";
793
793
 
794
794
  const querySerializer = createQuerySerializer();
795
795
  class Fetcher {
@@ -3848,34 +3848,32 @@ export interface components {
3848
3848
  */
3849
3849
  robustness: "none" | "low" | "medium" | "high";
3850
3850
  };
3851
- /** TerrainProfileAttributes */
3851
+ /**
3852
+ * TerrainProfileAttributes
3853
+ * @description Profile of terrain elevation data across the Flightplan. Data is zipped by index such that each array has the same
3854
+ * length and a given index corresponding to the appropriate data in each array.
3855
+ */
3852
3856
  TerrainProfileAttributes: {
3853
3857
  /**
3854
- * Profile
3855
- * @description Pairs (planar projected distance along flightplan, elevation of overflown terrain Above Mean Sea Level (AMSL) at that distance), given in metres.
3856
- * @example [
3857
- * [
3858
- * 0,
3859
- * 95.4
3860
- * ],
3861
- * [
3862
- * 14.6,
3863
- * 75.33
3864
- * ],
3865
- * [
3866
- * 28,
3867
- * -2.4
3868
- * ],
3869
- * [
3870
- * 41.12,
3871
- * 16
3872
- * ]
3873
- * ]
3858
+ * Planar Distance
3859
+ * @description Sampled planar distance across the flightplan.
3874
3860
  */
3875
- profile: [
3876
- number,
3877
- number
3878
- ][];
3861
+ planar_distance: number[];
3862
+ /**
3863
+ * Under Nominal Flightpath
3864
+ * @description Terrain elevation determined directly along the nominal flightpath.
3865
+ */
3866
+ under_nominal_flightpath: number[];
3867
+ /**
3868
+ * Min Under Volume
3869
+ * @description Terrain elevation determined as the minimum in volume kernel at the planar distance relative to whereaircraft is expected to be.
3870
+ */
3871
+ min_under_volume: number[];
3872
+ /**
3873
+ * Max Under Volume
3874
+ * @description Terrain elevation determined as the maximum in volume kernel at the planar distance relative to whereaircraft is expected to be.
3875
+ */
3876
+ max_under_volume: number[];
3879
3877
  };
3880
3878
  /**
3881
3879
  * TerrainProfileResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4657.1",
3
+ "version": "1.4665.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",