@vgroup/dialbox 0.6.3-0.5 → 0.6.3-0.55

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>;
@@ -84,9 +85,15 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
84
85
  hostnumber: any;
85
86
  isNewAddedCall: boolean;
86
87
  deviceNumberList: any;
88
+ ourNumberInfo: any;
89
+ currentConferenceCall: any;
90
+ isReasonChecked: boolean;
91
+ leaveReason: string;
92
+ selectedConf: any;
87
93
  constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
88
94
  ngOnInit(): void;
89
95
  ngOnChanges(changes: SimpleChanges): void;
96
+ rejoinHost(callInfo: any): Promise<void>;
90
97
  getStatus(res: any): any;
91
98
  GetContactsList(): void;
92
99
  addRes: any;
@@ -110,12 +117,10 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
110
117
  private formatTime;
111
118
  private pad;
112
119
  private handleError;
113
- endConfereneceCall(): void;
120
+ endConfereneceCall(conf?: any): void;
114
121
  endCall(isAllCallEnd?: boolean): Promise<void>;
115
122
  toggleMute(isConference?: boolean): Promise<void>;
116
- audioStream?: MediaStream;
117
- micOn: boolean;
118
- toggleMic(): Promise<void>;
123
+ getCurrentCallInfo(): any;
119
124
  toggleKeypad(): void;
120
125
  toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
121
126
  addRemoveParticipant(): Promise<void>;
@@ -126,11 +131,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
126
131
  isInvalidNumber(number: string): Promise<boolean>;
127
132
  showDialAlert(message: string): void;
128
133
  getAllParticipants(conferenceSid: string): void;
129
- acceptConcurrentCall(incomingCall: any): void;
130
134
  swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
131
135
  isMergeCallAllowed(): boolean;
132
136
  mergeCalls(): Promise<void>;
133
- endHeldCall(): void;
134
137
  hasDetailedInfo(callData: any): boolean;
135
138
  onCallInputs(num: any): void;
136
139
  onCallInputEnter(ev: any): void;
@@ -162,7 +165,8 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
162
165
  onCallDisconnected(): void;
163
166
  endConference(): void;
164
167
  leaveConference(): void;
168
+ convertHHMMToMinutes(time: string): number;
165
169
  ngOnDestroy(): void;
166
170
  static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
167
- 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>;
168
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.5",
3
+ "version": "0.6.30.55",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",