@dative-gpi/foundation-core-domain 0.0.21 → 0.0.22

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.
package/models/index.ts CHANGED
@@ -28,7 +28,6 @@ export * from "./manufacturers";
28
28
  export * from "./models";
29
29
  export * from "./modelStatuses"; // No service
30
30
  export * from "./organisations";
31
- export * from "./organisationTypes";
32
31
  export * from "./permissionCategories";
33
32
  export * from "./roleOrganisations";
34
33
  export * from "./roleOrganisationTypes";
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.21",
4
+ "version": "0.0.22",
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": "27642f99177d57e7349dd826e922442a6c0720cb"
12
+ "gitHead": "2186455ca7eff6f916918d62b02874df3dd58150"
13
13
  }
@@ -1,2 +0,0 @@
1
- export * from "./organisationTypeDetails";
2
- export * from "./organisationTypeInfos";
@@ -1,21 +0,0 @@
1
- import { OrganisationTypeInfos, OrganisationTypeInfosDTO } from "./organisationTypeInfos";
2
- import { DashboardType } from "../enums/dashboardEnums";
3
-
4
- export class OrganisationTypeDetails extends OrganisationTypeInfos {
5
- description: string;
6
-
7
- constructor(params: OrganisationTypeDetailsDTO) {
8
- super(params);
9
-
10
- this.description = params.description;
11
- }
12
- }
13
-
14
- export interface OrganisationTypeDetailsDTO extends OrganisationTypeInfosDTO {
15
- description: string;
16
- }
17
-
18
- export interface ChangeOrganisationTypeDashboardDTO {
19
- mainDashboardId?: string;
20
- mainDashboardType: DashboardType;
21
- }
@@ -1,29 +0,0 @@
1
- import { DashboardType } from "../enums/dashboardEnums";
2
-
3
- export class OrganisationTypeInfos {
4
- id: string;
5
- mainDashboardId?: string;
6
- mainDashboardType: DashboardType;
7
- code: string;
8
- label: string;
9
-
10
- constructor(params: OrganisationTypeInfosDTO) {
11
- this.id = params.id;
12
- this.mainDashboardId = params.mainDashboardId;
13
- this.mainDashboardType = params.mainDashboardType;
14
- this.code = params.code;
15
- this.label = params.label;
16
- }
17
- }
18
-
19
- export interface OrganisationTypeInfosDTO {
20
- id: string;
21
- mainDashboardId?: string;
22
- mainDashboardType: DashboardType;
23
- code: string;
24
- label: string;
25
- }
26
-
27
- export interface OrganisationTypeFilters {
28
- search?: string;
29
- }