@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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2450,7 +2450,7 @@ var Delopay = class {
|
|
|
2450
2450
|
this.timeout = options?.timeout ?? 3e4;
|
|
2451
2451
|
this.maxRetries = options?.maxRetries ?? 2;
|
|
2452
2452
|
this.debug = options?.debug ?? false;
|
|
2453
|
-
if (options?.baseUrl) {
|
|
2453
|
+
if (options?.baseUrl !== void 0) {
|
|
2454
2454
|
this.baseUrl = options.baseUrl;
|
|
2455
2455
|
} else if (options?.sandbox) {
|
|
2456
2456
|
this.baseUrl = SANDBOX_URL;
|