@paydala-payments/models 0.8.12 → 0.8.14
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/blocked_instrument.d.ts +0 -4
- package/dist/customer_kyc_status.d.ts +3 -0
- package/dist/digital-wallet_transaction.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/threeds_challenge_data.d.ts +5 -0
- package/dist/threeds_challenge_data.js +2 -0
- package/dist/transaction.d.ts +1 -5
- package/package.json +1 -1
|
@@ -16,13 +16,9 @@ interface BlockedBankInstrument extends BlockedInstrumentBase {
|
|
|
16
16
|
interface BlockedWalletInstrument extends BlockedInstrumentBase {
|
|
17
17
|
wallets: ("Google" | "Apple")[];
|
|
18
18
|
}
|
|
19
|
-
interface BlockedCoinflowWalletsInstrument extends BlockedInstrumentBase {
|
|
20
|
-
coinflowWallets: ("Google" | "Apple")[] | boolean;
|
|
21
|
-
}
|
|
22
19
|
interface BlockedInstruments {
|
|
23
20
|
card: BlockedCardInstrument;
|
|
24
21
|
bank: BlockedBankInstrument;
|
|
25
22
|
wallet: BlockedWalletInstrument;
|
|
26
|
-
coinflowWallets: BlockedCoinflowWalletsInstrument;
|
|
27
23
|
}
|
|
28
24
|
export default BlockedInstruments;
|
package/dist/index.d.ts
CHANGED
|
@@ -50,5 +50,6 @@ import { CustomTheme, FontFamily } from "./custom_theme";
|
|
|
50
50
|
import { IdentifyResponse, OtpSource } from "./identify_response";
|
|
51
51
|
import { CardBrand, CardType } from "./blocked_instrument";
|
|
52
52
|
import { CardProcessor } from "./card_processor";
|
|
53
|
-
|
|
53
|
+
import { ThreeDSChallengeData } from "./threeds_challenge_data";
|
|
54
|
+
export type { Environment, OperatorCredentials, OnPaydalaClose, User, Partner, OperatorSignAndCredentials, CredentialsPayload, Verify, Member, Widget, Source, BinValidation, CardType, CardBrand, Address, KYCInfo, Prefill, QueriesResult, QueriesError, OobCode, Credential, BankSource, BankWidget, Transaction, Institution, AccountList, BaseResponse, Registration, UserLogin, AccountDetail, PaymentDetails, GuestCardLogin, IntegrityCheck, BankTransaction, TransactionMode, TransactionType, TransactionOperatorDetails, TransactionOperatorDetail, TransactionDetail, TransactionHistoryResult, TransactionHistory, Paydala, FirebaseToken, FirebaseError, FirebaseRefreshToken, OperatorList, SocialLoginState, PredefinedAmount, Region, IdentifyResponse, Regions, CardTransactionResponse, BankTransactionResponse, CustomerKYCStatus, VerifyAmount, LastSelectedOperatorSignAndCreds, OTPStatus, VerifyDeviceStatus, OTPConfirmRequest, OTPConfirmResponse, OperatorCustomData, CustomTheme, ThreeDSChallengeData, };
|
|
54
55
|
export { IntegrationSource, BankProcessor, CardProcessor, OtpSource, FontFamily, };
|
package/dist/transaction.d.ts
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
import type { BankTransaction } from "./bank_transaction";
|
|
2
2
|
import type { CardTransaction } from "./card_transaction";
|
|
3
|
-
import { CoinflowDigitalWalletAppleTransaction } from "./coin-flow-digital-wallet_apple_transaction";
|
|
4
|
-
import { CoinflowDigitalWalletGoogleTransaction } from "./coin-flow-digital-wallet_google_transaction";
|
|
5
3
|
import { DigitalWalletTransaction } from "./digital-wallet_transaction";
|
|
6
|
-
export type TransactionMode = "bank" | "card" | "wallet" | "digitalWallet"
|
|
4
|
+
export type TransactionMode = "bank" | "card" | "wallet" | "digitalWallet";
|
|
7
5
|
export type TransactionType = "deposit" | "withdraw" | "fundForDeposit" | "fund" | "oneTimeWithdraw";
|
|
8
6
|
export interface Transaction {
|
|
9
7
|
card?: CardTransaction;
|
|
10
8
|
bank?: BankTransaction;
|
|
11
9
|
digitalWallet?: DigitalWalletTransaction;
|
|
12
|
-
coinflowDigitalWalletGoogle?: CoinflowDigitalWalletGoogleTransaction;
|
|
13
|
-
coinflowDigitalWalletApple?: CoinflowDigitalWalletAppleTransaction;
|
|
14
10
|
activeAmount: string;
|
|
15
11
|
fundForDepositBalanceAmount?: number;
|
|
16
12
|
totalAmountToDeposit: string;
|