@tuki-io/tuki-widgets 0.0.0-watch
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/README.md +24 -0
- package/di2mt/README.md +42 -0
- package/di2mt/api/api.endpoints.d.ts +20 -0
- package/di2mt/index.d.ts +5 -0
- package/di2mt/public-api.d.ts +12 -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/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 +7 -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/site-upgrade-data-table/site-upgrade-data-table.component.d.ts +48 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.module.d.ts +12 -0
- package/di2mt/widgets/site-upgrade/site-upgrade.service.d.ts +12 -0
- package/di2mt/widgets/site-upgrade/types/user-upgrade.d.ts +14 -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 +16 -0
- package/di2mt/widgets/user-upgrade/user-upgrade-data-table/user-upgrade-data-table.component.d.ts +49 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.module.d.ts +12 -0
- package/di2mt/widgets/user-upgrade/user-upgrade.service.d.ts +14 -0
- package/esm2020/di2mt/api/api.endpoints.mjs +21 -0
- package/esm2020/di2mt/public-api.mjs +23 -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/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 +12 -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/site-upgrade-data-table/site-upgrade-data-table.component.mjs +182 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.module.mjs +40 -0
- package/esm2020/di2mt/widgets/site-upgrade/site-upgrade.service.mjs +43 -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 +197 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.module.mjs +40 -0
- package/esm2020/di2mt/widgets/user-upgrade/user-upgrade.service.mjs +58 -0
- package/esm2020/lib/widgets.component.mjs +22 -0
- package/esm2020/lib/widgets.module.mjs +21 -0
- package/esm2020/lib/widgets.service.mjs +14 -0
- package/esm2020/public-api.mjs +7 -0
- package/esm2020/tuki-io-tuki-widgets.mjs +5 -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 +122 -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 +1469 -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 +1994 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/fesm2015/tuki-io-tuki-widgets.mjs +63 -0
- package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +1460 -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 +1973 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
- package/fesm2020/tuki-io-tuki-widgets.mjs +63 -0
- package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/widgets.component.d.ts +8 -0
- package/lib/widgets.module.d.ts +7 -0
- package/lib/widgets.service.d.ts +6 -0
- package/package.json +65 -0
- package/public-api.d.ts +3 -0
- 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 +45 -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,140 @@
|
|
|
1
|
+
import { SiteShortDataInterface } from './device';
|
|
2
|
+
export interface LineInterface {
|
|
3
|
+
description: string;
|
|
4
|
+
pkid: string;
|
|
5
|
+
entityChangeType: EntityChangeType;
|
|
6
|
+
alertingName: string;
|
|
7
|
+
asciiAlertingName: string;
|
|
8
|
+
callingSearchSpace: string;
|
|
9
|
+
voiceMailProfile: string;
|
|
10
|
+
noAnswerRingDuration: number;
|
|
11
|
+
autoAnswer: string;
|
|
12
|
+
directoryNumber: LineDirectoryInterface;
|
|
13
|
+
didPatterns: Array<TranslationPatternInterface>;
|
|
14
|
+
mappedDids: Array<string>;
|
|
15
|
+
aarSettings: LineAarInterface;
|
|
16
|
+
callForwardAll: CallInterface;
|
|
17
|
+
callForwardAllSecondaryCSS: CallInterface;
|
|
18
|
+
callForwardBusyInternal: CallInterface;
|
|
19
|
+
callForwardBusyExternal: CallInterface;
|
|
20
|
+
callForwardNoAnswerInternal: CallInterface;
|
|
21
|
+
callForwardNoAnswerExternal: CallInterface;
|
|
22
|
+
callForwardNoCoverageInternal: CallInterface;
|
|
23
|
+
callForwardNoCoverageExternal: CallInterface;
|
|
24
|
+
callForwardOnCTIFailure: CallInterface;
|
|
25
|
+
callForwardUnregisteredInternal: CallInterface;
|
|
26
|
+
callForwardUnregisteredExternal: CallInterface;
|
|
27
|
+
parkMonitoringExternal: LineParkMonitoringInterface;
|
|
28
|
+
parkMonitoringInternal: LineParkMonitoringInterface;
|
|
29
|
+
callPickupGroup: string;
|
|
30
|
+
localId: string;
|
|
31
|
+
urgentPriority: boolean;
|
|
32
|
+
blfPresenceGroup: string;
|
|
33
|
+
userHoldMOHAudioSourceId: string;
|
|
34
|
+
userHoldMOHAudioSourceName: string;
|
|
35
|
+
networkMOHAudioSourceId: string;
|
|
36
|
+
networkMOHAudioSourceName: string;
|
|
37
|
+
rejectAnonymousCall: boolean;
|
|
38
|
+
enterpriseAltNum: AlternateNumberInterface;
|
|
39
|
+
e164AltNum: AlternateNumberInterface;
|
|
40
|
+
directoryUris: Array<DirectoryUriInterface>;
|
|
41
|
+
callForwardAlternateParty: ParkMonitoringInterface;
|
|
42
|
+
mlppNoAnswerRingDuration: number;
|
|
43
|
+
confidentialAccessMode: string;
|
|
44
|
+
confidentialAccessLevel: string;
|
|
45
|
+
confidentialAccessLevelName: string;
|
|
46
|
+
callControlAgentProfile: string;
|
|
47
|
+
holdReversionRingDuration: number;
|
|
48
|
+
holdReversionNotificationInterval: number;
|
|
49
|
+
partyEntranceTone: string;
|
|
50
|
+
pstnFailover: string;
|
|
51
|
+
isExistingLine?: boolean;
|
|
52
|
+
plarDestinationNumber: string;
|
|
53
|
+
prefixDigits: string;
|
|
54
|
+
plarDescription: string;
|
|
55
|
+
plarEnabled: boolean;
|
|
56
|
+
}
|
|
57
|
+
export declare enum EntityChangeType {
|
|
58
|
+
added = "added",
|
|
59
|
+
updated = "updated",
|
|
60
|
+
existing = "existing",
|
|
61
|
+
removed = "removed",
|
|
62
|
+
unassociated = "unassociated"
|
|
63
|
+
}
|
|
64
|
+
export interface LineDirectoryInterface {
|
|
65
|
+
directoryNumber: string;
|
|
66
|
+
routePartitionName: string;
|
|
67
|
+
pkid: string;
|
|
68
|
+
dnType: string;
|
|
69
|
+
subType?: string;
|
|
70
|
+
templateDirectoryNumber?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface TranslationPatternInterface {
|
|
73
|
+
pattern: string;
|
|
74
|
+
calledPartyTransformationMask: string;
|
|
75
|
+
description?: string;
|
|
76
|
+
site?: SiteShortDataInterface;
|
|
77
|
+
hasMultipleSites?: boolean;
|
|
78
|
+
multipleSitesId?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface LineAarInterface {
|
|
81
|
+
aarDestinationMask: string;
|
|
82
|
+
aarGroup: string;
|
|
83
|
+
aarVoiceMailEnabled: boolean;
|
|
84
|
+
aarKeepCallHistory: boolean;
|
|
85
|
+
}
|
|
86
|
+
export interface CallInterface {
|
|
87
|
+
forwardToVoiceMail: boolean;
|
|
88
|
+
destination: string;
|
|
89
|
+
callingSearchSpace: string;
|
|
90
|
+
}
|
|
91
|
+
export interface LineParkMonitoringInterface {
|
|
92
|
+
voiceMail: boolean;
|
|
93
|
+
destination: string;
|
|
94
|
+
callingSearchSpace: string;
|
|
95
|
+
}
|
|
96
|
+
export interface AlternateNumberInterface {
|
|
97
|
+
numberMask: string;
|
|
98
|
+
addLocalRoutePartition: boolean;
|
|
99
|
+
routePartition: string;
|
|
100
|
+
isUrgent: boolean;
|
|
101
|
+
advertiseGloballyIls: boolean;
|
|
102
|
+
}
|
|
103
|
+
export interface DirectoryUriInterface {
|
|
104
|
+
primary: boolean;
|
|
105
|
+
uri: string;
|
|
106
|
+
routePartition: string;
|
|
107
|
+
advertiseGloballyIls: boolean;
|
|
108
|
+
}
|
|
109
|
+
export interface ParkMonitoringInterface {
|
|
110
|
+
destination: string;
|
|
111
|
+
callingSearchSpace: string;
|
|
112
|
+
voiceMail: boolean;
|
|
113
|
+
}
|
|
114
|
+
export interface AvailablePhoneNumberRangeInterface {
|
|
115
|
+
phoneNumberRange: DnRangeInterface;
|
|
116
|
+
usedNumbers: string[];
|
|
117
|
+
requestedNumber: string;
|
|
118
|
+
unUsedNumbersWithDids: any;
|
|
119
|
+
}
|
|
120
|
+
export interface DnRangeInterface {
|
|
121
|
+
from: string;
|
|
122
|
+
to: string;
|
|
123
|
+
prefix: string;
|
|
124
|
+
routePartition: string;
|
|
125
|
+
dnType: DnRangeType;
|
|
126
|
+
tempIdx: number;
|
|
127
|
+
getEditableData(): any;
|
|
128
|
+
getUsedRangeEditableData(): any;
|
|
129
|
+
}
|
|
130
|
+
export declare enum DnRangeType {
|
|
131
|
+
extension = "EXTENSION",
|
|
132
|
+
cpg = "CPG",
|
|
133
|
+
callpark = "CALLPARK",
|
|
134
|
+
huntgroup = "HUNTGROUP",
|
|
135
|
+
meetme = "MEETME",
|
|
136
|
+
did = "DID"
|
|
137
|
+
}
|
|
138
|
+
export interface AvailableRangeInterface {
|
|
139
|
+
availableNumberList: AvailablePhoneNumberRangeInterface[];
|
|
140
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { ListUser } from './user-list';
|
|
2
|
+
import { AppLocation } from './app-location';
|
|
3
|
+
export declare class PrepareMigrationData {
|
|
4
|
+
customerId: number;
|
|
5
|
+
siteId: number;
|
|
6
|
+
cucmId: number;
|
|
7
|
+
entityId: string;
|
|
8
|
+
devices: PrepareMigrationDevice[];
|
|
9
|
+
softDevices: PrepareMigrationDevice[];
|
|
10
|
+
notSupportedDevices: PrepareMigrationDevice[];
|
|
11
|
+
primaryExtension: string;
|
|
12
|
+
newExtension: string;
|
|
13
|
+
removeExtension: boolean;
|
|
14
|
+
primaryPhoneNumber: string;
|
|
15
|
+
newPhoneNumber: string;
|
|
16
|
+
removePhoneNumber: boolean;
|
|
17
|
+
newLocation: AppLocation | null;
|
|
18
|
+
newLocationName: string;
|
|
19
|
+
phoneNumberWithExtension: PhoneNumberWithExtension[];
|
|
20
|
+
moveType: MoveType;
|
|
21
|
+
errors: string[];
|
|
22
|
+
pending: boolean;
|
|
23
|
+
isConfirm: boolean;
|
|
24
|
+
constructor(data?: any, originData?: PrepareMigrationData);
|
|
25
|
+
eligibleDevicesSize(): number;
|
|
26
|
+
getSavableData(): {};
|
|
27
|
+
}
|
|
28
|
+
export declare class PrepareMigrationDevice {
|
|
29
|
+
id: number | null;
|
|
30
|
+
mac: string;
|
|
31
|
+
product: string;
|
|
32
|
+
model: string;
|
|
33
|
+
cisUuid: string | null;
|
|
34
|
+
deviceId: string | null;
|
|
35
|
+
personId: string | null;
|
|
36
|
+
workspaceId: string | null;
|
|
37
|
+
locationId: string | null;
|
|
38
|
+
toMigrate: boolean;
|
|
39
|
+
isToMigrateDisabled: boolean;
|
|
40
|
+
isEligible: boolean;
|
|
41
|
+
name: string;
|
|
42
|
+
constructor(data?: any, toMigrate?: boolean, isToMigrateDisabled?: boolean, isEligible?: boolean);
|
|
43
|
+
getSavableData(): {};
|
|
44
|
+
}
|
|
45
|
+
export declare class PhoneNumberWithExtension {
|
|
46
|
+
extension: string;
|
|
47
|
+
phoneNumber: string;
|
|
48
|
+
constructor(item: any);
|
|
49
|
+
getSavableData(): {};
|
|
50
|
+
}
|
|
51
|
+
export declare class PrepareMigrationBody {
|
|
52
|
+
customerId: number;
|
|
53
|
+
locationId: string;
|
|
54
|
+
entities: PrepareMigrationEntity;
|
|
55
|
+
constructor(userList: ListUser, customerId: number, locationId: string);
|
|
56
|
+
getSavableData(): {};
|
|
57
|
+
}
|
|
58
|
+
export declare class PrepareMigrationEntity {
|
|
59
|
+
PERSON: PersonMigrationEntity[];
|
|
60
|
+
constructor(cucmId: any, entityId: string);
|
|
61
|
+
getSavableData(): {};
|
|
62
|
+
}
|
|
63
|
+
export declare class PersonMigrationEntity {
|
|
64
|
+
cucmId: any;
|
|
65
|
+
entityId: string;
|
|
66
|
+
constructor(cucmId: any, entityId: string);
|
|
67
|
+
getSavableData(): {};
|
|
68
|
+
}
|
|
69
|
+
export declare class MigrationData {
|
|
70
|
+
customerId: number;
|
|
71
|
+
siteId: number;
|
|
72
|
+
cucmId: number;
|
|
73
|
+
entityId: string;
|
|
74
|
+
primaryExtension: string | null;
|
|
75
|
+
primaryPhoneNumber: string | null;
|
|
76
|
+
devices: string[];
|
|
77
|
+
phoneNumberWithExtension: PhoneNumberWithExtension[];
|
|
78
|
+
constructor(data: PrepareMigrationData);
|
|
79
|
+
getSavableData(): {};
|
|
80
|
+
}
|
|
81
|
+
export declare class MoveType {
|
|
82
|
+
phoneNumber: string;
|
|
83
|
+
extension: string;
|
|
84
|
+
constructor(data?: any);
|
|
85
|
+
}
|
|
@@ -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 | undefined;
|
|
37
|
+
onLocationAutocomplete(event: InputEvent): 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
|
+
}
|