Skip to content

Commit

Permalink
Add NamedKeyCredential to exports for easier consumption (#20935)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby authored Apr 26, 2022
1 parent 9372a73 commit 25bc12c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions sdk/tables/data-tables/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- Updated our `@azure/core-tracing` dependency to the latest version (1.0.0)
- Notable changes include Removal of `@opentelemetry/api` as a transitive dependency and ensuring that the active context is properly propagated.
- Customers who would like to continue using OpenTelemetry driven tracing should visit our [OpenTelemetry Instrumentation](https://www.npmjs.com/package/@azure/opentelemetry-instrumentation-azure-sdk) package for instructions.
- Export NamedKeyCredential [#20935](https://github.com/Azure/azure-sdk-for-js/pull/20935). (A community contribution, courtesy of _[dhensby](https://github.com/dhensby))_

## 13.0.1 (2022-01-12)

Expand Down
2 changes: 2 additions & 0 deletions sdk/tables/data-tables/review/data-tables.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ export interface Metrics {
version?: string;
}

export { NamedKeyCredential }

// @public
export function odata(strings: TemplateStringsArray, ...values: unknown[]): string;

Expand Down
2 changes: 1 addition & 1 deletion sdk/tables/data-tables/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export { TableServiceClient } from "./TableServiceClient";
export { TableTransaction } from "./TableTransaction";
export { TableClient } from "./TableClient";
export { odata } from "./odata";
export { AzureNamedKeyCredential, AzureSASCredential } from "@azure/core-auth";
export { AzureNamedKeyCredential, AzureSASCredential, NamedKeyCredential } from "@azure/core-auth";
export { RestError } from "@azure/core-rest-pipeline";

0 comments on commit 25bc12c

Please sign in to comment.