@tuki-io/tuki-widgets 0.0.6 → 0.0.8

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 (238) hide show
  1. package/README.md +9 -10
  2. package/esm2020/lib/widgets.component.mjs +22 -0
  3. package/esm2020/lib/widgets.module.mjs +21 -0
  4. package/esm2020/lib/widgets.service.mjs +14 -0
  5. package/esm2020/public-api.mjs +7 -0
  6. package/esm2020/tuki-io-tuki-widgets.mjs +5 -0
  7. package/esm2020/user-manage/public-api.mjs +7 -0
  8. package/esm2020/user-manage/src/app.constants.mjs +38 -0
  9. package/esm2020/user-manage/src/classes/device.mjs +7 -0
  10. package/esm2020/user-manage/src/classes/line.mjs +9 -0
  11. package/esm2020/user-manage/src/classes/notification.mjs +32 -0
  12. package/esm2020/user-manage/src/classes/pagination.mjs +8 -0
  13. package/esm2020/user-manage/src/classes/simplified-user.mjs +82 -0
  14. package/esm2020/user-manage/src/classes/table-data.mjs +2 -0
  15. package/esm2020/user-manage/src/classes/user-list.mjs +10 -0
  16. package/esm2020/user-manage/src/common-functions.mjs +19 -0
  17. package/esm2020/user-manage/src/environments/environment.mjs +11 -0
  18. package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +37 -0
  19. package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -0
  20. package/esm2020/user-manage/src/material.module.mjs +188 -0
  21. package/esm2020/user-manage/src/notifications/notification.component.mjs +35 -0
  22. package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +25 -0
  23. package/esm2020/user-manage/src/services/api.service.mjs +79 -0
  24. package/esm2020/user-manage/src/services/notification.service.mjs +62 -0
  25. package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +25 -0
  26. package/esm2020/user-manage/src/services/site-settings.service.mjs +36 -0
  27. package/esm2020/user-manage/src/services/user.service.mjs +108 -0
  28. package/esm2020/user-manage/src/services/users-search.service.mjs +49 -0
  29. package/esm2020/user-manage/src/services/utils.service.mjs +73 -0
  30. package/esm2020/user-manage/src/user-info/user-info.component.mjs +20 -0
  31. package/esm2020/user-manage/src/user-manage-widget.component.mjs +162 -0
  32. package/esm2020/user-manage/src/user-manage.module.mjs +84 -0
  33. package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +14 -0
  34. package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +43 -0
  35. package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +5 -0
  36. package/esm2020/users-list/public-api.mjs +9 -0
  37. package/esm2020/users-list/src/app.constants.mjs +35 -0
  38. package/esm2020/users-list/src/classes/device.mjs +7 -0
  39. package/esm2020/users-list/src/classes/line.mjs +9 -0
  40. package/esm2020/users-list/src/classes/notification.mjs +31 -0
  41. package/esm2020/users-list/src/classes/pagination.mjs +8 -0
  42. package/esm2020/users-list/src/classes/simlified-user.mjs +50 -0
  43. package/esm2020/users-list/src/classes/table-data.mjs +2 -0
  44. package/esm2020/users-list/src/classes/user-list.mjs +10 -0
  45. package/esm2020/users-list/src/material.module.mjs +188 -0
  46. package/esm2020/users-list/src/services/api.service.mjs +78 -0
  47. package/esm2020/users-list/src/services/events-communication.service.mjs +14 -0
  48. package/esm2020/users-list/src/services/notification.service.mjs +62 -0
  49. package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +25 -0
  50. package/esm2020/users-list/src/services/user.service.mjs +105 -0
  51. package/esm2020/users-list/src/services/users-search.service.mjs +49 -0
  52. package/esm2020/users-list/src/users-list.component.mjs +78 -0
  53. package/esm2020/users-list/src/users-list.module.mjs +58 -0
  54. package/esm2020/users-list/src/utils/common-functions.mjs +19 -0
  55. package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +43 -0
  56. package/esm2020/users-list/src/utils/utils.service.mjs +73 -0
  57. package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +5 -0
  58. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +1235 -0
  59. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
  60. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +872 -0
  61. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
  62. package/fesm2015/tuki-io-tuki-widgets.mjs +63 -0
  63. package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -0
  64. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +1222 -0
  65. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -0
  66. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +869 -0
  67. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -0
  68. package/fesm2020/tuki-io-tuki-widgets.mjs +63 -0
  69. package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -0
  70. package/index.d.ts +5 -0
  71. package/lib/widgets.component.d.ts +8 -0
  72. package/lib/widgets.module.d.ts +7 -0
  73. package/lib/widgets.service.d.ts +6 -0
  74. package/package.json +44 -36
  75. package/{projects/tuki/widgets/src/public-api.ts → public-api.d.ts} +0 -4
  76. package/user-manage/index.d.ts +5 -0
  77. package/user-manage/src/app.constants.d.ts +20 -0
  78. package/user-manage/src/classes/device.d.ts +224 -0
  79. package/user-manage/src/classes/line.d.ts +116 -0
  80. package/user-manage/src/classes/notification.d.ts +18 -0
  81. package/user-manage/src/classes/pagination.d.ts +13 -0
  82. package/user-manage/src/classes/simplified-user.d.ts +41 -0
  83. package/user-manage/src/classes/table-data.d.ts +5 -0
  84. package/user-manage/src/classes/user-list.d.ts +32 -0
  85. package/user-manage/src/common-functions.d.ts +1 -0
  86. package/user-manage/src/environments/environment.d.ts +9 -0
  87. package/user-manage/src/interseptors/auth.interceptor.d.ts +9 -0
  88. package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -0
  89. package/user-manage/src/material.module.d.ts +28 -0
  90. package/user-manage/src/notifications/notification.component.d.ts +19 -0
  91. package/user-manage/src/removeKynFromIBM.service.d.ts +8 -0
  92. package/user-manage/src/services/api.service.d.ts +21 -0
  93. package/user-manage/src/services/notification.service.d.ts +18 -0
  94. package/user-manage/src/services/removeKynFromIBM.service.d.ts +8 -0
  95. package/user-manage/src/services/site-settings.service.d.ts +9 -0
  96. package/user-manage/src/services/user.service.d.ts +26 -0
  97. package/user-manage/src/services/users-search.service.d.ts +25 -0
  98. package/user-manage/src/services/utils.service.d.ts +9 -0
  99. package/user-manage/src/user-info/user-info.component.d.ts +9 -0
  100. package/user-manage/src/user-manage-widget.component.d.ts +32 -0
  101. package/user-manage/src/user-manage.module.d.ts +18 -0
  102. package/user-manage/src/utils/app-loader/app-loader.d.ts +6 -0
  103. package/user-manage/src/utils/pagination/pagination.component.d.ts +18 -0
  104. package/users-list/index.d.ts +5 -0
  105. package/users-list/src/app.constants.d.ts +17 -0
  106. package/users-list/src/classes/device.d.ts +224 -0
  107. package/users-list/src/classes/line.d.ts +116 -0
  108. package/users-list/src/classes/notification.d.ts +18 -0
  109. package/users-list/src/classes/pagination.d.ts +13 -0
  110. package/users-list/src/classes/simlified-user.d.ts +25 -0
  111. package/users-list/src/classes/table-data.d.ts +5 -0
  112. package/users-list/src/classes/user-list.d.ts +32 -0
  113. package/users-list/src/material.module.d.ts +28 -0
  114. package/users-list/src/services/api.service.d.ts +21 -0
  115. package/users-list/src/services/events-communication.service.d.ts +8 -0
  116. package/users-list/src/services/notification.service.d.ts +18 -0
  117. package/users-list/src/services/removeKynFromIBM.service.d.ts +8 -0
  118. package/users-list/src/services/user.service.d.ts +26 -0
  119. package/users-list/src/services/users-search.service.d.ts +25 -0
  120. package/users-list/src/users-list.component.d.ts +35 -0
  121. package/users-list/src/users-list.module.d.ts +12 -0
  122. package/users-list/src/utils/common-functions.d.ts +1 -0
  123. package/users-list/src/utils/pagination/pagination.component.d.ts +18 -0
  124. package/users-list/src/utils/utils.service.d.ts +9 -0
  125. package/.editorconfig +0 -16
  126. package/.vscode/extensions.json +0 -4
  127. package/.vscode/launch.json +0 -20
  128. package/.vscode/tasks.json +0 -42
  129. package/angular.json +0 -41
  130. package/projects/tuki/widgets/README.md +0 -24
  131. package/projects/tuki/widgets/karma.conf.js +0 -44
  132. package/projects/tuki/widgets/ng-package.json +0 -7
  133. package/projects/tuki/widgets/package.json +0 -13
  134. package/projects/tuki/widgets/src/lib/widgets.component.spec.ts +0 -23
  135. package/projects/tuki/widgets/src/lib/widgets.component.ts +0 -20
  136. package/projects/tuki/widgets/src/lib/widgets.module.ts +0 -16
  137. package/projects/tuki/widgets/src/lib/widgets.service.spec.ts +0 -16
  138. package/projects/tuki/widgets/src/lib/widgets.service.ts +0 -9
  139. package/projects/tuki/widgets/src/test.ts +0 -27
  140. package/projects/tuki/widgets/styles/_variables.scss +0 -90
  141. package/projects/tuki/widgets/styles/form.scss +0 -231
  142. package/projects/tuki/widgets/styles/icons.scss +0 -32
  143. package/projects/tuki/widgets/styles/styles.scss +0 -110
  144. package/projects/tuki/widgets/styles/tables.scss +0 -30
  145. package/projects/tuki/widgets/tsconfig.lib.json +0 -36
  146. package/projects/tuki/widgets/tsconfig.lib.prod.json +0 -10
  147. package/projects/tuki/widgets/tsconfig.spec.json +0 -17
  148. package/projects/tuki/widgets/user-manage/ng-package.json +0 -7
  149. package/projects/tuki/widgets/user-manage/src/app.constants.ts +0 -38
  150. package/projects/tuki/widgets/user-manage/src/classes/device.ts +0 -225
  151. package/projects/tuki/widgets/user-manage/src/classes/line.ts +0 -117
  152. package/projects/tuki/widgets/user-manage/src/classes/notification.ts +0 -39
  153. package/projects/tuki/widgets/user-manage/src/classes/pagination.ts +0 -18
  154. package/projects/tuki/widgets/user-manage/src/classes/simplified-user.ts +0 -128
  155. package/projects/tuki/widgets/user-manage/src/classes/table-data.ts +0 -6
  156. package/projects/tuki/widgets/user-manage/src/classes/user-interface.ts +0 -225
  157. package/projects/tuki/widgets/user-manage/src/classes/user-list.ts +0 -40
  158. package/projects/tuki/widgets/user-manage/src/classes/user.ts +0 -8
  159. package/projects/tuki/widgets/user-manage/src/common-functions.ts +0 -16
  160. package/projects/tuki/widgets/user-manage/src/environments/environment.prod.ts +0 -9
  161. package/projects/tuki/widgets/user-manage/src/environments/environment.ts +0 -10
  162. package/projects/tuki/widgets/user-manage/src/interseptors/auth.interceptor.ts +0 -36
  163. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.html +0 -50
  164. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.scss +0 -3
  165. package/projects/tuki/widgets/user-manage/src/lazy-loading-select/lazy-loading-select.component.ts +0 -81
  166. package/projects/tuki/widgets/user-manage/src/material.module.ts +0 -85
  167. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.html +0 -33
  168. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.scss +0 -84
  169. package/projects/tuki/widgets/user-manage/src/notifications/notification.component.ts +0 -46
  170. package/projects/tuki/widgets/user-manage/src/removeKynFromIBM.service.ts +0 -25
  171. package/projects/tuki/widgets/user-manage/src/services/api.service.ts +0 -89
  172. package/projects/tuki/widgets/user-manage/src/services/notification.service.ts +0 -68
  173. package/projects/tuki/widgets/user-manage/src/services/removeKynFromIBM.service.ts +0 -25
  174. package/projects/tuki/widgets/user-manage/src/services/site-settings.service.ts +0 -35
  175. package/projects/tuki/widgets/user-manage/src/services/user.service.ts +0 -120
  176. package/projects/tuki/widgets/user-manage/src/services/users-search.service.ts +0 -58
  177. package/projects/tuki/widgets/user-manage/src/services/utils.service.ts +0 -71
  178. package/projects/tuki/widgets/user-manage/src/styles/_variables.scss +0 -90
  179. package/projects/tuki/widgets/user-manage/src/styles/form.scss +0 -231
  180. package/projects/tuki/widgets/user-manage/src/styles/icons.scss +0 -32
  181. package/projects/tuki/widgets/user-manage/src/styles/styles.scss +0 -110
  182. package/projects/tuki/widgets/user-manage/src/styles/tables.scss +0 -30
  183. package/projects/tuki/widgets/user-manage/src/user-details/notification.service.ts +0 -68
  184. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.html +0 -32
  185. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.scss +0 -53
  186. package/projects/tuki/widgets/user-manage/src/user-info/user-info.component.ts +0 -19
  187. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.html +0 -291
  188. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.scss +0 -461
  189. package/projects/tuki/widgets/user-manage/src/user-manage-widget.component.ts +0 -163
  190. package/projects/tuki/widgets/user-manage/src/user-manage.module.ts +0 -53
  191. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.html +0 -6
  192. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.component.scss +0 -11
  193. package/projects/tuki/widgets/user-manage/src/utils/app-loader/app-loader.ts +0 -13
  194. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.html +0 -26
  195. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.scss +0 -41
  196. package/projects/tuki/widgets/user-manage/src/utils/pagination/pagination.component.ts +0 -41
  197. package/projects/tuki/widgets/users-list/ng-package.json +0 -6
  198. package/projects/tuki/widgets/users-list/src/app.constants.ts +0 -35
  199. package/projects/tuki/widgets/users-list/src/classes/device.ts +0 -225
  200. package/projects/tuki/widgets/users-list/src/classes/line.ts +0 -117
  201. package/projects/tuki/widgets/users-list/src/classes/notification.ts +0 -38
  202. package/projects/tuki/widgets/users-list/src/classes/pagination.ts +0 -18
  203. package/projects/tuki/widgets/users-list/src/classes/simlified-user.ts +0 -74
  204. package/projects/tuki/widgets/users-list/src/classes/table-data.ts +0 -6
  205. package/projects/tuki/widgets/users-list/src/classes/user-interface.ts +0 -225
  206. package/projects/tuki/widgets/users-list/src/classes/user-list.ts +0 -40
  207. package/projects/tuki/widgets/users-list/src/classes/user.ts +0 -8
  208. package/projects/tuki/widgets/users-list/src/material.module.ts +0 -84
  209. package/projects/tuki/widgets/users-list/src/services/api.service.ts +0 -87
  210. package/projects/tuki/widgets/users-list/src/services/events-communication.service.ts +0 -11
  211. package/projects/tuki/widgets/users-list/src/services/notification.service.ts +0 -68
  212. package/projects/tuki/widgets/users-list/src/services/removeKynFromIBM.service.ts +0 -25
  213. package/projects/tuki/widgets/users-list/src/services/user.service.ts +0 -117
  214. package/projects/tuki/widgets/users-list/src/services/users-search.service.ts +0 -58
  215. package/projects/tuki/widgets/users-list/src/users-list.component.css +0 -4
  216. package/projects/tuki/widgets/users-list/src/users-list.component.css.map +0 -1
  217. package/projects/tuki/widgets/users-list/src/users-list.component.html +0 -39
  218. package/projects/tuki/widgets/users-list/src/users-list.component.scss +0 -9
  219. package/projects/tuki/widgets/users-list/src/users-list.component.ts +0 -85
  220. package/projects/tuki/widgets/users-list/src/users-list.module.ts +0 -36
  221. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css +0 -11
  222. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.css.map +0 -1
  223. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.html +0 -6
  224. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.component.scss +0 -11
  225. package/projects/tuki/widgets/users-list/src/utils/app-loader/app-loader.ts +0 -13
  226. package/projects/tuki/widgets/users-list/src/utils/common-functions.ts +0 -16
  227. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.html +0 -33
  228. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.scss +0 -84
  229. package/projects/tuki/widgets/users-list/src/utils/notifications/notification.component.ts +0 -46
  230. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css +0 -45
  231. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.css.map +0 -1
  232. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.html +0 -26
  233. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.scss +0 -41
  234. package/projects/tuki/widgets/users-list/src/utils/pagination/pagination.component.ts +0 -41
  235. package/projects/tuki/widgets/users-list/src/utils/utils.service.ts +0 -71
  236. package/tsconfig.json +0 -46
  237. /package/{projects/tuki/widgets/user-manage/public-api.ts → user-manage/public-api.d.ts} +0 -0
  238. /package/{projects/tuki/widgets/users-list/public-api.ts → users-list/public-api.d.ts} +0 -0
