UNPKG

@microsoft/agents-copilotstudio-client

Version:

Microsoft Copilot Studio Client for JavaScript. Copilot Studio Client.

82 lines 2.51 kB
"use strict"; /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.PowerPlatformCloud = void 0; /** * Enum representing different Power Platform cloud environments. */ var PowerPlatformCloud; (function (PowerPlatformCloud) { /** * Unknown cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Unknown"] = -1] = "Unknown"; /** * Experimental cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Exp"] = 0] = "Exp"; /** * Development cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Dev"] = 1] = "Dev"; /** * Test cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Test"] = 2] = "Test"; /** * Pre-production cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Preprod"] = 3] = "Preprod"; /** * First release cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["FirstRelease"] = 4] = "FirstRelease"; /** * Production cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Prod"] = 5] = "Prod"; /** * Government cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Gov"] = 6] = "Gov"; /** * High security cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["High"] = 7] = "High"; /** * Department of Defense cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["DoD"] = 8] = "DoD"; /** * Mooncake cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Mooncake"] = 9] = "Mooncake"; /** * Ex cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Ex"] = 10] = "Ex"; /** * Rx cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Rx"] = 11] = "Rx"; /** * Private cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Prv"] = 12] = "Prv"; /** * Local cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Local"] = 13] = "Local"; /** * French government cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["GovFR"] = 14] = "GovFR"; /** * Other cloud environment. */ PowerPlatformCloud[PowerPlatformCloud["Other"] = 100] = "Other"; })(PowerPlatformCloud || (exports.PowerPlatformCloud = PowerPlatformCloud = {})); //# sourceMappingURL=powerPlatformCloud.js.map