@vgroup/dialbox 0.6.30 → 0.6.32

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.
@@ -18,6 +18,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
18
18
  newIncomingCallsList: any;
19
19
  callerIdList: any;
20
20
  deviceId: any;
21
+ callAction: any;
21
22
  conferenceCallInfo: any;
22
23
  userId: any;
23
24
  endCallEvent: EventEmitter<void>;
@@ -83,9 +84,16 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
83
84
  isIncomingCallBtnDisable: boolean;
84
85
  hostnumber: any;
85
86
  isNewAddedCall: boolean;
87
+ deviceNumberList: any;
88
+ ourNumberInfo: any;
89
+ currentConferenceCall: any;
90
+ isReasonChecked: boolean;
91
+ leaveReason: string;
92
+ selectedConf: any;
86
93
  constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
87
94
  ngOnInit(): void;
88
95
  ngOnChanges(changes: SimpleChanges): void;
96
+ rejoinHost(callInfo: any): Promise<void>;
89
97
  getStatus(res: any): any;
90
98
  GetContactsList(): void;
91
99
  addRes: any;
@@ -109,14 +117,13 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
109
117
  private formatTime;
110
118
  private pad;
111
119
  private handleError;
120
+ endConfereneceCall(conf?: any): void;
112
121
  endCall(isAllCallEnd?: boolean): Promise<void>;
113
122
  toggleMute(isConference?: boolean): Promise<void>;
114
- audioStream?: MediaStream;
115
- micOn: boolean;
116
- toggleMic(): Promise<void>;
123
+ getCurrentCallInfo(): any;
117
124
  toggleKeypad(): void;
118
125
  toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
119
- addRemoveParticipant(): void;
126
+ addRemoveParticipant(): Promise<void>;
120
127
  add(data?: any): Promise<void>;
121
128
  callContact(contact: any, isUnsavedNumber?: boolean): Promise<any>;
122
129
  CallToUnsavedNumber(number: string, isNewConference?: boolean): Promise<boolean>;
@@ -124,11 +131,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
124
131
  isInvalidNumber(number: string): Promise<boolean>;
125
132
  showDialAlert(message: string): void;
126
133
  getAllParticipants(conferenceSid: string): void;
127
- acceptConcurrentCall(incomingCall: any): void;
128
134
  swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
129
135
  isMergeCallAllowed(): boolean;
130
136
  mergeCalls(): Promise<void>;
131
- endHeldCall(): void;
132
137
  hasDetailedInfo(callData: any): boolean;
133
138
  onCallInputs(num: any): void;
134
139
  onCallInputEnter(ev: any): void;
@@ -156,7 +161,12 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
156
161
  applyFilter(): void;
157
162
  checkTextHeight(): void;
158
163
  toggleText(): void;
164
+ showDisconnectModal: boolean;
165
+ onCallDisconnected(): void;
166
+ endConference(): void;
167
+ leaveConference(): void;
168
+ convertHHMMToMinutes(time: string): number;
159
169
  ngOnDestroy(): void;
160
170
  static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
161
- static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "deviceId": "deviceId"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershow": "isLoadershow"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
171
+ static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershow": "isLoadershow"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
162
172
  }
@@ -21,9 +21,11 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
21
21
  contactInfo: any;
22
22
  deviceId: any;
23
23
  userId: any;
24
+ callAction: any;
24
25
  isLoadershow: boolean;
25
26
  isIncomingCallnotification: any;
26
27
  notificationCallList: any;
28
+ deviceNumberList: any[];
27
29
  set isDialpadHidden(value: boolean);
28
30
  incomingCallData: any;
29
31
  incomingCallnotification: any;
@@ -35,6 +37,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
35
37
  minimiseEvent: EventEmitter<boolean>;
36
38
  incomingCallsNewInfoEvent: EventEmitter<any[]>;
37
39
  incomingCallInitiated: EventEmitter<void>;
40
+ conferenceCallList: EventEmitter<void>;
38
41
  dialInputElement: ElementRef;
39
42
  numberDialed: EventEmitter<string>;
40
43
  isCallInProgress: boolean;
@@ -130,5 +133,5 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
130
133
  incomingCallsNewInfo(data: any): void;
131
134
  ngOnDestroy(): void;
132
135
  static ɵfac: i0.ɵɵFactoryDeclaration<DialboxComponent, never>;
133
- static ɵcmp: i0.ɵɵComponentDeclaration<DialboxComponent, "lib-dialbox", never, { "autoOpenOnIncoming": "autoOpenOnIncoming"; "contactInfo": "contactInfo"; "deviceId": "deviceId"; "userId": "userId"; "isDialpadHidden": "isDialpadHidden"; "incomingCallData": "incomingCallData"; "incomingCallnotification": "incomingCallnotification"; }, { "closeDialpadEvent": "closeDialpadEvent"; "callInitiated": "callInitiated"; "endCallEvent": "endCallEvent"; "minimiseEvent": "minimiseEvent"; "incomingCallsNewInfoEvent": "incomingCallsNewInfoEvent"; "incomingCallInitiated": "incomingCallInitiated"; "numberDialed": "numberDialed"; }, never, never, false, never>;
136
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialboxComponent, "lib-dialbox", never, { "autoOpenOnIncoming": "autoOpenOnIncoming"; "contactInfo": "contactInfo"; "deviceId": "deviceId"; "userId": "userId"; "callAction": "callAction"; "isDialpadHidden": "isDialpadHidden"; "incomingCallData": "incomingCallData"; "incomingCallnotification": "incomingCallnotification"; }, { "closeDialpadEvent": "closeDialpadEvent"; "callInitiated": "callInitiated"; "endCallEvent": "endCallEvent"; "minimiseEvent": "minimiseEvent"; "incomingCallsNewInfoEvent": "incomingCallsNewInfoEvent"; "incomingCallInitiated": "incomingCallInitiated"; "conferenceCallList": "conferenceCallList"; "numberDialed": "numberDialed"; }, never, never, false, never>;
134
137
  }
@@ -178,6 +178,7 @@ export declare class ExtensionService {
178
178
  updateActions(token: string, dtModel: any): Observable<[]>;
179
179
  updateValueAddedServices(token: string, dtModel: any): Observable<[]>;
180
180
  deleteAdminUsers(token: string, userIds: string): Observable<[]>;
181
+ setTimerForEndConferenceCall(payload: any): Observable<[]>;
181
182
  getUserInformation(twilioAuthId: string): Observable<[]>;
182
183
  static ɵfac: i0.ɵɵFactoryDeclaration<ExtensionService, never>;
183
184
  static ɵprov: i0.ɵɵInjectableDeclaration<ExtensionService>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgroup/dialbox",
3
- "version": "0.6.30",
3
+ "version": "0.6.32",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",