Skip to content

Commit

Permalink
fix: mark azure types deprecated (#3666) (#3668)
Browse files Browse the repository at this point in the history
Fixes #3662

Co-authored-by: Michael Richardson <[email protected]>

Co-authored-by: Michael Richardson <[email protected]>
  • Loading branch information
joshgummersall and mdrichardson authored May 10, 2021
1 parent 68bb7a6 commit ea6fefe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libraries/botbuilder-azure/src/azureBlobTranscriptStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export const checkedCollectionsKey = Symbol('checkedCollectionsKey');
* @remarks
* Each activity is stored as JSON blob with a structure of
* `container/{channelId]/{conversationId}/{Timestamp.ticks}-{activity.id}.json`.
*
* @deprecated This class is deprecated in favor of [BlobsTranscriptStore](xref:botbuilder-azure-blobs.BlobsTranscriptStore)
*/
export class AzureBlobTranscriptStore implements TranscriptStore {
/**
Expand Down
2 changes: 2 additions & 0 deletions libraries/botbuilder-azure/src/blobStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ const checkedCollections: { [key: string]: Promise<azure.BlobService.ContainerRe
* The BlobStorage implements its storage using a single Azure Storage Blob Container. Each entity
* is serialized into a JSON string and stored in an individual text blob. Each blob
* is named after the key which is encoded and ensure it conforms a valid blob name.
*
* @deprecated This class is deprecated in favor of [BlobsStorage](xref:botbuilder-azure-blobs.BlobsStorage)
*/
export class BlobStorage implements Storage {
private settings: BlobStorageSettings;
Expand Down

0 comments on commit ea6fefe

Please sign in to comment.