@acorex/modules 21.0.0-next.18 → 21.0.0-next.19

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.
Files changed (33) hide show
  1. package/common/index.d.ts +1 -0
  2. package/contact-core/index.d.ts +90 -0
  3. package/fesm2022/acorex-modules-common.mjs +28 -0
  4. package/fesm2022/acorex-modules-common.mjs.map +1 -1
  5. package/fesm2022/acorex-modules-contact-core-emergency-service.entity-Cro3bM4G.mjs +318 -0
  6. package/fesm2022/acorex-modules-contact-core-emergency-service.entity-Cro3bM4G.mjs.map +1 -0
  7. package/fesm2022/acorex-modules-contact-core.mjs +247 -0
  8. package/fesm2022/acorex-modules-contact-core.mjs.map +1 -0
  9. package/fesm2022/acorex-modules-data-management.mjs +59 -0
  10. package/fesm2022/acorex-modules-data-management.mjs.map +1 -1
  11. package/fesm2022/acorex-modules-health-core-allergy-type.entity-BaZ4OhHW.mjs +65 -0
  12. package/fesm2022/acorex-modules-health-core-allergy-type.entity-BaZ4OhHW.mjs.map +1 -0
  13. package/fesm2022/acorex-modules-health-core-blood-type.entity-Cu-UIgw4.mjs +120 -0
  14. package/fesm2022/acorex-modules-health-core-blood-type.entity-Cu-UIgw4.mjs.map +1 -0
  15. package/fesm2022/acorex-modules-health-core-body-part.entity-Dc2SIiB3.mjs +65 -0
  16. package/fesm2022/acorex-modules-health-core-body-part.entity-Dc2SIiB3.mjs.map +1 -0
  17. package/fesm2022/acorex-modules-health-core-chronic-condition-type.entity-B-9j3pNB.mjs +65 -0
  18. package/fesm2022/acorex-modules-health-core-chronic-condition-type.entity-B-9j3pNB.mjs.map +1 -0
  19. package/fesm2022/acorex-modules-health-core-disability-status.entity-hs3vA3zZ.mjs +120 -0
  20. package/fesm2022/acorex-modules-health-core-disability-status.entity-hs3vA3zZ.mjs.map +1 -0
  21. package/fesm2022/acorex-modules-health-core-injury-type.entity-BUA1VsE_.mjs +65 -0
  22. package/fesm2022/acorex-modules-health-core-injury-type.entity-BUA1VsE_.mjs.map +1 -0
  23. package/fesm2022/acorex-modules-health-core-vaccination-type.entity-DBdFkwx6.mjs +65 -0
  24. package/fesm2022/acorex-modules-health-core-vaccination-type.entity-DBdFkwx6.mjs.map +1 -0
  25. package/fesm2022/acorex-modules-health-core.mjs +487 -0
  26. package/fesm2022/acorex-modules-health-core.mjs.map +1 -0
  27. package/fesm2022/acorex-modules-person-core-religion.entity-Czb5aHb6.mjs +120 -0
  28. package/fesm2022/acorex-modules-person-core-religion.entity-Czb5aHb6.mjs.map +1 -0
  29. package/fesm2022/acorex-modules-person-core.mjs +177 -1
  30. package/fesm2022/acorex-modules-person-core.mjs.map +1 -1
  31. package/health-core/index.d.ts +156 -0
  32. package/package.json +18 -10
  33. package/person-core/index.d.ts +16 -1
