@dative-gpi/foundation-core-domain 0.0.200 → 0.0.202

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.
@@ -60,6 +60,7 @@ export interface CreateDashboardOrganisationDTO {
60
60
  image: string | null;
61
61
  labelDefault: string;
62
62
  code: string;
63
+ colors: string[];
63
64
  icon: string;
64
65
  tags: string[];
65
66
  translations: DashboardTranslationDTO[];
@@ -71,6 +72,7 @@ export interface UpdateDashboardOrganisationDTO {
71
72
  image: string | null;
72
73
  labelDefault: string;
73
74
  code: string;
75
+ colors: string[];
74
76
  icon: string;
75
77
  tags: string[];
76
78
  translations: DashboardTranslationDTO[];
@@ -14,6 +14,7 @@ export interface CreateFolderDTO {
14
14
  label: string;
15
15
  icon: string;
16
16
  code: string;
17
+ colors: string[];
17
18
  tags: string[];
18
19
  image: string | null;
19
20
  parentId: string | null;
@@ -23,6 +24,7 @@ export interface UpdateFolderDTO {
23
24
  label: string;
24
25
  icon: string;
25
26
  code: string;
27
+ colors: string[];
26
28
  tags: string[];
27
29
  imageId: string | null;
28
30
  image: 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": "0.0.200",
4
+ "version": "0.0.202",
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": "555bbbadca9a08f0b0dc897d94bb1275f20a087a"
12
+ "gitHead": "7ea892245b4d8ea67ae8e7c5d1797993b8e96531"
13
13
  }