ggez-banking-sdk 0.0.32 → 0.0.33

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.
@@ -52,9 +52,7 @@ declare const Data: () => {
52
52
  enable_sms_notification: string;
53
53
  enable_push_notification: string;
54
54
  enable_device_authentication: string;
55
- time_zone: {
56
- userTimeZone: string;
57
- };
55
+ time_zone: string;
58
56
  };
59
57
  currency: {
60
58
  id: number;
@@ -161,9 +159,7 @@ declare const Data: () => {
161
159
  enable_sms_notification: string;
162
160
  enable_push_notification: string;
163
161
  enable_device_authentication: string;
164
- time_zone: {
165
- userTimeZone: string;
166
- };
162
+ time_zone: string;
167
163
  };
168
164
  currency: {
169
165
  id: number;
@@ -114,7 +114,7 @@ const Data = () => {
114
114
  enable_sms_notification: "1",
115
115
  enable_push_notification: "1",
116
116
  enable_device_authentication: "1",
117
- time_zone: (0, utils_1.getTimezone)(),
117
+ time_zone: (0, utils_1.getTimezone)().userTimeZone,
118
118
  }, currency: [
119
119
  {
120
120
  id: 0,
@@ -193,7 +193,7 @@ const Data = () => {
193
193
  enable_sms_notification: "1",
194
194
  enable_push_notification: "1",
195
195
  enable_device_authentication: "1",
196
- time_zone: (0, utils_1.getTimezone)(),
196
+ time_zone: (0, utils_1.getTimezone)().userTimeZone,
197
197
  }, currency: [
198
198
  {
199
199
  id: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
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",