@volant-autonomy/via-sdk 1.5254.1 → 1.5259.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.esm.js CHANGED
@@ -563,8 +563,7 @@ class Direct {
563
563
  const formData = new FormData();
564
564
  formData.append('chart_id', args.chart_id);
565
565
  formData.append('name', args.name);
566
- formData.append('valid_time_ranges', JSON.stringify(args.valid_time_ranges));
567
- formData.append('geotiff', args.geotiff);
566
+ formData.append('file', args.file);
568
567
  const resp = await this.fetcher.POST('/cost_datasets/', { body: formData }, {
569
568
  ...opts,
570
569
  // when sending a FormData object the browser will automatically
@@ -784,7 +783,7 @@ function defaultPathSerializer(pathname, pathParams) {
784
783
  return nextURL;
785
784
  }
786
785
 
787
- var version = "1.5254.1";
786
+ var version = "1.5259.1";
788
787
 
789
788
  const querySerializer = createQuerySerializer();
790
789
  class Fetcher {