@vgroup/dialbox 0.7.20 → 0.7.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,6 +23,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
23
23
  deviceId: any;
24
24
  callAction: any;
25
25
  conferenceCallInfo: any;
26
+ incomingFromImage: string;
26
27
  userId: any;
27
28
  endCallEvent: EventEmitter<void>;
28
29
  incomingCallsNewInfo: EventEmitter<any>;
@@ -167,7 +168,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
167
168
  toggleMute(isConference?: boolean): Promise<void>;
168
169
  getCurrentCallInfo(): any;
169
170
  toggleKeypad(): void;
171
+ toggleMuteIncomingCall(): void;
170
172
  toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
173
+ toggleC2CInfoPanel(userInfo: any, isClose?: boolean): any;
171
174
  addRemoveParticipant(): Promise<void>;
172
175
  waitingCallAccept(incomingCallInfo: any): Promise<void>;
173
176
  add(data?: any, ourNumberInfo?: any, capturedCall?: Call): Promise<void>;
@@ -228,5 +231,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
228
231
  get activeParticipantsCount(): number;
229
232
  ngOnDestroy(): void;
230
233
  static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
231
- static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "userSettingInfo": "userSettingInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; "outgoingContactName": "outgoingContactName"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
234
+ static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "userSettingInfo": "userSettingInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; "incomingFromImage": "incomingFromImage"; "outgoingContactName": "outgoingContactName"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
232
235
  }
@@ -87,6 +87,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
87
87
  private isReloadConfirmed;
88
88
  contactNameForLoader: string;
89
89
  contactImgForLoader: string;
90
+ incomingFromImage: string;
90
91
  handleRefreshShortcut(event: KeyboardEvent): void;
91
92
  private confirmReloadDuringCall;
92
93
  beforeUnloadHandler(event: BeforeUnloadEvent): true | undefined;
@@ -69,6 +69,9 @@ export declare class TwilioService {
69
69
  releaseConcurrentCallDevice(callSid: string): void;
70
70
  teardownSpareDevicesIfIdle(): void;
71
71
  destroyDevice2(): void;
72
+ isIncomingMuted: boolean;
73
+ applyIncomingMute(): void;
74
+ setIncomingMuted(muted: boolean): void;
72
75
  addIncomingParticipant(participantId: string, conferenceId: string): Observable<[]>;
73
76
  connect(data?: any): any;
74
77
  static ɵfac: i0.ɵɵFactoryDeclaration<TwilioService, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgroup/dialbox",
3
- "version": "0.7.20",
3
+ "version": "0.7.22",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",