ggez-banking-sdk 0.1.104 → 0.1.106

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.
@@ -462,7 +462,7 @@ class UserClient {
462
462
  this.ActivateGoogleAuth = async (data) => {
463
463
  try {
464
464
  const userData = FillActivateGoogleAuthData(data);
465
- const response = await this.userService.enrollGoogleAuth(this.clientData.userId, userData);
465
+ const response = await this.userService.activateGoogleAuth(this.clientData.userId, userData);
466
466
  return ResponseHelper.GetSuccessResponse(response, this.clientData.userInfo, "authentication_data", "ActivateGoogleAuth", "create");
467
467
  }
468
468
  catch (error) {
@@ -1,4 +1,4 @@
1
- declare const _default: {
1
+ declare const accountCurrencies: {
2
2
  ID: number;
3
3
  Number: number;
4
4
  Code: string;
@@ -9,4 +9,4 @@ declare const _default: {
9
9
  Location: string;
10
10
  Is_Active: string;
11
11
  }[];
12
- export default _default;
12
+ export { accountCurrencies };
@@ -1,4 +1,4 @@
1
- export default [
1
+ const accountCurrencies = [
2
2
  {
3
3
  ID: 68,
4
4
  Number: 826,
@@ -8,7 +8,7 @@ export default [
8
8
  Position: 999,
9
9
  Exponent: 0,
10
10
  Location: "United Kingdom",
11
- Is_Active: "True"
11
+ Is_Active: "True",
12
12
  },
13
13
  {
14
14
  ID: 188,
@@ -19,7 +19,7 @@ export default [
19
19
  Position: 1,
20
20
  Exponent: 0,
21
21
  Location: "United States",
22
- Is_Active: "True"
22
+ Is_Active: "True",
23
23
  },
24
24
  {
25
25
  ID: 63,
@@ -30,6 +30,7 @@ export default [
30
30
  Position: 999,
31
31
  Exponent: 0,
32
32
  Location: "European Union",
33
- Is_Active: "True"
34
- }
33
+ Is_Active: "True",
34
+ },
35
35
  ];
36
+ export { accountCurrencies };
@@ -1,4 +1,4 @@
1
- declare const _default: {
1
+ declare const countries: {
2
2
  ID: number;
3
3
  Code: number;
4
4
  Name: string;
@@ -10,4 +10,4 @@ declare const _default: {
10
10
  Region: string;
11
11
  Advanced_Region: string;
12
12
  }[];
13
- export default _default;
13
+ export { countries };
@@ -1,4 +1,4 @@
1
- export default [
1
+ const countries = [
2
2
  {
3
3
  ID: 1,
4
4
  Code: 4,
@@ -3000,3 +3000,4 @@ export default [
3000
3000
  Advanced_Region: "",
3001
3001
  },
3002
3002
  ];
3003
+ export { countries };
@@ -1,4 +1,4 @@
1
- declare const _default: ({
1
+ declare const currencies: ({
2
2
  ID: number;
3
3
  Number: string;
4
4
  Code: string;
@@ -29,4 +29,4 @@ declare const _default: ({
29
29
  Location: number;
30
30
  Is_Active: string;
31
31
  })[];
32
- export default _default;
32
+ export { currencies };
@@ -1,4 +1,4 @@
1
- export default [
1
+ const currencies = [
2
2
  {
3
3
  ID: 1,
4
4
  Number: "020",
@@ -2376,3 +2376,4 @@ export default [
2376
2376
  Is_Active: "False",
2377
2377
  },
2378
2378
  ];
2379
+ export { currencies };
@@ -1,6 +1,6 @@
1
- declare const _default: {
1
+ declare const states: {
2
2
  Country_Code: number;
3
3
  State_Province_Name: string;
4
4
  State_Province_Code: string;
5
5
  }[];
6
- export default _default;
6
+ export { states };
@@ -1,4 +1,4 @@
1
- export default [
1
+ const states = [
2
2
  {
3
3
  Country_Code: 840,
4
4
  State_Province_Name: "Virgin Islands of the U.S.",
@@ -346,3 +346,4 @@ export default [
346
346
  State_Province_Code: "AB",
347
347
  },
348
348
  ];
349
+ export { states };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.104",
3
+ "version": "0.1.106",
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",