@digitalmedika/satusehat 0.1.0 → 0.2.0
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 +118 -2
- package/dist/builders/chest-xray-study-builder.d.ts +16 -0
- package/dist/builders/encounter-builder.d.ts +124 -0
- package/dist/builders/risk-assessment-builder.d.ts +39 -0
- package/dist/builders/service-request-imaging-study-diagnostic-report-builder.d.ts +49 -0
- package/dist/client/create-client.d.ts +1 -0
- package/dist/client/transport.d.ts +9 -0
- package/dist/core/types.d.ts +160 -0
- package/dist/endpoints/allergy-intolerance.d.ts +720 -0
- package/dist/endpoints/clinical-impression.d.ts +530 -0
- package/dist/endpoints/composition.d.ts +3 -0
- package/dist/endpoints/condition.d.ts +195 -195
- package/dist/endpoints/diagnostic-report.d.ts +70 -70
- package/dist/endpoints/dicom-router.d.ts +6 -0
- package/dist/endpoints/encounter.d.ts +156 -115
- package/dist/endpoints/imaging-study.d.ts +790 -0
- package/dist/endpoints/location.d.ts +30 -30
- package/dist/endpoints/medication-administration.d.ts +910 -0
- package/dist/endpoints/medication-request.d.ts +260 -260
- package/dist/endpoints/nutrition-order.d.ts +1510 -0
- package/dist/endpoints/observation.d.ts +230 -230
- package/dist/endpoints/organization.d.ts +20 -20
- package/dist/endpoints/practitioner-role.d.ts +25 -25
- package/dist/endpoints/procedure.d.ts +215 -215
- package/dist/endpoints/questionnaire-response.d.ts +195 -0
- package/dist/endpoints/risk-assessment.d.ts +770 -0
- package/dist/endpoints/service-request.d.ts +190 -190
- package/dist/endpoints/specimen.d.ts +105 -105
- package/dist/index.d.ts +19 -3
- package/dist/index.js +13 -1
- package/dist/schemas/allergy-intolerance.d.ts +4148 -0
- package/dist/schemas/clinical-impression.d.ts +2666 -0
- package/dist/schemas/composition.d.ts +2914 -0
- package/dist/schemas/condition.d.ts +476 -476
- package/dist/schemas/diagnostic-report.d.ts +172 -172
- package/dist/schemas/encounter.d.ts +1124 -564
- package/dist/schemas/imaging-study.d.ts +4609 -0
- package/dist/schemas/location.d.ts +72 -72
- package/dist/schemas/medication-administration.d.ts +5420 -0
- package/dist/schemas/medication-request.d.ts +1083 -1083
- package/dist/schemas/nutrition-order.d.ts +12261 -0
- package/dist/schemas/observation.d.ts +598 -598
- package/dist/schemas/organization.d.ts +60 -60
- package/dist/schemas/practitioner-role.d.ts +60 -60
- package/dist/schemas/procedure.d.ts +536 -536
- package/dist/schemas/questionnaire-response.d.ts +939 -0
- package/dist/schemas/risk-assessment.d.ts +4591 -0
- package/dist/schemas/service-request.d.ts +470 -470
- package/dist/schemas/specimen.d.ts +312 -312
- package/package.json +8 -1
|
@@ -25,6 +25,12 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
25
25
|
profile?: string[] | undefined;
|
|
26
26
|
versionId?: string | undefined;
|
|
27
27
|
} | undefined;
|
|
28
|
+
description?: string | undefined;
|
|
29
|
+
endpoint?: {
|
|
30
|
+
reference: string;
|
|
31
|
+
type?: string | undefined;
|
|
32
|
+
display?: string | undefined;
|
|
33
|
+
}[] | undefined;
|
|
28
34
|
partOf?: {
|
|
29
35
|
reference: string;
|
|
30
36
|
type?: string | undefined;
|
|
@@ -35,7 +41,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
35
41
|
system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
|
|
36
42
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
37
43
|
}[] | undefined;
|
|
38
|
-
description?: string | undefined;
|
|
39
44
|
physicalType?: {
|
|
40
45
|
coding: {
|
|
41
46
|
code: string;
|
|
@@ -67,11 +72,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
67
72
|
} | undefined;
|
|
68
73
|
} | undefined;
|
|
69
74
|
availabilityExceptions?: string | undefined;
|
|
70
|
-
endpoint?: {
|
|
71
|
-
reference: string;
|
|
72
|
-
type?: string | undefined;
|
|
73
|
-
display?: string | undefined;
|
|
74
|
-
}[] | undefined;
|
|
75
75
|
alias?: string[] | undefined;
|
|
76
76
|
operationalStatus?: {
|
|
77
77
|
code?: string | undefined;
|
|
@@ -122,6 +122,12 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
122
122
|
profile?: string[] | undefined;
|
|
123
123
|
versionId?: string | undefined;
|
|
124
124
|
} | undefined;
|
|
125
|
+
description?: string | undefined;
|
|
126
|
+
endpoint?: {
|
|
127
|
+
reference: string;
|
|
128
|
+
type?: string | undefined;
|
|
129
|
+
display?: string | undefined;
|
|
130
|
+
}[] | undefined;
|
|
125
131
|
partOf?: {
|
|
126
132
|
reference: string;
|
|
127
133
|
type?: string | undefined;
|
|
@@ -132,7 +138,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
132
138
|
system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
|
|
133
139
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
134
140
|
}[] | undefined;
|
|
135
|
-
description?: string | undefined;
|
|
136
141
|
physicalType?: {
|
|
137
142
|
coding: {
|
|
138
143
|
code: string;
|
|
@@ -164,11 +169,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
164
169
|
} | undefined;
|
|
165
170
|
} | undefined;
|
|
166
171
|
availabilityExceptions?: string | undefined;
|
|
167
|
-
endpoint?: {
|
|
168
|
-
reference: string;
|
|
169
|
-
type?: string | undefined;
|
|
170
|
-
display?: string | undefined;
|
|
171
|
-
}[] | undefined;
|
|
172
172
|
alias?: string[] | undefined;
|
|
173
173
|
operationalStatus?: {
|
|
174
174
|
code?: string | undefined;
|
|
@@ -225,6 +225,12 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
225
225
|
profile?: string[] | undefined;
|
|
226
226
|
versionId?: string | undefined;
|
|
227
227
|
} | undefined;
|
|
228
|
+
description?: string | undefined;
|
|
229
|
+
endpoint?: {
|
|
230
|
+
reference: string;
|
|
231
|
+
type?: string | undefined;
|
|
232
|
+
display?: string | undefined;
|
|
233
|
+
}[] | undefined;
|
|
228
234
|
partOf?: {
|
|
229
235
|
reference: string;
|
|
230
236
|
type?: string | undefined;
|
|
@@ -235,7 +241,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
235
241
|
system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
|
|
236
242
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
237
243
|
}[] | undefined;
|
|
238
|
-
description?: string | undefined;
|
|
239
244
|
physicalType?: {
|
|
240
245
|
coding: {
|
|
241
246
|
code: string;
|
|
@@ -267,11 +272,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
267
272
|
} | undefined;
|
|
268
273
|
} | undefined;
|
|
269
274
|
availabilityExceptions?: string | undefined;
|
|
270
|
-
endpoint?: {
|
|
271
|
-
reference: string;
|
|
272
|
-
type?: string | undefined;
|
|
273
|
-
display?: string | undefined;
|
|
274
|
-
}[] | undefined;
|
|
275
275
|
alias?: string[] | undefined;
|
|
276
276
|
operationalStatus?: {
|
|
277
277
|
code?: string | undefined;
|
|
@@ -329,6 +329,12 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
329
329
|
profile?: string[] | undefined;
|
|
330
330
|
versionId?: string | undefined;
|
|
331
331
|
} | undefined;
|
|
332
|
+
description?: string | undefined;
|
|
333
|
+
endpoint?: {
|
|
334
|
+
reference: string;
|
|
335
|
+
type?: string | undefined;
|
|
336
|
+
display?: string | undefined;
|
|
337
|
+
}[] | undefined;
|
|
332
338
|
partOf?: {
|
|
333
339
|
reference: string;
|
|
334
340
|
type?: string | undefined;
|
|
@@ -339,7 +345,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
339
345
|
system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
|
|
340
346
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
341
347
|
}[] | undefined;
|
|
342
|
-
description?: string | undefined;
|
|
343
348
|
physicalType?: {
|
|
344
349
|
coding: {
|
|
345
350
|
code: string;
|
|
@@ -371,11 +376,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
371
376
|
} | undefined;
|
|
372
377
|
} | undefined;
|
|
373
378
|
availabilityExceptions?: string | undefined;
|
|
374
|
-
endpoint?: {
|
|
375
|
-
reference: string;
|
|
376
|
-
type?: string | undefined;
|
|
377
|
-
display?: string | undefined;
|
|
378
|
-
}[] | undefined;
|
|
379
379
|
alias?: string[] | undefined;
|
|
380
380
|
operationalStatus?: {
|
|
381
381
|
code?: string | undefined;
|
|
@@ -427,6 +427,12 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
427
427
|
profile?: string[] | undefined;
|
|
428
428
|
versionId?: string | undefined;
|
|
429
429
|
} | undefined;
|
|
430
|
+
description?: string | undefined;
|
|
431
|
+
endpoint?: {
|
|
432
|
+
reference: string;
|
|
433
|
+
type?: string | undefined;
|
|
434
|
+
display?: string | undefined;
|
|
435
|
+
}[] | undefined;
|
|
430
436
|
partOf?: {
|
|
431
437
|
reference: string;
|
|
432
438
|
type?: string | undefined;
|
|
@@ -437,7 +443,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
437
443
|
system?: "phone" | "fax" | "email" | "pager" | "url" | "sms" | "other" | undefined;
|
|
438
444
|
use?: "home" | "work" | "temp" | "old" | "mobile" | undefined;
|
|
439
445
|
}[] | undefined;
|
|
440
|
-
description?: string | undefined;
|
|
441
446
|
physicalType?: {
|
|
442
447
|
coding: {
|
|
443
448
|
code: string;
|
|
@@ -469,11 +474,6 @@ export declare function createLocationClient(transport: Transport): {
|
|
|
469
474
|
} | undefined;
|
|
470
475
|
} | undefined;
|
|
471
476
|
availabilityExceptions?: string | undefined;
|
|
472
|
-
endpoint?: {
|
|
473
|
-
reference: string;
|
|
474
|
-
type?: string | undefined;
|
|
475
|
-
display?: string | undefined;
|
|
476
|
-
}[] | undefined;
|
|
477
477
|
alias?: string[] | undefined;
|
|
478
478
|
operationalStatus?: {
|
|
479
479
|
code?: string | undefined;
|