aimpress-chatbot/node_modules/botbuilder-core/lib/userTokenSettings.js
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

26 lines
No EOL
870 B
JavaScript

"use strict";
/**
* @module botbuilder
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.OAuthLoginTimeoutMsValue = exports.TokenPollingSettingsKey = exports.OAuthLoginTimeoutKey = void 0;
/**
* TurnState key for the OAuth login timeout
*/
exports.OAuthLoginTimeoutKey = 'loginTimeout';
/**
* Name of the token polling settings key.
*/
exports.TokenPollingSettingsKey = 'tokenPollingSettings';
/**
* Default amount of time an OAuthCard will remain active (clickable and actively waiting for a token).
* After this time:
* (1) the OAuthCard will not allow the user to click on it.
* (2) any polling triggered by the OAuthCard will stop.
*/
exports.OAuthLoginTimeoutMsValue = 900000;
//# sourceMappingURL=userTokenSettings.js.map