ggez-banking-sdk 0.5.18 → 0.5.20

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 (26) hide show
  1. package/dist/types/banking/program/bin/deposit.d.ts +7 -7
  2. package/dist/types/banking/program/bin/index.d.ts +2 -9
  3. package/dist/types/banking/program/bin/{depositGeneral.d.ts → limitConfiguration.d.ts} +2 -2
  4. package/dist/types/banking/program/bin/{transferSendingMonthlyYearly.d.ts → limitMonthlyYearlySetup.d.ts} +2 -2
  5. package/dist/types/banking/program/bin/transferReceiving.d.ts +4 -4
  6. package/dist/types/banking/program/bin/transferSending.d.ts +4 -4
  7. package/dist/types/banking/program/bin/withdraw.d.ts +11 -11
  8. package/dist/types/banking/program/program/setup/payment.d.ts +1 -0
  9. package/dist/types/banking/program/program/signupRequirements.d.ts +5 -1
  10. package/package.json +1 -1
  11. package/dist/types/banking/program/bin/depositManual.d.ts +0 -7
  12. package/dist/types/banking/program/bin/others.d.ts +0 -7
  13. package/dist/types/banking/program/bin/others.js +0 -1
  14. package/dist/types/banking/program/bin/transferReceivingMonthlyYearly.d.ts +0 -7
  15. package/dist/types/banking/program/bin/transferReceivingMonthlyYearly.js +0 -1
  16. package/dist/types/banking/program/bin/transferSendingMonthlyYearly.js +0 -1
  17. package/dist/types/banking/program/bin/withdrawGeneral.d.ts +0 -7
  18. package/dist/types/banking/program/bin/withdrawGeneral.js +0 -1
  19. package/dist/types/banking/program/bin/withdrawManual.d.ts +0 -7
  20. package/dist/types/banking/program/bin/withdrawManual.js +0 -1
  21. package/dist/types/banking/program/bin/withdrawResellerPurchase.d.ts +0 -7
  22. package/dist/types/banking/program/bin/withdrawResellerPurchase.js +0 -1
  23. package/dist/types/banking/program/bin/withdrawUserPurchase.d.ts +0 -7
  24. package/dist/types/banking/program/bin/withdrawUserPurchase.js +0 -1
  25. /package/dist/types/banking/program/bin/{depositGeneral.js → limitConfiguration.js} +0 -0
  26. /package/dist/types/banking/program/bin/{depositManual.js → limitMonthlyYearlySetup.js} +0 -0
@@ -1,11 +1,11 @@
1
- import { DepositGeneral, DepositManual, DepositMonthlyYearly, Others } from ".";
1
+ import { DepositMonthlyYearly, LimitConfiguration } from ".";
2
2
  type Deposit = {
3
3
  deposit_monthly_yearly: DepositMonthlyYearly;
4
- manual: DepositManual;
5
- general: DepositGeneral;
6
- bank_transfer: Others;
7
- check: Others;
8
- refund: Others;
9
- payment_gateway: DepositGeneral;
4
+ manual: LimitConfiguration;
5
+ general: LimitConfiguration;
6
+ bank_transfer: LimitConfiguration;
7
+ check: LimitConfiguration;
8
+ refund: LimitConfiguration;
9
+ payment_gateway_crypto_purchase: LimitConfiguration;
10
10
  };
11
11
  export type { Deposit };
@@ -19,20 +19,19 @@ export type * from "./configuration";
19
19
  export type * from "./creditLimitOptions";
20
20
  export type * from "./deposit";
21
21
  export type * from "./depositAndWithdrawalSetup";
22
- export type * from "./depositGeneral";
23
- export type * from "./depositManual";
24
22
  export type * from "./depositMonthlyYearly";
25
23
  export type * from "./displayOptions";
26
24
  export type * from "./feeSetup";
27
25
  export type * from "./fraudDetection";
28
26
  export type * from "./fulfilment";
29
27
  export type * from "./limit";
28
+ export type * from "./limitConfiguration";
29
+ export type * from "./limitMonthlyYearlySetup";
30
30
  export type * from "./limits";
31
31
  export type * from "./localizationContent";
32
32
  export type * from "./mobileAccountOptions";
33
33
  export type * from "./mobileLinkedAccountOptions";
34
34
  export type * from "./multiCurrency";
35
- export type * from "./others";
36
35
  export type * from "./paymentAndOrdersOptions";
