ggez-banking-sdk 0.4.9 → 0.4.10
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/api/service/user.js
CHANGED
|
@@ -20,7 +20,7 @@ class UserService extends BaseService {
|
|
|
20
20
|
// #region "GET"
|
|
21
21
|
async getUser() {
|
|
22
22
|
const url = this.resolveURL(`/${await this.userId()}`);
|
|
23
|
-
return this.GET(url);
|
|
23
|
+
return this.GET(url, { flags: { showCustomField: true } });
|
|
24
24
|
}
|
|
25
25
|
async getTermsAndConditions() {
|
|
26
26
|
const url = this.resolveURL(`${UserEndpoints.TermsAndConditions}/${await this.userId()}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.10",
|
|
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
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|