@dative-gpi/foundation-core-domain 1.0.75 → 1.0.76

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.
@@ -8,11 +8,11 @@ export class ScenarioOrganisationTypeInfos {
8
8
  organisationTypeId: string | null;
9
9
  organisationTypeLabel: string | null;
10
10
  scope: ApplicationScope;
11
- modelId: string;
11
+ modelId: string | null;
12
12
  modelLabel: string;
13
- dataCategoryId: string;
13
+ dataCategoryId: string | null;
14
14
  dataCategoryLabel: string;
15
- dataDefinitionId: string;
15
+ dataDefinitionId: string | null;
16
16
  dataDefinitionLabel: string;
17
17
  criticity: Criticity;
18
18
  label: string;
@@ -56,11 +56,11 @@ export interface ScenarioOrganisationTypeInfosDTO {
56
56
  organisationTypeId: string | null;
57
57
  organisationTypeLabel: string | null;
58
58
  scope: number;
59
- modelId: string;
59
+ modelId: string | null;
60
60
  modelLabel: string;
61
- dataCategoryId: string;
61
+ dataCategoryId: string | null;
62
62
  dataCategoryLabel: string;
63
- dataDefinitionId: string;
63
+ dataDefinitionId: string | null;
64
64
  dataDefinitionLabel: string;
65
65
  criticity: number;
66
66
  label: string;
@@ -91,8 +91,8 @@ export interface ScenarioOrganisationDetailsDTO extends ScenarioOrganisationInfo
91
91
  }
92
92
 
93
93
  export interface CreateScenarioOrganisationDTO {
94
- modelId: string;
95
- dataCategoryId: string;
94
+ modelId: string | null;
95
+ dataCategoryId: string | null;
96
96
  dataDefinitionId: string | null;
97
97
  groupByIds: string[];
98
98
  metadataIds: string[];
@@ -7,11 +7,11 @@ export class ScenarioOrganisationInfos {
7
7
  scenarioId: string;
8
8
  organisationId: string;
9
9
  scope: ApplicationScope;
10
- modelId: string;
10
+ modelId: string | null;
11
11
  modelLabel: string;
12
- dataCategoryId: string;
12
+ dataCategoryId: string | null;
13
13
  dataCategoryLabel: string;
14
- dataDefinitionId: string;
14
+ dataDefinitionId: string | null;
15
15
  dataDefinitionLabel: string;
16
16
  criticity: Criticity;
17
17
  label: string;
@@ -53,11 +53,11 @@ export interface ScenarioOrganisationInfosDTO {
53
53
  scenarioId: string;
54
54
  organisationId: string;
55
55
  scope: number;
56
- modelId: string;
56
+ modelId: string | null;
57
57
  modelLabel: string;
58
- dataCategoryId: string;
58
+ dataCategoryId: string | null;
59
59
  dataCategoryLabel: string;
60
- dataDefinitionId: string;
60
+ dataDefinitionId: string | null;
61
61
  dataDefinitionLabel: string;
62
62
  criticity: number;
63
63
  label: string;
@@ -1,4 +1,4 @@
1
- import type { ApplicationScope } from "../enums/applicationEnums";
1
+ import type { ApplicationScope } from "@dative-gpi/foundation-shared-domain/enums";
2
2
 
3
3
  export class ScenarioChart {
4
4
  id: string;
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.75",
4
+ "version": "1.0.76",
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.75",
14
- "@dative-gpi/foundation-shared-services": "1.0.75"
13
+ "@dative-gpi/foundation-shared-domain": "1.0.76",
14
+ "@dative-gpi/foundation-shared-services": "1.0.76"
15
15
  },
16
- "gitHead": "ef20cc0c223aabf078f1383104e2651a9f6b290c"
16
+ "gitHead": "d75ff921b33a9a4774d0d92bafc2b40ce5d7089f"
17
17
  }