@paydala-payments/models 0.4.43 → 0.4.45
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/amount_details.d.ts +8 -0
- package/dist/index.d.ts +12 -6
- package/dist/signed_credentials.d.ts +6 -0
- package/package.json +1 -1
- package/dist/bank_kyc.d.ts +0 -16
- package/dist/login_body.d.ts +0 -21
- /package/dist/{bank_kyc.js → amount_details.js} +0 -0
- /package/dist/{login_body.js → signed_credentials.js} +0 -0
package/dist/index.d.ts
CHANGED
@@ -35,9 +35,15 @@ import type { Widget } from "./widget";
|
|
35
35
|
import { BinValidation, CardBrand, CardType } from "./bin_validate";
|
36
36
|
import { Environment } from "./environment";
|
37
37
|
import { CredentialsPayload, OperatorCredentials } from "./operator_credentials";
|
38
|
-
import { CardTransactionResponse } from "./card_transaction_response";
|
39
|
-
import { BankTransactionResponse } from "./bank_transaction_response";
|
40
|
-
import { CustomerKYCStatus } from "./customer_kyc_status";
|
41
|
-
import
|
42
|
-
import
|
43
|
-
|
38
|
+
import type { CardTransactionResponse } from "./card_transaction_response";
|
39
|
+
import type { BankTransactionResponse } from "./bank_transaction_response";
|
40
|
+
import type { CustomerKYCStatus } from "./customer_kyc_status";
|
41
|
+
import type ILocation from "./ilocation";
|
42
|
+
import type SaveUser from "./save_user";
|
43
|
+
import type GuestLogin from "./guest_login";
|
44
|
+
import type { VerifyAmount } from "./verify_amount";
|
45
|
+
import type { LastSelectedOperatorSignAndCreds } from "./last_saved_operator_credentials";
|
46
|
+
import type { SignedCredResponse } from "./signed_credentials";
|
47
|
+
import AmountDetails from "./amount_details";
|
48
|
+
import { CardTransaction } from "./card_transaction";
|
49
|
+
export type { Environment, ILocation, OperatorCredentials, OnPaydalaClose, User, Partner, OperatorSignAndCredentials, CredentialsPayload, Verify, Member, Widget, Source, BinValidation, CardType, CardBrand, Address, KYCInfo, Prefill, QueriesResult, OobCode, Credential, BankSource, BankWidget, Transaction, Institution, AccountList, BaseResponse, Registration, UserLogin, AccountDetail, PaymentDetails, GuestCardLogin, IntegrityCheck, BankTransaction, CardTransaction, TransactionMode, TransactionType, TransactionOperatorDetails, TransactionOperatorDetail, TransactionDetail, TransactionHistoryResult, TransactionHistory, Paydala, FirebaseToken, FirebaseError, FirebaseRefreshToken, OperatorList, SocialLoginState, PredefinedAmount, Region, Regions, CardTransactionResponse, BankTransactionResponse, CustomerKYCStatus, SaveUser, GuestLogin, VerifyAmount, LastSelectedOperatorSignAndCreds, SignedCredResponse, AmountDetails, };
|
package/package.json
CHANGED
package/dist/bank_kyc.d.ts
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
export interface BankKYC {
|
2
|
-
first_name: string;
|
3
|
-
mid_name?: string;
|
4
|
-
last_name: string;
|
5
|
-
address?: string;
|
6
|
-
city?: string;
|
7
|
-
state?: string;
|
8
|
-
zip?: string;
|
9
|
-
dob?: string;
|
10
|
-
mob_no?: string;
|
11
|
-
email: string;
|
12
|
-
ssn_last_four?: string;
|
13
|
-
qual_id?: number;
|
14
|
-
qual_no?: string;
|
15
|
-
issuing_state?: string;
|
16
|
-
}
|
package/dist/login_body.d.ts
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
interface LoginBody {
|
2
|
-
pymt_type: number;
|
3
|
-
pref_pymt?: number;
|
4
|
-
card_no?: string;
|
5
|
-
exp_date?: string;
|
6
|
-
cvv?: number;
|
7
|
-
zip?: string;
|
8
|
-
kyc?: {
|
9
|
-
first_name: string;
|
10
|
-
last_name: string;
|
11
|
-
address: string;
|
12
|
-
city: string;
|
13
|
-
state: string;
|
14
|
-
zip: string;
|
15
|
-
mob_no: string;
|
16
|
-
ssn_last_four: string;
|
17
|
-
dob: string;
|
18
|
-
email: string;
|
19
|
-
};
|
20
|
-
}
|
21
|
-
export default LoginBody;
|
File without changes
|
File without changes
|