ggez-banking-sdk 0.1.156 → 0.1.158
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/clients/organization.d.ts +1 -1
- package/dist/api/clients/organization.js +1 -1
- package/dist/helper/index.d.ts +1 -1
- package/dist/helper/index.js +1 -1
- package/dist/helper/{cookiesHelper.d.ts → storage/cookiesHelper.d.ts} +3 -5
- package/dist/helper/{cookiesHelper.js → storage/cookiesHelper.js} +10 -33
- package/dist/helper/storage/index.d.ts +12 -0
- package/dist/helper/storage/index.js +19 -0
- package/dist/helper/storage/localStorageHelper.d.ts +13 -0
- package/dist/helper/storage/localStorageHelper.js +47 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ declare class OrganizationClient {
|
|
|
11
11
|
message: string;
|
|
12
12
|
error: any;
|
|
13
13
|
}>;
|
|
14
|
-
|
|
14
|
+
UploadDocument: (data: IUploadOrganizationDocumentData) => Promise<{
|
|
15
15
|
data: import("../../types").DocumentData;
|
|
16
16
|
success: boolean;
|
|
17
17
|
message: string;
|
|
@@ -27,7 +27,7 @@ class OrganizationClient {
|
|
|
27
27
|
return ResponseHelper.GetErrorResponse(organization, "CreateOrganization");
|
|
28
28
|
}
|
|
29
29
|
};
|
|
30
|
-
|
|
30
|
+
UploadDocument = async (data) => {
|
|
31
31
|
try {
|
|
32
32
|
const documentData = FillCreateOrganizationDocumentData(data);
|
|
33
33
|
const response = await this.organizationService.createDocument(data.id, documentData);
|
package/dist/helper/index.d.ts
CHANGED
package/dist/helper/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { USR } from "../../types";
|
|
2
2
|
declare class CookiesHelper {
|
|
3
3
|
private domain;
|
|
4
4
|
private programId;
|
|
5
5
|
constructor(programId: string, domain: string);
|
|
6
|
-
GetIID():
|
|
7
|
-
SetIID():
|
|
6
|
+
GetIID(): string;
|
|
7
|
+
SetIID(): string;
|
|
8
8
|
ValidateIID(IID: string): string;
|
|
9
9
|
isIIDValid(IID: string): boolean;
|
|
10
10
|
GetDEK(): string;
|
|
@@ -20,8 +20,6 @@ declare class CookiesHelper {
|
|
|
20
20
|
GetJWTToken(): string;
|
|
21
21
|
SetJWTToken(jwtToken: string): void;
|
|
22
22
|
ValidateJWTToken(jwtToken: string): string;
|
|
23
|
-
GetUserData(): UserData;
|
|
24
|
-
SetUserData(userData: UserData): void;
|
|
25
23
|
GET(key: string): string | undefined;
|
|
26
24
|
SET(key: string, value: string, expires?: Date): void;
|
|
27
25
|
REMOVE(key: string): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { v4 } from "uuid";
|
|
2
2
|
import Cookies from "js-cookie";
|
|
3
|
-
import { CipherHelper } from "
|
|
3
|
+
import { CipherHelper } from "..";
|
|
4
4
|
class CookiesHelper {
|
|
5
5
|
// #region "Properties"
|
|
6
6
|
domain = "";
|
|
@@ -17,8 +17,7 @@ class CookiesHelper {
|
|
|
17
17
|
try {
|
|
18
18
|
const IID = this.GET("IID");
|
|
19
19
|
if (!IID) {
|
|
20
|
-
this.SetIID();
|
|
21
|
-
return this.GetIID();
|
|
20
|
+
return this.SetIID();
|
|
22
21
|
}
|
|
23
22
|
const { key, iv } = CipherHelper.GenerateByProgramID(this.programId);
|
|
24
23
|
const decryptedIID = CipherHelper.Decrypt(IID, key, iv);
|
|
@@ -34,6 +33,7 @@ class CookiesHelper {
|
|
|
34
33
|
const { key, iv } = CipherHelper.GenerateByProgramID(this.programId);
|
|
35
34
|
const encryptedIID = CipherHelper.Encrypt(IID, key, iv);
|
|
36
35
|
this.SET("IID", encryptedIID);
|
|
36
|
+
return IID;
|
|
37
37
|
}
|
|
38
38
|
catch (error) {
|
|
39
39
|
console.error(error);
|
|
@@ -67,7 +67,7 @@ class CookiesHelper {
|
|
|
67
67
|
const DEK = this.GET("DEK");
|
|
68
68
|
const USR = this.GetUSR();
|
|
69
69
|
if (!DEK || !USR) {
|
|
70
|
-
return
|
|
70
|
+
return "";
|
|
71
71
|
}
|
|
72
72
|
const { key, iv } = CipherHelper.GenerateByUSRAndIID(USR, IID);
|
|
73
73
|
const encryptionKey = CipherHelper.Decrypt(DEK, key, iv);
|
|
@@ -115,6 +115,8 @@ class CookiesHelper {
|
|
|
115
115
|
const IID = this.GetIID();
|
|
116
116
|
const { key, iv } = CipherHelper.GenerateByInstallationID(IID);
|
|
117
117
|
const USR = this.GET("USR");
|
|
118
|
+
if (!USR)
|
|
119
|
+
return null;
|
|
118
120
|
const decryptedUSR = CipherHelper.Decrypt(USR, key, iv);
|
|
119
121
|
return JSON.parse(decryptedUSR);
|
|
120
122
|
}
|
|
@@ -176,6 +178,8 @@ class CookiesHelper {
|
|
|
176
178
|
const IID = this.GetIID();
|
|
177
179
|
const { key, iv } = CipherHelper.GenerateByInstallationID(IID);
|
|
178
180
|
const accessToken = this.GET("access_token");
|
|
181
|
+
if (!accessToken)
|
|
182
|
+
return "";
|
|
179
183
|
const decryptedAccessToken = CipherHelper.Decrypt(accessToken, key, iv);
|
|
180
184
|
return decryptedAccessToken;
|
|
181
185
|
}
|
|
@@ -214,6 +218,8 @@ class CookiesHelper {
|
|
|
214
218
|
const IID = this.GetIID();
|
|
215
219
|
const { key, iv } = CipherHelper.GenerateByInstallationID(IID);
|
|
216
220
|
const jwtToken = this.GET("jwt_token");
|
|
221
|
+
if (!jwtToken)
|
|
222
|
+
return "";
|
|
217
223
|
const decryptedAccessToken = CipherHelper.Decrypt(jwtToken, key, iv);
|
|
218
224
|
return decryptedAccessToken;
|
|
219
225
|
}
|
|
@@ -246,35 +252,6 @@ class CookiesHelper {
|
|
|
246
252
|
}
|
|
247
253
|
}
|
|
248
254
|
// #endregion
|
|
249
|
-
// #region "User Data"
|
|
250
|
-
GetUserData() {
|
|
251
|
-
try {
|
|
252
|
-
const IID = this.GetIID();
|
|
253
|
-
const { key, iv } = CipherHelper.GenerateByInstallationID(IID);
|
|
254
|
-
const userData = this.GET("CUD");
|
|
255
|
-
const decryptedUserData = CipherHelper.Decrypt(userData, key, iv);
|
|
256
|
-
if (decryptedUserData) {
|
|
257
|
-
return JSON.parse(decryptedUserData);
|
|
258
|
-
}
|
|
259
|
-
return null;
|
|
260
|
-
}
|
|
261
|
-
catch (error) {
|
|
262
|
-
console.error(error);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
SetUserData(userData) {
|
|
266
|
-
try {
|
|
267
|
-
const IID = this.GetIID();
|
|
268
|
-
const { key, iv } = CipherHelper.GenerateByInstallationID(IID);
|
|
269
|
-
const data = JSON.stringify(userData);
|
|
270
|
-
const encryptedUserData = CipherHelper.Encrypt(data, key, iv);
|
|
271
|
-
this.SET("CUD", encryptedUserData);
|
|
272
|
-
}
|
|
273
|
-
catch (error) {
|
|
274
|
-
console.error(error);
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
// #endregion
|
|
278
255
|
// #region "Getters & Setters"
|
|
279
256
|
GET(key) {
|
|
280
257
|
return Cookies.get(key);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { CookiesHelper } from "./cookiesHelper";
|
|
2
|
+
import { LocalStorageHelper } from "./localStorageHelper";
|
|
3
|
+
export * from "./cookiesHelper";
|
|
4
|
+
export * from "./localStorageHelper";
|
|
5
|
+
declare class StorageHelper {
|
|
6
|
+
localStorageHelper: LocalStorageHelper;
|
|
7
|
+
cookiesHelper: CookiesHelper;
|
|
8
|
+
constructor(programId: string, domain: string);
|
|
9
|
+
GetCookiesHelper(): CookiesHelper;
|
|
10
|
+
GetLocalStorageHelper(): LocalStorageHelper;
|
|
11
|
+
}
|
|
12
|
+
export { StorageHelper };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CookiesHelper } from "./cookiesHelper";
|
|
2
|
+
import { LocalStorageHelper } from "./localStorageHelper";
|
|
3
|
+
export * from "./cookiesHelper";
|
|
4
|
+
export * from "./localStorageHelper";
|
|
5
|
+
class StorageHelper {
|
|
6
|
+
localStorageHelper;
|
|
7
|
+
cookiesHelper;
|
|
8
|
+
constructor(programId, domain) {
|
|
9
|
+
this.localStorageHelper = new LocalStorageHelper(programId, domain);
|
|
10
|
+
this.cookiesHelper = new CookiesHelper(programId, domain);
|
|
11
|
+
}
|
|
12
|
+
GetCookiesHelper() {
|
|
13
|
+
return this.cookiesHelper;
|
|
14
|
+
}
|
|
15
|
+
GetLocalStorageHelper() {
|
|
16
|
+
return this.localStorageHelper;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export { StorageHelper };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UserData } from "../../types";
|
|
2
|
+
import { CookiesHelper } from "./cookiesHelper";
|
|
3
|
+
declare class LocalStorageHelper {
|
|
4
|
+
cookiesHelper: CookiesHelper;
|
|
5
|
+
programId: string;
|
|
6
|
+
domain: string;
|
|
7
|
+
constructor(programId: string, domain: string);
|
|
8
|
+
GetUserData(): UserData;
|
|
9
|
+
SetUserData(userData: UserData): void;
|
|
10
|
+
GET(key: string): string;
|
|
11
|
+
SET(key: string, value: string): void;
|
|
12
|
+
}
|
|
13
|
+
export { LocalStorageHelper };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { CipherHelper } from "../cipherHelper";
|
|
2
|
+
import { CookiesHelper } from "./cookiesHelper";
|
|
3
|
+
class LocalStorageHelper {
|
|
4
|
+
cookiesHelper;
|
|
5
|
+
programId;
|
|
6
|
+
domain;
|
|
7
|
+
// #region "Constructor"
|
|
8
|
+
constructor(programId, domain) {
|
|
9
|
+
this.cookiesHelper = new CookiesHelper(programId, domain);
|
|
10
|
+
}
|
|
11
|
+
// #endregion
|
|
12
|
+
// #region "User Data"
|
|
13
|
+
GetUserData() {
|
|
14
|
+
try {
|
|
15
|
+
const IID = this.cookiesHelper.GetIID();
|
|
16
|
+
const { key, iv } = CipherHelper.GenerateByInstallationID(IID);
|
|
17
|
+
const userData = localStorage.getItem("CUD");
|
|
18
|
+
const decryptedUserData = CipherHelper.Decrypt(userData, key, iv);
|
|
19
|
+
if (decryptedUserData) {
|
|
20
|
+
return JSON.parse(decryptedUserData);
|
|
21
|
+
}
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
24
|
+
catch (error) {
|
|
25
|
+
console.error(error);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
SetUserData(userData) {
|
|
29
|
+
try {
|
|
30
|
+
const IID = this.cookiesHelper.GetIID();
|
|
31
|
+
const { key, iv } = CipherHelper.GenerateByInstallationID(IID);
|
|
32
|
+
const data = JSON.stringify(userData);
|
|
33
|
+
const encryptedUserData = CipherHelper.Encrypt(data, key, iv);
|
|
34
|
+
this.SET("CUD", encryptedUserData);
|
|
35
|
+
}
|
|
36
|
+
catch (error) {
|
|
37
|
+
console.error(error);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
GET(key) {
|
|
41
|
+
return localStorage.getItem(key);
|
|
42
|
+
}
|
|
43
|
+
SET(key, value) {
|
|
44
|
+
localStorage.setItem(key, value);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
export { LocalStorageHelper };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/index.ts","../src/api/index.ts","../src/api/clients/account.ts","../src/api/clients/auth.ts","../src/api/clients/blockchain.ts","../src/api/clients/index.ts","../src/api/clients/ipAddressAndLocation.ts","../src/api/clients/limited.ts","../src/api/clients/order.ts","../src/api/clients/organization.ts","../src/api/clients/promotion.ts","../src/api/clients/transaction.ts","../src/api/clients/user.ts","../src/api/data/account.ts","../src/api/data/auth.ts","../src/api/data/blockchain.ts","../src/api/data/index.ts","../src/api/data/limited.ts","../src/api/data/order.ts","../src/api/data/organization.ts","../src/api/data/result.ts","../src/api/data/transaction.ts","../src/api/data/user/activity.ts","../src/api/data/user/address.ts","../src/api/data/user/auth.ts","../src/api/data/user/bankAccount.ts","../src/api/data/user/confirmUserSecurity.ts","../src/api/data/user/device.ts","../src/api/data/user/document.ts","../src/api/data/user/email.ts","../src/api/data/user/forgetSecurityData.ts","../src/api/data/user/identification.ts","../src/api/data/user/index.ts","../src/api/data/user/personalInfo.ts","../src/api/data/user/phone.ts","../src/api/data/user/preferences.ts","../src/api/data/user/resetUserSecurity.ts","../src/api/data/user/security.ts","../src/api/data/user/ticket.ts","../src/api/data/user/user.ts","../src/api/data/user/validateLimitedSecurity.ts","../src/api/data/user/validateSecurityData.ts","../src/api/data/user/verifyUserSecurity.ts","../src/api/services/account.ts","../src/api/services/auth.ts","../src/api/services/base.ts","../src/api/services/blockchain.ts","../src/api/services/index.ts","../src/api/services/ipAddressAndLocation.ts","../src/api/services/limited.ts","../src/api/services/order.ts","../src/api/services/organization.ts","../src/api/services/promotion.ts","../src/api/services/transaction.ts","../src/api/services/user.ts","../src/constants/constants.ts","../src/constants/enum.ts","../src/constants/index.ts","../src/constants/regex.ts","../src/constants/structure.ts","../src/content/accountCurrencies.ts","../src/content/countries.ts","../src/content/currencies.ts","../src/content/index.ts","../src/content/states.ts","../src/helper/cipherHelper.ts","../src/helper/clientHelper.ts","../src/helper/cookiesHelper.ts","../src/helper/dateTimeHelper.ts","../src/helper/deviceHelper.ts","../src/helper/geoHelper.ts","../src/helper/index.ts","../src/helper/userHelper.ts","../src/helper/api/axiosHelper.ts","../src/helper/api/index.ts","../src/helper/api/responseHelper.ts","../src/types/index.ts","../src/types/api/index.ts","../src/types/api/client/account.ts","../src/types/api/client/auth.ts","../src/types/api/client/blockchain.ts","../src/types/api/client/index.ts","../src/types/api/client/ipAddressAndLocation.ts","../src/types/api/client/limited.ts","../src/types/api/client/order.ts","../src/types/api/client/organization.ts","../src/types/api/client/promotion.ts","../src/types/api/client/transaction.ts","../src/types/api/client/user.ts","../src/types/api/data/account.ts","../src/types/api/data/auth.ts","../src/types/api/data/blockchain.ts","../src/types/api/data/index.ts","../src/types/api/data/limited.ts","../src/types/api/data/order.ts","../src/types/api/data/organization.ts","../src/types/api/data/transaction.ts","../src/types/api/data/user/address.ts","../src/types/api/data/user/auth.ts","../src/types/api/data/user/bankAccount.ts","../src/types/api/data/user/device.ts","../src/types/api/data/user/document.ts","../src/types/api/data/user/email.ts","../src/types/api/data/user/identification.ts","../src/types/api/data/user/index.ts","../src/types/api/data/user/personalInfo.ts","../src/types/api/data/user/phone.ts","../src/types/api/data/user/preferences.ts","../src/types/api/data/user/security.ts","../src/types/api/data/user/ticket.ts","../src/types/banking/index.ts","../src/types/banking/account/accountStatementData.ts","../src/types/banking/account/accountdata.ts","../src/types/banking/account/accountstatementdetails.ts","../src/types/banking/account/accountstatementinfo.ts","../src/types/banking/account/accountstatementtransaction.ts","../src/types/banking/account/creditlimit.ts","../src/types/banking/account/fulfilment.ts","../src/types/banking/account/index.ts","../src/types/banking/account/info.ts","../src/types/banking/account/security.ts","../src/types/banking/account/chaindata/chaindata.ts","../src/types/banking/account/chaindata/index.ts","../src/types/banking/account/limits/dailylimit.ts","../src/types/banking/account/limits/deposit.ts","../src/types/banking/account/limits/depositinterchange.ts","../src/types/banking/account/limits/depositmonthly.ts","../src/types/banking/account/limits/depositpaymentgateway.ts","../src/types/banking/account/limits/deposityearly.ts","../src/types/banking/account/limits/globaldailylimit.ts","../src/types/banking/account/limits/index.ts","../src/types/banking/account/limits/limits.ts","../src/types/banking/account/limits/monthlylimit.ts","../src/types/banking/account/limits/transferreceiving.ts","../src/types/banking/account/limits/transfersending.ts","../src/types/banking/account/limits/withdraw.ts","../src/types/banking/account/limits/withdrawinterchange.ts","../src/types/banking/account/limits/withdrawmonthly.ts","../src/types/banking/account/limits/withdraworder.ts","../src/types/banking/account/limits/withdrawpurchaseinterchange.ts","../src/types/banking/account/limits/yearlylimit.ts","../src/types/banking/account/options/bulkshipping.ts","../src/types/banking/account/options/carddetails.ts","../src/types/banking/account/options/cardproduction.ts","../src/types/banking/account/options/courier.ts","../src/types/banking/account/options/fulfilment.ts","../src/types/banking/account/options/fulfilmentdetails.ts","../src/types/banking/account/options/fulfilmentinfo.ts","../src/types/banking/account/options/index.ts","../src/types/banking/account/options/options.ts","../src/types/banking/account/options/security.ts","../src/types/banking/account/tokenization/index.ts","../src/types/banking/account/tokenization/provision.ts","../src/types/banking/account/tokenization/provisionrequest.ts","../src/types/banking/account/tokenization/provisionresponse.ts","../src/types/banking/account/tokenization/tokenization.ts","../src/types/banking/blockchain/blockchainData.ts","../src/types/banking/blockchain/chainTransactionData.ts","../src/types/banking/blockchain/coin.ts","../src/types/banking/blockchain/delegateData.ts","../src/types/banking/blockchain/delegationData.ts","../src/types/banking/blockchain/index.ts","../src/types/banking/blockchain/info.ts","../src/types/banking/blockchain/multiSendData.ts","../src/types/banking/blockchain/sendData.ts","../src/types/banking/blockchain/undelegateData.ts","../src/types/banking/common/ResultSet.ts","../src/types/banking/common/archive.ts","../src/types/banking/common/authentication.ts","../src/types/banking/common/bankextendeddata.ts","../src/types/banking/common/baseresult.ts","../src/types/banking/common/beneficiaryaddress.ts","../src/types/banking/common/classification.ts","../src/types/banking/common/contentfile.ts","../src/types/banking/common/cryptoaddressextendeddata.ts","../src/types/banking/common/currencyclouddata.ts","../src/types/banking/common/devicecultureinfo.ts","../src/types/banking/common/externalhostinfo.ts","../src/types/banking/common/geocoordinates.ts","../src/types/banking/common/history.ts","../src/types/banking/common/index.ts","../src/types/banking/common/lastactivity.ts","../src/types/banking/common/notes.ts","../src/types/banking/common/openpayddata.ts","../src/types/banking/common/result.ts","../src/types/banking/common/snbdata.ts","../src/types/banking/common/workinghour.ts","../src/types/banking/common/people/alias.ts","../src/types/banking/common/people/billpaydata.ts","../src/types/banking/common/people/customerinfo.ts","../src/types/banking/common/people/eftdata.ts","../src/types/banking/common/people/etransferdata.ts","../src/types/banking/common/people/index.ts","../src/types/banking/common/people/peoplesdata.ts","../src/types/banking/common/security/index.ts","../src/types/banking/common/security/simplifiedaccessrule.ts","../src/types/banking/common/security/simplifiedaccessruleinfo.ts","../src/types/banking/entities/address.ts","../src/types/banking/entities/bankaccount.ts","../src/types/banking/entities/creditcard.ts","../src/types/banking/entities/cryptoWallet.ts","../src/types/banking/entities/cryptoaddress.ts","../src/types/banking/entities/device.ts","../src/types/banking/entities/devicehistory.ts","../src/types/banking/entities/email.ts","../src/types/banking/entities/externalauthentication.ts","../src/types/banking/entities/generalrequirements.ts","../src/types/banking/entities/identification.ts","../src/types/banking/entities/index.ts","../src/types/banking/entities/notification.ts","../src/types/banking/entities/paymentCryptoAddress.ts","../src/types/banking/entities/paymentInfo.ts","../src/types/banking/entities/phone.ts","../src/types/banking/entities/relationship.ts","../src/types/banking/entities/socialmedia.ts","../src/types/banking/entities/termsconditions.ts","../src/types/banking/entities/customField/index.ts","../src/types/banking/entities/customField/promotionData/giftData.ts","../src/types/banking/entities/customField/promotionData/index.ts","../src/types/banking/entities/customField/promotionData/promotionData.ts","../src/types/banking/entities/customField/promotionData/referralData.ts","../src/types/banking/entities/customField/userAccessControl/action.ts","../src/types/banking/entities/customField/userAccessControl/index.ts","../src/types/banking/entities/customField/userAccessControl/page.ts","../src/types/banking/entities/customField/userAccessControl/section.ts","../src/types/banking/entities/customField/userAccessControl/userAccessControl.ts","../src/types/banking/entities/json/IdentificationExtraData.ts","../src/types/banking/entities/json/index.ts","../src/types/banking/entities/json/device/deviceextendedinfo.ts","../src/types/banking/entities/json/device/index.ts","../src/types/banking/entities/json/device/siminfo.ts","../src/types/banking/group/details.ts","../src/types/banking/group/groupdata.ts","../src/types/banking/group/groupuser.ts","../src/types/banking/group/index.ts","../src/types/banking/group/info.ts","../src/types/banking/group/localization.ts","../src/types/banking/group/media.ts","../src/types/banking/group/settings/classificationinfo.ts","../src/types/banking/group/settings/companyusers.ts","../src/types/banking/group/settings/externalintegration.ts","../src/types/banking/group/settings/fortnox.ts","../src/types/banking/group/settings/index.ts","../src/types/banking/group/settings/messagingsetup.ts","../src/types/banking/group/settings/qvitoo.ts","../src/types/banking/group/settings/setting.ts","../src/types/banking/group/settings/voucherrows.ts","../src/types/banking/oauth/credentialsData.ts","../src/types/banking/oauth/index.ts","../src/types/banking/oauth/tokenData.ts","../src/types/banking/order/customFormData.ts","../src/types/banking/order/features.ts","../src/types/banking/order/fee.ts","../src/types/banking/order/index.ts","../src/types/banking/order/info.ts","../src/types/banking/order/lotteryTicket.ts","../src/types/banking/order/orderData.ts","../src/types/banking/order/orderError.ts","../src/types/banking/order/paymentMethod.ts","../src/types/banking/order/pinCode.ts","../src/types/banking/order/profit.ts","../src/types/banking/order/promotion.ts","../src/types/banking/order/reverseData.ts","../src/types/banking/order/reverseItem.ts","../src/types/banking/order/reversePinCode.ts","../src/types/banking/order/ticket.ts","../src/types/banking/order/topUp.ts","../src/types/banking/order/variant.ts","../src/types/banking/order/voucher.ts","../src/types/banking/order/voucherInfo.ts","../src/types/banking/order/customForm/ggez1.ts","../src/types/banking/order/customForm/ggezGiftRewards.ts","../src/types/banking/order/customForm/ggezReferralRewards.ts","../src/types/banking/order/customForm/index.ts","../src/types/banking/order/fulfilment/fulfilmentInfo.ts","../src/types/banking/order/fulfilment/index.ts","../src/types/banking/order/fulfilment/orderFulfilment.ts","../src/types/banking/order/fulfilment/pinCodeFulfilment.ts","../src/types/banking/order/items/index.ts","../src/types/banking/order/items/info.ts","../src/types/banking/order/items/orderItem.ts","../src/types/banking/organization/details.ts","../src/types/banking/organization/index.ts","../src/types/banking/organization/info.ts","../src/types/banking/organization/organizationdata.ts","../src/types/banking/ticket/content.ts","../src/types/banking/ticket/history.ts","../src/types/banking/ticket/index.ts","../src/types/banking/ticket/info.ts","../src/types/banking/ticket/subentity.ts","../src/types/banking/ticket/ticketdata.ts","../src/types/banking/transaction/billingAddress.ts","../src/types/banking/transaction/conversion.ts","../src/types/banking/transaction/exchange.ts","../src/types/banking/transaction/fee.ts","../src/types/banking/transaction/index.ts","../src/types/banking/transaction/info.ts","../src/types/banking/transaction/receiverInfo.ts","../src/types/banking/transaction/tax.ts","../src/types/banking/transaction/transactionData.ts","../src/types/banking/transaction/transactionInquiry.ts","../src/types/banking/transaction/transactionResultInquiry.ts","../src/types/banking/transaction/transfer.ts","../src/types/banking/user/activity.ts","../src/types/banking/user/attachment.ts","../src/types/banking/user/confirmForgetSecurityData.ts","../src/types/banking/user/confirmSecurityData.ts","../src/types/banking/user/confirmUserSecurity.ts","../src/types/banking/user/confirmUserSecurityInfo.ts","../src/types/banking/user/currency.ts","../src/types/banking/user/documentdata.ts","../src/types/banking/user/documentinfo.ts","../src/types/banking/user/forgetPassword.ts","../src/types/banking/user/forgetSecurityData.ts","../src/types/banking/user/forgetSecurityInfo.ts","../src/types/banking/user/index.ts","../src/types/banking/user/info.ts","../src/types/banking/user/personalinfo.ts","../src/types/banking/user/preferences.ts","../src/types/banking/user/resetPassword.ts","../src/types/banking/user/resetSecurityCode.ts","../src/types/banking/user/resetSecurityData.ts","../src/types/banking/user/resetSecurityQuestions.ts","../src/types/banking/user/resetUserSecurity.ts","../src/types/banking/user/resetUserSecurityInfo.ts","../src/types/banking/user/security.ts","../src/types/banking/user/userauthenticationdata.ts","../src/types/banking/user/usercreditlimit.ts","../src/types/banking/user/userdata.ts","../src/types/banking/user/validateForgetSecurityData.ts","../src/types/banking/user/validateLimitedSecurity.ts","../src/types/banking/user/validateLimitedSecurityData.ts","../src/types/banking/user/validateSecurityData.ts","../src/types/banking/user/validateUserSecurity.ts","../src/types/banking/user/validateUserSecurityInfo.ts","../src/types/banking/user/verifySecurityData.ts","../src/types/banking/user/verifyUserSecurity.ts","../src/types/banking/user/verifyUserSecurityInfo.ts","../src/types/banking/user/commerce/commerce.ts","../src/types/banking/user/commerce/index.ts","../src/types/banking/user/commerce/role.ts","../src/types/banking/user/commerce/usercommerceconfiguration.ts","../src/types/banking/user/validation/index.ts","../src/types/banking/user/validation/info.ts","../src/types/banking/user/validation/validationdata.ts","../src/types/helper/axiosHelper.ts","../src/types/helper/cipherHelper.ts","../src/types/helper/geoHelper.ts","../src/types/helper/index.ts","../src/types/helper/userHelper.ts","../src/types/node/amount.ts","../src/types/node/index.ts","../src/types/node/lotteryPrize.ts","../src/types/node/promotionDetails.ts","../src/utils/index.ts","../src/utils/data/generation.ts","../src/utils/data/index.ts","../src/utils/data/manipulation.ts","../src/utils/data/validation.ts"],"version":"5.9.3"}
|
|
1
|
+
{"root":["../src/index.ts","../src/api/index.ts","../src/api/clients/account.ts","../src/api/clients/auth.ts","../src/api/clients/blockchain.ts","../src/api/clients/index.ts","../src/api/clients/ipAddressAndLocation.ts","../src/api/clients/limited.ts","../src/api/clients/order.ts","../src/api/clients/organization.ts","../src/api/clients/promotion.ts","../src/api/clients/transaction.ts","../src/api/clients/user.ts","../src/api/data/account.ts","../src/api/data/auth.ts","../src/api/data/blockchain.ts","../src/api/data/index.ts","../src/api/data/limited.ts","../src/api/data/order.ts","../src/api/data/organization.ts","../src/api/data/result.ts","../src/api/data/transaction.ts","../src/api/data/user/activity.ts","../src/api/data/user/address.ts","../src/api/data/user/auth.ts","../src/api/data/user/bankAccount.ts","../src/api/data/user/confirmUserSecurity.ts","../src/api/data/user/device.ts","../src/api/data/user/document.ts","../src/api/data/user/email.ts","../src/api/data/user/forgetSecurityData.ts","../src/api/data/user/identification.ts","../src/api/data/user/index.ts","../src/api/data/user/personalInfo.ts","../src/api/data/user/phone.ts","../src/api/data/user/preferences.ts","../src/api/data/user/resetUserSecurity.ts","../src/api/data/user/security.ts","../src/api/data/user/ticket.ts","../src/api/data/user/user.ts","../src/api/data/user/validateLimitedSecurity.ts","../src/api/data/user/validateSecurityData.ts","../src/api/data/user/verifyUserSecurity.ts","../src/api/services/account.ts","../src/api/services/auth.ts","../src/api/services/base.ts","../src/api/services/blockchain.ts","../src/api/services/index.ts","../src/api/services/ipAddressAndLocation.ts","../src/api/services/limited.ts","../src/api/services/order.ts","../src/api/services/organization.ts","../src/api/services/promotion.ts","../src/api/services/transaction.ts","../src/api/services/user.ts","../src/constants/constants.ts","../src/constants/enum.ts","../src/constants/index.ts","../src/constants/regex.ts","../src/constants/structure.ts","../src/content/accountCurrencies.ts","../src/content/countries.ts","../src/content/currencies.ts","../src/content/index.ts","../src/content/states.ts","../src/helper/cipherHelper.ts","../src/helper/clientHelper.ts","../src/helper/dateTimeHelper.ts","../src/helper/deviceHelper.ts","../src/helper/geoHelper.ts","../src/helper/index.ts","../src/helper/userHelper.ts","../src/helper/api/axiosHelper.ts","../src/helper/api/index.ts","../src/helper/api/responseHelper.ts","../src/helper/storage/cookiesHelper.ts","../src/helper/storage/index.ts","../src/helper/storage/localStorageHelper.ts","../src/types/index.ts","../src/types/api/index.ts","../src/types/api/client/account.ts","../src/types/api/client/auth.ts","../src/types/api/client/blockchain.ts","../src/types/api/client/index.ts","../src/types/api/client/ipAddressAndLocation.ts","../src/types/api/client/limited.ts","../src/types/api/client/order.ts","../src/types/api/client/organization.ts","../src/types/api/client/promotion.ts","../src/types/api/client/transaction.ts","../src/types/api/client/user.ts","../src/types/api/data/account.ts","../src/types/api/data/auth.ts","../src/types/api/data/blockchain.ts","../src/types/api/data/index.ts","../src/types/api/data/limited.ts","../src/types/api/data/order.ts","../src/types/api/data/organization.ts","../src/types/api/data/transaction.ts","../src/types/api/data/user/address.ts","../src/types/api/data/user/auth.ts","../src/types/api/data/user/bankAccount.ts","../src/types/api/data/user/device.ts","../src/types/api/data/user/document.ts","../src/types/api/data/user/email.ts","../src/types/api/data/user/identification.ts","../src/types/api/data/user/index.ts","../src/types/api/data/user/personalInfo.ts","../src/types/api/data/user/phone.ts","../src/types/api/data/user/preferences.ts","../src/types/api/data/user/security.ts","../src/types/api/data/user/ticket.ts","../src/types/banking/index.ts","../src/types/banking/account/accountStatementData.ts","../src/types/banking/account/accountdata.ts","../src/types/banking/account/accountstatementdetails.ts","../src/types/banking/account/accountstatementinfo.ts","../src/types/banking/account/accountstatementtransaction.ts","../src/types/banking/account/creditlimit.ts","../src/types/banking/account/fulfilment.ts","../src/types/banking/account/index.ts","../src/types/banking/account/info.ts","../src/types/banking/account/security.ts","../src/types/banking/account/chaindata/chaindata.ts","../src/types/banking/account/chaindata/index.ts","../src/types/banking/account/limits/dailylimit.ts","../src/types/banking/account/limits/deposit.ts","../src/types/banking/account/limits/depositinterchange.ts","../src/types/banking/account/limits/depositmonthly.ts","../src/types/banking/account/limits/depositpaymentgateway.ts","../src/types/banking/account/limits/deposityearly.ts","../src/types/banking/account/limits/globaldailylimit.ts","../src/types/banking/account/limits/index.ts","../src/types/banking/account/limits/limits.ts","../src/types/banking/account/limits/monthlylimit.ts","../src/types/banking/account/limits/transferreceiving.ts","../src/types/banking/account/limits/transfersending.ts","../src/types/banking/account/limits/withdraw.ts","../src/types/banking/account/limits/withdrawinterchange.ts","../src/types/banking/account/limits/withdrawmonthly.ts","../src/types/banking/account/limits/withdraworder.ts","../src/types/banking/account/limits/withdrawpurchaseinterchange.ts","../src/types/banking/account/limits/yearlylimit.ts","../src/types/banking/account/options/bulkshipping.ts","../src/types/banking/account/options/carddetails.ts","../src/types/banking/account/options/cardproduction.ts","../src/types/banking/account/options/courier.ts","../src/types/banking/account/options/fulfilment.ts","../src/types/banking/account/options/fulfilmentdetails.ts","../src/types/banking/account/options/fulfilmentinfo.ts","../src/types/banking/account/options/index.ts","../src/types/banking/account/options/options.ts","../src/types/banking/account/options/security.ts","../src/types/banking/account/tokenization/index.ts","../src/types/banking/account/tokenization/provision.ts","../src/types/banking/account/tokenization/provisionrequest.ts","../src/types/banking/account/tokenization/provisionresponse.ts","../src/types/banking/account/tokenization/tokenization.ts","../src/types/banking/blockchain/blockchainData.ts","../src/types/banking/blockchain/chainTransactionData.ts","../src/types/banking/blockchain/coin.ts","../src/types/banking/blockchain/delegateData.ts","../src/types/banking/blockchain/delegationData.ts","../src/types/banking/blockchain/index.ts","../src/types/banking/blockchain/info.ts","../src/types/banking/blockchain/multiSendData.ts","../src/types/banking/blockchain/sendData.ts","../src/types/banking/blockchain/undelegateData.ts","../src/types/banking/common/ResultSet.ts","../src/types/banking/common/archive.ts","../src/types/banking/common/authentication.ts","../src/types/banking/common/bankextendeddata.ts","../src/types/banking/common/baseresult.ts","../src/types/banking/common/beneficiaryaddress.ts","../src/types/banking/common/classification.ts","../src/types/banking/common/contentfile.ts","../src/types/banking/common/cryptoaddressextendeddata.ts","../src/types/banking/common/currencyclouddata.ts","../src/types/banking/common/devicecultureinfo.ts","../src/types/banking/common/externalhostinfo.ts","../src/types/banking/common/geocoordinates.ts","../src/types/banking/common/history.ts","../src/types/banking/common/index.ts","../src/types/banking/common/lastactivity.ts","../src/types/banking/common/notes.ts","../src/types/banking/common/openpayddata.ts","../src/types/banking/common/result.ts","../src/types/banking/common/snbdata.ts","../src/types/banking/common/workinghour.ts","../src/types/banking/common/people/alias.ts","../src/types/banking/common/people/billpaydata.ts","../src/types/banking/common/people/customerinfo.ts","../src/types/banking/common/people/eftdata.ts","../src/types/banking/common/people/etransferdata.ts","../src/types/banking/common/people/index.ts","../src/types/banking/common/people/peoplesdata.ts","../src/types/banking/common/security/index.ts","../src/types/banking/common/security/simplifiedaccessrule.ts","../src/types/banking/common/security/simplifiedaccessruleinfo.ts","../src/types/banking/entities/address.ts","../src/types/banking/entities/bankaccount.ts","../src/types/banking/entities/creditcard.ts","../src/types/banking/entities/cryptoWallet.ts","../src/types/banking/entities/cryptoaddress.ts","../src/types/banking/entities/device.ts","../src/types/banking/entities/devicehistory.ts","../src/types/banking/entities/email.ts","../src/types/banking/entities/externalauthentication.ts","../src/types/banking/entities/generalrequirements.ts","../src/types/banking/entities/identification.ts","../src/types/banking/entities/index.ts","../src/types/banking/entities/notification.ts","../src/types/banking/entities/paymentCryptoAddress.ts","../src/types/banking/entities/paymentInfo.ts","../src/types/banking/entities/phone.ts","../src/types/banking/entities/relationship.ts","../src/types/banking/entities/socialmedia.ts","../src/types/banking/entities/termsconditions.ts","../src/types/banking/entities/customField/index.ts","../src/types/banking/entities/customField/promotionData/giftData.ts","../src/types/banking/entities/customField/promotionData/index.ts","../src/types/banking/entities/customField/promotionData/promotionData.ts","../src/types/banking/entities/customField/promotionData/referralData.ts","../src/types/banking/entities/customField/userAccessControl/action.ts","../src/types/banking/entities/customField/userAccessControl/index.ts","../src/types/banking/entities/customField/userAccessControl/page.ts","../src/types/banking/entities/customField/userAccessControl/section.ts","../src/types/banking/entities/customField/userAccessControl/userAccessControl.ts","../src/types/banking/entities/json/IdentificationExtraData.ts","../src/types/banking/entities/json/index.ts","../src/types/banking/entities/json/device/deviceextendedinfo.ts","../src/types/banking/entities/json/device/index.ts","../src/types/banking/entities/json/device/siminfo.ts","../src/types/banking/group/details.ts","../src/types/banking/group/groupdata.ts","../src/types/banking/group/groupuser.ts","../src/types/banking/group/index.ts","../src/types/banking/group/info.ts","../src/types/banking/group/localization.ts","../src/types/banking/group/media.ts","../src/types/banking/group/settings/classificationinfo.ts","../src/types/banking/group/settings/companyusers.ts","../src/types/banking/group/settings/externalintegration.ts","../src/types/banking/group/settings/fortnox.ts","../src/types/banking/group/settings/index.ts","../src/types/banking/group/settings/messagingsetup.ts","../src/types/banking/group/settings/qvitoo.ts","../src/types/banking/group/settings/setting.ts","../src/types/banking/group/settings/voucherrows.ts","../src/types/banking/oauth/credentialsData.ts","../src/types/banking/oauth/index.ts","../src/types/banking/oauth/tokenData.ts","../src/types/banking/order/customFormData.ts","../src/types/banking/order/features.ts","../src/types/banking/order/fee.ts","../src/types/banking/order/index.ts","../src/types/banking/order/info.ts","../src/types/banking/order/lotteryTicket.ts","../src/types/banking/order/orderData.ts","../src/types/banking/order/orderError.ts","../src/types/banking/order/paymentMethod.ts","../src/types/banking/order/pinCode.ts","../src/types/banking/order/profit.ts","../src/types/banking/order/promotion.ts","../src/types/banking/order/reverseData.ts","../src/types/banking/order/reverseItem.ts","../src/types/banking/order/reversePinCode.ts","../src/types/banking/order/ticket.ts","../src/types/banking/order/topUp.ts","../src/types/banking/order/variant.ts","../src/types/banking/order/voucher.ts","../src/types/banking/order/voucherInfo.ts","../src/types/banking/order/customForm/ggez1.ts","../src/types/banking/order/customForm/ggezGiftRewards.ts","../src/types/banking/order/customForm/ggezReferralRewards.ts","../src/types/banking/order/customForm/index.ts","../src/types/banking/order/fulfilment/fulfilmentInfo.ts","../src/types/banking/order/fulfilment/index.ts","../src/types/banking/order/fulfilment/orderFulfilment.ts","../src/types/banking/order/fulfilment/pinCodeFulfilment.ts","../src/types/banking/order/items/index.ts","../src/types/banking/order/items/info.ts","../src/types/banking/order/items/orderItem.ts","../src/types/banking/organization/details.ts","../src/types/banking/organization/index.ts","../src/types/banking/organization/info.ts","../src/types/banking/organization/organizationdata.ts","../src/types/banking/ticket/content.ts","../src/types/banking/ticket/history.ts","../src/types/banking/ticket/index.ts","../src/types/banking/ticket/info.ts","../src/types/banking/ticket/subentity.ts","../src/types/banking/ticket/ticketdata.ts","../src/types/banking/transaction/billingAddress.ts","../src/types/banking/transaction/conversion.ts","../src/types/banking/transaction/exchange.ts","../src/types/banking/transaction/fee.ts","../src/types/banking/transaction/index.ts","../src/types/banking/transaction/info.ts","../src/types/banking/transaction/receiverInfo.ts","../src/types/banking/transaction/tax.ts","../src/types/banking/transaction/transactionData.ts","../src/types/banking/transaction/transactionInquiry.ts","../src/types/banking/transaction/transactionResultInquiry.ts","../src/types/banking/transaction/transfer.ts","../src/types/banking/user/activity.ts","../src/types/banking/user/attachment.ts","../src/types/banking/user/confirmForgetSecurityData.ts","../src/types/banking/user/confirmSecurityData.ts","../src/types/banking/user/confirmUserSecurity.ts","../src/types/banking/user/confirmUserSecurityInfo.ts","../src/types/banking/user/currency.ts","../src/types/banking/user/documentdata.ts","../src/types/banking/user/documentinfo.ts","../src/types/banking/user/forgetPassword.ts","../src/types/banking/user/forgetSecurityData.ts","../src/types/banking/user/forgetSecurityInfo.ts","../src/types/banking/user/index.ts","../src/types/banking/user/info.ts","../src/types/banking/user/personalinfo.ts","../src/types/banking/user/preferences.ts","../src/types/banking/user/resetPassword.ts","../src/types/banking/user/resetSecurityCode.ts","../src/types/banking/user/resetSecurityData.ts","../src/types/banking/user/resetSecurityQuestions.ts","../src/types/banking/user/resetUserSecurity.ts","../src/types/banking/user/resetUserSecurityInfo.ts","../src/types/banking/user/security.ts","../src/types/banking/user/userauthenticationdata.ts","../src/types/banking/user/usercreditlimit.ts","../src/types/banking/user/userdata.ts","../src/types/banking/user/validateForgetSecurityData.ts","../src/types/banking/user/validateLimitedSecurity.ts","../src/types/banking/user/validateLimitedSecurityData.ts","../src/types/banking/user/validateSecurityData.ts","../src/types/banking/user/validateUserSecurity.ts","../src/types/banking/user/validateUserSecurityInfo.ts","../src/types/banking/user/verifySecurityData.ts","../src/types/banking/user/verifyUserSecurity.ts","../src/types/banking/user/verifyUserSecurityInfo.ts","../src/types/banking/user/commerce/commerce.ts","../src/types/banking/user/commerce/index.ts","../src/types/banking/user/commerce/role.ts","../src/types/banking/user/commerce/usercommerceconfiguration.ts","../src/types/banking/user/validation/index.ts","../src/types/banking/user/validation/info.ts","../src/types/banking/user/validation/validationdata.ts","../src/types/helper/axiosHelper.ts","../src/types/helper/cipherHelper.ts","../src/types/helper/geoHelper.ts","../src/types/helper/index.ts","../src/types/helper/userHelper.ts","../src/types/node/amount.ts","../src/types/node/index.ts","../src/types/node/lotteryPrize.ts","../src/types/node/promotionDetails.ts","../src/utils/index.ts","../src/utils/data/generation.ts","../src/utils/data/index.ts","../src/utils/data/manipulation.ts","../src/utils/data/validation.ts"],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.158",
|
|
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",
|