@gbozee/ultimate 0.0.2-56 → 0.0.2-57
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 +3 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -53258,7 +53258,9 @@ async function initClient(credentials, options) {
|
|
|
53258
53258
|
api_key: credentials.api_key,
|
|
53259
53259
|
api_secret: credentials.api_secret,
|
|
53260
53260
|
recvWindow: 1e4,
|
|
53261
|
-
beautifyResponses: true
|
|
53261
|
+
beautifyResponses: true,
|
|
53262
|
+
disableTimeSync: false,
|
|
53263
|
+
syncIntervalMs: 300000
|
|
53262
53264
|
}, axiosOptions);
|
|
53263
53265
|
const clientName = client.constructor.name;
|
|
53264
53266
|
const customInspectSymbol = Symbol.for("nodejs.util.inspect.custom");
|
package/dist/index.js
CHANGED
|
@@ -53216,7 +53216,9 @@ async function initClient(credentials, options) {
|
|
|
53216
53216
|
api_key: credentials.api_key,
|
|
53217
53217
|
api_secret: credentials.api_secret,
|
|
53218
53218
|
recvWindow: 1e4,
|
|
53219
|
-
beautifyResponses: true
|
|
53219
|
+
beautifyResponses: true,
|
|
53220
|
+
disableTimeSync: false,
|
|
53221
|
+
syncIntervalMs: 300000
|
|
53220
53222
|
}, axiosOptions);
|
|
53221
53223
|
const clientName = client.constructor.name;
|
|
53222
53224
|
const customInspectSymbol = Symbol.for("nodejs.util.inspect.custom");
|