@@ -0,0 +1,224 @@
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
+ }
@@ -0,0 +1,116 @@
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
+ }
@@ -0,0 +1,18 @@
1
+ export declare enum NotificationType {
2
+ info = "info",
3
+ error = "error",
4
+ success = "success",
5
+ warning = "warning"
6
+ }
7
+ export declare class Notification {
8
+ id?: number;
9
+ type?: NotificationType;
10
+ message?: string;
11
+ ttl: number;
12
+ timerId?: any;
13
+ constructor(data: any);
14
+ isInfo(): boolean;
15
+ isError(): boolean;
16
+ isSuccess(): boolean;
17
+ isWarning(): boolean;
18
+ }
@@ -0,0 +1,13 @@
1
+ export interface PaginationDataDtoInterface {
2
+ total: number;
3
+ pageSizeOptions?: number[];
4
+ pageSize: number;
5
+ pageIndex: number;
6
+ }
7
+ export declare class PaginationDataDto {
8
+ total?: number;
9
+ pageSizeOptions?: number[];
10
+ pageSize?: number;
11
+ pageIndex?: number;
12
+ constructor(pagination: PaginationDataDtoInterface);
13
+ }
@@ -0,0 +1,25 @@
1
+ import { FormGroup } from '@angular/forms';
2
+ export declare class SimplifiedUser {
3
+ userid: string;
4
+ email: string;
5
+ firstName: string;
6
+ lastName: string;
7
+ token: string;
8
+ viewMode: string;
9
+ hasModifiedCache: boolean;
10
+ newUserId?: string;
11
+ editMode: boolean;
12
+ form: FormGroup;
13
+ constructor(user?: any);
14
+ initForm(): void;
15
+ toggleEditMode(): void;
16
+ getSavableData(): {};
17
+ equal(userToCompare?: SimplifiedUser): boolean;
18
+ }
19
+ export interface SimplifiedUserInterface {
20
+ userid: string;
21
+ email: string;
22
+ firstName: string;
23
+ lastName: string;
24
+ form?: FormGroup;
25
+ }
@@ -0,0 +1,5 @@
1
+ export interface TableDataInterface {
2
+ total: number;
3
+ pageData: Array<any>;
4
+ systemSettings?: any;
5
+ }
@@ -0,0 +1,32 @@
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
+ }
@@ -0,0 +1,28 @@
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
+ }
@@ -0,0 +1,21 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { TableDataInterface } from '../classes/table-data';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class APIService {
6
+ private httpClient;
7
+ apiUrl: string;
8
+ token: any;
9
+ constructor(httpClient: HttpClient);
10
+ fetch(url: string, params?: {}, cache?: boolean): Observable<Object>;
11
+ post(url: string, body: any, params?: {}): any;
12
+ postExtended(url: string, body?: null, params?: {}, headers?: {}): Observable<import("@angular/common/http").HttpResponse<Object>>;
13
+ put(url: string, body?: null, params?: {}): Observable<Object>;
14
+ delete(url: string, params?: {}): Observable<Object>;
15
+ fetchPagination(url: string, pageSize: number, pageNumber: number, additionalParams?: {}, cache?: boolean): Observable<TableDataInterface>;
16
+ private prepareEncodedParams;
17
+ private getHeaders;
18
+ private getParameterByName;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<APIService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<APIService>;
21
+ }
@@ -0,0 +1,8 @@
1
+ import { Subject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class EventsCommunicationService {
4
+ onSuccessfulLoginEvent: Subject<unknown>;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<EventsCommunicationService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<EventsCommunicationService>;
8
+ }
@@ -0,0 +1,18 @@
1
+ import { Notification } from '../classes/notification';
2
+ import { Subject } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NotificationService {
5
+ listChange: Subject<unknown>;
6
+ private max;
7
+ private list;
8
+ constructor();
9
+ error(message: string, ttl?: number): void;
10
+ success(message: string, ttl?: number): void;
11
+ warning(message: string, ttl?: number): void;
12
+ info(message: string, ttl?: number): void;
13
+ private notify;
14
+ remove(notification: Notification, auto?: boolean): void;
15
+ private removeInactiveSessionError;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
18
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class RemoveKynFromIBMService {
3
+ constructor();
4
+ removeCUCMS(date: any, customerId: number): any;
5
+ removeCUCS(date: any, customerId: number): any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<RemoveKynFromIBMService, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<RemoveKynFromIBMService>;
8
+ }
@@ -0,0 +1,26 @@
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
+ }
@@ -0,0 +1,25 @@
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
+ }
@@ -0,0 +1,35 @@
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
+ apiUrl: string;
20
+ dataPending: boolean;
21
+ users: ListUser[];
22
+ dataSource: MatTableDataSource<ListUser>;
23
+ displayedColumns: string[];
24
+ private searchSubscription;
25
+ get form(): FormGroup;
26
+ constructor(userService: UserService, apiService: APIService, notifications: NotificationService, usersSearchService: UsersSearchService);
27
+ ngOnInit(): void;
28
+ pageNumberChangeEvent(perPageNumber: number): void;
29
+ pageEvent(event: PageEvent): void;
30
+ onUserClick(user: ListUser): void;
31
+ private initializeDataSource;
32
+ private runSearch;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<UsersListComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<UsersListComponent, "app-users-list", never, { "token": "token"; "customerId": "customerId"; "apiUrl": "apiUrl"; }, { "openUser": "openUser"; }, never, never, false, never>;
35
+ }
@@ -0,0 +1,12 @@
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
+ }
@@ -0,0 +1 @@
1
+ export declare const getSavableData: (model: any, exclude?: Array<string>) => {};
@@ -0,0 +1,18 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { PaginationDataDto } from '../../classes/pagination';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PaginationComponent implements OnInit {
5
+ pagination: PaginationDataDto;
6
+ showPageSizeOptions: boolean;
7
+ showRefreshButton: boolean;
8
+ lengthPending: boolean;
9
+ pageEmitter: EventEmitter<any>;
10
+ pageNumberChangeEmitter: EventEmitter<any>;
11
+ pageSizeOptions: number[];
12
+ constructor();
13
+ ngOnInit(): void;
14
+ pageEvent(event: any): void;
15
+ changePerPageNumber(event: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "app-pagination", never, { "pagination": "pagination"; "showPageSizeOptions": "showPageSizeOptions"; "showRefreshButton": "showRefreshButton"; "lengthPending": "lengthPending"; }, { "pageEmitter": "pageEmitter"; "pageNumberChangeEmitter": "pageNumberChangeEmitter"; }, never, never, false, never>;
18
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class UtilsService {
3
+ static sortSortArrayByProperty(array: [], sortBy: string): [] | null;
4
+ static diff(origObject: any, updatedObj: any, path: string, keysToIgnore?: string[]): any;
5
+ static formatIfEmpty(value: any): any;
6
+ static differs(obj1: any, obj2: any): boolean;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<UtilsService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<UtilsService>;
9
+ }