From 83efc34ecdef728a726bcf83014d4bfa1d665f4e Mon Sep 17 00:00:00 2001 From: Jeremy Meng Date: Fri, 13 Dec 2024 21:08:22 -0800 Subject: [PATCH] There are trivial and non-breaking changes to some api.md files that are caused by commit 68b3c7b. --- .../review/agrifood-farming.api.md | 7 +-- .../communication-call-automation.api.md | 5 +- .../review/communication-job-router.api.md | 5 +- ...ommunication-toll-free-verification.api.md | 5 +- .../review/ai-content-safety.api.md | 5 +- sdk/core/core-util/review/core-util.api.md | 5 +- .../health-insights-radiologyinsights.api.md | 49 ++++++++++--------- .../keyvault-keys/review/keyvault-keys.api.md | 22 +++++---- .../review/purview-scanning.api.md | 5 +- .../quantum-jobs/review/quantum-jobs.api.md | 5 +- 10 files changed, 63 insertions(+), 50 deletions(-) diff --git a/sdk/agrifood/agrifood-farming-rest/review/agrifood-farming.api.md b/sdk/agrifood/agrifood-farming-rest/review/agrifood-farming.api.md index 0630fbb6944b..c94a4b131b74 100644 --- a/sdk/agrifood/agrifood-farming-rest/review/agrifood-farming.api.md +++ b/sdk/agrifood/agrifood-farming-rest/review/agrifood-farming.api.md @@ -1614,7 +1614,7 @@ export interface Device { deviceDataModelId?: string; hardwareId?: string; integrationId?: string; - location?: Location; + location?: Location_2; name?: string; parentDeviceId?: string; properties?: Record; @@ -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 { @@ -8575,7 +8576,7 @@ export interface Sensor { deviceId?: string; hardwareId?: string; integrationId?: string; - location?: Location; + location?: Location_2; name?: string; port?: Port; properties?: Record; diff --git a/sdk/communication/communication-call-automation/review/communication-call-automation.api.md b/sdk/communication/communication-call-automation/review/communication-call-automation.api.md index a366dac240bd..eac7bb5359db 100644 --- a/sdk/communication/communication-call-automation/review/communication-call-automation.api.md +++ b/sdk/communication/communication-call-automation/review/communication-call-automation.api.md @@ -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 // @@ -766,7 +767,7 @@ export interface RecordingStateResult { // (undocumented) recordingKind: string; // (undocumented) - recordingState: RecordingState; + recordingState: RecordingState_2; } // @public diff --git a/sdk/communication/communication-job-router/review/communication-job-router.api.md b/sdk/communication/communication-job-router/review/communication-job-router.api.md index f6962deb16fa..b507b2a20cca 100644 --- a/sdk/communication/communication-job-router/review/communication-job-router.api.md +++ b/sdk/communication/communication-job-router/review/communication-job-router.api.md @@ -796,13 +796,14 @@ export interface SuspendMode { } // @public (undocumented) -export type Transformer = (input: TFrom) => TTo; +type Transformer_2 = (input: TFrom) => TTo; +export { Transformer_2 as Transformer } // @public (undocumented) export class TransformingPagedAsyncIterableIterator { // (undocumented) [Symbol.asyncIterator](): TransformingPagedAsyncIterableIterator; - constructor(internalIterator: PagedAsyncIterableIterator, transform: Transformer); + constructor(internalIterator: PagedAsyncIterableIterator, transform: Transformer_2); // (undocumented) byPage(settings?: TPageSettings): AsyncIterableIterator; // (undocumented) diff --git a/sdk/communication/communication-toll-free-verification/review/communication-toll-free-verification.api.md b/sdk/communication/communication-toll-free-verification/review/communication-toll-free-verification.api.md index f35048c7aa1b..5f2a3d5b1c9b 100644 --- a/sdk/communication/communication-toll-free-verification/review/communication-toll-free-verification.api.md +++ b/sdk/communication/communication-toll-free-verification/review/communication-toll-free-verification.api.md @@ -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 { diff --git a/sdk/contentsafety/ai-content-safety-rest/review/ai-content-safety.api.md b/sdk/contentsafety/ai-content-safety-rest/review/ai-content-safety.api.md index e384c5744f99..32ddc49df2d7 100644 --- a/sdk/contentsafety/ai-content-safety-rest/review/ai-content-safety.api.md +++ b/sdk/contentsafety/ai-content-safety-rest/review/ai-content-safety.api.md @@ -99,7 +99,7 @@ export interface AnalyzeImageDefaultResponse extends HttpResponse { // @public export interface AnalyzeImageOptions { categories?: string[]; - image: ImageData; + image: ImageData_2; outputType?: string; } @@ -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 { diff --git a/sdk/core/core-util/review/core-util.api.md b/sdk/core/core-util/review/core-util.api.md index 27bc52fb82f0..6a0715cca8e1 100644 --- a/sdk/core/core-util/review/core-util.api.md +++ b/sdk/core/core-util/review/core-util.api.md @@ -45,11 +45,12 @@ export interface CreateAbortablePromiseOptions extends AbortOptions { } // @public -export function delay(timeInMs: number, options?: DelayOptions): Promise; +export function delay(timeInMs: number, options?: DelayOptions_2): Promise; // @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"; diff --git a/sdk/healthinsights/health-insights-radiologyinsights-rest/review/health-insights-radiologyinsights.api.md b/sdk/healthinsights/health-insights-radiologyinsights-rest/review/health-insights-radiologyinsights.api.md index c6d9be534574..ff78253645cd 100644 --- a/sdk/healthinsights/health-insights-radiologyinsights-rest/review/health-insights-radiologyinsights.api.md +++ b/sdk/healthinsights/health-insights-radiologyinsights-rest/review/health-insights-radiologyinsights.api.md @@ -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; @@ -77,7 +77,7 @@ export enum ClinicalDocumentTypeOutputEnum { } // @public -export interface CodeableConcept extends Element { +export interface CodeableConcept extends Element_2 { coding?: Array; text?: string; } @@ -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; @@ -125,7 +125,7 @@ export interface Condition extends DomainResourceParent { abatementAge?: Quantity; abatementDateTime?: string; abatementPeriod?: Period; - abatementRange?: Range; + abatementRange?: Range_2; abatementString?: string; bodySite?: Array; category?: Array; @@ -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"; @@ -185,7 +185,7 @@ export interface ConditionStageOutput { } // @public -export interface ContactDetail extends Element { +export interface ContactDetail extends Element_2 { name?: string; telecom?: Array; } @@ -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"; @@ -390,10 +391,11 @@ export interface DomainResourceParent extends Resource { } // @public -export interface Element { +interface Element_2 { extension?: Array; id?: string; } +export { Element_2 as Element } // @public export interface ElementOutput { @@ -408,7 +410,7 @@ 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; @@ -416,7 +418,7 @@ export interface Extension extends Element { valueInteger?: number; valuePeriod?: Period; valueQuantity?: Quantity; - valueRange?: Range; + valueRange?: Range_2; valueRatio?: Ratio; valueReference?: Reference; valueSampledData?: SampledData; @@ -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; @@ -716,7 +718,7 @@ export interface MetaOutput { } // @public -export interface Narrative extends Element { +export interface Narrative extends Element_2 { div: string; status: string; } @@ -755,7 +757,7 @@ export interface Observation extends DomainResourceParent { valueInteger?: number; valuePeriod?: Period; valueQuantity?: Quantity; - valueRange?: Range; + valueRange?: Range_2; valueRatio?: Ratio; valueSampledData?: SampledData; valueString?: string; @@ -763,7 +765,7 @@ export interface Observation extends DomainResourceParent { } // @public -export interface ObservationComponent extends Element { +export interface ObservationComponent extends Element_2 { code: CodeableConcept; dataAbsentReason?: CodeableConcept; interpretation?: Array; @@ -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; @@ -839,7 +841,7 @@ export interface ObservationOutput extends DomainResourceOutputParent { // @public export interface ObservationReferenceRange { - age?: Range; + age?: Range_2; appliesTo?: Array; high?: Quantity; low?: Quantity; @@ -901,7 +903,7 @@ export interface PatientDocument { id: string; language?: string; specialtyType?: SpecialtyType; - type: DocumentType; + type: DocumentType_2; } // @public @@ -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; } @@ -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; @@ -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 { @@ -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; } @@ -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; @@ -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; diff --git a/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md b/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md index 575acb820a5a..76f7dbfbc1b5 100644 --- a/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md +++ b/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md @@ -93,7 +93,7 @@ export interface CreateRsaKeyOptions extends CreateKeyOptions { // @public export class CryptographyClient { constructor(key: string | KeyVaultKey, credential: TokenCredential, pipelineOptions?: CryptographyClientOptions); - constructor(key: JsonWebKey); + constructor(key: JsonWebKey_2); decrypt(decryptParameters: DecryptParameters, options?: DecryptOptions): Promise; // @deprecated decrypt(algorithm: EncryptionAlgorithm, ciphertext: Uint8Array, options?: DecryptOptions): Promise; @@ -135,9 +135,9 @@ export interface DecryptResult { // @public export interface DeletedKey { id?: string; - key?: JsonWebKey; + key?: JsonWebKey_2; keyOperations?: KeyOperation[]; - keyType?: KeyType; + keyType?: KeyType_2; name: string; properties: KeyProperties & { readonly recoveryId?: string; @@ -205,7 +205,7 @@ export interface ImportKeyOptions extends coreClient.OperationOptions { } // @public -export interface JsonWebKey { +interface JsonWebKey_2 { crv?: KeyCurveName; d?: Uint8Array; dp?: Uint8Array; @@ -214,7 +214,7 @@ export interface JsonWebKey { k?: Uint8Array; keyOps?: KeyOperation[]; kid?: string; - kty?: KeyType; + kty?: KeyType_2; n?: Uint8Array; p?: Uint8Array; q?: Uint8Array; @@ -223,6 +223,7 @@ export interface JsonWebKey { x?: Uint8Array; y?: Uint8Array; } +export { JsonWebKey_2 as JsonWebKey } // @public export class KeyClient { @@ -231,7 +232,7 @@ export class KeyClient { beginDeleteKey(name: string, options?: BeginDeleteKeyOptions): Promise, DeletedKey>>; beginRecoverDeletedKey(name: string, options?: BeginRecoverDeletedKeyOptions): Promise, DeletedKey>>; createEcKey(name: string, options?: CreateEcKeyOptions): Promise; - createKey(name: string, keyType: KeyType, options?: CreateKeyOptions): Promise; + createKey(name: string, keyType: KeyType_2, options?: CreateKeyOptions): Promise; createOctKey(name: string, options?: CreateOctKeyOptions): Promise; createRsaKey(name: string, options?: CreateRsaKeyOptions): Promise; getCryptographyClient(keyName: string, options?: GetCryptographyClientOptions): CryptographyClient; @@ -239,7 +240,7 @@ export class KeyClient { getKey(name: string, options?: GetKeyOptions): Promise; getKeyRotationPolicy(keyName: string, options?: GetKeyRotationPolicyOptions): Promise; getRandomBytes(count: number, options?: GetRandomBytesOptions): Promise; - importKey(name: string, key: JsonWebKey, options?: ImportKeyOptions): Promise; + importKey(name: string, key: JsonWebKey_2, options?: ImportKeyOptions): Promise; listDeletedKeys(options?: ListDeletedKeysOptions): PagedAsyncIterableIterator; listPropertiesOfKeys(options?: ListPropertiesOfKeysOptions): PagedAsyncIterableIterator; listPropertiesOfKeyVersions(name: string, options?: ListPropertiesOfKeyVersionsOptions): PagedAsyncIterableIterator; @@ -327,14 +328,15 @@ export interface KeyRotationPolicyProperties { } // @public -export type KeyType = string; +type KeyType_2 = string; +export { KeyType_2 as KeyType } // @public export interface KeyVaultKey { id?: string; - key?: JsonWebKey; + key?: JsonWebKey_2; keyOperations?: KeyOperation[]; - keyType?: KeyType; + keyType?: KeyType_2; name: string; properties: KeyProperties; } diff --git a/sdk/purview/purview-scanning-rest/review/purview-scanning.api.md b/sdk/purview/purview-scanning-rest/review/purview-scanning.api.md index ba9654e91472..2b41451f6f75 100644 --- a/sdk/purview/purview-scanning-rest/review/purview-scanning.api.md +++ b/sdk/purview/purview-scanning-rest/review/purview-scanning.api.md @@ -2287,12 +2287,13 @@ export interface MitiScanProperties extends ScanProperties { } // @public (undocumented) -export interface Notification { +interface Notification_2 { // (undocumented) code?: number; // (undocumented) message?: string; } +export { Notification_2 as Notification } // @public (undocumented) export interface OperationResponse { @@ -2834,7 +2835,7 @@ export interface ScanBase extends ProxyResource { export interface ScanDiagnostics { exceptionCountMap?: Record; // (undocumented) - notifications?: Array; + notifications?: Array; } // @public (undocumented) diff --git a/sdk/quantum/quantum-jobs/review/quantum-jobs.api.md b/sdk/quantum/quantum-jobs/review/quantum-jobs.api.md index 07557af9ed2e..7bf7b030e9b7 100644 --- a/sdk/quantum/quantum-jobs/review/quantum-jobs.api.md +++ b/sdk/quantum/quantum-jobs/review/quantum-jobs.api.md @@ -183,7 +183,7 @@ export class QuantumJobClient extends coreClient.ServiceClient { // (undocumented) resourceGroupName: string; // (undocumented) - storage: Storage; + storage: Storage_2; // (undocumented) subscriptionId: string; // (undocumented) @@ -243,9 +243,10 @@ export interface SasUriResponse { } // @public -export interface Storage { +interface Storage_2 { sasUri(blobDetails: BlobDetails, options?: StorageSasUriOptionalParams): Promise; } +export { Storage_2 as Storage } // @public export interface StorageSasUriOptionalParams extends coreClient.OperationOptions {