tradly 1.0.36 → 1.0.37

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.
Files changed (2) hide show
  1. package/Roots/App.js +1 -1
  2. package/package.json +1 -1
package/Roots/App.js CHANGED
@@ -191,7 +191,7 @@ class App {
191
191
  } catch (error) { return error }
192
192
  }
193
193
  async commonFuntion(param={path,bodyParam,authKey,Method}) {
194
- try { const [error, responseJson] = await network.networkCall({path:path.param,method:Method,authKey:param.authKey});
194
+ try { const [error, responseJson] = await network.networkCall({path:param.path,method:param.Method,authKey:param.authKey});
195
195
  if (error) { return error }
196
196
  else { return responseJson }
197
197
  } catch (error) { return error }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tradly",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "Tradly JS SDK",
5
5
  "main": "index.js",
6
6
  "type": "module",