@provoly/hypervisor 1.4.6 → 1.4.7-7.2

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 (71) hide show
  1. package/esm2022/src/lib/auth/hypervisor-roles.contant.mjs +1 -1
  2. package/esm2022/src/lib/event/detail/add-event/add-event.component.mjs +1 -1
  3. package/esm2022/src/lib/event/detail/event-detail.component.mjs +297 -63
  4. package/esm2022/src/lib/event/detail/event-details-tooltip.component.mjs +12 -7
  5. package/esm2022/src/lib/event/filters/date/date-filter.component.mjs +7 -3
  6. package/esm2022/src/lib/event/filters/on/click/event-filters.component.mjs +10 -3
  7. package/esm2022/src/lib/event/filters/text/text-filter.component.mjs +3 -3
  8. package/esm2022/src/lib/event/list/event-list.component.mjs +8 -5
  9. package/esm2022/src/lib/event/procedure-association-modal/procedure-association-modal.component.mjs +37 -10
  10. package/esm2022/src/lib/event-summary/item/event-summary-item.component.mjs +3 -3
  11. package/esm2022/src/lib/event-summary/page/event-summary-page.component.mjs +7 -4
  12. package/esm2022/src/lib/general/comments/comments.component.mjs +10 -4
  13. package/esm2022/src/lib/general/display-date.function.mjs +3 -2
  14. package/esm2022/src/lib/general/i18n/en.translations.mjs +22 -6
  15. package/esm2022/src/lib/general/i18n/fr.translations.mjs +28 -8
  16. package/esm2022/src/lib/general/icon-display/icon-display.component.mjs +3 -3
  17. package/esm2022/src/lib/general/last-events/last-events.component.mjs +34 -4
  18. package/esm2022/src/lib/general/procedure-actions/action-menu.component.mjs +3 -3
  19. package/esm2022/src/lib/general/procedure-actions/action-parameters/action-parameter.component.mjs +5 -2
  20. package/esm2022/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.mjs +4 -2
  21. package/esm2022/src/lib/general/procedure-actions/action-parameters/email/email-action-parameter.component.mjs +2 -2
  22. package/esm2022/src/lib/general/procedure-actions/action-parameters/phone/phone-action-parameter.component.mjs +3 -2
  23. package/esm2022/src/lib/general/procedure-actions/action-parameters/service/create-service.component.mjs +19 -20
  24. package/esm2022/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.mjs +30 -7
  25. package/esm2022/src/lib/general/procedure-actions/actions-types.constant.mjs +3 -3
  26. package/esm2022/src/lib/general/procedure-actions/procedure-actions.component.mjs +33 -10
  27. package/esm2022/src/lib/general/public-api.mjs +2 -1
  28. package/esm2022/src/lib/general/truncate-pipe/truncate.pipe.mjs +19 -0
  29. package/esm2022/src/lib/hypervisor.module.mjs +12 -6
  30. package/esm2022/src/lib/model/event/hyp-event-category.type.mjs +3 -3
  31. package/esm2022/src/lib/model/event/hyp-event-detail.interface.mjs +3 -2
  32. package/esm2022/src/lib/model/event/hyp-event-tooltip.interface.mjs +1 -1
  33. package/esm2022/src/lib/model/hyp-service-status.type.mjs +2 -2
  34. package/esm2022/src/lib/procedure/model-detail/procedure-model-detail.component.mjs +60 -23
  35. package/esm2022/src/lib/procedure/model-list/procedure-list.component.mjs +7 -4
  36. package/esm2022/src/lib/store/service/service.service.mjs +3 -2
  37. package/fesm2022/provoly-hypervisor.mjs +630 -169
  38. package/fesm2022/provoly-hypervisor.mjs.map +1 -1
  39. package/package.json +2 -2
  40. package/src/lib/auth/hypervisor-roles.contant.d.ts +2 -1
  41. package/src/lib/event/detail/event-detail.component.d.ts +44 -8
  42. package/src/lib/event/detail/event-details-tooltip.component.d.ts +4 -1
  43. package/src/lib/event/filters/text/text-filter.component.d.ts +1 -1
  44. package/src/lib/event/procedure-association-modal/procedure-association-modal.component.d.ts +4 -1
  45. package/src/lib/general/comments/comments.component.d.ts +2 -1
  46. package/src/lib/general/display-date.function.d.ts +1 -1
  47. package/src/lib/general/i18n/en.translations.d.ts +17 -1
  48. package/src/lib/general/i18n/fr.translations.d.ts +21 -1
  49. package/src/lib/general/last-events/last-events.component.d.ts +10 -3
  50. package/src/lib/general/procedure-actions/action-parameters/action-parameter.component.d.ts +2 -1
  51. package/src/lib/general/procedure-actions/action-parameters/base-parameter-action.component.d.ts +2 -1
  52. package/src/lib/general/procedure-actions/action-parameters/phone/phone-action-parameter.component.d.ts +2 -1
  53. package/src/lib/general/procedure-actions/action-parameters/service/create-service.component.d.ts +4 -9
  54. package/src/lib/general/procedure-actions/action-parameters/service/service-action-display.component.d.ts +11 -4
  55. package/src/lib/general/procedure-actions/procedure-actions.component.d.ts +8 -2
  56. package/src/lib/general/public-api.d.ts +1 -0
  57. package/src/lib/general/truncate-pipe/truncate.pipe.d.ts +7 -0
  58. package/src/lib/hypervisor.module.d.ts +2 -1
  59. package/src/lib/model/event/hyp-event-detail.interface.d.ts +7 -3
  60. package/src/lib/model/event/hyp-event-tooltip.interface.d.ts +1 -0
  61. package/src/lib/model/procedure/hyp-procedure.interface.d.ts +4 -2
  62. package/src/lib/procedure/model-detail/procedure-model-detail.component.d.ts +11 -5
  63. package/src/lib/procedure/model-list/procedure-list.component.d.ts +2 -1
  64. package/src/lib/store/service/service.service.d.ts +2 -1
  65. package/styles/components/_a-chip-status.scss +3 -0
  66. package/styles/components/_m-hvy-event-summary-item.scss +7 -18
  67. package/styles/components/_o-hvy-comments.scss +21 -0
  68. package/styles/components/_o-hvy-event-detail.scss +26 -1
  69. package/styles/components/_o-hvy-events-table.scss +4 -0
  70. package/styles/components/_o-hvy-last-events.scss +19 -0
  71. package/styles/components/_o-hvy-procedure-actions.scss +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/hypervisor",
