@digitalmedika/satusehat 0.1.0 → 0.3.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 +120 -2
- package/dist/builders/chest-xray-study-builder.d.ts +16 -0
- package/dist/builders/encounter-builder.d.ts +124 -0
- package/dist/builders/encounter-condition-builder.d.ts +28 -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 +21 -3
- package/dist/index.js +15 -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
|
@@ -10,7 +10,7 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
10
10
|
}[];
|
|
11
11
|
text?: string | undefined;
|
|
12
12
|
};
|
|
13
|
-
status: "unknown" | "active" | "
|
|
13
|
+
status: "unknown" | "active" | "on-hold" | "completed" | "entered-in-error" | "draft" | "revoked";
|
|
14
14
|
resourceType: "ServiceRequest";
|
|
15
15
|
id: string;
|
|
16
16
|
subject: {
|
|
@@ -29,27 +29,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
29
29
|
profile?: string[] | undefined;
|
|
30
30
|
versionId?: string | undefined;
|
|
31
31
|
} | undefined;
|
|
32
|
-
encounter?: {
|
|
33
|
-
reference: string;
|
|
34
|
-
type?: string | undefined;
|
|
35
|
-
display?: string | undefined;
|
|
36
|
-
} | undefined;
|
|
37
|
-
category?: {
|
|
38
|
-
coding?: {
|
|
39
|
-
code?: string | undefined;
|
|
40
|
-
system?: string | undefined;
|
|
41
|
-
display?: string | undefined;
|
|
42
|
-
}[] | undefined;
|
|
43
|
-
text?: string | undefined;
|
|
44
|
-
}[] | undefined;
|
|
45
|
-
bodySite?: {
|
|
46
|
-
coding?: {
|
|
47
|
-
code?: string | undefined;
|
|
48
|
-
system?: string | undefined;
|
|
49
|
-
display?: string | undefined;
|
|
50
|
-
}[] | undefined;
|
|
51
|
-
text?: string | undefined;
|
|
52
|
-
}[] | undefined;
|
|
53
32
|
note?: {
|
|
54
33
|
text: string;
|
|
55
34
|
authorReference?: {
|
|
@@ -60,7 +39,25 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
60
39
|
authorString?: string | undefined;
|
|
61
40
|
time?: string | undefined;
|
|
62
41
|
}[] | undefined;
|
|
63
|
-
|
|
42
|
+
category?: {
|
|
43
|
+
coding?: {
|
|
44
|
+
code?: string | undefined;
|
|
45
|
+
system?: string | undefined;
|
|
46
|
+
display?: string | undefined;
|
|
47
|
+
}[] | undefined;
|
|
48
|
+
text?: string | undefined;
|
|
49
|
+
}[] | undefined;
|
|
50
|
+
encounter?: {
|
|
51
|
+
reference: string;
|
|
52
|
+
type?: string | undefined;
|
|
53
|
+
display?: string | undefined;
|
|
54
|
+
} | undefined;
|
|
55
|
+
supportingInfo?: {
|
|
56
|
+
reference: string;
|
|
57
|
+
type?: string | undefined;
|
|
58
|
+
display?: string | undefined;
|
|
59
|
+
}[] | undefined;
|
|
60
|
+
replaces?: {
|
|
64
61
|
reference: string;
|
|
65
62
|
type?: string | undefined;
|
|
66
63
|
display?: string | undefined;
|
|
@@ -70,6 +67,11 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
70
67
|
type?: string | undefined;
|
|
71
68
|
display?: string | undefined;
|
|
72
69
|
}[] | undefined;
|
|
70
|
+
occurrenceDateTime?: string | undefined;
|
|
71
|
+
occurrencePeriod?: {
|
|
72
|
+
start?: string | undefined;
|
|
73
|
+
end?: string | undefined;
|
|
74
|
+
} | undefined;
|
|
73
75
|
performer?: {
|
|
74
76
|
reference: string;
|
|
75
77
|
type?: string | undefined;
|
|
@@ -88,6 +90,19 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
88
90
|
type?: string | undefined;
|
|
89
91
|
display?: string | undefined;
|
|
90
92
|
}[] | undefined;
|
|
93
|
+
bodySite?: {
|
|
94
|
+
coding?: {
|
|
95
|
+
code?: string | undefined;
|
|
96
|
+
system?: string | undefined;
|
|
97
|
+
display?: string | undefined;
|
|
98
|
+
}[] | undefined;
|
|
99
|
+
text?: string | undefined;
|
|
100
|
+
}[] | undefined;
|
|
101
|
+
specimen?: {
|
|
102
|
+
reference: string;
|
|
103
|
+
type?: string | undefined;
|
|
104
|
+
display?: string | undefined;
|
|
105
|
+
}[] | undefined;
|
|
91
106
|
patientInstruction?: string | undefined;
|
|
92
107
|
asNeededBoolean?: boolean | undefined;
|
|
93
108
|
priority?: "routine" | "urgent" | "asap" | "stat" | undefined;
|
|
@@ -112,11 +127,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
112
127
|
}[] | undefined;
|
|
113
128
|
instantiatesCanonical?: string[] | undefined;
|
|
114
129
|
instantiatesUri?: string[] | undefined;
|
|
115
|
-
replaces?: {
|
|
116
|
-
reference: string;
|
|
117
|
-
type?: string | undefined;
|
|
118
|
-
display?: string | undefined;
|
|
119
|
-
}[] | undefined;
|
|
120
130
|
requisition?: {
|
|
121
131
|
value?: string | undefined;
|
|
122
132
|
system?: string | undefined;
|
|
@@ -165,11 +175,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
165
175
|
unit?: string | undefined;
|
|
166
176
|
} | undefined;
|
|
167
177
|
} | undefined;
|
|
168
|
-
occurrenceDateTime?: string | undefined;
|
|
169
|
-
occurrencePeriod?: {
|
|
170
|
-
start?: string | undefined;
|
|
171
|
-
end?: string | undefined;
|
|
172
|
-
} | undefined;
|
|
173
178
|
occurrenceTiming?: unknown;
|
|
174
179
|
asNeededCodeableConcept?: {
|
|
175
180
|
coding?: {
|
|
@@ -192,11 +197,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
192
197
|
type?: string | undefined;
|
|
193
198
|
display?: string | undefined;
|
|
194
199
|
}[] | undefined;
|
|
195
|
-
supportingInfo?: {
|
|
196
|
-
reference: string;
|
|
197
|
-
type?: string | undefined;
|
|
198
|
-
display?: string | undefined;
|
|
199
|
-
}[] | undefined;
|
|
200
200
|
relevantHistory?: {
|
|
201
201
|
reference: string;
|
|
202
202
|
type?: string | undefined;
|
|
@@ -215,7 +215,7 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
215
215
|
}[];
|
|
216
216
|
text?: string | undefined;
|
|
217
217
|
};
|
|
218
|
-
status: "unknown" | "active" | "
|
|
218
|
+
status: "unknown" | "active" | "on-hold" | "completed" | "entered-in-error" | "draft" | "revoked";
|
|
219
219
|
resourceType: "ServiceRequest";
|
|
220
220
|
id: string;
|
|
221
221
|
subject: {
|
|
@@ -234,27 +234,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
234
234
|
profile?: string[] | undefined;
|
|
235
235
|
versionId?: string | undefined;
|
|
236
236
|
} | undefined;
|
|
237
|
-
encounter?: {
|
|
238
|
-
reference: string;
|
|
239
|
-
type?: string | undefined;
|
|
240
|
-
display?: string | undefined;
|
|
241
|
-
} | undefined;
|
|
242
|
-
category?: {
|
|
243
|
-
coding?: {
|
|
244
|
-
code?: string | undefined;
|
|
245
|
-
system?: string | undefined;
|
|
246
|
-
display?: string | undefined;
|
|
247
|
-
}[] | undefined;
|
|
248
|
-
text?: string | undefined;
|
|
249
|
-
}[] | undefined;
|
|
250
|
-
bodySite?: {
|
|
251
|
-
coding?: {
|
|
252
|
-
code?: string | undefined;
|
|
253
|
-
system?: string | undefined;
|
|
254
|
-
display?: string | undefined;
|
|
255
|
-
}[] | undefined;
|
|
256
|
-
text?: string | undefined;
|
|
257
|
-
}[] | undefined;
|
|
258
237
|
note?: {
|
|
259
238
|
text: string;
|
|
260
239
|
authorReference?: {
|
|
@@ -265,7 +244,25 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
265
244
|
authorString?: string | undefined;
|
|
266
245
|
time?: string | undefined;
|
|
267
246
|
}[] | undefined;
|
|
268
|
-
|
|
247
|
+
category?: {
|
|
248
|
+
coding?: {
|
|
249
|
+
code?: string | undefined;
|
|
250
|
+
system?: string | undefined;
|
|
251
|
+
display?: string | undefined;
|
|
252
|
+
}[] | undefined;
|
|
253
|
+
text?: string | undefined;
|
|
254
|
+
}[] | undefined;
|
|
255
|
+
encounter?: {
|
|
256
|
+
reference: string;
|
|
257
|
+
type?: string | undefined;
|
|
258
|
+
display?: string | undefined;
|
|
259
|
+
} | undefined;
|
|
260
|
+
supportingInfo?: {
|
|
261
|
+
reference: string;
|
|
262
|
+
type?: string | undefined;
|
|
263
|
+
display?: string | undefined;
|
|
264
|
+
}[] | undefined;
|
|
265
|
+
replaces?: {
|
|
269
266
|
reference: string;
|
|
270
267
|
type?: string | undefined;
|
|
271
268
|
display?: string | undefined;
|
|
@@ -275,6 +272,11 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
275
272
|
type?: string | undefined;
|
|
276
273
|
display?: string | undefined;
|
|
277
274
|
}[] | undefined;
|
|
275
|
+
occurrenceDateTime?: string | undefined;
|
|
276
|
+
occurrencePeriod?: {
|
|
277
|
+
start?: string | undefined;
|
|
278
|
+
end?: string | undefined;
|
|
279
|
+
} | undefined;
|
|
278
280
|
performer?: {
|
|
279
281
|
reference: string;
|
|
280
282
|
type?: string | undefined;
|
|
@@ -293,6 +295,19 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
293
295
|
type?: string | undefined;
|
|
294
296
|
display?: string | undefined;
|
|
295
297
|
}[] | undefined;
|
|
298
|
+
bodySite?: {
|
|
299
|
+
coding?: {
|
|
300
|
+
code?: string | undefined;
|
|
301
|
+
system?: string | undefined;
|
|
302
|
+
display?: string | undefined;
|
|
303
|
+
}[] | undefined;
|
|
304
|
+
text?: string | undefined;
|
|
305
|
+
}[] | undefined;
|
|
306
|
+
specimen?: {
|
|
307
|
+
reference: string;
|
|
308
|
+
type?: string | undefined;
|
|
309
|
+
display?: string | undefined;
|
|
310
|
+
}[] | undefined;
|
|
296
311
|
patientInstruction?: string | undefined;
|
|
297
312
|
asNeededBoolean?: boolean | undefined;
|
|
298
313
|
priority?: "routine" | "urgent" | "asap" | "stat" | undefined;
|
|
@@ -317,11 +332,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
317
332
|
}[] | undefined;
|
|
318
333
|
instantiatesCanonical?: string[] | undefined;
|
|
319
334
|
instantiatesUri?: string[] | undefined;
|
|
320
|
-
replaces?: {
|
|
321
|
-
reference: string;
|
|
322
|
-
type?: string | undefined;
|
|
323
|
-
display?: string | undefined;
|
|
324
|
-
}[] | undefined;
|
|
325
335
|
requisition?: {
|
|
326
336
|
value?: string | undefined;
|
|
327
337
|
system?: string | undefined;
|
|
@@ -370,11 +380,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
370
380
|
unit?: string | undefined;
|
|
371
381
|
} | undefined;
|
|
372
382
|
} | undefined;
|
|
373
|
-
occurrenceDateTime?: string | undefined;
|
|
374
|
-
occurrencePeriod?: {
|
|
375
|
-
start?: string | undefined;
|
|
376
|
-
end?: string | undefined;
|
|
377
|
-
} | undefined;
|
|
378
383
|
occurrenceTiming?: unknown;
|
|
379
384
|
asNeededCodeableConcept?: {
|
|
380
385
|
coding?: {
|
|
@@ -397,11 +402,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
397
402
|
type?: string | undefined;
|
|
398
403
|
display?: string | undefined;
|
|
399
404
|
}[] | undefined;
|
|
400
|
-
supportingInfo?: {
|
|
401
|
-
reference: string;
|
|
402
|
-
type?: string | undefined;
|
|
403
|
-
display?: string | undefined;
|
|
404
|
-
}[] | undefined;
|
|
405
405
|
relevantHistory?: {
|
|
406
406
|
reference: string;
|
|
407
407
|
type?: string | undefined;
|
|
@@ -426,7 +426,7 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
426
426
|
}[];
|
|
427
427
|
text?: string | undefined;
|
|
428
428
|
};
|
|
429
|
-
status: "unknown" | "active" | "
|
|
429
|
+
status: "unknown" | "active" | "on-hold" | "completed" | "entered-in-error" | "draft" | "revoked";
|
|
430
430
|
resourceType: "ServiceRequest";
|
|
431
431
|
id: string;
|
|
432
432
|
subject: {
|
|
@@ -445,27 +445,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
445
445
|
profile?: string[] | undefined;
|
|
446
446
|
versionId?: string | undefined;
|
|
447
447
|
} | undefined;
|
|
448
|
-
encounter?: {
|
|
449
|
-
reference: string;
|
|
450
|
-
type?: string | undefined;
|
|
451
|
-
display?: string | undefined;
|
|
452
|
-
} | undefined;
|
|
453
|
-
category?: {
|
|
454
|
-
coding?: {
|
|
455
|
-
code?: string | undefined;
|
|
456
|
-
system?: string | undefined;
|
|
457
|
-
display?: string | undefined;
|
|
458
|
-
}[] | undefined;
|
|
459
|
-
text?: string | undefined;
|
|
460
|
-
}[] | undefined;
|
|
461
|
-
bodySite?: {
|
|
462
|
-
coding?: {
|
|
463
|
-
code?: string | undefined;
|
|
464
|
-
system?: string | undefined;
|
|
465
|
-
display?: string | undefined;
|
|
466
|
-
}[] | undefined;
|
|
467
|
-
text?: string | undefined;
|
|
468
|
-
}[] | undefined;
|
|
469
448
|
note?: {
|
|
470
449
|
text: string;
|
|
471
450
|
authorReference?: {
|
|
@@ -476,7 +455,25 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
476
455
|
authorString?: string | undefined;
|
|
477
456
|
time?: string | undefined;
|
|
478
457
|
}[] | undefined;
|
|
479
|
-
|
|
458
|
+
category?: {
|
|
459
|
+
coding?: {
|
|
460
|
+
code?: string | undefined;
|
|
461
|
+
system?: string | undefined;
|
|
462
|
+
display?: string | undefined;
|
|
463
|
+
}[] | undefined;
|
|
464
|
+
text?: string | undefined;
|
|
465
|
+
}[] | undefined;
|
|
466
|
+
encounter?: {
|
|
467
|
+
reference: string;
|
|
468
|
+
type?: string | undefined;
|
|
469
|
+
display?: string | undefined;
|
|
470
|
+
} | undefined;
|
|
471
|
+
supportingInfo?: {
|
|
472
|
+
reference: string;
|
|
473
|
+
type?: string | undefined;
|
|
474
|
+
display?: string | undefined;
|
|
475
|
+
}[] | undefined;
|
|
476
|
+
replaces?: {
|
|
480
477
|
reference: string;
|
|
481
478
|
type?: string | undefined;
|
|
482
479
|
display?: string | undefined;
|
|
@@ -486,6 +483,11 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
486
483
|
type?: string | undefined;
|
|
487
484
|
display?: string | undefined;
|
|
488
485
|
}[] | undefined;
|
|
486
|
+
occurrenceDateTime?: string | undefined;
|
|
487
|
+
occurrencePeriod?: {
|
|
488
|
+
start?: string | undefined;
|
|
489
|
+
end?: string | undefined;
|
|
490
|
+
} | undefined;
|
|
489
491
|
performer?: {
|
|
490
492
|
reference: string;
|
|
491
493
|
type?: string | undefined;
|
|
@@ -504,6 +506,19 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
504
506
|
type?: string | undefined;
|
|
505
507
|
display?: string | undefined;
|
|
506
508
|
}[] | undefined;
|
|
509
|
+
bodySite?: {
|
|
510
|
+
coding?: {
|
|
511
|
+
code?: string | undefined;
|
|
512
|
+
system?: string | undefined;
|
|
513
|
+
display?: string | undefined;
|
|
514
|
+
}[] | undefined;
|
|
515
|
+
text?: string | undefined;
|
|
516
|
+
}[] | undefined;
|
|
517
|
+
specimen?: {
|
|
518
|
+
reference: string;
|
|
519
|
+
type?: string | undefined;
|
|
520
|
+
display?: string | undefined;
|
|
521
|
+
}[] | undefined;
|
|
507
522
|
patientInstruction?: string | undefined;
|
|
508
523
|
asNeededBoolean?: boolean | undefined;
|
|
509
524
|
priority?: "routine" | "urgent" | "asap" | "stat" | undefined;
|
|
@@ -528,11 +543,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
528
543
|
}[] | undefined;
|
|
529
544
|
instantiatesCanonical?: string[] | undefined;
|
|
530
545
|
instantiatesUri?: string[] | undefined;
|
|
531
|
-
replaces?: {
|
|
532
|
-
reference: string;
|
|
533
|
-
type?: string | undefined;
|
|
534
|
-
display?: string | undefined;
|
|
535
|
-
}[] | undefined;
|
|
536
546
|
requisition?: {
|
|
537
547
|
value?: string | undefined;
|
|
538
548
|
system?: string | undefined;
|
|
@@ -581,11 +591,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
581
591
|
unit?: string | undefined;
|
|
582
592
|
} | undefined;
|
|
583
593
|
} | undefined;
|
|
584
|
-
occurrenceDateTime?: string | undefined;
|
|
585
|
-
occurrencePeriod?: {
|
|
586
|
-
start?: string | undefined;
|
|
587
|
-
end?: string | undefined;
|
|
588
|
-
} | undefined;
|
|
589
594
|
occurrenceTiming?: unknown;
|
|
590
595
|
asNeededCodeableConcept?: {
|
|
591
596
|
coding?: {
|
|
@@ -608,11 +613,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
608
613
|
type?: string | undefined;
|
|
609
614
|
display?: string | undefined;
|
|
610
615
|
}[] | undefined;
|
|
611
|
-
supportingInfo?: {
|
|
612
|
-
reference: string;
|
|
613
|
-
type?: string | undefined;
|
|
614
|
-
display?: string | undefined;
|
|
615
|
-
}[] | undefined;
|
|
616
616
|
relevantHistory?: {
|
|
617
617
|
reference: string;
|
|
618
618
|
type?: string | undefined;
|
|
@@ -638,7 +638,7 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
638
638
|
}[];
|
|
639
639
|
text?: string | undefined;
|
|
640
640
|
};
|
|
641
|
-
status: "unknown" | "active" | "
|
|
641
|
+
status: "unknown" | "active" | "on-hold" | "completed" | "entered-in-error" | "draft" | "revoked";
|
|
642
642
|
resourceType: "ServiceRequest";
|
|
643
643
|
id: string;
|
|
644
644
|
subject: {
|
|
@@ -657,27 +657,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
657
657
|
profile?: string[] | undefined;
|
|
658
658
|
versionId?: string | undefined;
|
|
659
659
|
} | undefined;
|
|
660
|
-
encounter?: {
|
|
661
|
-
reference: string;
|
|
662
|
-
type?: string | undefined;
|
|
663
|
-
display?: string | undefined;
|
|
664
|
-
} | undefined;
|
|
665
|
-
category?: {
|
|
666
|
-
coding?: {
|
|
667
|
-
code?: string | undefined;
|
|
668
|
-
system?: string | undefined;
|
|
669
|
-
display?: string | undefined;
|
|
670
|
-
}[] | undefined;
|
|
671
|
-
text?: string | undefined;
|
|
672
|
-
}[] | undefined;
|
|
673
|
-
bodySite?: {
|
|
674
|
-
coding?: {
|
|
675
|
-
code?: string | undefined;
|
|
676
|
-
system?: string | undefined;
|
|
677
|
-
display?: string | undefined;
|
|
678
|
-
}[] | undefined;
|
|
679
|
-
text?: string | undefined;
|
|
680
|
-
}[] | undefined;
|
|
681
660
|
note?: {
|
|
682
661
|
text: string;
|
|
683
662
|
authorReference?: {
|
|
@@ -688,7 +667,25 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
688
667
|
authorString?: string | undefined;
|
|
689
668
|
time?: string | undefined;
|
|
690
669
|
}[] | undefined;
|
|
691
|
-
|
|
670
|
+
category?: {
|
|
671
|
+
coding?: {
|
|
672
|
+
code?: string | undefined;
|
|
673
|
+
system?: string | undefined;
|
|
674
|
+
display?: string | undefined;
|
|
675
|
+
}[] | undefined;
|
|
676
|
+
text?: string | undefined;
|
|
677
|
+
}[] | undefined;
|
|
678
|
+
encounter?: {
|
|
679
|
+
reference: string;
|
|
680
|
+
type?: string | undefined;
|
|
681
|
+
display?: string | undefined;
|
|
682
|
+
} | undefined;
|
|
683
|
+
supportingInfo?: {
|
|
684
|
+
reference: string;
|
|
685
|
+
type?: string | undefined;
|
|
686
|
+
display?: string | undefined;
|
|
687
|
+
}[] | undefined;
|
|
688
|
+
replaces?: {
|
|
692
689
|
reference: string;
|
|
693
690
|
type?: string | undefined;
|
|
694
691
|
display?: string | undefined;
|
|
@@ -698,6 +695,11 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
698
695
|
type?: string | undefined;
|
|
699
696
|
display?: string | undefined;
|
|
700
697
|
}[] | undefined;
|
|
698
|
+
occurrenceDateTime?: string | undefined;
|
|
699
|
+
occurrencePeriod?: {
|
|
700
|
+
start?: string | undefined;
|
|
701
|
+
end?: string | undefined;
|
|
702
|
+
} | undefined;
|
|
701
703
|
performer?: {
|
|
702
704
|
reference: string;
|
|
703
705
|
type?: string | undefined;
|
|
@@ -716,6 +718,19 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
716
718
|
type?: string | undefined;
|
|
717
719
|
display?: string | undefined;
|
|
718
720
|
}[] | undefined;
|
|
721
|
+
bodySite?: {
|
|
722
|
+
coding?: {
|
|
723
|
+
code?: string | undefined;
|
|
724
|
+
system?: string | undefined;
|
|
725
|
+
display?: string | undefined;
|
|
726
|
+
}[] | undefined;
|
|
727
|
+
text?: string | undefined;
|
|
728
|
+
}[] | undefined;
|
|
729
|
+
specimen?: {
|
|
730
|
+
reference: string;
|
|
731
|
+
type?: string | undefined;
|
|
732
|
+
display?: string | undefined;
|
|
733
|
+
}[] | undefined;
|
|
719
734
|
patientInstruction?: string | undefined;
|
|
720
735
|
asNeededBoolean?: boolean | undefined;
|
|
721
736
|
priority?: "routine" | "urgent" | "asap" | "stat" | undefined;
|
|
@@ -740,11 +755,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
740
755
|
}[] | undefined;
|
|
741
756
|
instantiatesCanonical?: string[] | undefined;
|
|
742
757
|
instantiatesUri?: string[] | undefined;
|
|
743
|
-
replaces?: {
|
|
744
|
-
reference: string;
|
|
745
|
-
type?: string | undefined;
|
|
746
|
-
display?: string | undefined;
|
|
747
|
-
}[] | undefined;
|
|
748
758
|
requisition?: {
|
|
749
759
|
value?: string | undefined;
|
|
750
760
|
system?: string | undefined;
|
|
@@ -793,11 +803,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
793
803
|
unit?: string | undefined;
|
|
794
804
|
} | undefined;
|
|
795
805
|
} | undefined;
|
|
796
|
-
occurrenceDateTime?: string | undefined;
|
|
797
|
-
occurrencePeriod?: {
|
|
798
|
-
start?: string | undefined;
|
|
799
|
-
end?: string | undefined;
|
|
800
|
-
} | undefined;
|
|
801
806
|
occurrenceTiming?: unknown;
|
|
802
807
|
asNeededCodeableConcept?: {
|
|
803
808
|
coding?: {
|
|
@@ -820,11 +825,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
820
825
|
type?: string | undefined;
|
|
821
826
|
display?: string | undefined;
|
|
822
827
|
}[] | undefined;
|
|
823
|
-
supportingInfo?: {
|
|
824
|
-
reference: string;
|
|
825
|
-
type?: string | undefined;
|
|
826
|
-
display?: string | undefined;
|
|
827
|
-
}[] | undefined;
|
|
828
828
|
relevantHistory?: {
|
|
829
829
|
reference: string;
|
|
830
830
|
type?: string | undefined;
|
|
@@ -844,7 +844,7 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
844
844
|
}[];
|
|
845
845
|
text?: string | undefined;
|
|
846
846
|
};
|
|
847
|
-
status: "unknown" | "active" | "
|
|
847
|
+
status: "unknown" | "active" | "on-hold" | "completed" | "entered-in-error" | "draft" | "revoked";
|
|
848
848
|
resourceType: "ServiceRequest";
|
|
849
849
|
id: string;
|
|
850
850
|
subject: {
|
|
@@ -863,27 +863,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
863
863
|
profile?: string[] | undefined;
|
|
864
864
|
versionId?: string | undefined;
|
|
865
865
|
} | undefined;
|
|
866
|
-
encounter?: {
|
|
867
|
-
reference: string;
|
|
868
|
-
type?: string | undefined;
|
|
869
|
-
display?: string | undefined;
|
|
870
|
-
} | undefined;
|
|
871
|
-
category?: {
|
|
872
|
-
coding?: {
|
|
873
|
-
code?: string | undefined;
|
|
874
|
-
system?: string | undefined;
|
|
875
|
-
display?: string | undefined;
|
|
876
|
-
}[] | undefined;
|
|
877
|
-
text?: string | undefined;
|
|
878
|
-
}[] | undefined;
|
|
879
|
-
bodySite?: {
|
|
880
|
-
coding?: {
|
|
881
|
-
code?: string | undefined;
|
|
882
|
-
system?: string | undefined;
|
|
883
|
-
display?: string | undefined;
|
|
884
|
-
}[] | undefined;
|
|
885
|
-
text?: string | undefined;
|
|
886
|
-
}[] | undefined;
|
|
887
866
|
note?: {
|
|
888
867
|
text: string;
|
|
889
868
|
authorReference?: {
|
|
@@ -894,7 +873,25 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
894
873
|
authorString?: string | undefined;
|
|
895
874
|
time?: string | undefined;
|
|
896
875
|
}[] | undefined;
|
|
897
|
-
|
|
876
|
+
category?: {
|
|
877
|
+
coding?: {
|
|
878
|
+
code?: string | undefined;
|
|
879
|
+
system?: string | undefined;
|
|
880
|
+
display?: string | undefined;
|
|
881
|
+
}[] | undefined;
|
|
882
|
+
text?: string | undefined;
|
|
883
|
+
}[] | undefined;
|
|
884
|
+
encounter?: {
|
|
885
|
+
reference: string;
|
|
886
|
+
type?: string | undefined;
|
|
887
|
+
display?: string | undefined;
|
|
888
|
+
} | undefined;
|
|
889
|
+
supportingInfo?: {
|
|
890
|
+
reference: string;
|
|
891
|
+
type?: string | undefined;
|
|
892
|
+
display?: string | undefined;
|
|
893
|
+
}[] | undefined;
|
|
894
|
+
replaces?: {
|
|
898
895
|
reference: string;
|
|
899
896
|
type?: string | undefined;
|
|
900
897
|
display?: string | undefined;
|
|
@@ -904,6 +901,11 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
904
901
|
type?: string | undefined;
|
|
905
902
|
display?: string | undefined;
|
|
906
903
|
}[] | undefined;
|
|
904
|
+
occurrenceDateTime?: string | undefined;
|
|
905
|
+
occurrencePeriod?: {
|
|
906
|
+
start?: string | undefined;
|
|
907
|
+
end?: string | undefined;
|
|
908
|
+
} | undefined;
|
|
907
909
|
performer?: {
|
|
908
910
|
reference: string;
|
|
909
911
|
type?: string | undefined;
|
|
@@ -922,6 +924,19 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
922
924
|
type?: string | undefined;
|
|
923
925
|
display?: string | undefined;
|
|
924
926
|
}[] | undefined;
|
|
927
|
+
bodySite?: {
|
|
928
|
+
coding?: {
|
|
929
|
+
code?: string | undefined;
|
|
930
|
+
system?: string | undefined;
|
|
931
|
+
display?: string | undefined;
|
|
932
|
+
}[] | undefined;
|
|
933
|
+
text?: string | undefined;
|
|
934
|
+
}[] | undefined;
|
|
935
|
+
specimen?: {
|
|
936
|
+
reference: string;
|
|
937
|
+
type?: string | undefined;
|
|
938
|
+
display?: string | undefined;
|
|
939
|
+
}[] | undefined;
|
|
925
940
|
patientInstruction?: string | undefined;
|
|
926
941
|
asNeededBoolean?: boolean | undefined;
|
|
927
942
|
priority?: "routine" | "urgent" | "asap" | "stat" | undefined;
|
|
@@ -946,11 +961,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
946
961
|
}[] | undefined;
|
|
947
962
|
instantiatesCanonical?: string[] | undefined;
|
|
948
963
|
instantiatesUri?: string[] | undefined;
|
|
949
|
-
replaces?: {
|
|
950
|
-
reference: string;
|
|
951
|
-
type?: string | undefined;
|
|
952
|
-
display?: string | undefined;
|
|
953
|
-
}[] | undefined;
|
|
954
964
|
requisition?: {
|
|
955
965
|
value?: string | undefined;
|
|
956
966
|
system?: string | undefined;
|
|
@@ -999,11 +1009,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
999
1009
|
unit?: string | undefined;
|
|
1000
1010
|
} | undefined;
|
|
1001
1011
|
} | undefined;
|
|
1002
|
-
occurrenceDateTime?: string | undefined;
|
|
1003
|
-
occurrencePeriod?: {
|
|
1004
|
-
start?: string | undefined;
|
|
1005
|
-
end?: string | undefined;
|
|
1006
|
-
} | undefined;
|
|
1007
1012
|
occurrenceTiming?: unknown;
|
|
1008
1013
|
asNeededCodeableConcept?: {
|
|
1009
1014
|
coding?: {
|
|
@@ -1026,11 +1031,6 @@ export declare function createServiceRequestClient(transport: Transport): {
|
|
|
1026
1031
|
type?: string | undefined;
|
|
1027
1032
|
display?: string | undefined;
|
|
1028
1033
|
}[] | undefined;
|
|
1029
|
-
supportingInfo?: {
|
|
1030
|
-
reference: string;
|
|
1031
|
-
type?: string | undefined;
|
|
1032
|
-
display?: string | undefined;
|
|
1033
|
-
}[] | undefined;
|
|
1034
1034
|
relevantHistory?: {
|
|
1035
1035
|
reference: string;
|
|
1036
1036
|
type?: string | undefined;
|