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
|
@@ -1358,6 +1358,7 @@ var ComplianceClient = class {
|
|
|
1358
1358
|
autoCreateProfiles: config.autoCreateProfiles !== false,
|
|
1359
1359
|
// default true
|
|
1360
1360
|
syncMode: config.syncMode || "sync",
|
|
1361
|
+
environment: config.environment,
|
|
1361
1362
|
interceptors,
|
|
1362
1363
|
logger: this.logger
|
|
1363
1364
|
};
|
|
@@ -1368,7 +1369,8 @@ var ComplianceClient = class {
|
|
|
1368
1369
|
headers: this.config.headers,
|
|
1369
1370
|
timeout: this.config.timeout,
|
|
1370
1371
|
debug: this.config.debug,
|
|
1371
|
-
logger: this.logger
|
|
1372
|
+
logger: this.logger,
|
|
1373
|
+
environment: this.config.environment
|
|
1372
1374
|
});
|
|
1373
1375
|
this.riskClient = new RiskProfileClient({
|
|
1374
1376
|
baseURL: this.config.baseURL,
|
|
@@ -1378,7 +1380,8 @@ var ComplianceClient = class {
|
|
|
1378
1380
|
timeout: this.config.timeout,
|
|
1379
1381
|
debug: this.config.debug,
|
|
1380
1382
|
interceptors,
|
|
1381
|
-
logger: this.logger
|
|
1383
|
+
logger: this.logger,
|
|
1384
|
+
environment: this.config.environment
|
|
1382
1385
|
});
|
|
1383
1386
|
this.currencyRates = DEFAULT_CURRENCY_RATES;
|
|
1384
1387
|
}
|