@vgroup/dialbox 0.6.86 → 0.6.87
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/dialbox.component.mjs +5 -3
- package/esm2020/lib/environments/environments.mjs +10 -10
- package/fesm2015/vgroup-dialbox.mjs +13 -11
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +13 -11
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -62,23 +62,23 @@ const keypad = [
|
|
|
62
62
|
];
|
|
63
63
|
|
|
64
64
|
const environment = {
|
|
65
|
-
abb: "
|
|
65
|
+
abb: "t",
|
|
66
66
|
production: false,
|
|
67
67
|
secureCookies: true,
|
|
68
|
-
feUrl: 'https://
|
|
69
|
-
apiUrl: 'https://
|
|
70
|
-
websocketUrl: 'wss://
|
|
68
|
+
feUrl: 'https://test.vgroupinc.com:91/',
|
|
69
|
+
apiUrl: 'https://apis.vgroupinc.com/test_softphone',
|
|
70
|
+
websocketUrl: 'wss://apis.vgroupinc.com/test_softphone/',
|
|
71
71
|
captchaKey: "6LfpOmEaAAAAAGsI6JXlMzOl3b7rW4YmYXFDjldD",
|
|
72
|
-
stripePublishableKey: "
|
|
72
|
+
stripePublishableKey: "pk_test_51NbMVaA3guus6fhlTuCV5ycFTIJmwgN38dDUf9pNPfM319x5CkLbV6EbTQaZiNOrRsfR16RWLE8hQmR0eZFTBqTy00Wlsug4qS",
|
|
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: '
|
|
78
|
+
c2c_support_channel_id: '677f6726be93ab507fbbfdf0',
|
|
79
79
|
c2c_point_url: 'https://app.contexttocall.com/assets/cdn/c2c.js',
|
|
80
|
-
c2c_call_label_id: '
|
|
81
|
-
c2c_email_label_id: '
|
|
80
|
+
c2c_call_label_id: '6NU5fKE2mGTyXDC3yhmK',
|
|
81
|
+
c2c_email_label_id: 'YPMamj8RvsGORVvqXWyc',
|
|
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-
|
|
95
|
+
keycloakRealm: 'vgroup-test',
|
|
96
96
|
keycloakClientId: 'c2c-softphone-app'
|
|
97
97
|
};
|
|
98
98
|
|
|
@@ -4470,8 +4470,10 @@ class DialboxComponent {
|
|
|
4470
4470
|
const pastedData = clipboardData.getData('text');
|
|
4471
4471
|
// Log the pasted content to the console
|
|
4472
4472
|
if (pastedData) {
|
|
4473
|
-
this.dialedNumber = pastedData;
|
|
4474
|
-
this.sanitizedNum = pastedData;
|
|
4473
|
+
this.dialedNumber = pastedData.trim();
|
|
4474
|
+
this.sanitizedNum = pastedData.trim();
|
|
4475
|
+
this.showInputClearBtn = true;
|
|
4476
|
+
this.onDialInputChange(this.dialedNumber);
|
|
4475
4477
|
}
|
|
4476
4478
|
}
|
|
4477
4479
|
onLoadershow(event) {
|