Skip to content

Commit

Permalink
fix(ICallHistoryAdapter): Added delete call log data types
Browse files Browse the repository at this point in the history
  • Loading branch information
akulakum authored and Waseemraj committed Nov 6, 2024
1 parent b275444 commit 5990f21
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/webexcalling/src/ICallHistoryAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ export interface ICallHistoryAdapter {
getOne?(ID?: string): Observable<ICallHistoryRecord>;

updateMissedCalls(endTimeSessionIds: EndTimeSessionId[]): Observable<UpdateMissedCallsResponse>

deleteCallHistoryRecords(endTimeSessionIds: EndTimeSessionId[]): Observable<DeleteCallHistoryRecordsResponse>;
}

export enum SORT {
Expand Down Expand Up @@ -206,4 +208,13 @@ export interface UpdateMissedCallsResponse {
error?: string;
}
message: string;
}
}

export interface DeleteCallHistoryRecordsResponse {
statusCode: number;
data: {
deleteStatusMessage?: string;
error?: string;
};
message: string | null;
};

0 comments on commit 5990f21

Please sign in to comment.