@vgroup/dialbox 0.4.184 → 0.4.186
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 +4 -1
- package/esm2020/lib/dialbox.component.mjs +2 -1
- package/esm2020/lib/environments/environments.mjs +10 -10
- package/fesm2015/vgroup-dialbox.mjs +13 -12
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +13 -9
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -63,23 +63,23 @@ const keypad = [
|
|
|
63
63
|
];
|
|
64
64
|
|
|
65
65
|
const environment = {
|
|
66
|
-
abb: "
|
|
66
|
+
abb: "d",
|
|
67
67
|
production: false,
|
|
68
68
|
secureCookies: true,
|
|
69
|
-
feUrl: 'https://
|
|
70
|
-
apiUrl: 'https://
|
|
71
|
-
websocketUrl: 'wss://
|
|
69
|
+
feUrl: 'https://dev.vgroupinc.com:91/',
|
|
70
|
+
apiUrl: 'https://dev-api-t10.vgroupinc.com/dev_softphone_p91',
|
|
71
|
+
websocketUrl: 'wss://dev-api-t10.vgroupinc.com/dev_softphone_p91/',
|
|
72
72
|
captchaKey: "6LfpOmEaAAAAAGsI6JXlMzOl3b7rW4YmYXFDjldD",
|
|
73
|
-
stripePublishableKey: "
|
|
73
|
+
stripePublishableKey: "pk_test_51K6aTuBiNVV2TMlQfmBWY8jziwiDo0IZ3TrqWPqth1m32cpMAAg5Qpi2AlSMDEAX6hCZRBXoTzBB1uQQLc8B4tco00q2SgG6zO",
|
|
74
74
|
sessionTimeout: 15,
|
|
75
75
|
deviceType: "web",
|
|
76
76
|
appVersion: "2.3",
|
|
77
77
|
channelId: '61481b12e138eb7dc3007579',
|
|
78
78
|
c2c_support_point_id: '60424735f74ac306c1bfa900',
|
|
79
|
-
c2c_support_channel_id: '
|
|
79
|
+
c2c_support_channel_id: '677f67f3be93ab507fbbfdfc',
|
|
80
80
|
c2c_point_url: 'https://app.contexttocall.com/assets/cdn/c2c.js',
|
|
81
|
-
c2c_call_label_id: '
|
|
82
|
-
c2c_email_label_id: '
|
|
81
|
+
c2c_call_label_id: 'ye2XFLfOHCr12GFVRzPh',
|
|
82
|
+
c2c_email_label_id: 'mvjVgOP2VCiYsVovQqdq',
|
|
83
83
|
radarAPIKey: 'prj_live_sk_569b6f639edde6120a26f703511c61aaecd3f7ef',
|
|
84
84
|
firebase: {
|
|
85
85
|
apiKey: "AIzaSyCA8LSPrqlDq_thk26LhBQexAQeY6pkU5Y",
|
|
@@ -93,7 +93,7 @@ const environment = {
|
|
|
93
93
|
},
|
|
94
94
|
perspectiveApiKey: 'AIzaSyClf32lvLH4QOy-vOnzLzwSNntKIgapH8s',
|
|
95
95
|
keycloakURL: 'https://test-keycloak.vgroupinc.com/',
|
|
96
|
-
keycloakRealm: 'vgroup-
|
|
96
|
+
keycloakRealm: 'vgroup-dev',
|
|
97
97
|
keycloakClientId: 'c2c-softphone-app'
|
|
98
98
|
};
|
|
99
99
|
|
|
@@ -1848,6 +1848,7 @@ class CallProgressComponent {
|
|
|
1848
1848
|
dial: true,
|
|
1849
1849
|
phone: res.direction == "incoming-call" ? res?.from : res?.to,
|
|
1850
1850
|
participantId: res.id,
|
|
1851
|
+
conferenceSid: callInfo.conferenceSid,
|
|
1851
1852
|
name: res.name || res?.fromName || res?.toName,
|
|
1852
1853
|
time: this.getTimeDifference(res.joinedAt || new Date().toUTCString()),
|
|
1853
1854
|
});
|
|
@@ -1904,6 +1905,7 @@ class CallProgressComponent {
|
|
|
1904
1905
|
dial: true,
|
|
1905
1906
|
phone: res.direction == "incoming-call" ? res?.from : res?.to,
|
|
1906
1907
|
participantId: res.id,
|
|
1908
|
+
conferenceSid: callInfo.conferenceSid,
|
|
1907
1909
|
name: res.name || res?.fromName || res?.toName,
|
|
1908
1910
|
time: this.getTimeDifference(res.joinedAt || new Date().toUTCString()),
|
|
1909
1911
|
};
|
|
@@ -1921,6 +1923,7 @@ class CallProgressComponent {
|
|
|
1921
1923
|
dial: true,
|
|
1922
1924
|
phone: res.direction == "incoming-call" ? res?.from : res?.to,
|
|
1923
1925
|
participantId: res.id,
|
|
1926
|
+
conferenceSid: callInfo.conferenceSid,
|
|
1924
1927
|
name: res.name || res?.fromName || res?.toName,
|
|
1925
1928
|
time: this.getTimeDifference(res.joinedAt || new Date().toUTCString()),
|
|
1926
1929
|
});
|
|
@@ -3850,6 +3853,7 @@ class DialboxComponent {
|
|
|
3850
3853
|
this.incomingCallsList.splice(incomingCallIndex, 1);
|
|
3851
3854
|
}
|
|
3852
3855
|
console.log('test', this.incomingCallsList);
|
|
3856
|
+
this.isIncomingCallnotification = false;
|
|
3853
3857
|
}
|
|
3854
3858
|
}
|
|
3855
3859
|
console.log('notificationCallList', this.notificationCallList);
|