ggez-banking-sdk 0.1.64 → 0.1.65

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.
@@ -113,7 +113,7 @@ const useVerifyAndConfirm = (userInfo, tokenData, baseUrl, nodeUrl, programId, g
113
113
  return {
114
114
  response: response,
115
115
  newUser: null,
116
- message: "The OTP Email code has been sent",
116
+ message: response?.data?.result?.message,
117
117
  status: "success",
118
118
  };
119
119
  }
@@ -134,7 +134,7 @@ const useVerifyAndConfirm = (userInfo, tokenData, baseUrl, nodeUrl, programId, g
134
134
  return {
135
135
  response: response,
136
136
  newUser: null,
137
- message: "The OTP SMS code has been sent",
137
+ message: response?.data?.result?.message,
138
138
  status: "success",
139
139
  };
140
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",