@dative-gpi/foundation-core-domain 0.0.118 → 0.0.120

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.
@@ -25,4 +25,8 @@ export interface ActionInfosDTO {
25
25
  uri: string;
26
26
  label: string;
27
27
  icon: string;
28
+ }
29
+
30
+ export interface ActionFilters {
31
+ path: string;
28
32
  }
@@ -54,6 +54,8 @@ export interface UpdateDashboardOrganisationTypeDTO {
54
54
  label: string;
55
55
  code: string;
56
56
  icon: string;
57
+ imageId: string | null;
58
+ image: string | null;
57
59
  tags: string[];
58
60
  singleEntity: boolean;
59
61
  dynamicEntities: boolean;
@@ -6,6 +6,7 @@ export class DashboardOrganisationTypeInfos {
6
6
  organisationTypeId: string | null;
7
7
  organisationTypeLabel: string | null;
8
8
  scope: ApplicationScope;
9
+ imageId: string | null;
9
10
  locked: boolean;
10
11
  label: string;
11
12
  code: string;
@@ -18,6 +19,7 @@ export class DashboardOrganisationTypeInfos {
18
19
  this.dashboardId = params.dashboardId;
19
20
  this.organisationTypeId = params.organisationTypeId;
20
21
  this.organisationTypeLabel = params.organisationTypeLabel;
22
+ this.imageId = params.imageId;
21
23
  this.scope = params.scope;
22
24
  this.locked = params.locked;
23
25
  this.label = params.label;
@@ -33,6 +35,7 @@ export interface DashboardOrganisationTypeInfosDTO {
33
35
  dashboardId: string;
34
36
  organisationTypeId: string | null;
35
37
  organisationTypeLabel: string | null;
38
+ imageId: string | null;
36
39
  scope: ApplicationScope;
37
40
  locked: boolean;
38
41
  label: string;
@@ -54,6 +54,8 @@ export interface CreateDashboardOrganisationDTO {
54
54
  label: string;
55
55
  code: string;
56
56
  icon: string;
57
+ imageId: string | null;
58
+ image: string | null;
57
59
  tags: string[];
58
60
  }
59
61
 
@@ -62,6 +64,8 @@ export interface UpdateDashboardOrganisationDTO {
62
64
  label: string;
63
65
  code: string;
64
66
  icon: string;
67
+ imageId: string | null;
68
+ image: string | null;
65
69
  tags: string[];
66
70
  singleEntity: boolean;
67
71
  dynamicEntities: boolean;
@@ -7,6 +7,7 @@ export class DashboardOrganisationInfos {
7
7
  folderId: string | null;
8
8
  folderLabel: string | null;
9
9
  folderIcon: string | null;
10
+ imageId: string | null;
10
11
  scope: ApplicationScope;
11
12
  locked: boolean;
12
13
  label: string;
@@ -22,6 +23,7 @@ export class DashboardOrganisationInfos {
22
23
  this.folderId = params.folderId;
23
24
  this.folderLabel = params.folderLabel;
24
25
  this.folderIcon = params.folderIcon;
26
+ this.imageId = params.imageId;
25
27
  this.scope = params.scope;
26
28
  this.locked = params.locked;
27
29
  this.label = params.label;
@@ -39,6 +41,7 @@ export interface DashboardOrganisationInfosDTO {
39
41
  folderId: string | null;
40
42
  folderLabel: string | null;
41
43
  folderIcon: string | null;
44
+ imageId: string | null;
42
45
  scope: ApplicationScope;
43
46
  locked: boolean;
44
47
  label: string;
@@ -87,6 +87,8 @@ export interface UpdateDashboardShallowDTO {
87
87
  label: string;
88
88
  code: string;
89
89
  icon: string;
90
+ imageId: string | null;
91
+ image: string | null;
90
92
  tags: string[];
91
93
  overrideSingleEntity: boolean | null;
92
94
  overrideDynamicEntities: boolean | null;
@@ -8,6 +8,7 @@ export class DashboardShallowInfos {
8
8
  folderId: string | null;
9
9
  folderLabel: string | null;
10
10
  folderIcon: string | null;
11
+ imageId: string | null;
11
12
  label: string;
12
13
  code: string;
13
14
  icon: string;
@@ -24,6 +25,7 @@ export class DashboardShallowInfos {
24
25
  this.folderId = params.folderId;
25
26
  this.folderLabel = params.folderLabel;
26
27
  this.folderIcon = params.folderIcon;
28
+ this.imageId = params.imageId;
27
29
  this.label = params.label;
28
30
  this.code = params.code;
29
31
  this.icon = params.icon;
@@ -42,6 +44,7 @@ export interface DashboardShallowInfosDTO {
42
44
  folderId: string | null;
43
45
  folderLabel: string | null;
44
46
  folderIcon: string | null;
47
+ imageId: string | null;
45
48
  label: string;
46
49
  code: string;
47
50
  icon: string;
@@ -7,7 +7,7 @@ export class UserOrganisationTableInfos {
7
7
 
8
8
  // Depends on [OrganisationType, UserOrganisation]
9
9
  mode: "table" | "iterator";
10
- rowsPerPage: number;
10
+ rowsPerPage: -1 | 10 | 30;
11
11
  sortByKey: string | null;
12
12
  sortByOrder: "asc" | "desc" | null;
13
13
 
@@ -26,7 +26,7 @@ export interface UserOrganisationTableInfosDTO {
26
26
  id: string;
27
27
  code: string;
28
28
  mode: "table" | "iterator";
29
- rowsPerPage: number;
29
+ rowsPerPage: -1 | 10 | 30;
30
30
  sortByKey: string | null;
31
31
  sortByOrder: "asc" | "desc" | null;
32
32
  columns: UserOrganisationColumnInfosDTO[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dative-gpi/foundation-core-domain",
3
3
  "sideEffects": false,
4
- "version": "0.0.118",
4
+ "version": "0.0.120",
5
5
  "description": "",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -9,5 +9,5 @@
9
9
  "main": "index.ts",
10
10
  "author": "",
11
11
  "license": "ISC",
12
- "gitHead": "76a8d1b854de1eb1d0d914d4c15da28b5306e27f"
12
+ "gitHead": "faba41cbb99b47b855fbce6d40925eec86611d3d"
13
13
  }