@dative-gpi/foundation-core-domain 1.0.134-chart-filters → 1.0.134-data-ids

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.
@@ -21,6 +21,7 @@ export class ChartOrganisationTypeInfos {
21
21
  multiple: boolean;
22
22
  chartType: ChartType;
23
23
  modelsLabels: ChartModelLabel[];
24
+ dataDefinitionsIds: string[];
24
25
 
25
26
  constructor(params: ChartOrganisationTypeInfosDTO) {
26
27
  this.id = params.id;
@@ -40,6 +41,7 @@ export class ChartOrganisationTypeInfos {
40
41
  this.multiple = params.multiple;
41
42
  this.chartType = params.chartType;
42
43
  this.modelsLabels = params.modelsLabels.map((modelLabel) => new ChartModelLabel(modelLabel));
44
+ this.dataDefinitionsIds = params.dataDefinitionsIds.slice();
43
45
  }
44
46
  }
45
47
 
@@ -61,6 +63,7 @@ export interface ChartOrganisationTypeInfosDTO {
61
63
  multiple: boolean;
62
64
  chartType: ChartType;
63
65
  modelsLabels: ChartModelLabelDTO[];
66
+ dataDefinitionsIds: string[];
64
67
  }
65
68
 
66
69
  export interface ChartOrganisationTypeFilters {
@@ -70,5 +73,4 @@ export interface ChartOrganisationTypeFilters {
70
73
  draft?: boolean | null;
71
74
  deprecatedChartId?: string | null;
72
75
  deviceOrganisationsIds?: string[] | null
73
- dataDefinitionsIds?: string[] | null;
74
76
  }
@@ -20,6 +20,7 @@ export class ChartOrganisationInfos {
20
20
  multiple: boolean;
21
21
  chartType: ChartType;
22
22
  modelsLabels: ChartModelLabel[];
23
+ dataDefinitionsIds: string[];
23
24
 
24
25
  constructor(params: ChartOrganisationInfosDTO) {
25
26
  this.id = params.id;
@@ -38,6 +39,7 @@ export class ChartOrganisationInfos {
38
39
  this.multiple = params.multiple;
39
40
  this.chartType = params.chartType;
40
41
  this.modelsLabels = params.modelsLabels.map((modelLabel) => new ChartModelLabel(modelLabel));
42
+ this.dataDefinitionsIds = params.dataDefinitionsIds.slice();
41
43
  }
42
44
  }
43
45
 
@@ -58,6 +60,7 @@ export interface ChartOrganisationInfosDTO {
58
60
  multiple: boolean;
59
61
  chartType: ChartType;
60
62
  modelsLabels: ChartModelLabelDTO[];
63
+ dataDefinitionsIds: string[];
61
64
  }
62
65
 
63
66
  export interface ChartOrganisationFilters {
@@ -66,6 +69,5 @@ export interface ChartOrganisationFilters {
66
69
  search?: string | null;
67
70
  draft?: boolean | null;
68
71
  deprecatedChartId?: string | null;
69
- deviceOrganisationsIds?: string[] | null;
70
- dataDefinitionsIds?: string[] | null;
72
+ deviceOrganisationsIds?: string[] | null
71
73
  }
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.134-chart-filters",
4
+ "version": "1.0.134-data-ids",
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.134-chart-filters",
14
- "@dative-gpi/foundation-shared-services": "1.0.134-chart-filters"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.134-data-ids",
14
+ "@dative-gpi/foundation-shared-services": "1.0.134-data-ids"
15
15
  },
16
- "gitHead": "e8d08a84da7f954e95f60cb5fbae445a670efc6f"
16
+ "gitHead": "77712a7bbf24a6b1bf8570b40c0dabb84dc2791b"
17
17
  }