@dative-gpi/foundation-core-domain 1.1.18 → 1.1.20

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.
@@ -3,7 +3,6 @@ import { ModelInfos } from "../models/modelInfos";
3
3
 
4
4
  export class DataCategoryInfos {
5
5
  id: string;
6
- applicationId: string;
7
6
  code: string;
8
7
  label: string;
9
8
  correlated: boolean;
@@ -11,7 +10,6 @@ export class DataCategoryInfos {
11
10
 
12
11
  constructor(params: DataCategoryInfosDTO) {
13
12
  this.id = params.id;
14
- this.applicationId = params.applicationId;
15
13
  this.code = params.code;
16
14
  this.label = params.label;
17
15
  this.correlated = params.correlated;
@@ -21,7 +19,6 @@ export class DataCategoryInfos {
21
19
 
22
20
  export interface DataCategoryInfosDTO {
23
21
  id: string;
24
- applicationId: string;
25
22
  code: string;
26
23
  label: string;
27
24
  correlated: boolean;
@@ -1,7 +1,5 @@
1
1
  export class ModelInfos {
2
2
  id: string;
3
- manufacturerId: string;
4
- manufacturerLabel: string;
5
3
  imageId: string | null;
6
4
  code: string;
7
5
  label: string;
@@ -9,9 +7,7 @@ export class ModelInfos {
9
7
 
10
8
  constructor(params: ModelInfosDTO) {
11
9
  this.id = params.id;
12
- this.manufacturerId = params.manufacturerId;
13
- this.manufacturerLabel = params.manufacturerLabel;
14
- this.imageId = params.imageId;
10
+ this.imageId = params.imageId ?? null;
15
11
  this.code = params.code;
16
12
  this.label = params.label;
17
13
  this.connectable = params.connectable;
@@ -20,9 +16,7 @@ export class ModelInfos {
20
16
 
21
17
  export interface ModelInfosDTO {
22
18
  id: string;
23
- manufacturerId: string;
24
- manufacturerLabel: string;
25
- imageId: string | null;
19
+ imageId?: string | null;
26
20
  code: string;
27
21
  label: string;
28
22
  connectable: boolean;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "url": "https://github.com/Dative-GPI/foundation-shared-ui.git"
5
5
  },
6
6
  "sideEffects": false,
7
- "version": "1.1.18",
7
+ "version": "1.1.20",
8
8
  "description": "",
9
9
  "publishConfig": {
10
10
  "access": "public"
@@ -13,8 +13,8 @@
13
13
  "author": "",
14
14
  "license": "ISC",
15
15
  "dependencies": {
16
- "@dative-gpi/foundation-shared-domain": "1.1.18",
17
- "@dative-gpi/foundation-shared-services": "1.1.18"
16
+ "@dative-gpi/foundation-shared-domain": "1.1.20",
17
+ "@dative-gpi/foundation-shared-services": "1.1.20"
18
18
  },
19
- "gitHead": "5fbb75c2d2c18eeef57f17f2fd6962a05b1e6275"
19
+ "gitHead": "539eadec4b1b99e06638b021a59ae11c20cff383"
20
20
  }