ggez-banking-sdk 0.1.189 → 0.1.191

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.
Files changed (41) hide show
  1. package/dist/api/clients/limited.d.ts +7 -1
  2. package/dist/api/clients/limited.js +13 -1
  3. package/dist/api/clients/user.d.ts +7 -0
  4. package/dist/api/clients/user.js +67 -55
  5. package/dist/api/data/account.d.ts +1 -1
  6. package/dist/api/data/auth.d.ts +2 -2
  7. package/dist/api/data/limited.d.ts +3 -2
  8. package/dist/api/data/limited.js +10 -1
  9. package/dist/api/data/result.d.ts +1 -1
  10. package/dist/api/data/user/confirmUserSecurity.d.ts +1 -1
  11. package/dist/api/data/user/forgetSecurityData.d.ts +1 -1
  12. package/dist/api/data/user/index.d.ts +1 -0
  13. package/dist/api/data/user/index.js +1 -0
  14. package/dist/api/data/user/personalInfo.d.ts +1 -1
  15. package/dist/api/data/user/preferences.d.ts +1 -1
  16. package/dist/api/data/user/resetUserSecurity.d.ts +1 -1
  17. package/dist/api/data/user/type.d.ts +3 -0
  18. package/dist/api/data/user/type.js +9 -0
  19. package/dist/api/data/user/validateLimitedSecurity.d.ts +1 -1
  20. package/dist/api/data/user/validateSecurityData.d.ts +1 -1
  21. package/dist/api/data/user/verifyUserSecurity.d.ts +1 -1
  22. package/dist/api/services/limited.d.ts +3 -2
  23. package/dist/api/services/limited.js +12 -8
  24. package/dist/api/services/user.d.ts +40 -39
  25. package/dist/api/services/user.js +105 -101
  26. package/dist/constants/constants.d.ts +28 -26
  27. package/dist/constants/constants.js +28 -26
  28. package/dist/helper/api/axiosHelper.d.ts +1 -1
  29. package/dist/helper/api/responseHelper.d.ts +1 -1
  30. package/dist/helper/api/resultHelper.d.ts +1 -1
  31. package/dist/helper/cipherHelper.d.ts +1 -1
  32. package/dist/tsconfig.tsbuildinfo +1 -1
  33. package/dist/types/api/data/limited.d.ts +5 -1
  34. package/dist/types/api/data/user/index.d.ts +1 -0
  35. package/dist/types/api/data/user/type.d.ts +5 -0
  36. package/dist/types/api/data/user/type.js +1 -0
  37. package/dist/types/banking/user/checkForgetSecurityData.d.ts +12 -0
  38. package/dist/types/banking/user/checkForgetSecurityData.js +1 -0
  39. package/dist/types/banking/user/forgetSecurityData.d.ts +2 -1
  40. package/dist/types/banking/user/index.d.ts +22 -21
  41. package/package.json +1 -1
@@ -25,6 +25,7 @@ const LimitedEndpoints = {
25
25
  SecurityValidate: "/security/validate",
26
26
  SecurityVerify: "/security/verify",
27
27
  SecurityConfirm: "/security/confirm",
28
+ SecurityForgetCheck: "/security/forget/check",
28
29
  SecurityForgetValidate: "/security/forget/validate",
29
30
  SecurityForgetConfirm: "/security/forget/confirm",
30
31
  };
@@ -35,39 +36,40 @@ const OrganizationEndpoints = {
35
36
  Document: "/document",
36
37
  };
37
38
  const UserEndpoints = {
38
- Preferences: "/preferences",
39
- TermsAndConditions: "/terms_and_conditions",
40
- History: "/history",
41
- Group: "/group",
42
- ExternalAuth: "/external_auth",
39
+ Account: "/account",
40
+ Activity: "/activity",
41
+ Address: "/address",
42
+ Auth: "/auth",
43
+ AuthActivate: "/auth/activate",
44
+ AuthDeactivate: "/auth/deactivate",
45
+ AuthDelete: "/auth/delete",
46
+ AuthEnroll: "/auth/enroll",
47
+ BankAccount: "/bank_account",
48
+ CreditCard: "/credit_card",
49
+ Currency: "/currency",
50
+ Device: "/device",
51
+ DeviceHistory: "/device/history",
52
+ DeviceLogout: "/device/logout",
53
+ Document: "/document",
54
+ Documents: "/documents",
43
55
  Email: "/email",
44
- Phone: "/phone",
56
+ ExternalAuth: "/external_auth",
57
+ Group: "/group",
58
+ History: "/history",
59
+ HistoryLatest: "/history/latest",
45
60
  Identification: "/identification",
46
61
  PersonalInfo: "/personal_info",
62
+ Phone: "/phone",
63
+ Preferences: "/preferences",
47
64
  Security: "/security",
48
- Device: "/device",
49
- Ticket: "/ticket",
50
- Document: "/document",
51
- Address: "/address",
52
- BankAccount: "/bank_account",
53
- Auth: "/auth",
54
- Activity: "/activity",
55
- Account: "/account",
56
- Documents: "/documents",
57
- Currency: "/currency",
58
- CreditCard: "/credit_card",
59
65
  SecurityAccess: "/security/access",
60
- SecurityValidate: "/security/validate",
61
- SecurityVerify: "/security/verify",
62
66
  SecurityConfirm: "/security/confirm",
63
67
  SecurityReset: "/security/reset",
64
- DeviceHistory: "/device/history",
65
- DeviceLogout: "/device/logout",
66
- AuthEnroll: "/auth/enroll",
67
- AuthActivate: "/auth/activate",
68
- AuthDeactivate: "/auth/deactivate",
69
- AuthDelete: "/auth/delete",
70
- HistoryLatest: "/history/latest",
68
+ SecurityValidate: "/security/validate",
69
+ SecurityVerify: "/security/verify",
70
+ TermsAndConditions: "/terms_and_conditions",
71
+ Ticket: "/ticket",
72
+ Type: "/type",
71
73
  };
