Skip to content

Commit

Permalink
fix types after merging
Browse files Browse the repository at this point in the history
  • Loading branch information
guskovaue committed Oct 25, 2023
1 parent 7d1faae commit 4a89ae2
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 @@ -422,7 +422,7 @@ export class ActionsClient {
/**
* Get all system connectors
*/
public async getAllSystemConnectors(): Promise<FindConnectorResult[]> {
public async getAllSystemConnectors(): Promise<ConnectorWithExtraFindData[]> {
return getAllSystemConnectors({ context: this.context });
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export async function getAllSystemConnectors({
context,
}: {
context: GetAllParams['context'];
}): Promise<FindConnectorResult[]> {
}): Promise<ConnectorWithExtraFindData[]> {
try {
await context.authorization.ensureAuthorized({ operation: 'get' });
} catch (error) {
Expand Down

0 comments on commit 4a89ae2

Please sign in to comment.