Skip to content

Commit

Permalink
fix(calling): changes to release to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
arun3528 committed Feb 15, 2023
1 parent 608d17e commit 45010f8
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 13 deletions.
2 changes: 0 additions & 2 deletions src/webexcalling/src/ICallHistoryAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export interface ICallHistoryRecord {
callbackAddress?: string;
isSelected?: boolean;
}

export interface ICallHistoryAdapter {
refresh(ID?: string): void;

Expand Down Expand Up @@ -147,7 +146,6 @@ export interface IUserSession {
export interface IUserSessionData {
userSessions: IUserSession[];
}

export interface IWebexCallHistoryResponse {
statusCode: number;
data: IUserSessionData;
Expand Down
1 change: 1 addition & 0 deletions src/webexcalling/src/IMakeCallAdapter.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// function to make call
export interface IMakeCallAdapter {
makeCall: (address: string, isVideo: boolean) => Promise<void>;
}
1 change: 1 addition & 0 deletions src/webexcalling/src/IMetricsAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ export enum CALLING_BACKEND {
}

export interface IMetricsAdaptor {}

2 changes: 1 addition & 1 deletion src/webexcalling/src/ISearchContactsAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ export interface ISearchContactsAdapter {
) => Promise<ISearchContactsAdapterSearchResponse>;

getSources: () => string[];
}
}
3 changes: 1 addition & 2 deletions src/webexcalling/src/ISpeedDialsAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export interface ISpeedDialRecord {
defaultKey?: string
selectedIndex?: any
}

export interface ISpeedDialsAdapter {
refresh?(ID?: string): void;

Expand All @@ -55,4 +54,4 @@ export interface ISpeedDialsAdapter {
remove(speedDial: ISpeedDialRecord): void;

reOrder(speedDial: ISpeedDialRecord): void;
}
}
5 changes: 0 additions & 5 deletions src/webexcalling/src/IVoicemailAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export interface IUserId {
export interface IAddress {
$: string;
}

export interface ICallingPartyInfo {
name: IName;
userId: IUserId;
Expand Down Expand Up @@ -91,11 +90,9 @@ export interface IVoiceMessageContent {
type: string;
content: string;
}

export interface IVoiceMessageContentData {
voicemailContent: IVoiceMessageContent;
}

export interface IVoiceMessageContentResponse {
statusCode: number;
data: IVoiceMessageContentData;
Expand All @@ -105,13 +102,11 @@ export interface IVoiceMessageContentResponse {
}

export interface IVoiceMailReadData { }

export interface IVoiceMailReadResponse {
statusCode: number;
data: IVoiceMailReadData;
message: string;
}

export interface IVoicemailAdapter {
refresh(): void;

Expand Down
2 changes: 1 addition & 1 deletion src/webexcalling/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export * from './IAdapterAggregator';
export * from './IMakeCallAdapter';
export * from './ISpeedDialsAdapter';
export * from './IVoicemailAdapter';
export * from './IMetricsAdapter';
export * from './IMetricsAdapter';
2 changes: 0 additions & 2 deletions src/webexcalling/src/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ export interface IWebexIntContact {
fetchAvatarUrl?: () => Promise<string | undefined>;
displayName?: string
}

export interface IWebexIntCallableEntity {
type: string;
address: string;
}

export interface IUserAvatar {
fetchAvatar: () => string;
}

0 comments on commit 45010f8

Please sign in to comment.