72
74
  // #endregion
73
75
  // #region "API"
@@ -1,5 +1,5 @@
1
1
  import type { InjectRequiredHeaders, TAddAxiosConfigHeader, TGetAuthAxiosConfig, TGetAxiosConfig, TInjectGeoCoordinates, TInjectRequest } from "../../types";
2
- import { BaseResult } from "../../types";
2
+ import type { BaseResult } from "../../types";
3
3
  declare class AxiosHelper {
4
4
  static GetAxiosConfig: TGetAxiosConfig;
5
5
  static GetAuthAxiosConfig: TGetAuthAxiosConfig;
@@ -1,4 +1,4 @@
1
- import { BaseResult, ErrorHandler } from "../../types";
1
+ import type { BaseResult, ErrorHandler } from "../../types";
2
2
  declare class ResponseHelper {
3
3
  errorHandler: ErrorHandler;
4
4
  constructor(errorHandler: ErrorHandler);
@@ -1,4 +1,4 @@
1
- import { Result } from "../../types";
1
+ import type { Result } from "../../types";
2
2
  declare class ResultHelper {
3
3
  static IsApproved: (result: Result) => boolean;
4
4
  static IsAuthenticated: (result: Result) => boolean;
@@ -1,5 +1,5 @@
1
1
  import { CookieKeys } from "../constants";
2
- import { CipherKeyIV, USR } from "../types";
2
+ import type { CipherKeyIV, USR } from "../types";
3
3
  declare class CipherHelper {
4
4
  static Encrypt: (plainText: string, key: string, iv: string) => string;
5
5
  static EncryptAsJson: (plainText: string, cookieKey: (typeof CookieKeys)[keyof typeof CookieKeys] | "device_security_code", key: string, iv: string) => string;
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/api/index.ts","../src/api/clients/account.ts","../src/api/clients/auth.ts","../src/api/clients/base.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/api/resultHelper.ts","../src/helper/storage/cookiesHelper.ts","../src/helper/storage/index.ts","../src/helper/storage/localStorageHelper.ts","../src/helper/storage/storageHelper.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/api/service/account.ts","../src/types/api/service/auth.ts","../src/types/api/service/base.ts","../src/types/api/service/blockchain.ts","../src/types/api/service/index.ts","../src/types/api/service/ipAddressAndLocation.ts","../src/types/api/service/limited.ts","../src/types/api/service/order.ts","../src/types/api/service/organization.ts","../src/types/api/service/promotion.ts","../src/types/api/service/transaction.ts","../src/types/api/service/user.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/helper/storageHelper/cookiesHelper.ts","../src/types/helper/storageHelper/index.ts","../src/types/node/amount.ts","../src/types/node/index.ts","../src/types/node/lotteryPrize.ts","../src/types/node/promotionDetails.ts","../src/types/storage/cookies.ts","../src/types/storage/index.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/base.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/type.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/api/resultHelper.ts","../src/helper/storage/cookiesHelper.ts","../src/helper/storage/index.ts","../src/helper/storage/localStorageHelper.ts","../src/helper/storage/storageHelper.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/api/data/user/type.ts","../src/types/api/service/account.ts","../src/types/api/service/auth.ts","../src/types/api/service/base.ts","../src/types/api/service/blockchain.ts","../src/types/api/service/index.ts","../src/types/api/service/ipAddressAndLocation.ts","../src/types/api/service/limited.ts","../src/types/api/service/order.ts","../src/types/api/service/organization.ts","../src/types/api/service/promotion.ts","../src/types/api/service/transaction.ts","../src/types/api/service/user.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/checkForgetSecurityData.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/helper/storageHelper/cookiesHelper.ts","../src/types/helper/storageHelper/index.ts","../src/types/node/amount.ts","../src/types/node/index.ts","../src/types/node/lotteryPrize.ts","../src/types/node/promotionDetails.ts","../src/types/storage/cookies.ts","../src/types/storage/index.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"}
@@ -13,4 +13,8 @@ interface IConfirmForgetPasswordData {
13
13
  sub_entity: number;
14
14
  sub_entity_id: number;
15
15
  }
16
- export { IValidateForgetPasswordData, IConfirmForgetPasswordData };
16
+ interface ICheckForgetSecurityData {
17
+ email: string;
18
+ phone: string;
19
+ }
20
+ export { IValidateForgetPasswordData, IConfirmForgetPasswordData, ICheckForgetSecurityData, };
@@ -44,4 +44,5 @@ export type * from "./preferences";
44
44
  export type * from "./personalInfo";
45
45
  export type * from "./security";
46
46
  export type * from "./ticket";
47
+ export type * from "./type";
47
48
  export type { IGetUserData, ICreateUserData, ICreateUserWithGoogleData };
@@ -0,0 +1,5 @@
1
+ import { UserType } from "../../../../constants";
2
+ interface IUpdateUserTypeData {
3
+ type: UserType;
4
+ }
5
+ export type { IUpdateUserTypeData };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,12 @@
1
+ type CheckForgetSecurityData = {
2
+ email: string;
3
+ phone: string;
4
+ has_verified_email: boolean;
5
+ has_verified_phone: boolean;
6
+ has_verified_identification: boolean;
7
+ has_verified_bank_account: boolean;
8
+ has_verified_address: boolean;
9
+ has_2fa_enabled: boolean;
10
+ has_security_code: boolean;
11
+ };
12
+ export type { CheckForgetSecurityData };
@@ -0,0 +1 @@
1
+ export {};
@@ -1,7 +1,8 @@
1
- import { BaseResult, GeoCoordinates, ConfirmForgetSecurityData, ForgetSecurityInfo, ValidateForgetSecurityData } from "..";
1
+ import { BaseResult, GeoCoordinates, ConfirmForgetSecurityData, ForgetSecurityInfo, ValidateForgetSecurityData, CheckForgetSecurityData } from "..";
2
2
  export type ForgetSecurityData = BaseResult & {
3
3
  info: ForgetSecurityInfo;
4
4
  validate_data: ValidateForgetSecurityData;
5
5
  confirm_data: ConfirmForgetSecurityData;
6
+ check_data: CheckForgetSecurityData;
6
7
  geo_coordinates: GeoCoordinates;
7
8
  };
@@ -1,36 +1,37 @@
1
- export type * from "./commerce";
2
- export type * from "./validation";
3
1
  export type * from "./activity";
4
2
  export type * from "./attachment";
3
+ export type * from "./checkForgetSecurityData";
4
+ export type * from "./commerce";
5
+ export type * from "./confirmForgetSecurityData";
6
+ export type * from "./confirmSecurityData";
7
+ export type * from "./confirmUserSecurity";
8
+ export type * from "./confirmUserSecurityInfo";
5
9
  export type * from "./currency";
6
10
  export type * from "./documentdata";
7
11
  export type * from "./documentinfo";
12
+ export type * from "./forgetPassword";
13
+ export type * from "./forgetSecurityData";
14
+ export type * from "./forgetSecurityInfo";
8
15
  export type * from "./info";
9
16
  export type * from "./personalinfo";
10
17
  export type * from "./preferences";
18
+ export type * from "./resetPassword";
19
+ export type * from "./resetSecurityCode";
20
+ export type * from "./resetSecurityData";
21
+ export type * from "./resetSecurityQuestions";
22
+ export type * from "./resetUserSecurity";
23
+ export type * from "./resetUserSecurityInfo";
11
24
  export type * from "./security";
12
25
  export type * from "./userauthenticationdata";
13
26
  export type * from "./usercreditlimit";
14
27
  export type * from "./userdata";
15
- export type * from "./verifySecurityData";
16
- export type * from "./validateSecurityData";
17
- export type * from "./verifyUserSecurity";
18
- export type * from "./verifyUserSecurityInfo";
19
- export type * from "./validateUserSecurity";
20
- export type * from "./validateUserSecurityInfo";
21
- export type * from "./confirmSecurityData";
22
- export type * from "./confirmUserSecurity";
23
- export type * from "./confirmUserSecurityInfo";
24
- export type * from "./confirmForgetSecurityData";
25
28
  export type * from "./validateForgetSecurityData";
26
29
  export type * from "./validateLimitedSecurity";
27
- export type * from "./forgetSecurityInfo";
28
- export type * from "./forgetSecurityData";
29
30
  export type * from "./validateLimitedSecurityData";
30
- export type * from "./resetSecurityQuestions";
31
- export type * from "./resetSecurityCode";
32
- export type * from "./resetSecurityData";
33
- export type * from "./resetPassword";
34
- export type * from "./resetUserSecurityInfo";
35
- export type * from "./resetUserSecurity";
36
- export type * from "./forgetPassword";
31
+ export type * from "./validateSecurityData";
32
+ export type * from "./validateUserSecurity";
33
+ export type * from "./validateUserSecurityInfo";
34
+ export type * from "./validation";
35
+ export type * from "./verifySecurityData";
36
+ export type * from "./verifyUserSecurity";
37
+ export type * from "./verifyUserSecurityInfo";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.1.189",
3
+ "version": "0.1.191",
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",