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.
- package/dist/types/banking/program/bin/deposit.d.ts +7 -7
- package/dist/types/banking/program/bin/index.d.ts +2 -9
- package/dist/types/banking/program/bin/{depositGeneral.d.ts → limitConfiguration.d.ts} +2 -2
- package/dist/types/banking/program/bin/{transferSendingMonthlyYearly.d.ts → limitMonthlyYearlySetup.d.ts} +2 -2
- package/dist/types/banking/program/bin/transferReceiving.d.ts +4 -4
- package/dist/types/banking/program/bin/transferSending.d.ts +4 -4
- package/dist/types/banking/program/bin/withdraw.d.ts +11 -11
- package/dist/types/banking/program/program/setup/payment.d.ts +1 -0
- package/dist/types/banking/program/program/signupRequirements.d.ts +5 -1
- package/package.json +1 -1
- package/dist/types/banking/program/bin/depositManual.d.ts +0 -7
- package/dist/types/banking/program/bin/others.d.ts +0 -7
- package/dist/types/banking/program/bin/others.js +0 -1
- package/dist/types/banking/program/bin/transferReceivingMonthlyYearly.d.ts +0 -7
- package/dist/types/banking/program/bin/transferReceivingMonthlyYearly.js +0 -1
- package/dist/types/banking/program/bin/transferSendingMonthlyYearly.js +0 -1
- package/dist/types/banking/program/bin/withdrawGeneral.d.ts +0 -7
- package/dist/types/banking/program/bin/withdrawGeneral.js +0 -1
- package/dist/types/banking/program/bin/withdrawManual.d.ts +0 -7
- package/dist/types/banking/program/bin/withdrawManual.js +0 -1
- package/dist/types/banking/program/bin/withdrawResellerPurchase.d.ts +0 -7
- package/dist/types/banking/program/bin/withdrawResellerPurchase.js +0 -1
- package/dist/types/banking/program/bin/withdrawUserPurchase.d.ts +0 -7
- package/dist/types/banking/program/bin/withdrawUserPurchase.js +0 -1
- /package/dist/types/banking/program/bin/{depositGeneral.js → limitConfiguration.js} +0 -0
- /package/dist/types/banking/program/bin/{depositManual.js → limitMonthlyYearlySetup.js} +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DepositMonthlyYearly, LimitConfiguration } from ".";
|
|
2
2
|
type Deposit = {
|
|
3
3
|
deposit_monthly_yearly: DepositMonthlyYearly;
|
|
4
|
-
manual:
|
|
5
|
-
general:
|
|
6
|
-
bank_transfer:
|
|
7
|
-
check:
|
|
8
|
-
refund:
|
|
9
|
-
|
|
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
|
|
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 {
|
|
7
|
+
export type { LimitConfiguration };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
type
|
|
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 {
|
|
7
|
+
export type { LimitMonthlyYearlySetup };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { LimitMonthlyYearlySetup, LimitConfiguration } from ".";
|
|
2
2
|
type TransferReceiving = {
|
|
3
|
-
transfer_receiving_monthly_yearly:
|
|
4
|
-
generic_transfer_receive:
|
|
5
|
-
general_transfer_receive:
|
|
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 {
|
|
1
|
+
import { LimitMonthlyYearlySetup, LimitConfiguration } from ".";
|
|
2
2
|
type TransferSending = {
|
|
3
|
-
transfer_sending_monthly_yearly:
|
|
4
|
-
generic_transfer_send:
|
|
5
|
-
general_transfer_send:
|
|
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,
|
|
1
|
+
import { WithdrawMonthlyYearly, LimitConfiguration } from ".";
|
|
2
2
|
type Withdraw = {
|
|
3
3
|
withdraw_monthly_yearly: WithdrawMonthlyYearly;
|
|
4
|
-
manual:
|
|
5
|
-
general:
|
|
6
|
-
reseller_purchase:
|
|
7
|
-
user_purchase:
|
|
8
|
-
bank_transfer:
|
|
9
|
-
check:
|
|
10
|
-
cash:
|
|
11
|
-
purchase:
|
|
12
|
-
balance_inquiry:
|
|
13
|
-
payment_gateway_crypto_redemption:
|
|
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 };
|
|
@@ -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.
|
|
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 +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 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
File without changes
|
|
File without changes
|