@volant-autonomy/via-sdk 1.3636.1 → 1.3639.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
@@ -727,7 +727,7 @@ function defaultPathSerializer(pathname, pathParams) {
727
727
  return nextURL;
728
728
  }
729
729
 
730
- var version = "1.3636.1";
730
+ var version = "1.3639.1";
731
731
 
732
732
  const querySerializer = createQuerySerializer();
733
733
  class Fetcher {
package/dist/index.esm.js CHANGED
@@ -725,7 +725,7 @@ function defaultPathSerializer(pathname, pathParams) {
725
725
  return nextURL;
726
726
  }
727
727
 
728
- var version = "1.3636.1";
728
+ var version = "1.3639.1";
729
729
 
730
730
  const querySerializer = createQuerySerializer();
731
731
  class Fetcher {
@@ -2208,10 +2208,24 @@ export interface components {
2208
2208
  PathingSettings: {
2209
2209
  /**
2210
2210
  * Ground Risk Bias
2211
- * @description Weighting of Ground Risk. 0: Ignore Ground Risk. 1: Ground Risk Minimised
2211
+ * @deprecated
2212
+ * @description Deprecated, please migrate to the use of `cost_bias`. If provided, will temporarily override `cost_bias`.
2213
+ */
2214
+ ground_risk_bias?: number | null;
2215
+ /**
2216
+ * Cost Bias
2217
+ * @description
2218
+ * Overall consideration given to costs when determining a path versus reaching the checkpoint in the minimum time whilst
2219
+ * respecting other restrictions. Ignoring all cost without other restrictions will result in the straight-line path
2220
+ * between two checkpoints whilst minimising cost will produce a significantly more complex path in an attempt to
2221
+ * reduce any theoretically incurred cost of flight.
2222
+ *
2223
+ * * 0: Ignore cost
2224
+ * * 1: Minimise cost
2225
+ *
2212
2226
  * @default 0.8
2213
2227
  */
2214
- ground_risk_bias?: number;
2228
+ cost_bias?: number;
2215
2229
  /**
2216
2230
  * Deconflict
2217
2231
  * @description Whether to deconflict with volumes associated with other entities.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.3636.1",
3
+ "version": "1.3639.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",