Skip to content

Commit ee09836

Browse files
Release v30.3.3 from PR #681
2 parents 582407d + 5c91857 commit ee09836

File tree

6 files changed

+15
-10
lines changed

6 files changed

+15
-10
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.3] - 2025-11-18
12+
### Fixed
13+
- Prepared `nullable: true` to fields that can return null values in schemas for Field and Roles schemas
14+
1115
## [30.3.2] - 2025-11-03
1216
### Fixed
1317
- Fixed return type for `filesApi.downloadFile` function
@@ -993,7 +997,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
993997
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
994998
* Fixed typo in lead example response (`crrency` to `currency`)
995999

996-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v30.3.2...HEAD
1000+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v30.3.3...HEAD
1001+
[30.3.3]: https://github.com/pipedrive/api-docs/compare/v30.3.2...v30.3.3
9971002
[30.3.2]: https://github.com/pipedrive/api-docs/compare/v30.3.1...v30.3.2
9981003
[30.3.1]: https://github.com/pipedrive/api-docs/compare/v30.3.0...v30.3.1
9991004
[30.3.0]: https://github.com/pipedrive/api-docs/compare/v30.2.1...v30.3.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.3.2",
3+
"version": "30.3.3",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v1/models/add-role-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ export interface AddRoleRequest {
2929
* The ID of the parent role
3030
* @type {number}
3131
*/
32-
'parent_role_id'?: number;
32+
'parent_role_id'?: number | null;
3333
}
3434

src/versions/v1/models/base-role-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface BaseRoleRequest {
2424
* The ID of the parent role
2525
* @type {number}
2626
*/
27-
'parent_role_id'?: number;
27+
'parent_role_id'?: number | null;
2828
/**
2929
* The name of the role
3030
* @type {string}

src/versions/v1/models/field.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface Field {
2424
* The ID of the field. Value is `null` in case of subfields.
2525
* @type {number}
2626
*/
27-
'id'?: number;
27+
'id'?: number | null;
2828
/**
2929
* The key of the field. For custom fields this is generated upon creation.
3030
* @type {string}
@@ -54,17 +54,17 @@ export interface Field {
5454
* The update time of the field
5555
* @type {string}
5656
*/
57-
'update_time'?: string;
57+
'update_time'?: string | null;
5858
/**
5959
* The ID of the user who created or most recently updated the field, only applicable for custom fields
6060
* @type {number}
6161
*/
62-
'last_updated_by_user_id'?: number;
62+
'last_updated_by_user_id'?: number | null;
6363
/**
6464
* The ID of the user who created the field
6565
* @type {number}
6666
*/
67-
'created_by_user_id'?: number;
67+
'created_by_user_id'?: number | null;
6868
/**
6969
* The active flag of the field
7070
* @type {boolean}

0 commit comments

Comments
 (0)