ggez-banking-sdk 0.1.75 → 0.1.76

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.
@@ -404,6 +404,7 @@ export interface IAccount {
404
404
  user_id: number;
405
405
  user_name: null;
406
406
  account_id: number;
407
+ update_date_utc: string;
407
408
  };
408
409
  chain_data: any;
409
410
  limits: string;
@@ -9,7 +9,7 @@ function maskMiddleOfString(inputString) {
9
9
  return "*".repeat(stringLength);
10
10
  }
11
11
  else if (stringLength >= 16) {
12
- return (stringValue.substring(0, 4) +
12
+ return (stringValue.substring(0, 5) +
13
13
  "*".repeat(stringLength - 8) +
14
14
  stringValue.substring(stringLength - 4));
15
15
  }
@@ -24,4 +24,4 @@ function maskMiddleOfString(inputString) {
24
24
  return inputString;
25
25
  }
26
26
  }
27
- //update error
27
+ //update error
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.75",
3
+ "version": "0.1.76",
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",