Skip to content

Commit b4adcc4

Browse files
Release v33.6.1 from PR #742
2 parents 95f235e + 260e6d6 commit b4adcc4

7 files changed

Lines changed: 23 additions & 13 deletions

File tree

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [33.6.1] - 2026-08-13
12+
### Fixed
13+
- Added missing `nova` value to the `app` enum returned by `GET /v1/users` in the `user_access` array — accounts with Nova enabled were returning `"app": "nova"`, a value the generated type definitions didn't account for
14+
- Added missing `partnership` and `nova` values to the `app` field on each permission set and to the `app` query parameter (`GET /permissionSets`) — same gap for accounts with a permission set for those apps
15+
1116
## [33.6.0] - 2026-08-06
1217
### Added
1318
- Added `website`, `linkedin`, `industry`, `annual_revenue`, and `employee_count` as writable fields to v2 organization request body (`POST /api/v2/organizations`, `PATCH /api/v2/organizations/{id}`)
@@ -1309,7 +1314,8 @@ Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.0
13091314
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
13101315
* Fixed typo in lead example response (`crrency` to `currency`)
13111316

1312-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v33.6.0...HEAD
1317+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v33.6.1...HEAD
1318+
[33.6.1]: https://github.com/pipedrive/api-docs/compare/v33.6.0...v33.6.1
13131319
[33.6.0]: https://github.com/pipedrive/api-docs/compare/v33.5.0...v33.6.0
13141320
[33.5.0]: https://github.com/pipedrive/api-docs/compare/v33.4.3...v33.5.0
13151321
[33.4.3]: https://github.com/pipedrive/api-docs/compare/v33.4.2...v33.4.3

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

src/versions/v1/api/permission-sets-api.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@ export const PermissionSetsApiAxiosParamCreator = function (configuration?: Conf
128128
/**
129129
* Returns data about all permission sets.
130130
* @summary Get all permission sets
131-
* @param {'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings'} [app] The app to filter the permission sets by
131+
* @param {'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings' | 'partnership' | 'nova'} [app] The app to filter the permission sets by
132132
133133
* @throws {RequiredError}
134134
*/
135-
getPermissionSets: async (app?: 'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings', ): Promise<RequestArgs> => {
135+
getPermissionSets: async (app?: 'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings' | 'partnership' | 'nova', ): Promise<RequestArgs> => {
136136
const localVarPath = `/permissionSets`;
137137
// use dummy base URL string because the URL constructor only accepts absolute URLs.
138138
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -205,11 +205,11 @@ export const PermissionSetsApiFp = function(configuration?: Configuration) {
205205
/**
206206
* Returns data about all permission sets.
207207
* @summary Get all permission sets
208-
* @param {'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings'} [app] The app to filter the permission sets by
208+
* @param {'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings' | 'partnership' | 'nova'} [app] The app to filter the permission sets by
209209
210210
* @throws {RequiredError}
211211
*/
212-
async getPermissionSets(app?: 'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings', ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetPermissionSetsResponse>> {
212+
async getPermissionSets(app?: 'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings' | 'partnership' | 'nova', ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<GetPermissionSetsResponse>> {
213213
const localVarAxiosArgs = await localVarAxiosParamCreator.getPermissionSets(app, );
214214
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
215215
},
@@ -306,10 +306,10 @@ export interface PermissionSetsApiGetPermissionSetAssignmentsRequest {
306306
export interface PermissionSetsApiGetPermissionSetsRequest {
307307
/**
308308
* The app to filter the permission sets by
309-
* @type {'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings'}
309+
* @type {'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings' | 'partnership' | 'nova'}
310310
* @memberof PermissionSetsApiGetPermissionSets
311311
*/
312-
readonly app?: 'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings'
312+
readonly app?: 'sales' | 'projects' | 'campaigns' | 'global' | 'account_settings' | 'partnership' | 'nova'
313313
}
314314

315315
/**

src/versions/v1/models/permission-set.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ export interface PermissionSet {
5757
projects: 'projects',
5858
campaigns: 'campaigns',
5959
global: 'global',
60-
account_settings: 'account_settings'
60+
account_settings: 'account_settings',
61+
partnership: 'partnership',
62+
nova: 'nova'
6163
} as const;
6264

6365
export type PermissionSetAppConst = typeof PermissionSetAppConst[keyof typeof PermissionSetAppConst];

src/versions/v1/models/user-access.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export interface UserAccess {
4343
campaigns: 'campaigns',
4444
projects: 'projects',
4545
account_settings: 'account_settings',
46-
partnership: 'partnership'
46+
partnership: 'partnership',
47+
nova: 'nova'
4748
} as const;
4849

4950
export type UserAccessAppConst = typeof UserAccessAppConst[keyof typeof UserAccessAppConst];

src/versions/v1/models/user-access1.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export interface UserAccess1 {
4343
campaigns: 'campaigns',
4444
projects: 'projects',
4545
account_settings: 'account_settings',
46-
partnership: 'partnership'
46+
partnership: 'partnership',
47+
nova: 'nova'
4748
} as const;
4849

4950
export type UserAccess1AppConst = typeof UserAccess1AppConst[keyof typeof UserAccess1AppConst];

0 commit comments

Comments
 (0)