@volant-autonomy/via-sdk 1.4935.1 → 1.4960.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 +13 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -952,6 +952,12 @@ export interface components {
|
|
|
952
952
|
mode: "AGL";
|
|
953
953
|
/** @description Provide additional altitude restrictions to the pathing operation. */
|
|
954
954
|
corridor?: components["schemas"]["AglAlgorithmCorridor"] | null;
|
|
955
|
+
/**
|
|
956
|
+
* Allow Invalid Path
|
|
957
|
+
* @description Whether to return paths that could be found laterally but could not be contained within the AGL corridor or deconflicted from the underlying surface. This is useful for inspection of potential paths that could be fixed manually or to determine areas of over-restriction.
|
|
958
|
+
* @default false
|
|
959
|
+
*/
|
|
960
|
+
allow_invalid_path?: boolean;
|
|
955
961
|
};
|
|
956
962
|
/**
|
|
957
963
|
* AglAlgorithmCorridor
|
|
@@ -3010,7 +3016,8 @@ export interface components {
|
|
|
3010
3016
|
* Algorithm
|
|
3011
3017
|
* @description Pathing algorithm mode to use.
|
|
3012
3018
|
* @default {
|
|
3013
|
-
* "mode": "AGL"
|
|
3019
|
+
* "mode": "AGL",
|
|
3020
|
+
* "allow_invalid_path": false
|
|
3014
3021
|
* }
|
|
3015
3022
|
*/
|
|
3016
3023
|
algorithm?: components["schemas"]["AglAlgorithm"] | components["schemas"]["AmslAlgorithm"];
|
|
@@ -3123,6 +3130,11 @@ export interface components {
|
|
|
3123
3130
|
* @example 1
|
|
3124
3131
|
*/
|
|
3125
3132
|
compute_time?: number | null;
|
|
3133
|
+
/**
|
|
3134
|
+
* Path Is Valid
|
|
3135
|
+
* @description Whether the result is valid under all constraints provided, only applicable when setting `allow_invalid_path`.
|
|
3136
|
+
*/
|
|
3137
|
+
path_is_valid?: boolean | null;
|
|
3126
3138
|
};
|
|
3127
3139
|
/** PathingTaskRequest */
|
|
3128
3140
|
PathingTaskRequest: {
|