vesant-sdk 1.4.2 → 1.4.3
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/compliance/index.js +5 -2
- package/dist/compliance/index.js.map +1 -1
- package/dist/compliance/index.mjs +5 -2
- package/dist/compliance/index.mjs.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1444,6 +1444,7 @@ var ComplianceClient = class {
|
|
|
1444
1444
|
autoCreateProfiles: config.autoCreateProfiles !== false,
|
|
1445
1445
|
// default true
|
|
1446
1446
|
syncMode: config.syncMode || "sync",
|
|
1447
|
+
environment: config.environment,
|
|
1447
1448
|
interceptors,
|
|
1448
1449
|
logger: this.logger
|
|
1449
1450
|
};
|
|
@@ -1454,7 +1455,8 @@ var ComplianceClient = class {
|
|
|
1454
1455
|
headers: this.config.headers,
|
|
1455
1456
|
timeout: this.config.timeout,
|
|
1456
1457
|
debug: this.config.debug,
|
|
1457
|
-
logger: this.logger
|
|
1458
|
+
logger: this.logger,
|
|
1459
|
+
environment: this.config.environment
|
|
1458
1460
|
});
|
|
1459
1461
|
this.riskClient = new RiskProfileClient({
|
|
1460
1462
|
baseURL: this.config.baseURL,
|
|
@@ -1464,7 +1466,8 @@ var ComplianceClient = class {
|
|
|
1464
1466
|
timeout: this.config.timeout,
|
|
1465
1467
|
debug: this.config.debug,
|
|
1466
1468
|
interceptors,
|
|
1467
|
-
logger: this.logger
|
|
1469
|
+
logger: this.logger,
|
|
1470
|
+
environment: this.config.environment
|
|
1468
1471
|
});
|
|
1469
1472
|
this.currencyRates = DEFAULT_CURRENCY_RATES;
|
|
1470
1473
|
}
|