Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build 170 - version-major #607

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
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).

## [Unreleased]
### Changed
- Updated Webhooks endpoints to v2, including available event_action and event_object properties

## [24.2.0] - 2025-03-12
### Added
Expand Down
35 changes: 0 additions & 35 deletions docs/v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,45 +9,10 @@ ActivitiesApi | deleteActivity | **DELETE** /activities/{id} | Delete an activit
ActivitiesApi | getActivities | **GET** /activities | Get all activities
ActivitiesApi | getActivity | **GET** /activities/{id} | Get details of an activity
ActivitiesApi | updateActivity | **PATCH** /activities/{id} | Update an activity
BetaApi | addActivity | **POST** /activities | Add a new activity
BetaApi | addDeal | **POST** /deals | Add a new deal
BetaApi | addDealProduct | **POST** /deals/{id}/products | Add a product to a deal
BetaApi | addOrganization | **POST** /organizations | Add a new organization
BetaApi | addPerson | **POST** /persons | Add a new person
BetaApi | deleteActivity | **DELETE** /activities/{id} | Delete an activity
BetaApi | deleteAdditionalDiscount | **DELETE** /deals/{id}/discounts/{discount_id} | Delete a discount from a deal
BetaApi | deleteDeal | **DELETE** /deals/{id} | Delete a deal
BetaApi | deleteDealProduct | **DELETE** /deals/{id}/products/{product_attachment_id} | Delete an attached product from a deal
BetaApi | deleteInstallment | **DELETE** /deals/{id}/installments/{installment_id} | Delete an installment from a deal
BetaApi | deleteOrganization | **DELETE** /organizations/{id} | Delete a organization
BetaApi | deletePerson | **DELETE** /persons/{id} | Delete a person
BetaApi | getActivities | **GET** /activities | Get all activities
BetaApi | getActivity | **GET** /activities/{id} | Get details of an activity
BetaApi | getAdditionalDiscounts | **GET** /deals/{id}/discounts | List discounts added to a deal
BetaApi | getDeal | **GET** /deals/{id} | Get details of a deal
BetaApi | getDealProducts | **GET** /deals/{id}/products | List products attached to a deal
BetaApi | getDeals | **GET** /deals | Get all deals
BetaApi | getDealsProducts | **GET** /deals/products | Get deal products of several deals
BetaApi | getInstallments | **GET** /deals/installments | List installments added to a list of deals
BetaApi | getOrganization | **GET** /organizations/{id} | Get details of a organization
BetaApi | getOrganizations | **GET** /organizations | Get all organizations
BetaApi | getPerson | **GET** /persons/{id} | Get details of a person
BetaApi | getPersons | **GET** /persons | Get all persons
BetaApi | postAdditionalDiscount | **POST** /deals/{id}/discounts | Add a discount to a deal
BetaApi | postInstallment | **POST** /deals/{id}/installments | Add an installment to a deal
BetaApi | searchDeals | **GET** /deals/search | Search deals
BetaApi | searchItem | **GET** /itemSearch | Perform a search from multiple item types
BetaApi | searchItemByField | **GET** /itemSearch/field | Perform a search using a specific field from an item type
BetaApi | searchLeads | **GET** /leads/search | Search leads
BetaApi | searchOrganization | **GET** /organizations/search | Search organizations
BetaApi | searchPersons | **GET** /persons/search | Search persons
BetaApi | updateActivity | **PATCH** /activities/{id} | Update an activity
BetaApi | updateAdditionalDiscount | **PATCH** /deals/{id}/discounts/{discount_id} | Update a discount added to a deal
BetaApi | updateDeal | **PATCH** /deals/{id} | Update a deal
BetaApi | updateDealProduct | **PATCH** /deals/{id}/products/{product_attachment_id} | Update the product attached to a deal
BetaApi | updateInstallment | **PATCH** /deals/{id}/installments/{installment_id} | Update an installment added to a deal
BetaApi | updateOrganization | **PATCH** /organizations/{id} | Update a organization
BetaApi | updatePerson | **PATCH** /persons/{id} | Update a person
DealsApi | addDeal | **POST** /deals | Add a new deal
DealsApi | addDealProduct | **POST** /deals/{id}/products | Add a product to a deal
DealsApi | deleteAdditionalDiscount | **DELETE** /deals/{id}/discounts/{discount_id} | Delete a discount from a deal
Expand Down
8 changes: 4 additions & 4 deletions src/versions/v1/api/webhooks-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import { WebhooksBadRequestResponse } from '../models';
export const WebhooksApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `added.deal` for any newly added deals, `deleted.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `create.deal` for any newly added deals, `delete.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks-v2?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* @summary Create a new Webhook
* @param {AddWebhookRequest} [AddWebhookRequest]

