@provoly/hypervisor 1.4.10 → 1.4.12

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": "1.4.10",
3
+ "version": "1.4.12",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -126,6 +126,11 @@ export declare const enTranslations: {
126
126
  };
127
127
  };
128
128
  procedure: {
129
+ checkbox: {
130
+ NEW: string;
131
+ IN_PROGRESS: string;
132
+ DONE: string;
133
+ };
129
134
  name: string;
130
135
  progress: string;
131
136
  useCount: string;
@@ -138,6 +138,11 @@ export declare const frTranslations: {
138
138
  };
139
139
  };
140
140
  procedure: {
141
+ checkbox: {
142
+ NEW: string;
143
+ IN_PROGRESS: string;
144
+ DONE: string;
145
+ };
141
146
  name: string;
142
147
  progress: string;
143
148
  useCount: string;
@@ -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;
@@ -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;