pipedrive 23.1.0 → 23.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -53,7 +53,7 @@ var ActivitiesApi = /*#__PURE__*/function () {
53
53
 
54
54
  /**
55
55
  * Add an activity
56
- * 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>.
56
+ * 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***
57
57
  * @param {Object} opts Optional parameters
58
58
  * @param {module:model/ActivityPostObject} opts.activityPostObject
59
59
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/AddActivityResponse200} and HTTP response
@@ -88,7 +88,7 @@ var ActivitiesApi = /*#__PURE__*/function () {
88
88
 
89
89
  /**
90
90
  * Add an activity
91
- * 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>.
91
+ * 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***
92
92
  * @param {Object} opts Optional parameters
93
93
  * @param {module:model/ActivityPostObject} opts.activityPostObject
94
94
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AddActivityResponse200}
@@ -411,7 +411,7 @@ var ActivitiesApi = /*#__PURE__*/function () {
411
411
 
412
412
  /**
413
413
  * Update an activity
414
- * 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).
414
+ * 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***
415
415
  * @param {Number} id The ID of the activity
416
416
  * @param {Object} opts Optional parameters
417
417
  * @param {module:model/ActivityPutObject} opts.activityPutObject
@@ -454,7 +454,7 @@ var ActivitiesApi = /*#__PURE__*/function () {
454
454
 
455
455
  /**
456
456
  * Update an activity
457
- * 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).
457
+ * 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***
458
458
  * @param {Number} id The ID of the activity
459
459
  * @param {Object} opts Optional parameters
460
460
  * @param {module:model/ActivityPutObject} opts.activityPutObject
@@ -82,6 +82,10 @@ var AddProductRequestBody = /*#__PURE__*/function () {
82
82
  obj['code'] = _ApiClient["default"].convertToType(data['code'], 'String');
83
83
  delete data['code'];
84
84
  }
85
+ if (data.hasOwnProperty('description')) {
86
+ obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
87
+ delete data['description'];
88
+ }
85
89
  if (data.hasOwnProperty('unit')) {
86
90
  obj['unit'] = _ApiClient["default"].convertToType(data['unit'], 'String');
87
91
  delete data['unit'];
@@ -139,6 +143,12 @@ AddProductRequestBody.prototype['name'] = undefined;
139
143
  */
140
144
  AddProductRequestBody.prototype['code'] = undefined;
141
145
 
146
+ /**
147
+ * The product description
148
+ * @member {String} description
149
+ */
150
+ AddProductRequestBody.prototype['description'] = undefined;
151
+
142
152
  /**
143
153
  * The unit in which this product is sold
144
154
  * @member {String} unit
@@ -207,6 +217,11 @@ _NameObject["default"].prototype['name'] = undefined;
207
217
  * @member {String} code
208
218
  */
209
219
  _ProductRequest["default"].prototype['code'] = undefined;
220
+ /**
221
+ * The product description
222
+ * @member {String} description
223
+ */
224
+ _ProductRequest["default"].prototype['description'] = undefined;
210
225
  /**
211
226
  * The unit in which this product is sold
212
227
  * @member {String} unit
@@ -61,6 +61,10 @@ var ProductRequest = /*#__PURE__*/function () {
61
61
  obj['code'] = _ApiClient["default"].convertToType(data['code'], 'String');
62
62
  delete data['code'];
63
63
  }
64
+ if (data.hasOwnProperty('description')) {
65
+ obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
66
+ delete data['description'];
67
+ }
64
68
  if (data.hasOwnProperty('unit')) {
65
69
  obj['unit'] = _ApiClient["default"].convertToType(data['unit'], 'String');
66
70
  delete data['unit'];
@@ -104,6 +108,12 @@ var ProductRequest = /*#__PURE__*/function () {
104
108
  */
105
109
  ProductRequest.prototype['code'] = undefined;
106
110
 
111
+ /**
112
+ * The product description
113
+ * @member {String} description
114
+ */
115
+ ProductRequest.prototype['description'] = undefined;
116
+
107
117
  /**
108
118
  * The unit in which this product is sold
109
119
  * @member {String} unit
@@ -82,6 +82,10 @@ var UpdateProductRequestBody = /*#__PURE__*/function () {
82
82
  obj['code'] = _ApiClient["default"].convertToType(data['code'], 'String');
83
83
  delete data['code'];
84
84
  }
85
+ if (data.hasOwnProperty('description')) {
86
+ obj['description'] = _ApiClient["default"].convertToType(data['description'], 'String');
87
+ delete data['description'];
88
+ }
85
89
  if (data.hasOwnProperty('unit')) {
86
90
  obj['unit'] = _ApiClient["default"].convertToType(data['unit'], 'String');
87
91
  delete data['unit'];
@@ -139,6 +143,12 @@ UpdateProductRequestBody.prototype['name'] = undefined;
139
143
  */
140
144
  UpdateProductRequestBody.prototype['code'] = undefined;
141
145
 
146
+ /**
147
+ * The product description
148
+ * @member {String} description
149
+ */
150
+ UpdateProductRequestBody.prototype['description'] = undefined;
151
+
142
152
  /**
143
153
  * The unit in which this product is sold
144
154
  * @member {String} unit
@@ -207,6 +217,11 @@ _NameObject["default"].prototype['name'] = undefined;
207
217
  * @member {String} code
208
218
  */
209
219
  _ProductRequest["default"].prototype['code'] = undefined;
220
+ /**
221
+ * The product description
222
+ * @member {String} description
223
+ */
224
+ _ProductRequest["default"].prototype['description'] = undefined;
210
225
  /**
211
226
  * The unit in which this product is sold
212
227
  * @member {String} unit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipedrive",
3
- "version": "23.1.0",
3
+ "version": "23.2.1",
4
4
  "description": "Pipedrive REST client for NodeJS",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",