UNPKG

@microsoft/agents-copilotstudio-client

Version:

Microsoft Copilot Studio Client for JavaScript. Copilot Studio Client.

72 lines (71 loc) 2.89 kB
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AgentType } from './agentType'; import { CopilotStudioConnectionSettings } from './copilotStudioConnectionSettings'; import { PowerPlatformCloud } from './powerPlatformCloud'; /** * Configuration options for establishing a connection to Copilot Studio. */ declare abstract class ConnectionOptions implements Omit<CopilotStudioConnectionSettings, 'cloud' | 'copilotAgentType'> { /** * The client ID of the application. * @deprecated This property will not be supported in future versions. Handle the auth properties in the agent. **/ appClientId?: string; /** * The tenant ID of the application. *@deprecated This property will not be supported in future versions. Handle the auth properties in the agent. **/ tenantId?: string; /** * The login authority to use for the connection. * @deprecated This property will not be supported in future versions. Handle the auth properties in the agent. **/ authority?: string; /** The environment ID of the application. */ environmentId?: string; /** The identifier of the agent. * @deprecated This property will not be supported in future versions. Use schemaName instead. **/ agentIdentifier?: string; /** The identifier of the agent. */ schemaName?: string; /** The cloud environment of the application. */ cloud?: PowerPlatformCloud | keyof typeof PowerPlatformCloud; /** The custom Power Platform cloud URL, if any. */ customPowerPlatformCloud?: string; /** The type of the Copilot agent. */ copilotAgentType?: AgentType | keyof typeof AgentType; /** The URL to connect directly to Copilot Studio endpoint */ directConnectUrl?: string; /** Flag to use the experimental endpoint if available */ useExperimentalEndpoint?: boolean; /** Flag to enable diagnostic logging. Default is false. */ enableDiagnostics?: boolean; } /** * Represents the settings required to establish a connection to Copilot Studio. */ export declare class ConnectionSettings extends ConnectionOptions { /** The cloud environment of the application. */ cloud?: PowerPlatformCloud; /** The type of the Copilot agent. */ copilotAgentType?: AgentType; /** * Default constructor for the ConnectionSettings class. */ constructor(); /** * Creates an instance of ConnectionSettings. * @param options Represents the settings required to establish a direct connection to the engine. */ constructor(options: ConnectionOptions); } /** * Loads the connection settings for Copilot Studio from environment variables. * @returns The connection settings. */ export declare const loadCopilotStudioConnectionSettingsFromEnv: () => ConnectionSettings; export {};