@delopay/sdk 0.1.3 → 0.1.4

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.js CHANGED
@@ -2417,7 +2417,7 @@ var Delopay = class {
2417
2417
  this.timeout = options?.timeout ?? 3e4;
2418
2418
  this.maxRetries = options?.maxRetries ?? 2;
2419
2419
  this.debug = options?.debug ?? false;
2420
- if (options?.baseUrl) {
2420
+ if (options?.baseUrl !== void 0) {
2421
2421
  this.baseUrl = options.baseUrl;
2422
2422
  } else if (options?.sandbox) {
2423
2423
  this.baseUrl = SANDBOX_URL;