Core library for interfacing with Azure Rest Clients
Last release 1 months ago
13 Jul 2026
Ships fairly regularly
a new release about every 2 weeks
Some releases are documented
notes for 16 of 30 stable releases
1 version withdrawn
withdrawn after publishing
5 years old
434 releases · first in 2021
Release timeline
434 releases since 2021Releases
- 1.1.4-alpha.20230630.130 Jun 2023pre-release
Nothing published for this version
- 1.1.4-alpha.20230613.213 Jun 2023pre-release
Nothing published for this version
- 1.1.4-alpha.20230530.230 May 2023pre-release
Nothing published for this version
- 1.1.34 May 2023
Nothing published for this version
- 1.1.3-alpha.20230504.14 May 2023pre-release
Nothing published for this version
- 1.1.3-alpha.20230419.219 Apr 2023pre-release
Nothing published for this version
- 1.1.26 Apr 2023
- 1.1.2-alpha.20230406.16 Apr 2023pre-release
Nothing published for this version
- 1.1.2-alpha.20230307.47 Mar 2023pre-release
Nothing published for this version
- 1.1.12 Mar 2023
Nothing published for this version
- 1.1.1-alpha.20230228.228 Feb 2023pre-release
Nothing published for this version
- 1.1.1-alpha.20230203.23 Feb 2023pre-release
Nothing published for this version
- 1.1.03 Feb 2023
Release notes
Open source →1.1.0 (2026-08-05)
Features Added
- Initial stable release of the Azure Device Update for IoT Hub client library for JavaScript, generated from TypeSpec.
- Added support for API version
2026-06-01, including the new optionaldownloadSecurityproperty onDeploymentso callers can choose the protocol the device should use when downloading update payload (defaults to"https").
- 1.0.15 Jan 2023
- 1.0.1-alpha.20221130.230 Nov 2022pre-release
Nothing published for this version
- 1.0.1-alpha.20221107.47 Nov 2022pre-release
Nothing published for this version
- 1.0.05 Aug 2022
Release notes
Open source →1.0.0 (2026-08-01)
This release migrates the package to the
@azure/ai-translation-documentname and a new client design. It replaces the previous@azure-rest/ai-translation-documentREST-level client (RLC) package.Features Added
- Added support for the
2026-03-01service API version. - Added
deploymentNametoTargetInputandDocumentStatusto support translating with a custom translation model. - Added
deploymentNameparameter to single document translation. - Added support for translating text within images:
translateTextWithinImageon batch and single document translation, and image-scan fields (imageCharacterDetected,imageCharged,totalImageScansSucceeded,totalImageScansFailed) onDocumentStatus.
Breaking Changes
- The package name changed from
@azure-rest/ai-translation-documentto@azure/ai-translation-document. - The REST-level client (RLC) surface (
client.path(...).post(...)) has been replaced with a modeled client surface exposingDocumentTranslationClientandSingleDocumentTranslationClient. See the README for migration examples.
Migration guide
-
Install the new package: replace
@azure-rest/ai-translation-documentwith@azure/ai-translation-document. -
Create the client: the default export factory is replaced by named clients.
- import DocumentTranslator from "@azure-rest/ai-translation-document"; - const client = DocumentTranslator(endpoint, credential); + import { DocumentTranslationClient } from "@azure/ai-translation-document"; + const client = new DocumentTranslationClient(endpoint, credential); -
Call operations: replace the
path(...).method()pattern with typed methods.- await client.path("/document/batches").post({ body: { inputs } }); + await client.startTranslation({ inputs }); -
Single document translation: use
SingleDocumentTranslationClient.- import DocumentTranslator from "@azure-rest/ai-translation-document"; - const client = DocumentTranslator(endpoint, credential); - await client.path("/document:translate").post({ ... }); + import { SingleDocumentTranslationClient } from "@azure/ai-translation-document"; + const client = new SingleDocumentTranslationClient(endpoint, credential); + await client.translate(targetLanguage, content); -
Responses: results are returned as typed objects and errors are thrown as
RestError, instead of checkingresponse.statuson a raw HTTP response.
Additional notes
Open source →1.0.0 (2026-08-04)
Features Added
- Initial stable release of the Azure AI Discovery client library for JavaScript, exposing
WorkspaceClient(conversations, investigations, tasks, tools) andBookshelfClient(knowledge bases).
Additional notes
Open source →1.0.0 (2026-07-23)
Features Added
This is the first stable release of the @azure/arm-connectedcache package. It introduces a new SDK generation with layered APIs, smaller bundles, and improved ergonomics. For more details, see the https://aka.ms/azsdk/js/sdk/quickstart.
Additional notes
Open source →1.0.0 (2026-06-12)
Features Added
This is the first stable version with the package of @azure/arm-weightsandbiases.
Additional notes
Open source →1.0.0 (2026-08-12)
Features Added
- Added secure, cross-platform executable resolution and process-launching primitives for Node.js. #39279
- Added support for the
- 1.0.0-beta.106 Jun 2022pre-release
Nothing published for this version
- 1.0.0-beta.97 Apr 2022pre-release
Nothing published for this version
- 1.0.0-beta.84 Nov 2021pre-release
Nothing published for this version
- 1.0.0-beta.72 Sept 2021pre-release
Nothing published for this version
- 1.0.0-beta.66 Aug 2021pre-release
- 1.0.0-beta.529 Jun 2021pre-releasewithdrawn: incorrect dev release
- 1.0.0-beta.427 May 2021pre-release
Release notes
Open source →Code | Docs
@azure/api-management-custom-widgets-tools
@azure/api-management-custom-widgets-tools
- 1.0.0-beta.327 May 2021pre-release
Release notes
Open source →1.0.0-beta.3 (2026-07-12)
Compared with version 1.0.0-beta.2
Features Added
- Added operation EntitiesOperations.addDataAnnotation
- Added operation EntitiesOperations.getDataAnnotations
- Added operation EntitiesOperations.getSignalRecommendations
- Added Interface AddDataAnnotationRequest
- Added Interface AzureResourceHealthSignal
- Added Interface AzureResourceHealthSignalStatus
- Added Interface DataAnnotation
- Added Interface EntitiesAddDataAnnotationOptionalParams
- Added Interface EntitiesGetDataAnnotationsOptionalParams
- Added Interface EntitiesGetSignalRecommendationsOptionalParams
- Added Interface GetDataAnnotationsRequest
- Added Interface GetDataAnnotationsResponse
- Added Interface GetSignalRecommendationsResponse
- Added Interface SignalConfiguration
- Interface AzureResourceSignals has a new optional parameter resourceHealth
- Interface DiscoveryRuleProperties has a new optional parameter addResourceHealthSignal
- Interface DiscoveryRulePropertiesCreate has a new optional parameter addResourceHealthSignal
- Interface EntityHistoryRequest has a new optional parameter nextMarker
- Interface EntityHistoryRequest has a new optional parameter top
- Interface EntityHistoryResponse has a new optional parameter nextMarker
- Interface SignalHistoryRequest has a new optional parameter nextMarker
- Interface SignalHistoryRequest has a new optional parameter top
- Interface SignalHistoryResponse has a new optional parameter nextMarker
- Interface SignalStatus has a new optional parameter additionalContext
- Interface ThresholdRuleV2 has a new optional parameter lookBackWindow
- Interface ThresholdRuleV2 has a new optional parameter sensitivity
- Added Type Alias DynamicThresholdSensitivity
- Added Type Alias LookBackWindow
- Added Type Alias ResourceHealthAvailabilityState
- Added Type Alias ResourceHealthAvailabilityStateSignalBehavior
- Added Type Alias ResourceHealthCategory
- Added Type Alias ResourceHealthReasonChronicity
- Added Type Alias ResourceHealthReasonType
- Added Enum KnownDynamicThresholdSensitivity
- Added Enum KnownLookBackWindow
- Added Enum KnownResourceHealthAvailabilityState
- Added Enum KnownResourceHealthAvailabilityStateSignalBehavior
- Added Enum KnownResourceHealthCategory
- Added Enum KnownResourceHealthReasonChronicity
- Added Enum KnownResourceHealthReasonType
- Enum KnownRefreshInterval has a new value PT15M
- Enum KnownSignalOperator has a new value Dynamic
- Enum KnownVersions has a new value V20260501Preview
Breaking Changes
- Operation EntitiesOperations.createOrUpdate has a new signature
- Operation EntitiesOperations.get has a new signature
- Operation EntitiesOperations.ingestHealthReport has a new signature
- Operation EntitiesOperations.listByHealthModel has a new signature
- Operation SignalDefinitionsOperations.createOrUpdate has a new signature
- Operation SignalDefinitionsOperations.get has a new signature
- Operation SignalDefinitionsOperations.listByHealthModel has a new signature
- Interface AzureResourceSignal no longer has parameter dimension
- Interface ResourceMetricSignalDefinitionProperties no longer has parameter dimension
- Parameter threshold of interface ThresholdRuleV2 is now optional
- 1.0.0-beta.212 May 2021pre-release
Release notes
Open source →1.0.0-beta.2 (2026-06-12)
Features Added
- Added operation EntitiesOperations.getHistory
- Added operation EntitiesOperations.getSignalHistory
- Added operation EntitiesOperations.ingestHealthReport
- Added Interface ApplicationInsightsTopologySpecification
- Added Interface AzureMonitorWorkspaceSignals
- Added Interface AzureResourceSignal
- Added Interface AzureResourceSignals
- Added Interface DependenciesSignalGroupV2
- Added Interface DiscoveryError
- Added Interface DiscoveryRulePropertiesCreate
- Added Interface DiscoveryRuleResourceCreate
- Added Interface DiscoveryRuleSpecification
- Added Interface EntitiesGetHistoryOptionalParams
- Added Interface EntitiesGetSignalHistoryOptionalParams
- Added Interface EntitiesIngestHealthReportOptionalParams
- Added Interface EntityHistoryRequest
- Added Interface EntityHistoryResponse
- Added Interface ExternalSignal
- Added Interface ExternalSignalGroup
- Added Interface HealthReportEvaluationRule
- Added Interface HealthReportRequest
- Added Interface HealthStateTransition
- Added Interface LogAnalyticsSignal
- Added Interface LogAnalyticsSignals
- Added Interface PrometheusMetricsSignal
- Added Interface ResourceGraphQuerySpecification
- Added Interface SignalGroups
- Added Interface SignalHistoryDataPoint
- Added Interface SignalHistoryRequest
- Added Interface SignalHistoryResponse
- Added Interface SignalInstanceProperties
- Added Interface SignalStatus
- Added Interface ThresholdRuleV2
- Interface AuthenticationSettingsCreateOrUpdateOptionalParams has a new optional parameter updateIntervalInMs
- Interface AuthenticationSettingsDeleteOptionalParams has a new optional parameter updateIntervalInMs
- Interface CloudHealthClientOptionalParams has a new optional parameter cloudSetting
- Interface DiscoveryRuleProperties has a new optional parameter error
- Interface DiscoveryRulesCreateOrUpdateOptionalParams has a new optional parameter updateIntervalInMs
- Interface DiscoveryRulesDeleteOptionalParams has a new optional parameter updateIntervalInMs
- Interface EntitiesCreateOrUpdateOptionalParams has a new optional parameter updateIntervalInMs
- Interface EntitiesDeleteOptionalParams has a new optional parameter updateIntervalInMs
- Interface EntityProperties has a new optional parameter signalGroups
- Interface EntityProperties has a new optional parameter tags
- Interface LogAnalyticsQuerySignalDefinitionProperties has a new optional parameter tags
- Interface PrometheusMetricsSignalDefinitionProperties has a new optional parameter tags
- Interface RelationshipProperties has a new optional parameter tags
- Interface RelationshipsCreateOrUpdateOptionalParams has a new optional parameter updateIntervalInMs
- Interface RelationshipsDeleteOptionalParams has a new optional parameter updateIntervalInMs
- Interface ResourceMetricSignalDefinitionProperties has a new optional parameter tags
- Interface SignalDefinitionProperties has a new optional parameter tags
- Interface SignalDefinitionsCreateOrUpdateOptionalParams has a new optional parameter updateIntervalInMs
- Interface SignalDefinitionsDeleteOptionalParams has a new optional parameter updateIntervalInMs
- Added Type Alias AzureSupportedClouds
- Added Type Alias DependenciesAggregationUnit
- Added Type Alias DiscoveryRuleKind
- Added Type Alias DiscoveryRuleSpecificationUnion
- Added Type Alias SignalInstancePropertiesUnion
- Added Enum AzureClouds
- Added Enum KnownDependenciesAggregationUnit
- Added Enum KnownDiscoveryRuleKind
- Enum KnownDependenciesAggregationType has a new value MaxNotHealthy
- Enum KnownDependenciesAggregationType has a new value MinHealthy
- Enum KnownHealthState has a new value Unhealthy
- Enum KnownSignalKind has a new value ExternalSignal
- Enum KnownSignalOperator has a new value Equal
- Enum KnownSignalOperator has a new value GreaterThanOrEqual
- Enum KnownSignalOperator has a new value LessThan
- Enum KnownSignalOperator has a new value LessThanOrEqual
- Enum KnownSignalOperator has a new value NotEqual
- Enum KnownVersions has a new value V20260101Preview
Breaking Changes
- Operation DiscoveryRules.createOrUpdate has a new signature
- Operation DiscoveryRules.get has a new signature
- Operation DiscoveryRules.listByHealthModel has a new signature
- Operation SignalDefinitions.createOrUpdate has a new signature
- Operation SignalDefinitions.get has a new signature
- Operation SignalDefinitions.listByHealthModel has a new signature
- Removed Interface AzureMonitorWorkspaceSignalGroup
- Removed Interface AzureResourceSignalGroup
- Removed Interface DependenciesSignalGroup
- Removed Interface DynamicDetectionRule
- Removed Interface HealthModelUpdateProperties
- Removed Interface LogAnalyticsSignalGroup
- Removed Interface ModelDiscoverySettings
- Removed Interface SignalAssignment
- Removed Interface SignalGroup
- Removed Interface ThresholdRule
- Interface DiscoveryRuleProperties has a new required parameter specification
- Type of parameter degradedRule of interface EvaluationRule is changed from ThresholdRule to ThresholdRuleV2
- Type of parameter unhealthyRule of interface EvaluationRule is changed from ThresholdRule to ThresholdRuleV2
- Interface DiscoveryRuleProperties no longer has parameter deletionDate
- Interface DiscoveryRuleProperties no longer has parameter errorMessage
- Interface DiscoveryRuleProperties no longer has parameter numberOfDiscoveredEntities
- Interface DiscoveryRuleProperties no longer has parameter resourceGraphQuery
- Interface EntityProperties no longer has parameter deletionDate
- Interface EntityProperties no longer has parameter kind
- Interface EntityProperties no longer has parameter labels
- Interface EntityProperties no longer has parameter signals
- Interface EvaluationRule no longer has parameter dynamicDetectionRule
- Interface HealthModelProperties no longer has parameter dataplaneEndpoint
- Interface HealthModelProperties no longer has parameter discovery
- Interface HealthModelUpdate no longer has parameter properties
- Interface LogAnalyticsQuerySignalDefinitionProperties no longer has parameter deletionDate
- Interface LogAnalyticsQuerySignalDefinitionProperties no longer has parameter labels
- Interface PrometheusMetricsSignalDefinitionProperties no longer has parameter deletionDate
- Interface PrometheusMetricsSignalDefinitionProperties no longer has parameter labels
- Interface RelationshipProperties no longer has parameter deletionDate
- Interface RelationshipProperties no longer has parameter labels
- Interface ResourceMetricSignalDefinitionProperties no longer has parameter deletionDate
- Interface ResourceMetricSignalDefinitionProperties no longer has parameter labels
- Interface SignalDefinitionProperties no longer has parameter deletionDate
- Interface SignalDefinitionProperties no longer has parameter labels
- Parameter unhealthyRule of interface EvaluationRule is now required
- Removed Type Alias DynamicThresholdDirection
- Removed Type Alias DynamicThresholdModel
- Removed Enum KnownDynamicThresholdDirection
- Removed Enum KnownDynamicThresholdModel
- Enum KnownDependenciesAggregationType no longer has value Thresholds
- Enum KnownHealthState no longer has value Error
- Enum KnownSignalOperator no longer has value Equals
- Enum KnownSignalOperator no longer has value GreaterOrEquals
- Enum KnownSignalOperator no longer has value LowerOrEquals
- Enum KnownSignalOperator no longer has value LowerThan
Additional notes
Open source →Code | Docs
@azure/communication-administration
@azure/communication-administration
- 1.0.0-beta.122 Apr 2021pre-release
- 1.0.0-alpha.20221020.220 Oct 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220923.123 Sept 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220920.420 Sept 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220815.215 Aug 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220805.45 Aug 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220725.325 Jul 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220527.327 May 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220518.218 May 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220506.26 May 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220421.221 Apr 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220420.220 Apr 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220419.419 Apr 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220415.215 Apr 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220406.36 Apr 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220322.122 Mar 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220315.115 Mar 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220310.310 Mar 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220309.59 Mar 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220307.77 Mar 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220304.14 Mar 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220211.111 Feb 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220204.44 Feb 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220131.331 Jan 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220112.112 Jan 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20220104.54 Jan 2022pre-release
Nothing published for this version
- 1.0.0-alpha.20211214.414 Dec 2021pre-release
Nothing published for this version
- 1.0.0-alpha.20211206.106 Dec 2021pre-release
Nothing published for this version
- 1.0.0-alpha.20211123.323 Nov 2021pre-release
Nothing published for this version
- 1.0.0-alpha.20211105.15 Nov 2021pre-release
Nothing published for this version
- 1.0.0-alpha.20211104.54 Nov 2021pre-release
Nothing published for this version
- 1.0.0-alpha.20211103.13 Nov 2021pre-release
Nothing published for this version
- 1.0.0-alpha.20210930.230 Sept 2021pre-release
Nothing published for this version
- 1.0.0-alpha.20210903.33 Sept 2021pre-release
Nothing published for this version