@tuki-io/tuki-widgets 0.0.30 → 0.0.32
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 -24
- package/esm2020/lib/widgets.component.mjs +22 -22
- package/esm2020/lib/widgets.module.mjs +21 -21
- package/esm2020/lib/widgets.service.mjs +14 -14
- package/esm2020/public-api.mjs +7 -7
- package/esm2020/tuki-io-tuki-widgets.mjs +4 -4
- package/esm2020/user-device-manage/public-api.mjs +9 -9
- package/esm2020/user-device-manage/src/app.constants.mjs +95 -95
- package/esm2020/user-device-manage/src/classes/device.mjs +85 -85
- package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +2 -2
- package/esm2020/user-device-manage/src/classes/line-association.mjs +121 -121
- package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +10 -10
- package/esm2020/user-device-manage/src/classes/line-directory.mjs +27 -27
- package/esm2020/user-device-manage/src/classes/line.mjs +18 -18
- package/esm2020/user-device-manage/src/classes/notification.mjs +32 -32
- package/esm2020/user-device-manage/src/classes/recording-options.mjs +7 -7
- package/esm2020/user-device-manage/src/classes/simplified-user.mjs +111 -111
- package/esm2020/user-device-manage/src/classes/site-defaults.mjs +21 -21
- package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +32 -32
- package/esm2020/user-device-manage/src/classes/types.mjs +24 -24
- package/esm2020/user-device-manage/src/common-functions.mjs +19 -19
- package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +34 -34
- package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +31 -31
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +16 -16
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +64 -64
- package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +179 -179
- package/esm2020/user-device-manage/src/device-list/device-list.component.mjs +24 -24
- package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +335 -335
- package/esm2020/user-device-manage/src/environments/environment.mjs +11 -11
- package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +36 -36
- package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -74
- package/esm2020/user-device-manage/src/material.module.mjs +192 -192
- package/esm2020/user-device-manage/src/notifications/notification.component.mjs +35 -35
- package/esm2020/user-device-manage/src/services/api.service.mjs +79 -79
- package/esm2020/user-device-manage/src/services/device.service.mjs +83 -83
- package/esm2020/user-device-manage/src/services/dns.service.mjs +104 -104
- package/esm2020/user-device-manage/src/services/line.service.mjs +76 -76
- package/esm2020/user-device-manage/src/services/notification.service.mjs +62 -62
- package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +25 -25
- package/esm2020/user-device-manage/src/services/site-settings.service.mjs +70 -70
- package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +197 -197
- package/esm2020/user-device-manage/src/services/user.service.mjs +243 -243
- package/esm2020/user-device-manage/src/services/utils.service.mjs +87 -87
- package/esm2020/user-device-manage/src/services/validation.service.mjs +760 -760
- package/esm2020/user-device-manage/src/user-device-manage.module.mjs +107 -107
- package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +14 -14
- package/esm2020/user-device-manage/tuki-io-tuki-widgets-user-device-manage.mjs +4 -4
- package/esm2020/user-manage/public-api.mjs +7 -7
- package/esm2020/user-manage/src/app.constants.mjs +50 -50
- package/esm2020/user-manage/src/classes/device.mjs +37 -37
- package/esm2020/user-manage/src/classes/line-association-interface.mjs +2 -2
- package/esm2020/user-manage/src/classes/line-association.mjs +110 -110
- package/esm2020/user-manage/src/classes/line-call-info-display.mjs +10 -10
- package/esm2020/user-manage/src/classes/line-directory.mjs +27 -27
- package/esm2020/user-manage/src/classes/line.mjs +18 -18
- package/esm2020/user-manage/src/classes/notification.mjs +32 -32
- package/esm2020/user-manage/src/classes/pagination.mjs +8 -8
- package/esm2020/user-manage/src/classes/recording-options.mjs +7 -7
- package/esm2020/user-manage/src/classes/simplified-user.mjs +109 -109
- package/esm2020/user-manage/src/classes/table-data.mjs +2 -2
- package/esm2020/user-manage/src/classes/translation-pattern.mjs +32 -32
- package/esm2020/user-manage/src/classes/user-list.mjs +10 -10
- package/esm2020/user-manage/src/common-functions.mjs +19 -19
- package/esm2020/user-manage/src/device-list/device-list.component.mjs +24 -24
- package/esm2020/user-manage/src/environments/environment.mjs +11 -11
- package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +36 -36
- package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -74
- package/esm2020/user-manage/src/material.module.mjs +188 -188
- package/esm2020/user-manage/src/notifications/notification.component.mjs +35 -35
- package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +25 -25
- package/esm2020/user-manage/src/services/api.service.mjs +79 -79
- package/esm2020/user-manage/src/services/dns.service.mjs +110 -110
- package/esm2020/user-manage/src/services/line.service.mjs +34 -34
- package/esm2020/user-manage/src/services/notification.service.mjs +62 -62
- package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +25 -25
- package/esm2020/user-manage/src/services/site-settings.service.mjs +36 -36
- package/esm2020/user-manage/src/services/sorting-utils.service.mjs +197 -197
- package/esm2020/user-manage/src/services/user.service.mjs +207 -207
- package/esm2020/user-manage/src/services/users-search.service.mjs +49 -49
- package/esm2020/user-manage/src/services/utils.service.mjs +73 -73
- package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +65 -65
- package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +78 -78
- package/esm2020/user-manage/src/user-info/user-info.component.mjs +20 -20
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +208 -208
- package/esm2020/user-manage/src/user-manage.module.mjs +99 -99
- package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +14 -14
- package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +43 -43
- package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +4 -4
- package/esm2020/users-list/public-api.mjs +9 -9
- package/esm2020/users-list/src/app.constants.mjs +50 -50
- package/esm2020/users-list/src/classes/device.mjs +7 -7
- package/esm2020/users-list/src/classes/line.mjs +18 -18
- package/esm2020/users-list/src/classes/notification.mjs +31 -31
- package/esm2020/users-list/src/classes/pagination.mjs +8 -8
- package/esm2020/users-list/src/classes/simlified-user.mjs +50 -50
- package/esm2020/users-list/src/classes/table-data.mjs +2 -2
- package/esm2020/users-list/src/classes/user-list.mjs +13 -13
- package/esm2020/users-list/src/material.module.mjs +209 -209
- package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +95 -95
- package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +35 -35
- package/esm2020/users-list/src/services/api-webex.service.mjs +17 -17
- package/esm2020/users-list/src/services/api.service.mjs +78 -78
- package/esm2020/users-list/src/services/dns.service.mjs +120 -120
- package/esm2020/users-list/src/services/events-communication.service.mjs +14 -14
- package/esm2020/users-list/src/services/notification.service.mjs +62 -62
- package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +25 -25
- package/esm2020/users-list/src/services/user.service.mjs +150 -150
- package/esm2020/users-list/src/services/users-search.service.mjs +120 -120
- package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +34 -34
- package/esm2020/users-list/src/users-list.component.mjs +259 -259
- package/esm2020/users-list/src/users-list.module.mjs +80 -80
- package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +14 -14
- package/esm2020/users-list/src/utils/common-functions.mjs +19 -19
- package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +43 -43
- package/esm2020/users-list/src/utils/utils.service.mjs +73 -73
- package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +4 -4
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +3277 -3277
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +2004 -2004
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +1424 -1424
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets.mjs +48 -48
- package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +3239 -3239
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +1987 -1987
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +1413 -1413
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets.mjs +48 -48
- package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/lib/widgets.component.d.ts +8 -8
- package/lib/widgets.module.d.ts +7 -7
- package/lib/widgets.service.d.ts +6 -6
- package/package.json +1 -1
- package/public-api.d.ts +3 -3
- package/user-device-manage/index.d.ts +5 -5
- package/user-device-manage/public-api.d.ts +8 -8
- package/user-device-manage/src/app.constants.d.ts +74 -74
- package/user-device-manage/src/classes/device.d.ts +233 -233
- package/user-device-manage/src/classes/line-association-interface.d.ts +45 -45
- package/user-device-manage/src/classes/line-association.d.ts +62 -62
- package/user-device-manage/src/classes/line-call-info-display.d.ts +11 -11
- package/user-device-manage/src/classes/line-directory.d.ts +15 -15
- package/user-device-manage/src/classes/line.d.ts +140 -140
- package/user-device-manage/src/classes/notification.d.ts +18 -18
- package/user-device-manage/src/classes/recording-options.d.ts +5 -5
- package/user-device-manage/src/classes/simplified-user.d.ts +52 -52
- package/user-device-manage/src/classes/site-defaults.d.ts +146 -146
- package/user-device-manage/src/classes/translation-pattern.d.ts +19 -19
- package/user-device-manage/src/classes/types.d.ts +19 -19
- package/user-device-manage/src/common-functions.d.ts +1 -1
- package/user-device-manage/src/confirm-dialog/info-dialog.component.d.ts +20 -20
- package/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.d.ts +15 -15
- package/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.d.ts +7 -7
- package/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.d.ts +24 -24
- package/user-device-manage/src/device-associated-line/device-associated-line.component.d.ts +89 -89
- package/user-device-manage/src/device-list/device-list.component.d.ts +11 -11
- package/user-device-manage/src/device-manage-widget.component.d.ts +71 -71
- package/user-device-manage/src/environments/environment.d.ts +9 -9
- package/user-device-manage/src/interseptors/auth.interceptor.d.ts +9 -9
- package/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -35
- package/user-device-manage/src/material.module.d.ts +29 -29
- package/user-device-manage/src/notifications/notification.component.d.ts +19 -19
- package/user-device-manage/src/services/api.service.d.ts +20 -20
- package/user-device-manage/src/services/device.service.d.ts +21 -21
- package/user-device-manage/src/services/dns.service.d.ts +14 -14
- package/user-device-manage/src/services/line.service.d.ts +33 -33
- package/user-device-manage/src/services/notification.service.d.ts +18 -18
- package/user-device-manage/src/services/removeKynFromIBM.service.d.ts +8 -8
- package/user-device-manage/src/services/site-settings.service.d.ts +25 -25
- package/user-device-manage/src/services/sorting-utils.service.d.ts +26 -26
- package/user-device-manage/src/services/user.service.d.ts +51 -51
- package/user-device-manage/src/services/utils.service.d.ts +10 -10
- package/user-device-manage/src/services/validation.service.d.ts +165 -165
- package/user-device-manage/src/user-device-manage.module.d.ts +22 -22
- package/user-device-manage/src/utils/app-loader/app-loader.d.ts +6 -6
- package/user-manage/index.d.ts +5 -5
- package/user-manage/public-api.d.ts +6 -6
- package/user-manage/src/app.constants.d.ts +29 -29
- package/user-manage/src/classes/device.d.ts +203 -203
- package/user-manage/src/classes/line-association-interface.d.ts +40 -40
- package/user-manage/src/classes/line-association.d.ts +55 -55
- package/user-manage/src/classes/line-call-info-display.d.ts +11 -11
- package/user-manage/src/classes/line-directory.d.ts +16 -16
- package/user-manage/src/classes/line.d.ts +140 -140
- package/user-manage/src/classes/notification.d.ts +18 -18
- package/user-manage/src/classes/pagination.d.ts +13 -13
- package/user-manage/src/classes/recording-options.d.ts +5 -5
- package/user-manage/src/classes/simplified-user.d.ts +50 -50
- package/user-manage/src/classes/table-data.d.ts +5 -5
- package/user-manage/src/classes/translation-pattern.d.ts +18 -18
- package/user-manage/src/classes/user-list.d.ts +34 -34
- package/user-manage/src/common-functions.d.ts +1 -1
- package/user-manage/src/device-list/device-list.component.d.ts +11 -11
- package/user-manage/src/environments/environment.d.ts +9 -9
- package/user-manage/src/interseptors/auth.interceptor.d.ts +9 -9
- package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -35
- package/user-manage/src/material.module.d.ts +28 -28
- package/user-manage/src/notifications/notification.component.d.ts +19 -19
- package/user-manage/src/removeKynFromIBM.service.d.ts +8 -8
- package/user-manage/src/services/api.service.d.ts +21 -21
- package/user-manage/src/services/dns.service.d.ts +14 -14
- package/user-manage/src/services/line.service.d.ts +17 -17
- package/user-manage/src/services/notification.service.d.ts +18 -18
- package/user-manage/src/services/removeKynFromIBM.service.d.ts +8 -8
- package/user-manage/src/services/site-settings.service.d.ts +9 -9
- package/user-manage/src/services/sorting-utils.service.d.ts +26 -26
- package/user-manage/src/services/user.service.d.ts +43 -43
- package/user-manage/src/services/users-search.service.d.ts +25 -25
- package/user-manage/src/services/utils.service.d.ts +9 -9
- package/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.d.ts +24 -24
- package/user-manage/src/user-calling/user-calling.component.d.ts +30 -30
- package/user-manage/src/user-info/user-info.component.d.ts +9 -9
- package/user-manage/src/user-manage-widget.component.d.ts +45 -45
- package/user-manage/src/user-manage.module.d.ts +21 -21
- package/user-manage/src/utils/app-loader/app-loader.d.ts +6 -6
- package/user-manage/src/utils/pagination/pagination.component.d.ts +18 -18
- package/users-list/index.d.ts +5 -5
- package/users-list/public-api.d.ts +8 -8
- package/users-list/src/app.constants.d.ts +32 -32
- package/users-list/src/classes/device.d.ts +224 -224
- package/users-list/src/classes/line.d.ts +140 -140
- package/users-list/src/classes/notification.d.ts +18 -18
- package/users-list/src/classes/pagination.d.ts +13 -13
- package/users-list/src/classes/simlified-user.d.ts +25 -25
- package/users-list/src/classes/table-data.d.ts +5 -5
- package/users-list/src/classes/user-list.d.ts +36 -36
- package/users-list/src/material.module.d.ts +31 -31
- package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +25 -25
- package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +16 -16
- package/users-list/src/services/api-webex.service.d.ts +8 -8
- package/users-list/src/services/api.service.d.ts +21 -21
- package/users-list/src/services/dns.service.d.ts +18 -18
- package/users-list/src/services/events-communication.service.d.ts +8 -8
- package/users-list/src/services/notification.service.d.ts +18 -18
- package/users-list/src/services/removeKynFromIBM.service.d.ts +8 -8
- package/users-list/src/services/user.service.d.ts +34 -34
- package/users-list/src/services/users-search.service.d.ts +34 -34
- package/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.d.ts +20 -20
- package/users-list/src/users-list.component.d.ts +59 -59
- package/users-list/src/users-list.module.d.ts +16 -16
- package/users-list/src/utils/app-loader/app-loader.d.ts +6 -6
- package/users-list/src/utils/common-functions.d.ts +1 -1
- package/users-list/src/utils/pagination/pagination.component.d.ts +18 -18
- package/users-list/src/utils/utils.service.d.ts +9 -9
|
@@ -1,233 +1,233 @@
|
|
|
1
|
-
import { EntityChangeType } from './line';
|
|
2
|
-
import { LineAssociation } from './line-association';
|
|
3
|
-
import { LineAssociationInterface } from './line-association-interface';
|
|
4
|
-
import { FormGroup } from '@angular/forms';
|
|
5
|
-
import { ValidationService } from '../services/validation.service';
|
|
6
|
-
export declare class Device {
|
|
7
|
-
name: string;
|
|
8
|
-
pkiid: string;
|
|
9
|
-
deviceType: string;
|
|
10
|
-
lineAssociations: LineAssociation[] | LineAssociationInterface[];
|
|
11
|
-
lineAssociationsHasChanges: boolean;
|
|
12
|
-
protocol: string;
|
|
13
|
-
description: string;
|
|
14
|
-
buttonTemplate: string;
|
|
15
|
-
softkeyTemplate: string;
|
|
16
|
-
devicePoolName: string;
|
|
17
|
-
location: string;
|
|
18
|
-
callingSearchSpaceName: string;
|
|
19
|
-
firmwareVersion: string;
|
|
20
|
-
registrationStatus: string;
|
|
21
|
-
ipAddress: string;
|
|
22
|
-
deviceKind: string;
|
|
23
|
-
isCtiRoutePoint: boolean;
|
|
24
|
-
alreadyUsedName: string;
|
|
25
|
-
deviceDefaults: any;
|
|
26
|
-
availableSlots: number[];
|
|
27
|
-
plarService: boolean;
|
|
28
|
-
form: FormGroup;
|
|
29
|
-
constructor(device: any, validationService: ValidationService);
|
|
30
|
-
initForm(): void;
|
|
31
|
-
getSavableData(): {};
|
|
32
|
-
getNoLinesFullData(): {};
|
|
33
|
-
getDeviceInfoSavableData(): {};
|
|
34
|
-
}
|
|
35
|
-
export interface DeviceInterface {
|
|
36
|
-
name: string;
|
|
37
|
-
newName?: string;
|
|
38
|
-
pkid: string;
|
|
39
|
-
entityChangeType?: EntityChangeType;
|
|
40
|
-
deviceType: string;
|
|
41
|
-
protocol?: string;
|
|
42
|
-
description?: string;
|
|
43
|
-
buttonTemplate?: string;
|
|
44
|
-
softkeyTemplate?: string;
|
|
45
|
-
devicePoolName?: string;
|
|
46
|
-
location?: string;
|
|
47
|
-
userLocale?: string;
|
|
48
|
-
enabledExtensionMobility?: boolean;
|
|
49
|
-
callingSearchSpaceName?: string;
|
|
50
|
-
services?: string[];
|
|
51
|
-
networkLocale?: string;
|
|
52
|
-
securityProfile?: string;
|
|
53
|
-
lineAssociations: LineAssociationInterface[];
|
|
54
|
-
speedDials?: SpeedDialInterface[];
|
|
55
|
-
sipProfile?: string;
|
|
56
|
-
subscribeCallingSearchSpaceName?: string;
|
|
57
|
-
commonPhoneConfigName?: string;
|
|
58
|
-
ctiRemoteDevice?: boolean;
|
|
59
|
-
firstExpansionModule?: string;
|
|
60
|
-
secondExpansionModule?: string;
|
|
61
|
-
thirdExpansionModule?: string;
|
|
62
|
-
builtInBridge?: string;
|
|
63
|
-
extraOptions?: DeviceExtraOptionsInterface;
|
|
64
|
-
formDisabledControls?: string[];
|
|
65
|
-
sharedUsers?: string[];
|
|
66
|
-
busyLampFields?: BusyLampFieldsInterface[];
|
|
67
|
-
meetMeEnabled?: boolean;
|
|
68
|
-
deviceKind?: any;
|
|
69
|
-
isCtiRoutePoint?: boolean;
|
|
70
|
-
cucmId?: string;
|
|
71
|
-
plarDevice?: boolean;
|
|
72
|
-
firmwareVersion?: any;
|
|
73
|
-
certificateOperation?: string;
|
|
74
|
-
authenticationMode?: string;
|
|
75
|
-
authenticationString?: string;
|
|
76
|
-
rsaKeySize?: string;
|
|
77
|
-
operationCompletesBy?: string;
|
|
78
|
-
certificateStatus: string;
|
|
79
|
-
day?: string;
|
|
80
|
-
month?: string;
|
|
81
|
-
year?: string;
|
|
82
|
-
hour?: string;
|
|
83
|
-
securityProfileUuid?: string;
|
|
84
|
-
excludeDeviceExtraOptions?: boolean;
|
|
85
|
-
webexUUID?: string;
|
|
86
|
-
viewType?: any;
|
|
87
|
-
alreadyUsedName?: string;
|
|
88
|
-
}
|
|
89
|
-
export interface SpeedDialInterface {
|
|
90
|
-
index: number;
|
|
91
|
-
position: number;
|
|
92
|
-
destination: string;
|
|
93
|
-
label: string;
|
|
94
|
-
editMode?: boolean;
|
|
95
|
-
}
|
|
96
|
-
export declare enum RecordingOptions {
|
|
97
|
-
disabled = "Call Recording Disabled",
|
|
98
|
-
auto_enabled = "Automatic Call Recording Enabled",
|
|
99
|
-
selective_enabled = "Selective Call Recording Enabled"
|
|
100
|
-
}
|
|
101
|
-
export interface LineCallInfoDisplayInterface {
|
|
102
|
-
callerName: string;
|
|
103
|
-
callerNumber: string;
|
|
104
|
-
redirectedNumber: string;
|
|
105
|
-
dialedNumber: string;
|
|
106
|
-
}
|
|
107
|
-
export interface SiteShortDataInterface {
|
|
108
|
-
id: number;
|
|
109
|
-
name: string;
|
|
110
|
-
}
|
|
111
|
-
export interface DeviceExtraOptionsInterface {
|
|
112
|
-
mediaResourceGroupList: string;
|
|
113
|
-
userHoldMOHAudioSourceId: number;
|
|
114
|
-
userHoldMOHAudioSourceName: string;
|
|
115
|
-
networkMOHAudioSourceId: number;
|
|
116
|
-
networkMOHAudioSourceName: string;
|
|
117
|
-
aarCss: string;
|
|
118
|
-
aarGroup: string;
|
|
119
|
-
privacy: string;
|
|
120
|
-
deviceMobilityMode: string;
|
|
121
|
-
mobilityUserId: string;
|
|
122
|
-
phonePersonalization: string;
|
|
123
|
-
servicesProvisioning: string;
|
|
124
|
-
phoneLoadName: string;
|
|
125
|
-
phoneIdleBLFAlertSetting: string;
|
|
126
|
-
phoneBusyBLFAlertSetting: string;
|
|
127
|
-
useTrustedRelayPoint: string;
|
|
128
|
-
alwaysUsePrimeLine: string;
|
|
129
|
-
alwaysUsePrimeLineForVoiceMessage: string;
|
|
130
|
-
geolocation: string;
|
|
131
|
-
emergencyLocation: string;
|
|
132
|
-
ignorePresentationIndicators: boolean;
|
|
133
|
-
loggedIntoHuntGroup: boolean;
|
|
134
|
-
enabledExtensionMobility: boolean;
|
|
135
|
-
remoteDevice: boolean;
|
|
136
|
-
protectedDevice: boolean;
|
|
137
|
-
hotlineDevice: boolean;
|
|
138
|
-
useDevicePoolCgpnIngressDN: boolean;
|
|
139
|
-
cgpnIngressDN: string;
|
|
140
|
-
useDevicePoolCgpnTransformCss: boolean;
|
|
141
|
-
cgpnTransformationCss: string;
|
|
142
|
-
packetCaptureMode: string;
|
|
143
|
-
packetCaptureDuration: number;
|
|
144
|
-
blfPresenceGroup: string;
|
|
145
|
-
sipDialRules: string;
|
|
146
|
-
mtpPreferredOriginatingCodec: string;
|
|
147
|
-
rerouteCss: string;
|
|
148
|
-
subscribeCss: string;
|
|
149
|
-
mtpRequired: boolean;
|
|
150
|
-
unattendedPort: boolean;
|
|
151
|
-
requireDtmfReception: boolean;
|
|
152
|
-
informationUrl: string;
|
|
153
|
-
directoryUrl: string;
|
|
154
|
-
messagesUrl: string;
|
|
155
|
-
servicesUrl: string;
|
|
156
|
-
authenticationUrl: string;
|
|
157
|
-
proxyServerUrl: string;
|
|
158
|
-
idleUrl: string;
|
|
159
|
-
idleTimeout: string;
|
|
160
|
-
secureAuthenticationUrl: string;
|
|
161
|
-
secureDirectoryUrl: string;
|
|
162
|
-
secureIdleUrl: string;
|
|
163
|
-
secureInformationUrl: string;
|
|
164
|
-
secureMessageUrl: string;
|
|
165
|
-
secureServicesUrl: string;
|
|
166
|
-
mlppDomain: string;
|
|
167
|
-
mlppIndication: string;
|
|
168
|
-
mlppPreemption: string;
|
|
169
|
-
confidentialAccessMode: string;
|
|
170
|
-
confidentialAccessLevel: string;
|
|
171
|
-
confidentialAccessLevelName: string;
|
|
172
|
-
doNotDisturb: boolean;
|
|
173
|
-
dndOption: string;
|
|
174
|
-
dndIncomingCallAlert: string;
|
|
175
|
-
disableSpeakerphone: boolean;
|
|
176
|
-
disableSpeakerphoneAndHeadset: boolean;
|
|
177
|
-
forwardingDelay: boolean;
|
|
178
|
-
pcPort: boolean;
|
|
179
|
-
settingsAccess: string;
|
|
180
|
-
gratuitousARP: boolean;
|
|
181
|
-
pcVoiceVlanAccess: boolean;
|
|
182
|
-
videoCapabilities: boolean;
|
|
183
|
-
webAccess: boolean;
|
|
184
|
-
daysDisplayNotActive: string[];
|
|
185
|
-
displayOnTime: string;
|
|
186
|
-
displayOnDuration: string;
|
|
187
|
-
displayIdleTimeout: string;
|
|
188
|
-
wirelessHeadsetHookswitchControl: boolean;
|
|
189
|
-
minRingVolume: string;
|
|
190
|
-
showAllCallsOnPL: boolean;
|
|
191
|
-
lineMode: string;
|
|
192
|
-
latentCapabilityRegistration: string;
|
|
193
|
-
analogGatewayPortInformation: AnalogGatewayPortInformationInterFace;
|
|
194
|
-
}
|
|
195
|
-
export interface AnalogGatewayPortInformationInterFace {
|
|
196
|
-
portDirection: string;
|
|
197
|
-
prefixDn: string;
|
|
198
|
-
numDigits: number;
|
|
199
|
-
expectedDigits: number;
|
|
200
|
-
smdiPortNumber: number;
|
|
201
|
-
trunk: string;
|
|
202
|
-
unattendedPort: string;
|
|
203
|
-
}
|
|
204
|
-
export interface BusyLampFieldsInterface {
|
|
205
|
-
index: number;
|
|
206
|
-
position: number;
|
|
207
|
-
destination: string;
|
|
208
|
-
dnWithRoutePartition: string;
|
|
209
|
-
label: string;
|
|
210
|
-
callPickup: boolean;
|
|
211
|
-
}
|
|
212
|
-
export declare class Buttontemplate {
|
|
213
|
-
name: string;
|
|
214
|
-
lineSlots: number[];
|
|
215
|
-
speedDialSlots: number[];
|
|
216
|
-
blfSlots: number[];
|
|
217
|
-
constructor();
|
|
218
|
-
}
|
|
219
|
-
export declare enum DeviceViewType {
|
|
220
|
-
INFO = 0,
|
|
221
|
-
LINES = 1,
|
|
222
|
-
DIALS = 2,
|
|
223
|
-
BLF = 3
|
|
224
|
-
}
|
|
225
|
-
export declare enum DeviceKind {
|
|
226
|
-
device = "devices",
|
|
227
|
-
deviceProfile = "deviceProfiles"
|
|
228
|
-
}
|
|
229
|
-
export declare enum DeviceTypes {
|
|
230
|
-
CTI_ROUTE_POINT = "CTI Route Point",
|
|
231
|
-
CTI_PORT = "CTI Port",
|
|
232
|
-
CTI_REMOTE = "CTI Remote Device"
|
|
233
|
-
}
|
|
1
|
+
import { EntityChangeType } from './line';
|
|
2
|
+
import { LineAssociation } from './line-association';
|
|
3
|
+
import { LineAssociationInterface } from './line-association-interface';
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import { ValidationService } from '../services/validation.service';
|
|
6
|
+
export declare class Device {
|
|
7
|
+
name: string;
|
|
8
|
+
pkiid: string;
|
|
9
|
+
deviceType: string;
|
|
10
|
+
lineAssociations: LineAssociation[] | LineAssociationInterface[];
|
|
11
|
+
lineAssociationsHasChanges: boolean;
|
|
12
|
+
protocol: string;
|
|
13
|
+
description: string;
|
|
14
|
+
buttonTemplate: string;
|
|
15
|
+
softkeyTemplate: string;
|
|
16
|
+
devicePoolName: string;
|
|
17
|
+
location: string;
|
|
18
|
+
callingSearchSpaceName: string;
|
|
19
|
+
firmwareVersion: string;
|
|
20
|
+
registrationStatus: string;
|
|
21
|
+
ipAddress: string;
|
|
22
|
+
deviceKind: string;
|
|
23
|
+
isCtiRoutePoint: boolean;
|
|
24
|
+
alreadyUsedName: string;
|
|
25
|
+
deviceDefaults: any;
|
|
26
|
+
availableSlots: number[];
|
|
27
|
+
plarService: boolean;
|
|
28
|
+
form: FormGroup;
|
|
29
|
+
constructor(device: any, validationService: ValidationService);
|
|
30
|
+
initForm(): void;
|
|
31
|
+
getSavableData(): {};
|
|
32
|
+
getNoLinesFullData(): {};
|
|
33
|
+
getDeviceInfoSavableData(): {};
|
|
34
|
+
}
|
|
35
|
+
export interface DeviceInterface {
|
|
36
|
+
name: string;
|
|
37
|
+
newName?: string;
|
|
38
|
+
pkid: string;
|
|
39
|
+
entityChangeType?: EntityChangeType;
|
|
40
|
+
deviceType: string;
|
|
41
|
+
protocol?: string;
|
|
42
|
+
description?: string;
|
|
43
|
+
buttonTemplate?: string;
|
|
44
|
+
softkeyTemplate?: string;
|
|
45
|
+
devicePoolName?: string;
|
|
46
|
+
location?: string;
|
|
47
|
+
userLocale?: string;
|
|
48
|
+
enabledExtensionMobility?: boolean;
|
|
49
|
+
callingSearchSpaceName?: string;
|
|
50
|
+
services?: string[];
|
|
51
|
+
networkLocale?: string;
|
|
52
|
+
securityProfile?: string;
|
|
53
|
+
lineAssociations: LineAssociationInterface[];
|
|
54
|
+
speedDials?: SpeedDialInterface[];
|
|
55
|
+
sipProfile?: string;
|
|
56
|
+
subscribeCallingSearchSpaceName?: string;
|
|
57
|
+
commonPhoneConfigName?: string;
|
|
58
|
+
ctiRemoteDevice?: boolean;
|
|
59
|
+
firstExpansionModule?: string;
|
|
60
|
+
secondExpansionModule?: string;
|
|
61
|
+
thirdExpansionModule?: string;
|
|
62
|
+
builtInBridge?: string;
|
|
63
|
+
extraOptions?: DeviceExtraOptionsInterface;
|
|
64
|
+
formDisabledControls?: string[];
|
|
65
|
+
sharedUsers?: string[];
|
|
66
|
+
busyLampFields?: BusyLampFieldsInterface[];
|
|
67
|
+
meetMeEnabled?: boolean;
|
|
68
|
+
deviceKind?: any;
|
|
69
|
+
isCtiRoutePoint?: boolean;
|
|
70
|
+
cucmId?: string;
|
|
71
|
+
plarDevice?: boolean;
|
|
72
|
+
firmwareVersion?: any;
|
|
73
|
+
certificateOperation?: string;
|
|
74
|
+
authenticationMode?: string;
|
|
75
|
+
authenticationString?: string;
|
|
76
|
+
rsaKeySize?: string;
|
|
77
|
+
operationCompletesBy?: string;
|
|
78
|
+
certificateStatus: string;
|
|
79
|
+
day?: string;
|
|
80
|
+
month?: string;
|
|
81
|
+
year?: string;
|
|
82
|
+
hour?: string;
|
|
83
|
+
securityProfileUuid?: string;
|
|
84
|
+
excludeDeviceExtraOptions?: boolean;
|
|
85
|
+
webexUUID?: string;
|
|
86
|
+
viewType?: any;
|
|
87
|
+
alreadyUsedName?: string;
|
|
88
|
+
}
|
|
89
|
+
export interface SpeedDialInterface {
|
|
90
|
+
index: number;
|
|
91
|
+
position: number;
|
|
92
|
+
destination: string;
|
|
93
|
+
label: string;
|
|
94
|
+
editMode?: boolean;
|
|
95
|
+
}
|
|
96
|
+
export declare enum RecordingOptions {
|
|
97
|
+
disabled = "Call Recording Disabled",
|
|
98
|
+
auto_enabled = "Automatic Call Recording Enabled",
|
|
99
|
+
selective_enabled = "Selective Call Recording Enabled"
|
|
100
|
+
}
|
|
101
|
+
export interface LineCallInfoDisplayInterface {
|
|
102
|
+
callerName: string;
|
|
103
|
+
callerNumber: string;
|
|
104
|
+
redirectedNumber: string;
|
|
105
|
+
dialedNumber: string;
|
|
106
|
+
}
|
|
107
|
+
export interface SiteShortDataInterface {
|
|
108
|
+
id: number;
|
|
109
|
+
name: string;
|
|
110
|
+
}
|
|
111
|
+
export interface DeviceExtraOptionsInterface {
|
|
112
|
+
mediaResourceGroupList: string;
|
|
113
|
+
userHoldMOHAudioSourceId: number;
|
|
114
|
+
userHoldMOHAudioSourceName: string;
|
|
115
|
+
networkMOHAudioSourceId: number;
|
|
116
|
+
networkMOHAudioSourceName: string;
|
|
117
|
+
aarCss: string;
|
|
118
|
+
aarGroup: string;
|
|
119
|
+
privacy: string;
|
|
120
|
+
deviceMobilityMode: string;
|
|
121
|
+
mobilityUserId: string;
|
|
122
|
+
phonePersonalization: string;
|
|
123
|
+
servicesProvisioning: string;
|
|
124
|
+
phoneLoadName: string;
|
|
125
|
+
phoneIdleBLFAlertSetting: string;
|
|
126
|
+
phoneBusyBLFAlertSetting: string;
|
|
127
|
+
useTrustedRelayPoint: string;
|
|
128
|
+
alwaysUsePrimeLine: string;
|
|
129
|
+
alwaysUsePrimeLineForVoiceMessage: string;
|
|
130
|
+
geolocation: string;
|
|
131
|
+
emergencyLocation: string;
|
|
132
|
+
ignorePresentationIndicators: boolean;
|
|
133
|
+
loggedIntoHuntGroup: boolean;
|
|
134
|
+
enabledExtensionMobility: boolean;
|
|
135
|
+
remoteDevice: boolean;
|
|
136
|
+
protectedDevice: boolean;
|
|
137
|
+
hotlineDevice: boolean;
|
|
138
|
+
useDevicePoolCgpnIngressDN: boolean;
|
|
139
|
+
cgpnIngressDN: string;
|
|
140
|
+
useDevicePoolCgpnTransformCss: boolean;
|
|
141
|
+
cgpnTransformationCss: string;
|
|
142
|
+
packetCaptureMode: string;
|
|
143
|
+
packetCaptureDuration: number;
|
|
144
|
+
blfPresenceGroup: string;
|
|
145
|
+
sipDialRules: string;
|
|
146
|
+
mtpPreferredOriginatingCodec: string;
|
|
147
|
+
rerouteCss: string;
|
|
148
|
+
subscribeCss: string;
|
|
149
|
+
mtpRequired: boolean;
|
|
150
|
+
unattendedPort: boolean;
|
|
151
|
+
requireDtmfReception: boolean;
|
|
152
|
+
informationUrl: string;
|
|
153
|
+
directoryUrl: string;
|
|
154
|
+
messagesUrl: string;
|
|
155
|
+
servicesUrl: string;
|
|
156
|
+
authenticationUrl: string;
|
|
157
|
+
proxyServerUrl: string;
|
|
158
|
+
idleUrl: string;
|
|
159
|
+
idleTimeout: string;
|
|
160
|
+
secureAuthenticationUrl: string;
|
|
161
|
+
secureDirectoryUrl: string;
|
|
162
|
+
secureIdleUrl: string;
|
|
163
|
+
secureInformationUrl: string;
|
|
164
|
+
secureMessageUrl: string;
|
|
165
|
+
secureServicesUrl: string;
|
|
166
|
+
mlppDomain: string;
|
|
167
|
+
mlppIndication: string;
|
|
168
|
+
mlppPreemption: string;
|
|
169
|
+
confidentialAccessMode: string;
|
|
170
|
+
confidentialAccessLevel: string;
|
|
171
|
+
confidentialAccessLevelName: string;
|
|
172
|
+
doNotDisturb: boolean;
|
|
173
|
+
dndOption: string;
|
|
174
|
+
dndIncomingCallAlert: string;
|
|
175
|
+
disableSpeakerphone: boolean;
|
|
176
|
+
disableSpeakerphoneAndHeadset: boolean;
|
|
177
|
+
forwardingDelay: boolean;
|
|
178
|
+
pcPort: boolean;
|
|
179
|
+
settingsAccess: string;
|
|
180
|
+
gratuitousARP: boolean;
|
|
181
|
+
pcVoiceVlanAccess: boolean;
|
|
182
|
+
videoCapabilities: boolean;
|
|
183
|
+
webAccess: boolean;
|
|
184
|
+
daysDisplayNotActive: string[];
|
|
185
|
+
displayOnTime: string;
|
|
186
|
+
displayOnDuration: string;
|
|
187
|
+
displayIdleTimeout: string;
|
|
188
|
+
wirelessHeadsetHookswitchControl: boolean;
|
|
189
|
+
minRingVolume: string;
|
|
190
|
+
showAllCallsOnPL: boolean;
|
|
191
|
+
lineMode: string;
|
|
192
|
+
latentCapabilityRegistration: string;
|
|
193
|
+
analogGatewayPortInformation: AnalogGatewayPortInformationInterFace;
|
|
194
|
+
}
|
|
195
|
+
export interface AnalogGatewayPortInformationInterFace {
|
|
196
|
+
portDirection: string;
|
|
197
|
+
prefixDn: string;
|
|
198
|
+
numDigits: number;
|
|
199
|
+
expectedDigits: number;
|
|
200
|
+
smdiPortNumber: number;
|
|
201
|
+
trunk: string;
|
|
202
|
+
unattendedPort: string;
|
|
203
|
+
}
|
|
204
|
+
export interface BusyLampFieldsInterface {
|
|
205
|
+
index: number;
|
|
206
|
+
position: number;
|
|
207
|
+
destination: string;
|
|
208
|
+
dnWithRoutePartition: string;
|
|
209
|
+
label: string;
|
|
210
|
+
callPickup: boolean;
|
|
211
|
+
}
|
|
212
|
+
export declare class Buttontemplate {
|
|
213
|
+
name: string;
|
|
214
|
+
lineSlots: number[];
|
|
215
|
+
speedDialSlots: number[];
|
|
216
|
+
blfSlots: number[];
|
|
217
|
+
constructor();
|
|
218
|
+
}
|
|
219
|
+
export declare enum DeviceViewType {
|
|
220
|
+
INFO = 0,
|
|
221
|
+
LINES = 1,
|
|
222
|
+
DIALS = 2,
|
|
223
|
+
BLF = 3
|
|
224
|
+
}
|
|
225
|
+
export declare enum DeviceKind {
|
|
226
|
+
device = "devices",
|
|
227
|
+
deviceProfile = "deviceProfiles"
|
|
228
|
+
}
|
|
229
|
+
export declare enum DeviceTypes {
|
|
230
|
+
CTI_ROUTE_POINT = "CTI Route Point",
|
|
231
|
+
CTI_PORT = "CTI Port",
|
|
232
|
+
CTI_REMOTE = "CTI Remote Device"
|
|
233
|
+
}
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
import { RecordingOptions } from './recording-options';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { LineDirectoryInterface, TranslationPatternInterface } from './line';
|
|
4
|
-
import { LineCallInfoDisplayInterface } from './device';
|
|
5
|
-
export interface LineAssociationInterface {
|
|
6
|
-
index: number;
|
|
7
|
-
position?: number;
|
|
8
|
-
alertingName?: string;
|
|
9
|
-
e164Mask: string;
|
|
10
|
-
textLabel: string;
|
|
11
|
-
displayLabel: string;
|
|
12
|
-
displayLabelAscii: string;
|
|
13
|
-
directoryNumber: LineDirectoryInterface;
|
|
14
|
-
didPattern: TranslationPatternInterface;
|
|
15
|
-
mappedDids: Array<string>;
|
|
16
|
-
linePkid: string;
|
|
17
|
-
maxNumberOfCalls: number;
|
|
18
|
-
busyTrigger: number;
|
|
19
|
-
recordingOption: RecordingOptions;
|
|
20
|
-
recordingProfile: string;
|
|
21
|
-
recordingMediaSource: string;
|
|
22
|
-
visualMWI: string;
|
|
23
|
-
audibleMWI: string;
|
|
24
|
-
ringSetting_idle: string;
|
|
25
|
-
ringSetting_active: string;
|
|
26
|
-
pickupAAS_idle: string;
|
|
27
|
-
pickupAAS_active: string;
|
|
28
|
-
monitorCSS: string;
|
|
29
|
-
logMissedCall: string;
|
|
30
|
-
callInfoDisplay: LineCallInfoDisplayInterface;
|
|
31
|
-
lineLocalId: string;
|
|
32
|
-
sharedUsers: string[];
|
|
33
|
-
sharedDevices: string[];
|
|
34
|
-
ownerUserId: Array<string>;
|
|
35
|
-
associated: boolean;
|
|
36
|
-
populateWithDid: boolean;
|
|
37
|
-
callingSearchSpace?: string;
|
|
38
|
-
form: FormGroup;
|
|
39
|
-
active: boolean;
|
|
40
|
-
hasChanges: boolean;
|
|
41
|
-
equals(line: any): boolean;
|
|
42
|
-
fullEqual(line: any): boolean;
|
|
43
|
-
getSavableData(): any;
|
|
44
|
-
getFullData(): any;
|
|
45
|
-
}
|
|
1
|
+
import { RecordingOptions } from './recording-options';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { LineDirectoryInterface, TranslationPatternInterface } from './line';
|
|
4
|
+
import { LineCallInfoDisplayInterface } from './device';
|
|
5
|
+
export interface LineAssociationInterface {
|
|
6
|
+
index: number;
|
|
7
|
+
position?: number;
|
|
8
|
+
alertingName?: string;
|
|
9
|
+
e164Mask: string;
|
|
10
|
+
textLabel: string;
|
|
11
|
+
displayLabel: string;
|
|
12
|
+
displayLabelAscii: string;
|
|
13
|
+
directoryNumber: LineDirectoryInterface;
|
|
14
|
+
didPattern: TranslationPatternInterface;
|
|
15
|
+
mappedDids: Array<string>;
|
|
16
|
+
linePkid: string;
|
|
17
|
+
maxNumberOfCalls: number;
|
|
18
|
+
busyTrigger: number;
|
|
19
|
+
recordingOption: RecordingOptions;
|
|
20
|
+
recordingProfile: string;
|
|
21
|
+
recordingMediaSource: string;
|
|
22
|
+
visualMWI: string;
|
|
23
|
+
audibleMWI: string;
|
|
24
|
+
ringSetting_idle: string;
|
|
25
|
+
ringSetting_active: string;
|
|
26
|
+
pickupAAS_idle: string;
|
|
27
|
+
pickupAAS_active: string;
|
|
28
|
+
monitorCSS: string;
|
|
29
|
+
logMissedCall: string;
|
|
30
|
+
callInfoDisplay: LineCallInfoDisplayInterface;
|
|
31
|
+
lineLocalId: string;
|
|
32
|
+
sharedUsers: string[];
|
|
33
|
+
sharedDevices: string[];
|
|
34
|
+
ownerUserId: Array<string>;
|
|
35
|
+
associated: boolean;
|
|
36
|
+
populateWithDid: boolean;
|
|
37
|
+
callingSearchSpace?: string;
|
|
38
|
+
form: FormGroup;
|
|
39
|
+
active: boolean;
|
|
40
|
+
hasChanges: boolean;
|
|
41
|
+
equals(line: any): boolean;
|
|
42
|
+
fullEqual(line: any): boolean;
|
|
43
|
+
getSavableData(): any;
|
|
44
|
+
getFullData(): any;
|
|
45
|
+
}
|
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
import { LineDirectory } from './line-directory';
|
|
2
|
-
import { FormGroup } from '@angular/forms';
|
|
3
|
-
import { LineCallInfoDisplay } from './line-call-info-display';
|
|
4
|
-
import { TranslationPattern } from './translation-pattern';
|
|
5
|
-
import { RecordingOptions } from './device';
|
|
6
|
-
import { LineAssociationInterface } from './line-association-interface';
|
|
7
|
-
import { ValidationService } from './../services/validation.service';
|
|
8
|
-
export declare class LineAssociation implements LineAssociationInterface {
|
|
9
|
-
index: number;
|
|
10
|
-
position?: any;
|
|
11
|
-
e164Mask: string;
|
|
12
|
-
textLabel: string;
|
|
13
|
-
displayLabel: string;
|
|
14
|
-
displayLabelAscii: string;
|
|
15
|
-
directoryNumber: LineDirectory;
|
|
16
|
-
didPattern: TranslationPattern;
|
|
17
|
-
mappedDids: Array<string>;
|
|
18
|
-
linePkid: string;
|
|
19
|
-
maxNumberOfCalls: number;
|
|
20
|
-
busyTrigger: number;
|
|
21
|
-
recordingOption: RecordingOptions;
|
|
22
|
-
recordingProfile: string;
|
|
23
|
-
recordingMediaSource: string;
|
|
24
|
-
visualMWI: string;
|
|
25
|
-
audibleMWI: string;
|
|
26
|
-
ringSetting_idle: string;
|
|
27
|
-
ringSetting_active: string;
|
|
28
|
-
pickupAAS_idle: string;
|
|
29
|
-
pickupAAS_active: string;
|
|
30
|
-
monitorCSS: string;
|
|
31
|
-
logMissedCall: string;
|
|
32
|
-
callInfoDisplay: LineCallInfoDisplay;
|
|
33
|
-
lineLocalId: string;
|
|
34
|
-
callerName?: string;
|
|
35
|
-
callerNumber?: string;
|
|
36
|
-
redirectedNumber?: string;
|
|
37
|
-
dialedNumber?: string;
|
|
38
|
-
viewMode?: boolean;
|
|
39
|
-
form: FormGroup;
|
|
40
|
-
sharedUsers: never[];
|
|
41
|
-
sharedDevices: never[];
|
|
42
|
-
callingSearchSpace?: string;
|
|
43
|
-
ownerUserId: Array<string>;
|
|
44
|
-
associated: boolean;
|
|
45
|
-
patternUsage?: boolean;
|
|
46
|
-
plarDestinationNumber?: string;
|
|
47
|
-
prefixDigits?: string;
|
|
48
|
-
plarDescription?: string;
|
|
49
|
-
plarEnabled?: boolean;
|
|
50
|
-
alertingName?: string;
|
|
51
|
-
description?: string;
|
|
52
|
-
populateWithDid: boolean;
|
|
53
|
-
active: boolean;
|
|
54
|
-
hasChanges: boolean;
|
|
55
|
-
constructor(lineAssociation: any, appValidators: ValidationService);
|
|
56
|
-
getSavableData(): any;
|
|
57
|
-
getFullData(): any;
|
|
58
|
-
getDnSavableData(): void;
|
|
59
|
-
initForm(appValidators: ValidationService): void;
|
|
60
|
-
equals(line: LineAssociation | any): boolean;
|
|
61
|
-
fullEqual(line: LineAssociation | LineAssociationInterface): boolean;
|
|
62
|
-
}
|
|
1
|
+
import { LineDirectory } from './line-directory';
|
|
2
|
+
import { FormGroup } from '@angular/forms';
|
|
3
|
+
import { LineCallInfoDisplay } from './line-call-info-display';
|
|
4
|
+
import { TranslationPattern } from './translation-pattern';
|
|
5
|
+
import { RecordingOptions } from './device';
|
|
6
|
+
import { LineAssociationInterface } from './line-association-interface';
|
|
7
|
+
import { ValidationService } from './../services/validation.service';
|
|
8
|
+
export declare class LineAssociation implements LineAssociationInterface {
|
|
9
|
+
index: number;
|
|
10
|
+
position?: any;
|
|
11
|
+
e164Mask: string;
|
|
12
|
+
textLabel: string;
|
|
13
|
+
displayLabel: string;
|
|
14
|
+
displayLabelAscii: string;
|
|
15
|
+
directoryNumber: LineDirectory;
|
|
16
|
+
didPattern: TranslationPattern;
|
|
17
|
+
mappedDids: Array<string>;
|
|
18
|
+
linePkid: string;
|
|
19
|
+
maxNumberOfCalls: number;
|
|
20
|
+
busyTrigger: number;
|
|
21
|
+
recordingOption: RecordingOptions;
|
|
22
|
+
recordingProfile: string;
|
|
23
|
+
recordingMediaSource: string;
|
|
24
|
+
visualMWI: string;
|
|
25
|
+
audibleMWI: string;
|
|
26
|
+
ringSetting_idle: string;
|
|
27
|
+
ringSetting_active: string;
|
|
28
|
+
pickupAAS_idle: string;
|
|
29
|
+
pickupAAS_active: string;
|
|
30
|
+
monitorCSS: string;
|
|
31
|
+
logMissedCall: string;
|
|
32
|
+
callInfoDisplay: LineCallInfoDisplay;
|
|
33
|
+
lineLocalId: string;
|
|
34
|
+
callerName?: string;
|
|
35
|
+
callerNumber?: string;
|
|
36
|
+
redirectedNumber?: string;
|
|
37
|
+
dialedNumber?: string;
|
|
38
|
+
viewMode?: boolean;
|
|
39
|
+
form: FormGroup;
|
|
40
|
+
sharedUsers: never[];
|
|
41
|
+
sharedDevices: never[];
|
|
42
|
+
callingSearchSpace?: string;
|
|
43
|
+
ownerUserId: Array<string>;
|
|
44
|
+
associated: boolean;
|
|
45
|
+
patternUsage?: boolean;
|
|
46
|
+
plarDestinationNumber?: string;
|
|
47
|
+
prefixDigits?: string;
|
|
48
|
+
plarDescription?: string;
|
|
49
|
+
plarEnabled?: boolean;
|
|
50
|
+
alertingName?: string;
|
|
51
|
+
description?: string;
|
|
52
|
+
populateWithDid: boolean;
|
|
53
|
+
active: boolean;
|
|
54
|
+
hasChanges: boolean;
|
|
55
|
+
constructor(lineAssociation: any, appValidators: ValidationService);
|
|
56
|
+
getSavableData(): any;
|
|
57
|
+
getFullData(): any;
|
|
58
|
+
getDnSavableData(): void;
|
|
59
|
+
initForm(appValidators: ValidationService): void;
|
|
60
|
+
equals(line: LineAssociation | any): boolean;
|
|
61
|
+
fullEqual(line: LineAssociation | LineAssociationInterface): boolean;
|
|
62
|
+
}
|