@diviswap/sdk 1.7.17 → 1.7.19
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/cli/index.js +7 -7
- package/dist/cli/templates/nextjs-app/dashboard-hooks.ts.hbs +3 -3
- package/dist/cli/templates/nextjs-app/kyc-hooks.ts.hbs +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/cli/templates/nextjs-app/dashboard-hooks.ts.hbs +3 -3
- package/src/cli/templates/nextjs-app/kyc-hooks.ts.hbs +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1733,11 +1733,12 @@ var UnifiedApiClient = class _UnifiedApiClient {
|
|
|
1733
1733
|
static getDefaultApiUrl(environment) {
|
|
1734
1734
|
switch (environment) {
|
|
1735
1735
|
case "production":
|
|
1736
|
-
return "https://api.liberex.sv";
|
|
1737
1736
|
case "sandbox":
|
|
1737
|
+
return "https://api.liberex.sv";
|
|
1738
|
+
case "development":
|
|
1738
1739
|
return "https://dev-api.liberex.sv";
|
|
1739
1740
|
default:
|
|
1740
|
-
return "https://
|
|
1741
|
+
return "https://api.liberex.sv";
|
|
1741
1742
|
}
|
|
1742
1743
|
}
|
|
1743
1744
|
/**
|