@vgroup/dialbox 0.0.57 → 0.0.59

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.
@@ -13,7 +13,9 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
13
13
  private ipService;
14
14
  private extensionService;
15
15
  private router;
16
- isDialpadHidden: boolean;
16
+ private _isDialpadHidden;
17
+ set isDialpadHidden(value: boolean);
18
+ get isDialpadHidden(): boolean;
17
19
  closeDialpadEvent: EventEmitter<void>;
18
20
  callInitiated: EventEmitter<any>;
19
21
  endCallEvent: EventEmitter<void>;
@@ -61,12 +63,9 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
61
63
  callPreference: any;
62
64
  shakeDedicatedBtn: boolean;
63
65
  isSmartDialCall: boolean;
66
+ private isInitialized;
64
67
  constructor(twilioService: TwilioService, extService: ExtensionService, dialog: MatDialog, ipService: IpAddressService, extensionService: ExtensionService, router: Router);
65
68
  private initializeTwilio;
66
- private setupIncomingCallSubscription;
67
- private handleNewIncomingCall;
68
- private handleCallEnd;
69
- private resetCallData;
70
69
  ngOnInit(): void;
71
70
  getUserInformation(incomingCallData: any): void;
72
71
  fromEntries(entries: [string, any][]): Record<string, any>;
@@ -34,12 +34,8 @@ export declare class TwilioService {
34
34
  isAvailableNumber: BehaviorSubject<boolean>;
35
35
  callerIdList: BehaviorSubject<any[]>;
36
36
  triggerSMSReload: BehaviorSubject<boolean>;
37
- private isInitialized;
38
- private initializationInProgress;
39
37
  constructor(http: HttpClient, extensionService: ExtensionService);
40
38
  initializeTwilioDevice(): void;
41
- private setupDeviceEventListeners;
42
- onIncomingCall(): void;
43
39
  saveContact(payload: any): Observable<[]>;
44
40
  updateContact(payload: any): Observable<[]>;
45
41
  deleteContact(id: string): Observable<[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgroup/dialbox",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",