@dative-gpi/foundation-core-domain 1.0.59 → 1.0.62

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,7 +21,7 @@ export class DashboardEntityPresetInfos {
21
21
  this.hiddenCode = params.hiddenCode;
22
22
  this.labelDefault = params.labelDefault;
23
23
  this.singleEntity = params.singleEntity;
24
- this.EntityType = params.EntityType;
24
+ this.entityType = params.entityType;
25
25
  this.entitiesFilters = params.entitiesFilters;
26
26
  this.entitiesIds = params.entitiesIds.slice();
27
27
  this.translations = params.translations.map(t => new DashboardEntityPresetTranslation(t));
@@ -46,6 +46,6 @@ export interface DashboardOrganisationTypeInfosDTO {
46
46
  }
47
47
 
48
48
  export interface DashboardOrganisationTypeFilters {
49
- dashboardOrganisationTypeIds?: string[] | null;
49
+ dashboardOrganisationTypesIds?: string[] | null;
50
50
  search?: string | null;
51
51
  }
@@ -52,7 +52,7 @@ export interface DashboardOrganisationInfosDTO {
52
52
  }
53
53
 
54
54
  export interface DashboardOrganisationFilters {
55
- dashboardOrganisationIds?: string[] | null;
55
+ dashboardOrganisationsIds?: string[] | null;
56
56
  root?: boolean | null;
57
57
  folderId?: string | null;
58
58
  search?: string | null;
@@ -10,7 +10,7 @@ export class DashboardShallowEntityPresetInfos {
10
10
  constructor(params: DashboardShallowEntityPresetInfosDTO) {
11
11
  this.hiddenCode = params.hiddenCode;
12
12
  this.singleEntity = params.singleEntity;
13
- this.EntityType = params.EntityType;
13
+ this.entityType = params.entityType;
14
14
  this.entitiesFilters = params.entitiesFilters;
15
15
  this.entitiesIds = params.entitiesIds.slice();
16
16
  }
@@ -50,4 +50,5 @@ export interface FolderFilters {
50
50
  parentId?: string | null;
51
51
  root?: boolean | null;
52
52
  search?: string | null;
53
+ foldersIds?: string[] | null;
53
54
  }
@@ -72,5 +72,6 @@ export interface UserOrganisationInfosDTO {
72
72
 
73
73
  export interface UserOrganisationFilters {
74
74
  userId?: string | null;
75
+ userOrganisationsIds?: string[] | null;
75
76
  search?: string | null;
76
77
  }
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.59",
4
+ "version": "1.0.62",
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.59",
14
- "@dative-gpi/foundation-shared-services": "1.0.59"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.62",
14
+ "@dative-gpi/foundation-shared-services": "1.0.62"
15
15
  },
16
- "gitHead": "583e582d2f2185269a2d2880806be36bdc4dffdd"
16
+ "gitHead": "aebca5afe970e1d7117b5515abba742a6c96fa3a"
17
17
  }