Expand Down Expand Up @@ -172,7 +172,7 @@ export const WebhooksApiFp = function(configuration?: Configuration) {
const localVarAxiosParamCreator = WebhooksApiAxiosParamCreator(configuration)
return {
/**
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `added.deal` for any newly added deals, `deleted.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `create.deal` for any newly added deals, `delete.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks-v2?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* @summary Create a new Webhook
* @param {AddWebhookRequest} [AddWebhookRequest]

Expand Down Expand Up @@ -214,7 +214,7 @@ export const WebhooksApiFactory = function (configuration?: Configuration, baseP
const localVarFp = WebhooksApiFp(configuration)
return {
/**
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `added.deal` for any newly added deals, `deleted.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `create.deal` for any newly added deals, `delete.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks-v2?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* @summary Create a new Webhook
* @param {WebhooksApiAddWebhookRequest} requestParameters Request parameters.

Expand Down Expand Up @@ -281,7 +281,7 @@ export interface WebhooksApiDeleteWebhookRequest {
*/
export class WebhooksApi extends BaseAPI {
/**
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `added.deal` for any newly added deals, `deleted.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* Creates a new Webhook and returns its details. Note that specifying an event which triggers the Webhook combines 2 parameters - `event_action` and `event_object`. E.g., use `*.*` for getting notifications about all events, `create.deal` for any newly added deals, `delete.persons` for any deleted persons, etc. See <a href=\"https://pipedrive.readme.io/docs/guide-for-webhooks-v2?ref=api_reference\" target=\"_blank\" rel=\"noopener noreferrer\">the guide for Webhooks</a> for more details.
* @summary Create a new Webhook
* @param {WebhooksApiAddWebhookRequest} requestParameters Request parameters.

Expand Down
11 changes: 5 additions & 6 deletions src/versions/v1/models/add-webhook-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,25 +51,24 @@ export interface AddWebhookRequest {
*/
'http_auth_password'?: string;
/**
* The webhook\'s version. NB! Webhooks v2 will become the default from March 17th, 2025. See <a href=\"https://developers.pipedrive.com/changelog/post/breaking-change-webhooks-v2-will-become-the-new-default-version\" target=\"_blank\" rel=\"noopener noreferrer\">this Changelog post</a> for more details.
* The webhook\'s version. NB! Webhooks v2 is the default from March 17th, 2025. See <a href=\"https://developers.pipedrive.com/changelog/post/breaking-change-webhooks-v2-will-become-the-new-default-version\" target=\"_blank\" rel=\"noopener noreferrer\">this Changelog post</a> for more details.
* @type {string}
*/
'version'?: AddWebhookRequestVersionConst;
}

export const AddWebhookRequestEventActionConst = {
added: 'added',
updated: 'updated',
merged: 'merged',
deleted: 'deleted',
create: 'create',
change: 'change',
delete: 'delete',
Star: '*'
} as const;

export type AddWebhookRequestEventActionConst = typeof AddWebhookRequestEventActionConst[keyof typeof AddWebhookRequestEventActionConst];
export const AddWebhookRequestEventObjectConst = {
activity: 'activity',
activityType: 'activityType',
deal: 'deal',
lead: 'lead',
note: 'note',
organization: 'organization',
person: 'person',
Expand Down
Loading
Loading