@paydala-payments/models 0.3.88 → 0.3.89
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/guest_login.d.ts +8 -0
- package/dist/guest_login.js +2 -0
- package/dist/operator_credentials.d.ts +3 -3
- package/dist/partner.d.ts +13 -0
- package/package.json +1 -1
@@ -32,12 +32,12 @@ export interface CredentialsPayload {
|
|
32
32
|
userFlow?: {
|
33
33
|
/** wether to disable login and registration flows for returning users */
|
34
34
|
guestOnly?: boolean;
|
35
|
-
/** custom card validations for deposit flow */
|
35
|
+
/** DEPRECATED: custom card validations for deposit flow */
|
36
36
|
cardValidation?: {
|
37
37
|
/** which types of card are allowed for card transactions */
|
38
|
-
types
|
38
|
+
types?: CardType[];
|
39
39
|
/** which brands of card are allowed for card transactions */
|
40
|
-
brands
|
40
|
+
brands?: CardBrand[];
|
41
41
|
};
|
42
42
|
};
|
43
43
|
}
|
package/dist/partner.d.ts
CHANGED
@@ -1,4 +1,17 @@
|
|
1
1
|
export interface Partner {
|
2
|
+
blockedInstruments: {
|
3
|
+
card: {
|
4
|
+
disabled: boolean;
|
5
|
+
cards: {
|
6
|
+
type: "credit" | "debit";
|
7
|
+
brand: "visa" | "mastercard" | "amex" | "discover" | "diners" | "jcb" | "unionpay" | "mir"[];
|
8
|
+
}[];
|
9
|
+
};
|
10
|
+
bank: {
|
11
|
+
disabled: boolean;
|
12
|
+
banks: [];
|
13
|
+
};
|
14
|
+
};
|
2
15
|
partner: {
|
3
16
|
id: number;
|
4
17
|
company: string | null;
|