bruce-models 5.2.5 → 5.2.7

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.
@@ -428,7 +428,8 @@
428
428
  params.headers[this.ssidHeader] = this.ssid;
429
429
  }
430
430
  const res = yield fetch(url, {
431
- headers: params.headers
431
+ headers: params.headers,
432
+ signal: params.abortSignal
432
433
  });
433
434
  return parseResult(res);
434
435
  });
@@ -452,7 +453,8 @@
452
453
  }
453
454
  const res = yield fetch(url, {
454
455
  headers: params.headers,
455
- method: "DELETE"
456
+ method: "DELETE",
457
+ signal: params.abortSignal
456
458
  });
457
459
  return parseResult(res);
458
460
  });
@@ -484,7 +486,8 @@
484
486
  const res = yield fetch(url, {
485
487
  headers: params.headers,
486
488
  method: "POST",
487
- body: data
489
+ body: data,
490
+ signal: params.abortSignal
488
491
  });
489
492
  return parseResult(res);
490
493
  });
@@ -516,7 +519,8 @@
516
519
  const res = yield fetch(url, {
517
520
  headers: params.headers,
518
521
  method: "PUT",
519
- body: data
522
+ body: data,
523
+ signal: params.abortSignal
520
524
  });
521
525
  return parseResult(res);
522
526
  });
@@ -552,7 +556,8 @@
552
556
  const res = yield fetch(url, {
553
557
  headers: params.headers,
554
558
  method: "POST",
555
- body: formData
559
+ body: formData,
560
+ signal: params.abortSignal
556
561
  });
557
562
  return parseResult(res);
558
563
  });
@@ -3756,7 +3761,7 @@
3756
3761
  };
3757
3762
  }
3758
3763
  if (filter.bounds) {
3759
- requestFilter["geometry"] = {
3764
+ requestFilter["boundaries"] = {
3760
3765
  "intersects": [
3761
3766
  filter.bounds.south,
3762
3767
  filter.bounds.north,
@@ -14320,7 +14325,7 @@
14320
14325
  })(exports.DataSource || (exports.DataSource = {}));
14321
14326
 
14322
14327
  // This is updated with the package.json version on build.
14323
- const VERSION = "5.2.5";
14328
+ const VERSION = "5.2.7";
14324
14329
 
14325
14330
  exports.VERSION = VERSION;
14326
14331
  exports.AbstractApi = AbstractApi;