@fluyappgo/commons
Advanced tools
Comparing version 2.0.100 to 2.0.101
@@ -5,2 +5,3 @@ import { recordingType, recordingOption, cloudRecordingConfiguration, onPremiseConfiguration } from "./agoraRecording.enums"; | ||
import { KioskConfig } from "./kioskConfig.interface"; | ||
import { Labels } from "./labels.interface"; | ||
import { TicketSla } from "./sla.interface"; | ||
@@ -66,2 +67,3 @@ import { SmtpConfig } from "./smtpConfig.interface"; | ||
kioskConfig?: KioskConfig; | ||
labels?: Labels; | ||
} |
@@ -154,1 +154,3 @@ export * from "./branchSession.interface"; | ||
export * from "./counterType.interface"; | ||
export * from "./labels.interface"; | ||
export * from "./kioskConfig.interface"; |
@@ -166,1 +166,3 @@ "use strict"; | ||
__exportStar(require("./counterType.interface"), exports); | ||
__exportStar(require("./labels.interface"), exports); | ||
__exportStar(require("./kioskConfig.interface"), exports); |
@@ -25,4 +25,9 @@ export interface KioskConfig { | ||
} | ||
interface DepartmentScreen extends KioskScreen { | ||
interface HasAppointmentButton { | ||
confirmAppointmentVisible?: boolean; | ||
appointmentButtonFontColor?: string; | ||
appointmentButtonFontSize?: string; | ||
appointmentButtonBackgroundColor?: string; | ||
} | ||
interface DepartmentScreen extends KioskScreen, HasAppointmentButton { | ||
buttonFontColor?: string; | ||
@@ -32,4 +37,3 @@ buttonFontSize?: string; | ||
} | ||
interface ServiceScreen extends KioskScreen { | ||
confirmAppointmentVisible?: boolean; | ||
interface ServiceScreen extends KioskScreen, HasAppointmentButton { | ||
buttonFontColor?: string; | ||
@@ -70,5 +74,4 @@ buttonFontSize?: string; | ||
interface CheckInScreen extends KioskScreen { | ||
documentIdLabelFontSize?: string; | ||
documentIdLabelFontColor?: string; | ||
documentIdInputFontSize?: string; | ||
documentIdFontSize?: string; | ||
documentIdFontColor?: string; | ||
backButtonFontColor?: string; | ||
@@ -75,0 +78,0 @@ backButtonFontSize?: string; |
export interface Labels { | ||
subscriberName: string; | ||
subscriberLastname: string; | ||
subscriberEmail: string; | ||
subscriberPhone: string; | ||
subscriberDocumentId: string; | ||
agentAlias: string; | ||
agentFullname: string; | ||
agentEmail: string; | ||
provinceLabel: string; | ||
cityLabel: string; | ||
subscriberName?: string; | ||
subscriberLastname?: string; | ||
subscriberEmail?: string; | ||
subscriberPhone?: string; | ||
subscriberDocumentId?: string; | ||
agentAlias?: string; | ||
agentFullname?: string; | ||
agentEmail?: string; | ||
provinceLabel?: string; | ||
cityLabel?: string; | ||
} |
{ | ||
"name": "@fluyappgo/commons", | ||
"version": "2.0.100", | ||
"version": "2.0.101", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
161023
4919