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/index.mjs CHANGED
@@ -1442,6 +1442,7 @@ var ComplianceClient = class {
1442
1442
  autoCreateProfiles: config.autoCreateProfiles !== false,
1443
1443
  // default true
1444
1444
  syncMode: config.syncMode || "sync",
1445
+ environment: config.environment,
1445
1446
  interceptors,
1446
1447
  logger: this.logger
1447
1448
  };
@@ -1452,7 +1453,8 @@ var ComplianceClient = class {
1452
1453
  headers: this.config.headers,
1453
1454
  timeout: this.config.timeout,
1454
1455
  debug: this.config.debug,
1455
- logger: this.logger
1456
+ logger: this.logger,
1457
+ environment: this.config.environment
1456
1458
  });
1457
1459
  this.riskClient = new RiskProfileClient({
1458
1460
  baseURL: this.config.baseURL,
@@ -1462,7 +1464,8 @@ var ComplianceClient = class {
1462
1464
  timeout: this.config.timeout,
1463
1465
  debug: this.config.debug,
1464
1466
  interceptors,
1465
- logger: this.logger
1467
+ logger: this.logger,
1468
+ environment: this.config.environment
1466
1469
  });
1467
1470
  this.currencyRates = DEFAULT_CURRENCY_RATES;
1468
1471
  }