@paydala-payments/models 0.8.28 → 0.8.29
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/coin-flow-digital-wallet_transaction.d.ts +4 -0
- package/dist/custome_theme.d.ts +1 -7
- package/dist/customer_kyc_status.d.ts +3 -0
- package/dist/digital-wallet_transaction.d.ts +20 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
- package/dist/processor_enum.d.ts +0 -8
- package/dist/processor_enum.js +0 -12
- package/dist/threeds_challenge_data.d.ts +0 -5
- /package/dist/{threeds_challenge_data.js → coin-flow-digital-wallet_transaction.js} +0 -0
package/dist/custome_theme.d.ts
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface CustomTheme {
|
|
2
2
|
selectedTheme?: "light" | "dark";
|
|
3
3
|
light?: ThemeObject | undefined;
|
|
4
4
|
dark?: ThemeObject | undefined;
|
|
5
5
|
}
|
|
6
|
-
export interface FontFamilyObject {
|
|
7
|
-
url: string;
|
|
8
|
-
format: "opentype" | "truetype" | "woff" | "woff2";
|
|
9
|
-
}
|
|
10
6
|
export interface ThemeObject {
|
|
11
7
|
primary?: string;
|
|
12
8
|
primaryForeground?: string;
|
|
@@ -20,6 +16,4 @@ export interface ThemeObject {
|
|
|
20
16
|
error?: string;
|
|
21
17
|
warning?: string;
|
|
22
18
|
brandBackground?: string | null;
|
|
23
|
-
headingFontFamily?: FontFamilyObject;
|
|
24
|
-
bodyFontFamily?: FontFamilyObject;
|
|
25
19
|
}
|
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
export interface ApplePayToken {
|
|
2
|
+
paymentData: {
|
|
3
|
+
version: string;
|
|
4
|
+
data: string;
|
|
5
|
+
signature: string;
|
|
6
|
+
header: {
|
|
7
|
+
ephemeralPublicKey: string;
|
|
8
|
+
publicKeyHash: string;
|
|
9
|
+
transactionId: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
paymentMethod: {
|
|
13
|
+
displayName: string;
|
|
14
|
+
network: string;
|
|
15
|
+
type: string;
|
|
16
|
+
};
|
|
17
|
+
transactionIdentifier: string;
|
|
18
|
+
}
|
|
1
19
|
export interface DigitalWalletTransaction {
|
|
2
|
-
token
|
|
20
|
+
token?: string | ApplePayToken;
|
|
21
|
+
wallet: "Google" | "Apple";
|
|
3
22
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -49,5 +49,6 @@ import { OTPConfirmResponse } from "./otp_confirm_response";
|
|
|
49
49
|
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 { ApplePayToken } from "./digital-wallet_transaction";
|
|
53
|
+
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, ApplePayToken };
|
|
53
54
|
export { IntegrationSource, BankProcessor, OtpSource, FontFamily };
|
package/package.json
CHANGED
package/dist/processor_enum.d.ts
DELETED
package/dist/processor_enum.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ProcessorEnum = void 0;
|
|
4
|
-
var ProcessorEnum;
|
|
5
|
-
(function (ProcessorEnum) {
|
|
6
|
-
ProcessorEnum[ProcessorEnum["STRIPE_PROCESSOR"] = 1] = "STRIPE_PROCESSOR";
|
|
7
|
-
ProcessorEnum[ProcessorEnum["MICAMP_PROCESSOR"] = 2] = "MICAMP_PROCESSOR";
|
|
8
|
-
ProcessorEnum[ProcessorEnum["DWOLLA_PROCESSOR"] = 3] = "DWOLLA_PROCESSOR";
|
|
9
|
-
ProcessorEnum[ProcessorEnum["PAYARC_PROCESSOR"] = 5] = "PAYARC_PROCESSOR";
|
|
10
|
-
ProcessorEnum[ProcessorEnum["APPROVELY_PROCESSOR"] = 6] = "APPROVELY_PROCESSOR";
|
|
11
|
-
ProcessorEnum[ProcessorEnum["CYBERSOURCE_PROCESSOR"] = 7] = "CYBERSOURCE_PROCESSOR";
|
|
12
|
-
})(ProcessorEnum || (exports.ProcessorEnum = ProcessorEnum = {}));
|
|
File without changes
|