@tuki-io/tuki-widgets 0.0.214 → 0.0.216
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/user-device-manage/src/app.constants.mjs +3 -3
- package/esm2020/user-manage/src/app.constants.mjs +5 -5
- package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +2 -2
- package/esm2020/users-list/src/users-list.component.mjs +7 -7
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +2 -2
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +6 -6
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +6 -6
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +2 -2
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +5 -5
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +6 -6
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +1 -1
- package/user-manage/src/user-calling/user-calling.component.d.ts +1 -1
|
@@ -122,10 +122,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
122
122
|
|
|
123
123
|
const API = {
|
|
124
124
|
USER_TOKEN: '/api/provision/:siteId/users/:userId/token',
|
|
125
|
-
WEBEX_USER_TOKEN: '/
|
|
126
|
-
WEBEX_USER_DEVICES: '/
|
|
127
|
-
WEBEX_USER_DIRECTORY_NUMBERS: '/
|
|
128
|
-
WEBEX_USER_DIRECTORY_CALLER_ID: '/
|
|
125
|
+
WEBEX_USER_TOKEN: '/api/webex/provisioning/customers/:customerId/persons/:userId',
|
|
126
|
+
WEBEX_USER_DEVICES: '/api/webex/provisioning/customers/:customerId/persons/:userId/devices',
|
|
127
|
+
WEBEX_USER_DIRECTORY_NUMBERS: '/api/webex/provisioning/customers/:customerId/persons/:userId/numbers',
|
|
128
|
+
WEBEX_USER_DIRECTORY_CALLER_ID: '/api/webex/provisioning/customers/:customerId/persons/:userId/callerId',
|
|
129
129
|
UPDATE_USER_FIELDS: '/api/provision/:siteId/userFields/:token',
|
|
130
130
|
PERSIST_USER_CACHE: '/api/provision/:siteId/saveUser/:token',
|
|
131
131
|
USER_BY_ID: '/api/provision/:siteId/users/:userId',
|
|
@@ -1784,7 +1784,7 @@ class UserCallingComponent {
|
|
|
1784
1784
|
return control;
|
|
1785
1785
|
}
|
|
1786
1786
|
get phoneNumberValue() {
|
|
1787
|
-
return this.userService?.user?.devices[0] && this.userService?.user?.devices[0]?.lineAssociations[0]?.mappedDids[0];
|
|
1787
|
+
return this.userService?.user?.devices[0] && this.userService?.user?.devices[0]?.lineAssociations && this.userService?.user?.devices[0]?.lineAssociations.length && this.userService?.user?.devices[0]?.lineAssociations[0]?.mappedDids && this.userService?.user?.devices[0]?.lineAssociations[0]?.mappedDids.length && this.userService?.user?.devices[0]?.lineAssociations[0]?.mappedDids[0];
|
|
1788
1788
|
}
|
|
1789
1789
|
get lineAssociation() {
|
|
1790
1790
|
return this.userService?.user?.devices[0].lineAssociations[0];
|