@vgroup/dialbox 0.6.29 → 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.
- package/esm2020/lib/components/call-progress/call-progress.component.mjs +573 -717
- package/esm2020/lib/dialbox.component.mjs +36 -72
- package/esm2020/lib/dialbox.module.mjs +1 -1
- package/esm2020/lib/service/extension.service.mjs +14 -3
- package/esm2020/public-api.mjs +1 -1
- package/fesm2015/vgroup-dialbox.mjs +608 -729
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +620 -789
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +25 -10
- package/lib/dialbox.component.d.ts +4 -1
- package/lib/service/extension.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16,7 +16,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
16
16
|
selectedCallerId: any;
|
|
17
17
|
newIncomingCallData?: Call;
|
|
18
18
|
newIncomingCallsList: any;
|
|
19
|
+
callerIdList: any;
|
|
19
20
|
deviceId: any;
|
|
21
|
+
callAction: any;
|
|
20
22
|
conferenceCallInfo: any;
|
|
21
23
|
userId: any;
|
|
22
24
|
endCallEvent: EventEmitter<void>;
|
|
@@ -78,13 +80,24 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
78
80
|
show: boolean;
|
|
79
81
|
};
|
|
80
82
|
leftParticipent: any;
|
|
83
|
+
conferenceCallList: any[];
|
|
84
|
+
isIncomingCallBtnDisable: boolean;
|
|
85
|
+
hostnumber: any;
|
|
86
|
+
isNewAddedCall: boolean;
|
|
87
|
+
deviceNumberList: any;
|
|
88
|
+
ourNumberInfo: any;
|
|
89
|
+
currentConferenceCall: any;
|
|
90
|
+
isReasonChecked: boolean;
|
|
91
|
+
leaveReason: string;
|
|
92
|
+
selectedConf: any;
|
|
81
93
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
82
94
|
ngOnInit(): void;
|
|
83
95
|
ngOnChanges(changes: SimpleChanges): void;
|
|
96
|
+
rejoinHost(callInfo: any): Promise<void>;
|
|
84
97
|
getStatus(res: any): any;
|
|
85
98
|
GetContactsList(): void;
|
|
86
99
|
addRes: any;
|
|
87
|
-
startCall(callData: any): Promise<any>;
|
|
100
|
+
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
88
101
|
onMuteUser(c: any): Promise<void>;
|
|
89
102
|
onHoldCall(c: any): void;
|
|
90
103
|
onEndIncomingCall(): Promise<void>;
|
|
@@ -104,26 +117,23 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
104
117
|
private formatTime;
|
|
105
118
|
private pad;
|
|
106
119
|
private handleError;
|
|
120
|
+
endConfereneceCall(conf?: any): void;
|
|
107
121
|
endCall(isAllCallEnd?: boolean): Promise<void>;
|
|
108
122
|
toggleMute(isConference?: boolean): Promise<void>;
|
|
109
|
-
|
|
110
|
-
micOn: boolean;
|
|
111
|
-
toggleMic(): Promise<void>;
|
|
123
|
+
getCurrentCallInfo(): any;
|
|
112
124
|
toggleKeypad(): void;
|
|
113
|
-
toggleContactsPanel(
|
|
114
|
-
addRemoveParticipant(): void
|
|
125
|
+
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|
|
126
|
+
addRemoveParticipant(): Promise<void>;
|
|
115
127
|
add(data?: any): Promise<void>;
|
|
116
128
|
callContact(contact: any, isUnsavedNumber?: boolean): Promise<any>;
|
|
117
|
-
CallToUnsavedNumber(number: string): Promise<boolean>;
|
|
129
|
+
CallToUnsavedNumber(number: string, isNewConference?: boolean): Promise<boolean>;
|
|
118
130
|
getToNumber(dialedNumber: string): Promise<any>;
|
|
119
131
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
120
132
|
showDialAlert(message: string): void;
|
|
121
133
|
getAllParticipants(conferenceSid: string): void;
|
|
122
|
-
acceptConcurrentCall(incomingCall: any): void;
|
|
123
134
|
swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
|
|
124
135
|
isMergeCallAllowed(): boolean;
|
|
125
136
|
mergeCalls(): Promise<void>;
|
|
126
|
-
endHeldCall(): void;
|
|
127
137
|
hasDetailedInfo(callData: any): boolean;
|
|
128
138
|
onCallInputs(num: any): void;
|
|
129
139
|
onCallInputEnter(ev: any): void;
|
|
@@ -151,7 +161,12 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
151
161
|
applyFilter(): void;
|
|
152
162
|
checkTextHeight(): void;
|
|
153
163
|
toggleText(): void;
|
|
164
|
+
showDisconnectModal: boolean;
|
|
165
|
+
onCallDisconnected(): void;
|
|
166
|
+
endConference(): void;
|
|
167
|
+
leaveConference(): void;
|
|
168
|
+
convertHHMMToMinutes(time: string): number;
|
|
154
169
|
ngOnDestroy(): void;
|
|
155
170
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
156
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "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>;
|
|
157
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>;
|