Skip to content

Commit c0bcbab

Browse files
author
pipedrive-bot
committed
Build 152 - version-patch
1 parent 98794f0 commit c0bcbab

File tree

3 files changed

+41
-4
lines changed

3 files changed

+41
-4
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
77
For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19).
88

99
## [Unreleased]
10+
### Fixed
11+
- Updated supported enum values for webhook types in the `GET /webhooks` endpoint
1012

1113
## [24.1.0] - 2025-02-06
1214
### Added

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)