@vgroup/dialbox 0.7.34 → 0.7.35

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.
@@ -62,23 +62,23 @@ const keypad = [
62
62
  ];
63
63
 
64
64
  const environment = {
65
- abb: "t",
65
+ abb: "d",
66
66
  production: false,
67
67
  secureCookies: true,
68
- feUrl: 'https://test.vgroupinc.com:91/',
69
- apiUrl: 'https://apis.vgroupinc.com/test_softphone',
70
- websocketUrl: 'wss://apis.vgroupinc.com/test_softphone/',
68
+ feUrl: 'https://dev.vgroupinc.com:91/',
69
+ apiUrl: 'https://dev-api-t10.vgroupinc.com/dev_softphone_p91',
70
+ websocketUrl: 'wss://dev-api-t10.vgroupinc.com/dev_softphone_p91/',
71
71
  captchaKey: "6LfpOmEaAAAAAGsI6JXlMzOl3b7rW4YmYXFDjldD",
72
- stripePublishableKey: "pk_test_51NbMVaA3guus6fhlTuCV5ycFTIJmwgN38dDUf9pNPfM319x5CkLbV6EbTQaZiNOrRsfR16RWLE8hQmR0eZFTBqTy00Wlsug4qS",
72
+ stripePublishableKey: "pk_test_51K6aTuBiNVV2TMlQfmBWY8jziwiDo0IZ3TrqWPqth1m32cpMAAg5Qpi2AlSMDEAX6hCZRBXoTzBB1uQQLc8B4tco00q2SgG6zO",
73
73
  sessionTimeout: 15,
74
74
  deviceType: "web",
75
75
  appVersion: "2.3",
76
76
  channelId: '61481b12e138eb7dc3007579',
77
77
  c2c_support_point_id: '60424735f74ac306c1bfa900',
78
- c2c_support_channel_id: '677f6726be93ab507fbbfdf0',
78
+ c2c_support_channel_id: '677f67f3be93ab507fbbfdfc',
79
79
  c2c_point_url: 'https://app.contexttocall.com/assets/cdn/c2c.js',
80
- c2c_call_label_id: '6NU5fKE2mGTyXDC3yhmK',
81
- c2c_email_label_id: 'YPMamj8RvsGORVvqXWyc',
80
+ c2c_call_label_id: 'ye2XFLfOHCr12GFVRzPh',
81
+ c2c_email_label_id: 'mvjVgOP2VCiYsVovQqdq',
82
82
  radarAPIKey: 'prj_live_sk_569b6f639edde6120a26f703511c61aaecd3f7ef',
83
83
  firebase: {
84
84
  apiKey: "AIzaSyCA8LSPrqlDq_thk26LhBQexAQeY6pkU5Y",
@@ -92,7 +92,7 @@ const environment = {
92
92
  },
93
93
  perspectiveApiKey: 'AIzaSyClf32lvLH4QOy-vOnzLzwSNntKIgapH8s',
94
94
  keycloakURL: 'https://test-keycloak.vgroupinc.com/',
95
- keycloakRealm: 'vgroup-test',
95
+ keycloakRealm: 'vgroup-dev',
96
96
  keycloakClientId: 'c2c-softphone-app'
97
97
  };
98
98
 
@@ -4025,7 +4025,7 @@ class CallProgressComponent {
4025
4025
  };
4026
4026
  this.extensionService.setIncomingCallStatus(payload).subscribe(async (res) => {
4027
4027
  this.currentCallList = this.currentCallList.filter((res) => res?.id != callInfo?.id);
4028
- this.isClickExpand = false;
4028
+ this.onCloseC2CInfoPanel();
4029
4029
  this.cdr.detectChanges();
4030
4030
  });
4031
4031
  }
@@ -4038,7 +4038,7 @@ class CallProgressComponent {
4038
4038
  }
4039
4039
  onCloseC2CInfoPanel() {
4040
4040
  // this.isClickExpand = false;
4041
- let businessInfo = this.currentConferenceCall?.participants.find((item) => !!item?.businessNumber && this.deviceNumberList.includes(item?.to));
4041
+ let businessInfo = this.currentConferenceCall?.participants.find((item) => !!item?.businessNumber && this.deviceNumberList.includes(item?.to) && item?.host);
4042
4042
  if (businessInfo) {
4043
4043
  this.selectedUserInfo = businessInfo;
4044
4044
  this.toggleC2CInfoPanel(businessInfo);