@dative-gpi/foundation-core-domain 1.0.139-widgetextensions → 1.0.139-widgethiddencode

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.
@@ -1,4 +1,4 @@
1
1
  export interface CreateDashboardShallowWidgetDTO {
2
- widgetId: string;
2
+ hiddenCode: string;
3
3
  meta: { [key: string]: string };
4
4
  }
@@ -15,16 +15,16 @@ const clean = <T>(meta: T): T => {
15
15
  }
16
16
 
17
17
  export class DashboardShallowWidgetInfos {
18
- widgetId: string;
18
+ hiddenCode: string;
19
19
  meta: { [key: string]: string };
20
20
 
21
21
  constructor(params: DashboardShallowWidgetInfosDTO) {
22
- this.widgetId = params.widgetId;
22
+ this.hiddenCode = params.hiddenCode;
23
23
  this.meta = clean(params.meta);
24
24
  }
25
25
  }
26
26
 
27
27
  export interface DashboardShallowWidgetInfosDTO {
28
- widgetId: string;
28
+ hiddenCode: string;
29
29
  meta: { [key: string]: string };
30
30
  }
@@ -12,6 +12,7 @@ export interface WidgetDetailsDTO extends WidgetInfosDTO {
12
12
  }
13
13
 
14
14
  export interface CreateWidgetDTO {
15
+ hiddenCode: string;
15
16
  templateType: WidgetTemplateType;
16
17
  templateId: string;
17
18
  hideBorders: boolean;
@@ -16,6 +16,7 @@ const clean = <T>(meta: T): T => {
16
16
 
17
17
  export class WidgetInfos {
18
18
  id: string;
19
+ hiddenCode: string;
19
20
  templateType: WidgetTemplateType;
20
21
  templateId: string;
21
22
  hideBorders: boolean;
@@ -28,6 +29,7 @@ export class WidgetInfos {
28
29
 
29
30
  constructor(params: WidgetInfosDTO) {
30
31
  this.id = params.id;
32
+ this.hiddenCode = params.hiddenCode;
31
33
  this.templateType = params.templateType;
32
34
  this.templateId = params.templateId;
33
35
  this.hideBorders = params.hideBorders;
@@ -42,6 +44,7 @@ export class WidgetInfos {
42
44
 
43
45
  export interface WidgetInfosDTO {
44
46
  id: string;
47
+ hiddenCode: string;
45
48
  templateType: WidgetTemplateType;
46
49
  templateId: string;
47
50
  hideBorders: boolean;
@@ -2,6 +2,7 @@ import type { WidgetTemplateType } from '@dative-gpi/foundation-shared-domain/en
2
2
 
3
3
  export interface Widget {
4
4
  id: string;
5
+ hiddenCode: string;
5
6
  templateType: WidgetTemplateType;
6
7
  templateId: string;
7
8
  hideBorders: boolean;
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.139-widgetextensions",
4
+ "version": "1.0.139-widgethiddencode",
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.139-widgetextensions",
14
- "@dative-gpi/foundation-shared-services": "1.0.139-widgetextensions"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.139-widgethiddencode",
14
+ "@dative-gpi/foundation-shared-services": "1.0.139-widgethiddencode"
15
15
  },
16
- "gitHead": "940ca3219ce7b2be17e5977c2e539131d353380e"
16
+ "gitHead": "431f23c7e498b616485cc66cf38ff70378b99552"
17
17
  }