@dative-gpi/foundation-core-domain 1.0.141 → 1.0.142-alert-filter-chart
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/models/chartCategories/chartCategoryDetails.ts +2 -0
- package/models/chartCategories/chartCategoryInfos.ts +3 -0
- package/models/chartOrganisationTypes/chartOrganisationTypeInfos.ts +3 -0
- package/models/chartOrganisations/chartOrganisationInfos.ts +3 -0
- package/models/charts/chartInfos.ts +3 -0
- package/package.json +4 -4
|
@@ -23,11 +23,13 @@ export interface ChartCategoryDetailsDTO extends ChartCategoryInfosDTO {
|
|
|
23
23
|
export interface CreateChartCategoryDTO {
|
|
24
24
|
labelDefault: string;
|
|
25
25
|
code: string;
|
|
26
|
+
index: number;
|
|
26
27
|
translations: ChartCategoryTranslationDTO[];
|
|
27
28
|
}
|
|
28
29
|
|
|
29
30
|
export interface UpdateChartCategoryDTO {
|
|
30
31
|
labelDefault: string;
|
|
31
32
|
code: string;
|
|
33
|
+
index: number;
|
|
32
34
|
translations: ChartCategoryTranslationDTO[];
|
|
33
35
|
}
|
|
@@ -2,11 +2,13 @@ export class ChartCategoryInfos {
|
|
|
2
2
|
id: string;
|
|
3
3
|
label: string;
|
|
4
4
|
code: string;
|
|
5
|
+
index: number;
|
|
5
6
|
|
|
6
7
|
constructor(params: ChartCategoryInfosDTO) {
|
|
7
8
|
this.id = params.id;
|
|
8
9
|
this.label = params.label;
|
|
9
10
|
this.code = params.code;
|
|
11
|
+
this.index = params.index;
|
|
10
12
|
}
|
|
11
13
|
}
|
|
12
14
|
|
|
@@ -14,6 +16,7 @@ export interface ChartCategoryInfosDTO {
|
|
|
14
16
|
id: string;
|
|
15
17
|
label: string;
|
|
16
18
|
code: string;
|
|
19
|
+
index: number;
|
|
17
20
|
}
|
|
18
21
|
|
|
19
22
|
export interface ChartCategoryFilters {
|
|
@@ -11,6 +11,7 @@ export class ChartOrganisationTypeInfos {
|
|
|
11
11
|
organisationTypeLabel: string;
|
|
12
12
|
chartCategoryId: string | null;
|
|
13
13
|
chartCategoryLabel: string | null;
|
|
14
|
+
chartCategoryIndex: number | null;
|
|
14
15
|
scope: ApplicationScope;
|
|
15
16
|
label: string;
|
|
16
17
|
title: string;
|
|
@@ -30,6 +31,7 @@ export class ChartOrganisationTypeInfos {
|
|
|
30
31
|
this.organisationTypeLabel = params.organisationTypeLabel;
|
|
31
32
|
this.chartCategoryId = params.chartCategoryId;
|
|
32
33
|
this.chartCategoryLabel = params.chartCategoryLabel;
|
|
34
|
+
this.chartCategoryIndex = params.chartCategoryIndex;
|
|
33
35
|
this.scope = params.scope;
|
|
34
36
|
this.label = params.label;
|
|
35
37
|
this.title = params.title;
|
|
@@ -50,6 +52,7 @@ export interface ChartOrganisationTypeInfosDTO {
|
|
|
50
52
|
organisationTypeLabel: string;
|
|
51
53
|
chartCategoryId: string | null;
|
|
52
54
|
chartCategoryLabel: string | null;
|
|
55
|
+
chartCategoryIndex: number | null;
|
|
53
56
|
scope: ApplicationScope;
|
|
54
57
|
label: string;
|
|
55
58
|
title: string;
|
|
@@ -10,6 +10,7 @@ export class ChartOrganisationInfos {
|
|
|
10
10
|
organisationId: string;
|
|
11
11
|
chartCategoryId: string | null;
|
|
12
12
|
chartCategoryLabel: string | null;
|
|
13
|
+
chartCategoryIndex: number | null;
|
|
13
14
|
scope: ApplicationScope;
|
|
14
15
|
label: string;
|
|
15
16
|
title: string;
|
|
@@ -28,6 +29,7 @@ export class ChartOrganisationInfos {
|
|
|
28
29
|
this.organisationId = params.organisationId;
|
|
29
30
|
this.chartCategoryId = params.chartCategoryId;
|
|
30
31
|
this.chartCategoryLabel = params.chartCategoryLabel;
|
|
32
|
+
this.chartCategoryIndex = params.chartCategoryIndex;
|
|
31
33
|
this.scope = params.scope;
|
|
32
34
|
this.label = params.label;
|
|
33
35
|
this.title = params.title;
|
|
@@ -48,6 +50,7 @@ export interface ChartOrganisationInfosDTO {
|
|
|
48
50
|
organisationId: string;
|
|
49
51
|
chartCategoryId: string | null;
|
|
50
52
|
chartCategoryLabel: string | null;
|
|
53
|
+
chartCategoryIndex: number | null;
|
|
51
54
|
scope: ApplicationScope;
|
|
52
55
|
label: string;
|
|
53
56
|
title: string;
|
|
@@ -8,6 +8,7 @@ export class ChartInfos {
|
|
|
8
8
|
imageId: string | null;
|
|
9
9
|
chartCategoryId: string | null;
|
|
10
10
|
chartCategoryLabel: string | null;
|
|
11
|
+
chartCategoryIndex: number | null;
|
|
11
12
|
scope: ApplicationScope;
|
|
12
13
|
label: string;
|
|
13
14
|
title: string;
|
|
@@ -24,6 +25,7 @@ export class ChartInfos {
|
|
|
24
25
|
this.imageId = params.imageId;
|
|
25
26
|
this.chartCategoryId = params.chartCategoryId;
|
|
26
27
|
this.chartCategoryLabel = params.chartCategoryLabel;
|
|
28
|
+
this.chartCategoryIndex = params.chartCategoryIndex;
|
|
27
29
|
this.scope = params.scope;
|
|
28
30
|
this.label = params.label;
|
|
29
31
|
this.title = params.title;
|
|
@@ -42,6 +44,7 @@ export interface ChartInfosDTO {
|
|
|
42
44
|
imageId: string | null;
|
|
43
45
|
chartCategoryId: string | null;
|
|
44
46
|
chartCategoryLabel: string | null;
|
|
47
|
+
chartCategoryIndex: number | null;
|
|
45
48
|
scope: ApplicationScope;
|
|
46
49
|
label: string;
|
|
47
50
|
title: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-core-domain",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.142-alert-filter-chart",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.142-alert-filter-chart",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.142-alert-filter-chart"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "736eafad511c2f355e23f419e1967490f27bae96"
|
|
17
17
|
}
|