@provoly/hypervisor 1.4.10 → 1.4.11
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/general/procedure-actions/action-parameters/service/create-service.component.mjs +19 -20
- package/esm2022/src/lib/model/event/hyp-event-detail.interface.mjs +1 -1
- package/fesm2022/provoly-hypervisor.mjs +16 -14
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/general/procedure-actions/action-parameters/service/create-service.component.d.ts +4 -9
- package/src/lib/model/event/hyp-event-detail.interface.d.ts +2 -2
- package/src/lib/model/procedure/hyp-procedure.interface.d.ts +1 -1
package/package.json
CHANGED
package/src/lib/general/procedure-actions/action-parameters/service/create-service.component.d.ts
CHANGED
|
@@ -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
|
-
|
|
39
|
-
|
|
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
|
-
},
|
|
39
|
+
}, serviceService: ServiceService, i18nService: PryI18nService);
|
|
45
40
|
action(value: string): void;
|
|
46
41
|
onEquipmentChange($event: string): void;
|
|
47
42
|
onDescriptionChange($event: string): void;
|
|
@@ -9,9 +9,9 @@ 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
17
|
startDate?: string;
|
|
@@ -35,9 +35,9 @@ export declare const eventForWriteAPI: (event: HypEventDetails) => {
|
|
|
35
35
|
equipment?: {
|
|
36
36
|
id: string;
|
|
37
37
|
name: string;
|
|
38
|
-
type: string;
|
|
39
38
|
entity: string;
|
|
40
39
|
family: string;
|
|
40
|
+
domain: string;
|
|
41
41
|
};
|
|
42
42
|
externalSourceRef?: string;
|
|
43
43
|
startDate?: string;
|
|
@@ -22,9 +22,9 @@ export declare const procedureForWriteAPI: (procedure: HypProcedure) => {
|
|
|
22
22
|
equipment?: {
|
|
23
23
|
id: string;
|
|
24
24
|
name: string;
|
|
25
|
-
type: string;
|
|
26
25
|
entity: string;
|
|
27
26
|
family: string;
|
|
27
|
+
domain: string;
|
|
28
28
|
};
|
|
29
29
|
externalSourceRef?: string;
|
|
30
30
|
startDate?: string;
|