From e19a92b41cb1de77b547b1f5f7982d9e93734fd0 Mon Sep 17 00:00:00 2001 From: Jenitha Inbaraj Date: Thu, 12 Jan 2023 17:56:57 +0530 Subject: [PATCH] revert(callhistory): reverting for release --- src/webexcalling/src/ICallHistoryAdapter.ts | 77 --------------------- 1 file changed, 77 deletions(-) diff --git a/src/webexcalling/src/ICallHistoryAdapter.ts b/src/webexcalling/src/ICallHistoryAdapter.ts index 98b9aa3..22602bc 100644 --- a/src/webexcalling/src/ICallHistoryAdapter.ts +++ b/src/webexcalling/src/ICallHistoryAdapter.ts @@ -75,80 +75,3 @@ export interface ICallHistoryAdapter { getOne?(ID?: string): Observable; } - -export enum SORT { - ASC = 'ASC', - DESC = 'DESC', - DEFAULT = 'DESC', -} - -export enum SORT_BY { - END_TIME = 'endTime', - DEFAULT = 'endTime', - START_TIME = 'startTime', -} - -export enum DATE { - WEEK = 7, - MONTH = 30, - DEFAULT = 7, -} - -export enum LIMIT { - DEFAULT = 20, -} - -export interface ICallbackInfo { - callbackAddress: string; - callbackType: string; -} - -export interface ISelf { - id: string; - name: string; - incomingCallProtocols: any[]; - callbackInfo: ICallbackInfo; -} - -export interface IOther { - id: string; - name: string; - isPrivate: boolean; - callbackAddress: string; -} - -export interface ILinks { - locusUrl: string; - callbackAddress: string; -} - -export interface IUserSession { - id: string; - durationSecs: number; - self: ISelf; - url: string; - sessionId: string; - sessionType: string; - startTime: string; - endTime: string; - direction: string; - disposition: string; - other: IOther; - durationSeconds: number; - joinedDurationSeconds: number; - participantCount: number; - links: ILinks; - isDeleted: boolean; - isPMR: boolean; - correlationIds: string[]; -} - -export interface IUserSessionData { - userSessions: IUserSession[]; -} - -export interface IWebexCallHistoryResponse { - statusCode: number; - data: IUserSessionData; - message: string; -} \ No newline at end of file