Skip to content

Commit 582407d

Browse files
Release v30.3.2 from PR #680
2 parents 3040085 + 3bf6bc9 commit 582407d

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
88

99
## [Unreleased]
1010

11+
## [30.3.2] - 2025-11-03
12+
### Fixed
13+
- Fixed return type for `filesApi.downloadFile` function
14+
1115
## [30.3.1] - 2025-11-03
1216
### Fixed
1317
- Corrected `FieldResponse` schema to use `GetField` instead of `Field` to ensure GET responses accurately reflect all field types returned by the API
@@ -989,7 +993,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
989993
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
990994
* Fixed typo in lead example response (`crrency` to `currency`)
991995

992-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v30.3.1...HEAD
996+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v30.3.2...HEAD
997+
[30.3.2]: https://github.com/pipedrive/api-docs/compare/v30.3.1...v30.3.2
993998
[30.3.1]: https://github.com/pipedrive/api-docs/compare/v30.3.0...v30.3.1
994999
[30.3.0]: https://github.com/pipedrive/api-docs/compare/v30.2.1...v30.3.0
9951000
[30.2.1]: https://github.com/pipedrive/api-docs/compare/v30.2.0...v30.2.1

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pipedrive",
3-
"version": "30.3.1",
3+
"version": "30.3.2",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

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)