@auxilium/datalynk-client 0.6.13 → 0.6.14

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 CHANGED
@@ -2400,7 +2400,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
2400
2400
  data = originalBundle.map((row) => row.data);
2401
2401
  this._request(data, options).then((resp) => {
2402
2402
  if (!(resp instanceof Array)) resp = [resp];
2403
- resp.filter((ignore, i) => i < originalBundle.length).forEach((row, i) => row.error ? originalBundle[i].rej(row.error) : originalBundle[i].res(row));
2403
+ resp.forEach((row, i) => (row == null ? void 0 : row.error) ? originalBundle[i].rej(row.error) : originalBundle[i].res(row));
2404
2404
  }).catch((err) => originalBundle.forEach((req) => req.rej(err)));
2405
2405
  }, this.options.bundleTime);
2406
2406
  }
package/dist/index.mjs CHANGED
@@ -2396,7 +2396,7 @@ class Api {
2396
2396
  data = originalBundle.map((row) => row.data);
2397
2397
  this._request(data, options).then((resp) => {
2398
2398
  if (!(resp instanceof Array)) resp = [resp];
2399
- resp.filter((ignore, i) => i < originalBundle.length).forEach((row, i) => row.error ? originalBundle[i].rej(row.error) : originalBundle[i].res(row));
2399
+ resp.forEach((row, i) => (row == null ? void 0 : row.error) ? originalBundle[i].rej(row.error) : originalBundle[i].res(row));
2400
2400
  }).catch((err) => originalBundle.forEach((req) => req.rej(err)));
2401
2401
  }, this.options.bundleTime);
2402
2402
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@auxilium/datalynk-client",
3
3
  "description": "Datalynk client library",
4
4
  "repository": "https://gitlab.auxiliumgroup.com/auxilium/datalynk/datalynk-client",
5
- "version": "0.6.13",
5
+ "version": "0.6.14",
6
6
  "author": "Zak Timson <zaktimson@gmail.com>",
7
7
  "private": false,
8
8
  "main": "./dist/index.cjs",