@dative-gpi/foundation-core-domain 1.0.46 → 1.0.48

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.
@@ -116,7 +116,7 @@ export interface AlertFilters {
116
116
  acknowledged?: boolean | null;
117
117
  startDate?: string | null;
118
118
  endDate?: string | null;
119
- EntityType?: EntityType | null;
119
+ entityType?: EntityType | null;
120
120
  entitiesIds?: string[] | null;
121
121
  dateVariables?: DateVariable[] | null;
122
122
  }
@@ -64,4 +64,5 @@ export interface ChartOrganisationTypeFilters {
64
64
  modelsIds?: string[] | null;
65
65
  plotPer?: PlotPer | null;
66
66
  search?: string | null;
67
+ deprecatedChartId?: string | null;
67
68
  }
@@ -61,4 +61,5 @@ export interface ChartOrganisationFilters {
61
61
  modelsIds?: string[] | null;
62
62
  plotPer?: PlotPer | null;
63
63
  search?: string | null;
64
+ deprecatedChartId?: string | null;
64
65
  }
@@ -5,7 +5,7 @@ export interface CreateDashboardEntityPresetDTO {
5
5
  hiddenCode: string;
6
6
  labelDefault: string;
7
7
  singleEntity: boolean;
8
- EntityType: EntityType;
8
+ entityType: EntityType;
9
9
  entitiesFilters: string;
10
10
  entitiesIds: string[];
11
11
  translations: DashboardEntityPresetTranslationDTO[];
@@ -8,7 +8,7 @@ export class DashboardEntityPresetInfos {
8
8
  hiddenCode: string;
9
9
  labelDefault: string;
10
10
  singleEntity: boolean;
11
- EntityType: EntityType;
11
+ entityType: EntityType;
12
12
  entitiesFilters: string;
13
13
  entitiesIds: string[];
14
14
  translations: DashboardEntityPresetTranslation[];
@@ -32,7 +32,7 @@ export interface DashboardEntityPresetInfosDTO {
32
32
  hiddenCode: string;
33
33
  labelDefault: string;
34
34
  singleEntity: boolean;
35
- EntityType: EntityType;
35
+ entityType: EntityType;
36
36
  entitiesFilters: string;
37
37
  entitiesIds: string[];
38
38
  translations: DashboardEntityPresetTranslationDTO[];
@@ -3,7 +3,7 @@ import type { EntityType } from "@dative-gpi/foundation-shared-domain/enums";
3
3
  export interface CreateDashboardShallowEntityPresetDTO {
4
4
  hiddenCode: string;
5
5
  singleEntity: boolean;
6
- EntityType: EntityType;
6
+ entityType: EntityType;
7
7
  entitiesFilters: string;
8
8
  entitiesIds: string[];
9
9
  }
@@ -3,7 +3,7 @@ import type { EntityType } from "@dative-gpi/foundation-shared-domain/enums";
3
3
  export class DashboardShallowEntityPresetInfos {
4
4
  hiddenCode: string;
5
5
  singleEntity: boolean;
6
- EntityType: EntityType;
6
+ entityType: EntityType;
7
7
  entitiesFilters: string;
8
8
  entitiesIds: string[];
9
9
 
@@ -19,7 +19,7 @@ export class DashboardShallowEntityPresetInfos {
19
19
  export interface DashboardShallowEntityPresetInfosDTO {
20
20
  hiddenCode: string;
21
21
  singleEntity: boolean;
22
- EntityType: EntityType;
22
+ entityType: EntityType;
23
23
  entitiesFilters: string;
24
24
  entitiesIds: string[];
25
25
  }
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.46",
4
+ "version": "1.0.48",
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.46",
14
- "@dative-gpi/foundation-shared-services": "1.0.46"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.48",
14
+ "@dative-gpi/foundation-shared-services": "1.0.48"
15
15
  },
16
- "gitHead": "2798111f89f8a6eefc603e3777cce7b08cd9f56b"
16
+ "gitHead": "e25e37a1904fb22627a8fc0ace26f46cc5402dbd"
17
17
  }