@volant-autonomy/via-sdk 1.4580.1 → 1.4589.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.4580.1";
794
+ var version = "1.4589.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.4580.1";
792
+ var version = "1.4589.1";
793
793
 
794
794
  const querySerializer = createQuerySerializer();
795
795
  class Fetcher {
@@ -931,11 +931,18 @@ 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 */
934
+ /**
935
+ * AglAlgorithm
936
+ * @description Change height Above Ground Level (AGL) with constant rate along the path between checkpoints, or maintain constant
937
+ * height AGL where the start and end height AGL are the same. This avoids collision with terrain by adjusting altitude
938
+ * to maintain vertical separation. N.B. this may fail to find a valid path when flying low over uneven terrain due to
939
+ * unavoidable conflicts of the path volumes with the terrain. Similarly, conflicts may be avoided with any upper
940
+ * limits such as those imposed by SORA subject to the same limitations.
941
+ */
935
942
  AglAlgorithm: {
936
943
  /**
937
- * Mode
938
- * @constant
944
+ * @description discriminator enum property added by openapi-typescript
945
+ * @enum {string}
939
946
  */
940
947
  mode: "AGL";
941
948
  };
@@ -1167,11 +1174,18 @@ export interface components {
1167
1174
  */
1168
1175
  reference: "AGL" | "AMSL";
1169
1176
  };
1170
- /** AmslAlgorithm */
1177
+ /**
1178
+ * AmslAlgorithm
1179
+ * @description Change altitude Above Mean Sea Level (AMSL) with constant rate along the path between checkpoints, or maintain a
1180
+ * constant altitude AMSL where the start and end altitude AMSL are the same. This avoids any terrain with elevation
1181
+ * greater than the path laterally instead of attempting to traverse over it.
1182
+ *
1183
+ * SORA is currently not supported with the use of this mode.
1184
+ */
1171
1185
  AmslAlgorithm: {
1172
1186
  /**
1173
- * Mode
1174
- * @constant
1187
+ * @description discriminator enum property added by openapi-typescript
1188
+ * @enum {string}
1175
1189
  */
1176
1190
  mode: "AMSL";
1177
1191
  };
@@ -2922,6 +2936,14 @@ export interface components {
2922
2936
  * @default true
2923
2937
  */
2924
2938
  deconflict?: boolean;
2939
+ /**
2940
+ * Algorithm
2941
+ * @description Pathing algorithm mode to use.
2942
+ * @default {
2943
+ * "mode": "AGL"
2944
+ * }
2945
+ */
2946
+ algorithm?: components["schemas"]["AglAlgorithm"] | components["schemas"]["AmslAlgorithm"];
2925
2947
  };
2926
2948
  /** PathingTaskAttributes */
2927
2949
  PathingTaskAttributes: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4580.1",
3
+ "version": "1.4589.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",