import { Activity, PagedResult, TranscriptInfo, TranscriptStore } from 'botbuilder-core'; /** * The file transcript store stores transcripts in file system with each activity as a file. * * @remarks * This class provides an interface to log all incoming and outgoing activities to the filesystem. * It implements the features necessary to work alongside the TranscriptLoggerMiddleware plugin. * When used in concert, your bot will automatically log all conversations. * * Below is the boilerplate code needed to use this in your app: * ```javascript * const { FileTranscriptStore, TranscriptLoggerMiddleware } = require('botbuilder'); * * adapter.use(new TranscriptLoggerMiddleware(new FileTranscriptStore(__dirname + '/transcripts/'))); * ``` */ export declare class FileTranscriptStore implements TranscriptStore { private static readonly PageSize; private readonly rootFolder; /** * Creates an instance of FileTranscriptStore. * @param folder Root folder where transcript will be stored. */ constructor(folder: string); /** * Log an activity to the transcript. * @param activity Activity being logged. */ logActivity(activity: Activity): Promise; /** * Get all activities associated with a conversation id (aka get the transcript). * @param channelId Channel Id. * @param conversationId Conversation Id. * @param continuationToken (Optional) Continuation token to page through results. * @param startDate (Optional) Earliest time to include. */ getTranscriptActivities(channelId: string, conversationId: string, continuationToken?: string, startDate?: Date): Promise>; /** * List all the logged conversations for a given channelId. * @param channelId Channel Id. * @param continuationToken (Optional) Continuation token to page through results. */ listTranscripts(channelId: string, continuationToken?: string): Promise>; /** * Delete a conversation and all of it's activities. * @param channelId Channel Id where conversation took place. * @param conversationId Id of the conversation to delete. */ deleteTranscript(channelId: string, conversationId: string): Promise; /** * Saves the [Activity](xref:botframework-schema.Activity) as a JSON file. * @param activity The [Activity](xref:botframework-schema.Activity) to transcript. * @param transcriptPath The path where the transcript will be saved. * @param activityFilename The name for the file. */ private saveActivity; /** * @private */ private getActivityFilename; /** * @private */ private getChannelFolder; /** * @private */ private getTranscriptFolder; /** * @private */ private sanitizeKey; } //# sourceMappingURL=fileTranscriptStore.d.ts.map