gdc-common-utils-ts 1.14.0 → 1.14.1
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/README.md +2 -0
- package/dist/constants/healthcare.d.ts +274 -0
- package/dist/constants/healthcare.js +212 -2
- package/dist/examples/communication-bundle-session.d.ts +22 -0
- package/dist/examples/communication-bundle-session.js +81 -0
- package/dist/examples/index.d.ts +1 -0
- package/dist/examples/index.js +1 -0
- package/dist/examples/shared.d.ts +8 -0
- package/dist/examples/shared.js +8 -0
- package/dist/i18n/role-codes.i18n.d.ts +4 -0
- package/dist/i18n/role-codes.i18n.js +13 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/models/bundle.d.ts +3 -0
- package/dist/models/interoperable-claims/communication-claims.d.ts +24 -0
- package/dist/models/interoperable-claims/communication-claims.js +24 -0
- package/dist/models/interoperable-claims/medication-statement-claims.d.ts +5 -0
- package/dist/models/interoperable-claims/medication-statement-claims.js +5 -0
- package/dist/utils/bundle-query.d.ts +35 -0
- package/dist/utils/bundle-query.js +178 -0
- package/dist/utils/clinical-resource-view.d.ts +55 -0
- package/dist/utils/clinical-resource-view.js +291 -0
- package/dist/utils/communication-bundle-session.d.ts +110 -0
- package/dist/utils/communication-bundle-session.js +330 -0
- package/dist/utils/consent-claim-helpers.d.ts +66 -0
- package/dist/utils/consent-claim-helpers.js +178 -0
- package/dist/utils/index.d.ts +5 -0
- package/dist/utils/index.js +5 -0
- package/dist/utils/medication-claim-helpers.d.ts +47 -0
- package/dist/utils/medication-claim-helpers.js +104 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -275,6 +275,8 @@ The canonical API contract should live in JSDoc on exported code. The README act
|
|
|
275
275
|
- `tenantId` is modeled as an identifier-like route token (`acme-id`), not as a friendly alternate name.
|
|
276
276
|
- [`docs/LIFECYCLE_101.md`](docs/LIFECYCLE_101.md)
|
|
277
277
|
- Copy/paste lifecycle `101` guide with semantic rules and reusable placeholders.
|
|
278
|
+
- [`docs/HEALTHCARE_ROLES_I18N_101.md`](docs/HEALTHCARE_ROLES_I18N_101.md)
|
|
279
|
+
- Sector-aware healthcare role catalog and i18n `101` (ISCO-08 + HL7) for FE/BE onboarding.
|
|
278
280
|
|
|
279
281
|
## Documentation Naming Rules
|
|
280
282
|
|
|
@@ -1,69 +1,119 @@
|
|
|
1
1
|
import { LOINC_SYSTEM_URL } from '../models/clinical-sections';
|
|
2
|
+
import { type DataspaceSector } from './sectors';
|
|
2
3
|
export type HealthcareSectionDescriptor = Readonly<{
|
|
3
4
|
system: typeof LOINC_SYSTEM_URL;
|
|
4
5
|
code: string;
|
|
5
6
|
claim: string;
|
|
7
|
+
i18nKey: `org.loinc.${string}`;
|
|
8
|
+
titleEn?: string;
|
|
6
9
|
}>;
|
|
10
|
+
export declare const ISCO08_CODING_SYSTEM: "org.ilo.isco";
|
|
11
|
+
export declare const ISCO08_I18N_NAMESPACE: "org.ilo.isco-08";
|
|
12
|
+
export declare const HealthcareRoleFamilies: Readonly<{
|
|
13
|
+
readonly ProfessionalOccupationIsco08: "professionalOccupationIsco08";
|
|
14
|
+
readonly PersonalRelationshipHl7: "personalRelationshipHl7";
|
|
15
|
+
readonly LegalRepresentativeHl7: "legalRepresentativeHl7";
|
|
16
|
+
}>;
|
|
17
|
+
export type HealthcareRoleFamily = typeof HealthcareRoleFamilies[keyof typeof HealthcareRoleFamilies];
|
|
18
|
+
export type HealthcareActorRoleDescriptor = Readonly<{
|
|
19
|
+
family: HealthcareRoleFamily;
|
|
20
|
+
codingSystem: string;
|
|
21
|
+
code: string;
|
|
22
|
+
claim: string;
|
|
23
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
24
|
+
titleEn: string;
|
|
25
|
+
definition?: string;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const HealthcareSectionFamilies: Readonly<{
|
|
28
|
+
readonly Summary: "summary";
|
|
29
|
+
readonly Management: "management";
|
|
30
|
+
readonly SubjectMatterDomain: "subjectMatterDomain";
|
|
31
|
+
}>;
|
|
32
|
+
export type HealthcareSectionFamily = typeof HealthcareSectionFamilies[keyof typeof HealthcareSectionFamilies];
|
|
7
33
|
export declare const HealthcareBasicSections: Readonly<{
|
|
8
34
|
PatientSummaryDocument: Readonly<{
|
|
9
35
|
system: typeof LOINC_SYSTEM_URL;
|
|
10
36
|
code: string;
|
|
11
37
|
claim: string;
|
|
38
|
+
i18nKey: `org.loinc.${string}`;
|
|
39
|
+
titleEn?: string;
|
|
12
40
|
}>;
|
|
13
41
|
AllergiesAndIntolerances: Readonly<{
|
|
14
42
|
system: typeof LOINC_SYSTEM_URL;
|
|
15
43
|
code: string;
|
|
16
44
|
claim: string;
|
|
45
|
+
i18nKey: `org.loinc.${string}`;
|
|
46
|
+
titleEn?: string;
|
|
17
47
|
}>;
|
|
18
48
|
HistoryOfMedicationUse: Readonly<{
|
|
19
49
|
system: typeof LOINC_SYSTEM_URL;
|
|
20
50
|
code: string;
|
|
21
51
|
claim: string;
|
|
52
|
+
i18nKey: `org.loinc.${string}`;
|
|
53
|
+
titleEn?: string;
|
|
22
54
|
}>;
|
|
23
55
|
ProblemList: Readonly<{
|
|
24
56
|
system: typeof LOINC_SYSTEM_URL;
|
|
25
57
|
code: string;
|
|
26
58
|
claim: string;
|
|
59
|
+
i18nKey: `org.loinc.${string}`;
|
|
60
|
+
titleEn?: string;
|
|
27
61
|
}>;
|
|
28
62
|
Results: Readonly<{
|
|
29
63
|
system: typeof LOINC_SYSTEM_URL;
|
|
30
64
|
code: string;
|
|
31
65
|
claim: string;
|
|
66
|
+
i18nKey: `org.loinc.${string}`;
|
|
67
|
+
titleEn?: string;
|
|
32
68
|
}>;
|
|
33
69
|
Procedures: Readonly<{
|
|
34
70
|
system: typeof LOINC_SYSTEM_URL;
|
|
35
71
|
code: string;
|
|
36
72
|
claim: string;
|
|
73
|
+
i18nKey: `org.loinc.${string}`;
|
|
74
|
+
titleEn?: string;
|
|
37
75
|
}>;
|
|
38
76
|
Immunizations: Readonly<{
|
|
39
77
|
system: typeof LOINC_SYSTEM_URL;
|
|
40
78
|
code: string;
|
|
41
79
|
claim: string;
|
|
80
|
+
i18nKey: `org.loinc.${string}`;
|
|
81
|
+
titleEn?: string;
|
|
42
82
|
}>;
|
|
43
83
|
MedicalDevices: Readonly<{
|
|
44
84
|
system: typeof LOINC_SYSTEM_URL;
|
|
45
85
|
code: string;
|
|
46
86
|
claim: string;
|
|
87
|
+
i18nKey: `org.loinc.${string}`;
|
|
88
|
+
titleEn?: string;
|
|
47
89
|
}>;
|
|
48
90
|
FunctionalStatus: Readonly<{
|
|
49
91
|
system: typeof LOINC_SYSTEM_URL;
|
|
50
92
|
code: string;
|
|
51
93
|
claim: string;
|
|
94
|
+
i18nKey: `org.loinc.${string}`;
|
|
95
|
+
titleEn?: string;
|
|
52
96
|
}>;
|
|
53
97
|
PlanOfCare: Readonly<{
|
|
54
98
|
system: typeof LOINC_SYSTEM_URL;
|
|
55
99
|
code: string;
|
|
56
100
|
claim: string;
|
|
101
|
+
i18nKey: `org.loinc.${string}`;
|
|
102
|
+
titleEn?: string;
|
|
57
103
|
}>;
|
|
58
104
|
SocialHistory: Readonly<{
|
|
59
105
|
system: typeof LOINC_SYSTEM_URL;
|
|
60
106
|
code: string;
|
|
61
107
|
claim: string;
|
|
108
|
+
i18nKey: `org.loinc.${string}`;
|
|
109
|
+
titleEn?: string;
|
|
62
110
|
}>;
|
|
63
111
|
VitalSigns: Readonly<{
|
|
64
112
|
system: typeof LOINC_SYSTEM_URL;
|
|
65
113
|
code: string;
|
|
66
114
|
claim: string;
|
|
115
|
+
i18nKey: `org.loinc.${string}`;
|
|
116
|
+
titleEn?: string;
|
|
67
117
|
}>;
|
|
68
118
|
}>;
|
|
69
119
|
export declare const HealthcareAdditionalSections: Readonly<{
|
|
@@ -71,31 +121,43 @@ export declare const HealthcareAdditionalSections: Readonly<{
|
|
|
71
121
|
system: typeof LOINC_SYSTEM_URL;
|
|
72
122
|
code: string;
|
|
73
123
|
claim: string;
|
|
124
|
+
i18nKey: `org.loinc.${string}`;
|
|
125
|
+
titleEn?: string;
|
|
74
126
|
}>;
|
|
75
127
|
DiagnosticImaging: Readonly<{
|
|
76
128
|
system: typeof LOINC_SYSTEM_URL;
|
|
77
129
|
code: string;
|
|
78
130
|
claim: string;
|
|
131
|
+
i18nKey: `org.loinc.${string}`;
|
|
132
|
+
titleEn?: string;
|
|
79
133
|
}>;
|
|
80
134
|
HistoryOfPastIllness: Readonly<{
|
|
81
135
|
system: typeof LOINC_SYSTEM_URL;
|
|
82
136
|
code: string;
|
|
83
137
|
claim: string;
|
|
138
|
+
i18nKey: `org.loinc.${string}`;
|
|
139
|
+
titleEn?: string;
|
|
84
140
|
}>;
|
|
85
141
|
ReasonForReferral: Readonly<{
|
|
86
142
|
system: typeof LOINC_SYSTEM_URL;
|
|
87
143
|
code: string;
|
|
88
144
|
claim: string;
|
|
145
|
+
i18nKey: `org.loinc.${string}`;
|
|
146
|
+
titleEn?: string;
|
|
89
147
|
}>;
|
|
90
148
|
ChiefComplaint: Readonly<{
|
|
91
149
|
system: typeof LOINC_SYSTEM_URL;
|
|
92
150
|
code: string;
|
|
93
151
|
claim: string;
|
|
152
|
+
i18nKey: `org.loinc.${string}`;
|
|
153
|
+
titleEn?: string;
|
|
94
154
|
}>;
|
|
95
155
|
HealthcareGeneral: Readonly<{
|
|
96
156
|
system: typeof LOINC_SYSTEM_URL;
|
|
97
157
|
code: string;
|
|
98
158
|
claim: string;
|
|
159
|
+
i18nKey: `org.loinc.${string}`;
|
|
160
|
+
titleEn?: string;
|
|
99
161
|
}>;
|
|
100
162
|
}>;
|
|
101
163
|
export declare const HealthcareAllSections: Readonly<{
|
|
@@ -103,93 +165,164 @@ export declare const HealthcareAllSections: Readonly<{
|
|
|
103
165
|
system: typeof LOINC_SYSTEM_URL;
|
|
104
166
|
code: string;
|
|
105
167
|
claim: string;
|
|
168
|
+
i18nKey: `org.loinc.${string}`;
|
|
169
|
+
titleEn?: string;
|
|
106
170
|
}>;
|
|
107
171
|
DiagnosticImaging: Readonly<{
|
|
108
172
|
system: typeof LOINC_SYSTEM_URL;
|
|
109
173
|
code: string;
|
|
110
174
|
claim: string;
|
|
175
|
+
i18nKey: `org.loinc.${string}`;
|
|
176
|
+
titleEn?: string;
|
|
111
177
|
}>;
|
|
112
178
|
HistoryOfPastIllness: Readonly<{
|
|
113
179
|
system: typeof LOINC_SYSTEM_URL;
|
|
114
180
|
code: string;
|
|
115
181
|
claim: string;
|
|
182
|
+
i18nKey: `org.loinc.${string}`;
|
|
183
|
+
titleEn?: string;
|
|
116
184
|
}>;
|
|
117
185
|
ReasonForReferral: Readonly<{
|
|
118
186
|
system: typeof LOINC_SYSTEM_URL;
|
|
119
187
|
code: string;
|
|
120
188
|
claim: string;
|
|
189
|
+
i18nKey: `org.loinc.${string}`;
|
|
190
|
+
titleEn?: string;
|
|
121
191
|
}>;
|
|
122
192
|
ChiefComplaint: Readonly<{
|
|
123
193
|
system: typeof LOINC_SYSTEM_URL;
|
|
124
194
|
code: string;
|
|
125
195
|
claim: string;
|
|
196
|
+
i18nKey: `org.loinc.${string}`;
|
|
197
|
+
titleEn?: string;
|
|
126
198
|
}>;
|
|
127
199
|
HealthcareGeneral: Readonly<{
|
|
128
200
|
system: typeof LOINC_SYSTEM_URL;
|
|
129
201
|
code: string;
|
|
130
202
|
claim: string;
|
|
203
|
+
i18nKey: `org.loinc.${string}`;
|
|
204
|
+
titleEn?: string;
|
|
131
205
|
}>;
|
|
132
206
|
PatientSummaryDocument: Readonly<{
|
|
133
207
|
system: typeof LOINC_SYSTEM_URL;
|
|
134
208
|
code: string;
|
|
135
209
|
claim: string;
|
|
210
|
+
i18nKey: `org.loinc.${string}`;
|
|
211
|
+
titleEn?: string;
|
|
136
212
|
}>;
|
|
137
213
|
AllergiesAndIntolerances: Readonly<{
|
|
138
214
|
system: typeof LOINC_SYSTEM_URL;
|
|
139
215
|
code: string;
|
|
140
216
|
claim: string;
|
|
217
|
+
i18nKey: `org.loinc.${string}`;
|
|
218
|
+
titleEn?: string;
|
|
141
219
|
}>;
|
|
142
220
|
HistoryOfMedicationUse: Readonly<{
|
|
143
221
|
system: typeof LOINC_SYSTEM_URL;
|
|
144
222
|
code: string;
|
|
145
223
|
claim: string;
|
|
224
|
+
i18nKey: `org.loinc.${string}`;
|
|
225
|
+
titleEn?: string;
|
|
146
226
|
}>;
|
|
147
227
|
ProblemList: Readonly<{
|
|
148
228
|
system: typeof LOINC_SYSTEM_URL;
|
|
149
229
|
code: string;
|
|
150
230
|
claim: string;
|
|
231
|
+
i18nKey: `org.loinc.${string}`;
|
|
232
|
+
titleEn?: string;
|
|
151
233
|
}>;
|
|
152
234
|
Results: Readonly<{
|
|
153
235
|
system: typeof LOINC_SYSTEM_URL;
|
|
154
236
|
code: string;
|
|
155
237
|
claim: string;
|
|
238
|
+
i18nKey: `org.loinc.${string}`;
|
|
239
|
+
titleEn?: string;
|
|
156
240
|
}>;
|
|
157
241
|
Procedures: Readonly<{
|
|
158
242
|
system: typeof LOINC_SYSTEM_URL;
|
|
159
243
|
code: string;
|
|
160
244
|
claim: string;
|
|
245
|
+
i18nKey: `org.loinc.${string}`;
|
|
246
|
+
titleEn?: string;
|
|
161
247
|
}>;
|
|
162
248
|
Immunizations: Readonly<{
|
|
163
249
|
system: typeof LOINC_SYSTEM_URL;
|
|
164
250
|
code: string;
|
|
165
251
|
claim: string;
|
|
252
|
+
i18nKey: `org.loinc.${string}`;
|
|
253
|
+
titleEn?: string;
|
|
166
254
|
}>;
|
|
167
255
|
MedicalDevices: Readonly<{
|
|
168
256
|
system: typeof LOINC_SYSTEM_URL;
|
|
169
257
|
code: string;
|
|
170
258
|
claim: string;
|
|
259
|
+
i18nKey: `org.loinc.${string}`;
|
|
260
|
+
titleEn?: string;
|
|
171
261
|
}>;
|
|
172
262
|
FunctionalStatus: Readonly<{
|
|
173
263
|
system: typeof LOINC_SYSTEM_URL;
|
|
174
264
|
code: string;
|
|
175
265
|
claim: string;
|
|
266
|
+
i18nKey: `org.loinc.${string}`;
|
|
267
|
+
titleEn?: string;
|
|
176
268
|
}>;
|
|
177
269
|
PlanOfCare: Readonly<{
|
|
178
270
|
system: typeof LOINC_SYSTEM_URL;
|
|
179
271
|
code: string;
|
|
180
272
|
claim: string;
|
|
273
|
+
i18nKey: `org.loinc.${string}`;
|
|
274
|
+
titleEn?: string;
|
|
181
275
|
}>;
|
|
182
276
|
SocialHistory: Readonly<{
|
|
183
277
|
system: typeof LOINC_SYSTEM_URL;
|
|
184
278
|
code: string;
|
|
185
279
|
claim: string;
|
|
280
|
+
i18nKey: `org.loinc.${string}`;
|
|
281
|
+
titleEn?: string;
|
|
186
282
|
}>;
|
|
187
283
|
VitalSigns: Readonly<{
|
|
188
284
|
system: typeof LOINC_SYSTEM_URL;
|
|
189
285
|
code: string;
|
|
190
286
|
claim: string;
|
|
287
|
+
i18nKey: `org.loinc.${string}`;
|
|
288
|
+
titleEn?: string;
|
|
191
289
|
}>;
|
|
192
290
|
}>;
|
|
291
|
+
/**
|
|
292
|
+
* Full section families sourced from the existing section catalogs in
|
|
293
|
+
* `models/clinical-sections.en.ts`.
|
|
294
|
+
*
|
|
295
|
+
* Family mapping used by SDK/business layers:
|
|
296
|
+
* - `summary`: IPS/base summary sections.
|
|
297
|
+
* - `management`: kind-of-document and type-of-service oriented sections.
|
|
298
|
+
* - `subjectMatterDomain`: additional service-domain sections.
|
|
299
|
+
*/
|
|
300
|
+
export declare const HealthcareSectionsByFamily: Readonly<{
|
|
301
|
+
readonly summary: Readonly<Record<string, Readonly<{
|
|
302
|
+
system: typeof LOINC_SYSTEM_URL;
|
|
303
|
+
code: string;
|
|
304
|
+
claim: string;
|
|
305
|
+
i18nKey: `org.loinc.${string}`;
|
|
306
|
+
titleEn?: string;
|
|
307
|
+
}>>>;
|
|
308
|
+
readonly management: Readonly<Record<string, Readonly<{
|
|
309
|
+
system: typeof LOINC_SYSTEM_URL;
|
|
310
|
+
code: string;
|
|
311
|
+
claim: string;
|
|
312
|
+
i18nKey: `org.loinc.${string}`;
|
|
313
|
+
titleEn?: string;
|
|
314
|
+
}>>>;
|
|
315
|
+
readonly subjectMatterDomain: Readonly<Record<string, Readonly<{
|
|
316
|
+
system: typeof LOINC_SYSTEM_URL;
|
|
317
|
+
code: string;
|
|
318
|
+
claim: string;
|
|
319
|
+
i18nKey: `org.loinc.${string}`;
|
|
320
|
+
titleEn?: string;
|
|
321
|
+
}>>>;
|
|
322
|
+
}>;
|
|
323
|
+
export declare const HealthcareAllSectionsByCode: Readonly<Record<string, HealthcareSectionDescriptor>>;
|
|
324
|
+
export declare function getHealthcareSectionByCode(code: string): HealthcareSectionDescriptor | undefined;
|
|
325
|
+
export declare function getHealthcareSectionsByFamily(family: HealthcareSectionFamily): Readonly<Record<string, HealthcareSectionDescriptor>>;
|
|
193
326
|
export declare const HealthcareConsentPurposes: Readonly<{
|
|
194
327
|
readonly Treatment: "TREAT";
|
|
195
328
|
readonly EmergencyTreatment: "ETREAT";
|
|
@@ -203,6 +336,7 @@ export declare const HealthcareActorRoles: Readonly<{
|
|
|
203
336
|
readonly Physician: "ISCO-08|2211";
|
|
204
337
|
readonly NursingProfessional: "ISCO-08|2221";
|
|
205
338
|
readonly Paramedic: "ISCO-08|2240";
|
|
339
|
+
readonly Veterinarian: "ISCO-08|2250";
|
|
206
340
|
}>;
|
|
207
341
|
export declare const HealthcareActorRoleCodes: Readonly<{
|
|
208
342
|
readonly Controller: "1120";
|
|
@@ -210,7 +344,147 @@ export declare const HealthcareActorRoleCodes: Readonly<{
|
|
|
210
344
|
readonly PhysicianBroad: "221";
|
|
211
345
|
readonly NursingProfessional: "2221";
|
|
212
346
|
readonly Paramedic: "2240";
|
|
347
|
+
readonly Veterinarian: "2250";
|
|
348
|
+
}>;
|
|
349
|
+
export declare const HealthcareRolesByFamily: Readonly<{
|
|
350
|
+
readonly professionalOccupationIsco08: Readonly<Record<string, Readonly<{
|
|
351
|
+
family: HealthcareRoleFamily;
|
|
352
|
+
codingSystem: string;
|
|
353
|
+
code: string;
|
|
354
|
+
claim: string;
|
|
355
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
356
|
+
titleEn: string;
|
|
357
|
+
definition?: string;
|
|
358
|
+
}>>>;
|
|
359
|
+
readonly personalRelationshipHl7: Readonly<Record<string, Readonly<{
|
|
360
|
+
family: HealthcareRoleFamily;
|
|
361
|
+
codingSystem: string;
|
|
362
|
+
code: string;
|
|
363
|
+
claim: string;
|
|
364
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
365
|
+
titleEn: string;
|
|
366
|
+
definition?: string;
|
|
367
|
+
}>>>;
|
|
368
|
+
readonly legalRepresentativeHl7: Readonly<Record<string, Readonly<{
|
|
369
|
+
family: HealthcareRoleFamily;
|
|
370
|
+
codingSystem: string;
|
|
371
|
+
code: string;
|
|
372
|
+
claim: string;
|
|
373
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
374
|
+
titleEn: string;
|
|
375
|
+
definition?: string;
|
|
376
|
+
}>>>;
|
|
377
|
+
}>;
|
|
378
|
+
export declare const HealthcareAllRolesByClaim: Readonly<Record<string, HealthcareActorRoleDescriptor>>;
|
|
379
|
+
export declare const HealthcareProfessionalRoleCodesBySector: Readonly<{
|
|
380
|
+
readonly "health-care": readonly ("1120" | "2211" | "2221" | "2240")[];
|
|
381
|
+
readonly "health-research": readonly ("1120" | "2211")[];
|
|
382
|
+
readonly "health-tech": readonly "1120"[];
|
|
383
|
+
readonly "health-insurance": readonly "1120"[];
|
|
384
|
+
readonly "animal-care": readonly ("1120" | "2250")[];
|
|
385
|
+
readonly "animal-research": readonly ("1120" | "2250")[];
|
|
386
|
+
readonly "animal-insurance": readonly "1120"[];
|
|
387
|
+
readonly "animal-tech": readonly "1120"[];
|
|
388
|
+
readonly "onehealth-research": readonly ("1120" | "2211" | "2250")[];
|
|
389
|
+
readonly "onehealth-tech": readonly "1120"[];
|
|
390
|
+
}>;
|
|
391
|
+
export declare const HealthcareProfessionalRolesBySector: Readonly<{
|
|
392
|
+
readonly "health-care": Readonly<Record<string, Readonly<{
|
|
393
|
+
family: HealthcareRoleFamily;
|
|
394
|
+
codingSystem: string;
|
|
395
|
+
code: string;
|
|
396
|
+
claim: string;
|
|
397
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
398
|
+
titleEn: string;
|
|
399
|
+
definition?: string;
|
|
400
|
+
}>>>;
|
|
401
|
+
readonly "health-research": Readonly<Record<string, Readonly<{
|
|
402
|
+
family: HealthcareRoleFamily;
|
|
403
|
+
codingSystem: string;
|
|
404
|
+
code: string;
|
|
405
|
+
claim: string;
|
|
406
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
407
|
+
titleEn: string;
|
|
408
|
+
definition?: string;
|
|
409
|
+
}>>>;
|
|
410
|
+
readonly "health-tech": Readonly<Record<string, Readonly<{
|
|
411
|
+
family: HealthcareRoleFamily;
|
|
412
|
+
codingSystem: string;
|
|
413
|
+
code: string;
|
|
414
|
+
claim: string;
|
|
415
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
416
|
+
titleEn: string;
|
|
417
|
+
definition?: string;
|
|
418
|
+
}>>>;
|
|
419
|
+
readonly "health-insurance": Readonly<Record<string, Readonly<{
|
|
420
|
+
family: HealthcareRoleFamily;
|
|
421
|
+
codingSystem: string;
|
|
422
|
+
code: string;
|
|
423
|
+
claim: string;
|
|
424
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
425
|
+
titleEn: string;
|
|
426
|
+
definition?: string;
|
|
427
|
+
}>>>;
|
|
428
|
+
readonly "animal-care": Readonly<Record<string, Readonly<{
|
|
429
|
+
family: HealthcareRoleFamily;
|
|
430
|
+
codingSystem: string;
|
|
431
|
+
code: string;
|
|
432
|
+
claim: string;
|
|
433
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
434
|
+
titleEn: string;
|
|
435
|
+
definition?: string;
|
|
436
|
+
}>>>;
|
|
437
|
+
readonly "animal-research": Readonly<Record<string, Readonly<{
|
|
438
|
+
family: HealthcareRoleFamily;
|
|
439
|
+
codingSystem: string;
|
|
440
|
+
code: string;
|
|
441
|
+
claim: string;
|
|
442
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
443
|
+
titleEn: string;
|
|
444
|
+
definition?: string;
|
|
445
|
+
}>>>;
|
|
446
|
+
readonly "animal-insurance": Readonly<Record<string, Readonly<{
|
|
447
|
+
family: HealthcareRoleFamily;
|
|
448
|
+
codingSystem: string;
|
|
449
|
+
code: string;
|
|
450
|
+
claim: string;
|
|
451
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
452
|
+
titleEn: string;
|
|
453
|
+
definition?: string;
|
|
454
|
+
}>>>;
|
|
455
|
+
readonly "animal-tech": Readonly<Record<string, Readonly<{
|
|
456
|
+
family: HealthcareRoleFamily;
|
|
457
|
+
codingSystem: string;
|
|
458
|
+
code: string;
|
|
459
|
+
claim: string;
|
|
460
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
461
|
+
titleEn: string;
|
|
462
|
+
definition?: string;
|
|
463
|
+
}>>>;
|
|
464
|
+
readonly "onehealth-research": Readonly<Record<string, Readonly<{
|
|
465
|
+
family: HealthcareRoleFamily;
|
|
466
|
+
codingSystem: string;
|
|
467
|
+
code: string;
|
|
468
|
+
claim: string;
|
|
469
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
470
|
+
titleEn: string;
|
|
471
|
+
definition?: string;
|
|
472
|
+
}>>>;
|
|
473
|
+
readonly "onehealth-tech": Readonly<Record<string, Readonly<{
|
|
474
|
+
family: HealthcareRoleFamily;
|
|
475
|
+
codingSystem: string;
|
|
476
|
+
code: string;
|
|
477
|
+
claim: string;
|
|
478
|
+
i18nKey: `org.ilo.isco-08.${string}` | `org.hl7.v3.personalRelationship.${string}` | `org.hl7.v3.roleCode.${string}`;
|
|
479
|
+
titleEn: string;
|
|
480
|
+
definition?: string;
|
|
481
|
+
}>>>;
|
|
213
482
|
}>;
|
|
483
|
+
export declare const HealthcareRolesBySector: Readonly<Record<DataspaceSector, Readonly<Record<HealthcareRoleFamily, Readonly<Record<string, HealthcareActorRoleDescriptor>>>>>>;
|
|
484
|
+
export declare function getHealthcareRolesByFamily(family: HealthcareRoleFamily): Readonly<Record<string, HealthcareActorRoleDescriptor>>;
|
|
485
|
+
export declare function getHealthcareRoleByClaim(claim: string): HealthcareActorRoleDescriptor | undefined;
|
|
486
|
+
export declare function getHealthcareProfessionalRolesBySector(sector: DataspaceSector): Readonly<Record<string, HealthcareActorRoleDescriptor>>;
|
|
487
|
+
export declare function getHealthcareRolesBySector(sector: DataspaceSector, family: HealthcareRoleFamily): Readonly<Record<string, HealthcareActorRoleDescriptor>>;
|
|
214
488
|
export declare const HealthcareConsentActions: Readonly<{
|
|
215
489
|
readonly PatientSummaryDocument: string;
|
|
216
490
|
readonly AllergiesAndIntolerances: string;
|