Skip to content

Commit 082578b

Browse files
authored
Merge pull request #1468 from Adyen/add-technical-cancel-enum
Add TechnicalCancel Enum
2 parents 79d7404 + a0440fe commit 082578b

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

src/typings/notification/notificationRequestItem.ts

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -146,44 +146,45 @@ export class NotificationRequestItem {
146146

147147
export namespace NotificationRequestItem {
148148
export enum EventCodeEnum {
149+
Autorescue = <any> 'AUTORESCUE',
149150
Authorisation = <any> 'AUTHORISATION',
150151
AuthorisationAdjustment = <any> 'AUTHORISATION_ADJUSTMENT',
152+
CancelAutorescue = <any> 'CANCEL_AUTORESCUE',
151153
Cancellation = <any> 'CANCELLATION',
152154
CancelOrRefund = <any> 'CANCEL_OR_REFUND',
153155
Capture = <any> 'CAPTURE',
154156
CaptureFailed = <any> 'CAPTURE_FAILED',
157+
Chargeback = <any> 'CHARGEBACK',
158+
ChargebackReversed = <any> 'CHARGEBACK_REVERSED',
155159
Donation = <any> 'DONATION',
160+
Expire = <any> 'EXPIRE',
156161
HandledExternally = <any> 'HANDLED_EXTERNALLY',
157-
OrderOpened = <any> 'ORDER_OPENED',
162+
ManualReviewAccept = <any> 'MANUAL_REVIEW_ACCEPT',
163+
ManualReviewReject = <any> 'MANUAL_REVIEW_REJECT',
164+
NotificationOfChargeback = <any> 'NOTIFICATION_OF_CHARGEBACK',
165+
NotificationOfFraud = <any> 'NOTIFICATION_OF_FRAUD',
166+
OfferClosed = <any> 'OFFER_CLOSED',
158167
OrderClosed = <any> 'ORDER_CLOSED',
168+
OrderOpened = <any> 'ORDER_OPENED',
169+
PaidoutReversed = <any> 'PAIDOUT_REVERSED',
159170
Pending = <any> 'PENDING',
171+
PostponedRefund = <any> 'POSTPONED_REFUND',
172+
PrearbitrationLost = <any> 'PREARBITRATION_LOST',
173+
PrearbitrationWon = <any> 'PREARBITRATION_WON',
160174
ProcessRetry = <any> 'PROCESS_RETRY',
175+
PayoutDecline = <any> 'PAYOUT_DECLINE',
176+
PayoutExpire = <any> 'PAYOUT_EXPIRE',
177+
PayoutThirdparty = <any> 'PAYOUT_THIRDPARTY',
178+
RecurringContract = <any> 'RECURRING_CONTRACT',
161179
Refund = <any> 'REFUND',
162180
RefundFailed = <any> 'REFUND_FAILED',
163181
RefundedReversed = <any> 'REFUNDED_REVERSED',
164182
RefundWithData = <any> 'REFUND_WITH_DATA',
165183
ReportAvailable = <any> 'REPORT_AVAILABLE',
166-
VoidPendingRefund = <any> 'VOID_PENDING_REFUND',
167-
Chargeback = <any> 'CHARGEBACK',
168-
ChargebackReversed = <any> 'CHARGEBACK_REVERSED',
169-
NotificationOfChargeback = <any> 'NOTIFICATION_OF_CHARGEBACK',
170-
NotificationOfFraud = <any> 'NOTIFICATION_OF_FRAUD',
171-
PrearbitrationLost = <any> 'PREARBITRATION_LOST',
172-
PrearbitrationWon = <any> 'PREARBITRATION_WON',
173184
RequestForInformation = <any> 'REQUEST_FOR_INFORMATION',
174185
SecondChargeback = <any> 'SECOND_CHARGEBACK',
175-
PayoutExpire = <any> 'PAYOUT_EXPIRE',
176-
PayoutDecline = <any> 'PAYOUT_DECLINE',
177-
PayoutThirdparty = <any> 'PAYOUT_THIRDPARTY',
178-
PaidoutReversed = <any> 'PAIDOUT_REVERSED',
179-
Autorescue = <any> 'AUTORESCUE',
180-
CancelAutorescue = <any> 'CANCEL_AUTORESCUE',
181-
RecurringContract = <any> 'RECURRING_CONTRACT',
182-
PostponedRefund = <any> 'POSTPONED_REFUND',
183-
OfferClosed = <any> 'OFFER_CLOSED',
184-
ManualReviewAccept = <any> 'MANUAL_REVIEW_ACCEPT',
185-
ManualReviewReject = <any> 'MANUAL_REVIEW_REJECT',
186-
Expire = <any> 'EXPIRE'
186+
TechnicalCancel = <any> 'TECHNICAL_CANCEL',
187+
VoidPendingRefund = <any> 'VOID_PENDING_REFUND'
187188
}
188189
export enum OperationsEnum {
189190
Cancel = <any> 'CANCEL',

0 commit comments

Comments
 (0)