diff --git a/CHANGELOG.md b/CHANGELOG.md
index fbcfb1b9..042dbe69 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,11 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
## [Unreleased]
+## [23.2.0] - 2024-07-25
+### Added
+- Notice informing the users of the upcoming Activity Invites feature deprecation:
+ - `POST` and `PUT` `/v1/activities` endpoints
+
## [23.1.0] - 2024-07-03
### Added
- Added `notes` field to Prices in:
@@ -652,7 +657,8 @@ structure
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
* Fixed typo in lead example response (`crrency` to `currency`)
-[Unreleased]: https://github.com/pipedrive/api-docs/compare/v23.1.0...HEAD
+[Unreleased]: https://github.com/pipedrive/api-docs/compare/v23.2.0...HEAD
+[23.2.0]: https://github.com/pipedrive/api-docs/compare/v23.1.0...v23.2.0
[23.1.0]: https://github.com/pipedrive/api-docs/compare/v23.0.0...v23.1.0
[23.0.0]: https://github.com/pipedrive/api-docs/compare/v22.10.1...v23.0.0
[22.10.1]: https://github.com/pipedrive/api-docs/compare/v22.10.0...v22.10.1
diff --git a/docs/ActivitiesApi.md b/docs/ActivitiesApi.md
index b4b1868b..87db84e0 100644
--- a/docs/ActivitiesApi.md
+++ b/docs/ActivitiesApi.md
@@ -20,7 +20,7 @@ Method | HTTP request | Description
Add an activity
-Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-an-activity\" target=\"_blank\" rel=\"noopener noreferrer\">adding an activity</a>.
+Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for <a href=\"https://pipedrive.readme.io/docs/adding-an-activity\" target=\"_blank\" rel=\"noopener noreferrer\">adding an activity</a>. <br /> <br /> ***Starting from 30.09.2024, activity attendees will receive updates only if the activity owner has an active calendar sync***
### Example
@@ -372,7 +372,7 @@ Name | Type | Description | Notes
Update an activity
-Updates an activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data).
+Updates an activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). <br /> <br /> ***Starting from 30.09.2024, activity attendees will receive updates only if the activity owner has an active calendar sync***
### Example
diff --git a/package-lock.json b/package-lock.json
index 43364ffe..9f3160e0 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "pipedrive",
- "version": "23.1.0",
+ "version": "23.2.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pipedrive",
- "version": "23.1.0",
+ "version": "23.2.0",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.20.1",
diff --git a/package.json b/package.json
index 2fcae6ff..20230104 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "pipedrive",
- "version": "23.1.0",
+ "version": "23.2.0",
"description": "Pipedrive REST client for NodeJS",
"license": "MIT",
"main": "dist/index.js",
diff --git a/src/api/ActivitiesApi.js b/src/api/ActivitiesApi.js
index abfdc8e0..e2338709 100644
--- a/src/api/ActivitiesApi.js
+++ b/src/api/ActivitiesApi.js
@@ -47,7 +47,7 @@ export default class ActivitiesApi {
/**
* Add an activity
- * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for adding an activity.
+ * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for adding an activity.
***Starting from 30.09.2024, activity attendees will receive updates only if the activity owner has an active calendar sync***
* @param {Object} opts Optional parameters
* @param {module:model/ActivityPostObject} opts.activityPostObject
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/AddActivityResponse200} and HTTP response
@@ -95,7 +95,7 @@ export default class ActivitiesApi {
/**
* Add an activity
- * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for adding an activity.
+ * Adds a new activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data). For more information, see the tutorial for adding an activity.
***Starting from 30.09.2024, activity attendees will receive updates only if the activity owner has an active calendar sync***
* @param {Object} opts Optional parameters
* @param {module:model/ActivityPostObject} opts.activityPostObject
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AddActivityResponse200}
@@ -488,7 +488,7 @@ export default class ActivitiesApi {
/**
* Update an activity
- * Updates an activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data).
+ * Updates an activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data).
***Starting from 30.09.2024, activity attendees will receive updates only if the activity owner has an active calendar sync***
* @param {Number} id The ID of the activity
* @param {Object} opts Optional parameters
* @param {module:model/ActivityPutObject} opts.activityPutObject
@@ -543,7 +543,7 @@ export default class ActivitiesApi {
/**
* Update an activity
- * Updates an activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data).
+ * Updates an activity. Includes `more_activities_scheduled_in_context` property in response's `additional_data` which indicates whether there are more undone activities scheduled with the same deal, person or organization (depending on the supplied data).
***Starting from 30.09.2024, activity attendees will receive updates only if the activity owner has an active calendar sync***
* @param {Number} id The ID of the activity
* @param {Object} opts Optional parameters
* @param {module:model/ActivityPutObject} opts.activityPutObject