@dative-gpi/foundation-core-domain 1.0.142 → 1.0.143-onboarding

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.
@@ -35,7 +35,7 @@ export class AlertInfos {
35
35
  currentSourceTimestamp: number | null;
36
36
  currentEnqueuedTimestamp: number | null;
37
37
  currentProcessedTimestamp: number | null;
38
- status: AlertStatus;
38
+ currentStatus: AlertStatus;
39
39
  tags: string[];
40
40
  history: AlertState[];
41
41
  groupByValues: AlertDataDefinition[];
@@ -76,7 +76,7 @@ export class AlertInfos {
76
76
  isoToEpoch(params.currentEnqueuedTimestamp) : null;
77
77
  this.currentProcessedTimestamp = params.currentProcessedTimestamp ?
78
78
  isoToEpoch(params.currentProcessedTimestamp) : null;
79
- this.status = params.status;
79
+ this.currentStatus = params.currentStatus;
80
80
  this.tags = params.tags;
81
81
  this.history = params.history.map(dto => new AlertState(dto));
82
82
  this.groupByValues = params.groupByValues.map(dto => new AlertDataDefinition(dto));
@@ -112,7 +112,7 @@ export interface AlertInfosDTO {
112
112
  currentSourceTimestamp: string | null;
113
113
  currentEnqueuedTimestamp: string | null;
114
114
  currentProcessedTimestamp: string | null;
115
- status: AlertStatus;
115
+ currentStatus: AlertStatus;
116
116
  tags: string[];
117
117
  history: AlertStateDTO[];
118
118
  groupByValues: AlertDataDefinitionDTO[];
@@ -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;
@@ -55,6 +55,7 @@ export interface DashboardShallowInfosDTO {
55
55
  }
56
56
 
57
57
  export interface DashboardShallowFilters {
58
+ dashboardShallowsIds?: string[] | null;
58
59
  root?: boolean | null;
59
60
  folderId?: string | null;
60
61
  search?: string | null;
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.142",
4
+ "version": "1.0.143-onboarding",
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.142",
14
- "@dative-gpi/foundation-shared-services": "1.0.142"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.143-onboarding",
14
+ "@dative-gpi/foundation-shared-services": "1.0.143-onboarding"
15
15
  },
16
- "gitHead": "36eca468f78075f88bb6638dbfdee9bdecf270ce"
16
+ "gitHead": "44c75a707aeddf8826add43b55f4971b91046b70"
17
17
  }