Skip to content

Commit 1334a08

Browse files
Release v27.2.1 from PR #648
2 parents fcb5367 + 5102ba5 commit 1334a08

File tree

6 files changed

+28
-5
lines changed

6 files changed

+28
-5
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [27.2.1] - 2025-06-09
12+
### Added
13+
- Documented `address` property in the Organization v2 API for add and update endpoints:
14+
- `POST /v2/organizations`
15+
- `PATCH /v2/organizations/{id}`
16+
1117
## [27.2.0] - 2025-06-02
1218
### Changed
1319
- Bump `axios` from `1.3.3` to `1.9.0`
@@ -894,7 +900,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
894900
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
895901
* Fixed typo in lead example response (`crrency` to `currency`)
896902

897-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v27.2.0...HEAD
903+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v27.2.1...HEAD
904+
[27.2.1]: https://github.com/pipedrive/api-docs/compare/v27.2.0...v27.2.1
898905
[27.2.0]: https://github.com/pipedrive/api-docs/compare/v27.1.1...v27.2.0
899906
[27.1.1]: https://github.com/pipedrive/api-docs/compare/v27.1.0...v27.1.1
900907
[27.1.0]: https://github.com/pipedrive/api-docs/compare/v27.0.1...v27.1.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": "27.2.0",
3+
"version": "27.2.1",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v2/models/add-organization-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

16+
// May contain unused imports in some cases
17+
// @ts-ignore
18+
import { OrganizationItemAddress } from './organization-item-address';
1619

1720
/**
1821
*
@@ -50,5 +53,10 @@ export interface AddOrganizationRequest {
5053
* @type {Array<number>}
5154
*/
5255
'label_ids'?: Array<number>;
56+
/**
57+
*
58+
* @type {OrganizationItemAddress}
59+
*/
60+
'address'?: OrganizationItemAddress;
5361
}
5462

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
/**
18-
*
18+
* The address of the organization
1919
* @export
2020
* @interface OrganizationItemAddress
2121
*/

src/versions/v2/models/update-organization-request.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515

16+
// May contain unused imports in some cases
17+
// @ts-ignore
18+
import { OrganizationItemAddress } from './organization-item-address';
1619

1720
/**
1821
*
@@ -50,5 +53,10 @@ export interface UpdateOrganizationRequest {
5053
* @type {Array<number>}
5154
*/
5255
'label_ids'?: Array<number>;
56+
/**
57+
*
58+
* @type {OrganizationItemAddress}
59+
*/
60+
'address'?: OrganizationItemAddress;
5361
}
5462

0 commit comments

Comments
 (0)