tradly 1.0.73 → 1.0.74

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/README.md CHANGED
@@ -5,11 +5,11 @@
5
5
  </p>
6
6
  <h3 align="center"> Launch Platforms apps superfast. Headless. API First </h3>
7
7
  <p align="center"> The flexible and modular infrastacture to launch marketplace, community and commerce apps. </p>
8
- <p align="center"><a href="https://www.youtube.com/channel/UCRpXlfFBX5nayubY70-IFEA">See demo videos</a></p>
8
+ <p align="center"><a href="https://tradly.app/tutorials">See demo videos</a></p>
9
9
  <br />
10
10
 
11
11
 
12
- Tradly helps developers / non technical founders with low-code/no-code solution to launch marketplaces and commerce apps.
12
+ Tradly helps developers / non technical founders with low-code/no-code solution to launch marketplaces, Ecosystem for SaaS and commerce apps.
13
13
 
14
14
  ### Saving your time
15
15
  Whether you want simple things like catalog creation or configure complex revenue models, we made it simple and easy to configure through our SuperAdmin. Starter kits to develop apps. Not just that, and design system is coming soon.
package/Roots/SetSDK.js CHANGED
@@ -46,7 +46,13 @@ class SetSDK {
46
46
  async config(init = { domain, env }) {
47
47
  try {
48
48
  const response = await axios({
49
- url: `https://api.tradly.app/skua/tenants/pk_by_domain?domain=${init.domain}&env=${init.env}`,
49
+ url: `${
50
+ init.env.startsWith("dev")
51
+ ? "https://api.dev.tradly.app"
52
+ : "https://api.tradly.app"
53
+ }/skua/tenants/pk_by_domain?domain=${
54
+ init.domain
55
+ }&env=${init.env}`,
50
56
  method: "GET",
51
57
  responseType: "json",
52
58
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tradly",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "description": "Tradly JS SDK",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -29,4 +29,4 @@
29
29
  ],
30
30
  "author": "tradly",
31
31
  "license": "ISC"
32
- }
32
+ }