@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 +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/volant-schema.d.ts +16 -2
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/volant-schema.d.ts
CHANGED
|
@@ -2208,10 +2208,24 @@ export interface components {
|
|
|
2208
2208
|
PathingSettings: {
|
|
2209
2209
|
/**
|
|
2210
2210
|
* Ground Risk Bias
|
|
2211
|
-
* @
|
|
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
|
-
|
|
2228
|
+
cost_bias?: number;
|
|
2215
2229
|
/**
|
|
2216
2230
|
* Deconflict
|
|
2217
2231
|
* @description Whether to deconflict with volumes associated with other entities.
|