3
- "version": "1.4.6",
3
+ "version": "1.4.7-7.2",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -14,7 +14,7 @@
14
14
  "rxjs": "^7.4.0",
15
15
  "uuid": "^8.3.2 || ^9.0.0",
16
16
  "zone.js": "~0.14.3",
17
- "@provoly/dashboard": "^1.4.4"
17
+ "@provoly/dashboard": "^1.4.39"
18
18
  },
19
19
  "dependencies": {
20
20
  "tslib": "^2.6.2"
@@ -4,5 +4,6 @@ export declare const enum HYPERVISOR_ROLES {
4
4
  EVENT_PROC_WRITE = "event_proc_write",
5
5
  EQUIPMENT_MAP_READ = "equipment_map_read",
6
6
  PROC_MODEL_READ = "proc_model_read",
7
- PROC_MODEL_WRITE = "proc_model_write"
7
+ PROC_MODEL_WRITE = "proc_model_write",
8
+ EVENT_PROC_COMMENT_WRITE = "event_proc_comment_write"
8
9
  }
@@ -6,13 +6,14 @@ import { HypEquipment } from '../../model/hyp-equipment.interface';
6
6
  import { EquipmentService } from '../../store/equipment/equipment.service';
7
7
  import { Store } from '@ngrx/store';
8
8
  import { Overlay, OverlayRef } from '@angular/cdk/overlay';
9
- import { BehaviorSubject, Observable, Subject } from 'rxjs';
9
+ import { Observable, Subject } from 'rxjs';
10
10
  import { HypCommentsService } from '../../store/comments/comments.service';
11
11
  import { HypServiceTooltip } from '../../model/event/hyp-event-tooltip.interface';
12
12
  import { HvyEventDetailsTooltipComponent } from './event-details-tooltip.component';
13
13
  import { EventService } from '../../store/event/event.service';
14
14
  import { HypAction } from '../../model/procedure/hyp-action.interface';
15
15
  import { HypComment } from '../../model/comment.interface';
16
+ import { Actions } from '@ngrx/effects';
16
17
  import * as i0 from "@angular/core";
17
18
  export type ChangeStatusContext = {
18
19
  comment: string;
@@ -28,6 +29,23 @@ export interface HypEventDetailsWithMatching extends HypEventDetails {
28
29
  html: string;
29
30
  displayName: string;
30
31
  }
32
+ export declare const EVENT_DETAIL_ACCESS_FN: {
33
+ value: (event: HypEventDetails, component: EventDetailComponent) => {
34
+ name: boolean;
35
+ category: boolean;
36
+ subCategory: boolean;
37
+ criticality: boolean;
38
+ description: boolean;
39
+ address: boolean;
40
+ source: boolean;
41
+ domain: boolean;
42
+ eqName: boolean;
43
+ eqEntity: boolean;
44
+ startDate: boolean;
45
+ endDate: boolean;
46
+ parent: boolean;
47
+ };
48
+ };
31
49
  export declare class EventDetailComponent extends SubscriptionnerDirective {
32
50
  private equipmentService;
33
51
  private store;
@@ -37,6 +55,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
37
55
  private pryDialog;
38
56
  private commentsService;
39
57
  private eventService;
58
+ private actions$;
40
59
  opened: boolean[];
41
60
  criticalities: string[];
42
61
  _events: HypEventDetails[];
@@ -58,14 +77,13 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
58
77
  canCloseSome: boolean;
59
78
  changeStatusContext: ChangeStatusContext;
60
79
  title?: string;
61
- me?: string | null;
62
80
  readonly: boolean | null;
63
81
  readonlyProcedure: boolean | null;
64
82
  enableEditActions: boolean | null;
83
+ readOnlyComment: boolean | null;
65
84
  overlayRef?: OverlayRef;
66
85
  confirmDialog: TemplateRef<any>;
67
86
  comfirmDialogOpened: EventEmitter<ChangeStatusContext>;
68
- triggerComment$: BehaviorSubject<void>;
69
87
  onEquipmentSearch$: Subject<number>;
70
88
  equipmentSelectValue: (string | HypEquipment | undefined)[];
71
89
  equipments$: Observable<HypEquipmentWithMatching[]>;
@@ -74,12 +92,20 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
74
92
  eventSelectValue: (string | HypEventDetails | undefined)[];
75
93
  events$: Observable<HypEventDetailsWithMatching[]>;
76
94
  commented: EventEmitter<{
77
- event: HypEventDetails;
95
+ action: HypAction;
78
96
  comments: HypComment[];
79
97
  } | {
80
- action: HypAction;
98
+ event: HypEventDetails;
81
99
  comments: HypComment[];
82
- }>;
100
+ }[]>;
101
+ profile: {
102
+ sub: string | undefined;
103
+ userName: string | undefined;
104
+ } | null;
105
+ set me(me: {
106
+ sub: string | undefined;
107
+ userName: string | undefined;
108
+ } | null);
83
109
  set events(events: HypEventDetails[]);
84
110
  set procedure(procedure: HypProcedure);
85
111
  set cancelModifications(evt: any);
@@ -87,7 +113,15 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
87
113
  index: number;
88
114
  equipmentName?: string;
89
115
  });
