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