37
36
  export type * from "./receivingTypes";
38
37
  export type * from "./requirements";
@@ -46,15 +45,9 @@ export type * from "./SMSOptionsSetUp";
46
45
  export type * from "./supportedFulfilment";
47
46
  export type * from "./tokenizationOption";
48
47
  export type * from "./transferReceiving";
49
- export type * from "./transferReceivingMonthlyYearly";
50
48
  export type * from "./transferSending";
51
- export type * from "./transferSendingMonthlyYearly";
52
49
  export type * from "./virtualCardDisplay";
53
50
  export type * from "./virtualCardsContent";
54
51
  export type * from "./withdraw";
55
- export type * from "./withdrawGeneral";
56
- export type * from "./withdrawManual";
57
52
  export type * from "./withdrawMonthlyYearly";
58
- export type * from "./withdrawResellerPurchase";
59
- export type * from "./withdrawUserPurchase";
60
53
  export type * from "./supportedCountriesExtended";
@@ -1,7 +1,7 @@
1
- type DepositGeneral = {
1
+ type LimitConfiguration = {
2
2
  minimum_transaction_amount: number;
3
3
  maximum_transaction_amount: number;
4
4
  maximum_transactions_count_per_day: number;
5
5
  maximum_transactions_amount_per_day: number;
6
6
  };
7
- export type { DepositGeneral };
7
+ export type { LimitConfiguration };
@@ -1,7 +1,7 @@
1
- type TransferSendingMonthlyYearly = {
1
+ type LimitMonthlyYearlySetup = {
2
2
  maximum_transactions_amount_per_month: number;
3
3
  maximum_transactions_count_per_month: number;
4
4
  maximum_transactions_amount_per_year: number;
5
5
  maximum_transactions_count_per_year: number;
6
6
  };
7
- export type { TransferSendingMonthlyYearly };
7
+ export type { LimitMonthlyYearlySetup };
@@ -1,7 +1,7 @@
1
- import { ReceivingTypes, TransferReceivingMonthlyYearly } from ".";
1
+ import { LimitMonthlyYearlySetup, LimitConfiguration } from ".";
2
2
  type TransferReceiving = {
3
- transfer_receiving_monthly_yearly: TransferReceivingMonthlyYearly;
4
- generic_transfer_receive: ReceivingTypes;
5
- general_transfer_receive: ReceivingTypes;
3
+ transfer_receiving_monthly_yearly: LimitMonthlyYearlySetup;
4
+ generic_transfer_receive: LimitConfiguration;
5
+ general_transfer_receive: LimitConfiguration;
6
6
  };
7
7
  export type { TransferReceiving };
@@ -1,7 +1,7 @@
1
- import { SendingTypes, TransferSendingMonthlyYearly } from ".";
1
+ import { LimitMonthlyYearlySetup, LimitConfiguration } from ".";
2
2
  type TransferSending = {
3
- transfer_sending_monthly_yearly: TransferSendingMonthlyYearly;
4
- generic_transfer_send: SendingTypes;
5
- general_transfer_send: SendingTypes;
3
+ transfer_sending_monthly_yearly: LimitMonthlyYearlySetup;
4
+ generic_transfer_send: LimitConfiguration;
5
+ general_transfer_send: LimitConfiguration;
6
6
  };
7
7
  export type { TransferSending };
@@ -1,15 +1,15 @@
1
- import { WithdrawMonthlyYearly, WithdrawManual, WithdrawGeneral, WithdrawResellerPurchase, WithdrawUserPurchase } from ".";
1
+ import { WithdrawMonthlyYearly, LimitConfiguration } from ".";
2
2
  type Withdraw = {
3
3
  withdraw_monthly_yearly: WithdrawMonthlyYearly;
4
- manual: WithdrawManual;
5
- general: WithdrawGeneral;
6
- reseller_purchase: WithdrawResellerPurchase;
7
- user_purchase: WithdrawUserPurchase;
8
- bank_transfer: WithdrawGeneral;
9
- check: WithdrawGeneral;
10
- cash: WithdrawGeneral;
11
- purchase: WithdrawGeneral;
12
- balance_inquiry: WithdrawGeneral;
13
- payment_gateway_crypto_redemption: WithdrawGeneral;
4
+ manual: LimitConfiguration;
5
+ general: LimitConfiguration;
6
+ reseller_purchase: LimitConfiguration;
7
+ user_purchase: LimitConfiguration;
8
+ bank_transfer: LimitConfiguration;
9
+ check: LimitConfiguration;
10
+ cash: LimitConfiguration;
11
+ purchase: LimitConfiguration;
12
+ balance_inquiry: LimitConfiguration;
13
+ payment_gateway_crypto_redemption: LimitConfiguration;
14
14
  };
15
15
  export type { Withdraw };
@@ -3,6 +3,7 @@ type Payment = {
3
3
  bin_id: number;
4
4
  service_domain: number;
5
5
  service_provider: number;
6
+ service_type: number;
6
7
  supported_countries: number[];
7
8
  supported_currencies: number[];
8
9
  };
@@ -1,5 +1,5 @@
1
1
  import { BaseResult } from "../../common";
2
- import { PasswordSettings, TermsConditions, VerificationRequirements, UserSystemOptions, EcommerceSettings } from ".";
2
+ import { PasswordSettings, TermsConditions, VerificationRequirements, UserSystemOptions, EcommerceSettings, Payment } from ".";
3
3
  import { Bin } from "../bin";
4
4
  import { UserApplication } from "./applicationOptions";
5
5
  import { ValidationServicesSettings } from "./validation";
@@ -9,9 +9,13 @@ type SignupRequirements = BaseResult & {
9
9
  terms_conditions: TermsConditions[];
10
10
  bin: Bin[];
11
11
  verification_requirements: VerificationRequirements;
12
+ organization_business_verification_requirements: VerificationRequirements;
13
+ organization_individual_group_verification_requirements: VerificationRequirements;
14
+ service_setup: Payment[];
12
15
  user_system_options: UserSystemOptions;
13
16
  ecommerce_settings: EcommerceSettings;
14
17
  user_application: UserApplication;
15
18
  validation_service_settings: ValidationServicesSettings[];
19
+ apply_user_verification_requirements_to_organization_users: boolean;
16
20
  };
17
21
  export type { SignupRequirements };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ggez-banking-sdk",
3
- "version": "0.5.18",
3
+ "version": "0.5.20",
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",
@@ -1,7 +0,0 @@
1
- type DepositManual = {
2
- minimum_transaction_amount: number;
3
- maximum_transaction_amount: number;
4
- maximum_transactions_count_per_day: number;
5
- maximum_transactions_amount_per_day: number;
6
- };
7
- export type { DepositManual };
@@ -1,7 +0,0 @@
1
- type Others = {
2
- minimum_transaction_amount: number;
3
- maximum_transaction_amount: number;
4
- maximum_transactions_count_per_day: number;
5
- maximum_transactions_amount_per_day: number;
6
- };
7
- export type { Others };
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- type TransferReceivingMonthlyYearly = {
2
- maximum_transactions_amount_per_month: number;
3
- maximum_transactions_count_per_month: number;
4
- maximum_transactions_amount_per_year: number;
5
- maximum_transactions_count_per_year: number;
6
- };
7
- export type { TransferReceivingMonthlyYearly };
@@ -1,7 +0,0 @@
1
- type WithdrawGeneral = {
2
- minimum_transaction_amount: number;
3
- maximum_transaction_amount: number;
4
- maximum_transactions_amount_per_day: number;
5
- maximum_transactions_count_per_day: number;
6
- };
7
- export type { WithdrawGeneral };
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- type WithdrawManual = {
2
- minimum_transaction_amount: number;
3
- maximum_transaction_amount: number;
4
- maximum_transactions_amount_per_day: number;
5
- maximum_transactions_count_per_day: number;
6
- };
7
- export type { WithdrawManual };
@@ -1 +0,0 @@
1
- export {};
@@ -1,7 +0,0 @@
1
- type WithdrawResellerPurchase = {
2
- minimum_transaction_amount: number;
3
- maximum_transaction_amount: number;
4
- maximum_transactions_amount_per_day: number;
5
- maximum_transactions_count_per_day: number;
6
- };
7
- export type { WithdrawResellerPurchase };
@@ -1,7 +0,0 @@
1
- type WithdrawUserPurchase = {
2
- minimum_transaction_amount: number;
3
- maximum_transaction_amount: number;
4
- maximum_transactions_amount_per_day: number;
5
- maximum_transactions_count_per_day: number;
6
- };
7
- export type { WithdrawUserPurchase };