90
- constructor(equipmentService: EquipmentService, store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef, i18nService: PryI18nService, pryDialog: PryDialogService, commentsService: HypCommentsService, eventService: EventService);
116
+ selectedEquipment: boolean;
117
+ constructor(equipmentService: EquipmentService, store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef, i18nService: PryI18nService, pryDialog: PryDialogService, commentsService: HypCommentsService, eventService: EventService, actions$: Actions);
118
+ private setCreatorForEvents;
119
+ private getComboBoxRegExp;
120
+ filterEquipmentsIfSelected(index: number, search: string, equipments: HypEquipment[]): HypEquipment[];
121
+ get me(): {
122
+ sub: string | undefined;
123
+ userName: string | undefined;
124
+ } | null;
91
125
  get events(): HypEventDetails[];
92
126
  get canAssociateProcedure(): boolean;
93
127
  get procedure(): HypProcedure | undefined;
@@ -127,6 +161,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
127
161
  };
128
162
  protected readonly subCategories: (string | undefined)[];
129
163
  modifiedActions($event: any): void;
164
+ refreshActions($event: HypAction[]): void;
130
165
  openAssociationModal(): void;
131
166
  openDeleteModal(): void;
132
167
  private convertDate;
@@ -148,6 +183,7 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
148
183
  id: string;
149
184
  message: string;
150
185
  }): void;
186
+ ngOnDestroy(): void;
151
187
  static ɵfac: i0.ɵɵFactoryDeclaration<EventDetailComponent, never>;
