@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.
@@ -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;