UNPKG

botbuilder-dialogs

Version:

A dialog stack based conversation manager for Microsoft BotBuilder.

33 lines 1.16 kB
"use strict"; /** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DialogPath = void 0; /** * Defines path for available dialogs. */ class DialogPath { } exports.DialogPath = DialogPath; /// Counter of emitted events. DialogPath.eventCounter = 'dialog.eventCounter'; /// Currently expected properties. DialogPath.expectedProperties = 'dialog.expectedProperties'; /// Default operation to use for entities where there is no identified operation entity. DialogPath.defaultOperation = 'dialog.defaultOperation'; /// Last surfaced entity ambiguity event. DialogPath.lastEvent = 'dialog.lastEvent'; /// Currently required properties. DialogPath.requiredProperties = 'dialog.requiredProperties'; /// Number of retries for the current Ask. DialogPath.retries = 'dialog.retries'; /// Last intent. DialogPath.lastIntent = 'dialog.lastIntent'; /// Last trigger event: defined in FormEvent, ask, clarifyEntity etc.. DialogPath.lastTriggerEvent = 'dialog.lastTriggerEvent'; //# sourceMappingURL=dialogPath.js.map