152
- static ɵcmp: i0.ɵɵComponentDeclaration<EventDetailComponent, "hvy-event-detail", never, { "title": { "alias": "title"; "required": false; }; "me": { "alias": "me"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "readonlyProcedure": { "alias": "readonlyProcedure"; "required": false; }; "enableEditActions": { "alias": "enableEditActions"; "required": false; }; "events": { "alias": "events"; "required": false; }; "procedure": { "alias": "procedure"; "required": false; }; "cancelModifications": { "alias": "cancelModifications"; "required": false; }; "equipmentName": { "alias": "equipmentName"; "required": false; }; }, { "modifiedEvents": "modifiedEvents"; "modifiedProcedure": "modifiedProcedure"; "eventErrors": "eventErrors"; "addedEvent": "addedEvent"; "comfirmDialogOpened": "comfirmDialogOpened"; "commented": "commented"; }, never, never, false, never>;
188
+ static ɵcmp: i0.ɵɵComponentDeclaration<EventDetailComponent, "hvy-event-detail", never, { "title": { "alias": "title"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "readonlyProcedure": { "alias": "readonlyProcedure"; "required": false; }; "enableEditActions": { "alias": "enableEditActions"; "required": false; }; "readOnlyComment": { "alias": "readOnlyComment"; "required": false; }; "me": { "alias": "me"; "required": false; }; "events": { "alias": "events"; "required": false; }; "procedure": { "alias": "procedure"; "required": false; }; "cancelModifications": { "alias": "cancelModifications"; "required": false; }; "equipmentName": { "alias": "equipmentName"; "required": false; }; }, { "modifiedEvents": "modifiedEvents"; "modifiedProcedure": "modifiedProcedure"; "eventErrors": "eventErrors"; "addedEvent": "addedEvent"; "comfirmDialogOpened": "comfirmDialogOpened"; "commented": "commented"; }, never, never, false, never>;
153
189
  }
@@ -1,15 +1,18 @@
1
+ import { PryDialogConfirmComponent, PryDialogRef } from '@provoly/dashboard';
1
2
  import { HypServiceTooltip } from '../../model/event/hyp-event-tooltip.interface';
2
3
  import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class HvyEventDetailsTooltipComponent {
6
+ private dialog;
5
7
  data: {
6
8
  events?: HypEventDetails[];
7
9
  services?: HypServiceTooltip[];
8
10
  };
9
- constructor(data: {
11
+ constructor(dialog: PryDialogRef<PryDialogConfirmComponent>, data: {
10
12
  events?: HypEventDetails[];
11
13
  services?: HypServiceTooltip[];
12
14
  });
15
+ closeDialog($event: boolean): void;
13
16
  static ɵfac: i0.ɵɵFactoryDeclaration<HvyEventDetailsTooltipComponent, never>;
14
17
  static ɵcmp: i0.ɵɵComponentDeclaration<HvyEventDetailsTooltipComponent, "hvy-event-detail-tooltip", never, {}, {}, never, never, false, never>;
15
18
  }
@@ -9,7 +9,7 @@ export declare class TextFilterComponent extends HvyUnitFilterComponent {
9
9
  getParams(): {
10
10
  [key: string]: string[];
11
11
  };
12
- triggerChange($event: Event): void;
12
+ triggerChange($event: Event | string): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TextFilterComponent, never>;
14
14
  static ɵcmp: i0.ɵɵComponentDeclaration<TextFilterComponent, "hvy-text-filter", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, false, never>;
15
15
  }
@@ -6,6 +6,7 @@ import { HypProcedureModel } from '../../model/procedure/hyp-procedure-model.int
6
6
  import { ProcedureService } from '../../store/procedure/procedure.service';
7
7
  import * as i0 from "@angular/core";
8
8
  export interface HypProcedureModelWithMatching extends HypProcedureModel {
9
+ initial: string;
9
10
  html: string;
10
11
  }
11
12
  export declare class ProcedureAssociationModalComponent extends SubscriptionnerDirective {
@@ -14,18 +15,20 @@ export declare class ProcedureAssociationModalComponent extends SubscriptionnerD
14
15
  private dialog;
15
16
  selectedEvents$: Observable<HypEventDetails[]>;
16
17
  selectedDomain?: string;
18
+ selectedProcedureInComboBox?: HypProcedureModel;
17
19
  onDomainSelect$: BehaviorSubject<void>;
18
20
  procedureSelectValue?: string | HypProcedureModel;
19
21
  onProcedureSearch$: Subject<void>;
20
22
  procedures$: Observable<HypProcedureModelWithMatching[]>;
21
23
  eventsFromInput$: BehaviorSubject<HypEventDetails[] | null>;
22
24
  eventsForAction: HypEventDetails[];
25
+ disableValidButton: boolean;
23
26
  set events(events: HypEventDetails[]);
24
27
  constructor(store: Store, procedureService: ProcedureService, dialog: PryDialogRef<ProcedureAssociationModalComponent>);
25
28
  onDomainChange(): void;
29
+ cleanProcedureNameForComboBoxSearch(procedure: string): string;
26
30
  selectedProcedureChange($event: string | HypProcedureModel): void;
27
31
  associateProcedure(): void;
28
- isProcedureSelected(): boolean;
29
32
  closeModal(): void;
30
33
  protected readonly DOMAINS: string[];
31
34
  static ɵfac: i0.ɵɵFactoryDeclaration<ProcedureAssociationModalComponent, never>;
@@ -1,4 +1,4 @@
1
- import { EventEmitter, OnDestroy } from '@angular/core';
1
+ import { ElementRef, EventEmitter, OnDestroy } from '@angular/core';
2
2
  import { HypComment } from '../../model/comment.interface';
3
3
  import { Subject, Subscription } from 'rxjs';
4
4
  import { HypCommentsService } from '../../store/comments/comments.service';
@@ -23,6 +23,7 @@ export declare class HvyCommentsComponent implements OnDestroy {
23
23
  objectId?: string | number;
24
24
  displayEmpty: boolean;
25
25
  commentCount: number;
26
+ message: ElementRef<HTMLTextAreaElement>;
26
27
  opened: boolean;
27
28
  subTrigger?: Subscription;
28
29
  additionnalComments: HypAugmentedComment[];
@@ -1 +1 @@
1
- export declare const displayDate: (endDate: string) => string;
1
+ export declare const displayDate: (endDate: string) => string | undefined;
@@ -18,6 +18,7 @@ export declare const enTranslations: {
18
18
  };
19
19
  address: string;
20
20
  source: string;
21
+ externalId: string;
21
22
  hypervisor: string;
22
23
  equipment: string;
23
24
  equipmentEntity: string;
@@ -28,6 +29,8 @@ export declare const enTranslations: {
28
29
  startDate: string;
29
30
  endDate: string;
30
31
  creationDate: string;
32
+ creator: string;
33
+ errorDate: string;
31
34
  lastModificationDate: string;
32
35
  closeDate: string;
33
36
  detail: string;
@@ -126,6 +129,12 @@ export declare const enTranslations: {
126
129
  };
127
130
  };
128
131
  procedure: {
132
+ checkbox: {
133
+ NEW: string;
134
+ IN_PROGRESS: string;
135
+ DONE: string;
136
+ };
137
+ alreadyExists: string;
129
138
  name: string;
130
139
  progress: string;
131
140
  useCount: string;
@@ -173,6 +182,13 @@ export declare const enTranslations: {
173
182
  OTHER: string;
174
183
  };
175
184
  };
185
+ status: {
186
+ NEW: string;
187
+ ASKED: string;
188
+ IN_PROGRESS: string;
189
+ DONE: string;
190
+ CANCELLED: string;
191
+ };
176
192
  };
177
193
  associationModal: {
178
194
  title: string;
@@ -197,7 +213,7 @@ export declare const enTranslations: {
197
213
  };
198
214
  service: {
199
215
  status: {
200
- CREATED: string;
216
+ NEW: string;
201
217
  ASKED: string;
202
218
  IN_PROGRESS: string;
203
219
  DONE: string;
@@ -5,6 +5,7 @@ export declare const frTranslations: {
5
5
  name: string;
6
6
  subCategory: {
7
7
  name: string;
8
+ NONE: string;
8
9
  UNUSUAL_FLOW: string;
9
10
  TRAFFIC_CONGESTION: string;
10
11
  WILD_STORAGE: string;
@@ -18,6 +19,7 @@ export declare const frTranslations: {
18
19
  };
19
20
  address: string;
20
21
  source: string;
22
+ externalId: string;
21
23
  hypervisor: string;
22
24
  equipment: string;
23
25
  equipmentEntity: string;
@@ -28,9 +30,14 @@ export declare const frTranslations: {
28
30
  startDate: string;
29
31
  endDate: string;
30
32
  creationDate: string;
33
+ creationDateTable: string;
34
+ creator: string;
35
+ errorDate: string;
31
36
  lastModificationDate: string;
37
+ lastModificationDateTable: string;
32
38
  closeDate: string;
33
39
  detail: string;
40
+ details: string;
34
41
  log: {
35
42
  name: string;
36
43
  empty: string;
@@ -138,6 +145,12 @@ export declare const frTranslations: {
138
145
  };
139
146
  };
140
147
  procedure: {
148
+ checkbox: {
149
+ NEW: string;
150
+ IN_PROGRESS: string;
151
+ DONE: string;
152
+ };
153
+ alreadyExists: string;
141
154
  name: string;
142
155
  progress: string;
143
156
  useCount: string;
@@ -186,6 +199,13 @@ export declare const frTranslations: {
186
199
  OTHER: string;
187
200
  };
188
201
  };
202
+ status: {
203
+ NEW: string;
204
+ ASKED: string;
205
+ IN_PROGRESS: string;
206
+ DONE: string;
207
+ CANCELLED: string;
208
+ };
189
209
  };
190
210
  associationModal: {
191
211
  title: string;
@@ -210,7 +230,7 @@ export declare const frTranslations: {
210
230
  };
211
231
  service: {
212
232
  status: {
213
- CREATED: string;
233
+ NEW: string;
214
234
  ASKED: string;
215
235
  IN_PROGRESS: string;
216
236
  DONE: string;
@@ -1,11 +1,18 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
1
2
  import { SubscriptionnerDirective } from '@provoly/dashboard';
2
3
  import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
3
4
  import { HypServiceTooltip } from '../../model/event/hyp-event-tooltip.interface';
4
5
  import * as i0 from "@angular/core";
5
- export declare class LastEventsComponent extends SubscriptionnerDirective {
6
- protected readonly displayDate: (endDate: string) => string;
6
+ export declare class LastEventsComponent extends SubscriptionnerDirective implements OnInit {
7
+ protected readonly displayDate: (endDate: string) => string | undefined;
7
8
  services: HypServiceTooltip[];
8
9
  events: HypEventDetails[];
10
+ closeDialogEmit: EventEmitter<boolean>;
11
+ closeButton: boolean;
12
+ references: string[];
13
+ ngOnInit(): void;
14
+ closeDialog(): void;
15
+ initActionReference(services: HypServiceTooltip[]): void;
9
16
  static ɵfac: i0.ɵɵFactoryDeclaration<LastEventsComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<LastEventsComponent, "hvy-last-events", never, { "services": { "alias": "services"; "required": false; }; "events": { "alias": "events"; "required": false; }; }, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<LastEventsComponent, "hvy-last-events", never, { "services": { "alias": "services"; "required": false; }; "events": { "alias": "events"; "required": false; }; "closeButton": { "alias": "closeButton"; "required": false; }; }, { "closeDialogEmit": "closeDialogEmit"; }, never, never, false, never>;
11
18
  }
@@ -10,6 +10,7 @@ export declare class HvyActionParameterComponent {
10
10
  param: boolean;
11
11
  _events: HypEventDetails[];
12
12
  mode: 'model' | 'procedure';
13
+ readonly: null | boolean;
13
14
  set events(events: HypEventDetails[]);
14
15
  set isParam(param: boolean);
15
16
  set type(type: string);
@@ -17,5 +18,5 @@ export declare class HvyActionParameterComponent {
17
18
  constructor();
18
19
  private updateParameterComponent;
19
20
  static ɵfac: i0.ɵɵFactoryDeclaration<HvyActionParameterComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<HvyActionParameterComponent, "hvy-action-parameter", never, { "mode": { "alias": "mode"; "required": false; }; "events": { "alias": "events"; "required": false; }; "isParam": { "alias": "isParam"; "required": false; }; "type": { "alias": "type"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<HvyActionParameterComponent, "hvy-action-parameter", never, { "mode": { "alias": "mode"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "events": { "alias": "events"; "required": false; }; "isParam": { "alias": "isParam"; "required": false; }; "type": { "alias": "type"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
21
22
  }
@@ -5,11 +5,12 @@ export declare class HvyBaseParameterActionComponent<T extends HypAction> {
5
5
  _action: any;
6
6
  _events: HypEventDetails[];
7
7
  mode: 'model' | 'procedure';
8
+ readonly: null | boolean;
8
9
  set events(events: HypEventDetails[]);
9
10
  get events(): HypEventDetails[];
10
11
  set action(action: T);
11
12
  get action(): T;
12
13
  constructor();
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<HvyBaseParameterActionComponent<any>, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<HvyBaseParameterActionComponent<any>, "hvy-base-action-parameter", never, { "mode": { "alias": "mode"; "required": false; }; "events": { "alias": "events"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<HvyBaseParameterActionComponent<any>, "hvy-base-action-parameter", never, { "mode": { "alias": "mode"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "events": { "alias": "events"; "required": false; }; "action": { "alias": "action"; "required": false; }; }, {}, never, never, false, never>;
15
16
  }
@@ -2,7 +2,8 @@ import { HvyBaseParameterActionComponent } from '../base-parameter-action.compon
2
2
  import { HypPhoneAction } from './phone-action-display.component';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class HvyPhoneActionParameterComponent extends HvyBaseParameterActionComponent<HypPhoneAction> {
5
- static PATTERN: RegExp;
5
+ static PATTERN_PHONE: RegExp;
6
+ static PATTERN_SMS: RegExp;
6
7
  constructor();
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<HvyPhoneActionParameterComponent, never>;
8
9
  static ɵcmp: i0.ɵɵComponentDeclaration<HvyPhoneActionParameterComponent, "hvy-phone-action-parameter", never, {}, {}, never, never, false, never>;
@@ -1,8 +1,6 @@
1
1
  import { PryDialogRef, PryI18nService, SubscriptionnerDirective } from '@provoly/dashboard';
2
- import { Observable } from 'rxjs';
3
2
  import { HypEquipment } from '../../../../model/hyp-equipment.interface';
4
3
  import { HypServiceAction } from './service-action-display.component';
5
- import { EquipmentService } from '../../../../store/equipment/equipment.service';
6
4
  import { HypServiceType, ServiceService } from '../../../../store/service/service.service';
7
5
  import { HypEventDetails } from '../../../../model/event/hyp-event-detail.interface';
8
6
  import * as i0 from "@angular/core";
@@ -24,24 +22,21 @@ export declare class HvyCreateServiceComponent extends SubscriptionnerDirective
24
22
  action: HypServiceAction;
25
23
  events: HypEventDetails[];
26
24
  };
27
- private equipmentService;
28
25
  private serviceService;
29
26
  private i18nService;
30
27
  result: HypCreateServiceResult;
31
- equipments$: Observable<(HypEquipment | {
32
- displayName: string;
33
- })[]>;
34
28
  errors: string[];
35
29
  types: HypServiceType[];
36
30
  priorities: string[];
37
31
  domains: string[];
38
- private equipments;
39
- private equipmentIds;
32
+ equipments: (HypEquipment | {
33
+ displayName: string;
34
+ })[];
40
35
  allowedTypes: HypServiceType[];
41
36
  constructor(dialog: PryDialogRef<HvyCreateServiceComponent>, data: {
42
37
  action: HypServiceAction;
43
38
  events: HypEventDetails[];
44
- }, equipmentService: EquipmentService, serviceService: ServiceService, i18nService: PryI18nService);
39
+ }, serviceService: ServiceService, i18nService: PryI18nService);
45
40
  action(value: string): void;
46
41
  onEquipmentChange($event: string): void;
47
42
  onDescriptionChange($event: string): void;
@@ -1,7 +1,7 @@
1
- import { ElementRef } from '@angular/core';
1
+ import { ElementRef, OnInit } from '@angular/core';
2
2
  import { HvyBaseParameterActionComponent } from '../base-parameter-action.component';
3
3
  import { HypAction } from '../../../../model/procedure/hyp-action.interface';
4
- import { PryDialogService } from '@provoly/dashboard';
4
+ import { PryDialogService, I18nPipe } from '@provoly/dashboard';
5
5
  import { Overlay } from '@angular/cdk/overlay';
6
6
  import { ServiceService } from '../../../../store/service/service.service';
7
7
  import { act } from '@ngrx/effects';
@@ -9,13 +9,20 @@ import * as i0 from "@angular/core";
9
9
  export interface HypServiceAction extends HypAction {
10
10
  name: string;
11
11
  serviceExternalId?: string;
12
+ serviceAdditionalInfo?: string;
13
+ serviceStatus?: string;
12
14
  }
13
- export declare class HvyServiceActionDisplayComponent extends HvyBaseParameterActionComponent<HypServiceAction> {
15
+ export declare class HvyServiceActionDisplayComponent extends HvyBaseParameterActionComponent<HypServiceAction> implements OnInit {
14
16
  private pryDialog;
15
17
  private overlay;
16
18
  private serviceService;
19
+ private i18n;
17
20
  menuButton: ElementRef;
18
- constructor(pryDialog: PryDialogService, overlay: Overlay, serviceService: ServiceService);
21
+ status: string;
22
+ reference: string;
23
+ constructor(pryDialog: PryDialogService, overlay: Overlay, serviceService: ServiceService, i18n: I18nPipe);
24
+ ngOnInit(): void;
25
+ initActionReference(): void;
19
26
  toggleModal(): void;
20
27
  protected readonly act: typeof act;
21
28
  static ɵfac: i0.ɵɵFactoryDeclaration<HvyServiceActionDisplayComponent, never>;
@@ -6,11 +6,13 @@ import { HypCommentsService } from '../../store/comments/comments.service';
6
6
  import { Subject } from 'rxjs';
7
7
  import { HypEventDetails } from '../../model/event/hyp-event-detail.interface';
8
8
  import { HypComment } from '../../model/comment.interface';
9
+ import { ServiceService } from '../../store/service/service.service';
9
10
  import * as i0 from "@angular/core";
10
11
  export declare class ProcedureActionsComponent extends SubscriptionnerDirective {
11
12
  private pryDialog;
12
13
  private overlay;
13
14
  private commentsService;
15
+ private serviceService;
14
16
  static CARD_HEIGHT: number;
15
17
  movingAction?: HypAction;
16
18
  moveStart: number;
@@ -26,6 +28,7 @@ export declare class ProcedureActionsComponent extends SubscriptionnerDirective
26
28
  mode: 'model' | 'procedure';
27
29
  me: string | null | undefined;
28
30
  readonly: boolean | null;
31
+ readOnlyComment: boolean | null;
29
32
  enableEditActions: boolean | null;
30
33
  events: HypEventDetails[];
31
34
  ACTIONS_TYPES: string[];
@@ -34,8 +37,10 @@ export declare class ProcedureActionsComponent extends SubscriptionnerDirective
34
37
  triggers: {
35
38
  [p: string]: Subject<boolean>;
36
39
  };
37
- constructor(pryDialog: PryDialogService, overlay: Overlay, commentsService: HypCommentsService);
40
+ ignoreFirstEvent: boolean;
41
+ constructor(pryDialog: PryDialogService, overlay: Overlay, commentsService: HypCommentsService, serviceService: ServiceService);
38
42
  set actions(actions: HypAction[]);
43
+ refreshActions: EventEmitter<HypAction[]>;
39
44
  get actions(): HypAction[];
40
45
  get editing(): boolean;
41
46
  onMouseDown($event: MouseEvent): void;
@@ -47,6 +52,7 @@ export declare class ProcedureActionsComponent extends SubscriptionnerDirective
47
52
  add(): void;
48
53
  protected readonly model: import("@angular/core").ModelFunction;
49
54
  update(idx: number, prop: string, $event: any): void;
55
+ clearAction(idx: number): void;
50
56
  openModal(action: HypAction, idx: number): void;
51
57
  saveAction(action: HypAction, idx: number): void;
52
58
  cancelAction(action: HypAction, idx: number): void;
@@ -57,5 +63,5 @@ export declare class ProcedureActionsComponent extends SubscriptionnerDirective
57
63
  message: string;
58
64
  }): void;
59
65
  static ɵfac: i0.ɵɵFactoryDeclaration<ProcedureActionsComponent, never>;
60
- static ɵcmp: i0.ɵɵComponentDeclaration<ProcedureActionsComponent, "hvy-procedure-actions", never, { "mode": { "alias": "mode"; "required": false; }; "me": { "alias": "me"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "enableEditActions": { "alias": "enableEditActions"; "required": false; }; "events": { "alias": "events"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "modified": "modified"; "commented": "commented"; }, never, never, false, never>;
66
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProcedureActionsComponent, "hvy-procedure-actions", never, { "mode": { "alias": "mode"; "required": false; }; "me": { "alias": "me"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "readOnlyComment": { "alias": "readOnlyComment"; "required": false; }; "enableEditActions": { "alias": "enableEditActions"; "required": false; }; "events": { "alias": "events"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "modified": "modified"; "commented": "commented"; "refreshActions": "refreshActions"; }, never, never, false, never>;
61
67
  }
@@ -27,4 +27,5 @@ export * from './procedure-actions/action-parameters/email/email-action-display.
27
27
  export * from './procedure-actions/action-parameters/service/service-action-parameter.component';
28
28
  export * from './procedure-actions/action-parameters/service/service-action-display.component';
29
29
  export * from './procedure-actions/action-parameters/service/create-service.component';
30
+ export * from './truncate-pipe/truncate.pipe';
30
31
  export * from './display-date.function';
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TruncatePipe implements PipeTransform {
4
+ transform(value: string, args: any[]): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruncatePipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<TruncatePipe, "truncate", true>;
7
+ }
@@ -49,6 +49,7 @@ import * as i44 from "@provoly/dashboard";
49
49
  import * as i45 from "@provoly/dashboard/components/checkbox";
50
50
  import * as i46 from "@angular/forms";
51
51
  import * as i47 from "@angular/router";
52
+ import * as i48 from "./general/truncate-pipe/truncate.pipe";
52
53
  export declare class PvyHypervisorModule {
53
54
  private baseConfig;
54
55
  private store;
@@ -60,6 +61,6 @@ export declare class PvyHypervisorModule {
60
61
  url: string;
61
62
  }, store: Store<any>, i18nService: PryI18nService);
62
63
  static ɵfac: i0.ɵɵFactoryDeclaration<PvyHypervisorModule, never>;
63
- static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyCreateServiceComponent, typeof i24.HvyActionParameterComponent, typeof i25.HvyBaseParameterActionComponent, typeof i26.HvyOtherActionParameterComponent, typeof i27.HvyOtherActionDisplayComponent, typeof i28.HvyNoParamsActionDisplayComponent, typeof i29.HvyPhoneActionParameterComponent, typeof i30.HvyPhoneActionDisplayComponent, typeof i31.HvyEmailActionDisplayComponent, typeof i32.HvyEmailActionParameterComponent, typeof i33.HvyServiceActionParameterComponent, typeof i34.HvyServiceActionDisplayComponent, typeof i35.DisplayLocaleDateTime, typeof i36.HvyCommentsComponent, typeof i37.LastEventsComponent, typeof i38.HvyEventDetailsTooltipComponent, typeof i39.HvyEventAddEventComponent, typeof i40.ProcedureActionsComponent], [typeof i41.StoreFeatureModule, typeof i41.StoreFeatureModule, typeof i41.StoreFeatureModule, typeof i41.StoreFeatureModule, typeof i42.EffectsFeatureModule, typeof i43.NgForOf, typeof i43.AsyncPipe, typeof i44.PryI18nModule, typeof i44.PryCoreModule, typeof i43.NgStyle, typeof i45.PryCheckboxModule, typeof i46.FormsModule, typeof i47.RouterLink, typeof i44.PrySinceDateModule, typeof i43.DatePipe, typeof i44.PryIconModule, typeof i43.KeyValuePipe, typeof i44.PrySelectModule, typeof i43.JsonPipe, typeof i44.PryDatePickerModule, typeof i43.NgIf, typeof i44.PryCoreModule, typeof i44.PryI18nModule, typeof i46.FormsModule, typeof i43.AsyncPipe], [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyCreateServiceComponent, typeof i24.HvyActionParameterComponent, typeof i25.HvyBaseParameterActionComponent, typeof i26.HvyOtherActionParameterComponent, typeof i27.HvyOtherActionDisplayComponent, typeof i28.HvyNoParamsActionDisplayComponent, typeof i29.HvyPhoneActionParameterComponent, typeof i30.HvyPhoneActionDisplayComponent, typeof i31.HvyEmailActionDisplayComponent, typeof i32.HvyEmailActionParameterComponent, typeof i33.HvyServiceActionParameterComponent, typeof i34.HvyServiceActionDisplayComponent, typeof i35.DisplayLocaleDateTime, typeof i36.HvyCommentsComponent, typeof i37.LastEventsComponent, typeof i38.HvyEventDetailsTooltipComponent, typeof i39.HvyEventAddEventComponent]>;
64
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyCreateServiceComponent, typeof i24.HvyActionParameterComponent, typeof i25.HvyBaseParameterActionComponent, typeof i26.HvyOtherActionParameterComponent, typeof i27.HvyOtherActionDisplayComponent, typeof i28.HvyNoParamsActionDisplayComponent, typeof i29.HvyPhoneActionParameterComponent, typeof i30.HvyPhoneActionDisplayComponent, typeof i31.HvyEmailActionDisplayComponent, typeof i32.HvyEmailActionParameterComponent, typeof i33.HvyServiceActionParameterComponent, typeof i34.HvyServiceActionDisplayComponent, typeof i35.DisplayLocaleDateTime, typeof i36.HvyCommentsComponent, typeof i37.LastEventsComponent, typeof i38.HvyEventDetailsTooltipComponent, typeof i39.HvyEventAddEventComponent, typeof i40.ProcedureActionsComponent], [typeof i41.StoreFeatureModule, typeof i41.StoreFeatureModule, typeof i41.StoreFeatureModule, typeof i41.StoreFeatureModule, typeof i42.EffectsFeatureModule, typeof i43.NgForOf, typeof i43.AsyncPipe, typeof i44.PryI18nModule, typeof i44.PryCoreModule, typeof i43.NgStyle, typeof i45.PryCheckboxModule, typeof i46.FormsModule, typeof i47.RouterLink, typeof i44.PrySinceDateModule, typeof i43.DatePipe, typeof i44.PryIconModule, typeof i43.KeyValuePipe, typeof i44.PrySelectModule, typeof i43.JsonPipe, typeof i44.PryDatePickerModule, typeof i43.NgIf, typeof i44.PryCoreModule, typeof i44.PryI18nModule, typeof i46.FormsModule, typeof i43.AsyncPipe, typeof i48.TruncatePipe, typeof i43.DatePipe], [typeof i1.EventDetailComponent, typeof i2.EventListComponent, typeof i3.EventColumnOrderComponent, typeof i4.IconDisplayComponent, typeof i5.EventSummaryItemComponent, typeof i6.EventSummaryListComponent, typeof i7.EventSummaryPageComponent, typeof i8.EventIconPipe, typeof i9.ForDatetimeLocalPipe, typeof i10.StatusDisplayComponent, typeof i11.ProgressDisplayComponent, typeof i12.ColumnOrderComponent, typeof i13.EventFiltersComponent, typeof i14.DateFilterComponent, typeof i15.TextFilterComponent, typeof i16.ChoiceFilterComponent, typeof i17.ProcedureListComponent, typeof i18.ProcedureColumnOrderComponent, typeof i19.ProcedureAssociationModalComponent, typeof i20.ProcedureModelDetailComponent, typeof i21.ImmediateFiltersComponent, typeof i22.HvyActionMenuComponent, typeof i23.HvyCreateServiceComponent, typeof i24.HvyActionParameterComponent, typeof i25.HvyBaseParameterActionComponent, typeof i26.HvyOtherActionParameterComponent, typeof i27.HvyOtherActionDisplayComponent, typeof i28.HvyNoParamsActionDisplayComponent, typeof i29.HvyPhoneActionParameterComponent, typeof i30.HvyPhoneActionDisplayComponent, typeof i31.HvyEmailActionDisplayComponent, typeof i32.HvyEmailActionParameterComponent, typeof i33.HvyServiceActionParameterComponent, typeof i34.HvyServiceActionDisplayComponent, typeof i35.DisplayLocaleDateTime, typeof i36.HvyCommentsComponent, typeof i37.LastEventsComponent, typeof i38.HvyEventDetailsTooltipComponent, typeof i39.HvyEventAddEventComponent]>;
64
65
  static ɵinj: i0.ɵɵInjectorDeclaration<PvyHypervisorModule>;
65
66
  }
@@ -9,11 +9,12 @@ export interface HypEventDetails extends HypEvent {
9
9
  equipment?: {
10
10
  id: string;
11
11
  name: string;
12
- type: string;
13
12
  entity: string;
14
13
  family: string;
14
+ domain: string;
15
15
  };
16
16
  externalSourceRef?: string;
17
+ externalId?: string;
17
18
  startDate?: string;
18
19
  endDate?: string;
19
20
  closeDate: string;
@@ -23,10 +24,12 @@ export interface HypEventDetails extends HypEvent {
23
24
  domain?: string;
24
25
  lastComment: HypComment;
25
26
  commentCount: number;
27
+ creator: string;
26
28
  }
27
29
  export declare const eventForWriteAPI: (event: HypEventDetails) => {
28
30
  equipmentId: string | undefined;
29
31
  parent: number | undefined;
32
+ subCategory: string | undefined;
30
33
  address: string;
31
34
  description: string;
32
35
  status: string;
@@ -35,11 +38,12 @@ export declare const eventForWriteAPI: (event: HypEventDetails) => {
35
38
  equipment?: {
36
39
  id: string;
37
40
  name: string;
38
- type: string;
39
41
  entity: string;
40
42
  family: string;
43
+ domain: string;
41
44
  };
42
45
  externalSourceRef?: string;
46
+ externalId?: string;
43
47
  startDate?: string;
44
48
  endDate?: string;
45
49
  closeDate: string;
@@ -49,9 +53,9 @@ export declare const eventForWriteAPI: (event: HypEventDetails) => {
49
53
  domain?: string;
50
54
  lastComment: HypComment;
51
55
  commentCount: number;
56
+ creator: string;
52
57
  id: number;
53
58
  name: string;
54
59
  criticality: string;
55
60
  category: string;
56
- subCategory?: string;
57
61
  };
@@ -44,6 +44,7 @@ export interface HypServiceTooltip {
44
44
  domain: string;
45
45
  status: string;
46
46
  category: string;
47
+ additionalInfo?: string;
47
48
  }
48
49
  export interface HypParentTooltip {
49
50
  id: string;