@@ -27,7 +27,7 @@ export interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOu
27
27
}
28
28
29
29
// @public
30
- export interface Annotation extends Element {
30
+ export interface Annotation extends Element_2 {
31
31
authorString? : string ;
32
32
text: string ;
33
33
time? : string ;
@@ -77,7 +77,7 @@ export enum ClinicalDocumentTypeOutputEnum {
77
77
}
78
78
79
79
// @public
80
- export interface CodeableConcept extends Element {
80
+ export interface CodeableConcept extends Element_2 {
81
81
coding? : Array <Coding >;
82
82
text? : string ;
83
83
}
@@ -89,7 +89,7 @@ export interface CodeableConceptOutput extends ElementOutput {
89
89
}
90
90
91
91
// @public
92
- export interface Coding extends Element {
92
+ export interface Coding extends Element_2 {
93
93
code? : string ;
94
94
display? : string ;
95
95
system? : string ;
@@ -125,7 +125,7 @@ export interface Condition extends DomainResourceParent {
125
125
abatementAge? : Quantity ;
126
126
abatementDateTime? : string ;
127
127
abatementPeriod? : Period ;
128
- abatementRange? : Range ;
128
+ abatementRange? : Range_2 ;
129
129
abatementString? : string ;
130
130
bodySite? : Array <CodeableConcept >;
131
131
category? : Array <CodeableConcept >;
@@ -137,7 +137,7 @@ export interface Condition extends DomainResourceParent {
137
137
onsetAge? : Quantity ;
138
138
onsetDateTime? : string ;
139
139
onsetPeriod? : Period ;
140
- onsetRange? : Range ;
140
+ onsetRange? : Range_2 ;
141
141
onsetString? : string ;
142
142
recordedDate? : string ;
143
143
resourceType: " Condition" ;
@@ -185,7 +185,7 @@ export interface ConditionStageOutput {
185
185
}
186
186
187
187
// @public
188
- export interface ContactDetail extends Element {
188
+ export interface ContactDetail extends Element_2 {
189
189
name? : string ;
190
190
telecom? : Array <ContactPoint >;
191
191
}
@@ -360,7 +360,8 @@ export type DocumentContentSourceType = string | "inline" | "reference";
360
360
export type DocumentContentSourceTypeOutput = string | " inline" | " reference" ;
361
361
362
362
// @public
363
- export type DocumentType = string | " note" | " fhirBundle" | " dicom" | " genomicSequencing" ;
363
+ type DocumentType_2 = string | " note" | " fhirBundle" | " dicom" | " genomicSequencing" ;
364
+ export { DocumentType_2 as DocumentType }
364
365
365
366
// @public
366
367
export type DocumentTypeOutput = string | " note" | " fhirBundle" | " dicom" | " genomicSequencing" ;
@@ -390,10 +391,11 @@ export interface DomainResourceParent extends Resource {
390
391
}
391
392
392
393
// @public
393
- export interface Element {
394
+ interface Element_2 {
394
395
extension? : Array <Extension >;
395
396
id? : string ;
396
397
}
398
+ export { Element_2 as Element }
397
399
398
400
// @public
399
401
export interface ElementOutput {
@@ -408,15 +410,15 @@ export type EncounterClass = string | "inpatient" | "ambulatory" | "observation"
408
410
export type EncounterClassOutput = string | " inpatient" | " ambulatory" | " observation" | " emergency" | " virtual" | " healthHome" ;
409
411
410
412
// @public
411
- export interface Extension extends Element {
413
+ export interface Extension extends Element_2 {
412
414
url: string ;
413
415
valueBoolean? : boolean ;
414
416
valueCodeableConcept? : CodeableConcept ;
415
417
valueDateTime? : string ;
416
418
valueInteger? : number ;
417
419
valuePeriod? : Period ;
418
420
valueQuantity? : Quantity ;
419
- valueRange? : Range ;
421
+ valueRange? : Range_2 ;
420
422
valueRatio? : Ratio ;
421
423
valueReference? : Reference ;
422
424
valueSampledData? : SampledData ;
@@ -590,7 +592,7 @@ export interface HealthInsightsErrorResponseOutput {
590
592
}
591
593
592
594
// @public
593
- export interface Identifier extends Element {
595
+ export interface Identifier extends Element_2 {
594
596
assigner? : Reference ;
595
597
period? : Period ;
596
598
system? : string ;
@@ -716,7 +718,7 @@ export interface MetaOutput {
716
718
}
717
719
718
720
// @public
719
- export interface Narrative extends Element {
721
+ export interface Narrative extends Element_2 {
720
722
div: string ;
721
723
status: string ;
722
724
}
@@ -755,15 +757,15 @@ export interface Observation extends DomainResourceParent {
755
757
valueInteger? : number ;
756
758
valuePeriod? : Period ;
757
759
valueQuantity? : Quantity ;
758
- valueRange? : Range ;
760
+ valueRange? : Range_2 ;
759
761
valueRatio? : Ratio ;
760
762
valueSampledData? : SampledData ;
761
763
valueString? : string ;
762
764
valueTime? : Date | string ;
763
765
}
764
766
765
767
// @public
766
- export interface ObservationComponent extends Element {
768
+ export interface ObservationComponent extends Element_2 {
767
769
code: CodeableConcept ;
768
770
dataAbsentReason? : CodeableConcept ;
769
771
interpretation? : Array <CodeableConcept >;
@@ -774,7 +776,7 @@ export interface ObservationComponent extends Element {
774
776
valueInteger? : number ;
775
777
valuePeriod? : Period ;
776
778
valueQuantity? : Quantity ;
777
- valueRange? : Range ;
779
+ valueRange? : Range_2 ;
778
780
valueRatio? : Ratio ;
779
781
valueReference? : Reference ;
780
782
valueSampledData? : SampledData ;
@@ -839,7 +841,7 @@ export interface ObservationOutput extends DomainResourceOutputParent {
839
841
840
842
// @public
841
843
export interface ObservationReferenceRange {
842
- age? : Range ;
844
+ age? : Range_2 ;
843
845
appliesTo? : Array <CodeableConcept >;
844
846
high? : Quantity ;
845
847
low? : Quantity ;
@@ -901,7 +903,7 @@ export interface PatientDocument {
901
903
id: string ;
902
904
language? : string ;
903
905
specialtyType? : SpecialtyType ;
904
- type: DocumentType ;
906
+ type: DocumentType_2 ;
905
907
}
906
908
907
909
// @public
@@ -954,7 +956,7 @@ export type PatientSex = string | "female" | "male" | "unspecified";
954
956
export type PatientSexOutput = string | " female" | " male" | " unspecified" ;
955
957
956
958
// @public
957
- export interface Period extends Element {
959
+ export interface Period extends Element_2 {
958
960
end? : string ;
959
961
start? : string ;
960
962
}
@@ -984,7 +986,7 @@ export interface ProcedureRecommendationParent {
984
986
}
985
987
986
988
// @public
987
- export interface Quantity extends Element {
989
+ export interface Quantity extends Element_2 {
988
990
code? : string ;
989
991
comparator? : string ;
990
992
system? : string ;
@@ -1137,10 +1139,11 @@ export interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInfe
1137
1139
}
1138
1140
1139
1141
// @public
1140
- export interface Range extends Element {
1142
+ interface Range_2 extends Element_2 {
1141
1143
high? : Quantity ;
1142
1144
low? : Quantity ;
1143
1145
}
1146
+ export { Range_2 as Range }
1144
1147
1145
1148
// @public
1146
1149
export interface RangeOutput extends ElementOutput {
@@ -1149,7 +1152,7 @@ export interface RangeOutput extends ElementOutput {
1149
1152
}
1150
1153
1151
1154
// @public
1152
- export interface Ratio extends Element {
1155
+ export interface Ratio extends Element_2 {
1153
1156
denominator? : Quantity ;
1154
1157
numerator? : Quantity ;
1155
1158
}
@@ -1183,7 +1186,7 @@ export type RecommendationFindingStatusType = string | "present" | "differential
1183
1186
export type RecommendationFindingStatusTypeOutput = string | " present" | " differential" | " ruleOut" | " conditional" ;
1184
1187
1185
1188
// @public
1186
- export interface Reference extends Element {
1189
+ export interface Reference extends Element_2 {
1187
1190
display? : string ;
1188
1191
identifier? : Identifier ;
1189
1192
reference? : string ;
@@ -1302,7 +1305,7 @@ export interface Routes {
1302
1305
}
1303
1306
1304
1307
// @public
1305
- export interface SampledData extends Element {
1308
+ export interface SampledData extends Element_2 {
1306
1309
data? : string ;
1307
1310
dimensions: number ;
1308
1311
factor? : number ;
0 commit comments