@fluyappgo/commons
Advanced tools
Comparing version 1.0.85 to 1.0.86
export * from './response.dto'; | ||
export * from './rtmessage.dto'; | ||
export * from './done.dto'; |
@@ -15,2 +15,1 @@ "use strict"; | ||
__exportStar(require("./rtmessage.dto"), exports); | ||
__exportStar(require("./done.dto"), exports); |
@@ -1,5 +0,5 @@ | ||
import { UserFB } from '../interfaces'; | ||
import { User } from '../interfaces'; | ||
export interface RtMessageDTO { | ||
user?: UserFB; | ||
data?: User; | ||
uuid?: string; | ||
} |
@@ -5,2 +5,4 @@ import { AgentStates, Branch, Entity, Service, UserFB } from "."; | ||
uuid?: string; | ||
entityId: number; | ||
branchId: number; | ||
entity?: Entity; | ||
@@ -7,0 +9,0 @@ branch?: Branch; |
@@ -12,3 +12,2 @@ export interface Service { | ||
type?: string; | ||
queueServiceShort?: string; | ||
isAppointment?: boolean; | ||
@@ -15,0 +14,0 @@ isVirtual?: boolean; |
@@ -1,2 +0,2 @@ | ||
import { Agent, Branch, Department, Entity, Service } from "."; | ||
import { Branch, Department, Entity, Service, UserFB } from "."; | ||
import { Subscriber } from "./subscriber.interface"; | ||
@@ -6,23 +6,20 @@ import { TicketStates } from "./ticketStates.enum"; | ||
id?: number; | ||
uuid?: string; | ||
isAppointment?: boolean; | ||
isVirtual?: boolean; | ||
date?: string; | ||
hour?: string; | ||
timezone?: string; | ||
dateRaw?: Date; | ||
agent?: Agent; | ||
subscriber?: Subscriber; | ||
status?: TicketStates; | ||
entity?: Entity; | ||
branch?: Branch; | ||
department?: Department; | ||
service?: Service; | ||
serviceUuid?: string; | ||
price?: number; | ||
priorityQ?: number; | ||
ticketLabel?: string; | ||
currentNumber?: number; | ||
uuid: string; | ||
isAppointment: boolean; | ||
isVirtual: boolean; | ||
date: string; | ||
hour: string; | ||
timezone: string; | ||
dateRaw: Date; | ||
agent: UserFB; | ||
subscriber: Subscriber; | ||
status: TicketStates; | ||
entity: Entity; | ||
branch: Branch; | ||
department: Department; | ||
service: Service; | ||
price: number; | ||
priorityQ: number; | ||
createdAt?: Date; | ||
updatedAt?: Date; | ||
} |
{ | ||
"name": "@fluyappgo/commons", | ||
"version": "1.0.85", | ||
"version": "1.0.86", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./build/index.js", |
29284
117
953