@azure-rest/health-insights-radiologyinsights 1.0.0-alpha.20240306.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +275 -0
- package/dist/index.js +159 -0
- package/dist/index.js.map +1 -0
- package/dist-esm/src/azureHealthInsightsClient.js +28 -0
- package/dist-esm/src/azureHealthInsightsClient.js.map +1 -0
- package/dist-esm/src/clientDefinitions.js +4 -0
- package/dist-esm/src/clientDefinitions.js.map +1 -0
- package/dist-esm/src/index.js +13 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/isUnexpected.js +72 -0
- package/dist-esm/src/isUnexpected.js.map +1 -0
- package/dist-esm/src/logger.js +5 -0
- package/dist-esm/src/logger.js.map +1 -0
- package/dist-esm/src/models.js +4 -0
- package/dist-esm/src/models.js.map +1 -0
- package/dist-esm/src/outputModels.js +4 -0
- package/dist-esm/src/outputModels.js.map +1 -0
- package/dist-esm/src/parameters.js +4 -0
- package/dist-esm/src/parameters.js.map +1 -0
- package/dist-esm/src/pollingHelper.js +43 -0
- package/dist-esm/src/pollingHelper.js.map +1 -0
- package/dist-esm/src/responses.js +4 -0
- package/dist-esm/src/responses.js.map +1 -0
- package/package.json +125 -0
- package/review/health-insights-radiologyinsights.api.md +1093 -0
|
@@ -0,0 +1,1093 @@
|
|
|
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 { Client } from '@azure-rest/core-client';
|
|
8
|
+
import { ClientOptions } from '@azure-rest/core-client';
|
|
9
|
+
import { CreateHttpPollerOptions } from '@azure/core-lro';
|
|
10
|
+
import { ErrorModel } from '@azure-rest/core-client';
|
|
11
|
+
import { ErrorResponse } from '@azure-rest/core-client';
|
|
12
|
+
import { HttpResponse } from '@azure-rest/core-client';
|
|
13
|
+
import { KeyCredential } from '@azure/core-auth';
|
|
14
|
+
import { OperationState } from '@azure/core-lro';
|
|
15
|
+
import { RawHttpHeaders } from '@azure/core-rest-pipeline';
|
|
16
|
+
import { RawHttpHeadersInput } from '@azure/core-rest-pipeline';
|
|
17
|
+
import { RequestParameters } from '@azure-rest/core-client';
|
|
18
|
+
import { SimplePollerLike } from '@azure/core-lro';
|
|
19
|
+
import { StreamableMethod } from '@azure-rest/core-client';
|
|
20
|
+
|
|
21
|
+
// @public
|
|
22
|
+
export interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
23
|
+
kind: "ageMismatch";
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// @public
|
|
27
|
+
export interface Annotation extends Element {
|
|
28
|
+
authorString?: string;
|
|
29
|
+
text: string;
|
|
30
|
+
time?: string;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// @public
|
|
34
|
+
export interface AnnotationOutput extends ElementOutput {
|
|
35
|
+
authorString?: string;
|
|
36
|
+
text: string;
|
|
37
|
+
time?: string;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// @public (undocumented)
|
|
41
|
+
export type AzureHealthInsightsClient = Client & {
|
|
42
|
+
path: Routes;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
// @public
|
|
46
|
+
export interface CodeableConcept extends Element {
|
|
47
|
+
coding?: Array<Coding>;
|
|
48
|
+
text?: string;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// @public
|
|
52
|
+
export interface CodeableConceptOutput extends ElementOutput {
|
|
53
|
+
coding?: Array<CodingOutput>;
|
|
54
|
+
text?: string;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// @public
|
|
58
|
+
export interface Coding extends Element {
|
|
59
|
+
code?: string;
|
|
60
|
+
display?: string;
|
|
61
|
+
system?: string;
|
|
62
|
+
version?: string;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// @public
|
|
66
|
+
export interface CodingOutput extends ElementOutput {
|
|
67
|
+
code?: string;
|
|
68
|
+
display?: string;
|
|
69
|
+
system?: string;
|
|
70
|
+
version?: string;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// @public
|
|
74
|
+
export interface CompleteOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
75
|
+
kind: "completeOrderDiscrepancy";
|
|
76
|
+
missingBodyPartMeasurements?: Array<CodeableConceptOutput>;
|
|
77
|
+
missingBodyParts?: Array<CodeableConceptOutput>;
|
|
78
|
+
orderType: CodeableConceptOutput;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// @public
|
|
82
|
+
export interface Condition extends DomainResourceParent {
|
|
83
|
+
abatementAge?: Quantity;
|
|
84
|
+
abatementDateTime?: string;
|
|
85
|
+
abatementPeriod?: Period;
|
|
86
|
+
abatementRange?: Range;
|
|
87
|
+
abatementString?: string;
|
|
88
|
+
bodySite?: Array<CodeableConcept>;
|
|
89
|
+
category?: Array<CodeableConcept>;
|
|
90
|
+
clinicalStatus?: CodeableConcept;
|
|
91
|
+
code?: CodeableConcept;
|
|
92
|
+
encounter?: Reference;
|
|
93
|
+
identifier?: Array<Identifier>;
|
|
94
|
+
note?: Array<Annotation>;
|
|
95
|
+
onsetAge?: Quantity;
|
|
96
|
+
onsetDateTime?: string;
|
|
97
|
+
onsetPeriod?: Period;
|
|
98
|
+
onsetRange?: Range;
|
|
99
|
+
onsetString?: string;
|
|
100
|
+
recordedDate?: string;
|
|
101
|
+
resourceType: "Condition";
|
|
102
|
+
severity?: CodeableConcept;
|
|
103
|
+
stage?: Array<ConditionStage>;
|
|
104
|
+
verificationStatus?: CodeableConcept;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// @public
|
|
108
|
+
export interface ConditionOutput extends DomainResourceOutputParent {
|
|
109
|
+
abatementAge?: QuantityOutput;
|
|
110
|
+
abatementDateTime?: string;
|
|
111
|
+
abatementPeriod?: PeriodOutput;
|
|
112
|
+
abatementRange?: RangeOutput;
|
|
113
|
+
abatementString?: string;
|
|
114
|
+
bodySite?: Array<CodeableConceptOutput>;
|
|
115
|
+
category?: Array<CodeableConceptOutput>;
|
|
116
|
+
clinicalStatus?: CodeableConceptOutput;
|
|
117
|
+
code?: CodeableConceptOutput;
|
|
118
|
+
encounter?: ReferenceOutput;
|
|
119
|
+
identifier?: Array<IdentifierOutput>;
|
|
120
|
+
note?: Array<AnnotationOutput>;
|
|
121
|
+
onsetAge?: QuantityOutput;
|
|
122
|
+
onsetDateTime?: string;
|
|
123
|
+
onsetPeriod?: PeriodOutput;
|
|
124
|
+
onsetRange?: RangeOutput;
|
|
125
|
+
onsetString?: string;
|
|
126
|
+
recordedDate?: string;
|
|
127
|
+
resourceType: "Condition";
|
|
128
|
+
severity?: CodeableConceptOutput;
|
|
129
|
+
stage?: Array<ConditionStageOutput>;
|
|
130
|
+
verificationStatus?: CodeableConceptOutput;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export interface ConditionStage {
|
|
135
|
+
summary?: CodeableConcept;
|
|
136
|
+
type?: CodeableConcept;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// @public
|
|
140
|
+
export interface ConditionStageOutput {
|
|
141
|
+
summary?: CodeableConceptOutput;
|
|
142
|
+
type?: CodeableConceptOutput;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// @public
|
|
146
|
+
export interface ContactDetail extends Element {
|
|
147
|
+
name?: string;
|
|
148
|
+
telecom?: Array<ContactPoint>;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// @public
|
|
152
|
+
export interface ContactDetailOutput extends ElementOutput {
|
|
153
|
+
name?: string;
|
|
154
|
+
telecom?: Array<ContactPointOutput>;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// @public
|
|
158
|
+
export interface ContactPoint {
|
|
159
|
+
period?: Period;
|
|
160
|
+
rank?: number;
|
|
161
|
+
system?: string;
|
|
162
|
+
use?: string;
|
|
163
|
+
value?: string;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
// @public
|
|
167
|
+
export interface ContactPointOutput {
|
|
168
|
+
period?: PeriodOutput;
|
|
169
|
+
rank?: number;
|
|
170
|
+
system?: string;
|
|
171
|
+
use?: string;
|
|
172
|
+
value?: string;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// @public
|
|
176
|
+
function createClient(endpoint: string, credentials: KeyCredential, options?: ClientOptions): AzureHealthInsightsClient;
|
|
177
|
+
export default createClient;
|
|
178
|
+
|
|
179
|
+
// @public (undocumented)
|
|
180
|
+
export interface CreateJob {
|
|
181
|
+
post(options?: CreateJobParameters): StreamableMethod<CreateJob202Response | CreateJobDefaultResponse>;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
// @public (undocumented)
|
|
185
|
+
export interface CreateJob202Headers {
|
|
186
|
+
"operation-location": string;
|
|
187
|
+
"repeatability-result"?: RepeatabilityResultOutput;
|
|
188
|
+
"retry-after"?: number;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
// @public
|
|
192
|
+
export interface CreateJob202Response extends HttpResponse {
|
|
193
|
+
// (undocumented)
|
|
194
|
+
body: HealthInsightsOperationStatusOutput;
|
|
195
|
+
// (undocumented)
|
|
196
|
+
headers: RawHttpHeaders & CreateJob202Headers;
|
|
197
|
+
// (undocumented)
|
|
198
|
+
status: "202";
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
// @public (undocumented)
|
|
202
|
+
export interface CreateJobBodyParam {
|
|
203
|
+
// (undocumented)
|
|
204
|
+
body?: RadiologyInsightsData;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// @public (undocumented)
|
|
208
|
+
export interface CreateJobDefaultHeaders {
|
|
209
|
+
"x-ms-error-code"?: string;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
// @public (undocumented)
|
|
213
|
+
export interface CreateJobDefaultResponse extends HttpResponse {
|
|
214
|
+
// (undocumented)
|
|
215
|
+
body: ErrorResponse;
|
|
216
|
+
// (undocumented)
|
|
217
|
+
headers: RawHttpHeaders & CreateJobDefaultHeaders;
|
|
218
|
+
// (undocumented)
|
|
219
|
+
status: string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
// @public (undocumented)
|
|
223
|
+
export interface CreateJobHeaderParam {
|
|
224
|
+
// (undocumented)
|
|
225
|
+
headers?: RawHttpHeadersInput & CreateJobHeaders;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// @public (undocumented)
|
|
229
|
+
export interface CreateJobHeaders {
|
|
230
|
+
"Repeatability-First-Sent"?: string;
|
|
231
|
+
"Repeatability-Request-ID"?: string;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// @public
|
|
235
|
+
export interface CreateJobLogicalResponse extends HttpResponse {
|
|
236
|
+
// (undocumented)
|
|
237
|
+
body: HealthInsightsOperationStatusOutput;
|
|
238
|
+
// (undocumented)
|
|
239
|
+
status: "200";
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// @public (undocumented)
|
|
243
|
+
export type CreateJobParameters = CreateJobHeaderParam & CreateJobBodyParam & RequestParameters;
|
|
244
|
+
|
|
245
|
+
// @public
|
|
246
|
+
export interface CriticalResultInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
247
|
+
kind: "criticalResult";
|
|
248
|
+
result: CriticalResultOutput;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
// @public
|
|
252
|
+
export interface CriticalResultOutput {
|
|
253
|
+
description: string;
|
|
254
|
+
finding?: ObservationOutput;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
// @public
|
|
258
|
+
export interface DocumentAdministrativeMetadata {
|
|
259
|
+
encounterId?: string;
|
|
260
|
+
orderedProcedures?: Array<OrderedProcedure>;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// @public
|
|
264
|
+
export interface DocumentAdministrativeMetadataOutput {
|
|
265
|
+
encounterId?: string;
|
|
266
|
+
orderedProcedures?: Array<OrderedProcedureOutput>;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
// @public
|
|
270
|
+
export interface DocumentAuthor {
|
|
271
|
+
fullName?: string;
|
|
272
|
+
id?: string;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
// @public
|
|
276
|
+
export interface DocumentAuthorOutput {
|
|
277
|
+
fullName?: string;
|
|
278
|
+
id?: string;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
// @public
|
|
282
|
+
export interface DocumentContent {
|
|
283
|
+
sourceType: string;
|
|
284
|
+
value: string;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// @public
|
|
288
|
+
export interface DocumentContentOutput {
|
|
289
|
+
sourceType: string;
|
|
290
|
+
value: string;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
// @public
|
|
294
|
+
export type DomainResource = DomainResourceParent | Observation | Condition | ResearchStudy;
|
|
295
|
+
|
|
296
|
+
// @public
|
|
297
|
+
export type DomainResourceOutput = DomainResourceOutputParent | ObservationOutput | ConditionOutput | ResearchStudyOutput;
|
|
298
|
+
|
|
299
|
+
// @public
|
|
300
|
+
export interface DomainResourceOutputParent extends ResourceOutput {
|
|
301
|
+
contained?: Array<ResourceOutput>;
|
|
302
|
+
extension?: Array<ExtensionOutput>;
|
|
303
|
+
modifierExtension?: Array<ExtensionOutput>;
|
|
304
|
+
// (undocumented)
|
|
305
|
+
resourceType: string;
|
|
306
|
+
text?: NarrativeOutput;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
// @public
|
|
310
|
+
export interface DomainResourceParent extends Resource {
|
|
311
|
+
contained?: Array<Resource>;
|
|
312
|
+
extension?: Array<Extension>;
|
|
313
|
+
modifierExtension?: Array<Extension>;
|
|
314
|
+
// (undocumented)
|
|
315
|
+
resourceType: string;
|
|
316
|
+
text?: Narrative;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
// @public
|
|
320
|
+
export interface Element {
|
|
321
|
+
extension?: Array<Extension>;
|
|
322
|
+
id?: string;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
// @public
|
|
326
|
+
export interface ElementOutput {
|
|
327
|
+
extension?: Array<ExtensionOutput>;
|
|
328
|
+
id?: string;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
// @public
|
|
332
|
+
export interface Encounter {
|
|
333
|
+
class?: string;
|
|
334
|
+
id: string;
|
|
335
|
+
period?: TimePeriod;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
// @public
|
|
339
|
+
export interface EncounterOutput {
|
|
340
|
+
class?: string;
|
|
341
|
+
id: string;
|
|
342
|
+
period?: TimePeriodOutput;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
// @public
|
|
346
|
+
export interface Extension extends Element {
|
|
347
|
+
url: string;
|
|
348
|
+
valueBoolean?: boolean;
|
|
349
|
+
valueCodeableConcept?: CodeableConcept;
|
|
350
|
+
valueDateTime?: string;
|
|
351
|
+
valueInteger?: number;
|
|
352
|
+
valuePeriod?: Period;
|
|
353
|
+
valueQuantity?: Quantity;
|
|
354
|
+
valueRange?: Range;
|
|
355
|
+
valueRatio?: Ratio;
|
|
356
|
+
valueReference?: Reference;
|
|
357
|
+
valueSampledData?: SampledData;
|
|
358
|
+
valueString?: string;
|
|
359
|
+
valueTime?: Date | string;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
// @public
|
|
363
|
+
export interface ExtensionOutput extends ElementOutput {
|
|
364
|
+
url: string;
|
|
365
|
+
valueBoolean?: boolean;
|
|
366
|
+
valueCodeableConcept?: CodeableConceptOutput;
|
|
367
|
+
valueDateTime?: string;
|
|
368
|
+
valueInteger?: number;
|
|
369
|
+
valuePeriod?: PeriodOutput;
|
|
370
|
+
valueQuantity?: QuantityOutput;
|
|
371
|
+
valueRange?: RangeOutput;
|
|
372
|
+
valueRatio?: RatioOutput;
|
|
373
|
+
valueReference?: ReferenceOutput;
|
|
374
|
+
valueSampledData?: SampledDataOutput;
|
|
375
|
+
valueString?: string;
|
|
376
|
+
valueTime?: string;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
// @public
|
|
380
|
+
export interface FindingInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
381
|
+
finding: ObservationOutput;
|
|
382
|
+
kind: "finding";
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
// @public
|
|
386
|
+
export interface FindingOptions {
|
|
387
|
+
provideFocusedSentenceEvidence?: boolean;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
// @public
|
|
391
|
+
export interface FindingOptionsOutput {
|
|
392
|
+
provideFocusedSentenceEvidence?: boolean;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
// @public
|
|
396
|
+
export interface FollowupCommunicationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
397
|
+
dateTime?: string[];
|
|
398
|
+
kind: "followupCommunication";
|
|
399
|
+
recipient?: string[];
|
|
400
|
+
wasAcknowledged: boolean;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// @public
|
|
404
|
+
export interface FollowupRecommendationInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
405
|
+
effectiveDateTime?: string;
|
|
406
|
+
effectivePeriod?: PeriodOutput;
|
|
407
|
+
findings?: Array<RecommendationFindingOutput>;
|
|
408
|
+
isConditional: boolean;
|
|
409
|
+
isGuideline: boolean;
|
|
410
|
+
isHedging: boolean;
|
|
411
|
+
isOption: boolean;
|
|
412
|
+
kind: "followupRecommendation";
|
|
413
|
+
recommendedProcedure: ProcedureRecommendationOutput;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
// @public
|
|
417
|
+
export interface FollowupRecommendationOptions {
|
|
418
|
+
includeRecommendationsInReferences?: boolean;
|
|
419
|
+
includeRecommendationsWithNoSpecifiedModality?: boolean;
|
|
420
|
+
provideFocusedSentenceEvidence?: boolean;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
// @public
|
|
424
|
+
export interface FollowupRecommendationOptionsOutput {
|
|
425
|
+
includeRecommendationsInReferences?: boolean;
|
|
426
|
+
includeRecommendationsWithNoSpecifiedModality?: boolean;
|
|
427
|
+
provideFocusedSentenceEvidence?: boolean;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
// @public
|
|
431
|
+
export interface GenericProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
|
|
432
|
+
code: CodeableConceptOutput;
|
|
433
|
+
description?: string;
|
|
434
|
+
kind: "genericProcedureRecommendation";
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
// @public (undocumented)
|
|
438
|
+
export interface GetJob {
|
|
439
|
+
get(options?: GetJobParameters): StreamableMethod<GetJob200Response | GetJobDefaultResponse>;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
// @public (undocumented)
|
|
443
|
+
export interface GetJob200Headers {
|
|
444
|
+
"retry-after"?: number;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
// @public
|
|
448
|
+
export interface GetJob200Response extends HttpResponse {
|
|
449
|
+
// (undocumented)
|
|
450
|
+
body: RadiologyInsightsResultOutput;
|
|
451
|
+
// (undocumented)
|
|
452
|
+
headers: RawHttpHeaders & GetJob200Headers;
|
|
453
|
+
// (undocumented)
|
|
454
|
+
status: "200";
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
// @public (undocumented)
|
|
458
|
+
export interface GetJobDefaultHeaders {
|
|
459
|
+
"x-ms-error-code"?: string;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
// @public (undocumented)
|
|
463
|
+
export interface GetJobDefaultResponse extends HttpResponse {
|
|
464
|
+
// (undocumented)
|
|
465
|
+
body: ErrorResponse;
|
|
466
|
+
// (undocumented)
|
|
467
|
+
headers: RawHttpHeaders & GetJobDefaultHeaders;
|
|
468
|
+
// (undocumented)
|
|
469
|
+
status: string;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
// @public (undocumented)
|
|
473
|
+
export type GetJobParameters = RequestParameters;
|
|
474
|
+
|
|
475
|
+
// @public
|
|
476
|
+
export function getLongRunningPoller<TResult extends CreateJobLogicalResponse | CreateJobDefaultResponse>(client: Client, initialResponse: CreateJob202Response | CreateJobDefaultResponse, options?: CreateHttpPollerOptions<TResult, OperationState<TResult>>): Promise<SimplePollerLike<OperationState<TResult>, TResult>>;
|
|
477
|
+
|
|
478
|
+
// @public
|
|
479
|
+
export interface HealthInsightsOperationStatusOutput {
|
|
480
|
+
readonly createdDateTime?: string;
|
|
481
|
+
error?: ErrorModel;
|
|
482
|
+
readonly expirationDateTime?: string;
|
|
483
|
+
readonly id: string;
|
|
484
|
+
readonly lastUpdateDateTime?: string;
|
|
485
|
+
result?: RadiologyInsightsInferenceResultOutput;
|
|
486
|
+
readonly status: string;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
// @public
|
|
490
|
+
export interface Identifier extends Element {
|
|
491
|
+
assigner?: Reference;
|
|
492
|
+
period?: Period;
|
|
493
|
+
system?: string;
|
|
494
|
+
type?: CodeableConcept;
|
|
495
|
+
use?: string;
|
|
496
|
+
value?: string;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
// @public
|
|
500
|
+
export interface IdentifierOutput extends ElementOutput {
|
|
501
|
+
assigner?: ReferenceOutput;
|
|
502
|
+
period?: PeriodOutput;
|
|
503
|
+
system?: string;
|
|
504
|
+
type?: CodeableConceptOutput;
|
|
505
|
+
use?: string;
|
|
506
|
+
value?: string;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
// @public
|
|
510
|
+
export interface ImagingProcedureOutput {
|
|
511
|
+
anatomy: CodeableConceptOutput;
|
|
512
|
+
contrast?: RadiologyCodeWithTypesOutput;
|
|
513
|
+
laterality?: CodeableConceptOutput;
|
|
514
|
+
modality: CodeableConceptOutput;
|
|
515
|
+
view?: RadiologyCodeWithTypesOutput;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
// @public
|
|
519
|
+
export interface ImagingProcedureRecommendationOutput extends ProcedureRecommendationOutputParent {
|
|
520
|
+
imagingProcedures: Array<ImagingProcedureOutput>;
|
|
521
|
+
kind: "imagingProcedureRecommendation";
|
|
522
|
+
procedureCodes?: Array<CodeableConceptOutput>;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
// @public (undocumented)
|
|
526
|
+
export function isUnexpected(response: GetJob200Response | GetJobDefaultResponse): response is GetJobDefaultResponse;
|
|
527
|
+
|
|
528
|
+
// @public (undocumented)
|
|
529
|
+
export function isUnexpected(response: CreateJob202Response | CreateJobLogicalResponse | CreateJobDefaultResponse): response is CreateJobDefaultResponse;
|
|
530
|
+
|
|
531
|
+
// @public
|
|
532
|
+
export interface LateralityDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
533
|
+
discrepancyType: string;
|
|
534
|
+
kind: "lateralityDiscrepancy";
|
|
535
|
+
lateralityIndication?: CodeableConceptOutput;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
// @public
|
|
539
|
+
export interface LimitedOrderDiscrepancyInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
540
|
+
kind: "limitedOrderDiscrepancy";
|
|
541
|
+
orderType: CodeableConceptOutput;
|
|
542
|
+
presentBodyPartMeasurements?: Array<CodeableConceptOutput>;
|
|
543
|
+
presentBodyParts?: Array<CodeableConceptOutput>;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
// @public
|
|
547
|
+
export interface Meta {
|
|
548
|
+
lastUpdated?: string;
|
|
549
|
+
profile?: string[];
|
|
550
|
+
security?: Array<Coding>;
|
|
551
|
+
source?: string;
|
|
552
|
+
tag?: Array<Coding>;
|
|
553
|
+
versionId?: string;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
// @public
|
|
557
|
+
export interface MetaOutput {
|
|
558
|
+
lastUpdated?: string;
|
|
559
|
+
profile?: string[];
|
|
560
|
+
security?: Array<CodingOutput>;
|
|
561
|
+
source?: string;
|
|
562
|
+
tag?: Array<CodingOutput>;
|
|
563
|
+
versionId?: string;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
// @public
|
|
567
|
+
export interface Narrative extends Element {
|
|
568
|
+
div: string;
|
|
569
|
+
status: string;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
// @public
|
|
573
|
+
export interface NarrativeOutput extends ElementOutput {
|
|
574
|
+
div: string;
|
|
575
|
+
status: string;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// @public
|
|
579
|
+
export interface Observation extends DomainResourceParent {
|
|
580
|
+
bodySite?: CodeableConcept;
|
|
581
|
+
category?: Array<CodeableConcept>;
|
|
582
|
+
code: CodeableConcept;
|
|
583
|
+
component?: Array<ObservationComponent>;
|
|
584
|
+
dataAbsentReason?: CodeableConcept;
|
|
585
|
+
derivedFrom?: Array<Reference>;
|
|
586
|
+
effectiveDateTime?: string;
|
|
587
|
+
effectiveInstant?: string;
|
|
588
|
+
effectivePeriod?: Period;
|
|
589
|
+
encounter?: Reference;
|
|
590
|
+
hasMember?: Array<Reference>;
|
|
591
|
+
identifier?: Array<Identifier>;
|
|
592
|
+
interpretation?: Array<CodeableConcept>;
|
|
593
|
+
issued?: string;
|
|
594
|
+
method?: CodeableConcept;
|
|
595
|
+
note?: Array<Annotation>;
|
|
596
|
+
referenceRange?: Array<ObservationReferenceRange>;
|
|
597
|
+
resourceType: "Observation";
|
|
598
|
+
status: string;
|
|
599
|
+
subject?: Reference;
|
|
600
|
+
valueBoolean?: boolean;
|
|
601
|
+
valueCodeableConcept?: CodeableConcept;
|
|
602
|
+
valueDateTime?: string;
|
|
603
|
+
valueInteger?: number;
|
|
604
|
+
valuePeriod?: Period;
|
|
605
|
+
valueQuantity?: Quantity;
|
|
606
|
+
valueRange?: Range;
|
|
607
|
+
valueRatio?: Ratio;
|
|
608
|
+
valueSampledData?: SampledData;
|
|
609
|
+
valueString?: string;
|
|
610
|
+
valueTime?: Date | string;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
// @public
|
|
614
|
+
export interface ObservationComponent extends Element {
|
|
615
|
+
code: CodeableConcept;
|
|
616
|
+
dataAbsentReason?: CodeableConcept;
|
|
617
|
+
interpretation?: Array<CodeableConcept>;
|
|
618
|
+
referenceRange?: Array<ObservationReferenceRange>;
|
|
619
|
+
valueBoolean?: boolean;
|
|
620
|
+
valueCodeableConcept?: CodeableConcept;
|
|
621
|
+
valueDateTime?: string;
|
|
622
|
+
valueInteger?: number;
|
|
623
|
+
valuePeriod?: Period;
|
|
624
|
+
valueQuantity?: Quantity;
|
|
625
|
+
valueRange?: Range;
|
|
626
|
+
valueRatio?: Ratio;
|
|
627
|
+
valueReference?: Reference;
|
|
628
|
+
valueSampledData?: SampledData;
|
|
629
|
+
valueString?: string;
|
|
630
|
+
valueTime?: Date | string;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
// @public
|
|
634
|
+
export interface ObservationComponentOutput extends ElementOutput {
|
|
635
|
+
code: CodeableConceptOutput;
|
|
636
|
+
dataAbsentReason?: CodeableConceptOutput;
|
|
637
|
+
interpretation?: Array<CodeableConceptOutput>;
|
|
638
|
+
referenceRange?: Array<ObservationReferenceRangeOutput>;
|
|
639
|
+
valueBoolean?: boolean;
|
|
640
|
+
valueCodeableConcept?: CodeableConceptOutput;
|
|
641
|
+
valueDateTime?: string;
|
|
642
|
+
valueInteger?: number;
|
|
643
|
+
valuePeriod?: PeriodOutput;
|
|
644
|
+
valueQuantity?: QuantityOutput;
|
|
645
|
+
valueRange?: RangeOutput;
|
|
646
|
+
valueRatio?: RatioOutput;
|
|
647
|
+
valueReference?: ReferenceOutput;
|
|
648
|
+
valueSampledData?: SampledDataOutput;
|
|
649
|
+
valueString?: string;
|
|
650
|
+
valueTime?: string;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
// @public
|
|
654
|
+
export interface ObservationOutput extends DomainResourceOutputParent {
|
|
655
|
+
bodySite?: CodeableConceptOutput;
|
|
656
|
+
category?: Array<CodeableConceptOutput>;
|
|
657
|
+
code: CodeableConceptOutput;
|
|
658
|
+
component?: Array<ObservationComponentOutput>;
|
|
659
|
+
dataAbsentReason?: CodeableConceptOutput;
|
|
660
|
+
derivedFrom?: Array<ReferenceOutput>;
|
|
661
|
+
effectiveDateTime?: string;
|
|
662
|
+
effectiveInstant?: string;
|
|
663
|
+
effectivePeriod?: PeriodOutput;
|
|
664
|
+
encounter?: ReferenceOutput;
|
|
665
|
+
hasMember?: Array<ReferenceOutput>;
|
|
666
|
+
identifier?: Array<IdentifierOutput>;
|
|
667
|
+
interpretation?: Array<CodeableConceptOutput>;
|
|
668
|
+
issued?: string;
|
|
669
|
+
method?: CodeableConceptOutput;
|
|
670
|
+
note?: Array<AnnotationOutput>;
|
|
671
|
+
referenceRange?: Array<ObservationReferenceRangeOutput>;
|
|
672
|
+
resourceType: "Observation";
|
|
673
|
+
status: string;
|
|
674
|
+
subject?: ReferenceOutput;
|
|
675
|
+
valueBoolean?: boolean;
|
|
676
|
+
valueCodeableConcept?: CodeableConceptOutput;
|
|
677
|
+
valueDateTime?: string;
|
|
678
|
+
valueInteger?: number;
|
|
679
|
+
valuePeriod?: PeriodOutput;
|
|
680
|
+
valueQuantity?: QuantityOutput;
|
|
681
|
+
valueRange?: RangeOutput;
|
|
682
|
+
valueRatio?: RatioOutput;
|
|
683
|
+
valueSampledData?: SampledDataOutput;
|
|
684
|
+
valueString?: string;
|
|
685
|
+
valueTime?: string;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
// @public
|
|
689
|
+
export interface ObservationReferenceRange {
|
|
690
|
+
age?: Range;
|
|
691
|
+
appliesTo?: Array<CodeableConcept>;
|
|
692
|
+
high?: Quantity;
|
|
693
|
+
low?: Quantity;
|
|
694
|
+
text?: string;
|
|
695
|
+
type?: CodeableConcept;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
// @public
|
|
699
|
+
export interface ObservationReferenceRangeOutput {
|
|
700
|
+
age?: RangeOutput;
|
|
701
|
+
appliesTo?: Array<CodeableConceptOutput>;
|
|
702
|
+
high?: QuantityOutput;
|
|
703
|
+
low?: QuantityOutput;
|
|
704
|
+
text?: string;
|
|
705
|
+
type?: CodeableConceptOutput;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
// @public
|
|
709
|
+
export interface OrderedProcedure {
|
|
710
|
+
code?: CodeableConcept;
|
|
711
|
+
description?: string;
|
|
712
|
+
extension?: Array<Extension>;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
// @public
|
|
716
|
+
export interface OrderedProcedureOutput {
|
|
717
|
+
code?: CodeableConceptOutput;
|
|
718
|
+
description?: string;
|
|
719
|
+
extension?: Array<ExtensionOutput>;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
// @public
|
|
723
|
+
export interface PatientDocument {
|
|
724
|
+
administrativeMetadata?: DocumentAdministrativeMetadata;
|
|
725
|
+
authors?: Array<DocumentAuthor>;
|
|
726
|
+
clinicalType?: string;
|
|
727
|
+
content: DocumentContent;
|
|
728
|
+
createdDateTime?: Date | string;
|
|
729
|
+
id: string;
|
|
730
|
+
language?: string;
|
|
731
|
+
specialtyType?: string;
|
|
732
|
+
type: string;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
// @public
|
|
736
|
+
export interface PatientDocumentOutput {
|
|
737
|
+
administrativeMetadata?: DocumentAdministrativeMetadataOutput;
|
|
738
|
+
authors?: Array<DocumentAuthorOutput>;
|
|
739
|
+
clinicalType?: string;
|
|
740
|
+
content: DocumentContentOutput;
|
|
741
|
+
createdDateTime?: string;
|
|
742
|
+
id: string;
|
|
743
|
+
language?: string;
|
|
744
|
+
specialtyType?: string;
|
|
745
|
+
type: string;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
// @public
|
|
749
|
+
export interface PatientInfo {
|
|
750
|
+
birthDate?: Date | string;
|
|
751
|
+
clinicalInfo?: Array<Resource>;
|
|
752
|
+
sex?: string;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
// @public
|
|
756
|
+
export interface PatientInfoOutput {
|
|
757
|
+
birthDate?: string;
|
|
758
|
+
clinicalInfo?: Array<ResourceOutput>;
|
|
759
|
+
sex?: string;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
// @public
|
|
763
|
+
export interface PatientRecord {
|
|
764
|
+
encounters?: Array<Encounter>;
|
|
765
|
+
id: string;
|
|
766
|
+
info?: PatientInfo;
|
|
767
|
+
patientDocuments?: Array<PatientDocument>;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
// @public
|
|
771
|
+
export interface PatientRecordOutput {
|
|
772
|
+
encounters?: Array<EncounterOutput>;
|
|
773
|
+
id: string;
|
|
774
|
+
info?: PatientInfoOutput;
|
|
775
|
+
patientDocuments?: Array<PatientDocumentOutput>;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
// @public
|
|
779
|
+
export interface Period extends Element {
|
|
780
|
+
end?: string;
|
|
781
|
+
start?: string;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
// @public
|
|
785
|
+
export interface PeriodOutput extends ElementOutput {
|
|
786
|
+
end?: string;
|
|
787
|
+
start?: string;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
// @public
|
|
791
|
+
export type ProcedureRecommendationOutput = ProcedureRecommendationOutputParent | GenericProcedureRecommendationOutput | ImagingProcedureRecommendationOutput;
|
|
792
|
+
|
|
793
|
+
// @public
|
|
794
|
+
export interface ProcedureRecommendationOutputParent {
|
|
795
|
+
// (undocumented)
|
|
796
|
+
kind: string;
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
// @public
|
|
800
|
+
export interface Quantity extends Element {
|
|
801
|
+
code?: string;
|
|
802
|
+
comparator?: string;
|
|
803
|
+
system?: string;
|
|
804
|
+
unit?: string;
|
|
805
|
+
value?: number;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
// @public
|
|
809
|
+
export interface QuantityOutput extends ElementOutput {
|
|
810
|
+
code?: string;
|
|
811
|
+
comparator?: string;
|
|
812
|
+
system?: string;
|
|
813
|
+
unit?: string;
|
|
814
|
+
value?: number;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
// @public
|
|
818
|
+
export interface RadiologyCodeWithTypesOutput {
|
|
819
|
+
code: CodeableConceptOutput;
|
|
820
|
+
types: Array<CodeableConceptOutput>;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
// @public
|
|
824
|
+
export interface RadiologyInsightsData {
|
|
825
|
+
configuration?: RadiologyInsightsModelConfiguration;
|
|
826
|
+
patients: Array<PatientRecord>;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
// @public
|
|
830
|
+
export interface RadiologyInsightsDataOutput {
|
|
831
|
+
configuration?: RadiologyInsightsModelConfigurationOutput;
|
|
832
|
+
patients: Array<PatientRecordOutput>;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
// @public
|
|
836
|
+
export interface RadiologyInsightsInferenceOptions {
|
|
837
|
+
findingOptions?: FindingOptions;
|
|
838
|
+
followupRecommendationOptions?: FollowupRecommendationOptions;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
// @public
|
|
842
|
+
export interface RadiologyInsightsInferenceOptionsOutput {
|
|
843
|
+
findingOptions?: FindingOptionsOutput;
|
|
844
|
+
followupRecommendationOptions?: FollowupRecommendationOptionsOutput;
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
// @public
|
|
848
|
+
export type RadiologyInsightsInferenceOutput = RadiologyInsightsInferenceOutputParent | AgeMismatchInferenceOutput | SexMismatchInferenceOutput | LateralityDiscrepancyInferenceOutput | CompleteOrderDiscrepancyInferenceOutput | LimitedOrderDiscrepancyInferenceOutput | FindingInferenceOutput | CriticalResultInferenceOutput | RadiologyProcedureInferenceOutput | FollowupRecommendationInferenceOutput | FollowupCommunicationInferenceOutput;
|
|
849
|
+
|
|
850
|
+
// @public
|
|
851
|
+
export interface RadiologyInsightsInferenceOutputParent {
|
|
852
|
+
extension?: Array<ExtensionOutput>;
|
|
853
|
+
// (undocumented)
|
|
854
|
+
kind: string;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
// @public
|
|
858
|
+
export interface RadiologyInsightsInferenceResultOutput {
|
|
859
|
+
modelVersion: string;
|
|
860
|
+
patientResults: Array<RadiologyInsightsPatientResultOutput>;
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
// @public
|
|
864
|
+
export interface RadiologyInsightsModelConfiguration {
|
|
865
|
+
includeEvidence?: boolean;
|
|
866
|
+
inferenceOptions?: RadiologyInsightsInferenceOptions;
|
|
867
|
+
inferenceTypes?: string[];
|
|
868
|
+
locale?: string;
|
|
869
|
+
verbose?: boolean;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// @public
|
|
873
|
+
export interface RadiologyInsightsModelConfigurationOutput {
|
|
874
|
+
includeEvidence?: boolean;
|
|
875
|
+
inferenceOptions?: RadiologyInsightsInferenceOptionsOutput;
|
|
876
|
+
inferenceTypes?: string[];
|
|
877
|
+
locale?: string;
|
|
878
|
+
verbose?: boolean;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
// @public
|
|
882
|
+
export interface RadiologyInsightsPatientResultOutput {
|
|
883
|
+
inferences: Array<RadiologyInsightsInferenceOutput>;
|
|
884
|
+
patientId: string;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
// @public
|
|
888
|
+
export interface RadiologyInsightsResultOutput {
|
|
889
|
+
readonly createdDateTime?: string;
|
|
890
|
+
error?: ErrorModel;
|
|
891
|
+
readonly expirationDateTime?: string;
|
|
892
|
+
readonly id: string;
|
|
893
|
+
readonly lastUpdateDateTime?: string;
|
|
894
|
+
result?: RadiologyInsightsInferenceResultOutput;
|
|
895
|
+
readonly status: string;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
// @public
|
|
899
|
+
export interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
900
|
+
imagingProcedures: Array<ImagingProcedureOutput>;
|
|
901
|
+
kind: "radiologyProcedure";
|
|
902
|
+
orderedProcedure: OrderedProcedureOutput;
|
|
903
|
+
procedureCodes?: Array<CodeableConceptOutput>;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
// @public
|
|
907
|
+
export interface Range extends Element {
|
|
908
|
+
high?: Quantity;
|
|
909
|
+
low?: Quantity;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
// @public
|
|
913
|
+
export interface RangeOutput extends ElementOutput {
|
|
914
|
+
high?: QuantityOutput;
|
|
915
|
+
low?: QuantityOutput;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
// @public
|
|
919
|
+
export interface Ratio extends Element {
|
|
920
|
+
denominator?: Quantity;
|
|
921
|
+
numerator?: Quantity;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
// @public
|
|
925
|
+
export interface RatioOutput extends ElementOutput {
|
|
926
|
+
denominator?: QuantityOutput;
|
|
927
|
+
numerator?: QuantityOutput;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
// @public
|
|
931
|
+
export interface RecommendationFindingOutput {
|
|
932
|
+
criticalFinding?: CriticalResultOutput;
|
|
933
|
+
extension?: Array<ExtensionOutput>;
|
|
934
|
+
finding?: ObservationOutput;
|
|
935
|
+
recommendationFindingStatus: string;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
// @public
|
|
939
|
+
export interface Reference extends Element {
|
|
940
|
+
display?: string;
|
|
941
|
+
identifier?: Identifier;
|
|
942
|
+
reference?: string;
|
|
943
|
+
type?: string;
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
// @public
|
|
947
|
+
export interface ReferenceOutput extends ElementOutput {
|
|
948
|
+
display?: string;
|
|
949
|
+
identifier?: IdentifierOutput;
|
|
950
|
+
reference?: string;
|
|
951
|
+
type?: string;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
// @public
|
|
955
|
+
export type RepeatabilityResultOutput = "accepted" | "rejected";
|
|
956
|
+
|
|
957
|
+
// @public
|
|
958
|
+
export interface ResearchStudy extends DomainResourceParent {
|
|
959
|
+
arm?: {
|
|
960
|
+
name: string;
|
|
961
|
+
type?: CodeableConcept;
|
|
962
|
+
description?: string;
|
|
963
|
+
}[];
|
|
964
|
+
category?: Array<CodeableConcept>;
|
|
965
|
+
condition?: Array<CodeableConcept>;
|
|
966
|
+
contact?: Array<ContactDetail>;
|
|
967
|
+
description?: string;
|
|
968
|
+
enrollment?: Array<Reference>;
|
|
969
|
+
focus?: Array<CodeableConcept>;
|
|
970
|
+
identifier?: Array<Identifier>;
|
|
971
|
+
keyword?: Array<CodeableConcept>;
|
|
972
|
+
location?: Array<CodeableConcept>;
|
|
973
|
+
note?: Array<Annotation>;
|
|
974
|
+
objective?: {
|
|
975
|
+
name: string;
|
|
976
|
+
type?: CodeableConcept;
|
|
977
|
+
}[];
|
|
978
|
+
partOf?: Array<Reference>;
|
|
979
|
+
period?: Period;
|
|
980
|
+
phase?: CodeableConcept;
|
|
981
|
+
primaryPurposeType?: CodeableConcept;
|
|
982
|
+
principalInvestigator?: Reference;
|
|
983
|
+
protocol?: Array<Reference>;
|
|
984
|
+
reasonStopped?: CodeableConcept;
|
|
985
|
+
resourceType: "ResearchStudy";
|
|
986
|
+
site?: Array<Reference>;
|
|
987
|
+
sponsor?: Reference;
|
|
988
|
+
status: string;
|
|
989
|
+
title?: string;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
// @public
|
|
993
|
+
export interface ResearchStudyOutput extends DomainResourceOutputParent {
|
|
994
|
+
arm?: {
|
|
995
|
+
name: string;
|
|
996
|
+
type?: CodeableConceptOutput;
|
|
997
|
+
description?: string;
|
|
998
|
+
}[];
|
|
999
|
+
category?: Array<CodeableConceptOutput>;
|
|
1000
|
+
condition?: Array<CodeableConceptOutput>;
|
|
1001
|
+
contact?: Array<ContactDetailOutput>;
|
|
1002
|
+
description?: string;
|
|
1003
|
+
enrollment?: Array<ReferenceOutput>;
|
|
1004
|
+
focus?: Array<CodeableConceptOutput>;
|
|
1005
|
+
identifier?: Array<IdentifierOutput>;
|
|
1006
|
+
keyword?: Array<CodeableConceptOutput>;
|
|
1007
|
+
location?: Array<CodeableConceptOutput>;
|
|
1008
|
+
note?: Array<AnnotationOutput>;
|
|
1009
|
+
objective?: {
|
|
1010
|
+
name: string;
|
|
1011
|
+
type?: CodeableConceptOutput;
|
|
1012
|
+
}[];
|
|
1013
|
+
partOf?: Array<ReferenceOutput>;
|
|
1014
|
+
period?: PeriodOutput;
|
|
1015
|
+
phase?: CodeableConceptOutput;
|
|
1016
|
+
primaryPurposeType?: CodeableConceptOutput;
|
|
1017
|
+
principalInvestigator?: ReferenceOutput;
|
|
1018
|
+
protocol?: Array<ReferenceOutput>;
|
|
1019
|
+
reasonStopped?: CodeableConceptOutput;
|
|
1020
|
+
resourceType: "ResearchStudy";
|
|
1021
|
+
site?: Array<ReferenceOutput>;
|
|
1022
|
+
sponsor?: ReferenceOutput;
|
|
1023
|
+
status: string;
|
|
1024
|
+
title?: string;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
// @public
|
|
1028
|
+
export interface Resource extends Record<string, unknown> {
|
|
1029
|
+
id?: string;
|
|
1030
|
+
implicitRules?: string;
|
|
1031
|
+
language?: string;
|
|
1032
|
+
meta?: Meta;
|
|
1033
|
+
resourceType: string;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
// @public
|
|
1037
|
+
export interface ResourceOutput extends Record<string, any> {
|
|
1038
|
+
id?: string;
|
|
1039
|
+
implicitRules?: string;
|
|
1040
|
+
language?: string;
|
|
1041
|
+
meta?: MetaOutput;
|
|
1042
|
+
resourceType: string;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
// @public (undocumented)
|
|
1046
|
+
export interface Routes {
|
|
1047
|
+
(path: "/radiology-insights/jobs/{id}", id: string): GetJob;
|
|
1048
|
+
(path: "/radiology-insights/jobs"): CreateJob;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
// @public
|
|
1052
|
+
export interface SampledData extends Element {
|
|
1053
|
+
data?: string;
|
|
1054
|
+
dimensions: number;
|
|
1055
|
+
factor?: number;
|
|
1056
|
+
lowerLimit?: number;
|
|
1057
|
+
origin: Quantity;
|
|
1058
|
+
period: number;
|
|
1059
|
+
upperLimit?: number;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
// @public
|
|
1063
|
+
export interface SampledDataOutput extends ElementOutput {
|
|
1064
|
+
data?: string;
|
|
1065
|
+
dimensions: number;
|
|
1066
|
+
factor?: number;
|
|
1067
|
+
lowerLimit?: number;
|
|
1068
|
+
origin: QuantityOutput;
|
|
1069
|
+
period: number;
|
|
1070
|
+
upperLimit?: number;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
// @public
|
|
1074
|
+
export interface SexMismatchInferenceOutput extends RadiologyInsightsInferenceOutputParent {
|
|
1075
|
+
kind: "sexMismatch";
|
|
1076
|
+
sexIndication: CodeableConceptOutput;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
// @public
|
|
1080
|
+
export interface TimePeriod {
|
|
1081
|
+
end?: Date | string;
|
|
1082
|
+
start?: Date | string;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
// @public
|
|
1086
|
+
export interface TimePeriodOutput {
|
|
1087
|
+
end?: string;
|
|
1088
|
+
start?: string;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
// (No @packageDocumentation comment for this package)
|
|
1092
|
+
|
|
1093
|
+
```
|