@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.
@@ -0,0 +1,8 @@
1
+ interface AmountDetails {
2
+ activeAmount: number;
3
+ fundForDepositBalanceAmount?: number;
4
+ totalAmountToDeposit: number;
5
+ currency: string;
6
+ amountDeposited?: number;
7
+ }
8
+ export default AmountDetails;
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 { VerifyAmount } from "./verify_amount";
42
- import { LastSelectedOperatorSignAndCreds } from "./last_saved_operator_credentials";
43
- export type { Environment, 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, TransactionMode, TransactionType, TransactionOperatorDetails, TransactionOperatorDetail, TransactionDetail, TransactionHistoryResult, TransactionHistory, Paydala, FirebaseToken, FirebaseError, FirebaseRefreshToken, OperatorList, SocialLoginState, PredefinedAmount, Region, Regions, CardTransactionResponse, BankTransactionResponse, CustomerKYCStatus, VerifyAmount, LastSelectedOperatorSignAndCreds, };
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, };
@@ -0,0 +1,6 @@
1
+ import { OperatorCredentials } from "./operator_credentials";
2
+ export interface SignedCredResponse {
3
+ sign: string;
4
+ creds: OperatorCredentials | string;
5
+ client_id: string | undefined;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paydala-payments/models",
3
- "version": "0.4.43",
3
+ "version": "0.4.45",
4
4
  "description": "Models of the Paydala project",
5
5
  "keywords": [
6
6
  "paydala",
@@ -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
- }
@@ -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