@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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +28 -6
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -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
|
-
/**
|
|
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
|
-
*
|
|
938
|
-
* @
|
|
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
|
-
/**
|
|
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
|
-
*
|
|
1174
|
-
* @
|
|
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: {
|