@auxilium/datalynk-client 0.9.8 → 0.9.9

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
@@ -2604,8 +2604,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
2604
2604
  method: "POST",
2605
2605
  headers: clean({
2606
2606
  Authorization: this.token ? `Bearer ${this.token}` : void 0,
2607
- "Content-Type": "application/json",
2608
- "X-Date-Return-Format": this.options.legacyDates ? void 0 : "ISO8601"
2607
+ "Content-Type": "application/json"
2608
+ // 'X-Date-Return-Format': this.options.legacyDates ? undefined : 'ISO8601'
2609
2609
  }),
2610
2610
  body: JSON.stringify(Api.translateTokens(req))
2611
2611
  }).then(async (resp) => {
package/dist/index.mjs CHANGED
@@ -2600,8 +2600,8 @@ class Api {
2600
2600
  method: "POST",
2601
2601
  headers: clean({
2602
2602
  Authorization: this.token ? `Bearer ${this.token}` : void 0,
2603
- "Content-Type": "application/json",
2604
- "X-Date-Return-Format": this.options.legacyDates ? void 0 : "ISO8601"
2603
+ "Content-Type": "application/json"
2604
+ // 'X-Date-Return-Format': this.options.legacyDates ? undefined : 'ISO8601'
2605
2605
  }),
2606
2606
  body: JSON.stringify(Api.translateTokens(req))
2607
2607
  }).then(async (resp) => {
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.9.8",
5
+ "version": "0.9.9",
6
6
  "author": "Zak Timson <zaktimson@gmail.com>",
7
7
  "private": false,
8
8
  "main": "./dist/index.cjs",