@azure-rest/health-insights-radiologyinsights 2.0.0-alpha.20250620.1 → 2.0.0-alpha.20250718.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.
@@ -1,1503 +1,1503 @@
1
- ## API Report File for "@azure-rest/health-insights-radiologyinsights"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import type { AbortSignalLike } from '@azure/abort-controller';
8
- import type { CancelOnProgress } from '@azure/core-lro';
9
- import type { Client } from '@azure-rest/core-client';
10
- import type { ClientOptions } from '@azure-rest/core-client';
11
- import type { CreateHttpPollerOptions } from '@azure/core-lro';
12
- import type { ErrorModel } from '@azure-rest/core-client';
13
- import type { HttpResponse } from '@azure-rest/core-client';
14
- import type { KeyCredential } from '@azure/core-auth';
15
- import type { OperationState } from '@azure/core-lro';
16
- import type { RawHttpHeaders } from '@azure/core-rest-pipeline';
17
- import type { RequestParameters } from '@azure-rest/core-client';
18
- import type { StreamableMethod } from '@azure-rest/core-client';
19
- import type { TokenCredential } from '@azure/core-auth';
20
-
21
- // @public
22
- export interface AgeMismatchInference extends RadiologyInsightsInferenceParent {
23
- kind: "ageMismatch";
24
- }
25
-
26
- // @public
27
- export interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
28
- kind: "ageMismatch";
29
- }
30
-
31
- // @public
32
- export interface Annotation extends Element {
33
- authorString?: string;
34
- text: string;
35
- time?: string;
36
- }
37
-
38
- // @public
39
- export interface AnnotationOutput extends ElementOutput {
40
- authorString?: string;
41
- text: string;
42
- time?: string;
43
- }
44
-
45
- // @public
46
- export interface AssessmentValueRange {
47
- maximum: string;
48
- minimum: string;
49
- }
50
-
51
- // @public
52
- export interface AssessmentValueRangeOutput {
53
- maximum: string;
54
- minimum: string;
55
- }
56
-
57
- // @public
58
- export type AzureHealthInsightsClient = Client & {
59
- path: Routes;
60
- };
61
-
62
- // @public
63
- export interface AzureHealthInsightsClientOptions extends ClientOptions {
64
- apiVersion?: string;
65
- }
66
-
67
- // @public
68
- export type ClinicalDocumentType = string;
69
-
70
- // @public
71
- export type ClinicalDocumentTypeOutput = string;
72
-
73
- // @public
74
- export interface CodeableConcept extends Element {
75
- coding?: Array<Coding>;
76
- text?: string;
77
- }
78
-
79
- // @public
80
- export interface CodeableConceptOutput extends ElementOutput {
81
- coding?: Array<CodingOutput>;
82
- text?: string;
83
- }
84
-
85
- // @public
86
- export interface Coding extends Element {
87
- code?: string;
88
- display?: string;
89
- system?: string;
90
- version?: string;
91
- }
92
-
93
- // @public
94
- export interface CodingOutput extends ElementOutput {
95
- code?: string;
96
- display?: string;
97
- system?: string;
98
- version?: string;
99
- }
100
-
101
- // @public
102
- export interface CompleteOrderDiscrepancyInference extends RadiologyInsightsInferenceParent {
103
- kind: "completeOrderDiscrepancy";
104
- missingBodyPartMeasurements?: Array<CodeableConcept>;
105
- missingBodyParts?: Array<CodeableConcept>;
106
- orderType: CodeableConcept;
107
- }
108
-
109
- // @public
110
- export interface CompleteOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
111
- kind: "completeOrderDiscrepancy";
112
- missingBodyPartMeasurements?: Array<CodeableConceptOutput>;
113
- missingBodyParts?: Array<CodeableConceptOutput>;
114
- orderType: CodeableConceptOutput;
115
- }
116
-
117
- // @public
118
- export interface Condition extends DomainResourceParent {
119
- abatementAge?: Quantity;
120
- abatementDateTime?: string;
121
- abatementPeriod?: Period;
122
- abatementRange?: Range;
123
- abatementString?: string;
124
- bodySite?: Array<CodeableConcept>;
125
- category?: Array<CodeableConcept>;
126
- clinicalStatus?: CodeableConcept;
127
- code?: CodeableConcept;
128
- encounter?: Reference;
129
- identifier?: Array<Identifier>;
130
- note?: Array<Annotation>;
131
- onsetAge?: Quantity;
132
- onsetDateTime?: string;
133
- onsetPeriod?: Period;
134
- onsetRange?: Range;
135
- onsetString?: string;
136
- recordedDate?: string;
137
- resourceType: "Condition";
138
- severity?: CodeableConcept;
139
- stage?: Array<ConditionStage>;
140
- verificationStatus?: CodeableConcept;
141
- }
142
-
143
- // @public
144
- export interface ConditionOutput extends DomainResourceOutputParent {
145
- abatementAge?: QuantityOutput;
146
- abatementDateTime?: string;
147
- abatementPeriod?: PeriodOutput;
148
- abatementRange?: RangeOutput;
149
- abatementString?: string;
150
- bodySite?: Array<CodeableConceptOutput>;
151
- category?: Array<CodeableConceptOutput>;
152
- clinicalStatus?: CodeableConceptOutput;
153
- code?: CodeableConceptOutput;
154
- encounter?: ReferenceOutput;
155
- identifier?: Array<IdentifierOutput>;
156
- note?: Array<AnnotationOutput>;
157
- onsetAge?: QuantityOutput;
158
- onsetDateTime?: string;
159
- onsetPeriod?: PeriodOutput;
160
- onsetRange?: RangeOutput;
161
- onsetString?: string;
162
- recordedDate?: string;
163
- resourceType: "Condition";
164
- severity?: CodeableConceptOutput;
165
- stage?: Array<ConditionStageOutput>;
166
- verificationStatus?: CodeableConceptOutput;
167
- }
168
-
169
- // @public
170
- export interface ConditionStage {
171
- summary?: CodeableConcept;
172
- type?: CodeableConcept;
173
- }
174
-
175
- // @public
176
- export interface ConditionStageOutput {
177
- summary?: CodeableConceptOutput;
178
- type?: CodeableConceptOutput;
179
- }
180
-
181
- // @public
182
- export interface ContactDetail extends Element {
183
- name?: string;
184
- telecom?: Array<ContactPoint>;
185
- }
186
-
187
- // @public
188
- export interface ContactDetailOutput extends ElementOutput {
189
- name?: string;
190
- telecom?: Array<ContactPointOutput>;
191
- }
192
-
193
- // @public
194
- export interface ContactPoint {
195
- period?: Period;
196
- rank?: number;
197
- system?: ContactPointSystem;
198
- use?: ContactPointUse;
199
- value?: string;
200
- }
201
-
202
- // @public
203
- export interface ContactPointOutput {
204
- period?: PeriodOutput;
205
- rank?: number;
206
- system?: ContactPointSystemOutput;
207
- use?: ContactPointUseOutput;
208
- value?: string;
209
- }
210
-
211
- // @public
212
- export type ContactPointSystem = string;
213
-
214
- // @public
215
- export type ContactPointSystemOutput = string;
216
-
217
- // @public
218
- export type ContactPointUse = string;
219
-
220
- // @public
221
- export type ContactPointUseOutput = string;
222
-
223
- // @public
224
- function createClient(endpointParam: string, credentials: TokenCredential | KeyCredential, { apiVersion, ...options }?: AzureHealthInsightsClientOptions): AzureHealthInsightsClient;
225
- export default createClient;
226
-
227
- // @public
228
- export interface CreateJob200Headers {
229
- "operation-location": string;
230
- "x-ms-request-id"?: string;
231
- }
232
-
233
- // @public
234
- export interface CreateJob200Response extends HttpResponse {
235
- body: RadiologyInsightsJobOutput;
236
- headers: RawHttpHeaders & CreateJob200Headers;
237
- status: "200";
238
- }
239
-
240
- // @public
241
- export interface CreateJob201Headers {
242
- "operation-location": string;
243
- "x-ms-request-id"?: string;
244
- }
245
-
246
- // @public
247
- export interface CreateJob201Response extends HttpResponse {
248
- body: RadiologyInsightsJobOutput;
249
- headers: RawHttpHeaders & CreateJob201Headers;
250
- status: "201";
251
- }
252
-
253
- // @public
254
- export interface CreateJobBodyParam {
255
- body: RadiologyInsightsJob;
256
- }
257
-
258
- // @public
259
- export interface CreateJobDefaultHeaders {
260
- "x-ms-error-code"?: string;
261
- "x-ms-request-id"?: string;
262
- }
263
-
264
- // @public
265
- export interface CreateJobDefaultResponse extends HttpResponse {
266
- body: HealthInsightsErrorResponseOutput;
267
- headers: RawHttpHeaders & CreateJobDefaultHeaders;
268
- status: string;
269
- }
270
-
271
- // @public
272
- export interface CreateJobExpandQueryParam {
273
- explode: true;
274
- style: "form";
275
- value: string[];
276
- }
277
-
278
- // @public
279
- export interface CreateJobLogicalResponse extends HttpResponse {
280
- body: RadiologyInsightsJobOutput;
281
- status: "200";
282
- }
283
-
284
- // @public
285
- export type CreateJobParameters = CreateJobQueryParam & CreateJobBodyParam & RequestParameters;
286
-
287
- // @public
288
- export interface CreateJobQueryParam {
289
- queryParameters?: CreateJobQueryParamProperties;
290
- }
291
-
292
- // @public
293
- export interface CreateJobQueryParamProperties {
294
- expand?: CreateJobExpandQueryParam;
295
- }
296
-
297
- // @public
298
- export interface CriticalResult {
299
- description: string;
300
- finding?: Observation;
301
- }
302
-
303
- // @public
304
- export interface CriticalResultInference extends RadiologyInsightsInferenceParent {
305
- kind: "criticalResult";
306
- result: CriticalResult;
307
- }
308
-
309
- // @public
310
- export interface CriticalResultInferenceOutput extends RadiologyInsightsInferenceOutputParent {
311
- kind: "criticalResult";
312
- result: CriticalResultOutput;
313
- }
314
-
315
- // @public
316
- export interface CriticalResultOutput {
317
- description: string;
318
- finding?: ObservationOutput;
319
- }
320
-
321
- // @public
322
- export interface DocumentAdministrativeMetadata {
323
- encounterId?: string;
324
- orderedProcedures?: Array<OrderedProcedure>;
325
- }
326
-
327
- // @public
328
- export interface DocumentAdministrativeMetadataOutput {
329
- encounterId?: string;
330
- orderedProcedures?: Array<OrderedProcedureOutput>;
331
- }
332
-
333
- // @public
334
- export interface DocumentAuthor {
335
- fullName?: string;
336
- id?: string;
337
- }
338
-
339
- // @public
340
- export interface DocumentAuthorOutput {
341
- fullName?: string;
342
- id?: string;
343
- }
344
-
345
- // @public
346
- export interface DocumentContent {
347
- sourceType: DocumentContentSourceType;
348
- value: string;
349
- }
350
-
351
- // @public
352
- export interface DocumentContentOutput {
353
- sourceType: DocumentContentSourceTypeOutput;
354
- value: string;
355
- }
356
-
357
- // @public
358
- export type DocumentContentSourceType = string;
359
-
360
- // @public
361
- export type DocumentContentSourceTypeOutput = string;
362
-
363
- // @public
364
- export type DocumentType = string;
365
-
366
- // @public
367
- export type DocumentTypeOutput = string;
368
-
369
- // @public
370
- export type DomainResource = DomainResourceParent | Observation | Condition | ResearchStudy;
371
-
372
- // @public
373
- export type DomainResourceOutput = DomainResourceOutputParent | ObservationOutput | ConditionOutput | ResearchStudyOutput;
374
-
375
- // @public
376
- export interface DomainResourceOutputParent extends ResourceOutput {
377
- contained?: Array<ResourceOutput>;
378
- extension?: Array<ExtensionOutput>;
379
- modifierExtension?: Array<ExtensionOutput>;
380
- resourceType: string;
381
- text?: NarrativeOutput;
382
- }
383
-
384
- // @public
385
- export interface DomainResourceParent extends Resource {
386
- contained?: Array<Resource>;
387
- extension?: Array<Extension>;
388
- modifierExtension?: Array<Extension>;
389
- resourceType: string;
390
- text?: Narrative;
391
- }
392
-
393
- // @public
394
- export interface Element {
395
- extension?: Array<Extension>;
396
- id?: string;
397
- }
398
-
399
- // @public
400
- export interface ElementOutput {
401
- extension?: Array<ExtensionOutput>;
402
- id?: string;
403
- }
404
-
405
- // @public
406
- export type EncounterClass = string;
407
-
408
- // @public
409
- export type EncounterClassOutput = string;
410
-
411
- // @public
412
- export interface Extension extends Element {
413
- url: string;
414
- valueBoolean?: boolean;
415
- valueCodeableConcept?: CodeableConcept;
416
- valueDateTime?: string;
417
- valueInteger?: number;
418
- valuePeriod?: Period;
419
- valueQuantity?: Quantity;
420
- valueRange?: Range;
421
- valueRatio?: Ratio;
422
- valueReference?: Reference;
423
- valueSampledData?: SampledData;
424
- valueString?: string;
425
- valueTime?: string;
426
- }
427
-
428
- // @public
429
- export interface ExtensionOutput extends ElementOutput {
430
- url: string;
431
- valueBoolean?: boolean;
432
- valueCodeableConcept?: CodeableConceptOutput;
433
- valueDateTime?: string;
434
- valueInteger?: number;
435
- valuePeriod?: PeriodOutput;
436
- valueQuantity?: QuantityOutput;
437
- valueRange?: RangeOutput;
438
- valueRatio?: RatioOutput;
439
- valueReference?: ReferenceOutput;
440
- valueSampledData?: SampledDataOutput;
441
- valueString?: string;
442
- valueTime?: string;
443
- }
444
-
445
- // @public
446
- export interface FindingInference extends RadiologyInsightsInferenceParent {
447
- finding: Observation;
448
- kind: "finding";
449
- }
450
-
451
- // @public
452
- export interface FindingInferenceOutput extends RadiologyInsightsInferenceOutputParent {
453
- finding: ObservationOutput;
454
- kind: "finding";
455
- }
456
-
457
- // @public
458
- export interface FindingOptions {
459
- provideFocusedSentenceEvidence?: boolean;
460
- }
461
-
462
- // @public
463
- export interface FindingOptionsOutput {
464
- provideFocusedSentenceEvidence?: boolean;
465
- }
466
-
467
- // @public
468
- export interface FollowupCommunicationInference extends RadiologyInsightsInferenceParent {
469
- communicatedAt?: Date[] | string[];
470
- kind: "followupCommunication";
471
- recipient?: MedicalProfessionalType[];
472
- wasAcknowledged: boolean;
473
- }
474
-
475
- // @public
476
- export interface FollowupCommunicationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
477
- communicatedAt?: string[];
478
- kind: "followupCommunication";
479
- recipient?: MedicalProfessionalTypeOutput[];
480
- wasAcknowledged: boolean;
481
- }
482
-
483
- // @public
484
- export interface FollowupRecommendationInference extends RadiologyInsightsInferenceParent {
485
- effectiveAt?: string;
486
- effectivePeriod?: Period;
487
- findings?: Array<RecommendationFinding>;
488
- isConditional: boolean;
489
- isGuideline: boolean;
490
- isHedging: boolean;
491
- isOption: boolean;
492
- kind: "followupRecommendation";
493
- recommendedProcedure: ProcedureRecommendation;
494
- }
495
-
496
- // @public
497
- export interface FollowupRecommendationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
498
- effectiveAt?: string;
499
- effectivePeriod?: PeriodOutput;
500
- findings?: Array<RecommendationFindingOutput>;
501
- isConditional: boolean;
502
- isGuideline: boolean;
503
- isHedging: boolean;
504
- isOption: boolean;
505
- kind: "followupRecommendation";
506
- recommendedProcedure: ProcedureRecommendationOutput;
507
- }
508
-
509
- // @public
510
- export interface FollowupRecommendationOptions {
511
- includeRecommendationsInReferences?: boolean;
512
- includeRecommendationsWithNoSpecifiedModality?: boolean;
513
- provideFocusedSentenceEvidence?: boolean;
514
- }
515
-
516
- // @public
517
- export interface FollowupRecommendationOptionsOutput {
518
- includeRecommendationsInReferences?: boolean;
519
- includeRecommendationsWithNoSpecifiedModality?: boolean;
520
- provideFocusedSentenceEvidence?: boolean;
521
- }
522
-
523
- // @public
524
- export interface GenericProcedureRecommendation extends ProcedureRecommendationParent {
525
- code: CodeableConcept;
526
- description?: string;
527
- kind: "genericProcedureRecommendation";
528
- }
529
-
530
- // @public
531
- export interface GenericProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
532
- code: CodeableConceptOutput;
533
- description?: string;
534
- kind: "genericProcedureRecommendation";
535
- }
536
-
537
- // @public
538
- export interface GetJob {
539
- get(options?: GetJobParameters): StreamableMethod<GetJob200Response | GetJobDefaultResponse>;
540
- put(options: CreateJobParameters): StreamableMethod<CreateJob200Response | CreateJob201Response | CreateJobDefaultResponse>;
541
- }
542
-
543
- // @public
544
- export interface GetJob200Headers {
545
- "retry-after"?: number;
546
- "x-ms-request-id"?: string;
547
- }
548
-
549
- // @public
550
- export interface GetJob200Response extends HttpResponse {
551
- body: RadiologyInsightsJobOutput;
552
- headers: RawHttpHeaders & GetJob200Headers;
553
- status: "200";
554
- }
555
-
556
- // @public
557
- export interface GetJobDefaultHeaders {
558
- "x-ms-error-code"?: string;
559
- "x-ms-request-id"?: string;
560
- }
561
-
562
- // @public
563
- export interface GetJobDefaultResponse extends HttpResponse {
564
- body: HealthInsightsErrorResponseOutput;
565
- headers: RawHttpHeaders & GetJobDefaultHeaders;
566
- status: string;
567
- }
568
-
569
- // @public
570
- export interface GetJobExpandQueryParam {
571
- explode: true;
572
- style: "form";
573
- value: string[];
574
- }
575
-
576
- // @public
577
- export type GetJobParameters = GetJobQueryParam & RequestParameters;
578
-
579
- // @public
580
- export interface GetJobQueryParam {
581
- queryParameters?: GetJobQueryParamProperties;
582
- }
583
-
584
- // @public
585
- export interface GetJobQueryParamProperties {
586
- expand?: GetJobExpandQueryParam;
587
- }
588
-
589
- // @public
590
- export function getLongRunningPoller<TResult extends CreateJobLogicalResponse | CreateJobDefaultResponse>(client: Client, initialResponse: CreateJob200Response | CreateJob201Response | CreateJobDefaultResponse, options?: CreateHttpPollerOptions<TResult, OperationState<TResult>>): Promise<SimplePollerLike<OperationState<TResult>, TResult>>;
591
-
592
- // @public
593
- export interface GuidanceInference extends RadiologyInsightsInferenceParent {
594
- finding: FindingInference;
595
- identifier: CodeableConcept;
596
- kind: "guidance";
597
- missingGuidanceInformation?: string[];
598
- presentGuidanceInformation?: Array<PresentGuidanceInformation>;
599
- ranking: GuidanceRankingType;
600
- recommendationProposals?: Array<FollowupRecommendationInference>;
601
- }
602
-
603
- // @public
604
- export interface GuidanceInferenceOutput extends RadiologyInsightsInferenceOutputParent {
605
- finding: FindingInferenceOutput;
606
- identifier: CodeableConceptOutput;
607
- kind: "guidance";
608
- missingGuidanceInformation?: string[];
609
- presentGuidanceInformation?: Array<PresentGuidanceInformationOutput>;
610
- ranking: GuidanceRankingTypeOutput;
611
- recommendationProposals?: Array<FollowupRecommendationInferenceOutput>;
612
- }
613
-
614
- // @public
615
- export interface GuidanceOptions {
616
- showGuidanceInHistory: boolean;
617
- }
618
-
619
- // @public
620
- export interface GuidanceOptionsOutput {
621
- showGuidanceInHistory: boolean;
622
- }
623
-
624
- // @public
625
- export type GuidanceRankingType = string;
626
-
627
- // @public
628
- export type GuidanceRankingTypeOutput = string;
629
-
630
- // @public
631
- export interface HealthInsightsErrorResponseOutput {
632
- error: ErrorModel;
633
- }
634
-
635
- // @public
636
- export interface Identifier extends Element {
637
- assigner?: Reference;
638
- period?: Period;
639
- system?: string;
640
- type?: CodeableConcept;
641
- use?: string;
642
- value?: string;
643
- }
644
-
645
- // @public
646
- export interface IdentifierOutput extends ElementOutput {
647
- assigner?: ReferenceOutput;
648
- period?: PeriodOutput;
649
- system?: string;
650
- type?: CodeableConceptOutput;
651
- use?: string;
652
- value?: string;
653
- }
654
-
655
- // @public
656
- export interface ImagingProcedure {
657
- anatomy: CodeableConcept;
658
- contrast?: RadiologyCodeWithTypes;
659
- laterality?: CodeableConcept;
660
- modality: CodeableConcept;
661
- view?: RadiologyCodeWithTypes;
662
- }
663
-
664
- // @public
665
- export interface ImagingProcedureOutput {
666
- anatomy: CodeableConceptOutput;
667
- contrast?: RadiologyCodeWithTypesOutput;
668
- laterality?: CodeableConceptOutput;
669
- modality: CodeableConceptOutput;
670
- view?: RadiologyCodeWithTypesOutput;
671
- }
672
-
673
- // @public
674
- export interface ImagingProcedureRecommendation extends ProcedureRecommendationParent {
675
- imagingProcedures: Array<ImagingProcedure>;
676
- kind: "imagingProcedureRecommendation";
677
- procedureCodes?: Array<CodeableConcept>;
678
- }
679
-
680
- // @public
681
- export interface ImagingProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
682
- imagingProcedures: Array<ImagingProcedureOutput>;
683
- kind: "imagingProcedureRecommendation";
684
- procedureCodes?: Array<CodeableConceptOutput>;
685
- }
686
-
687
- // @public
688
- export function isUnexpected(response: GetJob200Response | GetJobDefaultResponse): response is GetJobDefaultResponse;
689
-
690
- // @public
691
- export function isUnexpected(response: CreateJob200Response | CreateJob201Response | CreateJobLogicalResponse | CreateJobDefaultResponse): response is CreateJobDefaultResponse;
692
-
693
- // @public
694
- export type JobStatus = string;
695
-
696
- // @public
697
- export type JobStatusOutput = string;
698
-
699
- // @public
700
- export interface LateralityDiscrepancyInference extends RadiologyInsightsInferenceParent {
701
- discrepancyType: LateralityDiscrepancyType;
702
- kind: "lateralityDiscrepancy";
703
- lateralityIndication?: CodeableConcept;
704
- }
705
-
706
- // @public
707
- export interface LateralityDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
708
- discrepancyType: LateralityDiscrepancyTypeOutput;
709
- kind: "lateralityDiscrepancy";
710
- lateralityIndication?: CodeableConceptOutput;
711
- }
712
-
713
- // @public
714
- export type LateralityDiscrepancyType = string;
715
-
716
- // @public
717
- export type LateralityDiscrepancyTypeOutput = string;
718
-
719
- // @public
720
- export interface LimitedOrderDiscrepancyInference extends RadiologyInsightsInferenceParent {
721
- kind: "limitedOrderDiscrepancy";
722
- orderType: CodeableConcept;
723
- presentBodyPartMeasurements?: Array<CodeableConcept>;
724
- presentBodyParts?: Array<CodeableConcept>;
725
- }
726
-
727
- // @public
728
- export interface LimitedOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
729
- kind: "limitedOrderDiscrepancy";
730
- orderType: CodeableConceptOutput;
731
- presentBodyPartMeasurements?: Array<CodeableConceptOutput>;
732
- presentBodyParts?: Array<CodeableConceptOutput>;
733
- }
734
-
735
- // @public
736
- export type MedicalProfessionalType = string;
737
-
738
- // @public
739
- export type MedicalProfessionalTypeOutput = string;
740
-
741
- // @public
742
- export interface Meta {
743
- lastUpdated?: string;
744
- profile?: string[];
745
- security?: Array<Coding>;
746
- source?: string;
747
- tag?: Array<Coding>;
748
- versionId?: string;
749
- }
750
-
751
- // @public
752
- export interface MetaOutput {
753
- lastUpdated?: string;
754
- profile?: string[];
755
- security?: Array<CodingOutput>;
756
- source?: string;
757
- tag?: Array<CodingOutput>;
758
- versionId?: string;
759
- }
760
-
761
- // @public
762
- export interface Narrative extends Element {
763
- div: string;
764
- status: string;
765
- }
766
-
767
- // @public
768
- export interface NarrativeOutput extends ElementOutput {
769
- div: string;
770
- status: string;
771
- }
772
-
773
- // @public
774
- export interface Observation extends DomainResourceParent {
775
- bodySite?: CodeableConcept;
776
- category?: Array<CodeableConcept>;
777
- code: CodeableConcept;
778
- component?: Array<ObservationComponent>;
779
- dataAbsentReason?: CodeableConcept;
780
- derivedFrom?: Array<Reference>;
781
- effectiveDateTime?: string;
782
- effectiveInstant?: string;
783
- effectivePeriod?: Period;
784
- encounter?: Reference;
785
- hasMember?: Array<Reference>;
786
- identifier?: Array<Identifier>;
787
- interpretation?: Array<CodeableConcept>;
788
- issued?: string;
789
- method?: CodeableConcept;
790
- note?: Array<Annotation>;
791
- referenceRange?: Array<ObservationReferenceRange>;
792
- resourceType: "Observation";
793
- status: ObservationStatusCodeType;
794
- subject?: Reference;
795
- valueBoolean?: boolean;
796
- valueCodeableConcept?: CodeableConcept;
797
- valueDateTime?: string;
798
- valueInteger?: number;
799
- valuePeriod?: Period;
800
- valueQuantity?: Quantity;
801
- valueRange?: Range;
802
- valueRatio?: Ratio;
803
- valueSampledData?: SampledData;
804
- valueString?: string;
805
- valueTime?: string;
806
- }
807
-
808
- // @public
809
- export interface ObservationComponent extends Element {
810
- code: CodeableConcept;
811
- dataAbsentReason?: CodeableConcept;
812
- interpretation?: Array<CodeableConcept>;
813
- referenceRange?: Array<ObservationReferenceRange>;
814
- valueBoolean?: boolean;
815
- valueCodeableConcept?: CodeableConcept;
816
- valueDateTime?: string;
817
- valueInteger?: number;
818
- valuePeriod?: Period;
819
- valueQuantity?: Quantity;
820
- valueRange?: Range;
821
- valueRatio?: Ratio;
822
- valueReference?: Reference;
823
- valueSampledData?: SampledData;
824
- valueString?: string;
825
- valueTime?: string;
826
- }
827
-
828
- // @public
829
- export interface ObservationComponentOutput extends ElementOutput {
830
- code: CodeableConceptOutput;
831
- dataAbsentReason?: CodeableConceptOutput;
832
- interpretation?: Array<CodeableConceptOutput>;
833
- referenceRange?: Array<ObservationReferenceRangeOutput>;
834
- valueBoolean?: boolean;
835
- valueCodeableConcept?: CodeableConceptOutput;
836
- valueDateTime?: string;
837
- valueInteger?: number;
838
- valuePeriod?: PeriodOutput;
839
- valueQuantity?: QuantityOutput;
840
- valueRange?: RangeOutput;
841
- valueRatio?: RatioOutput;
842
- valueReference?: ReferenceOutput;
843
- valueSampledData?: SampledDataOutput;
844
- valueString?: string;
845
- valueTime?: string;
846
- }
847
-
848
- // @public
849
- export interface ObservationOutput extends DomainResourceOutputParent {
850
- bodySite?: CodeableConceptOutput;
851
- category?: Array<CodeableConceptOutput>;
852
- code: CodeableConceptOutput;
853
- component?: Array<ObservationComponentOutput>;
854
- dataAbsentReason?: CodeableConceptOutput;
855
- derivedFrom?: Array<ReferenceOutput>;
856
- effectiveDateTime?: string;
857
- effectiveInstant?: string;
858
- effectivePeriod?: PeriodOutput;
859
- encounter?: ReferenceOutput;
860
- hasMember?: Array<ReferenceOutput>;
861
- identifier?: Array<IdentifierOutput>;
862
- interpretation?: Array<CodeableConceptOutput>;
863
- issued?: string;
864
- method?: CodeableConceptOutput;
865
- note?: Array<AnnotationOutput>;
866
- referenceRange?: Array<ObservationReferenceRangeOutput>;
867
- resourceType: "Observation";
868
- status: ObservationStatusCodeTypeOutput;
869
- subject?: ReferenceOutput;
870
- valueBoolean?: boolean;
871
- valueCodeableConcept?: CodeableConceptOutput;
872
- valueDateTime?: string;
873
- valueInteger?: number;
874
- valuePeriod?: PeriodOutput;
875
- valueQuantity?: QuantityOutput;
876
- valueRange?: RangeOutput;
877
- valueRatio?: RatioOutput;
878
- valueSampledData?: SampledDataOutput;
879
- valueString?: string;
880
- valueTime?: string;
881
- }
882
-
883
- // @public
884
- export interface ObservationReferenceRange {
885
- age?: Range;
886
- appliesTo?: Array<CodeableConcept>;
887
- high?: Quantity;
888
- low?: Quantity;
889
- text?: string;
890
- type?: CodeableConcept;
891
- }
892
-
893
- // @public
894
- export interface ObservationReferenceRangeOutput {
895
- age?: RangeOutput;
896
- appliesTo?: Array<CodeableConceptOutput>;
897
- high?: QuantityOutput;
898
- low?: QuantityOutput;
899
- text?: string;
900
- type?: CodeableConceptOutput;
901
- }
902
-
903
- // @public
904
- export type ObservationStatusCodeType = string;
905
-
906
- // @public
907
- export type ObservationStatusCodeTypeOutput = string;
908
-
909
- // @public
910
- export interface OrderedProcedure {
911
- code?: CodeableConcept;
912
- description?: string;
913
- extension?: Array<Extension>;
914
- }
915
-
916
- // @public
917
- export interface OrderedProcedureOutput {
918
- code?: CodeableConceptOutput;
919
- description?: string;
920
- extension?: Array<ExtensionOutput>;
921
- }
922
-
923
- // @public
924
- export interface PatientDetails {
925
- birthDate?: string;
926
- clinicalInfo?: Array<Resource>;
927
- sex?: PatientSex;
928
- }
929
-
930
- // @public
931
- export interface PatientDetailsOutput {
932
- birthDate?: string;
933
- clinicalInfo?: Array<ResourceOutput>;
934
- sex?: PatientSexOutput;
935
- }
936
-
937
- // @public
938
- export interface PatientDocument {
939
- administrativeMetadata?: DocumentAdministrativeMetadata;
940
- authors?: Array<DocumentAuthor>;
941
- clinicalType?: ClinicalDocumentType;
942
- content: DocumentContent;
943
- createdAt?: Date | string;
944
- id: string;
945
- language?: string;
946
- specialtyType?: SpecialtyType;
947
- type: DocumentType;
948
- }
949
-
950
- // @public
951
- export interface PatientDocumentOutput {
952
- administrativeMetadata?: DocumentAdministrativeMetadataOutput;
953
- authors?: Array<DocumentAuthorOutput>;
954
- clinicalType?: ClinicalDocumentTypeOutput;
955
- content: DocumentContentOutput;
956
- createdAt?: string;
957
- id: string;
958
- language?: string;
959
- specialtyType?: SpecialtyTypeOutput;
960
- type: DocumentTypeOutput;
961
- }
962
-
963
- // @public
964
- export interface PatientEncounter {
965
- class?: EncounterClass;
966
- id: string;
967
- period?: TimePeriod;
968
- }
969
-
970
- // @public
971
- export interface PatientEncounterOutput {
972
- class?: EncounterClassOutput;
973
- id: string;
974
- period?: TimePeriodOutput;
975
- }
976
-
977
- // @public
978
- export interface PatientRecord {
979
- details?: PatientDetails;
980
- encounters?: Array<PatientEncounter>;
981
- id: string;
982
- patientDocuments?: Array<PatientDocument>;
983
- }
984
-
985
- // @public
986
- export interface PatientRecordOutput {
987
- details?: PatientDetailsOutput;
988
- encounters?: Array<PatientEncounterOutput>;
989
- id: string;
990
- patientDocuments?: Array<PatientDocumentOutput>;
991
- }
992
-
993
- // @public
994
- export type PatientSex = string;
995
-
996
- // @public
997
- export type PatientSexOutput = string;
998
-
999
- // @public
1000
- export interface Period extends Element {
1001
- end?: string;
1002
- start?: string;
1003
- }
1004
-
1005
- // @public
1006
- export interface PeriodOutput extends ElementOutput {
1007
- end?: string;
1008
- start?: string;
1009
- }
1010
-
1011
- // @public
1012
- export interface PresentGuidanceInformation {
1013
- extension?: Array<Extension>;
1014
- maximumDiameterAsInText?: Quantity;
1015
- presentGuidanceItem: string;
1016
- presentGuidanceValues?: string[];
1017
- sizes?: Array<Observation>;
1018
- }
1019
-
1020
- // @public
1021
- export interface PresentGuidanceInformationOutput {
1022
- extension?: Array<ExtensionOutput>;
1023
- maximumDiameterAsInText?: QuantityOutput;
1024
- presentGuidanceItem: string;
1025
- presentGuidanceValues?: string[];
1026
- sizes?: Array<ObservationOutput>;
1027
- }
1028
-
1029
- // @public
1030
- export type ProcedureRecommendation = ProcedureRecommendationParent | GenericProcedureRecommendation | ImagingProcedureRecommendation;
1031
-
1032
- // @public
1033
- export type ProcedureRecommendationOutput = ProcedureRecommendationOutputParent | GenericProcedureRecommendationOutput | ImagingProcedureRecommendationOutput;
1034
-
1035
- // @public
1036
- export interface ProcedureRecommendationOutputParent {
1037
- extension?: Array<ExtensionOutput>;
1038
- kind: string;
1039
- }
1040
-
1041
- // @public
1042
- export interface ProcedureRecommendationParent {
1043
- extension?: Array<Extension>;
1044
- kind: string;
1045
- }
1046
-
1047
- // @public
1048
- export type QualityMeasureComplianceType = string;
1049
-
1050
- // @public
1051
- export type QualityMeasureComplianceTypeOutput = string;
1052
-
1053
- // @public
1054
- export interface QualityMeasureInference extends RadiologyInsightsInferenceParent {
1055
- complianceType: QualityMeasureComplianceType;
1056
- kind: "qualityMeasure";
1057
- qualityCriteria?: string[];
1058
- qualityMeasureDenominator: string;
1059
- }
1060
-
1061
- // @public
1062
- export interface QualityMeasureInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1063
- complianceType: QualityMeasureComplianceTypeOutput;
1064
- kind: "qualityMeasure";
1065
- qualityCriteria?: string[];
1066
- qualityMeasureDenominator: string;
1067
- }
1068
-
1069
- // @public
1070
- export interface QualityMeasureOptions {
1071
- measureTypes: QualityMeasureType[];
1072
- }
1073
-
1074
- // @public
1075
- export interface QualityMeasureOptionsOutput {
1076
- measureTypes: QualityMeasureTypeOutput[];
1077
- }
1078
-
1079
- // @public
1080
- export type QualityMeasureType = string;
1081
-
1082
- // @public
1083
- export type QualityMeasureTypeOutput = string;
1084
-
1085
- // @public
1086
- export interface Quantity extends Element {
1087
- code?: string;
1088
- comparator?: string;
1089
- system?: string;
1090
- unit?: string;
1091
- value?: number;
1092
- }
1093
-
1094
- // @public
1095
- export interface QuantityOutput extends ElementOutput {
1096
- code?: string;
1097
- comparator?: string;
1098
- system?: string;
1099
- unit?: string;
1100
- value?: number;
1101
- }
1102
-
1103
- // @public
1104
- export interface RadiologyCodeWithTypes {
1105
- code: CodeableConcept;
1106
- types: Array<CodeableConcept>;
1107
- }
1108
-
1109
- // @public
1110
- export interface RadiologyCodeWithTypesOutput {
1111
- code: CodeableConceptOutput;
1112
- types: Array<CodeableConceptOutput>;
1113
- }
1114
-
1115
- // @public
1116
- export interface RadiologyInsightsData {
1117
- configuration?: RadiologyInsightsModelConfiguration;
1118
- patients: Array<PatientRecord>;
1119
- }
1120
-
1121
- // @public
1122
- export interface RadiologyInsightsDataOutput {
1123
- configuration?: RadiologyInsightsModelConfigurationOutput;
1124
- patients: Array<PatientRecordOutput>;
1125
- }
1126
-
1127
- // @public
1128
- export type RadiologyInsightsInference = RadiologyInsightsInferenceParent | AgeMismatchInference | SexMismatchInference | LateralityDiscrepancyInference | CompleteOrderDiscrepancyInference | LimitedOrderDiscrepancyInference | FindingInference | CriticalResultInference | RadiologyProcedureInference | FollowupRecommendationInference | FollowupCommunicationInference | ScoringAndAssessmentInference | GuidanceInference | QualityMeasureInference;
1129
-
1130
- // @public
1131
- export interface RadiologyInsightsInferenceOptions {
1132
- findingOptions?: FindingOptions;
1133
- followupRecommendationOptions?: FollowupRecommendationOptions;
1134
- guidanceOptions?: GuidanceOptions;
1135
- qualityMeasureOptions?: QualityMeasureOptions;
1136
- }
1137
-
1138
- // @public
1139
- export interface RadiologyInsightsInferenceOptionsOutput {
1140
- findingOptions?: FindingOptionsOutput;
1141
- followupRecommendationOptions?: FollowupRecommendationOptionsOutput;
1142
- guidanceOptions?: GuidanceOptionsOutput;
1143
- qualityMeasureOptions?: QualityMeasureOptionsOutput;
1144
- }
1145
-
1146
- // @public
1147
- export type RadiologyInsightsInferenceOutput = RadiologyInsightsInferenceOutputParent | AgeMismatchInferenceOutput | SexMismatchInferenceOutput | LateralityDiscrepancyInferenceOutput | CompleteOrderDiscrepancyInferenceOutput | LimitedOrderDiscrepancyInferenceOutput | FindingInferenceOutput | CriticalResultInferenceOutput | RadiologyProcedureInferenceOutput | FollowupRecommendationInferenceOutput | FollowupCommunicationInferenceOutput | ScoringAndAssessmentInferenceOutput | GuidanceInferenceOutput | QualityMeasureInferenceOutput;
1148
-
1149
- // @public
1150
- export interface RadiologyInsightsInferenceOutputParent {
1151
- extension?: Array<ExtensionOutput>;
1152
- kind: string;
1153
- }
1154
-
1155
- // @public
1156
- export interface RadiologyInsightsInferenceParent {
1157
- extension?: Array<Extension>;
1158
- kind: string;
1159
- }
1160
-
1161
- // @public
1162
- export interface RadiologyInsightsInferenceResult {
1163
- modelVersion: string;
1164
- patientResults: Array<RadiologyInsightsPatientResult>;
1165
- }
1166
-
1167
- // @public
1168
- export interface RadiologyInsightsInferenceResultOutput {
1169
- modelVersion: string;
1170
- patientResults: Array<RadiologyInsightsPatientResultOutput>;
1171
- }
1172
-
1173
- // @public
1174
- export type RadiologyInsightsInferenceType = string;
1175
-
1176
- // @public
1177
- export type RadiologyInsightsInferenceTypeOutput = string;
1178
-
1179
- // @public
1180
- export interface RadiologyInsightsJob {
1181
- jobData?: RadiologyInsightsData;
1182
- }
1183
-
1184
- // @public
1185
- export interface RadiologyInsightsJobOutput {
1186
- readonly createdAt?: string;
1187
- readonly error?: ErrorModel;
1188
- readonly expiresAt?: string;
1189
- readonly id: string;
1190
- jobData?: RadiologyInsightsDataOutput;
1191
- readonly result?: RadiologyInsightsInferenceResultOutput;
1192
- readonly status: JobStatusOutput;
1193
- readonly updatedAt?: string;
1194
- }
1195
-
1196
- // @public
1197
- export interface RadiologyInsightsModelConfiguration {
1198
- includeEvidence?: boolean;
1199
- inferenceOptions?: RadiologyInsightsInferenceOptions;
1200
- inferenceTypes?: RadiologyInsightsInferenceType[];
1201
- locale?: string;
1202
- verbose?: boolean;
1203
- }
1204
-
1205
- // @public
1206
- export interface RadiologyInsightsModelConfigurationOutput {
1207
- includeEvidence?: boolean;
1208
- inferenceOptions?: RadiologyInsightsInferenceOptionsOutput;
1209
- inferenceTypes?: RadiologyInsightsInferenceTypeOutput[];
1210
- locale?: string;
1211
- verbose?: boolean;
1212
- }
1213
-
1214
- // @public
1215
- export interface RadiologyInsightsPatientResult {
1216
- inferences: Array<RadiologyInsightsInference>;
1217
- patientId: string;
1218
- }
1219
-
1220
- // @public
1221
- export interface RadiologyInsightsPatientResultOutput {
1222
- inferences: Array<RadiologyInsightsInferenceOutput>;
1223
- patientId: string;
1224
- }
1225
-
1226
- // @public
1227
- export interface RadiologyProcedureInference extends RadiologyInsightsInferenceParent {
1228
- imagingProcedures: Array<ImagingProcedure>;
1229
- kind: "radiologyProcedure";
1230
- orderedProcedure: OrderedProcedure;
1231
- procedureCodes?: Array<CodeableConcept>;
1232
- }
1233
-
1234
- // @public
1235
- export interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1236
- imagingProcedures: Array<ImagingProcedureOutput>;
1237
- kind: "radiologyProcedure";
1238
- orderedProcedure: OrderedProcedureOutput;
1239
- procedureCodes?: Array<CodeableConceptOutput>;
1240
- }
1241
-
1242
- // @public
1243
- export interface Range extends Element {
1244
- high?: Quantity;
1245
- low?: Quantity;
1246
- }
1247
-
1248
- // @public
1249
- export interface RangeOutput extends ElementOutput {
1250
- high?: QuantityOutput;
1251
- low?: QuantityOutput;
1252
- }
1253
-
1254
- // @public
1255
- export interface Ratio extends Element {
1256
- denominator?: Quantity;
1257
- numerator?: Quantity;
1258
- }
1259
-
1260
- // @public
1261
- export interface RatioOutput extends ElementOutput {
1262
- denominator?: QuantityOutput;
1263
- numerator?: QuantityOutput;
1264
- }
1265
-
1266
- // @public
1267
- export interface RecommendationFinding {
1268
- criticalFinding?: CriticalResult;
1269
- extension?: Array<Extension>;
1270
- finding?: Observation;
1271
- recommendationFindingStatus: RecommendationFindingStatusType;
1272
- }
1273
-
1274
- // @public
1275
- export interface RecommendationFindingOutput {
1276
- criticalFinding?: CriticalResultOutput;
1277
- extension?: Array<ExtensionOutput>;
1278
- finding?: ObservationOutput;
1279
- recommendationFindingStatus: RecommendationFindingStatusTypeOutput;
1280
- }
1281
-
1282
- // @public
1283
- export type RecommendationFindingStatusType = string;
1284
-
1285
- // @public
1286
- export type RecommendationFindingStatusTypeOutput = string;
1287
-
1288
- // @public
1289
- export interface Reference extends Element {
1290
- display?: string;
1291
- identifier?: Identifier;
1292
- reference?: string;
1293
- type?: string;
1294
- }
1295
-
1296
- // @public
1297
- export interface ReferenceOutput extends ElementOutput {
1298
- display?: string;
1299
- identifier?: IdentifierOutput;
1300
- reference?: string;
1301
- type?: string;
1302
- }
1303
-
1304
- // @public
1305
- export interface ResearchStudy extends DomainResourceParent {
1306
- arm?: {
1307
- name: string;
1308
- type?: CodeableConcept;
1309
- description?: string;
1310
- }[];
1311
- category?: Array<CodeableConcept>;
1312
- condition?: Array<CodeableConcept>;
1313
- contact?: Array<ContactDetail>;
1314
- description?: string;
1315
- enrollment?: Array<Reference>;
1316
- focus?: Array<CodeableConcept>;
1317
- identifier?: Array<Identifier>;
1318
- keyword?: Array<CodeableConcept>;
1319
- location?: Array<CodeableConcept>;
1320
- note?: Array<Annotation>;
1321
- objective?: {
1322
- name: string;
1323
- type?: CodeableConcept;
1324
- }[];
1325
- partOf?: Array<Reference>;
1326
- period?: Period;
1327
- phase?: CodeableConcept;
1328
- primaryPurposeType?: CodeableConcept;
1329
- principalInvestigator?: Reference;
1330
- protocol?: Array<Reference>;
1331
- reasonStopped?: CodeableConcept;
1332
- resourceType: "ResearchStudy";
1333
- site?: Array<Reference>;
1334
- sponsor?: Reference;
1335
- status: ResearchStudyStatusCodeType;
1336
- title?: string;
1337
- }
1338
-
1339
- // @public
1340
- export interface ResearchStudyOutput extends DomainResourceOutputParent {
1341
- arm?: {
1342
- name: string;
1343
- type?: CodeableConceptOutput;
1344
- description?: string;
1345
- }[];
1346
- category?: Array<CodeableConceptOutput>;
1347
- condition?: Array<CodeableConceptOutput>;
1348
- contact?: Array<ContactDetailOutput>;
1349
- description?: string;
1350
- enrollment?: Array<ReferenceOutput>;
1351
- focus?: Array<CodeableConceptOutput>;
1352
- identifier?: Array<IdentifierOutput>;
1353
- keyword?: Array<CodeableConceptOutput>;
1354
- location?: Array<CodeableConceptOutput>;
1355
- note?: Array<AnnotationOutput>;
1356
- objective?: {
1357
- name: string;
1358
- type?: CodeableConceptOutput;
1359
- }[];
1360
- partOf?: Array<ReferenceOutput>;
1361
- period?: PeriodOutput;
1362
- phase?: CodeableConceptOutput;
1363
- primaryPurposeType?: CodeableConceptOutput;
1364
- principalInvestigator?: ReferenceOutput;
1365
- protocol?: Array<ReferenceOutput>;
1366
- reasonStopped?: CodeableConceptOutput;
1367
- resourceType: "ResearchStudy";
1368
- site?: Array<ReferenceOutput>;
1369
- sponsor?: ReferenceOutput;
1370
- status: ResearchStudyStatusCodeTypeOutput;
1371
- title?: string;
1372
- }
1373
-
1374
- // @public
1375
- export type ResearchStudyStatusCodeType = string;
1376
-
1377
- // @public
1378
- export type ResearchStudyStatusCodeTypeOutput = string;
1379
-
1380
- // @public
1381
- export interface Resource extends Record<string, unknown> {
1382
- id?: string;
1383
- implicitRules?: string;
1384
- language?: string;
1385
- meta?: Meta;
1386
- resourceType: string;
1387
- }
1388
-
1389
- // @public
1390
- export interface ResourceOutput extends Record<string, any> {
1391
- id?: string;
1392
- implicitRules?: string;
1393
- language?: string;
1394
- meta?: MetaOutput;
1395
- resourceType: string;
1396
- }
1397
-
1398
- // @public
1399
- export interface Routes {
1400
- (path: "/radiology-insights/jobs/{id}", id: string): GetJob;
1401
- }
1402
-
1403
- // @public
1404
- export interface SampledData extends Element {
1405
- data?: string;
1406
- dimensions: number;
1407
- factor?: number;
1408
- lowerLimit?: number;
1409
- origin: Quantity;
1410
- period: number;
1411
- upperLimit?: number;
1412
- }
1413
-
1414
- // @public
1415
- export interface SampledDataOutput extends ElementOutput {
1416
- data?: string;
1417
- dimensions: number;
1418
- factor?: number;
1419
- lowerLimit?: number;
1420
- origin: QuantityOutput;
1421
- period: number;
1422
- upperLimit?: number;
1423
- }
1424
-
1425
- // @public
1426
- export type ScoringAndAssessmentCategoryType = string;
1427
-
1428
- // @public
1429
- export type ScoringAndAssessmentCategoryTypeOutput = string;
1430
-
1431
- // @public
1432
- export interface ScoringAndAssessmentInference extends RadiologyInsightsInferenceParent {
1433
- category: ScoringAndAssessmentCategoryType;
1434
- categoryDescription: string;
1435
- kind: "scoringAndAssessment";
1436
- rangeValue?: AssessmentValueRange;
1437
- singleValue?: string;
1438
- }
1439
-
1440
- // @public
1441
- export interface ScoringAndAssessmentInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1442
- category: ScoringAndAssessmentCategoryTypeOutput;
1443
- categoryDescription: string;
1444
- kind: "scoringAndAssessment";
1445
- rangeValue?: AssessmentValueRangeOutput;
1446
- singleValue?: string;
1447
- }
1448
-
1449
- // @public
1450
- export interface SexMismatchInference extends RadiologyInsightsInferenceParent {
1451
- kind: "sexMismatch";
1452
- sexIndication: CodeableConcept;
1453
- }
1454
-
1455
- // @public
1456
- export interface SexMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1457
- kind: "sexMismatch";
1458
- sexIndication: CodeableConceptOutput;
1459
- }
1460
-
1461
- // @public
1462
- export interface SimplePollerLike<TState extends OperationState<TResult>, TResult> {
1463
- getOperationState(): TState;
1464
- getResult(): TResult | undefined;
1465
- isDone(): boolean;
1466
- // @deprecated
1467
- isStopped(): boolean;
1468
- onProgress(callback: (state: TState) => void): CancelOnProgress;
1469
- poll(options?: {
1470
- abortSignal?: AbortSignalLike;
1471
- }): Promise<TState>;
1472
- pollUntilDone(pollOptions?: {
1473
- abortSignal?: AbortSignalLike;
1474
- }): Promise<TResult>;
1475
- serialize(): Promise<string>;
1476
- // @deprecated
1477
- stopPolling(): void;
1478
- submitted(): Promise<void>;
1479
- // @deprecated
1480
- toString(): string;
1481
- }
1482
-
1483
- // @public
1484
- export type SpecialtyType = string;
1485
-
1486
- // @public
1487
- export type SpecialtyTypeOutput = string;
1488
-
1489
- // @public
1490
- export interface TimePeriod {
1491
- end?: Date | string;
1492
- start?: Date | string;
1493
- }
1494
-
1495
- // @public
1496
- export interface TimePeriodOutput {
1497
- end?: string;
1498
- start?: string;
1499
- }
1500
-
1501
- // (No @packageDocumentation comment for this package)
1502
-
1503
- ```
1
+ ## API Report File for "@azure-rest/health-insights-radiologyinsights"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import type { AbortSignalLike } from '@azure/abort-controller';
8
+ import type { CancelOnProgress } from '@azure/core-lro';
9
+ import type { Client } from '@azure-rest/core-client';
10
+ import type { ClientOptions } from '@azure-rest/core-client';
11
+ import type { CreateHttpPollerOptions } from '@azure/core-lro';
12
+ import type { ErrorModel } from '@azure-rest/core-client';
13
+ import type { HttpResponse } from '@azure-rest/core-client';
14
+ import type { KeyCredential } from '@azure/core-auth';
15
+ import type { OperationState } from '@azure/core-lro';
16
+ import type { RawHttpHeaders } from '@azure/core-rest-pipeline';
17
+ import type { RequestParameters } from '@azure-rest/core-client';
18
+ import type { StreamableMethod } from '@azure-rest/core-client';
19
+ import type { TokenCredential } from '@azure/core-auth';
20
+
21
+ // @public
22
+ export interface AgeMismatchInference extends RadiologyInsightsInferenceParent {
23
+ kind: "ageMismatch";
24
+ }
25
+
26
+ // @public
27
+ export interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
28
+ kind: "ageMismatch";
29
+ }
30
+
31
+ // @public
32
+ export interface Annotation extends Element {
33
+ authorString?: string;
34
+ text: string;
35
+ time?: string;
36
+ }
37
+
38
+ // @public
39
+ export interface AnnotationOutput extends ElementOutput {
40
+ authorString?: string;
41
+ text: string;
42
+ time?: string;
43
+ }
44
+
45
+ // @public
46
+ export interface AssessmentValueRange {
47
+ maximum: string;
48
+ minimum: string;
49
+ }
50
+
51
+ // @public
52
+ export interface AssessmentValueRangeOutput {
53
+ maximum: string;
54
+ minimum: string;
55
+ }
56
+
57
+ // @public
58
+ export type AzureHealthInsightsClient = Client & {
59
+ path: Routes;
60
+ };
61
+
62
+ // @public
63
+ export interface AzureHealthInsightsClientOptions extends ClientOptions {
64
+ apiVersion?: string;
65
+ }
66
+
67
+ // @public
68
+ export type ClinicalDocumentType = string;
69
+
70
+ // @public
71
+ export type ClinicalDocumentTypeOutput = string;
72
+
73
+ // @public
74
+ export interface CodeableConcept extends Element {
75
+ coding?: Array<Coding>;
76
+ text?: string;
77
+ }
78
+
79
+ // @public
80
+ export interface CodeableConceptOutput extends ElementOutput {
81
+ coding?: Array<CodingOutput>;
82
+ text?: string;
83
+ }
84
+
85
+ // @public
86
+ export interface Coding extends Element {
87
+ code?: string;
88
+ display?: string;
89
+ system?: string;
90
+ version?: string;
91
+ }
92
+
93
+ // @public
94
+ export interface CodingOutput extends ElementOutput {
95
+ code?: string;
96
+ display?: string;
97
+ system?: string;
98
+ version?: string;
99
+ }
100
+
101
+ // @public
102
+ export interface CompleteOrderDiscrepancyInference extends RadiologyInsightsInferenceParent {
103
+ kind: "completeOrderDiscrepancy";
104
+ missingBodyPartMeasurements?: Array<CodeableConcept>;
105
+ missingBodyParts?: Array<CodeableConcept>;
106
+ orderType: CodeableConcept;
107
+ }
108
+
109
+ // @public
110
+ export interface CompleteOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
111
+ kind: "completeOrderDiscrepancy";
112
+ missingBodyPartMeasurements?: Array<CodeableConceptOutput>;
113
+ missingBodyParts?: Array<CodeableConceptOutput>;
114
+ orderType: CodeableConceptOutput;
115
+ }
116
+
117
+ // @public
118
+ export interface Condition extends DomainResourceParent {
119
+ abatementAge?: Quantity;
120
+ abatementDateTime?: string;
121
+ abatementPeriod?: Period;
122
+ abatementRange?: Range;
123
+ abatementString?: string;
124
+ bodySite?: Array<CodeableConcept>;
125
+ category?: Array<CodeableConcept>;
126
+ clinicalStatus?: CodeableConcept;
127
+ code?: CodeableConcept;
128
+ encounter?: Reference;
129
+ identifier?: Array<Identifier>;
130
+ note?: Array<Annotation>;
131
+ onsetAge?: Quantity;
132
+ onsetDateTime?: string;
133
+ onsetPeriod?: Period;
134
+ onsetRange?: Range;
135
+ onsetString?: string;
136
+ recordedDate?: string;
137
+ resourceType: "Condition";
138
+ severity?: CodeableConcept;
139
+ stage?: Array<ConditionStage>;
140
+ verificationStatus?: CodeableConcept;
141
+ }
142
+
143
+ // @public
144
+ export interface ConditionOutput extends DomainResourceOutputParent {
145
+ abatementAge?: QuantityOutput;
146
+ abatementDateTime?: string;
147
+ abatementPeriod?: PeriodOutput;
148
+ abatementRange?: RangeOutput;
149
+ abatementString?: string;
150
+ bodySite?: Array<CodeableConceptOutput>;
151
+ category?: Array<CodeableConceptOutput>;
152
+ clinicalStatus?: CodeableConceptOutput;
153
+ code?: CodeableConceptOutput;
154
+ encounter?: ReferenceOutput;
155
+ identifier?: Array<IdentifierOutput>;
156
+ note?: Array<AnnotationOutput>;
157
+ onsetAge?: QuantityOutput;
158
+ onsetDateTime?: string;
159
+ onsetPeriod?: PeriodOutput;
160
+ onsetRange?: RangeOutput;
161
+ onsetString?: string;
162
+ recordedDate?: string;
163
+ resourceType: "Condition";
164
+ severity?: CodeableConceptOutput;
165
+ stage?: Array<ConditionStageOutput>;
166
+ verificationStatus?: CodeableConceptOutput;
167
+ }
168
+
169
+ // @public
170
+ export interface ConditionStage {
171
+ summary?: CodeableConcept;
172
+ type?: CodeableConcept;
173
+ }
174
+
175
+ // @public
176
+ export interface ConditionStageOutput {
177
+ summary?: CodeableConceptOutput;
178
+ type?: CodeableConceptOutput;
179
+ }
180
+
181
+ // @public
182
+ export interface ContactDetail extends Element {
183
+ name?: string;
184
+ telecom?: Array<ContactPoint>;
185
+ }
186
+
187
+ // @public
188
+ export interface ContactDetailOutput extends ElementOutput {
189
+ name?: string;
190
+ telecom?: Array<ContactPointOutput>;
191
+ }
192
+
193
+ // @public
194
+ export interface ContactPoint {
195
+ period?: Period;
196
+ rank?: number;
197
+ system?: ContactPointSystem;
198
+ use?: ContactPointUse;
199
+ value?: string;
200
+ }
201
+
202
+ // @public
203
+ export interface ContactPointOutput {
204
+ period?: PeriodOutput;
205
+ rank?: number;
206
+ system?: ContactPointSystemOutput;
207
+ use?: ContactPointUseOutput;
208
+ value?: string;
209
+ }
210
+
211
+ // @public
212
+ export type ContactPointSystem = string;
213
+
214
+ // @public
215
+ export type ContactPointSystemOutput = string;
216
+
217
+ // @public
218
+ export type ContactPointUse = string;
219
+
220
+ // @public
221
+ export type ContactPointUseOutput = string;
222
+
223
+ // @public
224
+ function createClient(endpointParam: string, credentials: TokenCredential | KeyCredential, { apiVersion, ...options }?: AzureHealthInsightsClientOptions): AzureHealthInsightsClient;
225
+ export default createClient;
226
+
227
+ // @public
228
+ export interface CreateJob200Headers {
229
+ "operation-location": string;
230
+ "x-ms-request-id"?: string;
231
+ }
232
+
233
+ // @public
234
+ export interface CreateJob200Response extends HttpResponse {
235
+ body: RadiologyInsightsJobOutput;
236
+ headers: RawHttpHeaders & CreateJob200Headers;
237
+ status: "200";
238
+ }
239
+
240
+ // @public
241
+ export interface CreateJob201Headers {
242
+ "operation-location": string;
243
+ "x-ms-request-id"?: string;
244
+ }
245
+
246
+ // @public
247
+ export interface CreateJob201Response extends HttpResponse {
248
+ body: RadiologyInsightsJobOutput;
249
+ headers: RawHttpHeaders & CreateJob201Headers;
250
+ status: "201";
251
+ }
252
+
253
+ // @public
254
+ export interface CreateJobBodyParam {
255
+ body: RadiologyInsightsJob;
256
+ }
257
+
258
+ // @public
259
+ export interface CreateJobDefaultHeaders {
260
+ "x-ms-error-code"?: string;
261
+ "x-ms-request-id"?: string;
262
+ }
263
+
264
+ // @public
265
+ export interface CreateJobDefaultResponse extends HttpResponse {
266
+ body: HealthInsightsErrorResponseOutput;
267
+ headers: RawHttpHeaders & CreateJobDefaultHeaders;
268
+ status: string;
269
+ }
270
+
271
+ // @public
272
+ export interface CreateJobExpandQueryParam {
273
+ explode: true;
274
+ style: "form";
275
+ value: string[];
276
+ }
277
+
278
+ // @public
279
+ export interface CreateJobLogicalResponse extends HttpResponse {
280
+ body: RadiologyInsightsJobOutput;
281
+ status: "200";
282
+ }
283
+
284
+ // @public
285
+ export type CreateJobParameters = CreateJobQueryParam & CreateJobBodyParam & RequestParameters;
286
+
287
+ // @public
288
+ export interface CreateJobQueryParam {
289
+ queryParameters?: CreateJobQueryParamProperties;
290
+ }
291
+
292
+ // @public
293
+ export interface CreateJobQueryParamProperties {
294
+ expand?: CreateJobExpandQueryParam;
295
+ }
296
+
297
+ // @public
298
+ export interface CriticalResult {
299
+ description: string;
300
+ finding?: Observation;
301
+ }
302
+
303
+ // @public
304
+ export interface CriticalResultInference extends RadiologyInsightsInferenceParent {
305
+ kind: "criticalResult";
306
+ result: CriticalResult;
307
+ }
308
+
309
+ // @public
310
+ export interface CriticalResultInferenceOutput extends RadiologyInsightsInferenceOutputParent {
311
+ kind: "criticalResult";
312
+ result: CriticalResultOutput;
313
+ }
314
+
315
+ // @public
316
+ export interface CriticalResultOutput {
317
+ description: string;
318
+ finding?: ObservationOutput;
319
+ }
320
+
321
+ // @public
322
+ export interface DocumentAdministrativeMetadata {
323
+ encounterId?: string;
324
+ orderedProcedures?: Array<OrderedProcedure>;
325
+ }
326
+
327
+ // @public
328
+ export interface DocumentAdministrativeMetadataOutput {
329
+ encounterId?: string;
330
+ orderedProcedures?: Array<OrderedProcedureOutput>;
331
+ }
332
+
333
+ // @public
334
+ export interface DocumentAuthor {
335
+ fullName?: string;
336
+ id?: string;
337
+ }
338
+
339
+ // @public
340
+ export interface DocumentAuthorOutput {
341
+ fullName?: string;
342
+ id?: string;
343
+ }
344
+
345
+ // @public
346
+ export interface DocumentContent {
347
+ sourceType: DocumentContentSourceType;
348
+ value: string;
349
+ }
350
+
351
+ // @public
352
+ export interface DocumentContentOutput {
353
+ sourceType: DocumentContentSourceTypeOutput;
354
+ value: string;
355
+ }
356
+
357
+ // @public
358
+ export type DocumentContentSourceType = string;
359
+
360
+ // @public
361
+ export type DocumentContentSourceTypeOutput = string;
362
+
363
+ // @public
364
+ export type DocumentType = string;
365
+
366
+ // @public
367
+ export type DocumentTypeOutput = string;
368
+
369
+ // @public
370
+ export type DomainResource = DomainResourceParent | Observation | Condition | ResearchStudy;
371
+
372
+ // @public
373
+ export type DomainResourceOutput = DomainResourceOutputParent | ObservationOutput | ConditionOutput | ResearchStudyOutput;
374
+
375
+ // @public
376
+ export interface DomainResourceOutputParent extends ResourceOutput {
377
+ contained?: Array<ResourceOutput>;
378
+ extension?: Array<ExtensionOutput>;
379
+ modifierExtension?: Array<ExtensionOutput>;
380
+ resourceType: string;
381
+ text?: NarrativeOutput;
382
+ }
383
+
384
+ // @public
385
+ export interface DomainResourceParent extends Resource {
386
+ contained?: Array<Resource>;
387
+ extension?: Array<Extension>;
388
+ modifierExtension?: Array<Extension>;
389
+ resourceType: string;
390
+ text?: Narrative;
391
+ }
392
+
393
+ // @public
394
+ export interface Element {
395
+ extension?: Array<Extension>;
396
+ id?: string;
397
+ }
398
+
399
+ // @public
400
+ export interface ElementOutput {
401
+ extension?: Array<ExtensionOutput>;
402
+ id?: string;
403
+ }
404
+
405
+ // @public
406
+ export type EncounterClass = string;
407
+
408
+ // @public
409
+ export type EncounterClassOutput = string;
410
+
411
+ // @public
412
+ export interface Extension extends Element {
413
+ url: string;
414
+ valueBoolean?: boolean;
415
+ valueCodeableConcept?: CodeableConcept;
416
+ valueDateTime?: string;
417
+ valueInteger?: number;
418
+ valuePeriod?: Period;
419
+ valueQuantity?: Quantity;
420
+ valueRange?: Range;
421
+ valueRatio?: Ratio;
422
+ valueReference?: Reference;
423
+ valueSampledData?: SampledData;
424
+ valueString?: string;
425
+ valueTime?: string;
426
+ }
427
+
428
+ // @public
429
+ export interface ExtensionOutput extends ElementOutput {
430
+ url: string;
431
+ valueBoolean?: boolean;
432
+ valueCodeableConcept?: CodeableConceptOutput;
433
+ valueDateTime?: string;
434
+ valueInteger?: number;
435
+ valuePeriod?: PeriodOutput;
436
+ valueQuantity?: QuantityOutput;
437
+ valueRange?: RangeOutput;
438
+ valueRatio?: RatioOutput;
439
+ valueReference?: ReferenceOutput;
440
+ valueSampledData?: SampledDataOutput;
441
+ valueString?: string;
442
+ valueTime?: string;
443
+ }
444
+
445
+ // @public
446
+ export interface FindingInference extends RadiologyInsightsInferenceParent {
447
+ finding: Observation;
448
+ kind: "finding";
449
+ }
450
+
451
+ // @public
452
+ export interface FindingInferenceOutput extends RadiologyInsightsInferenceOutputParent {
453
+ finding: ObservationOutput;
454
+ kind: "finding";
455
+ }
456
+
457
+ // @public
458
+ export interface FindingOptions {
459
+ provideFocusedSentenceEvidence?: boolean;
460
+ }
461
+
462
+ // @public
463
+ export interface FindingOptionsOutput {
464
+ provideFocusedSentenceEvidence?: boolean;
465
+ }
466
+
467
+ // @public
468
+ export interface FollowupCommunicationInference extends RadiologyInsightsInferenceParent {
469
+ communicatedAt?: Date[] | string[];
470
+ kind: "followupCommunication";
471
+ recipient?: MedicalProfessionalType[];
472
+ wasAcknowledged: boolean;
473
+ }
474
+
475
+ // @public
476
+ export interface FollowupCommunicationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
477
+ communicatedAt?: string[];
478
+ kind: "followupCommunication";
479
+ recipient?: MedicalProfessionalTypeOutput[];
480
+ wasAcknowledged: boolean;
481
+ }
482
+
483
+ // @public
484
+ export interface FollowupRecommendationInference extends RadiologyInsightsInferenceParent {
485
+ effectiveAt?: string;
486
+ effectivePeriod?: Period;
487
+ findings?: Array<RecommendationFinding>;
488
+ isConditional: boolean;
489
+ isGuideline: boolean;
490
+ isHedging: boolean;
491
+ isOption: boolean;
492
+ kind: "followupRecommendation";
493
+ recommendedProcedure: ProcedureRecommendation;
494
+ }
495
+
496
+ // @public
497
+ export interface FollowupRecommendationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
498
+ effectiveAt?: string;
499
+ effectivePeriod?: PeriodOutput;
500
+ findings?: Array<RecommendationFindingOutput>;
501
+ isConditional: boolean;
502
+ isGuideline: boolean;
503
+ isHedging: boolean;
504
+ isOption: boolean;
505
+ kind: "followupRecommendation";
506
+ recommendedProcedure: ProcedureRecommendationOutput;
507
+ }
508
+
509
+ // @public
510
+ export interface FollowupRecommendationOptions {
511
+ includeRecommendationsInReferences?: boolean;
512
+ includeRecommendationsWithNoSpecifiedModality?: boolean;
513
+ provideFocusedSentenceEvidence?: boolean;
514
+ }
515
+
516
+ // @public
517
+ export interface FollowupRecommendationOptionsOutput {
518
+ includeRecommendationsInReferences?: boolean;
519
+ includeRecommendationsWithNoSpecifiedModality?: boolean;
520
+ provideFocusedSentenceEvidence?: boolean;
521
+ }
522
+
523
+ // @public
524
+ export interface GenericProcedureRecommendation extends ProcedureRecommendationParent {
525
+ code: CodeableConcept;
526
+ description?: string;
527
+ kind: "genericProcedureRecommendation";
528
+ }
529
+
530
+ // @public
531
+ export interface GenericProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
532
+ code: CodeableConceptOutput;
533
+ description?: string;
534
+ kind: "genericProcedureRecommendation";
535
+ }
536
+
537
+ // @public
538
+ export interface GetJob {
539
+ get(options?: GetJobParameters): StreamableMethod<GetJob200Response | GetJobDefaultResponse>;
540
+ put(options: CreateJobParameters): StreamableMethod<CreateJob200Response | CreateJob201Response | CreateJobDefaultResponse>;
541
+ }
542
+
543
+ // @public
544
+ export interface GetJob200Headers {
545
+ "retry-after"?: number;
546
+ "x-ms-request-id"?: string;
547
+ }
548
+
549
+ // @public
550
+ export interface GetJob200Response extends HttpResponse {
551
+ body: RadiologyInsightsJobOutput;
552
+ headers: RawHttpHeaders & GetJob200Headers;
553
+ status: "200";
554
+ }
555
+
556
+ // @public
557
+ export interface GetJobDefaultHeaders {
558
+ "x-ms-error-code"?: string;
559
+ "x-ms-request-id"?: string;
560
+ }
561
+
562
+ // @public
563
+ export interface GetJobDefaultResponse extends HttpResponse {
564
+ body: HealthInsightsErrorResponseOutput;
565
+ headers: RawHttpHeaders & GetJobDefaultHeaders;
566
+ status: string;
567
+ }
568
+
569
+ // @public
570
+ export interface GetJobExpandQueryParam {
571
+ explode: true;
572
+ style: "form";
573
+ value: string[];
574
+ }
575
+
576
+ // @public
577
+ export type GetJobParameters = GetJobQueryParam & RequestParameters;
578
+
579
+ // @public
580
+ export interface GetJobQueryParam {
581
+ queryParameters?: GetJobQueryParamProperties;
582
+ }
583
+
584
+ // @public
585
+ export interface GetJobQueryParamProperties {
586
+ expand?: GetJobExpandQueryParam;
587
+ }
588
+
589
+ // @public
590
+ export function getLongRunningPoller<TResult extends CreateJobLogicalResponse | CreateJobDefaultResponse>(client: Client, initialResponse: CreateJob200Response | CreateJob201Response | CreateJobDefaultResponse, options?: CreateHttpPollerOptions<TResult, OperationState<TResult>>): Promise<SimplePollerLike<OperationState<TResult>, TResult>>;
591
+
592
+ // @public
593
+ export interface GuidanceInference extends RadiologyInsightsInferenceParent {
594
+ finding: FindingInference;
595
+ identifier: CodeableConcept;
596
+ kind: "guidance";
597
+ missingGuidanceInformation?: string[];
598
+ presentGuidanceInformation?: Array<PresentGuidanceInformation>;
599
+ ranking: GuidanceRankingType;
600
+ recommendationProposals?: Array<FollowupRecommendationInference>;
601
+ }
602
+
603
+ // @public
604
+ export interface GuidanceInferenceOutput extends RadiologyInsightsInferenceOutputParent {
605
+ finding: FindingInferenceOutput;
606
+ identifier: CodeableConceptOutput;
607
+ kind: "guidance";
608
+ missingGuidanceInformation?: string[];
609
+ presentGuidanceInformation?: Array<PresentGuidanceInformationOutput>;
610
+ ranking: GuidanceRankingTypeOutput;
611
+ recommendationProposals?: Array<FollowupRecommendationInferenceOutput>;
612
+ }
613
+
614
+ // @public
615
+ export interface GuidanceOptions {
616
+ showGuidanceInHistory: boolean;
617
+ }
618
+
619
+ // @public
620
+ export interface GuidanceOptionsOutput {
621
+ showGuidanceInHistory: boolean;
622
+ }
623
+
624
+ // @public
625
+ export type GuidanceRankingType = string;
626
+
627
+ // @public
628
+ export type GuidanceRankingTypeOutput = string;
629
+
630
+ // @public
631
+ export interface HealthInsightsErrorResponseOutput {
632
+ error: ErrorModel;
633
+ }
634
+
635
+ // @public
636
+ export interface Identifier extends Element {
637
+ assigner?: Reference;
638
+ period?: Period;
639
+ system?: string;
640
+ type?: CodeableConcept;
641
+ use?: string;
642
+ value?: string;
643
+ }
644
+
645
+ // @public
646
+ export interface IdentifierOutput extends ElementOutput {
647
+ assigner?: ReferenceOutput;
648
+ period?: PeriodOutput;
649
+ system?: string;
650
+ type?: CodeableConceptOutput;
651
+ use?: string;
652
+ value?: string;
653
+ }
654
+
655
+ // @public
656
+ export interface ImagingProcedure {
657
+ anatomy: CodeableConcept;
658
+ contrast?: RadiologyCodeWithTypes;
659
+ laterality?: CodeableConcept;
660
+ modality: CodeableConcept;
661
+ view?: RadiologyCodeWithTypes;
662
+ }
663
+
664
+ // @public
665
+ export interface ImagingProcedureOutput {
666
+ anatomy: CodeableConceptOutput;
667
+ contrast?: RadiologyCodeWithTypesOutput;
668
+ laterality?: CodeableConceptOutput;
669
+ modality: CodeableConceptOutput;
670
+ view?: RadiologyCodeWithTypesOutput;
671
+ }
672
+
673
+ // @public
674
+ export interface ImagingProcedureRecommendation extends ProcedureRecommendationParent {
675
+ imagingProcedures: Array<ImagingProcedure>;
676
+ kind: "imagingProcedureRecommendation";
677
+ procedureCodes?: Array<CodeableConcept>;
678
+ }
679
+
680
+ // @public
681
+ export interface ImagingProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
682
+ imagingProcedures: Array<ImagingProcedureOutput>;
683
+ kind: "imagingProcedureRecommendation";
684
+ procedureCodes?: Array<CodeableConceptOutput>;
685
+ }
686
+
687
+ // @public
688
+ export function isUnexpected(response: GetJob200Response | GetJobDefaultResponse): response is GetJobDefaultResponse;
689
+
690
+ // @public
691
+ export function isUnexpected(response: CreateJob200Response | CreateJob201Response | CreateJobLogicalResponse | CreateJobDefaultResponse): response is CreateJobDefaultResponse;
692
+
693
+ // @public
694
+ export type JobStatus = string;
695
+
696
+ // @public
697
+ export type JobStatusOutput = string;
698
+
699
+ // @public
700
+ export interface LateralityDiscrepancyInference extends RadiologyInsightsInferenceParent {
701
+ discrepancyType: LateralityDiscrepancyType;
702
+ kind: "lateralityDiscrepancy";
703
+ lateralityIndication?: CodeableConcept;
704
+ }
705
+
706
+ // @public
707
+ export interface LateralityDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
708
+ discrepancyType: LateralityDiscrepancyTypeOutput;
709
+ kind: "lateralityDiscrepancy";
710
+ lateralityIndication?: CodeableConceptOutput;
711
+ }
712
+
713
+ // @public
714
+ export type LateralityDiscrepancyType = string;
715
+
716
+ // @public
717
+ export type LateralityDiscrepancyTypeOutput = string;
718
+
719
+ // @public
720
+ export interface LimitedOrderDiscrepancyInference extends RadiologyInsightsInferenceParent {
721
+ kind: "limitedOrderDiscrepancy";
722
+ orderType: CodeableConcept;
723
+ presentBodyPartMeasurements?: Array<CodeableConcept>;
724
+ presentBodyParts?: Array<CodeableConcept>;
725
+ }
726
+
727
+ // @public
728
+ export interface LimitedOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
729
+ kind: "limitedOrderDiscrepancy";
730
+ orderType: CodeableConceptOutput;
731
+ presentBodyPartMeasurements?: Array<CodeableConceptOutput>;
732
+ presentBodyParts?: Array<CodeableConceptOutput>;
733
+ }
734
+
735
+ // @public
736
+ export type MedicalProfessionalType = string;
737
+
738
+ // @public
739
+ export type MedicalProfessionalTypeOutput = string;
740
+
741
+ // @public
742
+ export interface Meta {
743
+ lastUpdated?: string;
744
+ profile?: string[];
745
+ security?: Array<Coding>;
746
+ source?: string;
747
+ tag?: Array<Coding>;
748
+ versionId?: string;
749
+ }
750
+
751
+ // @public
752
+ export interface MetaOutput {
753
+ lastUpdated?: string;
754
+ profile?: string[];
755
+ security?: Array<CodingOutput>;
756
+ source?: string;
757
+ tag?: Array<CodingOutput>;
758
+ versionId?: string;
759
+ }
760
+
761
+ // @public
762
+ export interface Narrative extends Element {
763
+ div: string;
764
+ status: string;
765
+ }
766
+
767
+ // @public
768
+ export interface NarrativeOutput extends ElementOutput {
769
+ div: string;
770
+ status: string;
771
+ }
772
+
773
+ // @public
774
+ export interface Observation extends DomainResourceParent {
775
+ bodySite?: CodeableConcept;
776
+ category?: Array<CodeableConcept>;
777
+ code: CodeableConcept;
778
+ component?: Array<ObservationComponent>;
779
+ dataAbsentReason?: CodeableConcept;
780
+ derivedFrom?: Array<Reference>;
781
+ effectiveDateTime?: string;
782
+ effectiveInstant?: string;
783
+ effectivePeriod?: Period;
784
+ encounter?: Reference;
785
+ hasMember?: Array<Reference>;
786
+ identifier?: Array<Identifier>;
787
+ interpretation?: Array<CodeableConcept>;
788
+ issued?: string;
789
+ method?: CodeableConcept;
790
+ note?: Array<Annotation>;
791
+ referenceRange?: Array<ObservationReferenceRange>;
792
+ resourceType: "Observation";
793
+ status: ObservationStatusCodeType;
794
+ subject?: Reference;
795
+ valueBoolean?: boolean;
796
+ valueCodeableConcept?: CodeableConcept;
797
+ valueDateTime?: string;
798
+ valueInteger?: number;
799
+ valuePeriod?: Period;
800
+ valueQuantity?: Quantity;
801
+ valueRange?: Range;
802
+ valueRatio?: Ratio;
803
+ valueSampledData?: SampledData;
804
+ valueString?: string;
805
+ valueTime?: string;
806
+ }
807
+
808
+ // @public
809
+ export interface ObservationComponent extends Element {
810
+ code: CodeableConcept;
811
+ dataAbsentReason?: CodeableConcept;
812
+ interpretation?: Array<CodeableConcept>;
813
+ referenceRange?: Array<ObservationReferenceRange>;
814
+ valueBoolean?: boolean;
815
+ valueCodeableConcept?: CodeableConcept;
816
+ valueDateTime?: string;
817
+ valueInteger?: number;
818
+ valuePeriod?: Period;
819
+ valueQuantity?: Quantity;
820
+ valueRange?: Range;
821
+ valueRatio?: Ratio;
822
+ valueReference?: Reference;
823
+ valueSampledData?: SampledData;
824
+ valueString?: string;
825
+ valueTime?: string;
826
+ }
827
+
828
+ // @public
829
+ export interface ObservationComponentOutput extends ElementOutput {
830
+ code: CodeableConceptOutput;
831
+ dataAbsentReason?: CodeableConceptOutput;
832
+ interpretation?: Array<CodeableConceptOutput>;
833
+ referenceRange?: Array<ObservationReferenceRangeOutput>;
834
+ valueBoolean?: boolean;
835
+ valueCodeableConcept?: CodeableConceptOutput;
836
+ valueDateTime?: string;
837
+ valueInteger?: number;
838
+ valuePeriod?: PeriodOutput;
839
+ valueQuantity?: QuantityOutput;
840
+ valueRange?: RangeOutput;
841
+ valueRatio?: RatioOutput;
842
+ valueReference?: ReferenceOutput;
843
+ valueSampledData?: SampledDataOutput;
844
+ valueString?: string;
845
+ valueTime?: string;
846
+ }
847
+
848
+ // @public
849
+ export interface ObservationOutput extends DomainResourceOutputParent {
850
+ bodySite?: CodeableConceptOutput;
851
+ category?: Array<CodeableConceptOutput>;
852
+ code: CodeableConceptOutput;
853
+ component?: Array<ObservationComponentOutput>;
854
+ dataAbsentReason?: CodeableConceptOutput;
855
+ derivedFrom?: Array<ReferenceOutput>;
856
+ effectiveDateTime?: string;
857
+ effectiveInstant?: string;
858
+ effectivePeriod?: PeriodOutput;
859
+ encounter?: ReferenceOutput;
860
+ hasMember?: Array<ReferenceOutput>;
861
+ identifier?: Array<IdentifierOutput>;
862
+ interpretation?: Array<CodeableConceptOutput>;
863
+ issued?: string;
864
+ method?: CodeableConceptOutput;
865
+ note?: Array<AnnotationOutput>;
866
+ referenceRange?: Array<ObservationReferenceRangeOutput>;
867
+ resourceType: "Observation";
868
+ status: ObservationStatusCodeTypeOutput;
869
+ subject?: ReferenceOutput;
870
+ valueBoolean?: boolean;
871
+ valueCodeableConcept?: CodeableConceptOutput;
872
+ valueDateTime?: string;
873
+ valueInteger?: number;
874
+ valuePeriod?: PeriodOutput;
875
+ valueQuantity?: QuantityOutput;
876
+ valueRange?: RangeOutput;
877
+ valueRatio?: RatioOutput;
878
+ valueSampledData?: SampledDataOutput;
879
+ valueString?: string;
880
+ valueTime?: string;
881
+ }
882
+
883
+ // @public
884
+ export interface ObservationReferenceRange {
885
+ age?: Range;
886
+ appliesTo?: Array<CodeableConcept>;
887
+ high?: Quantity;
888
+ low?: Quantity;
889
+ text?: string;
890
+ type?: CodeableConcept;
891
+ }
892
+
893
+ // @public
894
+ export interface ObservationReferenceRangeOutput {
895
+ age?: RangeOutput;
896
+ appliesTo?: Array<CodeableConceptOutput>;
897
+ high?: QuantityOutput;
898
+ low?: QuantityOutput;
899
+ text?: string;
900
+ type?: CodeableConceptOutput;
901
+ }
902
+
903
+ // @public
904
+ export type ObservationStatusCodeType = string;
905
+
906
+ // @public
907
+ export type ObservationStatusCodeTypeOutput = string;
908
+
909
+ // @public
910
+ export interface OrderedProcedure {
911
+ code?: CodeableConcept;
912
+ description?: string;
913
+ extension?: Array<Extension>;
914
+ }
915
+
916
+ // @public
917
+ export interface OrderedProcedureOutput {
918
+ code?: CodeableConceptOutput;
919
+ description?: string;
920
+ extension?: Array<ExtensionOutput>;
921
+ }
922
+
923
+ // @public
924
+ export interface PatientDetails {
925
+ birthDate?: string;
926
+ clinicalInfo?: Array<Resource>;
927
+ sex?: PatientSex;
928
+ }
929
+
930
+ // @public
931
+ export interface PatientDetailsOutput {
932
+ birthDate?: string;
933
+ clinicalInfo?: Array<ResourceOutput>;
934
+ sex?: PatientSexOutput;
935
+ }
936
+
937
+ // @public
938
+ export interface PatientDocument {
939
+ administrativeMetadata?: DocumentAdministrativeMetadata;
940
+ authors?: Array<DocumentAuthor>;
941
+ clinicalType?: ClinicalDocumentType;
942
+ content: DocumentContent;
943
+ createdAt?: Date | string;
944
+ id: string;
945
+ language?: string;
946
+ specialtyType?: SpecialtyType;
947
+ type: DocumentType;
948
+ }
949
+
950
+ // @public
951
+ export interface PatientDocumentOutput {
952
+ administrativeMetadata?: DocumentAdministrativeMetadataOutput;
953
+ authors?: Array<DocumentAuthorOutput>;
954
+ clinicalType?: ClinicalDocumentTypeOutput;
955
+ content: DocumentContentOutput;
956
+ createdAt?: string;
957
+ id: string;
958
+ language?: string;
959
+ specialtyType?: SpecialtyTypeOutput;
960
+ type: DocumentTypeOutput;
961
+ }
962
+
963
+ // @public
964
+ export interface PatientEncounter {
965
+ class?: EncounterClass;
966
+ id: string;
967
+ period?: TimePeriod;
968
+ }
969
+
970
+ // @public
971
+ export interface PatientEncounterOutput {
972
+ class?: EncounterClassOutput;
973
+ id: string;
974
+ period?: TimePeriodOutput;
975
+ }
976
+
977
+ // @public
978
+ export interface PatientRecord {
979
+ details?: PatientDetails;
980
+ encounters?: Array<PatientEncounter>;
981
+ id: string;
982
+ patientDocuments?: Array<PatientDocument>;
983
+ }
984
+
985
+ // @public
986
+ export interface PatientRecordOutput {
987
+ details?: PatientDetailsOutput;
988
+ encounters?: Array<PatientEncounterOutput>;
989
+ id: string;
990
+ patientDocuments?: Array<PatientDocumentOutput>;
991
+ }
992
+
993
+ // @public
994
+ export type PatientSex = string;
995
+
996
+ // @public
997
+ export type PatientSexOutput = string;
998
+
999
+ // @public
1000
+ export interface Period extends Element {
1001
+ end?: string;
1002
+ start?: string;
1003
+ }
1004
+
1005
+ // @public
1006
+ export interface PeriodOutput extends ElementOutput {
1007
+ end?: string;
1008
+ start?: string;
1009
+ }
1010
+
1011
+ // @public
1012
+ export interface PresentGuidanceInformation {
1013
+ extension?: Array<Extension>;
1014
+ maximumDiameterAsInText?: Quantity;
1015
+ presentGuidanceItem: string;
1016
+ presentGuidanceValues?: string[];
1017
+ sizes?: Array<Observation>;
1018
+ }
1019
+
1020
+ // @public
1021
+ export interface PresentGuidanceInformationOutput {
1022
+ extension?: Array<ExtensionOutput>;
1023
+ maximumDiameterAsInText?: QuantityOutput;
1024
+ presentGuidanceItem: string;
1025
+ presentGuidanceValues?: string[];
1026
+ sizes?: Array<ObservationOutput>;
1027
+ }
1028
+
1029
+ // @public
1030
+ export type ProcedureRecommendation = ProcedureRecommendationParent | GenericProcedureRecommendation | ImagingProcedureRecommendation;
1031
+
1032
+ // @public
1033
+ export type ProcedureRecommendationOutput = ProcedureRecommendationOutputParent | GenericProcedureRecommendationOutput | ImagingProcedureRecommendationOutput;
1034
+
1035
+ // @public
1036
+ export interface ProcedureRecommendationOutputParent {
1037
+ extension?: Array<ExtensionOutput>;
1038
+ kind: string;
1039
+ }
1040
+
1041
+ // @public
1042
+ export interface ProcedureRecommendationParent {
1043
+ extension?: Array<Extension>;
1044
+ kind: string;
1045
+ }
1046
+
1047
+ // @public
1048
+ export type QualityMeasureComplianceType = string;
1049
+
1050
+ // @public
1051
+ export type QualityMeasureComplianceTypeOutput = string;
1052
+
1053
+ // @public
1054
+ export interface QualityMeasureInference extends RadiologyInsightsInferenceParent {
1055
+ complianceType: QualityMeasureComplianceType;
1056
+ kind: "qualityMeasure";
1057
+ qualityCriteria?: string[];
1058
+ qualityMeasureDenominator: string;
1059
+ }
1060
+
1061
+ // @public
1062
+ export interface QualityMeasureInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1063
+ complianceType: QualityMeasureComplianceTypeOutput;
1064
+ kind: "qualityMeasure";
1065
+ qualityCriteria?: string[];
1066
+ qualityMeasureDenominator: string;
1067
+ }
1068
+
1069
+ // @public
1070
+ export interface QualityMeasureOptions {
1071
+ measureTypes: QualityMeasureType[];
1072
+ }
1073
+
1074
+ // @public
1075
+ export interface QualityMeasureOptionsOutput {
1076
+ measureTypes: QualityMeasureTypeOutput[];
1077
+ }
1078
+
1079
+ // @public
1080
+ export type QualityMeasureType = string;
1081
+
1082
+ // @public
1083
+ export type QualityMeasureTypeOutput = string;
1084
+
1085
+ // @public
1086
+ export interface Quantity extends Element {
1087
+ code?: string;
1088
+ comparator?: string;
1089
+ system?: string;
1090
+ unit?: string;
1091
+ value?: number;
1092
+ }
1093
+
1094
+ // @public
1095
+ export interface QuantityOutput extends ElementOutput {
1096
+ code?: string;
1097
+ comparator?: string;
1098
+ system?: string;
1099
+ unit?: string;
1100
+ value?: number;
1101
+ }
1102
+
1103
+ // @public
1104
+ export interface RadiologyCodeWithTypes {
1105
+ code: CodeableConcept;
1106
+ types: Array<CodeableConcept>;
1107
+ }
1108
+
1109
+ // @public
1110
+ export interface RadiologyCodeWithTypesOutput {
1111
+ code: CodeableConceptOutput;
1112
+ types: Array<CodeableConceptOutput>;
1113
+ }
1114
+
1115
+ // @public
1116
+ export interface RadiologyInsightsData {
1117
+ configuration?: RadiologyInsightsModelConfiguration;
1118
+ patients: Array<PatientRecord>;
1119
+ }
1120
+
1121
+ // @public
1122
+ export interface RadiologyInsightsDataOutput {
1123
+ configuration?: RadiologyInsightsModelConfigurationOutput;
1124
+ patients: Array<PatientRecordOutput>;
1125
+ }
1126
+
1127
+ // @public
1128
+ export type RadiologyInsightsInference = RadiologyInsightsInferenceParent | AgeMismatchInference | SexMismatchInference | LateralityDiscrepancyInference | CompleteOrderDiscrepancyInference | LimitedOrderDiscrepancyInference | FindingInference | CriticalResultInference | RadiologyProcedureInference | FollowupRecommendationInference | FollowupCommunicationInference | ScoringAndAssessmentInference | GuidanceInference | QualityMeasureInference;
1129
+
1130
+ // @public
1131
+ export interface RadiologyInsightsInferenceOptions {
1132
+ findingOptions?: FindingOptions;
1133
+ followupRecommendationOptions?: FollowupRecommendationOptions;
1134
+ guidanceOptions?: GuidanceOptions;
1135
+ qualityMeasureOptions?: QualityMeasureOptions;
1136
+ }
1137
+
1138
+ // @public
1139
+ export interface RadiologyInsightsInferenceOptionsOutput {
1140
+ findingOptions?: FindingOptionsOutput;
1141
+ followupRecommendationOptions?: FollowupRecommendationOptionsOutput;
1142
+ guidanceOptions?: GuidanceOptionsOutput;
1143
+ qualityMeasureOptions?: QualityMeasureOptionsOutput;
1144
+ }
1145
+
1146
+ // @public
1147
+ export type RadiologyInsightsInferenceOutput = RadiologyInsightsInferenceOutputParent | AgeMismatchInferenceOutput | SexMismatchInferenceOutput | LateralityDiscrepancyInferenceOutput | CompleteOrderDiscrepancyInferenceOutput | LimitedOrderDiscrepancyInferenceOutput | FindingInferenceOutput | CriticalResultInferenceOutput | RadiologyProcedureInferenceOutput | FollowupRecommendationInferenceOutput | FollowupCommunicationInferenceOutput | ScoringAndAssessmentInferenceOutput | GuidanceInferenceOutput | QualityMeasureInferenceOutput;
1148
+
1149
+ // @public
1150
+ export interface RadiologyInsightsInferenceOutputParent {
1151
+ extension?: Array<ExtensionOutput>;
1152
+ kind: string;
1153
+ }
1154
+
1155
+ // @public
1156
+ export interface RadiologyInsightsInferenceParent {
1157
+ extension?: Array<Extension>;
1158
+ kind: string;
1159
+ }
1160
+
1161
+ // @public
1162
+ export interface RadiologyInsightsInferenceResult {
1163
+ modelVersion: string;
1164
+ patientResults: Array<RadiologyInsightsPatientResult>;
1165
+ }
1166
+
1167
+ // @public
1168
+ export interface RadiologyInsightsInferenceResultOutput {
1169
+ modelVersion: string;
1170
+ patientResults: Array<RadiologyInsightsPatientResultOutput>;
1171
+ }
1172
+
1173
+ // @public
1174
+ export type RadiologyInsightsInferenceType = string;
1175
+
1176
+ // @public
1177
+ export type RadiologyInsightsInferenceTypeOutput = string;
1178
+
1179
+ // @public
1180
+ export interface RadiologyInsightsJob {
1181
+ jobData?: RadiologyInsightsData;
1182
+ }
1183
+
1184
+ // @public
1185
+ export interface RadiologyInsightsJobOutput {
1186
+ readonly createdAt?: string;
1187
+ readonly error?: ErrorModel;
1188
+ readonly expiresAt?: string;
1189
+ readonly id: string;
1190
+ jobData?: RadiologyInsightsDataOutput;
1191
+ readonly result?: RadiologyInsightsInferenceResultOutput;
1192
+ readonly status: JobStatusOutput;
1193
+ readonly updatedAt?: string;
1194
+ }
1195
+
1196
+ // @public
1197
+ export interface RadiologyInsightsModelConfiguration {
1198
+ includeEvidence?: boolean;
1199
+ inferenceOptions?: RadiologyInsightsInferenceOptions;
1200
+ inferenceTypes?: RadiologyInsightsInferenceType[];
1201
+ locale?: string;
1202
+ verbose?: boolean;
1203
+ }
1204
+
1205
+ // @public
1206
+ export interface RadiologyInsightsModelConfigurationOutput {
1207
+ includeEvidence?: boolean;
1208
+ inferenceOptions?: RadiologyInsightsInferenceOptionsOutput;
1209
+ inferenceTypes?: RadiologyInsightsInferenceTypeOutput[];
1210
+ locale?: string;
1211
+ verbose?: boolean;
1212
+ }
1213
+
1214
+ // @public
1215
+ export interface RadiologyInsightsPatientResult {
1216
+ inferences: Array<RadiologyInsightsInference>;
1217
+ patientId: string;
1218
+ }
1219
+
1220
+ // @public
1221
+ export interface RadiologyInsightsPatientResultOutput {
1222
+ inferences: Array<RadiologyInsightsInferenceOutput>;
1223
+ patientId: string;
1224
+ }
1225
+
1226
+ // @public
1227
+ export interface RadiologyProcedureInference extends RadiologyInsightsInferenceParent {
1228
+ imagingProcedures: Array<ImagingProcedure>;
1229
+ kind: "radiologyProcedure";
1230
+ orderedProcedure: OrderedProcedure;
1231
+ procedureCodes?: Array<CodeableConcept>;
1232
+ }
1233
+
1234
+ // @public
1235
+ export interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1236
+ imagingProcedures: Array<ImagingProcedureOutput>;
1237
+ kind: "radiologyProcedure";
1238
+ orderedProcedure: OrderedProcedureOutput;
1239
+ procedureCodes?: Array<CodeableConceptOutput>;
1240
+ }
1241
+
1242
+ // @public
1243
+ export interface Range extends Element {
1244
+ high?: Quantity;
1245
+ low?: Quantity;
1246
+ }
1247
+
1248
+ // @public
1249
+ export interface RangeOutput extends ElementOutput {
1250
+ high?: QuantityOutput;
1251
+ low?: QuantityOutput;
1252
+ }
1253
+
1254
+ // @public
1255
+ export interface Ratio extends Element {
1256
+ denominator?: Quantity;
1257
+ numerator?: Quantity;
1258
+ }
1259
+
1260
+ // @public
1261
+ export interface RatioOutput extends ElementOutput {
1262
+ denominator?: QuantityOutput;
1263
+ numerator?: QuantityOutput;
1264
+ }
1265
+
1266
+ // @public
1267
+ export interface RecommendationFinding {
1268
+ criticalFinding?: CriticalResult;
1269
+ extension?: Array<Extension>;
1270
+ finding?: Observation;
1271
+ recommendationFindingStatus: RecommendationFindingStatusType;
1272
+ }
1273
+
1274
+ // @public
1275
+ export interface RecommendationFindingOutput {
1276
+ criticalFinding?: CriticalResultOutput;
1277
+ extension?: Array<ExtensionOutput>;
1278
+ finding?: ObservationOutput;
1279
+ recommendationFindingStatus: RecommendationFindingStatusTypeOutput;
1280
+ }
1281
+
1282
+ // @public
1283
+ export type RecommendationFindingStatusType = string;
1284
+
1285
+ // @public
1286
+ export type RecommendationFindingStatusTypeOutput = string;
1287
+
1288
+ // @public
1289
+ export interface Reference extends Element {
1290
+ display?: string;
1291
+ identifier?: Identifier;
1292
+ reference?: string;
1293
+ type?: string;
1294
+ }
1295
+
1296
+ // @public
1297
+ export interface ReferenceOutput extends ElementOutput {
1298
+ display?: string;
1299
+ identifier?: IdentifierOutput;
1300
+ reference?: string;
1301
+ type?: string;
1302
+ }
1303
+
1304
+ // @public
1305
+ export interface ResearchStudy extends DomainResourceParent {
1306
+ arm?: {
1307
+ name: string;
1308
+ type?: CodeableConcept;
1309
+ description?: string;
1310
+ }[];
1311
+ category?: Array<CodeableConcept>;
1312
+ condition?: Array<CodeableConcept>;
1313
+ contact?: Array<ContactDetail>;
1314
+ description?: string;
1315
+ enrollment?: Array<Reference>;
1316
+ focus?: Array<CodeableConcept>;
1317
+ identifier?: Array<Identifier>;
1318
+ keyword?: Array<CodeableConcept>;
1319
+ location?: Array<CodeableConcept>;
1320
+ note?: Array<Annotation>;
1321
+ objective?: {
1322
+ name: string;
1323
+ type?: CodeableConcept;
1324
+ }[];
1325
+ partOf?: Array<Reference>;
1326
+ period?: Period;
1327
+ phase?: CodeableConcept;
1328
+ primaryPurposeType?: CodeableConcept;
1329
+ principalInvestigator?: Reference;
1330
+ protocol?: Array<Reference>;
1331
+ reasonStopped?: CodeableConcept;
1332
+ resourceType: "ResearchStudy";
1333
+ site?: Array<Reference>;
1334
+ sponsor?: Reference;
1335
+ status: ResearchStudyStatusCodeType;
1336
+ title?: string;
1337
+ }
1338
+
1339
+ // @public
1340
+ export interface ResearchStudyOutput extends DomainResourceOutputParent {
1341
+ arm?: {
1342
+ name: string;
1343
+ type?: CodeableConceptOutput;
1344
+ description?: string;
1345
+ }[];
1346
+ category?: Array<CodeableConceptOutput>;
1347
+ condition?: Array<CodeableConceptOutput>;
1348
+ contact?: Array<ContactDetailOutput>;
1349
+ description?: string;
1350
+ enrollment?: Array<ReferenceOutput>;
1351
+ focus?: Array<CodeableConceptOutput>;
1352
+ identifier?: Array<IdentifierOutput>;
1353
+ keyword?: Array<CodeableConceptOutput>;
1354
+ location?: Array<CodeableConceptOutput>;
1355
+ note?: Array<AnnotationOutput>;
1356
+ objective?: {
1357
+ name: string;
1358
+ type?: CodeableConceptOutput;
1359
+ }[];
1360
+ partOf?: Array<ReferenceOutput>;
1361
+ period?: PeriodOutput;
1362
+ phase?: CodeableConceptOutput;
1363
+ primaryPurposeType?: CodeableConceptOutput;
1364
+ principalInvestigator?: ReferenceOutput;
1365
+ protocol?: Array<ReferenceOutput>;
1366
+ reasonStopped?: CodeableConceptOutput;
1367
+ resourceType: "ResearchStudy";
1368
+ site?: Array<ReferenceOutput>;
1369
+ sponsor?: ReferenceOutput;
1370
+ status: ResearchStudyStatusCodeTypeOutput;
1371
+ title?: string;
1372
+ }
1373
+
1374
+ // @public
1375
+ export type ResearchStudyStatusCodeType = string;
1376
+
1377
+ // @public
1378
+ export type ResearchStudyStatusCodeTypeOutput = string;
1379
+
1380
+ // @public
1381
+ export interface Resource extends Record<string, unknown> {
1382
+ id?: string;
1383
+ implicitRules?: string;
1384
+ language?: string;
1385
+ meta?: Meta;
1386
+ resourceType: string;
1387
+ }
1388
+
1389
+ // @public
1390
+ export interface ResourceOutput extends Record<string, any> {
1391
+ id?: string;
1392
+ implicitRules?: string;
1393
+ language?: string;
1394
+ meta?: MetaOutput;
1395
+ resourceType: string;
1396
+ }
1397
+
1398
+ // @public
1399
+ export interface Routes {
1400
+ (path: "/radiology-insights/jobs/{id}", id: string): GetJob;
1401
+ }
1402
+
1403
+ // @public
1404
+ export interface SampledData extends Element {
1405
+ data?: string;
1406
+ dimensions: number;
1407
+ factor?: number;
1408
+ lowerLimit?: number;
1409
+ origin: Quantity;
1410
+ period: number;
1411
+ upperLimit?: number;
1412
+ }
1413
+
1414
+ // @public
1415
+ export interface SampledDataOutput extends ElementOutput {
1416
+ data?: string;
1417
+ dimensions: number;
1418
+ factor?: number;
1419
+ lowerLimit?: number;
1420
+ origin: QuantityOutput;
1421
+ period: number;
1422
+ upperLimit?: number;
1423
+ }
1424
+
1425
+ // @public
1426
+ export type ScoringAndAssessmentCategoryType = string;
1427
+
1428
+ // @public
1429
+ export type ScoringAndAssessmentCategoryTypeOutput = string;
1430
+
1431
+ // @public
1432
+ export interface ScoringAndAssessmentInference extends RadiologyInsightsInferenceParent {
1433
+ category: ScoringAndAssessmentCategoryType;
1434
+ categoryDescription: string;
1435
+ kind: "scoringAndAssessment";
1436
+ rangeValue?: AssessmentValueRange;
1437
+ singleValue?: string;
1438
+ }
1439
+
1440
+ // @public
1441
+ export interface ScoringAndAssessmentInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1442
+ category: ScoringAndAssessmentCategoryTypeOutput;
1443
+ categoryDescription: string;
1444
+ kind: "scoringAndAssessment";
1445
+ rangeValue?: AssessmentValueRangeOutput;
1446
+ singleValue?: string;
1447
+ }
1448
+
1449
+ // @public
1450
+ export interface SexMismatchInference extends RadiologyInsightsInferenceParent {
1451
+ kind: "sexMismatch";
1452
+ sexIndication: CodeableConcept;
1453
+ }
1454
+
1455
+ // @public
1456
+ export interface SexMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
1457
+ kind: "sexMismatch";
1458
+ sexIndication: CodeableConceptOutput;
1459
+ }
1460
+
1461
+ // @public
1462
+ export interface SimplePollerLike<TState extends OperationState<TResult>, TResult> {
1463
+ getOperationState(): TState;
1464
+ getResult(): TResult | undefined;
1465
+ isDone(): boolean;
1466
+ // @deprecated
1467
+ isStopped(): boolean;
1468
+ onProgress(callback: (state: TState) => void): CancelOnProgress;
1469
+ poll(options?: {
1470
+ abortSignal?: AbortSignalLike;
1471
+ }): Promise<TState>;
1472
+ pollUntilDone(pollOptions?: {
1473
+ abortSignal?: AbortSignalLike;
1474
+ }): Promise<TResult>;
1475
+ serialize(): Promise<string>;
1476
+ // @deprecated
1477
+ stopPolling(): void;
1478
+ submitted(): Promise<void>;
1479
+ // @deprecated
1480
+ toString(): string;
1481
+ }
1482
+
1483
+ // @public
1484
+ export type SpecialtyType = string;
1485
+
1486
+ // @public
1487
+ export type SpecialtyTypeOutput = string;
1488
+
1489
+ // @public
1490
+ export interface TimePeriod {
1491
+ end?: Date | string;
1492
+ start?: Date | string;
1493
+ }
1494
+
1495
+ // @public
1496
+ export interface TimePeriodOutput {
1497
+ end?: string;
1498
+ start?: string;
1499
+ }
1500
+
1501
+ // (No @packageDocumentation comment for this package)
1502
+
1503
+ ```