@provoly/hypervisor 0.0.126 → 0.0.128

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/hypervisor",
3
- "version": "0.0.126",
3
+ "version": "0.0.128",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "16.x || 17.x",
6
6
  "@angular/common": "16.x || 17.x",
@@ -22,9 +22,11 @@ export type ChangeStatusContext = {
22
22
  };
23
23
  export interface HypEquipmentWithMatching extends HypEquipment {
24
24
  html: string;
25
+ displayName: string;
25
26
  }
26
27
  export interface HypEventDetailsWithMatching extends HypEventDetails {
27
28
  html: string;
29
+ displayName: string;
28
30
  }
29
31
  export declare class EventDetailComponent extends SubscriptionnerDirective {
30
32
  private equipmentService;
@@ -71,7 +73,6 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
71
73
  onEventSearch$: Subject<number>;
72
74
  eventSelectValue: (string | HypEventDetails | undefined)[];
73
75
  events$: Observable<HypEventDetailsWithMatching[]>;
74
- parentName: string[];
75
76
  commented: EventEmitter<{
76
77
  event: HypEventDetails;
77
78
  comments: HypComment[];
@@ -129,7 +130,6 @@ export declare class EventDetailComponent extends SubscriptionnerDirective {
129
130
  openAssociationModal(): void;
130
131
  openDeleteModal(): void;
131
132
  private convertDate;
132
- displayEquipment: string[];
133
133
  selectedEquipmentChange($event: string | HypEquipment, index: number): void;
134
134
  equipmentsEvents: {
135
135
  events?: HypEventDetails[];
@@ -27,7 +27,7 @@ export declare class EventService {
27
27
  statusProcedure(procedure: HypProcedure, status: string, comment: string): Observable<void>;
28
28
  associateProcedure(procedureId: number, eventIds: number[]): Observable<HypProcedure>;
29
29
  export(archived: boolean): Observable<import("@angular/common/http").HttpResponse<ArrayBuffer>>;
30
- search(search: string | undefined, statuses?: string[]): Observable<HypEventDetails[]>;
30
+ search(search: string | undefined, fields: string[], statuses?: string[]): Observable<HypEventDetails[]>;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<EventService, never>;
32
32
  static ɵprov: i0.ɵɵInjectableDeclaration<EventService>;
33
33
  }