Skip to content

Commit 83efc34

Browse files
committed
There are trivial and non-breaking changes to some api.md files that are caused by commit 68b3c7b.
1 parent 68b3c7b commit 83efc34

File tree

10 files changed

+63
-50
lines changed

10 files changed

+63
-50
lines changed

sdk/agrifood/agrifood-farming-rest/review/agrifood-farming.api.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@ export interface Device {
16141614
deviceDataModelId?: string;
16151615
hardwareId?: string;
16161616
integrationId?: string;
1617-
location?: Location;
1617+
location?: Location_2;
16181618
name?: string;
16191619
parentDeviceId?: string;
16201620
properties?: Record<string, any>;
@@ -4469,10 +4469,11 @@ export interface LabDetailsOutput {
44694469
}
44704470

44714471
// @public
4472-
export interface Location {
4472+
interface Location_2 {
44734473
latitude: number;
44744474
longitude: number;
44754475
}
4476+
export { Location_2 as Location }
44764477

44774478
// @public
44784479
export interface LocationOutput {
@@ -8575,7 +8576,7 @@ export interface Sensor {
85758576
deviceId?: string;
85768577
hardwareId?: string;
85778578
integrationId?: string;
8578-
location?: Location;
8579+
location?: Location_2;
85798580
name?: string;
85808581
port?: Port;
85818582
properties?: Record<string, any>;

sdk/communication/communication-call-automation/review/communication-call-automation.api.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,8 @@ export type RecordingFormat = "mp3" | "mp4" | "wav";
747747
export type RecordingKind = "azureCommunicationServices" | "teams" | "teamsCompliance";
748748

749749
// @public
750-
export type RecordingState = string;
750+
type RecordingState_2 = string;
751+
export { RecordingState_2 as RecordingState }
751752

752753
// Warning: (ae-forgotten-export) The symbol "RestRecordingStateChanged" needs to be exported by the entry point index.d.ts
753754
//
@@ -766,7 +767,7 @@ export interface RecordingStateResult {
766767
// (undocumented)
767768
recordingKind: string;
768769
// (undocumented)
769-
recordingState: RecordingState;
770+
recordingState: RecordingState_2;
770771
}
771772

772773
// @public

sdk/communication/communication-job-router/review/communication-job-router.api.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -796,13 +796,14 @@ export interface SuspendMode {
796796
}
797797

798798
// @public (undocumented)
799-
export type Transformer<TFrom, TTo> = (input: TFrom) => TTo;
799+
type Transformer_2<TFrom, TTo> = (input: TFrom) => TTo;
800+
export { Transformer_2 as Transformer }
800801

801802
// @public (undocumented)
802803
export class TransformingPagedAsyncIterableIterator<TElement, TTransformed, TPage = TElement[], TTransformedPage = TTransformed[], TPageSettings = PageSettings> {
803804
// (undocumented)
804805
[Symbol.asyncIterator](): TransformingPagedAsyncIterableIterator<TElement, TTransformed, TPage, TTransformedPage, TPageSettings>;
805-
constructor(internalIterator: PagedAsyncIterableIterator<TElement, TPage, TPageSettings>, transform: Transformer<TElement, TTransformed>);
806+
constructor(internalIterator: PagedAsyncIterableIterator<TElement, TPage, TPageSettings>, transform: Transformer_2<TElement, TTransformed>);
806807
// (undocumented)
807808
byPage(settings?: TPageSettings): AsyncIterableIterator<TTransformedPage>;
808809
// (undocumented)

sdk/communication/communication-toll-free-verification/review/communication-toll-free-verification.api.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -132,16 +132,17 @@ export interface OptInDetails {
132132
// (undocumented)
133133
description?: string;
134134
// (undocumented)
135-
options?: Option[];
135+
options?: Option_2[];
136136
}
137137

138138
// @public (undocumented)
139-
export interface Option {
139+
interface Option_2 {
140140
// (undocumented)
141141
imageUrls?: string[];
142142
// (undocumented)
143143
type: Type;
144144
}
145+
export { Option_2 as Option }
145146

146147
// @public
147148
export interface ReviewNote {

sdk/contentsafety/ai-content-safety-rest/review/ai-content-safety.api.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export interface AnalyzeImageDefaultResponse extends HttpResponse {
9999
// @public
100100
export interface AnalyzeImageOptions {
101101
categories?: string[];
102-
image: ImageData;
102+
image: ImageData_2;
103103
outputType?: string;
104104
}
105105

@@ -335,10 +335,11 @@ export interface ImageCategoriesAnalysisOutput {
335335
}
336336

337337
// @public
338-
export interface ImageData {
338+
interface ImageData_2 {
339339
blobUrl?: string;
340340
content?: string;
341341
}
342+
export { ImageData_2 as ImageData }
342343

343344
// @public
344345
export interface ImageDataOutput {

sdk/core/core-util/review/core-util.api.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ export interface CreateAbortablePromiseOptions extends AbortOptions {
4545
}
4646

4747
// @public
48-
export function delay(timeInMs: number, options?: DelayOptions): Promise<void>;
48+
export function delay(timeInMs: number, options?: DelayOptions_2): Promise<void>;
4949

5050
// @public
51-
export interface DelayOptions extends AbortOptions {
51+
interface DelayOptions_2 extends AbortOptions {
5252
}
53+
export { DelayOptions_2 as DelayOptions }
5354

5455
// @public
5556
export type EncodingType = "utf-8" | "base64" | "base64url" | "hex";

sdk/healthinsights/health-insights-radiologyinsights-rest/review/health-insights-radiologyinsights.api.md

+26-23
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOu
2727
}
2828

2929
// @public
30-
export interface Annotation extends Element {
30+
export interface Annotation extends Element_2 {
3131
authorString?: string;
3232
text: string;
3333
time?: string;
@@ -77,7 +77,7 @@ export enum ClinicalDocumentTypeOutputEnum {
7777
}
7878

7979
// @public
80-
export interface CodeableConcept extends Element {
80+
export interface CodeableConcept extends Element_2 {
8181
coding?: Array<Coding>;
8282
text?: string;
8383
}
@@ -89,7 +89,7 @@ export interface CodeableConceptOutput extends ElementOutput {
8989
}
9090

9191
// @public
92-
export interface Coding extends Element {
92+
export interface Coding extends Element_2 {
9393
code?: string;
9494
display?: string;
9595
system?: string;
@@ -125,7 +125,7 @@ export interface Condition extends DomainResourceParent {
125125
abatementAge?: Quantity;
126126
abatementDateTime?: string;
127127
abatementPeriod?: Period;
128-
abatementRange?: Range;
128+
abatementRange?: Range_2;
129129
abatementString?: string;
130130
bodySite?: Array<CodeableConcept>;
131131
category?: Array<CodeableConcept>;
@@ -137,7 +137,7 @@ export interface Condition extends DomainResourceParent {
137137
onsetAge?: Quantity;
138138
onsetDateTime?: string;
139139
onsetPeriod?: Period;
140-
onsetRange?: Range;
140+
onsetRange?: Range_2;
141141
onsetString?: string;
142142
recordedDate?: string;
143143
resourceType: "Condition";
@@ -185,7 +185,7 @@ export interface ConditionStageOutput {
185185
}
186186

187187
// @public
188-
export interface ContactDetail extends Element {
188+
export interface ContactDetail extends Element_2 {
189189
name?: string;
190190
telecom?: Array<ContactPoint>;
191191
}
@@ -360,7 +360,8 @@ export type DocumentContentSourceType = string | "inline" | "reference";
360360
export type DocumentContentSourceTypeOutput = string | "inline" | "reference";
361361

362362
// @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 }
364365

365366
// @public
366367
export type DocumentTypeOutput = string | "note" | "fhirBundle" | "dicom" | "genomicSequencing";
@@ -390,10 +391,11 @@ export interface DomainResourceParent extends Resource {
390391
}
391392

392393
// @public
393-
export interface Element {
394+
interface Element_2 {
394395
extension?: Array<Extension>;
395396
id?: string;
396397
}
398+
export { Element_2 as Element }
397399

398400
// @public
399401
export interface ElementOutput {
@@ -408,15 +410,15 @@ export type EncounterClass = string | "inpatient" | "ambulatory" | "observation"
408410
export type EncounterClassOutput = string | "inpatient" | "ambulatory" | "observation" | "emergency" | "virtual" | "healthHome";
409411

410412
// @public
411-
export interface Extension extends Element {
413+
export interface Extension extends Element_2 {
412414
url: string;
413415
valueBoolean?: boolean;
414416
valueCodeableConcept?: CodeableConcept;
415417
valueDateTime?: string;
416418
valueInteger?: number;
417419
valuePeriod?: Period;
418420
valueQuantity?: Quantity;
419-
valueRange?: Range;
421+
valueRange?: Range_2;
420422
valueRatio?: Ratio;
421423
valueReference?: Reference;
422424
valueSampledData?: SampledData;
@@ -590,7 +592,7 @@ export interface HealthInsightsErrorResponseOutput {
590592
}
591593

592594
// @public
593-
export interface Identifier extends Element {
595+
export interface Identifier extends Element_2 {
594596
assigner?: Reference;
595597
period?: Period;
596598
system?: string;
@@ -716,7 +718,7 @@ export interface MetaOutput {
716718
}
717719

718720
// @public
719-
export interface Narrative extends Element {
721+
export interface Narrative extends Element_2 {
720722
div: string;
721723
status: string;
722724
}
@@ -755,15 +757,15 @@ export interface Observation extends DomainResourceParent {
755757
valueInteger?: number;
756758
valuePeriod?: Period;
757759
valueQuantity?: Quantity;
758-
valueRange?: Range;
760+
valueRange?: Range_2;
759761
valueRatio?: Ratio;
760762
valueSampledData?: SampledData;
761763
valueString?: string;
762764
valueTime?: Date | string;
763765
}
764766

765767
// @public
766-
export interface ObservationComponent extends Element {
768+
export interface ObservationComponent extends Element_2 {
767769
code: CodeableConcept;
768770
dataAbsentReason?: CodeableConcept;
769771
interpretation?: Array<CodeableConcept>;
@@ -774,7 +776,7 @@ export interface ObservationComponent extends Element {
774776
valueInteger?: number;
775777
valuePeriod?: Period;
776778
valueQuantity?: Quantity;
777-
valueRange?: Range;
779+
valueRange?: Range_2;
778780
valueRatio?: Ratio;
779781
valueReference?: Reference;
780782
valueSampledData?: SampledData;
@@ -839,7 +841,7 @@ export interface ObservationOutput extends DomainResourceOutputParent {
839841

840842
// @public
841843
export interface ObservationReferenceRange {
842-
age?: Range;
844+
age?: Range_2;
843845
appliesTo?: Array<CodeableConcept>;
844846
high?: Quantity;
845847
low?: Quantity;
@@ -901,7 +903,7 @@ export interface PatientDocument {
901903
id: string;
902904
language?: string;
903905
specialtyType?: SpecialtyType;
904-
type: DocumentType;
906+
type: DocumentType_2;
905907
}
906908

907909
// @public
@@ -954,7 +956,7 @@ export type PatientSex = string | "female" | "male" | "unspecified";
954956
export type PatientSexOutput = string | "female" | "male" | "unspecified";
955957

956958
// @public
957-
export interface Period extends Element {
959+
export interface Period extends Element_2 {
958960
end?: string;
959961
start?: string;
960962
}
@@ -984,7 +986,7 @@ export interface ProcedureRecommendationParent {
984986
}
985987

986988
// @public
987-
export interface Quantity extends Element {
989+
export interface Quantity extends Element_2 {
988990
code?: string;
989991
comparator?: string;
990992
system?: string;
@@ -1137,10 +1139,11 @@ export interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInfe
11371139
}
11381140

11391141
// @public
1140-
export interface Range extends Element {
1142+
interface Range_2 extends Element_2 {
11411143
high?: Quantity;
11421144
low?: Quantity;
11431145
}
1146+
export { Range_2 as Range }
11441147

11451148
// @public
11461149
export interface RangeOutput extends ElementOutput {
@@ -1149,7 +1152,7 @@ export interface RangeOutput extends ElementOutput {
11491152
}
11501153

11511154
// @public
1152-
export interface Ratio extends Element {
1155+
export interface Ratio extends Element_2 {
11531156
denominator?: Quantity;
11541157
numerator?: Quantity;
11551158
}
@@ -1183,7 +1186,7 @@ export type RecommendationFindingStatusType = string | "present" | "differential
11831186
export type RecommendationFindingStatusTypeOutput = string | "present" | "differential" | "ruleOut" | "conditional";
11841187

11851188
// @public
1186-
export interface Reference extends Element {
1189+
export interface Reference extends Element_2 {
11871190
display?: string;
11881191
identifier?: Identifier;
11891192
reference?: string;
@@ -1302,7 +1305,7 @@ export interface Routes {
13021305
}
13031306

13041307
// @public
1305-
export interface SampledData extends Element {
1308+
export interface SampledData extends Element_2 {
13061309
data?: string;
13071310
dimensions: number;
13081311
factor?: number;

0 commit comments

Comments
 (0)