@vgroup/dialbox 0.0.54 → 0.0.56

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,15 +63,14 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
61
63
  callPreference: any;
62
64
  shakeDedicatedBtn: boolean;
63
65
  isSmartDialCall: boolean;
64
- private isTwilioInitialized;
66
+ private isInitialized;
65
67
  constructor(twilioService: TwilioService, extService: ExtensionService, dialog: MatDialog, ipService: IpAddressService, extensionService: ExtensionService, router: Router);
68
+ private initializeTwilio;
66
69
  ngOnInit(): void;
67
70
  getUserInformation(incomingCallData: any): void;
68
71
  fromEntries(entries: [string, any][]): Record<string, any>;
69
72
  ngAfterViewInit(): void;
70
73
  ngOnChanges(changes: SimpleChanges): void;
71
- private initializeTwilio;
72
- private handleIncomingCall;
73
74
  private registerDragElement;
74
75
  addNumber(num: any): void;
75
76
  hideDialpad(): void;
@@ -34,9 +34,11 @@ 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;
37
39
  constructor(http: HttpClient, extensionService: ExtensionService);
38
- private setupDeviceListeners;
39
40
  initializeTwilioDevice(): void;
41
+ private setupDevice;
40
42
  saveContact(payload: any): Observable<[]>;
41
43
  updateContact(payload: any): Observable<[]>;
42
44
  deleteContact(id: string): Observable<[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgroup/dialbox",
3
- "version": "0.0.54",
3
+ "version": "0.0.56",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",