@tuki-io/tuki-widgets 0.0.78 → 0.0.79
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/di2mt/api/api.endpoints.d.ts +31 -0
- package/di2mt/index.d.ts +5 -0
- package/di2mt/public-api.d.ts +13 -0
- package/di2mt/shared/components/card/card.component.d.ts +6 -0
- package/di2mt/shared/components/chart-card/chart-card.component.d.ts +22 -0
- package/di2mt/shared/components/stat-card/stat-card.component.d.ts +14 -0
- package/di2mt/shared/components/status-list-card/status-list-card.component.d.ts +7 -0
- package/di2mt/shared/components/summary-card/summary-card.component.d.ts +9 -0
- package/di2mt/shared/components/table-filters/table-filters.component.d.ts +14 -0
- package/di2mt/shared/constants/app.constants.d.ts +74 -0
- package/di2mt/shared/material.module.d.ts +15 -0
- package/di2mt/shared/services/api.service.d.ts +20 -0
- package/di2mt/shared/shared.module.d.ts +16 -0
- package/di2mt/shared/types/constants.d.ts +15 -0
- package/di2mt/shared/types/data-table.d.ts +5 -0
- package/di2mt/shared/types/table/filter.d.ts +16 -0
- package/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.d.ts +11 -0
- package/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.d.ts +69 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.module.d.ts +15 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.service.d.ts +84 -0
- package/di2mt/widgets/site-upgrade/types/user-upgrade.d.ts +26 -0
- package/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.d.ts +18 -0
- package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.d.ts +19 -0
- package/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.d.ts +15 -0
- package/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.d.ts +18 -0
- package/di2mt/widgets/upgrade-overview/types/upgrade-overview.d.ts +56 -0
- package/di2mt/widgets/upgrade-overview/upgrade-overview.module.d.ts +15 -0
- package/di2mt/widgets/upgrade-overview/upgrade-overview.service.d.ts +17 -0
- package/di2mt/widgets/user-upgrade/types/user-upgrade.d.ts +18 -0
- package/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.d.ts +75 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.module.d.ts +16 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.service.d.ts +33 -0
- package/esm2020/di2mt/api/api.endpoints.mjs +32 -0
- package/esm2020/di2mt/public-api.mjs +24 -0
- package/esm2020/di2mt/shared/components/card/card.component.mjs +13 -0
- package/esm2020/di2mt/shared/components/chart-card/chart-card.component.mjs +62 -0
- package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +47 -0
- package/esm2020/di2mt/shared/components/status-list-card/status-list-card.component.mjs +17 -0
- package/esm2020/di2mt/shared/components/summary-card/summary-card.component.mjs +36 -0
- package/esm2020/di2mt/shared/components/table-filters/table-filters.component.mjs +37 -0
- package/esm2020/di2mt/shared/constants/app.constants.mjs +95 -0
- package/esm2020/di2mt/shared/material.module.mjs +76 -0
- package/esm2020/di2mt/shared/services/api.service.mjs +86 -0
- package/esm2020/di2mt/shared/shared.module.mjs +61 -0
- package/esm2020/di2mt/shared/types/constants.mjs +20 -0
- package/esm2020/di2mt/shared/types/data-table.mjs +2 -0
- package/esm2020/di2mt/shared/types/table/filter.mjs +2 -0
- package/esm2020/di2mt/tuki-io-tuki-widgets-di2mt.mjs +5 -0
- package/esm2020/di2mt/widgets/site-upgrade/progress-bar/progress-bar.component.mjs +38 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade-data-table/site-upgrade-data-table.component.mjs +418 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.module.mjs +53 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.service.mjs +92 -0
- package/esm2020/di2mt/widgets/site-upgrade/types/user-upgrade.mjs +3 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-sites/already-upgraded-sites-card.component.mjs +64 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/already-upgraded-users/already-upgraded-users-card.component.mjs +64 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/preconditions-status-list/preconditions-status-list-card.component.mjs +68 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-sites/ready-to-upgrade-sites-card.component.mjs +45 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/ready-to-upgrade-users/ready-to-upgrade-users-card.component.mjs +45 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/site-infrastructure-status-list/site-infrastructure-status-list-card.component.mjs +64 -0
- package/esm2020/di2mt/widgets/upgrade-overview/cards/upgrade-state-comparison-chart/upgrade-state-comparison-chart-card.component.mjs +74 -0
- package/esm2020/di2mt/widgets/upgrade-overview/types/upgrade-overview.mjs +2 -0
- package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.module.mjs +59 -0
- package/esm2020/di2mt/widgets/upgrade-overview/upgrade-overview.service.mjs +82 -0
- package/esm2020/di2mt/widgets/user-upgrade/types/user-upgrade.mjs +3 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.mjs +303 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.module.mjs +59 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.service.mjs +62 -0
- package/esm2020/user-device-manage/public-api.mjs +9 -0
- package/esm2020/user-device-manage/src/app.constants.mjs +95 -0
- package/esm2020/user-device-manage/src/classes/device.mjs +85 -0
- package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +2 -0
- package/esm2020/user-device-manage/src/classes/line-association.mjs +121 -0
- package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +10 -0
- package/esm2020/user-device-manage/src/classes/line-directory.mjs +27 -0
- package/esm2020/user-device-manage/src/classes/line.mjs +18 -0
- package/esm2020/user-device-manage/src/classes/notification.mjs +32 -0
- package/esm2020/user-device-manage/src/classes/recording-options.mjs +7 -0
- package/esm2020/user-device-manage/src/classes/simplified-user.mjs +111 -0
- package/esm2020/user-device-manage/src/classes/site-defaults.mjs +21 -0
- package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +32 -0
- package/esm2020/user-device-manage/src/classes/types.mjs +24 -0
- package/esm2020/user-device-manage/src/common-functions.mjs +19 -0
- package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +34 -0
- package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +31 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +16 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +64 -0
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +179 -0
- package/esm2020/user-device-manage/src/device-list/device-list.component.mjs +24 -0
- package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +335 -0
- package/esm2020/user-device-manage/src/environments/environment.mjs +11 -0
- package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +36 -0
- package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -0
- package/esm2020/user-device-manage/src/material.module.mjs +192 -0
- package/esm2020/user-device-manage/src/notifications/notification.component.mjs +35 -0
- package/esm2020/user-device-manage/src/services/api.service.mjs +79 -0
- package/esm2020/user-device-manage/src/services/device.service.mjs +83 -0
- package/esm2020/user-device-manage/src/services/dns.service.mjs +104 -0
- package/esm2020/user-device-manage/src/services/line.service.mjs +76 -0
- package/esm2020/user-device-manage/src/services/notification.service.mjs +62 -0
- package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-device-manage/src/services/site-settings.service.mjs +70 -0
- package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +197 -0
- package/esm2020/user-device-manage/src/services/user.service.mjs +243 -0
- package/esm2020/user-device-manage/src/services/utils.service.mjs +87 -0
- package/esm2020/user-device-manage/src/services/validation.service.mjs +760 -0
- package/esm2020/user-device-manage/src/user-device-manage.module.mjs +107 -0
- package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/user-device-manage/tuki-io-tuki-widgets-user-device-manage.mjs +5 -0
- package/esm2020/user-manage/public-api.mjs +7 -0
- package/esm2020/user-manage/src/app.constants.mjs +50 -0
- package/esm2020/user-manage/src/classes/device.mjs +37 -0
- package/esm2020/user-manage/src/classes/line-association-interface.mjs +2 -0
- package/esm2020/user-manage/src/classes/line-association.mjs +110 -0
- package/esm2020/user-manage/src/classes/line-call-info-display.mjs +10 -0
- package/esm2020/user-manage/src/classes/line-directory.mjs +27 -0
- package/esm2020/user-manage/src/classes/line.mjs +18 -0
- package/esm2020/user-manage/src/classes/notification.mjs +32 -0
- package/esm2020/user-manage/src/classes/pagination.mjs +8 -0
- package/esm2020/user-manage/src/classes/recording-options.mjs +7 -0
- package/esm2020/user-manage/src/classes/simplified-user.mjs +109 -0
- package/esm2020/user-manage/src/classes/table-data.mjs +2 -0
- package/esm2020/user-manage/src/classes/translation-pattern.mjs +32 -0
- package/esm2020/user-manage/src/classes/user-list.mjs +10 -0
- package/esm2020/user-manage/src/common-functions.mjs +19 -0
- package/esm2020/user-manage/src/device-list/device-list.component.mjs +24 -0
- package/esm2020/user-manage/src/environments/environment.mjs +11 -0
- package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +36 -0
- package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -0
- package/esm2020/user-manage/src/material.module.mjs +188 -0
- package/esm2020/user-manage/src/notifications/notification.component.mjs +35 -0
- package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-manage/src/services/api.service.mjs +79 -0
- package/esm2020/user-manage/src/services/dns.service.mjs +110 -0
- package/esm2020/user-manage/src/services/line.service.mjs +34 -0
- package/esm2020/user-manage/src/services/notification.service.mjs +62 -0
- package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/user-manage/src/services/site-settings.service.mjs +36 -0
- package/esm2020/user-manage/src/services/sorting-utils.service.mjs +197 -0
- package/esm2020/user-manage/src/services/user.service.mjs +207 -0
- package/esm2020/user-manage/src/services/users-search.service.mjs +50 -0
- package/esm2020/user-manage/src/services/utils.service.mjs +73 -0
- package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +65 -0
- package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +78 -0
- package/esm2020/user-manage/src/user-info/user-info.component.mjs +20 -0
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +208 -0
- package/esm2020/user-manage/src/user-manage.module.mjs +99 -0
- package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +43 -0
- package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +5 -0
- package/esm2020/users-list/public-api.mjs +9 -0
- package/esm2020/users-list/src/app.constants.mjs +54 -0
- package/esm2020/users-list/src/classes/app-location.mjs +32 -0
- package/esm2020/users-list/src/classes/device.mjs +7 -0
- package/esm2020/users-list/src/classes/line.mjs +18 -0
- package/esm2020/users-list/src/classes/move-user.mjs +178 -0
- package/esm2020/users-list/src/classes/notification.mjs +31 -0
- package/esm2020/users-list/src/classes/pagination.mjs +8 -0
- package/esm2020/users-list/src/classes/simlified-user.mjs +50 -0
- package/esm2020/users-list/src/classes/table-data.mjs +2 -0
- package/esm2020/users-list/src/classes/user-list.mjs +14 -0
- package/esm2020/users-list/src/material.module.mjs +209 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.mjs +38 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.mjs +23 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +189 -0
- package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +38 -0
- package/esm2020/users-list/src/services/api-webex.service.mjs +18 -0
- package/esm2020/users-list/src/services/api.service.mjs +78 -0
- package/esm2020/users-list/src/services/dns.service.mjs +120 -0
- package/esm2020/users-list/src/services/events-communication.service.mjs +14 -0
- package/esm2020/users-list/src/services/move-user.service.mjs +53 -0
- package/esm2020/users-list/src/services/notification.service.mjs +62 -0
- package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +25 -0
- package/esm2020/users-list/src/services/site-settings.service.mjs +27 -0
- package/esm2020/users-list/src/services/user.service.mjs +142 -0
- package/esm2020/users-list/src/services/users-search.service.mjs +124 -0
- package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +34 -0
- package/esm2020/users-list/src/users-list.component.mjs +287 -0
- package/esm2020/users-list/src/users-list.module.mjs +92 -0
- package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +14 -0
- package/esm2020/users-list/src/utils/common-functions.mjs +32 -0
- package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +43 -0
- package/esm2020/users-list/src/utils/utils.service.mjs +73 -0
- package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +5 -0
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +2044 -0
- package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +3402 -0
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +2124 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +1996 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +2030 -0
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +3364 -0
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +2107 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +1975 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/package.json +1 -1
- package/user-device-manage/index.d.ts +5 -0
- package/user-device-manage/public-api.d.ts +8 -0
- package/user-device-manage/src/app.constants.d.ts +74 -0
- package/user-device-manage/src/classes/device.d.ts +233 -0
- package/user-device-manage/src/classes/line-association-interface.d.ts +45 -0
- package/user-device-manage/src/classes/line-association.d.ts +62 -0
- package/user-device-manage/src/classes/line-call-info-display.d.ts +11 -0
- package/user-device-manage/src/classes/line-directory.d.ts +15 -0
- package/user-device-manage/src/classes/line.d.ts +140 -0
- package/user-device-manage/src/classes/notification.d.ts +18 -0
- package/user-device-manage/src/classes/recording-options.d.ts +5 -0
- package/user-device-manage/src/classes/simplified-user.d.ts +52 -0
- package/user-device-manage/src/classes/site-defaults.d.ts +146 -0
- package/user-device-manage/src/classes/translation-pattern.d.ts +19 -0
- package/user-device-manage/src/classes/types.d.ts +19 -0
- package/user-device-manage/src/common-functions.d.ts +1 -0
- package/user-device-manage/src/confirm-dialog/info-dialog.component.d.ts +20 -0
- package/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.d.ts +15 -0
- package/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.d.ts +7 -0
- package/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.d.ts +24 -0
- package/user-device-manage/src/device-associated-line/device-associated-line.component.d.ts +89 -0
- package/user-device-manage/src/device-list/device-list.component.d.ts +11 -0
- package/user-device-manage/src/device-manage-widget.component.d.ts +71 -0
- package/user-device-manage/src/environments/environment.d.ts +9 -0
- package/user-device-manage/src/interseptors/auth.interceptor.d.ts +9 -0
- package/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -0
- package/user-device-manage/src/material.module.d.ts +29 -0
- package/user-device-manage/src/notifications/notification.component.d.ts +19 -0
- package/user-device-manage/src/services/api.service.d.ts +20 -0
- package/user-device-manage/src/services/device.service.d.ts +21 -0
- package/user-device-manage/src/services/dns.service.d.ts +14 -0
- package/user-device-manage/src/services/line.service.d.ts +33 -0
- package/user-device-manage/src/services/notification.service.d.ts +18 -0
- package/user-device-manage/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/user-device-manage/src/services/site-settings.service.d.ts +25 -0
- package/user-device-manage/src/services/sorting-utils.service.d.ts +26 -0
- package/user-device-manage/src/services/user.service.d.ts +51 -0
- package/user-device-manage/src/services/utils.service.d.ts +10 -0
- package/user-device-manage/src/services/validation.service.d.ts +165 -0
- package/user-device-manage/src/user-device-manage.module.d.ts +22 -0
- package/user-device-manage/src/utils/app-loader/app-loader.d.ts +6 -0
- package/user-manage/index.d.ts +5 -0
- package/user-manage/public-api.d.ts +6 -0
- package/user-manage/src/app.constants.d.ts +29 -0
- package/user-manage/src/classes/device.d.ts +203 -0
- package/user-manage/src/classes/line-association-interface.d.ts +40 -0
- package/user-manage/src/classes/line-association.d.ts +55 -0
- package/user-manage/src/classes/line-call-info-display.d.ts +11 -0
- package/user-manage/src/classes/line-directory.d.ts +16 -0
- package/user-manage/src/classes/line.d.ts +140 -0
- package/user-manage/src/classes/notification.d.ts +18 -0
- package/user-manage/src/classes/pagination.d.ts +13 -0
- package/user-manage/src/classes/recording-options.d.ts +5 -0
- package/user-manage/src/classes/simplified-user.d.ts +50 -0
- package/user-manage/src/classes/table-data.d.ts +5 -0
- package/user-manage/src/classes/translation-pattern.d.ts +18 -0
- package/user-manage/src/classes/user-list.d.ts +34 -0
- package/user-manage/src/common-functions.d.ts +1 -0
- package/user-manage/src/device-list/device-list.component.d.ts +11 -0
- package/user-manage/src/environments/environment.d.ts +9 -0
- package/user-manage/src/interseptors/auth.interceptor.d.ts +9 -0
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -0
- package/user-manage/src/material.module.d.ts +28 -0
- package/user-manage/src/notifications/notification.component.d.ts +19 -0
- package/user-manage/src/removeKynFromIBM.service.d.ts +8 -0
- package/user-manage/src/services/api.service.d.ts +21 -0
- package/user-manage/src/services/dns.service.d.ts +14 -0
- package/user-manage/src/services/line.service.d.ts +17 -0
- package/user-manage/src/services/notification.service.d.ts +18 -0
- package/user-manage/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/user-manage/src/services/site-settings.service.d.ts +9 -0
- package/user-manage/src/services/sorting-utils.service.d.ts +26 -0
- package/user-manage/src/services/user.service.d.ts +43 -0
- package/user-manage/src/services/users-search.service.d.ts +25 -0
- package/user-manage/src/services/utils.service.d.ts +9 -0
- package/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.d.ts +24 -0
- package/user-manage/src/user-calling/user-calling.component.d.ts +30 -0
- package/user-manage/src/user-info/user-info.component.d.ts +9 -0
- package/user-manage/src/user-manage-widget.component.d.ts +44 -0
- package/user-manage/src/user-manage.module.d.ts +21 -0
- package/user-manage/src/utils/app-loader/app-loader.d.ts +6 -0
- package/user-manage/src/utils/pagination/pagination.component.d.ts +18 -0
- package/users-list/index.d.ts +5 -0
- package/users-list/public-api.d.ts +8 -0
- package/users-list/src/app.constants.d.ts +36 -0
- package/users-list/src/classes/app-location.d.ts +17 -0
- package/users-list/src/classes/device.d.ts +224 -0
- package/users-list/src/classes/line.d.ts +140 -0
- package/users-list/src/classes/move-user.d.ts +85 -0
- package/users-list/src/classes/notification.d.ts +18 -0
- package/users-list/src/classes/pagination.d.ts +13 -0
- package/users-list/src/classes/simlified-user.d.ts +25 -0
- package/users-list/src/classes/table-data.d.ts +5 -0
- package/users-list/src/classes/user-list.d.ts +36 -0
- package/users-list/src/material.module.d.ts +31 -0
- package/users-list/src/move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component.d.ts +21 -0
- package/users-list/src/move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component.d.ts +12 -0
- package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +55 -0
- package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +17 -0
- package/users-list/src/services/api-webex.service.d.ts +8 -0
- package/users-list/src/services/api.service.d.ts +21 -0
- package/users-list/src/services/dns.service.d.ts +18 -0
- package/users-list/src/services/events-communication.service.d.ts +8 -0
- package/users-list/src/services/move-user.service.d.ts +17 -0
- package/users-list/src/services/notification.service.d.ts +18 -0
- package/users-list/src/services/removeKynFromIBM.service.d.ts +8 -0
- package/users-list/src/services/site-settings.service.d.ts +11 -0
- package/users-list/src/services/user.service.d.ts +35 -0
- package/users-list/src/services/users-search.service.d.ts +34 -0
- package/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.d.ts +20 -0
- package/users-list/src/users-list.component.d.ts +60 -0
- package/users-list/src/users-list.module.d.ts +18 -0
- package/users-list/src/utils/app-loader/app-loader.d.ts +6 -0
- package/users-list/src/utils/common-functions.d.ts +2 -0
- package/users-list/src/utils/pagination/pagination.component.d.ts +18 -0
- package/users-list/src/utils/utils.service.d.ts +9 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare enum NotificationType {
|
|
2
|
+
info = "info",
|
|
3
|
+
error = "error",
|
|
4
|
+
success = "success",
|
|
5
|
+
warning = "warning"
|
|
6
|
+
}
|
|
7
|
+
export declare class Notification {
|
|
8
|
+
id?: number;
|
|
9
|
+
type?: NotificationType;
|
|
10
|
+
message?: string;
|
|
11
|
+
ttl: number;
|
|
12
|
+
timerId?: any;
|
|
13
|
+
constructor(data: any);
|
|
14
|
+
isInfo(): boolean;
|
|
15
|
+
isError(): boolean;
|
|
16
|
+
isSuccess(): boolean;
|
|
17
|
+
isWarning(): boolean;
|
|
18
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface PaginationDataDtoInterface {
|
|
2
|
+
total: number;
|
|
3
|
+
pageSizeOptions?: number[];
|
|
4
|
+
pageSize: number;
|
|
5
|
+
pageIndex: number;
|
|
6
|
+
}
|
|
7
|
+
export declare class PaginationDataDto {
|
|
8
|
+
total?: number;
|
|
9
|
+
pageSizeOptions?: number[];
|
|
10
|
+
pageSize?: number;
|
|
11
|
+
pageIndex?: number;
|
|
12
|
+
constructor(pagination: PaginationDataDtoInterface);
|
|
13
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { FormGroup } from '@angular/forms';
|
|
2
|
+
export declare class SimplifiedUser {
|
|
3
|
+
userid: string;
|
|
4
|
+
email: string;
|
|
5
|
+
firstName: string;
|
|
6
|
+
lastName: string;
|
|
7
|
+
token: string;
|
|
8
|
+
viewMode: string;
|
|
9
|
+
hasModifiedCache: boolean;
|
|
10
|
+
newUserId?: string;
|
|
11
|
+
editMode: boolean;
|
|
12
|
+
form: FormGroup;
|
|
13
|
+
constructor(user?: any);
|
|
14
|
+
initForm(): void;
|
|
15
|
+
toggleEditMode(): void;
|
|
16
|
+
getSavableData(): {};
|
|
17
|
+
equal(userToCompare?: SimplifiedUser): boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface SimplifiedUserInterface {
|
|
20
|
+
userid: string;
|
|
21
|
+
email: string;
|
|
22
|
+
firstName: string;
|
|
23
|
+
lastName: string;
|
|
24
|
+
form?: FormGroup;
|
|
25
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { DeviceInterface } from './device';
|
|
2
|
+
import { LineInterface } from './line';
|
|
3
|
+
export declare class ListUser implements ListUserInterface {
|
|
4
|
+
userid: string;
|
|
5
|
+
firstName?: string;
|
|
6
|
+
lastName?: string;
|
|
7
|
+
email?: string;
|
|
8
|
+
telephoneNumber?: string;
|
|
9
|
+
devices: DeviceInterface[];
|
|
10
|
+
deviceProfiles: DeviceInterface[];
|
|
11
|
+
lines?: LineInterface[];
|
|
12
|
+
siteId?: number;
|
|
13
|
+
siteName?: string;
|
|
14
|
+
webexUUID?: string;
|
|
15
|
+
cucmId?: number;
|
|
16
|
+
roleName?: string;
|
|
17
|
+
status?: string;
|
|
18
|
+
ldapIntegrated: boolean;
|
|
19
|
+
isMigrated: boolean;
|
|
20
|
+
constructor(user?: ListUser, roleName?: string);
|
|
21
|
+
}
|
|
22
|
+
export interface ListUserInterface {
|
|
23
|
+
userid: string;
|
|
24
|
+
firstName?: string;
|
|
25
|
+
lastName?: string;
|
|
26
|
+
email?: string;
|
|
27
|
+
telephoneNumber?: string;
|
|
28
|
+
viewMode?: any;
|
|
29
|
+
devices: DeviceInterface[];
|
|
30
|
+
deviceProfiles: DeviceInterface[];
|
|
31
|
+
lines?: LineInterface[];
|
|
32
|
+
siteId?: number;
|
|
33
|
+
siteName?: string;
|
|
34
|
+
webexUUID?: string;
|
|
35
|
+
cucmId?: number;
|
|
36
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/cdk/drag-drop";
|
|
3
|
+
import * as i2 from "@angular/material/button";
|
|
4
|
+
import * as i3 from "@angular/material/list";
|
|
5
|
+
import * as i4 from "@angular/material/progress-spinner";
|
|
6
|
+
import * as i5 from "@angular/material/expansion";
|
|
7
|
+
import * as i6 from "@angular/material/input";
|
|
8
|
+
import * as i7 from "@angular/material/tree";
|
|
9
|
+
import * as i8 from "@angular/material/core";
|
|
10
|
+
import * as i9 from "@angular/material/datepicker";
|
|
11
|
+
import * as i10 from "@angular/material/tooltip";
|
|
12
|
+
import * as i11 from "@angular/material/autocomplete";
|
|
13
|
+
import * as i12 from "@angular/material/chips";
|
|
14
|
+
import * as i13 from "@angular/material/sidenav";
|
|
15
|
+
import * as i14 from "@angular/material/form-field";
|
|
16
|
+
import * as i15 from "@angular/material/stepper";
|
|
17
|
+
import * as i16 from "@angular/material/tabs";
|
|
18
|
+
import * as i17 from "@angular/material/card";
|
|
19
|
+
import * as i18 from "@angular/material/select";
|
|
20
|
+
import * as i19 from "@angular/material/checkbox";
|
|
21
|
+
import * as i20 from "@angular/material/slide-toggle";
|
|
22
|
+
import * as i21 from "@angular/material/table";
|
|
23
|
+
import * as i22 from "@angular/material/paginator";
|
|
24
|
+
import * as i23 from "@angular/material/menu";
|
|
25
|
+
import * as i24 from "@angular/material/dialog";
|
|
26
|
+
import * as i25 from "@angular/material/radio";
|
|
27
|
+
export declare class MaterialModule {
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i18.MatSelectModule, typeof i19.MatCheckboxModule, typeof i20.MatSlideToggleModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule, typeof i23.MatMenuModule, typeof i24.MatDialogModule, typeof i25.MatRadioModule], [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i19.MatCheckboxModule, typeof i18.MatSelectModule, typeof i20.MatSlideToggleModule, typeof i4.MatProgressSpinnerModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule, typeof i23.MatMenuModule, typeof i24.MatDialogModule, typeof i25.MatRadioModule]>;
|
|
30
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { PrepareMigrationDevice } from '../../../classes/move-user';
|
|
3
|
+
import { AppLocation } from '../../../classes/app-location';
|
|
4
|
+
import { DnsService } from '../../../services/dns.service';
|
|
5
|
+
import { UserService } from '../../../services/user.service';
|
|
6
|
+
import { SiteSettingsService } from '../../../services/site-settings.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DeviceMoveUserWizardComponent implements OnInit {
|
|
9
|
+
dnsService: DnsService;
|
|
10
|
+
userService: UserService;
|
|
11
|
+
siteSettingsService: SiteSettingsService;
|
|
12
|
+
device: PrepareMigrationDevice;
|
|
13
|
+
get moveUserPending(): boolean;
|
|
14
|
+
get locations(): AppLocation[];
|
|
15
|
+
constructor(dnsService: DnsService, userService: UserService, siteSettingsService: SiteSettingsService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onMigrateDeviceChecked(event: any): void;
|
|
18
|
+
private resetMoveTypePhoneNUmber;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DeviceMoveUserWizardComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DeviceMoveUserWizardComponent, "app-device-move-user-wizard", never, { "device": "device"; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { PrepareMigrationData } from '../../../classes/move-user';
|
|
3
|
+
import { MoveUserService } from '../../../services/move-user.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class DevicesMoveUserWizardTabComponent implements OnInit {
|
|
6
|
+
moveUserService: MoveUserService;
|
|
7
|
+
get prepareMigrationData(): PrepareMigrationData;
|
|
8
|
+
constructor(moveUserService: MoveUserService);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DevicesMoveUserWizardTabComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DevicesMoveUserWizardTabComponent, "app-devices-move-user-tab", never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
+
import { DnsService } from '../../services/dns.service';
|
|
3
|
+
import { MatStepper } from "@angular/material/stepper";
|
|
4
|
+
import { UserService } from '../../services/user.service';
|
|
5
|
+
import { AppLocation } from '../../classes/app-location';
|
|
6
|
+
import { SiteSettingsService } from '../../services/site-settings.service';
|
|
7
|
+
import { PrepareMigrationData } from '../../classes/move-user';
|
|
8
|
+
import { MoveUserService } from '../../services/move-user.service';
|
|
9
|
+
import { NotificationService } from '../../services/notification.service';
|
|
10
|
+
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class MoveUserStepperComponent implements OnInit {
|
|
13
|
+
dnsService: DnsService;
|
|
14
|
+
userService: UserService;
|
|
15
|
+
siteSettingsService: SiteSettingsService;
|
|
16
|
+
private notificationService;
|
|
17
|
+
moveUserService: MoveUserService;
|
|
18
|
+
nextAfterMoveBtn: any;
|
|
19
|
+
done: EventEmitter<any>;
|
|
20
|
+
user: any;
|
|
21
|
+
customerId: number;
|
|
22
|
+
runMoveUser: EventEmitter<any>;
|
|
23
|
+
cancel: EventEmitter<any>;
|
|
24
|
+
isLinear: boolean;
|
|
25
|
+
phoneNumberPending: boolean;
|
|
26
|
+
stepper: MatStepper;
|
|
27
|
+
filteredLocations: AppLocation[];
|
|
28
|
+
filteredPhoneNumbers: any;
|
|
29
|
+
dataPending: boolean;
|
|
30
|
+
get moveUserPending(): boolean;
|
|
31
|
+
get currentNumber(): string;
|
|
32
|
+
get locations(): AppLocation[];
|
|
33
|
+
get prepareMigrationData(): PrepareMigrationData;
|
|
34
|
+
constructor(dnsService: DnsService, userService: UserService, siteSettingsService: SiteSettingsService, notificationService: NotificationService, moveUserService: MoveUserService);
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
displayLocation(location?: AppLocation): string;
|
|
37
|
+
onLocationAutocomplete(event: any): void;
|
|
38
|
+
onNumberAutocomplete(): void;
|
|
39
|
+
onMoveUser(stepper: MatStepper): void;
|
|
40
|
+
onStepChange(event: any): void;
|
|
41
|
+
selectPhoneNumberMigrationType(event: any): void;
|
|
42
|
+
selectExtensionMigrationType(event: any): void;
|
|
43
|
+
onPhoneNumberChange(event: any): void;
|
|
44
|
+
onLocationChange(event: MatAutocompleteSelectedEvent): void;
|
|
45
|
+
onExtensionChange(event: any): void;
|
|
46
|
+
getPhoneNumbers(): void;
|
|
47
|
+
isNextFromSelectLocationDisabled(): boolean;
|
|
48
|
+
goNextStep(stepper: MatStepper): void;
|
|
49
|
+
startMigration(): void;
|
|
50
|
+
getData(): void;
|
|
51
|
+
private getPrepareUserData;
|
|
52
|
+
private resetMoveTypePhoneNUmber;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoveUserStepperComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoveUserStepperComponent, "app-move-user-stepper", never, { "user": "user"; "customerId": "customerId"; }, { "done": "done"; "runMoveUser": "runMoveUser"; "cancel": "cancel"; }, never, never, false, never>;
|
|
55
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { DnsService } from '../services/dns.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MoveUserWizardComponent {
|
|
5
|
+
dnsService: DnsService;
|
|
6
|
+
user: any;
|
|
7
|
+
customerId: number;
|
|
8
|
+
closeMoveUserWizard: EventEmitter<any>;
|
|
9
|
+
done: EventEmitter<any>;
|
|
10
|
+
runMoveUser: EventEmitter<any>;
|
|
11
|
+
dataPending: boolean;
|
|
12
|
+
constructor(dnsService: DnsService);
|
|
13
|
+
onClose(): void;
|
|
14
|
+
onRunMoveUser(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoveUserWizardComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoveUserWizardComponent, "app-move-user-wizard", never, { "user": "user"; "customerId": "customerId"; }, { "closeMoveUserWizard": "closeMoveUserWizard"; "done": "done"; "runMoveUser": "runMoveUser"; }, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { APIService } from './api.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ApiWebexService extends APIService {
|
|
5
|
+
constructor(httpClient: HttpClient);
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiWebexService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiWebexService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { TableDataInterface } from '../classes/table-data';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class APIService {
|
|
6
|
+
private httpClient;
|
|
7
|
+
apiUrl: string;
|
|
8
|
+
token: any;
|
|
9
|
+
constructor(httpClient: HttpClient);
|
|
10
|
+
fetch(url: string, params?: {}, cache?: boolean): Observable<Object>;
|
|
11
|
+
post(url: string, body: any, params?: {}): any;
|
|
12
|
+
postExtended(url: string, body?: null, params?: {}, headers?: {}): Observable<import("@angular/common/http").HttpResponse<Object>>;
|
|
13
|
+
put(url: string, body?: null, params?: {}): Observable<Object>;
|
|
14
|
+
delete(url: string, params?: {}): Observable<Object>;
|
|
15
|
+
fetchPagination(url: string, pageSize: number, pageNumber: number, additionalParams?: {}, cache?: boolean): Observable<TableDataInterface>;
|
|
16
|
+
private prepareEncodedParams;
|
|
17
|
+
private getHeaders;
|
|
18
|
+
private getParameterByName;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<APIService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<APIService>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { APIService } from './api.service';
|
|
2
|
+
import { ApiWebexService } from '../services/api-webex.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DnsService {
|
|
5
|
+
private apiService;
|
|
6
|
+
private apiWebexService;
|
|
7
|
+
availableNumbers: {};
|
|
8
|
+
availableDidPatternsMappedToDn: any;
|
|
9
|
+
phoneNumbers: string[];
|
|
10
|
+
constructor(apiService: APIService, apiWebexService: ApiWebexService);
|
|
11
|
+
getNumberRange(siteId: string, routePartition: string, withdids?: boolean, from?: string, pageSize?: number): any;
|
|
12
|
+
setAvailableDidMappedToDn(availableNumber: any): void;
|
|
13
|
+
getUnwrapNumberRange(availableNumber: any): string[];
|
|
14
|
+
unwrapNumberRange(start: string, end: string): string[];
|
|
15
|
+
fetchPhoneNumbers(customerId: number, locationId: string): any;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DnsService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DnsService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class EventsCommunicationService {
|
|
4
|
+
onSuccessfulLoginEvent: Subject<unknown>;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EventsCommunicationService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EventsCommunicationService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { APIService } from './api.service';
|
|
2
|
+
import { ApiWebexService } from '../services/api-webex.service';
|
|
3
|
+
import { MigrationData, PrepareMigrationBody, PrepareMigrationData } from '../classes/move-user';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MoveUserService {
|
|
6
|
+
private apiService;
|
|
7
|
+
private apiWebexService;
|
|
8
|
+
prepareMigrationData: PrepareMigrationData;
|
|
9
|
+
originPrepareMigrationData: PrepareMigrationData;
|
|
10
|
+
constructor(apiService: APIService, apiWebexService: ApiWebexService);
|
|
11
|
+
resetMigrationDataForNewLocation(): void;
|
|
12
|
+
setOriginPrepareMigrationData(): void;
|
|
13
|
+
fetchPrepareMigrationData(data: PrepareMigrationBody): any;
|
|
14
|
+
startMigration(data: MigrationData): any;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoveUserService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MoveUserService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Notification } from '../classes/notification';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NotificationService {
|
|
5
|
+
listChange: Subject<unknown>;
|
|
6
|
+
private max;
|
|
7
|
+
private list;
|
|
8
|
+
constructor();
|
|
9
|
+
error(message: string, ttl?: number): void;
|
|
10
|
+
success(message: string, ttl?: number): void;
|
|
11
|
+
warning(message: string, ttl?: number): void;
|
|
12
|
+
info(message: string, ttl?: number): void;
|
|
13
|
+
private notify;
|
|
14
|
+
remove(notification: Notification, auto?: boolean): void;
|
|
15
|
+
private removeInactiveSessionError;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class RemoveKynFromIBMService {
|
|
3
|
+
constructor();
|
|
4
|
+
removeCUCMS(date: any, customerId: number): any;
|
|
5
|
+
removeCUCS(date: any, customerId: number): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RemoveKynFromIBMService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RemoveKynFromIBMService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AppLocation } from '../classes/app-location';
|
|
2
|
+
import { ApiWebexService } from '../services/api-webex.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SiteSettingsService {
|
|
5
|
+
private apiWebexService;
|
|
6
|
+
locations: AppLocation[];
|
|
7
|
+
constructor(apiWebexService: ApiWebexService);
|
|
8
|
+
getLocations(customerId: number): any;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SiteSettingsService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SiteSettingsService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Observable, Subject } from 'rxjs';
|
|
3
|
+
import { SimplifiedUser } from '../classes/simlified-user';
|
|
4
|
+
import { APIService } from './api.service';
|
|
5
|
+
import { ListUser } from '../classes/user-list';
|
|
6
|
+
import { ApiWebexService } from './api-webex.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class UserService implements OnInit {
|
|
9
|
+
private apiService;
|
|
10
|
+
private apiWebexService;
|
|
11
|
+
siteId: number;
|
|
12
|
+
userId: string;
|
|
13
|
+
userIdExistPending: boolean;
|
|
14
|
+
hasExistedUserId: boolean;
|
|
15
|
+
user: SimplifiedUser;
|
|
16
|
+
originUser: SimplifiedUser;
|
|
17
|
+
moveUserPending: boolean;
|
|
18
|
+
userMoved$: Subject<any>;
|
|
19
|
+
constructor(apiService: APIService, apiWebexService: ApiWebexService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
fetchUserToken(siteId: number, userId: string): any;
|
|
22
|
+
updateUserFields(body: any): any;
|
|
23
|
+
moveUserToMT(customerId: any, user: ListUser): any;
|
|
24
|
+
moveUserToDI(customerId: any, user: ListUser): any;
|
|
25
|
+
private getMoveUserBody;
|
|
26
|
+
deleteUser(siteId: number, userId: string): Observable<any>;
|
|
27
|
+
fetchUserById(id: string): Observable<Object>;
|
|
28
|
+
persistCacheChanges(): any;
|
|
29
|
+
processUserChangesToCache(): any;
|
|
30
|
+
hasUnsavedChanges(): boolean;
|
|
31
|
+
setSimplifiedUser(user: any, token?: any): void;
|
|
32
|
+
private handleSaveUserResponse;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { APIService } from './api.service';
|
|
2
|
+
import { RemoveKynFromIBMService } from './removeKynFromIBM.service';
|
|
3
|
+
import { PaginationDataDto } from '../classes/pagination';
|
|
4
|
+
import { ApiWebexService } from './api-webex.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class UsersSearchService {
|
|
7
|
+
private apiService;
|
|
8
|
+
private webexApiService;
|
|
9
|
+
private removeKynFromIBMService;
|
|
10
|
+
siteId: number;
|
|
11
|
+
userId: string;
|
|
12
|
+
customerId: number;
|
|
13
|
+
siteid: number;
|
|
14
|
+
userIdExistPending: boolean;
|
|
15
|
+
hasExistedUserId: boolean;
|
|
16
|
+
pageSize: number;
|
|
17
|
+
pageIndex: number;
|
|
18
|
+
pageSizeOptions: number[];
|
|
19
|
+
migratedUsersIds: any;
|
|
20
|
+
total: number;
|
|
21
|
+
migratedUsers: any;
|
|
22
|
+
searchParams: any;
|
|
23
|
+
foundUsers$: any;
|
|
24
|
+
constructor(apiService: APIService, webexApiService: ApiWebexService, removeKynFromIBMService: RemoveKynFromIBMService);
|
|
25
|
+
getPagination(): PaginationDataDto;
|
|
26
|
+
setDefaultValues(): void;
|
|
27
|
+
quickRegularUsersSearch(searchParams?: any, isMigratedUsersOnly?: boolean, pageSize?: number): any;
|
|
28
|
+
quickWebexUsersSearch(searchParams?: any, isMigratedUsersOnly?: boolean, pageSize?: number): any;
|
|
29
|
+
getMigratedUsers(customerId: number): any;
|
|
30
|
+
getMigratedWebexUsers(customerId: number): any;
|
|
31
|
+
setMigratedPropToUsers(users: any): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsersSearchService, never>;
|
|
33
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UsersSearchService>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UserListConfirmDialogComponent implements OnInit {
|
|
5
|
+
dialogRef: MatDialogRef<any>;
|
|
6
|
+
data: InfoDialogConfig;
|
|
7
|
+
confirmButtonText: string;
|
|
8
|
+
message: string;
|
|
9
|
+
title: string;
|
|
10
|
+
constructor(dialogRef: MatDialogRef<any>, data: InfoDialogConfig);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
onClose(val: boolean): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserListConfirmDialogComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserListConfirmDialogComponent, "app-info-dialog", never, {}, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
16
|
+
export declare class InfoDialogConfig {
|
|
17
|
+
message: string;
|
|
18
|
+
title: string;
|
|
19
|
+
confirmButtonText: string;
|
|
20
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { UserService } from './services/user.service';
|
|
4
|
+
import { APIService } from "./services/api.service";
|
|
5
|
+
import { NotificationService } from './services/notification.service';
|
|
6
|
+
import { UsersSearchService } from './services/users-search.service';
|
|
7
|
+
import { ListUser } from './classes/user-list';
|
|
8
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
9
|
+
import { PageEvent } from '@angular/material/paginator';
|
|
10
|
+
import { ApiWebexService } from './services/api-webex.service';
|
|
11
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export declare class UsersListComponent implements OnInit, OnDestroy {
|
|
14
|
+
userService: UserService;
|
|
15
|
+
private apiService;
|
|
16
|
+
private apiWebexService;
|
|
17
|
+
private notifications;
|
|
18
|
+
usersSearchService: UsersSearchService;
|
|
19
|
+
private dialog;
|
|
20
|
+
token: string;
|
|
21
|
+
customerId: number;
|
|
22
|
+
siteId: number;
|
|
23
|
+
openUser: EventEmitter<any>;
|
|
24
|
+
userMoved: EventEmitter<any>;
|
|
25
|
+
switchToWizard: EventEmitter<any>;
|
|
26
|
+
host: string;
|
|
27
|
+
dataPending: boolean;
|
|
28
|
+
moveInProgressUserId: string;
|
|
29
|
+
users: ListUser[];
|
|
30
|
+
dataSource: MatTableDataSource<ListUser>;
|
|
31
|
+
displayedColumns: string[];
|
|
32
|
+
moveUser: any;
|
|
33
|
+
moveUserIndex: any;
|
|
34
|
+
showMoveUserWizard: boolean;
|
|
35
|
+
moveUserPending: boolean;
|
|
36
|
+
private subscriptions;
|
|
37
|
+
get form(): FormGroup;
|
|
38
|
+
constructor(userService: UserService, apiService: APIService, apiWebexService: ApiWebexService, notifications: NotificationService, usersSearchService: UsersSearchService, dialog: MatDialog);
|
|
39
|
+
ngOnInit(): void;
|
|
40
|
+
ngOnDestroy(): void;
|
|
41
|
+
pageNumberChangeEvent(perPageNumber: number): void;
|
|
42
|
+
closeMoveUserWizard(afterUserMove?: boolean): void;
|
|
43
|
+
pageEvent(event: PageEvent): void;
|
|
44
|
+
onUserClick(user: ListUser): void;
|
|
45
|
+
moveUserToMT(user: ListUser, index: number): void;
|
|
46
|
+
moveUserToDI(user: ListUser, index: number): void;
|
|
47
|
+
private removeUserInMigrationProgress;
|
|
48
|
+
private setStatusToUser;
|
|
49
|
+
private initializeDataSource;
|
|
50
|
+
private setUserRole;
|
|
51
|
+
private setRandomUserRole;
|
|
52
|
+
private getArrayOfRandomUserIndexes;
|
|
53
|
+
private runSearch;
|
|
54
|
+
private setUserMigrationProgress;
|
|
55
|
+
private getMigratedUsers;
|
|
56
|
+
onMoveUser(user: ListUser, index: number, type: string, title: string): void;
|
|
57
|
+
runMoveUserToMT(): void;
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsersListComponent, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UsersListComponent, "app-users-list", never, { "token": "token"; "customerId": "customerId"; "siteId": "siteId"; "host": "host"; }, { "openUser": "openUser"; "userMoved": "userMoved"; "switchToWizard": "switchToWizard"; }, never, never, false, never>;
|
|
60
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./users-list.component";
|
|
3
|
+
import * as i2 from "./utils/pagination/pagination.component";
|
|
4
|
+
import * as i3 from "./utils/app-loader/app-loader";
|
|
5
|
+
import * as i4 from "./move-user-wizard/move-user-wizard.component";
|
|
6
|
+
import * as i5 from "./move-user-wizard/move-user-stepper/move-user-stepper.component";
|
|
7
|
+
import * as i6 from "./user-list-confirm-dialog/user-list-confirm-dialog.component";
|
|
8
|
+
import * as i7 from "./move-user-wizard/move-user-stepper/device-move-user-tab/devices-move-user-wizard-tab.component";
|
|
9
|
+
import * as i8 from "./move-user-wizard/move-user-stepper/device-move-user/device-move-user-wizard.component";
|
|
10
|
+
import * as i9 from "@angular/platform-browser";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
12
|
+
import * as i11 from "@angular/common/http";
|
|
13
|
+
import * as i12 from "./material.module";
|
|
14
|
+
export declare class UsersListModule {
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UsersListModule, never>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UsersListModule, [typeof i1.UsersListComponent, typeof i2.PaginationComponent, typeof i3.AppLoaderComponent, typeof i4.MoveUserWizardComponent, typeof i5.MoveUserStepperComponent, typeof i6.UserListConfirmDialogComponent, typeof i7.DevicesMoveUserWizardTabComponent, typeof i8.DeviceMoveUserWizardComponent], [typeof i9.BrowserModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule, typeof i11.HttpClientModule, typeof i12.MaterialModule], [typeof i1.UsersListComponent]>;
|
|
17
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UsersListModule>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AppLoaderComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppLoaderComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppLoaderComponent, "app-loader", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { PaginationDataDto } from '../../classes/pagination';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PaginationComponent implements OnInit {
|
|
5
|
+
pagination: PaginationDataDto;
|
|
6
|
+
showPageSizeOptions: boolean;
|
|
7
|
+
showRefreshButton: boolean;
|
|
8
|
+
lengthPending: boolean;
|
|
9
|
+
pageEmitter: EventEmitter<any>;
|
|
10
|
+
pageNumberChangeEmitter: EventEmitter<any>;
|
|
11
|
+
pageSizeOptions: number[];
|
|
12
|
+
constructor();
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
pageEvent(event: any): void;
|
|
15
|
+
changePerPageNumber(event: any): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "app-pagination", never, { "pagination": "pagination"; "showPageSizeOptions": "showPageSizeOptions"; "showRefreshButton": "showRefreshButton"; "lengthPending": "lengthPending"; }, { "pageEmitter": "pageEmitter"; "pageNumberChangeEmitter": "pageNumberChangeEmitter"; }, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class UtilsService {
|
|
3
|
+
static sortSortArrayByProperty(array: [], sortBy: string): [] | null;
|
|
4
|
+
static diff(origObject: any, updatedObj: any, path: string, keysToIgnore?: string[]): any;
|
|
5
|
+
static formatIfEmpty(value: any): any;
|
|
6
|
+
static differs(obj1: any, obj2: any): boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilsService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
|
|
9
|
+
}
|