@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 CHANGED
@@ -758,7 +758,7 @@ function defaultPathSerializer(pathname, pathParams) {
758
758
  return nextURL;
759
759
  }
760
760
 
761
- var version = "1.4935.1";
761
+ var version = "1.4960.1";
762
762
 
763
763
  const querySerializer = createQuerySerializer();
764
764
  class Fetcher {
package/dist/index.esm.js CHANGED
@@ -756,7 +756,7 @@ function defaultPathSerializer(pathname, pathParams) {
756
756
  return nextURL;
757
757
  }
758
758
 
759
- var version = "1.4935.1";
759
+ var version = "1.4960.1";
760
760
 
761
761
  const querySerializer = createQuerySerializer();
762
762
  class Fetcher {
@@ -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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.4935.1",
3
+ "version": "1.4960.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",