@@ -0,0 +1,156 @@
1
+ import * as i0 from '@angular/core';
2
+ import { AXPEntity, AXPMenuProvider, AXPMenuProviderContext } from '@acorex/platform/common';
3
+ import { AXPEntityDefinitionLoader } from '@acorex/platform/layout/entity';
4
+ import { AXPPermissionDefinitionProvider, AXPPermissionDefinitionProviderContext } from '@acorex/platform/auth';
5
+
6
+ declare class AXMHealthCoreModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMHealthCoreModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXMHealthCoreModule, never, never, never>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXMHealthCoreModule>;
10
+ }
11
+
12
+ declare const RootConfig: {
13
+ config: {
14
+ i18n: string;
15
+ module: string;
16
+ };
17
+ module: {
18
+ name: string;
19
+ title: string;
20
+ icon: string;
21
+ };
22
+ entities: {
23
+ allergyType: {
24
+ name: string;
25
+ title: string;
26
+ titlePlural: string;
27
+ icon: string;
28
+ };
29
+ bloodType: {
30
+ name: string;
31
+ title: string;
32
+ titlePlural: string;
33
+ icon: string;
34
+ };
35
+ bodyPart: {
36
+ name: string;
37
+ title: string;
38
+ titlePlural: string;
39
+ icon: string;
40
+ };
41
+ chronicConditionType: {
42
+ name: string;
43
+ title: string;
44
+ titlePlural: string;
45
+ icon: string;
46
+ };
47
+ disabilityStatus: {
48
+ name: string;
49
+ title: string;
50
+ titlePlural: string;
51
+ icon: string;
52
+ };
53
+ injuryType: {
54
+ name: string;
55
+ title: string;
56
+ titlePlural: string;
57
+ icon: string;
58
+ };
59
+ vaccinationType: {
60
+ name: string;
61
+ title: string;
62
+ titlePlural: string;
63
+ icon: string;
64
+ };
65
+ };
66
+ };
67
+
68
+ interface AXMHealthCoreAllergyTypeEntityModel {
69
+ id: string;
70
+ title: string;
71
+ description?: string | null;
72
+ }
73
+
74
+ interface AXMHealthCoreBloodTypeEntityModel {
75
+ id: string;
76
+ title: string;
77
+ description?: string | null;
78
+ }
79
+
80
+ interface AXMHealthCoreBodyPartEntityModel {
81
+ id: string;
82
+ title: string;
83
+ description?: string | null;
84
+ }
85
+
86
+ interface AXMHealthCoreChronicConditionTypeEntityModel {
87
+ id: string;
88
+ title: string;
89
+ description?: string | null;
90
+ }
91
+
92
+ interface AXMHealthCoreDisabilityStatusEntityModel {
93
+ id: string;
94
+ title: string;
95
+ description?: string | null;
96
+ }
97
+
98
+ interface AXMHealthCoreInjuryTypeEntityModel {
99
+ id: string;
100
+ title: string;
101
+ description?: string | null;
102
+ }
103
+
104
+ interface AXMHealthCoreVaccinationTypeEntityModel {
105
+ id: string;
106
+ title: string;
107
+ description?: string | null;
108
+ }
109
+
110
+ declare class AXMHealthCoreEntityProvider implements AXPEntityDefinitionLoader {
111
+ private readonly injector;
112
+ get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
113
+ list(): Promise<{
114
+ name: string;
115
+ module: string;
116
+ }[]>;
117
+ }
118
+
119
+ declare class AXMHealthCoreMenuProvider implements AXPMenuProvider {
120
+ private readonly entityService;
121
+ provide(context: AXPMenuProviderContext): Promise<void>;
122
+ }
123
+
124
+ declare class AXMHealthCorePermissionDefinitionProvider implements AXPPermissionDefinitionProvider {
125
+ private readonly translationService;
126
+ define(context: AXPPermissionDefinitionProviderContext): Promise<void>;
127
+ }
128
+
129
+ declare const AXMHealthCorePermissionKeys: {
130
+ readonly HealthCore: {
131
+ readonly AllergyType: {
132
+ readonly Management: "HealthCore:Permission:AllergyType.Management";
133
+ };
134
+ readonly BloodType: {
135
+ readonly Management: "HealthCore:Permission:BloodType.Management";
136
+ };
137
+ readonly BodyPart: {
138
+ readonly Management: "HealthCore:Permission:BodyPart.Management";
139
+ };
140
+ readonly ChronicConditionType: {
141
+ readonly Management: "HealthCore:Permission:ChronicConditionType.Management";
142
+ };
143
+ readonly DisabilityStatus: {
144
+ readonly Management: "HealthCore:Permission:DisabilityStatus.Management";
145
+ };
146
+ readonly InjuryType: {
147
+ readonly Management: "HealthCore:Permission:InjuryType.Management";
148
+ };
149
+ readonly VaccinationType: {
150
+ readonly Management: "HealthCore:Permission:VaccinationType.Management";
151
+ };
152
+ };
153
+ };
154
+
155
+ export { AXMHealthCoreEntityProvider, AXMHealthCoreMenuProvider, AXMHealthCoreModule, AXMHealthCorePermissionDefinitionProvider, AXMHealthCorePermissionKeys, RootConfig };
156
+ export type { AXMHealthCoreAllergyTypeEntityModel, AXMHealthCoreBloodTypeEntityModel, AXMHealthCoreBodyPartEntityModel, AXMHealthCoreChronicConditionTypeEntityModel, AXMHealthCoreDisabilityStatusEntityModel, AXMHealthCoreInjuryTypeEntityModel, AXMHealthCoreVaccinationTypeEntityModel };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@acorex/modules",
3
- "version": "21.0.0-next.18",
3
+ "version": "21.0.0-next.19",
4
4
  "peerDependencies": {
5
- "@acorex/platform": "21.0.0-next.18",
5
+ "@acorex/platform": "21.0.0-next.19",
6
6
  "@angular/service-worker": "^20.0.0",
7
7
  "angular-oauth2-oidc": "^15.0.0",
8
8
  "d3": "^7.0.0",
@@ -28,14 +28,14 @@
28
28
  "types": "./asset-management/index.d.ts",
29
29
  "default": "./fesm2022/acorex-modules-asset-management.mjs"
30
30
  },
