tradly 1.2.13 → 1.2.14

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/User.js +4 -0
  2. package/package.json +1 -1
package/Roots/User.js CHANGED
@@ -94,6 +94,7 @@ class User {
94
94
  path: REGISTER,
95
95
  method: Method.POST,
96
96
  param: param.data,
97
+ pkKey: param.pkKey,
97
98
  });
98
99
  if (error) {
99
100
  return error;
@@ -110,6 +111,7 @@ class User {
110
111
  path: FORGOTPASSWORD,
111
112
  method: Method.POST,
112
113
  param: param.data,
114
+ pkKey: param.pkKey,
113
115
  });
114
116
  if (error) {
115
117
  return error;
@@ -126,6 +128,7 @@ class User {
126
128
  path: SETPASSWORD,
127
129
  method: Method.POST,
128
130
  param: param.data,
131
+ pkKey: param.pkKey,
129
132
  });
130
133
  if (error) {
131
134
  return error;
@@ -164,6 +167,7 @@ class User {
164
167
  path: LOGOUT,
165
168
  method: Method.POST,
166
169
  param: param.data,
170
+ pkKey: param.pkKey,
167
171
  });
168
172
  if (error) {
169
173
  return error;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tradly",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "Tradly JS SDK",
5
5
  "main": "index.js",
6
6
  "type": "module",