@rebilly/framepay 1.90.5 → 1.92.0
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/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -448,6 +448,7 @@ export declare class FramePay {
|
|
|
448
448
|
unsupportedCardBin: string;
|
|
449
449
|
unsupportedCardBrand: string;
|
|
450
450
|
unavailableCardBrand: string;
|
|
451
|
+
encryptedCvvNotFound: string;
|
|
451
452
|
invalidBbanAccount: string;
|
|
452
453
|
incompleteRoutingNumber: string;
|
|
453
454
|
invalidLengthRoutingNumber: string;
|
|
@@ -1058,8 +1059,12 @@ export declare interface TokenRequestPayload {
|
|
|
1058
1059
|
currency?: string;
|
|
1059
1060
|
descriptor?: string;
|
|
1060
1061
|
payload?: PostTokenData;
|
|
1062
|
+
bin?: string;
|
|
1063
|
+
last4?: string;
|
|
1061
1064
|
expMonth?: string;
|
|
1062
1065
|
expYear?: string;
|
|
1066
|
+
encryptedCvv?: string;
|
|
1067
|
+
cvv?: string;
|
|
1063
1068
|
};
|
|
1064
1069
|
billingAddress?: reportsComponents['schemas']['ContactObject'];
|
|
1065
1070
|
riskMetadata?: RiskMetadata;
|