Skip to content

Commit

Permalink
There are trivial and non-breaking changes to some api.md files that …
Browse files Browse the repository at this point in the history
…are caused by commit 68b3c7b.
  • Loading branch information
jeremymeng committed Dec 14, 2024
1 parent 68b3c7b commit 83efc34
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 50 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1614,7 +1614,7 @@ export interface Device {
deviceDataModelId?: string;
hardwareId?: string;
integrationId?: string;
location?: Location;
location?: Location_2;
name?: string;
parentDeviceId?: string;
properties?: Record<string, any>;
Expand Down Expand Up @@ -4469,10 +4469,11 @@ export interface LabDetailsOutput {
}

// @public
export interface Location {
interface Location_2 {
latitude: number;
longitude: number;
}
export { Location_2 as Location }

// @public
export interface LocationOutput {
Expand Down Expand Up @@ -8575,7 +8576,7 @@ export interface Sensor {
deviceId?: string;
hardwareId?: string;
integrationId?: string;
location?: Location;
location?: Location_2;
name?: string;
port?: Port;
properties?: Record<string, any>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,8 @@ export type RecordingFormat = "mp3" | "mp4" | "wav";
export type RecordingKind = "azureCommunicationServices" | "teams" | "teamsCompliance";

// @public
export type RecordingState = string;
type RecordingState_2 = string;
export { RecordingState_2 as RecordingState }

// Warning: (ae-forgotten-export) The symbol "RestRecordingStateChanged" needs to be exported by the entry point index.d.ts
//
Expand All @@ -766,7 +767,7 @@ export interface RecordingStateResult {
// (undocumented)
recordingKind: string;
// (undocumented)
recordingState: RecordingState;
recordingState: RecordingState_2;
}

// @public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -796,13 +796,14 @@ export interface SuspendMode {
}

// @public (undocumented)
export type Transformer<TFrom, TTo> = (input: TFrom) => TTo;
type Transformer_2<TFrom, TTo> = (input: TFrom) => TTo;
export { Transformer_2 as Transformer }

// @public (undocumented)
export class TransformingPagedAsyncIterableIterator<TElement, TTransformed, TPage = TElement[], TTransformedPage = TTransformed[], TPageSettings = PageSettings> {
// (undocumented)
[Symbol.asyncIterator](): TransformingPagedAsyncIterableIterator<TElement, TTransformed, TPage, TTransformedPage, TPageSettings>;
constructor(internalIterator: PagedAsyncIterableIterator<TElement, TPage, TPageSettings>, transform: Transformer<TElement, TTransformed>);
constructor(internalIterator: PagedAsyncIterableIterator<TElement, TPage, TPageSettings>, transform: Transformer_2<TElement, TTransformed>);
// (undocumented)
byPage(settings?: TPageSettings): AsyncIterableIterator<TTransformedPage>;
// (undocumented)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,17 @@ export interface OptInDetails {
// (undocumented)
description?: string;
// (undocumented)
options?: Option[];
options?: Option_2[];
}

// @public (undocumented)
export interface Option {
interface Option_2 {
// (undocumented)
imageUrls?: string[];
// (undocumented)
type: Type;
}
export { Option_2 as Option }

// @public
export interface ReviewNote {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export interface AnalyzeImageDefaultResponse extends HttpResponse {
// @public
export interface AnalyzeImageOptions {
categories?: string[];
image: ImageData;
image: ImageData_2;
outputType?: string;
}

Expand Down Expand Up @@ -335,10 +335,11 @@ export interface ImageCategoriesAnalysisOutput {
}

// @public
export interface ImageData {
interface ImageData_2 {
blobUrl?: string;
content?: string;
}
export { ImageData_2 as ImageData }

// @public
export interface ImageDataOutput {
Expand Down
5 changes: 3 additions & 2 deletions sdk/core/core-util/review/core-util.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ export interface CreateAbortablePromiseOptions extends AbortOptions {
}

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

// @public
export interface DelayOptions extends AbortOptions {
interface DelayOptions_2 extends AbortOptions {
}
export { DelayOptions_2 as DelayOptions }

// @public
export type EncodingType = "utf-8" | "base64" | "base64url" | "hex";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface AgeMismatchInferenceOutput extends RadiologyInsightsInferenceOu
}

// @public
export interface Annotation extends Element {
export interface Annotation extends Element_2 {
authorString?: string;
text: string;
time?: string;
Expand Down Expand Up @@ -77,7 +77,7 @@ export enum ClinicalDocumentTypeOutputEnum {
}

// @public
export interface CodeableConcept extends Element {
export interface CodeableConcept extends Element_2 {
coding?: Array<Coding>;
text?: string;
}
Expand All @@ -89,7 +89,7 @@ export interface CodeableConceptOutput extends ElementOutput {
}

// @public
export interface Coding extends Element {
export interface Coding extends Element_2 {
code?: string;
display?: string;
system?: string;
Expand Down Expand Up @@ -125,7 +125,7 @@ export interface Condition extends DomainResourceParent {
abatementAge?: Quantity;
abatementDateTime?: string;
abatementPeriod?: Period;
abatementRange?: Range;
abatementRange?: Range_2;
abatementString?: string;
bodySite?: Array<CodeableConcept>;
category?: Array<CodeableConcept>;
Expand All @@ -137,7 +137,7 @@ export interface Condition extends DomainResourceParent {
onsetAge?: Quantity;
onsetDateTime?: string;
onsetPeriod?: Period;
onsetRange?: Range;
onsetRange?: Range_2;
onsetString?: string;
recordedDate?: string;
resourceType: "Condition";
Expand Down Expand Up @@ -185,7 +185,7 @@ export interface ConditionStageOutput {
}

// @public
export interface ContactDetail extends Element {
export interface ContactDetail extends Element_2 {
name?: string;
telecom?: Array<ContactPoint>;
}
Expand Down Expand Up @@ -360,7 +360,8 @@ export type DocumentContentSourceType = string | "inline" | "reference";
export type DocumentContentSourceTypeOutput = string | "inline" | "reference";

// @public
export type DocumentType = string | "note" | "fhirBundle" | "dicom" | "genomicSequencing";
type DocumentType_2 = string | "note" | "fhirBundle" | "dicom" | "genomicSequencing";
export { DocumentType_2 as DocumentType }

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

// @public
export interface Element {
interface Element_2 {
extension?: Array<Extension>;
id?: string;
}
export { Element_2 as Element }

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

// @public
export interface Extension extends Element {
export interface Extension extends Element_2 {
url: string;
valueBoolean?: boolean;
valueCodeableConcept?: CodeableConcept;
valueDateTime?: string;
valueInteger?: number;
valuePeriod?: Period;
valueQuantity?: Quantity;
valueRange?: Range;
valueRange?: Range_2;
valueRatio?: Ratio;
valueReference?: Reference;
valueSampledData?: SampledData;
Expand Down Expand Up @@ -590,7 +592,7 @@ export interface HealthInsightsErrorResponseOutput {
}

// @public
export interface Identifier extends Element {
export interface Identifier extends Element_2 {
assigner?: Reference;
period?: Period;
system?: string;
Expand Down Expand Up @@ -716,7 +718,7 @@ export interface MetaOutput {
}

// @public
export interface Narrative extends Element {
export interface Narrative extends Element_2 {
div: string;
status: string;
}
Expand Down Expand Up @@ -755,15 +757,15 @@ export interface Observation extends DomainResourceParent {
valueInteger?: number;
valuePeriod?: Period;
valueQuantity?: Quantity;
valueRange?: Range;
valueRange?: Range_2;
valueRatio?: Ratio;
valueSampledData?: SampledData;
valueString?: string;
valueTime?: Date | string;
}

// @public
export interface ObservationComponent extends Element {
export interface ObservationComponent extends Element_2 {
code: CodeableConcept;
dataAbsentReason?: CodeableConcept;
interpretation?: Array<CodeableConcept>;
Expand All @@ -774,7 +776,7 @@ export interface ObservationComponent extends Element {
valueInteger?: number;
valuePeriod?: Period;
valueQuantity?: Quantity;
valueRange?: Range;
valueRange?: Range_2;
valueRatio?: Ratio;
valueReference?: Reference;
valueSampledData?: SampledData;
Expand Down Expand Up @@ -839,7 +841,7 @@ export interface ObservationOutput extends DomainResourceOutputParent {

// @public
export interface ObservationReferenceRange {
age?: Range;
age?: Range_2;
appliesTo?: Array<CodeableConcept>;
high?: Quantity;
low?: Quantity;
Expand Down Expand Up @@ -901,7 +903,7 @@ export interface PatientDocument {
id: string;
language?: string;
specialtyType?: SpecialtyType;
type: DocumentType;
type: DocumentType_2;
}

// @public
Expand Down Expand Up @@ -954,7 +956,7 @@ export type PatientSex = string | "female" | "male" | "unspecified";
export type PatientSexOutput = string | "female" | "male" | "unspecified";

// @public
export interface Period extends Element {
export interface Period extends Element_2 {
end?: string;
start?: string;
}
Expand Down Expand Up @@ -984,7 +986,7 @@ export interface ProcedureRecommendationParent {
}

// @public
export interface Quantity extends Element {
export interface Quantity extends Element_2 {
code?: string;
comparator?: string;
system?: string;
Expand Down Expand Up @@ -1137,10 +1139,11 @@ export interface RadiologyProcedureInferenceOutput extends RadiologyInsightsInfe
}

// @public
export interface Range extends Element {
interface Range_2 extends Element_2 {
high?: Quantity;
low?: Quantity;
}
export { Range_2 as Range }

// @public
export interface RangeOutput extends ElementOutput {
Expand All @@ -1149,7 +1152,7 @@ export interface RangeOutput extends ElementOutput {
}

// @public
export interface Ratio extends Element {
export interface Ratio extends Element_2 {
denominator?: Quantity;
numerator?: Quantity;
}
Expand Down Expand Up @@ -1183,7 +1186,7 @@ export type RecommendationFindingStatusType = string | "present" | "differential
export type RecommendationFindingStatusTypeOutput = string | "present" | "differential" | "ruleOut" | "conditional";

// @public
export interface Reference extends Element {
export interface Reference extends Element_2 {
display?: string;
identifier?: Identifier;
reference?: string;
Expand Down Expand Up @@ -1302,7 +1305,7 @@ export interface Routes {
}

// @public
export interface SampledData extends Element {
export interface SampledData extends Element_2 {
data?: string;
dimensions: number;
factor?: number;
Expand Down
Loading

0 comments on commit 83efc34

Please sign in to comment.