Skip to content

Commit d3b079d

Browse files
author
pipedrive-bot
committed
Build 290 - version-patch
1 parent 3040085 commit d3b079d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
77
For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19).
88

99
## [Unreleased]
10+
### Fixed
11+
- Fixed return type for `filesApi.downloadFile` function
1012

1113
## [30.3.1] - 2025-11-03
1214
### Fixed

src/versions/v1/api/files-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export const FilesApiAxiosParamCreator = function (configuration?: Configuration
255255
baseOptions = configuration.baseOptions;
256256
}
257257

258-
const localVarRequestOptions = { method: 'GET', ...baseOptions };
258+
const localVarRequestOptions = { method: 'GET', responseType: 'arraybuffer' as const, ...baseOptions };
259259
const localVarHeaderParameter = {} as any;
260260
const localVarQueryParameter = {} as any;
261261

0 commit comments

Comments
 (0)