@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
24 lines • 1.1 kB
JavaScript
;
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthorizationHandlerStatus = void 0;
/**
* Represents the status of a handler registration attempt.
*/
var AuthorizationHandlerStatus;
(function (AuthorizationHandlerStatus) {
/** The handler has approved the request - validation passed */
AuthorizationHandlerStatus["APPROVED"] = "approved";
/** The handler registration is pending further action */
AuthorizationHandlerStatus["PENDING"] = "pending";
/** The handler has rejected the request - validation failed */
AuthorizationHandlerStatus["REJECTED"] = "rejected";
/** The handler has ignored the request - no action taken */
AuthorizationHandlerStatus["IGNORED"] = "ignored";
/** The handler requires revalidation */
AuthorizationHandlerStatus["REVALIDATE"] = "revalidate";
})(AuthorizationHandlerStatus || (exports.AuthorizationHandlerStatus = AuthorizationHandlerStatus = {}));
//# sourceMappingURL=types.js.map