@tuki-io/tuki-widgets 0.0.197 → 0.0.199

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.
Files changed (49) hide show
  1. package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +2 -2
  2. package/esm2020/user-creation/src/app.constants.mjs +2 -16
  3. package/esm2020/user-creation/src/shared/material.module.mjs +7 -35
  4. package/esm2020/user-creation/src/shared/services/user-creation-api.service.mjs +19 -43
  5. package/esm2020/user-creation/src/shared/shared.module.mjs +4 -27
  6. package/esm2020/user-creation/src/user-creation.module.mjs +7 -40
  7. package/esm2020/user-creation/src/widgets/user-creation-wizard/components/user-details-step/user-details-step.component.mjs +20 -512
  8. package/esm2020/user-creation/src/widgets/user-creation-wizard/components/user-overview-step/user-overview-step.component.mjs +3 -3
  9. package/esm2020/user-creation/src/widgets/user-creation-wizard/components/user-template-step/user-template-step.component.mjs +34 -80
  10. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +19 -83
  11. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.service.mjs +124 -594
  12. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +1 -1
  13. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  14. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +325 -1913
  15. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  16. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +1 -1
  17. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  18. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +313 -1868
  19. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  20. package/package.json +1 -1
  21. package/user-creation/src/app.constants.d.ts +0 -10
  22. package/user-creation/src/shared/material.module.d.ts +1 -5
  23. package/user-creation/src/shared/services/user-creation-api.service.d.ts +2 -8
  24. package/user-creation/src/shared/shared.module.d.ts +1 -3
  25. package/user-creation/src/user-creation.module.d.ts +10 -17
  26. package/user-creation/src/widgets/user-creation-wizard/components/user-details-step/user-details-step.component.d.ts +7 -83
  27. package/user-creation/src/widgets/user-creation-wizard/components/user-template-step/user-template-step.component.d.ts +4 -11
  28. package/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.d.ts +0 -18
  29. package/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.service.d.ts +56 -71
  30. package/esm2020/user-creation/src/classes/notification.mjs +0 -32
  31. package/esm2020/user-creation/src/environments/environment.mjs +0 -11
  32. package/esm2020/user-creation/src/interfaces/user-creation-wizard.interfaces.mjs +0 -19
  33. package/esm2020/user-creation/src/shared/components/notification/notification.component.mjs +0 -38
  34. package/esm2020/user-creation/src/shared/pipes/truncate.pipe.mjs +0 -30
  35. package/esm2020/user-creation/src/shared/services/notification.service.mjs +0 -62
  36. package/esm2020/user-creation/src/utils/app-loader/app-loader.mjs +0 -14
  37. package/esm2020/user-creation/src/utils/build-savable-end-user.mjs +0 -147
  38. package/esm2020/user-creation/src/utils/device-name-validation.mjs +0 -23
  39. package/esm2020/user-creation/src/utils/parse-device-name-rule.mjs +0 -26
  40. package/user-creation/src/classes/notification.d.ts +0 -18
  41. package/user-creation/src/environments/environment.d.ts +0 -9
  42. package/user-creation/src/interfaces/user-creation-wizard.interfaces.d.ts +0 -502
  43. package/user-creation/src/shared/components/notification/notification.component.d.ts +0 -19
  44. package/user-creation/src/shared/pipes/truncate.pipe.d.ts +0 -7
  45. package/user-creation/src/shared/services/notification.service.d.ts +0 -18
  46. package/user-creation/src/utils/app-loader/app-loader.d.ts +0 -6
  47. package/user-creation/src/utils/build-savable-end-user.d.ts +0 -23
  48. package/user-creation/src/utils/device-name-validation.d.ts +0 -6
  49. package/user-creation/src/utils/parse-device-name-rule.d.ts +0 -8
