@tuki-io/tuki-widgets 0.0.49 → 0.0.51
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-manage/src/services/users-search.service.mjs +2 -1
- package/esm2020/users-list/src/services/users-search.service.mjs +3 -1
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +2 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +2 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -644,6 +644,7 @@ class UsersSearchService {
|
|
|
644
644
|
quickRegularUsersSearch(searchParams, isMigratedUsersOnly, pageSize) {
|
|
645
645
|
console.log('searchParams = ', searchParams);
|
|
646
646
|
this.searchParams = searchParams || { customerid: this.customerId, siteid: this.siteId };
|
|
647
|
+
this.searchParams['provisionType'] = 'CUCM';
|
|
647
648
|
return this.apiService.fetchPagination(API.QUICK_USERS_SEARCH, this.pageSize, pageSize || this.pageIndex, this.searchParams)
|
|
648
649
|
.pipe(map((res) => {
|
|
649
650
|
var _a;
|
|
@@ -668,6 +669,7 @@ class UsersSearchService {
|
|
|
668
669
|
}
|
|
669
670
|
quickWebexUsersSearch(searchParams, isMigratedUsersOnly, pageSize) {
|
|
670
671
|
this.searchParams = searchParams || { customerid: this.customerId, siteid: this.siteId };
|
|
672
|
+
this.searchParams['provisionType'] = 'CUCM';
|
|
671
673
|
return this.webexApiService.fetchPagination(API.QUICK_USERS_SEARCH, this.pageSize, pageSize || this.pageIndex, this.searchParams)
|
|
672
674
|
.pipe(map((res) => {
|
|
673
675
|
var _a;
|