31
- "./auth": {
32
- "types": "./auth/index.d.ts",
33
- "default": "./fesm2022/acorex-modules-auth.mjs"
34
- },
35
31
  "./application-management": {
36
32
  "types": "./application-management/index.d.ts",
37
33
  "default": "./fesm2022/acorex-modules-application-management.mjs"
38
34
  },
35
+ "./auth": {
36
+ "types": "./auth/index.d.ts",
37
+ "default": "./fesm2022/acorex-modules-auth.mjs"
38
+ },
39
39
  "./business-core": {
40
40
  "types": "./business-core/index.d.ts",
41
41
  "default": "./fesm2022/acorex-modules-business-core.mjs"
@@ -48,6 +48,10 @@
48
48
  "types": "./common/index.d.ts",
49
49
  "default": "./fesm2022/acorex-modules-common.mjs"
50
50
  },
51
+ "./contact-core": {
52
+ "types": "./contact-core/index.d.ts",
53
+ "default": "./fesm2022/acorex-modules-contact-core.mjs"
54
+ },
51
55
  "./contact-management": {
52
56
  "types": "./contact-management/index.d.ts",
53
57
  "default": "./fesm2022/acorex-modules-contact-management.mjs"
@@ -64,14 +68,14 @@
64
68
  "types": "./customer-management/index.d.ts",
65
69
  "default": "./fesm2022/acorex-modules-customer-management.mjs"
66
70
  },
67
- "./data-management": {
68
- "types": "./data-management/index.d.ts",
69
- "default": "./fesm2022/acorex-modules-data-management.mjs"
70
- },
71
71
  "./dashboard-management": {
72
72
  "types": "./dashboard-management/index.d.ts",
73
73
  "default": "./fesm2022/acorex-modules-dashboard-management.mjs"
74
74
  },
75
+ "./data-management": {
76
+ "types": "./data-management/index.d.ts",
77
+ "default": "./fesm2022/acorex-modules-data-management.mjs"
78
+ },
75
79
  "./document-management": {
76
80
  "types": "./document-management/index.d.ts",
77
81
  "default": "./fesm2022/acorex-modules-document-management.mjs"
@@ -84,6 +88,10 @@
84
88
  "types": "./form-template-management/index.d.ts",
85
89
  "default": "./fesm2022/acorex-modules-form-template-management.mjs"
86
90
  },
91
+ "./health-core": {
92
+ "types": "./health-core/index.d.ts",
93
+ "default": "./fesm2022/acorex-modules-health-core.mjs"
94
+ },
87
95
  "./help-desk": {
88
96
  "types": "./help-desk/index.d.ts",
89
97
  "default": "./fesm2022/acorex-modules-help-desk.mjs"
@@ -44,6 +44,12 @@ declare const RootConfig: {
44
44
  titlePlural: string;
45
45
  icon: string;
46
46
  };
47
+ religion: {
48
+ name: string;
49
+ title: string;
50
+ titlePlural: string;
51
+ icon: string;
52
+ };
47
53
  };
48
54
  };
49
55
 
@@ -77,6 +83,12 @@ interface AXMPersonCorePersonRelationshipTypeEntityModel {
77
83
  isDirectional: boolean;
78
84
  }
79
85
 
86
+ interface AXMPersonCoreReligionEntityModel {
87
+ id: string;
88
+ title: string;
89
+ description?: string | null;
90
+ }
91
+
80
92
  declare class AXMPersonCoreEntityProvider implements AXPEntityDefinitionLoader {
81
93
  private readonly injector;
82
94
  get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
@@ -110,8 +122,11 @@ declare const AXMPersonCorePermissionKeys: {
110
122
  readonly PersonRelationshipType: {
111
123
  readonly Management: "PersonCore:Permission:PersonRelationshipType.Management";
112
124
  };
125
+ readonly Religion: {
126
+ readonly Management: "PersonCore:Permission:Religion.Management";
127
+ };
113
128
  };
114
129
  };
115
130
 
116
131
  export { AXMPersonCoreEntityProvider, AXMPersonCoreMenuProvider, AXMPersonCoreModule, AXMPersonCorePermissionDefinitionProvider, AXMPersonCorePermissionKeys, RootConfig };
117
- export type { AXMPersonCoreEducationLevelEntityModel, AXMPersonCoreMaritalStatusEntityModel, AXMPersonCorePersonIdentifierTypeEntityModel, AXMPersonCorePersonRelationshipTypeEntityModel };
132
+ export type { AXMPersonCoreEducationLevelEntityModel, AXMPersonCoreMaritalStatusEntityModel, AXMPersonCorePersonIdentifierTypeEntityModel, AXMPersonCorePersonRelationshipTypeEntityModel, AXMPersonCoreReligionEntityModel };