Skip to content

Commit 37913e9

Browse files
Release v30.9.1 from PR #693
2 parents 18e633b + f2b3792 commit 37913e9

6 files changed

Lines changed: 24 additions & 4 deletions

File tree

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.9.1] - 2026-01-27
12+
### Added
13+
- Added `GET /api/v2/persons/{id}/picture` endpoint to retrieve picture information for a specific person, including ID, file size, and URLs for both 128x128 (thumbnail) and 512x512 (full-size) versions of the person's profile picture
14+
1115
## [30.9.0] - 2026-01-27
1216
### Added
1317
- Added `GET /api/v2/persons/{id}/picture` endpoint to retrieve picture information for a specific person, including ID, file size, and URLs for both 128x128 (thumbnail) and 512x512 (full-size) versions of the person's profile picture
@@ -1058,7 +1062,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
10581062
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
10591063
* Fixed typo in lead example response (`crrency` to `currency`)
10601064

1061-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v30.9.0...HEAD
1065+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v30.9.1...HEAD
1066+
[30.9.1]: https://github.com/pipedrive/api-docs/compare/v30.9.0...v30.9.1
10621067
[30.9.0]: https://github.com/pipedrive/api-docs/compare/v30.8.1...v30.9.0
10631068
[30.8.1]: https://github.com/pipedrive/api-docs/compare/v30.8.0...v30.8.1
10641069
[30.8.0]: https://github.com/pipedrive/api-docs/compare/v30.7.0...v30.8.0

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.9.0",
3+
"version": "30.9.1",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v2/models/activity-item-location.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ export interface ActivityItemLocation {
6161
*/
6262
'street_number'?: string;
6363
/**
64+
* Subpremise (e.g. apartment/suite number) of the activity
65+
* @type {string}
66+
*/
67+
'subpremise'?: string;
68+
/**
6469
* Postal code of the activity
6570
* @type {string}
6671
*/

src/versions/v2/models/get-persons-response-all-of-data-inner-postal-address.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ export interface GetPersonsResponseAllOfDataInnerPostalAddress {
6161
*/
6262
'street_number'?: string;
6363
/**
64+
* Subpremise (e.g. apartment/suite number) of the person
65+
* @type {string}
66+
*/
67+
'subpremise'?: string;
68+
/**
6469
* Postal code of the person
6570
* @type {string}
6671
*/

src/versions/v2/models/organization-item-address.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ export interface OrganizationItemAddress {
6161
*/
6262
'street_number'?: string;
6363
/**
64+
* Subpremise (e.g. apartment/suite number) of the organization
65+
* @type {string}
66+
*/
67+
'subpremise'?: string;
68+
/**
6469
* Postal code of the organization
6570
* @type {string}
6671
*/

0 commit comments

Comments
 (0)