@tuki-io/tuki-widgets 0.0.7 → 0.0.9
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/karma.conf.js +44 -0
- package/ng-package.json +7 -0
- package/package.json +3 -39
- package/src/lib/widgets.component.spec.ts +23 -0
- package/src/lib/widgets.component.ts +20 -0
- package/src/lib/widgets.module.ts +16 -0
- package/src/lib/widgets.service.spec.ts +16 -0
- package/src/lib/widgets.service.ts +9 -0
- package/{public-api.d.ts → src/public-api.ts} +4 -0
- package/src/test.ts +27 -0
- package/styles/_variables.scss +90 -0
- package/styles/form.scss +231 -0
- package/styles/icons.scss +32 -0
- package/styles/styles.scss +110 -0
- package/styles/tables.scss +30 -0
- package/tsconfig.lib.json +36 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/user-manage/ng-package.json +7 -0
- package/user-manage/src/app.constants.ts +38 -0
- package/user-manage/src/classes/device.ts +225 -0
- package/user-manage/src/classes/line.ts +117 -0
- package/user-manage/src/classes/notification.ts +39 -0
- package/user-manage/src/classes/pagination.ts +18 -0
- package/user-manage/src/classes/simplified-user.ts +128 -0
- package/user-manage/src/classes/table-data.ts +6 -0
- package/user-manage/src/classes/user-interface.ts +225 -0
- package/user-manage/src/classes/user-list.ts +40 -0
- package/user-manage/src/classes/user.ts +8 -0
- package/user-manage/src/common-functions.ts +16 -0
- package/user-manage/src/environments/environment.prod.ts +9 -0
- package/user-manage/src/environments/environment.ts +10 -0
- package/user-manage/src/interseptors/auth.interceptor.ts +36 -0
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.html +50 -0
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.scss +3 -0
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.ts +81 -0
- package/user-manage/src/material.module.ts +85 -0
- package/user-manage/src/notifications/notification.component.html +33 -0
- package/user-manage/src/notifications/notification.component.scss +84 -0
- package/user-manage/src/notifications/notification.component.ts +46 -0
- package/user-manage/src/removeKynFromIBM.service.ts +25 -0
- package/user-manage/src/services/api.service.ts +90 -0
- package/user-manage/src/services/notification.service.ts +68 -0
- package/user-manage/src/services/removeKynFromIBM.service.ts +25 -0
- package/user-manage/src/services/site-settings.service.ts +35 -0
- package/user-manage/src/services/user.service.ts +120 -0
- package/user-manage/src/services/users-search.service.ts +58 -0
- package/user-manage/src/services/utils.service.ts +71 -0
- package/user-manage/src/styles/_variables.scss +90 -0
- package/user-manage/src/styles/form.scss +231 -0
- package/user-manage/src/styles/icons.scss +32 -0
- package/user-manage/src/styles/styles.scss +110 -0
- package/user-manage/src/styles/tables.scss +30 -0
- package/user-manage/src/user-details/notification.service.ts +68 -0
- package/user-manage/src/user-info/user-info.component.html +32 -0
- package/user-manage/src/user-info/user-info.component.scss +53 -0
- package/user-manage/src/user-info/user-info.component.ts +19 -0
- package/user-manage/src/user-manage-widget.component.html +291 -0
- package/user-manage/src/user-manage-widget.component.scss +461 -0
- package/user-manage/src/user-manage-widget.component.ts +165 -0
- package/user-manage/src/user-manage.module.ts +53 -0
- package/user-manage/src/utils/app-loader/app-loader.component.html +6 -0
- package/user-manage/src/utils/app-loader/app-loader.component.scss +11 -0
- package/user-manage/src/utils/app-loader/app-loader.ts +13 -0
- package/user-manage/src/utils/pagination/pagination.component.html +26 -0
- package/user-manage/src/utils/pagination/pagination.component.scss +41 -0
- package/user-manage/src/utils/pagination/pagination.component.ts +41 -0
- package/users-list/ng-package.json +6 -0
- package/users-list/src/app.constants.ts +35 -0
- package/users-list/src/classes/device.ts +225 -0
- package/users-list/src/classes/line.ts +117 -0
- package/users-list/src/classes/notification.ts +38 -0
- package/users-list/src/classes/pagination.ts +18 -0
- package/users-list/src/classes/simlified-user.ts +74 -0
- package/users-list/src/classes/table-data.ts +6 -0
- package/users-list/src/classes/user-interface.ts +225 -0
- package/users-list/src/classes/user-list.ts +40 -0
- package/users-list/src/classes/user.ts +8 -0
- package/users-list/src/material.module.ts +84 -0
- package/users-list/src/services/api.service.ts +90 -0
- package/users-list/src/services/events-communication.service.ts +11 -0
- package/users-list/src/services/notification.service.ts +68 -0
- package/users-list/src/services/removeKynFromIBM.service.ts +25 -0
- package/users-list/src/services/user.service.ts +117 -0
- package/users-list/src/services/users-search.service.ts +58 -0
- package/users-list/src/users-list.component.css +4 -0
- package/users-list/src/users-list.component.css.map +1 -0
- package/users-list/src/users-list.component.html +39 -0
- package/users-list/src/users-list.component.scss +9 -0
- package/users-list/src/users-list.component.ts +87 -0
- package/users-list/src/users-list.module.ts +36 -0
- package/users-list/src/utils/app-loader/app-loader.component.css +11 -0
- package/users-list/src/utils/app-loader/app-loader.component.css.map +1 -0
- package/users-list/src/utils/app-loader/app-loader.component.html +6 -0
- package/users-list/src/utils/app-loader/app-loader.component.scss +11 -0
- package/users-list/src/utils/app-loader/app-loader.ts +13 -0
- package/users-list/src/utils/common-functions.ts +16 -0
- package/users-list/src/utils/notifications/notification.component.html +33 -0
- package/users-list/src/utils/notifications/notification.component.scss +84 -0
- package/users-list/src/utils/notifications/notification.component.ts +46 -0
- package/users-list/src/utils/pagination/pagination.component.css +45 -0
- package/users-list/src/utils/pagination/pagination.component.css.map +1 -0
- package/users-list/src/utils/pagination/pagination.component.html +26 -0
- package/users-list/src/utils/pagination/pagination.component.scss +41 -0
- package/users-list/src/utils/pagination/pagination.component.ts +41 -0
- package/users-list/src/utils/utils.service.ts +71 -0
- package/esm2020/lib/widgets.component.mjs +0 -22
- package/esm2020/lib/widgets.module.mjs +0 -21
- package/esm2020/lib/widgets.service.mjs +0 -14
- package/esm2020/public-api.mjs +0 -7
- package/esm2020/tuki-io-tuki-widgets.mjs +0 -5
- package/esm2020/user-manage/public-api.mjs +0 -7
- package/esm2020/user-manage/src/app.constants.mjs +0 -38
- package/esm2020/user-manage/src/classes/device.mjs +0 -7
- package/esm2020/user-manage/src/classes/line.mjs +0 -9
- package/esm2020/user-manage/src/classes/notification.mjs +0 -32
- package/esm2020/user-manage/src/classes/pagination.mjs +0 -8
- package/esm2020/user-manage/src/classes/simplified-user.mjs +0 -82
- package/esm2020/user-manage/src/classes/table-data.mjs +0 -2
- package/esm2020/user-manage/src/classes/user-list.mjs +0 -10
- package/esm2020/user-manage/src/common-functions.mjs +0 -19
- package/esm2020/user-manage/src/environments/environment.mjs +0 -11
- package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +0 -37
- package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +0 -74
- package/esm2020/user-manage/src/material.module.mjs +0 -188
- package/esm2020/user-manage/src/notifications/notification.component.mjs +0 -35
- package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +0 -25
- package/esm2020/user-manage/src/services/api.service.mjs +0 -79
- package/esm2020/user-manage/src/services/notification.service.mjs +0 -62
- package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +0 -25
- package/esm2020/user-manage/src/services/site-settings.service.mjs +0 -36
- package/esm2020/user-manage/src/services/user.service.mjs +0 -108
- package/esm2020/user-manage/src/services/users-search.service.mjs +0 -49
- package/esm2020/user-manage/src/services/utils.service.mjs +0 -73
- package/esm2020/user-manage/src/user-info/user-info.component.mjs +0 -20
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +0 -159
- package/esm2020/user-manage/src/user-manage.module.mjs +0 -84
- package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +0 -14
- package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +0 -43
- package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +0 -5
- package/esm2020/users-list/public-api.mjs +0 -9
- package/esm2020/users-list/src/app.constants.mjs +0 -35
- package/esm2020/users-list/src/classes/device.mjs +0 -7
- package/esm2020/users-list/src/classes/line.mjs +0 -9
- package/esm2020/users-list/src/classes/notification.mjs +0 -31
- package/esm2020/users-list/src/classes/pagination.mjs +0 -8
- package/esm2020/users-list/src/classes/simlified-user.mjs +0 -50
- package/esm2020/users-list/src/classes/table-data.mjs +0 -2
- package/esm2020/users-list/src/classes/user-list.mjs +0 -10
- package/esm2020/users-list/src/material.module.mjs +0 -188
- package/esm2020/users-list/src/services/api.service.mjs +0 -78
- package/esm2020/users-list/src/services/events-communication.service.mjs +0 -14
- package/esm2020/users-list/src/services/notification.service.mjs +0 -62
- package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +0 -25
- package/esm2020/users-list/src/services/user.service.mjs +0 -105
- package/esm2020/users-list/src/services/users-search.service.mjs +0 -49
- package/esm2020/users-list/src/users-list.component.mjs +0 -75
- package/esm2020/users-list/src/users-list.module.mjs +0 -58
- package/esm2020/users-list/src/utils/common-functions.mjs +0 -19
- package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +0 -43
- package/esm2020/users-list/src/utils/utils.service.mjs +0 -73
- package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +0 -5
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +0 -1232
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +0 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +0 -869
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +0 -1
- package/fesm2015/tuki-io-tuki-widgets.mjs +0 -63
- package/fesm2015/tuki-io-tuki-widgets.mjs.map +0 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +0 -1219
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +0 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +0 -866
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +0 -1
- package/fesm2020/tuki-io-tuki-widgets.mjs +0 -63
- package/fesm2020/tuki-io-tuki-widgets.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/widgets.component.d.ts +0 -8
- package/lib/widgets.module.d.ts +0 -7
- package/lib/widgets.service.d.ts +0 -6
- package/user-manage/index.d.ts +0 -5
- package/user-manage/src/app.constants.d.ts +0 -20
- package/user-manage/src/classes/device.d.ts +0 -224
- package/user-manage/src/classes/line.d.ts +0 -116
- package/user-manage/src/classes/notification.d.ts +0 -18
- package/user-manage/src/classes/pagination.d.ts +0 -13
- package/user-manage/src/classes/simplified-user.d.ts +0 -41
- package/user-manage/src/classes/table-data.d.ts +0 -5
- package/user-manage/src/classes/user-list.d.ts +0 -32
- package/user-manage/src/common-functions.d.ts +0 -1
- package/user-manage/src/environments/environment.d.ts +0 -9
- package/user-manage/src/interseptors/auth.interceptor.d.ts +0 -9
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +0 -35
- package/user-manage/src/material.module.d.ts +0 -28
- package/user-manage/src/notifications/notification.component.d.ts +0 -19
- package/user-manage/src/removeKynFromIBM.service.d.ts +0 -8
- package/user-manage/src/services/api.service.d.ts +0 -20
- package/user-manage/src/services/notification.service.d.ts +0 -18
- package/user-manage/src/services/removeKynFromIBM.service.d.ts +0 -8
- package/user-manage/src/services/site-settings.service.d.ts +0 -9
- package/user-manage/src/services/user.service.d.ts +0 -26
- package/user-manage/src/services/users-search.service.d.ts +0 -25
- package/user-manage/src/services/utils.service.d.ts +0 -9
- package/user-manage/src/user-info/user-info.component.d.ts +0 -9
- package/user-manage/src/user-manage-widget.component.d.ts +0 -31
- package/user-manage/src/user-manage.module.d.ts +0 -18
- package/user-manage/src/utils/app-loader/app-loader.d.ts +0 -6
- package/user-manage/src/utils/pagination/pagination.component.d.ts +0 -18
- package/users-list/index.d.ts +0 -5
- package/users-list/src/app.constants.d.ts +0 -17
- package/users-list/src/classes/device.d.ts +0 -224
- package/users-list/src/classes/line.d.ts +0 -116
- package/users-list/src/classes/notification.d.ts +0 -18
- package/users-list/src/classes/pagination.d.ts +0 -13
- package/users-list/src/classes/simlified-user.d.ts +0 -25
- package/users-list/src/classes/table-data.d.ts +0 -5
- package/users-list/src/classes/user-list.d.ts +0 -32
- package/users-list/src/material.module.d.ts +0 -28
- package/users-list/src/services/api.service.d.ts +0 -20
- package/users-list/src/services/events-communication.service.d.ts +0 -8
- package/users-list/src/services/notification.service.d.ts +0 -18
- package/users-list/src/services/removeKynFromIBM.service.d.ts +0 -8
- package/users-list/src/services/user.service.d.ts +0 -26
- package/users-list/src/services/users-search.service.d.ts +0 -25
- package/users-list/src/users-list.component.d.ts +0 -34
- package/users-list/src/users-list.module.d.ts +0 -12
- package/users-list/src/utils/common-functions.d.ts +0 -1
- package/users-list/src/utils/pagination/pagination.component.d.ts +0 -18
- package/users-list/src/utils/utils.service.d.ts +0 -9
- /package/user-manage/{public-api.d.ts → public-api.ts} +0 -0
- /package/users-list/{public-api.d.ts → public-api.ts} +0 -0
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
import { EntityChangeType } from './line';
|
|
2
|
-
export interface DeviceInterface {
|
|
3
|
-
name: string;
|
|
4
|
-
newName: string;
|
|
5
|
-
pkid: string;
|
|
6
|
-
entityChangeType: EntityChangeType;
|
|
7
|
-
deviceType: string;
|
|
8
|
-
protocol: string;
|
|
9
|
-
description: string;
|
|
10
|
-
buttonTemplate: string;
|
|
11
|
-
softkeyTemplate: string;
|
|
12
|
-
devicePoolName: string;
|
|
13
|
-
location: string;
|
|
14
|
-
userLocale: string;
|
|
15
|
-
enabledExtensionMobility: boolean;
|
|
16
|
-
callingSearchSpaceName: string;
|
|
17
|
-
services: string[];
|
|
18
|
-
networkLocale: string;
|
|
19
|
-
securityProfile: string;
|
|
20
|
-
lineAssociations: LineAssociationInterface[];
|
|
21
|
-
speedDials: SpeedDialInterface[];
|
|
22
|
-
sipProfile: string;
|
|
23
|
-
subscribeCallingSearchSpaceName: string;
|
|
24
|
-
commonPhoneConfigName: string;
|
|
25
|
-
ctiRemoteDevice: boolean;
|
|
26
|
-
firstExpansionModule: string;
|
|
27
|
-
secondExpansionModule: string;
|
|
28
|
-
thirdExpansionModule: string;
|
|
29
|
-
builtInBridge: string;
|
|
30
|
-
extraOptions?: DeviceExtraOptionsInterface;
|
|
31
|
-
formDisabledControls?: string[];
|
|
32
|
-
sharedUsers: string[];
|
|
33
|
-
busyLampFields: BusyLampFieldsInterface[];
|
|
34
|
-
meetMeEnabled: boolean;
|
|
35
|
-
deviceKind?: any;
|
|
36
|
-
isCtiRoutePoint?: boolean;
|
|
37
|
-
cucmId: string;
|
|
38
|
-
plarDevice?: boolean;
|
|
39
|
-
firmwareVersion?: any;
|
|
40
|
-
certificateOperation: string;
|
|
41
|
-
authenticationMode: string;
|
|
42
|
-
authenticationString?: string;
|
|
43
|
-
rsaKeySize?: string;
|
|
44
|
-
operationCompletesBy: string;
|
|
45
|
-
certificateStatus: string;
|
|
46
|
-
day?: string;
|
|
47
|
-
month?: string;
|
|
48
|
-
year?: string;
|
|
49
|
-
hour?: string;
|
|
50
|
-
securityProfileUuid?: string;
|
|
51
|
-
excludeDeviceExtraOptions?: boolean;
|
|
52
|
-
webexUUID?: string;
|
|
53
|
-
}
|
|
54
|
-
export interface LineAssociationInterface {
|
|
55
|
-
index: number;
|
|
56
|
-
position?: number;
|
|
57
|
-
e164Mask: string;
|
|
58
|
-
textLabel: string;
|
|
59
|
-
displayLabel: string;
|
|
60
|
-
displayLabelAscii: string;
|
|
61
|
-
directoryNumber: LineDirectoryInterface;
|
|
62
|
-
didPattern: TranslationPatternInterface;
|
|
63
|
-
mappedDids: Array<string>;
|
|
64
|
-
linePkid: string;
|
|
65
|
-
maxNumberOfCalls: number;
|
|
66
|
-
busyTrigger: number;
|
|
67
|
-
recordingOption: RecordingOptions;
|
|
68
|
-
recordingProfile: string;
|
|
69
|
-
recordingMediaSource: string;
|
|
70
|
-
visualMWI: string;
|
|
71
|
-
audibleMWI: string;
|
|
72
|
-
ringSetting_idle: string;
|
|
73
|
-
ringSetting_active: string;
|
|
74
|
-
pickupAAS_idle: string;
|
|
75
|
-
pickupAAS_active: string;
|
|
76
|
-
monitorCSS: string;
|
|
77
|
-
logMissedCall: string;
|
|
78
|
-
callInfoDisplay: LineCallInfoDisplayInterface;
|
|
79
|
-
lineLocalId: string;
|
|
80
|
-
sharedUsers: string[];
|
|
81
|
-
sharedDevices: string[];
|
|
82
|
-
ownerUserId: Array<string>;
|
|
83
|
-
associated: boolean;
|
|
84
|
-
populateWithDid: boolean;
|
|
85
|
-
}
|
|
86
|
-
export interface SpeedDialInterface {
|
|
87
|
-
index: number;
|
|
88
|
-
position: number;
|
|
89
|
-
destination: string;
|
|
90
|
-
label: string;
|
|
91
|
-
editMode?: boolean;
|
|
92
|
-
}
|
|
93
|
-
export interface LineDirectoryInterface {
|
|
94
|
-
directoryNumber: string;
|
|
95
|
-
routePartitionName: string;
|
|
96
|
-
pkid: string;
|
|
97
|
-
dnType: string;
|
|
98
|
-
subType?: string;
|
|
99
|
-
templateDirectoryNumber?: string;
|
|
100
|
-
}
|
|
101
|
-
export interface TranslationPatternInterface {
|
|
102
|
-
pattern: string;
|
|
103
|
-
calledPartyTransformationMask: string;
|
|
104
|
-
description?: string;
|
|
105
|
-
site?: SiteShortDataInterface;
|
|
106
|
-
hasMultipleSites?: boolean;
|
|
107
|
-
multipleSitesId?: string;
|
|
108
|
-
}
|
|
109
|
-
export declare enum RecordingOptions {
|
|
110
|
-
disabled = "Call Recording Disabled",
|
|
111
|
-
auto_enabled = "Automatic Call Recording Enabled",
|
|
112
|
-
selective_enabled = "Selective Call Recording Enabled"
|
|
113
|
-
}
|
|
114
|
-
export interface LineCallInfoDisplayInterface {
|
|
115
|
-
callerName: string;
|
|
116
|
-
callerNumber: string;
|
|
117
|
-
redirectedNumber: string;
|
|
118
|
-
dialedNumber: string;
|
|
119
|
-
}
|
|
120
|
-
export interface SiteShortDataInterface {
|
|
121
|
-
id: number;
|
|
122
|
-
name: string;
|
|
123
|
-
}
|
|
124
|
-
export interface DeviceExtraOptionsInterface {
|
|
125
|
-
mediaResourceGroupList: string;
|
|
126
|
-
userHoldMOHAudioSourceId: number;
|
|
127
|
-
userHoldMOHAudioSourceName: string;
|
|
128
|
-
networkMOHAudioSourceId: number;
|
|
129
|
-
networkMOHAudioSourceName: string;
|
|
130
|
-
aarCss: string;
|
|
131
|
-
aarGroup: string;
|
|
132
|
-
privacy: string;
|
|
133
|
-
deviceMobilityMode: string;
|
|
134
|
-
mobilityUserId: string;
|
|
135
|
-
phonePersonalization: string;
|
|
136
|
-
servicesProvisioning: string;
|
|
137
|
-
phoneLoadName: string;
|
|
138
|
-
phoneIdleBLFAlertSetting: string;
|
|
139
|
-
phoneBusyBLFAlertSetting: string;
|
|
140
|
-
useTrustedRelayPoint: string;
|
|
141
|
-
alwaysUsePrimeLine: string;
|
|
142
|
-
alwaysUsePrimeLineForVoiceMessage: string;
|
|
143
|
-
geolocation: string;
|
|
144
|
-
emergencyLocation: string;
|
|
145
|
-
ignorePresentationIndicators: boolean;
|
|
146
|
-
loggedIntoHuntGroup: boolean;
|
|
147
|
-
enabledExtensionMobility: boolean;
|
|
148
|
-
remoteDevice: boolean;
|
|
149
|
-
protectedDevice: boolean;
|
|
150
|
-
hotlineDevice: boolean;
|
|
151
|
-
useDevicePoolCgpnIngressDN: boolean;
|
|
152
|
-
cgpnIngressDN: string;
|
|
153
|
-
useDevicePoolCgpnTransformCss: boolean;
|
|
154
|
-
cgpnTransformationCss: string;
|
|
155
|
-
packetCaptureMode: string;
|
|
156
|
-
packetCaptureDuration: number;
|
|
157
|
-
blfPresenceGroup: string;
|
|
158
|
-
sipDialRules: string;
|
|
159
|
-
mtpPreferredOriginatingCodec: string;
|
|
160
|
-
rerouteCss: string;
|
|
161
|
-
subscribeCss: string;
|
|
162
|
-
mtpRequired: boolean;
|
|
163
|
-
unattendedPort: boolean;
|
|
164
|
-
requireDtmfReception: boolean;
|
|
165
|
-
informationUrl: string;
|
|
166
|
-
directoryUrl: string;
|
|
167
|
-
messagesUrl: string;
|
|
168
|
-
servicesUrl: string;
|
|
169
|
-
authenticationUrl: string;
|
|
170
|
-
proxyServerUrl: string;
|
|
171
|
-
idleUrl: string;
|
|
172
|
-
idleTimeout: string;
|
|
173
|
-
secureAuthenticationUrl: string;
|
|
174
|
-
secureDirectoryUrl: string;
|
|
175
|
-
secureIdleUrl: string;
|
|
176
|
-
secureInformationUrl: string;
|
|
177
|
-
secureMessageUrl: string;
|
|
178
|
-
secureServicesUrl: string;
|
|
179
|
-
mlppDomain: string;
|
|
180
|
-
mlppIndication: string;
|
|
181
|
-
mlppPreemption: string;
|
|
182
|
-
confidentialAccessMode: string;
|
|
183
|
-
confidentialAccessLevel: string;
|
|
184
|
-
confidentialAccessLevelName: string;
|
|
185
|
-
doNotDisturb: boolean;
|
|
186
|
-
dndOption: string;
|
|
187
|
-
dndIncomingCallAlert: string;
|
|
188
|
-
disableSpeakerphone: boolean;
|
|
189
|
-
disableSpeakerphoneAndHeadset: boolean;
|
|
190
|
-
forwardingDelay: boolean;
|
|
191
|
-
pcPort: boolean;
|
|
192
|
-
settingsAccess: string;
|
|
193
|
-
gratuitousARP: boolean;
|
|
194
|
-
pcVoiceVlanAccess: boolean;
|
|
195
|
-
videoCapabilities: boolean;
|
|
196
|
-
webAccess: boolean;
|
|
197
|
-
daysDisplayNotActive: string[];
|
|
198
|
-
displayOnTime: string;
|
|
199
|
-
displayOnDuration: string;
|
|
200
|
-
displayIdleTimeout: string;
|
|
201
|
-
wirelessHeadsetHookswitchControl: boolean;
|
|
202
|
-
minRingVolume: string;
|
|
203
|
-
showAllCallsOnPL: boolean;
|
|
204
|
-
lineMode: string;
|
|
205
|
-
latentCapabilityRegistration: string;
|
|
206
|
-
analogGatewayPortInformation: AnalogGatewayPortInformationInterFace;
|
|
207
|
-
}
|
|
208
|
-
export interface AnalogGatewayPortInformationInterFace {
|
|
209
|
-
portDirection: string;
|
|
210
|
-
prefixDn: string;
|
|
211
|
-
numDigits: number;
|
|
212
|
-
expectedDigits: number;
|
|
213
|
-
smdiPortNumber: number;
|
|
214
|
-
trunk: string;
|
|
215
|
-
unattendedPort: string;
|
|
216
|
-
}
|
|
217
|
-
export interface BusyLampFieldsInterface {
|
|
218
|
-
index: number;
|
|
219
|
-
position: number;
|
|
220
|
-
destination: string;
|
|
221
|
-
dnWithRoutePartition: string;
|
|
222
|
-
label: string;
|
|
223
|
-
callPickup: boolean;
|
|
224
|
-
}
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
export interface LineInterface {
|
|
2
|
-
description: string;
|
|
3
|
-
pkid: string;
|
|
4
|
-
entityChangeType: EntityChangeType;
|
|
5
|
-
alertingName: string;
|
|
6
|
-
asciiAlertingName: string;
|
|
7
|
-
callingSearchSpace: string;
|
|
8
|
-
voiceMailProfile: string;
|
|
9
|
-
noAnswerRingDuration: number;
|
|
10
|
-
autoAnswer: string;
|
|
11
|
-
directoryNumber: LineDirectoryInterface;
|
|
12
|
-
didPatterns: Array<TranslationPatternInterface>;
|
|
13
|
-
mappedDids: Array<string>;
|
|
14
|
-
aarSettings: LineAarInterface;
|
|
15
|
-
callForwardAll: CallInterface;
|
|
16
|
-
callForwardAllSecondaryCSS: CallInterface;
|
|
17
|
-
callForwardBusyInternal: CallInterface;
|
|
18
|
-
callForwardBusyExternal: CallInterface;
|
|
19
|
-
callForwardNoAnswerInternal: CallInterface;
|
|
20
|
-
callForwardNoAnswerExternal: CallInterface;
|
|
21
|
-
callForwardNoCoverageInternal: CallInterface;
|
|
22
|
-
callForwardNoCoverageExternal: CallInterface;
|
|
23
|
-
callForwardOnCTIFailure: CallInterface;
|
|
24
|
-
callForwardUnregisteredInternal: CallInterface;
|
|
25
|
-
callForwardUnregisteredExternal: CallInterface;
|
|
26
|
-
parkMonitoringExternal: LineParkMonitoringInterface;
|
|
27
|
-
parkMonitoringInternal: LineParkMonitoringInterface;
|
|
28
|
-
callPickupGroup: string;
|
|
29
|
-
localId: string;
|
|
30
|
-
urgentPriority: boolean;
|
|
31
|
-
blfPresenceGroup: string;
|
|
32
|
-
userHoldMOHAudioSourceId: string;
|
|
33
|
-
userHoldMOHAudioSourceName: string;
|
|
34
|
-
networkMOHAudioSourceId: string;
|
|
35
|
-
networkMOHAudioSourceName: string;
|
|
36
|
-
rejectAnonymousCall: boolean;
|
|
37
|
-
enterpriseAltNum: AlternateNumberInterface;
|
|
38
|
-
e164AltNum: AlternateNumberInterface;
|
|
39
|
-
directoryUris: Array<DirectoryUriInterface>;
|
|
40
|
-
callForwardAlternateParty: ParkMonitoringInterface;
|
|
41
|
-
mlppNoAnswerRingDuration: number;
|
|
42
|
-
confidentialAccessMode: string;
|
|
43
|
-
confidentialAccessLevel: string;
|
|
44
|
-
confidentialAccessLevelName: string;
|
|
45
|
-
callControlAgentProfile: string;
|
|
46
|
-
holdReversionRingDuration: number;
|
|
47
|
-
holdReversionNotificationInterval: number;
|
|
48
|
-
partyEntranceTone: string;
|
|
49
|
-
pstnFailover: string;
|
|
50
|
-
isExistingLine?: boolean;
|
|
51
|
-
plarDestinationNumber: string;
|
|
52
|
-
prefixDigits: string;
|
|
53
|
-
plarDescription: string;
|
|
54
|
-
plarEnabled: boolean;
|
|
55
|
-
}
|
|
56
|
-
export declare enum EntityChangeType {
|
|
57
|
-
added = "added",
|
|
58
|
-
updated = "updated",
|
|
59
|
-
existing = "existing",
|
|
60
|
-
removed = "removed",
|
|
61
|
-
unassociated = "unassociated"
|
|
62
|
-
}
|
|
63
|
-
export interface LineDirectoryInterface {
|
|
64
|
-
directoryNumber: string;
|
|
65
|
-
routePartitionName: string;
|
|
66
|
-
pkid: string;
|
|
67
|
-
dnType: string;
|
|
68
|
-
subType?: string;
|
|
69
|
-
templateDirectoryNumber?: string;
|
|
70
|
-
}
|
|
71
|
-
export interface TranslationPatternInterface {
|
|
72
|
-
pattern: string;
|
|
73
|
-
calledPartyTransformationMask: string;
|
|
74
|
-
description?: string;
|
|
75
|
-
site?: SiteShortDataInterface;
|
|
76
|
-
hasMultipleSites?: boolean;
|
|
77
|
-
multipleSitesId?: string;
|
|
78
|
-
}
|
|
79
|
-
export interface SiteShortDataInterface {
|
|
80
|
-
id: number;
|
|
81
|
-
name: string;
|
|
82
|
-
}
|
|
83
|
-
export interface LineAarInterface {
|
|
84
|
-
aarDestinationMask: string;
|
|
85
|
-
aarGroup: string;
|
|
86
|
-
aarVoiceMailEnabled: boolean;
|
|
87
|
-
aarKeepCallHistory: boolean;
|
|
88
|
-
}
|
|
89
|
-
export interface CallInterface {
|
|
90
|
-
forwardToVoiceMail: boolean;
|
|
91
|
-
destination: string;
|
|
92
|
-
callingSearchSpace: string;
|
|
93
|
-
}
|
|
94
|
-
export interface LineParkMonitoringInterface {
|
|
95
|
-
voiceMail: boolean;
|
|
96
|
-
destination: string;
|
|
97
|
-
callingSearchSpace: string;
|
|
98
|
-
}
|
|
99
|
-
export interface AlternateNumberInterface {
|
|
100
|
-
numberMask: string;
|
|
101
|
-
addLocalRoutePartition: boolean;
|
|
102
|
-
routePartition: string;
|
|
103
|
-
isUrgent: boolean;
|
|
104
|
-
advertiseGloballyIls: boolean;
|
|
105
|
-
}
|
|
106
|
-
export interface DirectoryUriInterface {
|
|
107
|
-
primary: boolean;
|
|
108
|
-
uri: string;
|
|
109
|
-
routePartition: string;
|
|
110
|
-
advertiseGloballyIls: boolean;
|
|
111
|
-
}
|
|
112
|
-
export interface ParkMonitoringInterface {
|
|
113
|
-
destination: string;
|
|
114
|
-
callingSearchSpace: string;
|
|
115
|
-
voiceMail: boolean;
|
|
116
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
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
|
-
constructor(user?: ListUser);
|
|
17
|
-
}
|
|
18
|
-
export interface ListUserInterface {
|
|
19
|
-
userid: string;
|
|
20
|
-
firstName?: string;
|
|
21
|
-
lastName?: string;
|
|
22
|
-
email?: string;
|
|
23
|
-
telephoneNumber?: string;
|
|
24
|
-
viewMode?: any;
|
|
25
|
-
devices: DeviceInterface[];
|
|
26
|
-
deviceProfiles: DeviceInterface[];
|
|
27
|
-
lines?: LineInterface[];
|
|
28
|
-
siteId?: number;
|
|
29
|
-
siteName?: string;
|
|
30
|
-
webexUUID?: string;
|
|
31
|
-
cucmId?: number;
|
|
32
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
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
|
-
export declare class MaterialModule {
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
|
|
26
|
-
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 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]>;
|
|
27
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
|
|
28
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
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
|
-
token: any;
|
|
8
|
-
constructor(httpClient: HttpClient);
|
|
9
|
-
fetch(url: string, params?: {}, cache?: boolean): Observable<Object>;
|
|
10
|
-
post(url: string, body: any, params?: {}): any;
|
|
11
|
-
postExtended(url: string, body?: null, params?: {}, headers?: {}): Observable<import("@angular/common/http").HttpResponse<Object>>;
|
|
12
|
-
put(url: string, body?: null, params?: {}): Observable<Object>;
|
|
13
|
-
delete(url: string, params?: {}): Observable<Object>;
|
|
14
|
-
fetchPagination(url: string, pageSize: number, pageNumber: number, additionalParams?: {}, cache?: boolean): Observable<TableDataInterface>;
|
|
15
|
-
private prepareEncodedParams;
|
|
16
|
-
private getHeaders;
|
|
17
|
-
private getParameterByName;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<APIService, never>;
|
|
19
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<APIService>;
|
|
20
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { SimplifiedUser } from '../classes/simlified-user';
|
|
4
|
-
import { APIService } from './api.service';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class UserService implements OnInit {
|
|
7
|
-
private apiService;
|
|
8
|
-
siteId: number;
|
|
9
|
-
userId: string;
|
|
10
|
-
userIdExistPending: boolean;
|
|
11
|
-
hasExistedUserId: boolean;
|
|
12
|
-
user: SimplifiedUser;
|
|
13
|
-
originUser: SimplifiedUser;
|
|
14
|
-
constructor(apiService: APIService);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
fetchUserToken(siteId: number, userId: string): any;
|
|
17
|
-
updateUserFields(body: any): any;
|
|
18
|
-
fetchUserById(id: string): Observable<Object>;
|
|
19
|
-
persistCacheChanges(): any;
|
|
20
|
-
processUserChangesToCache(): any;
|
|
21
|
-
hasUnsavedChanges(): boolean;
|
|
22
|
-
setSimplifiedUser(user: any): void;
|
|
23
|
-
private handleSaveUserResponse;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
25
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
26
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { APIService } from './api.service';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { RemoveKynFromIBMService } from './removeKynFromIBM.service';
|
|
4
|
-
import { PaginationDataDto } from '../classes/pagination';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class UsersSearchService {
|
|
7
|
-
private apiService;
|
|
8
|
-
private removeKynFromIBMService;
|
|
9
|
-
siteId: number;
|
|
10
|
-
userId: string;
|
|
11
|
-
customerId: number;
|
|
12
|
-
userIdExistPending: boolean;
|
|
13
|
-
hasExistedUserId: boolean;
|
|
14
|
-
pageSize: number;
|
|
15
|
-
pageIndex: number;
|
|
16
|
-
pageSizeOptions: number[];
|
|
17
|
-
total: number;
|
|
18
|
-
searchParams: any;
|
|
19
|
-
foundUsers$: any;
|
|
20
|
-
constructor(apiService: APIService, removeKynFromIBMService: RemoveKynFromIBMService);
|
|
21
|
-
getPagination(): PaginationDataDto;
|
|
22
|
-
quickRegularUsersSearch(): Observable<void>;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UsersSearchService, never>;
|
|
24
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<UsersSearchService>;
|
|
25
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, 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 * as i0 from "@angular/core";
|
|
11
|
-
export declare class UsersListComponent implements OnInit {
|
|
12
|
-
userService: UserService;
|
|
13
|
-
private apiService;
|
|
14
|
-
private notifications;
|
|
15
|
-
usersSearchService: UsersSearchService;
|
|
16
|
-
token: string;
|
|
17
|
-
customerId: number;
|
|
18
|
-
openUser: EventEmitter<any>;
|
|
19
|
-
dataPending: boolean;
|
|
20
|
-
users: ListUser[];
|
|
21
|
-
dataSource: MatTableDataSource<ListUser>;
|
|
22
|
-
displayedColumns: string[];
|
|
23
|
-
private searchSubscription;
|
|
24
|
-
get form(): FormGroup;
|
|
25
|
-
constructor(userService: UserService, apiService: APIService, notifications: NotificationService, usersSearchService: UsersSearchService);
|
|
26
|
-
ngOnInit(): void;
|
|
27
|
-
pageNumberChangeEvent(perPageNumber: number): void;
|
|
28
|
-
pageEvent(event: PageEvent): void;
|
|
29
|
-
onUserClick(user: ListUser): void;
|
|
30
|
-
private initializeDataSource;
|
|
31
|
-
private runSearch;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UsersListComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UsersListComponent, "app-users-list", never, { "token": "token"; "customerId": "customerId"; }, { "openUser": "openUser"; }, never, never, false, never>;
|
|
34
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
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 "@angular/platform-browser";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "@angular/common/http";
|
|
7
|
-
import * as i6 from "./material.module";
|
|
8
|
-
export declare class UsersListModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UsersListModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UsersListModule, [typeof i1.UsersListComponent, typeof i2.PaginationComponent], [typeof i3.BrowserModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.HttpClientModule, typeof i6.MaterialModule], [typeof i1.UsersListComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<UsersListModule>;
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const getSavableData: (model: any, exclude?: Array<string>) => {};
|
|
@@ -1,18 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
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
|
-
}
|
|
File without changes
|
|
File without changes
|