Skip to content

Commit

Permalink
Fix port issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sw-joelmut committed Mar 13, 2024
1 parent 52e1b9f commit 6a9c9ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const TypedOptions = z.object({
* Used when creating ConnectorClients.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
connectorClientOptions: z.object({}) as z.ZodObject<any, any, ConnectorClientOptions>,
connectorClientOptions: z.object({}).nonstrict() as z.ZodObject<any, any, ConnectorClientOptions>,
});

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class BotFrameworkClientImpl implements BotFrameworkClient {
) {
this.botFrameworkClientFetch ??= botFrameworkClientFetchImpl(this.connectorClientOptions);

ok(typeof botFrameworkClientFetch === 'function');
ok(typeof this.botFrameworkClientFetch === 'function');
}

private toJSON() {
Expand Down

0 comments on commit 6a9c9ff

Please sign in to comment.