@vgroup/dialbox 0.6.61 → 0.6.63
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 +116 -62
- package/esm2020/lib/dialbox.component.mjs +63 -78
- package/esm2020/lib/service/twilio.service.mjs +5 -1
- package/fesm2015/vgroup-dialbox.mjs +183 -142
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +181 -138
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +18 -3
- package/lib/dialbox.component.d.ts +0 -5
- package/lib/service/twilio.service.d.ts +1 -0
- package/package.json +1 -1
- package/vgroup-dialbox-0.6.60.tgz +0 -0
|
@@ -90,12 +90,20 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
90
90
|
isReasonChecked: boolean;
|
|
91
91
|
isAllAccepted: boolean;
|
|
92
92
|
leaveReason: string;
|
|
93
|
+
leaveHour: string;
|
|
94
|
+
leaveMinute: string;
|
|
95
|
+
hours: string[];
|
|
96
|
+
minutes: string[];
|
|
97
|
+
showHourDropdown: boolean;
|
|
98
|
+
showMinuteDropdown: boolean;
|
|
93
99
|
selectedConf: any;
|
|
100
|
+
showConferenceWarningModal: boolean;
|
|
101
|
+
pendingCallData: any;
|
|
94
102
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
95
103
|
ngOnInit(): void;
|
|
96
104
|
ngOnChanges(changes: SimpleChanges): void;
|
|
97
105
|
rejoinHost(callInfo: any): Promise<void>;
|
|
98
|
-
getStatus(res: any):
|
|
106
|
+
getStatus(res: any): boolean;
|
|
99
107
|
GetContactsList(): void;
|
|
100
108
|
addRes: any;
|
|
101
109
|
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
@@ -130,13 +138,14 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
130
138
|
add(data?: any): Promise<void>;
|
|
131
139
|
callContact(contact: any, isUnsavedNumber?: boolean): Promise<any>;
|
|
132
140
|
CallToUnsavedNumber(number: string, isNewConference?: boolean): Promise<boolean>;
|
|
141
|
+
onAddNewCall(callData: any, isNewConferenceCall?: boolean): void;
|
|
142
|
+
confirmNewCall(): void;
|
|
143
|
+
cancelNewCall(): void;
|
|
133
144
|
getToNumber(dialedNumber: string): Promise<any>;
|
|
134
145
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
135
146
|
showDialAlert(message: string): void;
|
|
136
147
|
getAllParticipants(conferenceId: string): Promise<void>;
|
|
137
148
|
swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
|
|
138
|
-
isMergeCallAllowed(): boolean;
|
|
139
|
-
mergeCalls(): Promise<void>;
|
|
140
149
|
hasDetailedInfo(callData: any): boolean;
|
|
141
150
|
onCallInputs(num: any): void;
|
|
142
151
|
onCallInputEnter(ev: any): void;
|
|
@@ -167,6 +176,12 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
167
176
|
showDisconnectModal: boolean;
|
|
168
177
|
onCallDisconnected(): void;
|
|
169
178
|
endConference(): void;
|
|
179
|
+
/** Combines the two 24-hour selects into leaveReason (HH:MM) */
|
|
180
|
+
onTimeChange(): void;
|
|
181
|
+
toggleHourDropdown(): void;
|
|
182
|
+
toggleMinuteDropdown(): void;
|
|
183
|
+
selectHour(h: string): void;
|
|
184
|
+
selectMinute(m: string): void;
|
|
170
185
|
leaveConference(): void;
|
|
171
186
|
convertHHMMToMinutes(time: string): number;
|
|
172
187
|
onRejectCall(callInfo: any): void;
|
|
@@ -80,8 +80,6 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
80
80
|
callPreference: any;
|
|
81
81
|
shakeDedicatedBtn: boolean;
|
|
82
82
|
isSmartDialCall: boolean;
|
|
83
|
-
showNewCallWarning: boolean;
|
|
84
|
-
private _pendingCallResolve;
|
|
85
83
|
private isInitialized;
|
|
86
84
|
beforeUnloadHandler(event: Event): void;
|
|
87
85
|
constructor(twilioService: TwilioService, extService: ExtensionService, dialog: MatDialog, ipService: IpAddressService, extensionService: ExtensionService, cdk: ChangeDetectorRef, router: Router, incomeingCallSocketService: IncomeingCallSocketService);
|
|
@@ -107,9 +105,6 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
107
105
|
onContactSelect(contact: any): void;
|
|
108
106
|
endCall(): void;
|
|
109
107
|
initiateCall(): Promise<boolean | undefined>;
|
|
110
|
-
private showConferenceWarning;
|
|
111
|
-
confirmNewCall(): void;
|
|
112
|
-
cancelNewCall(): void;
|
|
113
108
|
isInvalidNumber(): Promise<boolean>;
|
|
114
109
|
saveLastDialed(): void;
|
|
115
110
|
isSavedContactDialled(): boolean;
|
|
@@ -39,6 +39,7 @@ export declare class TwilioService {
|
|
|
39
39
|
private tokenInitialization$;
|
|
40
40
|
deviceId: any;
|
|
41
41
|
conferenceCallInfo: any;
|
|
42
|
+
isShowIncomingCall: boolean;
|
|
42
43
|
constructor(http: HttpClient, extensionService: ExtensionService);
|
|
43
44
|
private initializeToken;
|
|
44
45
|
initializeTwilioDevice(deviceId: any): void;
|
package/package.json
CHANGED
|
Binary file
|