@@ -1,502 +0,0 @@
1
- export interface LdapUserRow {
2
- userId: string;
3
- firstName: string;
4
- lastName: string;
5
- email: string;
6
- }
7
- export type LdapQueryType = 'userId' | 'firstName' | 'lastName';
8
- export interface OverviewUserRow extends LdapUserRow {
9
- userTemplate: string;
10
- }
11
- export interface OverviewLineRow {
12
- number: string;
13
- did: string;
14
- routePartitionName: string;
15
- css: string;
16
- description: string;
17
- }
18
- export interface OverviewDeviceRow {
19
- name: string;
20
- deviceType: string;
21
- lines: string;
22
- description: string;
23
- }
24
- export type UserCreationType = 'CUCM' | 'MT';
25
- export interface UserDetailsForm {
26
- userId: string;
27
- firstName: string;
28
- lastName: string;
29
- email: string;
30
- }
31
- export interface UserDetailsLineFormValue {
32
- lineNumber: string;
33
- number: string;
34
- routePartition: string;
35
- }
36
- export interface UserDetailsDeviceFormValue {
37
- deviceType: string;
38
- protocol: string;
39
- buttonTemplate: string;
40
- name: string;
41
- }
42
- export interface UserDetailsFormValue {
43
- userId: string;
44
- firstName: string;
45
- lastName: string;
46
- email: string;
47
- lines: UserDetailsLineFormValue[];
48
- devices: UserDetailsDeviceFormValue[];
49
- deviceProfiles: UserDetailsDeviceFormValue[];
50
- }
51
- export interface LineOption {
52
- number: string;
53
- did: string;
54
- css: string;
55
- description: string;
56
- }
57
- export interface SelectedLineRow {
58
- lineNumber: string | null;
59
- routePartitionName: string | null;
60
- }
61
- export interface DeviceEntry {
62
- deviceType: string;
63
- protocol: string;
64
- buttonTemplate: string;
65
- name: string;
66
- }
67
- export interface TemplateLineLike {
68
- directoryNumber?: {
69
- directoryNumber?: string;
70
- routePartitionName?: string | null;
71
- templateDirectoryNumber?: string | null;
72
- };
73
- description?: string | null;
74
- callingSearchSpace?: string | {
75
- name?: string | null;
76
- } | null;
77
- didPatterns?: Array<{
78
- pattern?: string | null;
79
- }> | null;
80
- }
81
- export interface TemplateDeviceLike {
82
- deviceType?: string | null;
83
- protocol?: string | null;
84
- buttonTemplate?: string | null;
85
- name?: string | null;
86
- lineAssociations?: Array<{
87
- directoryNumber?: {
88
- directoryNumber?: string;
89
- routePartitionName?: string | null;
90
- templateDirectoryNumber?: string | null;
91
- } | null;
92
- }>;
93
- }
94
- export interface TemplateEndUserLike {
95
- userid?: string | null;
96
- firstName?: string | null;
97
- lastName?: string | null;
98
- email?: string | null;
99
- lines?: TemplateLineLike[] | null;
100
- devices?: TemplateDeviceLike[] | null;
101
- }
102
- export interface UserTemplateInterface {
103
- id: number;
104
- name: string;
105
- description: string;
106
- createOrUpload: string | null;
107
- userTemplateSettings: UserTemplateSetting[];
108
- customerId: number;
109
- userRequiredFields: string[];
110
- deviceRequiredFields: string[];
111
- udpRequiredFields: string[];
112
- lineRequiredFields: string[];
113
- endUser: EndUserInterface;
114
- type: string;
115
- globalTemplate: boolean;
116
- }
117
- export interface UserTemplateSetting {
118
- }
119
- export interface EndUserInterface {
120
- userid: string | null;
121
- email: string | null;
122
- firstName: string | null;
123
- lastName: string | null;
124
- domain: string | null;
125
- customerId: number | null;
126
- department: string | null;
127
- userProfile: string | null;
128
- manager: string | null;
129
- enableMobileVoiceAccess: boolean | null;
130
- associatedPc: string | null;
131
- userLocale: string | null;
132
- digestCredentials: string | null;
133
- middleName: string | null;
134
- title: string | null;
135
- telephoneNumber: string | null;
136
- homeNumber: string | null;
137
- mobileNumber: string | null;
138
- pagerNumber: string | null;
139
- displayName: string | null;
140
- directoryUri: string | null;
141
- presenceGroup: string | null;
142
- subscribeCss: string | null;
143
- allowDeviceControlFromCti: boolean | null;
144
- enableCrossClusterEm: boolean | null;
145
- mlppUserIdNumber: string | null;
146
- mlppPrecedencePattern: string | null;
147
- createUserMode: boolean;
148
- enableMobility: boolean | null;
149
- devices: DeviceInterface[];
150
- deviceProfiles: DeviceInterface[];
151
- lines: LineInterface[];
152
- singleNumberReach?: {
153
- associatedLines?: LineInterface[] | null;
154
- remoteDestinations?: {
155
- lineAssociations?: LineInterface[] | null;
156
- }[] | null;
157
- remoteDestinationProfileName?: string | null;
158
- } | null;
159
- primaryLineReference: unknown | null;
160
- voicemail: unknown | null;
161
- features: Feature[];
162
- migrationVmUnchanged: boolean | null;
163
- migrationImPUnchanged: boolean | null;
164
- ucServiceProfile: string | null;
165
- telecomManagerRule: boolean;
166
- userTemplateUdpDeviceTypesRules: UserTemplateUdpDeviceTypesRule[];
167
- ldapIntegrated?: boolean | null;
168
- }
169
- export interface CallInfoDisplay {
170
- callerName?: string | null;
171
- callerNumber?: string | null;
172
- redirectedNumber?: string | null;
173
- dialedNumber?: string | null;
174
- }
175
- export interface DidPattern {
176
- calledPartyTransformationMask?: string | null;
177
- pattern?: string | null;
178
- }
179
- export interface ProtocolSpecificDefaults {
180
- buttonTemplates: string[];
181
- securityProfiles: string[];
182
- supportedExpansionModules: string[];
183
- supportsSoftkeyTemplates: boolean;
184
- supportsBLF: boolean;
185
- supportsEM: boolean;
186
- supportsMultipleCallDisplay: boolean;
187
- }
188
- export interface DeviceDefaultsInterface {
189
- deviceType: string;
190
- deviceNameRegex: string;
191
- deviceNameExplained: string;
192
- networkLocales: string[];
193
- protocolProtocolSpecificDefault: Record<string, ProtocolSpecificDefaults>;
194
- }
195
- export interface DeviceInterface {
196
- deviceType: string | null;
197
- protocol: string | null;
198
- name: string | null;
199
- newName: string | null;
200
- prefix: string | null;
201
- description?: string | null;
202
- buttonTemplate: string | null;
203
- location: string | null;
204
- devicePoolName: string | null;
205
- softkeyTemplate: string | null;
206
- entityChangeType: string | null;
207
- createDeviceMode?: boolean;
208
- callingSearchSpaceName: string | null;
209
- commonPhoneConfigName: string | null;
210
- securityProfile: string | null;
211
- userLocale: string | null;
212
- networkLocale: string | null;
213
- enabledExtensionMobility: boolean | null;
214
- firstExpansionModule: string | null;
215
- secondExpansionModule: string | null;
216
- withUdp: boolean;
217
- lineAssociations: LineAssociation[];
218
- sipProfile: string | null;
219
- subscribeCallingSearchSpaceName: string | null;
220
- extraOptions: DeviceExtraOptions;
221
- userDeviceType: string | null;
222
- builtInBridge: string | null;
223
- services: Service[];
224
- speedDials: SpeedDial[];
225
- busyLampFields: BusyLampField[];
226
- webexUUID: string | null;
227
- pkid: string | null;
228
- deviceDefaults?: DeviceDefaultsInterface | null;
229
- nameValidationRegex?: string | null;
230
- nameValidationCaption?: string | null;
231
- }
232
- export interface LineAssociation {
233
- linePkid: string | null;
234
- index: number;
235
- position: string | null;
236
- directoryNumber: DirectoryNumber;
237
- e164Mask: string | null;
238
- textLabel: string | null;
239
- displayLabel: string | null;
240
- displayLabelAscii: string | null;
241
- maxNumberOfCalls: number | null;
242
- busyTrigger: number | null;
243
- recordingOption: string | null;
244
- recordingProfile: string | null;
245
- recordingMediaSource: string | null;
246
- visualMWI: boolean | null;
247
- audibleMWI: boolean | null;
248
- ringSetting_idle: string | null;
249
- ringSetting_active: string | null;
250
- pickupAAS_idle: string | null;
251
- pickupAAS_active: string | null;
252
- monitorCSS: string | null;
253
- logMissedCall: boolean | string | null;
254
- callInfoDisplay: CallInfoDisplay | string | null;
255
- lineLocalId: string;
256
- didPattern: DidPattern | string | null;
257
- entityChangeType?: string | null;
258
- sharedDevices: SharedDevice[];
259
- sharedUsers: SharedUser[];
260
- ownerUserId: string[];
261
- associated: boolean;
262
- patternUsage: string | null;
263
- alertingName: string | null;
264
- populateWithDid: boolean;
265
- }
266
- export interface DirectoryNumber {
267
- directoryNumber: string;
268
- templateDirectoryNumber?: string;
269
- routePartitionName: string;
270
- pkid?: string | null;
271
- dnType?: string | null;
272
- subType?: string | null;
273
- displayValue?: string;
274
- }
275
- export interface DeviceExtraOptions {
276
- mediaResourceGroupList: string | null;
277
- userHoldMOHAudioSourceId: string | null;
278
- userHoldMOHAudioSourceName: string | null;
279
- networkMOHAudioSourceId: string | null;
280
- networkMOHAudioSourceName: string | null;
281
- aarCss: string | null;
282
- aarGroup: string | null;
283
- privacy: string | null;
284
- deviceMobilityMode: string | null;
285
- mobilityUserId: string | null;
286
- phonePersonalization: string | null;
287
- servicesProvisioning: string | null;
288
- phoneLoadName: string | null;
289
- phoneIdleBLFAlertSetting: string | null;
290
- phoneBusyBLFAlertSetting: string | null;
291
- useTrustedRelayPoint: boolean | null;
292
- alwaysUsePrimeLine: boolean | null;
293
- alwaysUsePrimeLineForVoiceMessage: boolean | null;
294
- geolocation: string | null;
295
- ignorePresentationIndicators: boolean | null;
296
- loggedIntoHuntGroup: boolean | null;
297
- enabledExtensionMobility: boolean | null;
298
- remoteDevice: string | null;
299
- protectedDevice: boolean | null;
300
- hotlineDevice: boolean;
301
- commonDeviceConfigName: string | null;
302
- useDevicePoolCgpnIngressDN: boolean | null;
303
- cgpnIngressDN: string | null;
304
- useDevicePoolCgpnTransformCss: boolean | null;
305
- cgpnTransformationCss: string | null;
306
- packetCaptureMode: string | null;
307
- packetCaptureDuration: number | null;
308
- blfPresenceGroup: string | null;
309
- sipDialRules: string | null;
310
- mtpPreferredOriginatingCodec: string | null;
311
- rerouteCss: string | null;
312
- subscribeCss: string | null;
313
- digestUser: string | null;
314
- mtpRequired: boolean | null;
315
- unattendedPort: boolean | null;
316
- requireDtmfReception: boolean | null;
317
- informationUrl: string | null;
318
- directoryUrl: string | null;
319
- messagesUrl: string | null;
320
- servicesUrl: string | null;
321
- authenticationUrl: string | null;
322
- proxyServerUrl: string | null;
323
- idleUrl: string | null;
324
- idleTimeout: number | null;
325
- secureAuthenticationUrl: string | null;
326
- secureDirectoryUrl: string | null;
327
- secureIdleUrl: string | null;
328
- secureInformationUrl: string | null;
329
- secureMessageUrl: string | null;
330
- secureServicesUrl: string | null;
331
- mlppDomain: string | null;
332
- mlppIndication: string | null;
333
- mlppPreemption: string | null;
334
- confidentialAccessMode: string | null;
335
- confidentialAccessLevel: string | null;
336
- confidentialAccessLevelName: string | null;
337
- doNotDisturb: boolean | null;
338
- dndOption: string | null;
339
- dndIncomingCallAlert: string | null;
340
- disableSpeakerphone: boolean | null;
341
- disableSpeakerphoneAndHeadset: boolean | null;
342
- forwardingDelay: number | null;
343
- pcPort: boolean | null;
344
- settingsAccess: string | null;
345
- gratuitousARP: boolean | null;
346
- pcVoiceVlanAccess: string | null;
347
- videoCapabilities: string | null;
348
- webAccess: boolean | null;
349
- daysDisplayNotActive: number | null;
350
- displayOnTime: string | null;
351
- displayOnDuration: number | null;
352
- displayIdleTimeout: number | null;
353
- wirelessHeadsetHookswitchControl: boolean | null;
354
- minRingVolume: number | null;
355
- showAllCallsOnPL: boolean | null;
356
- lineMode: string | null;
357
- latentCapabilityRegistration: boolean | null;
358
- actionableAlert: boolean | null;
359
- revertToAllCalls: boolean | null;
360
- widebandHeadsetUIControl: boolean | null;
361
- widebandHeadset: boolean | null;
362
- authentication802: boolean | null;
363
- spanToPcPort: boolean | null;
364
- headsetMonitor: boolean | null;
365
- headsetRecording: boolean | null;
366
- updatedFields: string[];
367
- enableCdpSwPort: boolean | null;
368
- enableCdpPcPort: boolean | null;
369
- enableLldpPcPort: boolean | null;
370
- defaultWallpaperFile: string | null;
371
- analogGatewayPortInformation: string | null;
372
- loadServer: string | null;
373
- peerFirmwareSharing: string | null;
374
- }
375
- export interface LineInterface {
376
- directoryNumber: DirectoryNumber;
377
- callingSearchSpace: string | null;
378
- description: string | null;
379
- localId: string;
380
- entityChangeType: string | null;
381
- alertingName: string | null;
382
- asciiAlertingName: string | null;
383
- callForwardAll: CallForward;
384
- callForwardAllSecondaryCSS: CallForward;
385
- callForwardBusyInternal: CallForward;
386
- callForwardBusyExternal: CallForward;
387
- callForwardNoAnswerInternal: CallForward;
388
- callForwardNoAnswerExternal: CallForward;
389
- callForwardNoCoverageInternal: CallForward;
390
- callForwardNoCoverageExternal: CallForward;
391
- callForwardOnCTIFailure: CallForward;
392
- callForwardUnregisteredInternal: CallForward;
393
- callForwardUnregisteredExternal: CallForward;
394
- voiceMailProfile: string | null;
395
- noAnswerRingDuration: number | null;
396
- autoAnswer: string | null;
397
- callPickupGroup: string | null;
398
- aarSettings: AarSettings;
399
- parkMonitoringInternal: string | null;
400
- parkMonitoringExternal: string | null;
401
- urgentPriority: string | null;
402
- blfPresenceGroup: string | null;
403
- userHoldMOHAudioSourceId: string | null;
404
- userHoldMOHAudioSourceName: string | null;
405
- networkMOHAudioSourceId: string | null;
406
- networkMOHAudioSourceName: string | null;
407
- rejectAnonymousCall: boolean | null;
408
- enterpriseAltNum: string | null;
409
- e164AltNum: string | null;
410
- directoryUris: string[];
411
- callForwardAlternateParty: CallForward;
412
- mlppNoAnswerRingDuration: number | null;
413
- confidentialAccessMode: string | null;
414
- confidentialAccessLevel: string | null;
415
- confidentialAccessLevelName: string | null;
416
- callControlAgentProfile: string | null;
417
- holdReversionRingDuration: number | null;
418
- holdReversionNotificationInterval: number | null;
419
- partyEntranceTone: string | null;
420
- pstnFailover: string | null;
421
- newToUser: boolean | null;
422
- didPatterns: string[];
423
- }
424
- export interface CallForward {
425
- forwardToVoiceMail: boolean | null;
426
- destination: string | null;
427
- callingSearchSpace: string | null;
428
- duration: number | null;
429
- }
430
- export interface AarSettings {
431
- aarDestinationMask: string | null;
432
- aarGroup: string | null;
433
- aarVoiceMailEnabled: boolean | null;
434
- aarKeepCallHistory: boolean | null;
435
- }
436
- export interface DeviceProfile {
437
- }
438
- export interface Feature {
439
- }
440
- export interface UserTemplateUdpDeviceTypesRule {
441
- }
442
- export interface SharedDevice {
443
- }
444
- export interface SharedUser {
445
- }
446
- export interface Service {
447
- }
448
- export interface SpeedDial {
449
- }
450
- export interface BusyLampField {
451
- }
452
- export declare enum DnRangeType {
453
- extension = "EXTENSION",
454
- cpg = "CPG",
455
- callpark = "CALLPARK",
456
- huntgroup = "HUNTGROUP",
457
- meetme = "MEETME",
458
- did = "DID"
459
- }
460
- export interface DnRangeInterface {
461
- from: string;
462
- to: string;
463
- prefix: string;
464
- routePartition: string;
465
- dnType: DnRangeType;
466
- tempIdx: number;
467
- }
468
- export interface AvailablePhoneNumberRangeInterface {
469
- phoneNumberRange: DnRangeInterface;
470
- usedNumbers: string[];
471
- requestedNumber: string;
472
- unUsedNumbersWithDids: any[];
473
- }
474
- export interface AvailableRangeInterface {
475
- availableNumberList: AvailablePhoneNumberRangeInterface[];
476
- }
477
- export declare enum UserViewType {
478
- details = 0,
479
- devices = 1,
480
- lines = 2,
481
- snr = 3,
482
- features = 4,
483
- overview = 5
484
- }
485
- export interface ListUserInterface {
486
- userid: string;
487
- firstName?: string;
488
- lastName?: string;
489
- email?: string;
490
- telephoneNumber?: string;
491
- viewMode?: UserViewType;
492
- devices: DeviceInterface[];
493
- deviceProfiles: DeviceInterface[];
494
- lines?: LineInterface[];
495
- siteId?: number;
496
- siteName?: string;
497
- checked?: boolean;
498
- }
499
- export interface LdapUsersTableResponse {
500
- total: number;
501
- pageData: ListUserInterface[];
502
- }
@@ -1,19 +0,0 @@
1
- import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
- import { NotificationService } from '../../../shared/services/notification.service';
3
- import { Notification } from '../../../classes/notification';
4
- import * as i0 from "@angular/core";
5
- export declare class NotificationsComponent implements OnInit, OnDestroy {
6
- notificationService: NotificationService;
7
- private ref;
8
- list: Notification[];
9
- isReadMore: boolean;
10
- private listSubscription;
11
- constructor(notificationService: NotificationService, ref: ChangeDetectorRef);
12
- ngOnInit(): void;
13
- ngOnDestroy(): void;
14
- readMore(): void;
15
- removeNotification(notification: Notification): void;
16
- private listChangeSubscribe;
17
- static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "app-notification", never, {}, {}, never, never, false, never>;
19
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class TruncatePipe implements PipeTransform {
4
- transform(value: string | undefined, args?: any[]): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", false>;
7
- }
@@ -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,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class AppLoaderComponent {
3
- constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<AppLoaderComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<AppLoaderComponent, "app-loader", never, {}, {}, never, never, false, never>;
6
- }
@@ -1,23 +0,0 @@
1
- import { DeviceInterface, EndUserInterface, LineInterface, UserDetailsForm } from '../interfaces/user-creation-wizard.interfaces';
2
- export declare const ENTITY_CHANGE_TYPE: {
3
- readonly ADDED: "added";
4
- readonly UPDATED: "updated";
5
- readonly EXISTING: "existing";
6
- readonly REMOVED: "removed";
7
- };
8
- export interface CallInfoDisplayPayload {
9
- callerName?: string | null;
10
- callerNumber?: string | null;
11
- redirectedNumber?: string | null;
12
- dialedNumber?: string | null;
13
- }
14
- export interface DidPatternPayload {
15
- calledPartyTransformationMask?: string | null;
16
- pattern?: string | null;
17
- [key: string]: unknown;
18
- }
19
- export interface BuildSavableEndUserOptions {
20
- resolveDeviceName?: (index: number, device: DeviceInterface) => string;
21
- resolveDeviceProfileName?: (index: number, device: DeviceInterface) => string;
22
- }
23
- export declare function buildSavableEndUser(endUser: EndUserInterface, lines: LineInterface[], devices: DeviceInterface[], deviceProfiles: DeviceInterface[], form: UserDetailsForm, options?: BuildSavableEndUserOptions): EndUserInterface;
@@ -1,6 +0,0 @@
1
- import { ValidatorFn } from '@angular/forms';
2
- export interface DeviceNameValidatorOptions {
3
- regex: string;
4
- caption?: string | null;
5
- }
6
- export declare function deviceNameValidator(options: DeviceNameValidatorOptions): ValidatorFn;
@@ -1,8 +0,0 @@
1
- /**
2
- * Strips a leading device-prefix group from `deviceNameRegex`, returning the pattern
3
- * to validate the name field value (without matPrefix).
4
- *
5
- * - `([sS][eE][pP]|BAT)[0-9a-fA-F]{12}` → `[0-9a-fA-F]{12}`
6
- * - `[a-zA-Z0-9]{1,15}` → `[a-zA-Z0-9]{1,15}` (unchanged)
7
- */
8
- export declare function parseDeviceNameRegexBody(deviceNameRegex: string | null | undefined): string;