@volant-autonomy/via-sdk 1.3859.1 → 1.3876.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
@@ -786,7 +786,7 @@ function defaultPathSerializer(pathname, pathParams) {
786
786
  return nextURL;
787
787
  }
788
788
 
789
- var version = "1.3859.1";
789
+ var version = "1.3876.1";
790
790
 
791
791
  const querySerializer = createQuerySerializer();
792
792
  class Fetcher {
package/dist/index.esm.js CHANGED
@@ -784,7 +784,7 @@ function defaultPathSerializer(pathname, pathParams) {
784
784
  return nextURL;
785
785
  }
786
786
 
787
- var version = "1.3859.1";
787
+ var version = "1.3876.1";
788
788
 
789
789
  const querySerializer = createQuerySerializer();
790
790
  class Fetcher {
@@ -2229,6 +2229,18 @@ export interface components {
2229
2229
  * @default 0.8
2230
2230
  */
2231
2231
  cost_bias?: number;
2232
+ /**
2233
+ * Ground Risk Weighting
2234
+ * @description Weight multiplier to apply to ground risk when combining cost fields.
2235
+ * @default 1
2236
+ */
2237
+ ground_risk_weighting?: number;
2238
+ /**
2239
+ * Cost Dataset Weighting
2240
+ * @description Weight multiplier to apply to the provided Cost Dataset when combining cost fields. Without a cost dataset being provided, this will have no effect on the output cost field.
2241
+ * @default 1
2242
+ */
2243
+ cost_dataset_weighting?: number;
2232
2244
  /**
2233
2245
  * Deconflict
2234
2246
  * @description Whether to deconflict with volumes associated with other entities.
@@ -3716,13 +3728,13 @@ export interface operations {
3716
3728
  parameters: {
3717
3729
  query?: {
3718
3730
  /** @description
3719
- * External user defined [Cost Dataset](#Cost%20Datasets) to use when calculating statistics of the flightplan subject to
3720
- * the following limitations:
3721
- *
3722
- * * Temporal variation is ignored, the first raster band in the Cost Dataset is used without consideration for time.
3723
- * * Data within the Cost Dataset is directly added to Via internal costs which is reflected in `total_cost`.
3731
+ * External user defined [Cost Dataset](#Cost%20Datasets) to use when calculating statistics of the flightplan.
3724
3732
  * */
3725
3733
  cost_dataset_id?: string | null;
3734
+ /** @description Weight multiplier to apply to ground risk when combining cost fields. */
3735
+ ground_risk_weighting?: number;
3736
+ /** @description Weight multiplier to apply to the provided Cost Dataset when combining cost fields. Without a cost dataset being provided, this will have no effect on the output cost field. */
3737
+ cost_dataset_weighting?: number;
3726
3738
  };
3727
3739
  header?: never;
3728
3740
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volant-autonomy/via-sdk",
3
- "version": "1.3859.1",
3
+ "version": "1.3876.1",
4
4
  "license": "MIT",
5
5
  "source": "src/index.ts",
6
6
  "types": "dist/index.d.ts",