@volant-autonomy/via-sdk 1.4554.1 → 1.4571.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.4554.1";
794
+ var version = "1.4571.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.4554.1";
792
+ var version = "1.4571.1";
793
793
 
794
794
  const querySerializer = createQuerySerializer();
795
795
  class Fetcher {
@@ -931,6 +931,14 @@ export interface components {
931
931
  * @enum {string}
932
932
  */
933
933
  ARC: "arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-b2" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-c5" | "arc-c6" | "arc-c7" | "arc-d1" | "arc-d2" | "arc-d3" | "arc-d4";
934
+ /** AglAlgorithm */
935
+ AglAlgorithm: {
936
+ /**
937
+ * Mode
938
+ * @constant
939
+ */
940
+ mode: "AGL";
941
+ };
934
942
  /**
935
943
  * Aircraft
936
944
  * @description Characteristics that define an aircraft for SORA calculations.
@@ -1139,10 +1147,18 @@ export interface components {
1139
1147
  value: number;
1140
1148
  /**
1141
1149
  * Reference
1142
- * @description Altitude reference datum for the value. When using AGL, this is defined as the vertical distance between the point and terrain elevation directly beneath it. Terrain elevation is defined with reference to the EGM2008 Geoid and includes the surfaces of water bodies but not man-made structures.
1150
+ * @description Altitude reference datum for the value. When using AGL, this is defined as the vertical distance between the point and terrain elevation directly beneath it. Terrain elevation is defined with reference to the EGM2008 Geoid and includes the surfaces of water bodies but not man-made structures.Note that some interfaces may not support all reference datums.
1151
+ * @enum {string}
1152
+ */
1153
+ reference: "AGL" | "AMSL";
1154
+ };
1155
+ /** AmslAlgorithm */
1156
+ AmslAlgorithm: {
1157
+ /**
1158
+ * Mode
1143
1159
  * @constant
1144
1160
  */
1145
- reference: "AGL";
1161
+ mode: "AMSL";
1146
1162
  };
1147
1163
  /** AoiBounding */
1148
1164
  AoiBounding: {
@@ -4262,6 +4278,10 @@ export interface components {
4262
4278
  msg: string;
4263
4279
  /** Error Type */
4264
4280
  type: string;
4281
+ /** Input */
4282
+ input?: unknown;
4283
+ /** Context */
4284
+ ctx?: Record<string, never>;
4265
4285
  };
4266
4286
  /** VerticalParameters */
4267
4287
  VerticalParameters: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4554.1",
3
+ "version": "1.4571.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",