Skip to content

Commit

Permalink
Make ConnectorClientOptions.baseUri optional (#2447)
Browse files Browse the repository at this point in the history
* Make ConnectorClientOptions.baseUri optional

* Add comment explaining optional baseUri
  • Loading branch information
EricDahlvang authored Jul 1, 2020
1 parent a1d5d33 commit 1cabb54
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/**
Expand Down

0 comments on commit 1cabb54

Please sign in to comment.