@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/esm2022/src/lib/event/detail/add-event/add-event.component.mjs +7 -5
- package/esm2022/src/lib/event/detail/event-detail.component.mjs +32 -21
- package/esm2022/src/lib/store/event/event.service.mjs +7 -4
- package/fesm2022/provoly-hypervisor.mjs +43 -27
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/event/detail/event-detail.component.d.ts +2 -2
- package/src/lib/store/event/event.service.d.ts +1 -1
package/package.json
CHANGED
|
@@ -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
|
}
|