Skip to content

Commit

Permalink
revert(callhistory): reverting for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jenithainbaraj committed Jan 12, 2023
1 parent ed103eb commit ee0bdb5
Showing 1 changed file with 0 additions and 77 deletions.
77 changes: 0 additions & 77 deletions src/webexcalling/src/ICallHistoryAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,80 +75,3 @@ export interface ICallHistoryAdapter {

getOne?(ID?: string): Observable<ICallHistoryRecord>;
}

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;
}

0 comments on commit ee0bdb5

Please sign in to comment.