@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
26 lines • 1.28 kB
JavaScript
;
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AdaptiveCardActionExecuteResponseType = void 0;
/**
* Defines the types of responses that can be returned after executing an Adaptive Card action.
*/
var AdaptiveCardActionExecuteResponseType;
(function (AdaptiveCardActionExecuteResponseType) {
/**
* Replaces the Adaptive Card only for the user who interacted with it.
*/
AdaptiveCardActionExecuteResponseType[AdaptiveCardActionExecuteResponseType["REPLACE_FOR_INTERACTOR"] = 0] = "REPLACE_FOR_INTERACTOR";
/**
* Replaces the Adaptive Card for all users.
*/
AdaptiveCardActionExecuteResponseType[AdaptiveCardActionExecuteResponseType["REPLACE_FOR_ALL"] = 1] = "REPLACE_FOR_ALL";
/**
* Sends a new message containing an Adaptive Card to all users.
*/
AdaptiveCardActionExecuteResponseType[AdaptiveCardActionExecuteResponseType["NEW_MESSAGE_FOR_ALL"] = 2] = "NEW_MESSAGE_FOR_ALL";
})(AdaptiveCardActionExecuteResponseType || (exports.AdaptiveCardActionExecuteResponseType = AdaptiveCardActionExecuteResponseType = {}));
//# sourceMappingURL=adaptiveCardActionExecuteResponseType.js.map