@vgroup/dialbox 0.7.17 → 0.7.18

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.
@@ -128,6 +128,10 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
128
128
  phone: string;
129
129
  img?: string;
130
130
  };
131
+ outgoingContactName: string;
132
+ showLeaveConfirmationModal: boolean;
133
+ leaveConfParticipant: any;
134
+ leaveConfConferenceName: string;
131
135
  constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
132
136
  ngOnInit(): void;
133
137
  ngOnChanges(changes: SimpleChanges): void;
@@ -217,7 +221,11 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
217
221
  getName(number: any): string | null;
218
222
  getImg(number: any): any;
219
223
  get showEndAllButton(): boolean;
224
+ confirmLeaveParticipant(c: any): void;
225
+ isInMultipleConferences(): boolean;
226
+ confirmLeave(): void;
227
+ cancelLeave(): void;
220
228
  ngOnDestroy(): void;
221
229
  static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
222
- 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"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
230
+ 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>;
223
231
  }
@@ -85,6 +85,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
85
85
  isSmartDialCall: boolean;
86
86
  private isInitialized;
87
87
  contactNameForLoader: string;
88
+ contactImgForLoader: string;
88
89
  beforeUnloadHandler(event: Event): void;
89
90
  constructor(twilioService: TwilioService, extService: ExtensionService, ipService: IpAddressService, extensionService: ExtensionService, cdk: ChangeDetectorRef, router: Router, incomeingCallSocketService: IncomeingCallSocketService);
90
91
  private getRemoveParticipants;
@@ -106,6 +107,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
106
107
  getContactList(): void;
107
108
  getFullName(contact: any): string;
108
109
  toggleCallerIdDiv(): void;
110
+ outgoingContactName: string;
109
111
  onContactSelect(contact: any): void;
110
112
  endCall(): void;
111
113
  initiateCall(): Promise<boolean | undefined>;
@@ -42,8 +42,9 @@ export declare class TwilioService {
42
42
  conferenceCallInfo: any;
43
43
  isShowIncomingCall: boolean;
44
44
  acceptedCallList: Call[];
45
- private device2;
46
- device2Ready: boolean;
45
+ private spareDevice;
46
+ spareDeviceReady: boolean;
47
+ private extraDevices;
47
48
  constructor(http: HttpClient, extensionService: ExtensionService);
48
49
  private initializeToken;
49
50
  initializeTwilioDevice(deviceId: any): void;
@@ -61,6 +62,9 @@ export declare class TwilioService {
61
62
  toggleCoutryCodeToast(val: any): Observable<[]>;
62
63
  getToNumber(dialledNo: string, isoCode: string): Observable<[]>;
63
64
  prepareDevice2ForIncomingCall(): void;
65
+ onConcurrentCallAccepted(acceptedCall: any): void;
66
+ releaseConcurrentCallDevice(callSid: string): void;
67
+ teardownSpareDevicesIfIdle(): void;
64
68
  destroyDevice2(): void;
65
69
  addIncomingParticipant(participantId: string, conferenceId: string): Observable<[]>;
66
70
  connect(data?: any): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgroup/dialbox",
3
- "version": "0.7.17",
3
+ "version": "0.7.18",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",
Binary file