Skip to content

Commit

Permalink
Merge pull request #316 from commercetools/chore/add-original_request…
Browse files Browse the repository at this point in the history
…-object-to-clientResponse

[Chore] Add Missing `originalRequest` Field to ClientResponse Interface
  • Loading branch information
jenschude authored Jun 3, 2024
2 parents da7dcf9 + c7b4d59 commit 0297c31
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export type ClientResponse<T = any> = {
body: T;
statusCode?: number;
headers?: Object;
originalRequest?: ClientRequest;
};
export type executeRequest = (request: ClientRequest) => Promise<ClientResponse>
Expand Down

0 comments on commit 0297c31

Please sign in to comment.