mirror of
https://github.com/jlengrand/adyen-web.git
synced 2026-03-10 08:01:22 +00:00
fixes missing results codes (#2284)
This commit is contained in:
@@ -43,7 +43,20 @@ export interface PaymentData extends PaymentMethodData {
|
||||
storePaymentMethod?: boolean;
|
||||
}
|
||||
|
||||
export type ResultCode = 'Authorised' | 'Cancelled' | 'ChallengeShopper' | 'Error' | 'IdentifyShopper' | 'Pending';
|
||||
export type ResultCode =
|
||||
| 'AuthenticationFinished'
|
||||
| 'AuthenticationNotRequired'
|
||||
| 'Authorised'
|
||||
| 'Cancelled'
|
||||
| 'ChallengeShopper'
|
||||
| 'Error'
|
||||
| 'IdentifyShopper'
|
||||
| 'PartiallyAuthorised'
|
||||
| 'Pending'
|
||||
| 'PresentToShopper'
|
||||
| 'Received'
|
||||
| 'RedirectShopper'
|
||||
| 'Refused';
|
||||
|
||||
export interface OnPaymentCompletedData {
|
||||
sessionData: string;
|
||||
|
||||
Reference in New Issue
Block a user