Skip to content

Commit fa19571

Browse files
Apply suggestions from code review
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 6d444c5 commit fa19571

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/sdk/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
### Added
88

99
- Added `ProxyResponse` type for makeProxyRequest
10-
- changed the location of connect DEBUG calls so they'll still show in the error case.
11-
10+
- changed the location of connect DEBUG calls so they'll still show in the
11+
error case.
1212
## [1.5.2] - 2025-04-15
1313

1414
### Added

packages/sdk/src/server/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export type ProxyTargetApiRequest = {
155155
* If the response has a Content-Type of application/json, the body will be parsed
156156
* and returned as an object. Otherwise the type will be a string.
157157
*/
158-
export type ProxyResponse = Record<string, any> | string;
158+
export type ProxyResponse = Record<string, unknown> | string;
159159

160160
/**
161161
* Creates a new instance of BackendClient with the provided options.

0 commit comments

Comments
 (0)