diff --git a/libraries/botframework-connector/src/connectorApi/models/index.ts b/libraries/botframework-connector/src/connectorApi/models/index.ts index 7d6d733c44..de941a5c15 100644 --- a/libraries/botframework-connector/src/connectorApi/models/index.ts +++ b/libraries/botframework-connector/src/connectorApi/models/index.ts @@ -7,7 +7,11 @@ export * from "botframework-schema"; * An interface representing ConnectorClientOptions. */ export interface ConnectorClientOptions extends ServiceClientOptions { - baseUri: string; + /** + * (Optional) baseUri will be set automatically within BotFrameworkAdapter, + * but is required if using the ConnectorClient outside of the adapter. + */ + baseUri?: string; } /**