Skip to content

Commit 24e88a0

Browse files
Release v24.1.1 from PR #599
2 parents 98794f0 + 9575e4a commit 24e88a0

File tree

5 files changed

+48
-8
lines changed

5 files changed

+48
-8
lines changed

.gitignore

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
1-
wwwroot/*.js
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18+
.grunt
19+
20+
# node-waf configuration
21+
.lock-wscript
22+
23+
# Compiled binary addons (http://nodejs.org/api/addons.html)
24+
build/Release
25+
26+
# Dependency directory
227
node_modules
3-
typings
28+
29+
# Optional npm cache directory
30+
.npm
31+
32+
# Optional REPL history
33+
.node_repl_history
34+
35+
.openapi-generator
36+
.idea
437
dist
5-
.idea
38+
wwwroot/*.js
39+
typings

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+
## [24.1.1] - 2025-02-11
12+
### Fixed
13+
- Updated supported enum values for webhook types in the `GET /webhooks` endpoint
14+
1115
## [24.1.0] - 2025-02-06
1216
### Added
1317

@@ -752,7 +756,8 @@ structure
752756
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
753757
* Fixed typo in lead example response (`crrency` to `currency`)
754758

755-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v24.1.0...HEAD
759+
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v24.1.1...HEAD
760+
[24.1.1]: https://github.com/pipedrive/api-docs/compare/v24.1.0...v24.1.1
756761
[24.1.0]: https://github.com/pipedrive/api-docs/compare/v24.0.0...v24.1.0
757762
[24.0.0]: https://github.com/pipedrive/api-docs/compare/v23.4.3...v24.0.0
758763
[23.4.3]: https://github.com/pipedrive/api-docs/compare/v23.4.2...v23.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": "24.1.0",
3+
"version": "24.1.1",
44
"description": "Pipedrive REST client for NodeJS",
55
"license": "MIT",
66
"homepage": "https://developers.pipedrive.com",

src/versions/v1/models/base-webhook.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ export interface BaseWebhook {
120120
export type BaseWebhookIsActiveConst = typeof BaseWebhookIsActiveConst[keyof typeof BaseWebhookIsActiveConst];
121121
export const BaseWebhookTypeConst = {
122122
general: 'general',
123-
app: 'app'
123+
application: 'application',
124+
automation: 'automation'
124125
} as const;
125126

126127
export type BaseWebhookTypeConst = typeof BaseWebhookTypeConst[keyof typeof BaseWebhookTypeConst];

0 commit comments

Comments
 (0)