ggez-banking-sdk 0.1.67 → 0.1.69

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.
@@ -1155,7 +1155,8 @@ export declare enum TicketType {
1155
1155
  export declare enum VerificationMethod {
1156
1156
  Whats_App = 1,
1157
1157
  Telegram = 2,
1158
- Phone_Call = 3
1158
+ Phone_Call = 3,
1159
+ SMS = 4
1159
1160
  }
1160
1161
  export declare enum ChainType {
1161
1162
  GGEZ = 1
@@ -1225,6 +1225,7 @@ var VerificationMethod;
1225
1225
  VerificationMethod[VerificationMethod["Whats_App"] = 1] = "Whats_App";
1226
1226
  VerificationMethod[VerificationMethod["Telegram"] = 2] = "Telegram";
1227
1227
  VerificationMethod[VerificationMethod["Phone_Call"] = 3] = "Phone_Call";
1228
+ VerificationMethod[VerificationMethod["SMS"] = 4] = "SMS";
1228
1229
  })(VerificationMethod || (exports.VerificationMethod = VerificationMethod = {}));
1229
1230
  var ChainType;
1230
1231
  (function (ChainType) {
@@ -35,9 +35,9 @@ const fillDeviceDetails = () => {
35
35
  geo_coordinates: "",
36
36
  client_time_zone: `UTC ${dayjs_1.default.tz(new Date()).format("Z")}`,
37
37
  server_date: "",
38
- date_utc: "",
38
+ date_utc: dayjs_1.default.utc(new Date()).format("YYYY-MM-DD HH:mm:ss.SSS"),
39
39
  client_date: dayjs_1.default.tz(new Date()).format("YYYY-MM-DD HH:mm:ss.SSS"),
40
- update_date_utc: "",
40
+ update_date_utc: dayjs_1.default.utc(new Date()).format("YYYY-MM-DD HH:mm:ss.SSS"),
41
41
  };
42
42
  return device;
43
43
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.67",
3
+ "version": "0.1.69",
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",