Skip to content

Commit 00eec6f

Browse files
authored
Merge pull request #1507 from Adyen/terminal-new-event-types
Terminal API new Event Types
2 parents 13e426e + 4314f41 commit 00eec6f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/typings/nexo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,7 @@ export type EntryModeType = "RFID" | "Keyed" | "Manual" | "File" | "Scanned" | "
12861286

12871287
export type ErrorConditionType = "Aborted" | "Busy" | "Cancel" | "DeviceOut" | "InsertedCard" | "InProgress" | "LoggedOut" | "MessageFormat" | "NotAllowed" | "NotFound" | "PaymentRestriction" | "Refusal" | "UnavailableDevice" | "UnavailableService" | "InvalidCard" | "UnreachableHost" | "WrongPIN";
12881288

1289-
export type EventToNotifyType = "BeginMaintenance" | "EndMaintenance" | "Shutdown" | "Initialised" | "OutOfOrder" | "Completed" | "Abort" | "SaleWakeUp" | "SaleAdmin" | "CustomerLanguage" | "KeyPressed" | "SecurityAlarm" | "StopAssistance" | "CardInserted" | "CardRemoved" | "Reject";
1289+
export type EventToNotifyType = "Abort" | "BeginMaintenance" | "CardInserted" | "CardRemoved" | "Completed" | "CustomerLanguage" | "EndMaintenance" | "Initialised" | "KeyPressed" | "NetworkConnected" | "NetworkDisconnected" | "OutOfOrder" | "Reject" | "SaleAdmin" | "SaleWakeUp" | "SecurityAlarm" | "Shutdown" | "StopAssistance";
12901290

12911291
export type ForceEntryModeType = "RFID" | "Keyed" | "Manual" | "File" | "Scanned" | "MagStripe" | "ICC" | "SynchronousICC" | "Tapped" | "Contactless" | "CheckReader";
12921292

src/typings/terminal/eventToNotifyType.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ export enum EventToNotifyType {
4141
EndMaintenance = <any> 'EndMaintenance',
4242
Initialised = <any> 'Initialised',
4343
KeyPressed = <any> 'KeyPressed',
44+
NetworkConnected = <any> 'NetworkConnected',
45+
NetworkDisconnected = <any> 'NetworkDisconnected',
4446
OutOfOrder = <any> 'OutOfOrder',
4547
Reject = <any> 'Reject',
4648
SaleAdmin = <any> 'SaleAdmin',

0 commit comments

Comments
 (0)