pipedrive 18.1.2 → 18.1.4
Sign up to get free protection for your applications and to get access to all the features.
package/dist/api/CallLogsApi.js
CHANGED
@@ -278,7 +278,7 @@ var CallLogsApi = /*#__PURE__*/function () {
|
|
278
278
|
* Returns all call logs assigned to a particular user.
|
279
279
|
* @param {Object} opts Optional parameters
|
280
280
|
* @param {Number} opts.start Pagination start (default to 0)
|
281
|
-
* @param {Number} opts.limit
|
281
|
+
* @param {Number} opts.limit For pagination, the limit of entries to be returned. The upper limit is 50.
|
282
282
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/BaseResponse} and HTTP response
|
283
283
|
*/
|
284
284
|
}, {
|
@@ -317,7 +317,7 @@ var CallLogsApi = /*#__PURE__*/function () {
|
|
317
317
|
* Returns all call logs assigned to a particular user.
|
318
318
|
* @param {Object} opts Optional parameters
|
319
319
|
* @param {Number} opts.start Pagination start (default to 0)
|
320
|
-
* @param {Number} opts.limit
|
320
|
+
* @param {Number} opts.limit For pagination, the limit of entries to be returned. The upper limit is 50.
|
321
321
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/BaseResponse}
|
322
322
|
*/
|
323
323
|
}, {
|
@@ -64,10 +64,6 @@ var AddUserRequest = /*#__PURE__*/function () {
|
|
64
64
|
obj['email'] = _ApiClient["default"].convertToType(data['email'], 'String');
|
65
65
|
delete data['email'];
|
66
66
|
}
|
67
|
-
if (data.hasOwnProperty('name')) {
|
68
|
-
obj['name'] = _ApiClient["default"].convertToType(data['name'], 'String');
|
69
|
-
delete data['name'];
|
70
|
-
}
|
71
67
|
if (data.hasOwnProperty('access')) {
|
72
68
|
obj['access'] = _ApiClient["default"].convertToType(data['access'], [_UserAccess["default"]]);
|
73
69
|
delete data['access'];
|
@@ -91,12 +87,6 @@ var AddUserRequest = /*#__PURE__*/function () {
|
|
91
87
|
*/
|
92
88
|
AddUserRequest.prototype['email'] = undefined;
|
93
89
|
|
94
|
-
/**
|
95
|
-
* The name of the user
|
96
|
-
* @member {String} name
|
97
|
-
*/
|
98
|
-
AddUserRequest.prototype['name'] = undefined;
|
99
|
-
|
100
90
|
/**
|
101
91
|
* The access given to the user. Each item in the array represents access to a specific app. Optionally may include either admin flag or permission set ID to specify which access to give within the app. If both are omitted, the default access for the corresponding app will be used. It requires structure as follows: `[{ app: 'sales', permission_set_id: '62cc4d7f-4038-4352-abf3-a8c1c822b631' }, { app: 'global', admin: true }, { app: 'account_settings' }]`
|
102
92
|
* @member {Array.<module:model/UserAccess>} access
|
@@ -133,7 +133,7 @@ var CallLogObject = /*#__PURE__*/function () {
|
|
133
133
|
CallLogObject.prototype['user_id'] = undefined;
|
134
134
|
|
135
135
|
/**
|
136
|
-
* If specified, this activity will be converted into a call log, with the information provided. When this field is used, you don't need to specify `deal_id`, `person_id` or `org_id`, as they will be ignored in favor of the values already available in the activity.
|
136
|
+
* If specified, this activity will be converted into a call log, with the information provided. When this field is used, you don't need to specify `deal_id`, `person_id` or `org_id`, as they will be ignored in favor of the values already available in the activity. The `activity_id` must refer to a `call` type activity.
|
137
137
|
* @member {Number} activity_id
|
138
138
|
*/
|
139
139
|
CallLogObject.prototype['activity_id'] = undefined;
|
@@ -153,7 +153,7 @@ var ResponseCallLogObject = /*#__PURE__*/function () {
|
|
153
153
|
ResponseCallLogObject.prototype['user_id'] = undefined;
|
154
154
|
|
155
155
|
/**
|
156
|
-
* If specified, this activity will be converted into a call log, with the information provided. When this field is used, you don't need to specify `deal_id`, `person_id` or `org_id`, as they will be ignored in favor of the values already available in the activity.
|
156
|
+
* If specified, this activity will be converted into a call log, with the information provided. When this field is used, you don't need to specify `deal_id`, `person_id` or `org_id`, as they will be ignored in favor of the values already available in the activity. The `activity_id` must refer to a `call` type activity.
|
157
157
|
* @member {Number} activity_id
|
158
158
|
*/
|
159
159
|
ResponseCallLogObject.prototype['activity_id'] = undefined;
|
@@ -249,7 +249,7 @@ ResponseCallLogObject.prototype['company_id'] = undefined;
|
|
249
249
|
*/
|
250
250
|
_CallLogObject["default"].prototype['user_id'] = undefined;
|
251
251
|
/**
|
252
|
-
* If specified, this activity will be converted into a call log, with the information provided. When this field is used, you don't need to specify `deal_id`, `person_id` or `org_id`, as they will be ignored in favor of the values already available in the activity.
|
252
|
+
* If specified, this activity will be converted into a call log, with the information provided. When this field is used, you don't need to specify `deal_id`, `person_id` or `org_id`, as they will be ignored in favor of the values already available in the activity. The `activity_id` must refer to a `call` type activity.
|
253
253
|
* @member {Number} activity_id
|
254
254
|
*/
|
255
255
|
_CallLogObject["default"].prototype['activity_id'] = undefined;
|
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
@@ -1,469 +0,0 @@
|
|
1
|
-
# Changelog
|
2
|
-
All notable changes to this project will be documented in this file.
|
3
|
-
|
4
|
-
The Changelog file gives an overview of all of the notable changes affecting the project.
|
5
|
-
The file format of it is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/), and the project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
-
|
7
|
-
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).
|
8
|
-
|
9
|
-
## [Unreleased]
|
10
|
-
|
11
|
-
## [18.1.2] - 2023-02-02
|
12
|
-
### Fixed
|
13
|
-
- Added missing OAuth scopes for PermissionSets, Roles, and Users API endpoints
|
14
|
-
|
15
|
-
## [18.1.1] - 2023-01-25
|
16
|
-
### Fixed
|
17
|
-
- Updated `user_id` description for `POST /webhooks/`
|
18
|
-
### Fixed
|
19
|
-
- Adds support for snake_case query params reported in pipedrive/client-nodejs#410
|
20
|
-
|
21
|
-
## [18.1.0] - 2023-01-20
|
22
|
-
### Changed
|
23
|
-
- Removed `location_lat` and `location_long` fields from the following endpoints activity details response:
|
24
|
-
- GET /v1/activities
|
25
|
-
- GET /v1/activities/{id}
|
26
|
-
- POST /v1/activities
|
27
|
-
- PUT /v1/activities/{id}
|
28
|
-
|
29
|
-
### Fixed
|
30
|
-
- Fixed a typo in `GET /itemSearch/field`
|
31
|
-
- Fixed mistakenly documented response field for `GET /v1/deals/{id}/followers` from `person_id` to `deal_id`.
|
32
|
-
|
33
|
-
### Added
|
34
|
-
- Optional `lead_id` parameter to `POST /v1/files`
|
35
|
-
- `lead_id` and `lead_name` to the `/v1/files` endpoints
|
36
|
-
|
37
|
-
### Removed
|
38
|
-
- Removed deprecated endpoints that will be deleted:
|
39
|
-
- `GET /roles/{id}/roles`
|
40
|
-
- Removed `followers_count` from Product-related entities and endpoints based on this [post](https://developers.pipedrive.com/changelog/post/removal-of-codefollowers_countcode-response-field-from-products-endpoints-and-webhook). Changing the following endpoints:
|
41
|
-
- GET /deals/{id}/products
|
42
|
-
- GET /products
|
43
|
-
- GET /products/{id}
|
44
|
-
- POST /products
|
45
|
-
- PUT /products/{id}
|
46
|
-
|
47
|
-
## [18.0.3] - 2023-01-11
|
48
|
-
### Updated dependencies
|
49
|
-
- Updated `json5` from 2.2.1 to 2.2.3
|
50
|
-
- Updated `qs` from 6.9.3 to 6.11.0
|
51
|
-
- Updated `formidable` from 2.0.1 to 2.1.1
|
52
|
-
- Updated `decode-uri-component` from 0.2.0 to 0.2.2
|
53
|
-
- Updated `minimatch` from 3.0.4 to 3.1.2
|
54
|
-
- Updated `mocha` from 8.4.0 to 10.1.0
|
55
|
-
|
56
|
-
## [18.0.2] - 2022-12-22
|
57
|
-
### Fixed
|
58
|
-
- Fixed a typo in `GET /itemSearch/field`
|
59
|
-
|
60
|
-
## [18.0.1] - 2022-12-15
|
61
|
-
### Fixed
|
62
|
-
- Move @babel/runtime from devDependencies to dependencies to fix a runtime error
|
63
|
-
|
64
|
-
## 18.0.0
|
65
|
-
### Security
|
66
|
-
- Removed `.instance` static property from sdk client to prevent race conditions when using it as a singleton
|
67
|
-
See the updated examples in the readme to get an overview of the necessary code changes.
|
68
|
-
|
69
|
-
## 17.5.2
|
70
|
-
### Changed
|
71
|
-
- Updated endpoint descriptions to warn about permanently removing deleted entities:
|
72
|
-
- `DELETE /activities`
|
73
|
-
- `DELETE /activities/{id}`
|
74
|
-
- `DELETE /deals`
|
75
|
-
- `DELETE /deals/{id}`
|
76
|
-
- `DELETE /files/{id}`
|
77
|
-
- `DELETE /organizations`
|
78
|
-
- `DELETE /organizations/{id}`
|
79
|
-
- `DELETE /persons`
|
80
|
-
- `DELETE /persons/{id}`
|
81
|
-
- `DELETE /products/{id}`
|
82
|
-
- Updated `conditions` parameter description for `POST /filters` and `PUT /filters/{id}`
|
83
|
-
|
84
|
-
## 17.5.1
|
85
|
-
### Fixed
|
86
|
-
- Fixed custom field value (it should return null if the value is null)
|
87
|
-
|
88
|
-
## 17.5.0
|
89
|
-
### Changed
|
90
|
-
- Updated `type.params.pipeline_id` and `type.params.activity_type_id` description, type and response example for goals queries
|
91
|
-
|
92
|
-
## 17.4.0
|
93
|
-
### Changed
|
94
|
-
- Added `pipeline` and `stage` objects to the `related_objects` section in the following endpoints:
|
95
|
-
- `GET /v1/deals`
|
96
|
-
- `GET /v1/deals/{id}`
|
97
|
-
- `GET /v1/organizations/{id}/deals`
|
98
|
-
- `GET /v1/persons/{id}/deals`
|
99
|
-
- `GET /v1/products/{id}/deals`
|
100
|
-
- `POST /v1/deals`
|
101
|
-
- `PUT /v1/deals/{id}`
|
102
|
-
|
103
|
-
## 17.3.1
|
104
|
-
### Changed
|
105
|
-
- Changed the content type to `application/json` in the following endpoints:
|
106
|
-
- `POST /activityTypes`
|
107
|
-
- `PUT /activityTypes/{id}`
|
108
|
-
|
109
|
-
## 17.3.0
|
110
|
-
### Changed
|
111
|
-
- Removed query `include_deleted_files` parameter for these endpoints based on this [post](https://developers.pipedrive.com/changelog/post/permanent-deletion-logic-for-6-core-entities)
|
112
|
-
- `GET /files`
|
113
|
-
- `GET /deals/{id}/files`
|
114
|
-
- `GET /organizations/{id}/files`
|
115
|
-
- `GET /persons/{id}/files`
|
116
|
-
- `GET /products/{id}/files`
|
117
|
-
|
118
|
-
## 17.2.0
|
119
|
-
### Removed
|
120
|
-
- Removed deprecated endpoints that will be deleted:
|
121
|
-
- `POST /users/{id}/roleAssignments`
|
122
|
-
- `DELETE /users/{id}/roleAssignments`
|
123
|
-
|
124
|
-
## 17.1.5
|
125
|
-
### Changed
|
126
|
-
- Added and updated the descriptions of roles endpoints
|
127
|
-
|
128
|
-
## 17.1.4
|
129
|
-
### Changed
|
130
|
-
- Changed the content type to `application/json` in the following endpoints:
|
131
|
-
- `DELETE /roles/{id}/assignments`
|
132
|
-
- `POST /roles/{id}/settings`
|
133
|
-
- `PUT /roles/{id}`
|
134
|
-
- `POST /roles`
|
135
|
-
- `POST /roles/{id}/assignments`
|
136
|
-
- `PUT /users/{id}`
|
137
|
-
|
138
|
-
## 17.1.3
|
139
|
-
### Changed
|
140
|
-
- Updated `PUT /users/{:id}`: required parameter `active_flag` has no default value
|
141
|
-
|
142
|
-
## 17.1.2
|
143
|
-
### Changed
|
144
|
-
- Changed `PUT /goals/{id}` content type to `application/json`
|
145
|
-
|
146
|
-
## 17.1.1
|
147
|
-
### Changed
|
148
|
-
- Description for product requests
|
149
|
-
|
150
|
-
## 17.1.0
|
151
|
-
### Removed
|
152
|
-
- Removed deprecated endpoints that were deleted:
|
153
|
-
- `GET /globalMessages`
|
154
|
-
- `DELETE /globalMessages/{id}`
|
155
|
-
|
156
|
-
## 17.0.0
|
157
|
-
### Changed
|
158
|
-
- Updated `PUT /organizations/{id}`: parameter `name` is not required
|
159
|
-
- Updated `PUT /notes/{id}`: parameter `content` is not required
|
160
|
-
- Changed models related to the endpoints to reflect the changes
|
161
|
-
|
162
|
-
## 16.2.0
|
163
|
-
### Changed
|
164
|
-
- Removed `matches_filters` field from the POST `/deals` and PUT `/deals/{id}` endpoints response
|
165
|
-
- Description for `GET/v1/filters/helpers` endpoint
|
166
|
-
- Changed `POST /v1/users` request body type from `application/x-www-form-urlencoded` to `application/json`
|
167
|
-
- Added `access` field to responses from `GET /v1/users`, `GET /v1/users/{id}`, etc.
|
168
|
-
- Added optional `access` parameter and made `name` optional in `POST /v1/users`
|
169
|
-
- Added `app`, `type` and `description` fields to responses from `GET /v1/permissionSets` and `GET v1/permissionSets/{id}`
|
170
|
-
- Added optional `app` parameter to `GET /v1/permissionSets`
|
171
|
-
- Deprecated `is_admin` and `signup_flow_variation` fields in responses from `GET /v1/users`, `GET /v1/users/{id}`, etc.
|
172
|
-
|
173
|
-
## 16.1.0
|
174
|
-
### Added
|
175
|
-
- Added `person_id` and `organization_id` query parameters to GET `/v1/leads`
|
176
|
-
|
177
|
-
## 16.0.4
|
178
|
-
### Changed
|
179
|
-
- Description for api/v1/channels endpoints
|
180
|
-
|
181
|
-
## 16.0.3
|
182
|
-
### Fixed
|
183
|
-
- Fixed issue with custom monetary field currency
|
184
|
-
|
185
|
-
## 16.0.1
|
186
|
-
### Added
|
187
|
-
- Added restriction of maximum 16 conditions per filter.
|
188
|
-
### Changed
|
189
|
-
- Removed support for `NOT LIKE '%$%': does not contain, LIKE '%$': ends with, NOT LIKE '%$': does not end with` varchar and title filter conditions.
|
190
|
-
|
191
|
-
## 16.0.0
|
192
|
-
### Changed
|
193
|
-
- Changed `id` parameter data type to `string` for GET `/permissionSets/{id}` and GET `/permissionSets/{id}/assignments` endpoints
|
194
|
-
- Changed `id` field data type to `string` for response from GET `/permissionSets` and GET `/permissionSets/{id}` endpoints
|
195
|
-
- Changed `permission_set_id` field data type to `string` for response GET `/permissionSets/{id}/assignments` endpoints
|
196
|
-
- Removed `id` field from response for GET `/permissionSets/{id}/assignments` endpoints
|
197
|
-
|
198
|
-
## 15.0.3
|
199
|
-
### Changed
|
200
|
-
- Added deprecated flags to `GET /globalMessages` and `DELETE /globalMessages/{id}`
|
201
|
-
|
202
|
-
## 15.0.2
|
203
|
-
### Added
|
204
|
-
- Added `primary_email` field to response of `GET /v1/persons`, `GET /v1/persons/{id}` endpoints
|
205
|
-
|
206
|
-
## 15.0.1
|
207
|
-
### Changed
|
208
|
-
- Update the following dependencies:
|
209
|
-
- `superagent`
|
210
|
-
|
211
|
-
## 15.0.0
|
212
|
-
### Fixed
|
213
|
-
- Renamed file with long name and it's class.
|
214
|
-
|
215
|
-
Old name:
|
216
|
-
AnyOfRecentsActivityRecentsActivityTypeRecentsDealRecentsFileRecentsFilterRecentsNoteRecentsPersonRecentsOrganizationRecentsPipelineRecentsProductRecentsStageRecentsUser
|
217
|
-
New name:
|
218
|
-
AnyOfRecents
|
219
|
-
|
220
|
-
## 14.0.1
|
221
|
-
### Fixed
|
222
|
-
- Updated `PUT /persons/{id}`: parameter `name` is not required
|
223
|
-
|
224
|
-
## 14.0.0
|
225
|
-
### Changed
|
226
|
-
- Moved `v1/teams*` endpoints to `v1/legacyTeams*` as they're being deprecated because we are preparing for an upgraded version of the Teams API, which requires migrating the current functionality to a new path URL `v1/legacyTeams*`.
|
227
|
-
The functionality and [OAuth scopes](https://pipedrive.readme.io/docs/marketplace-scopes-and-permissions-explanations) of all the Teams API endpoints will remain the same.
|
228
|
-
|
229
|
-
## 13.3.4
|
230
|
-
### Changed
|
231
|
-
- Updated `PUT /productFields/{id}`: parameter `name` is not
|
232
|
-
|
233
|
-
## 13.3.3
|
234
|
-
### Changed
|
235
|
-
- Added babel/runtime to dependencies
|
236
|
-
|
237
|
-
## 13.3.2
|
238
|
-
### Changed
|
239
|
-
- Moved the following dependencies to devDependencies:
|
240
|
-
- `@babel/cli`
|
241
|
-
- `@babel/runtime`
|
242
|
-
- `jest-environment-node`
|
243
|
-
|
244
|
-
## 13.3.1
|
245
|
-
### Fixed
|
246
|
-
- Date formatting in responses in the following entities and their respective fields:
|
247
|
-
- **activities**: `due_date`
|
248
|
-
- **deals**: `expected_close_date`
|
249
|
-
- **leads**: `expected_close_date`
|
250
|
-
- **subscriptions**: `due_at`, `start_date`, `end_date`
|
251
|
-
|
252
|
-
Those fields will be formatted as "2020-07-13" instead of "2020-07-13T00:00:00.000Z" in the request response.
|
253
|
-
|
254
|
-
## 13.3.0
|
255
|
-
### Added
|
256
|
-
- Added `GET /billing/subscriptions/addons` endpoint
|
257
|
-
|
258
|
-
## 13.2.9
|
259
|
-
### Changed
|
260
|
-
- Added missing oauth scopes to /products/{id}/permittedUsers endpoint
|
261
|
-
|
262
|
-
## 13.2.8
|
263
|
-
### Fixed
|
264
|
-
- Changed rotten_flag type to boolean in `StagesApi`
|
265
|
-
|
266
|
-
## 13.2.7
|
267
|
-
### Changed
|
268
|
-
- Added `everyone` parameter to `GET /v1/stages/{id}` endpoint
|
269
|
-
- Updated `/v1/deals` endpoint `stage_id` and added `pipeline_id` descriptions
|
270
|
-
|
271
|
-
## 13.2.6
|
272
|
-
### Changed
|
273
|
-
- Updated `POST /products`: parameter `name` is required
|
274
|
-
- Updated `PUT /deals/:dealId/products`: parameter `quantity` and `item_price` are required
|
275
|
-
- Updated `POST /deals/:dealId/products`: parameter `quantity` and `item_price` are required
|
276
|
-
-
|
277
|
-
|
278
|
-
## 13.2.5
|
279
|
-
### Changed
|
280
|
-
- Updated `POST /notes`: parameter `content` is required
|
281
|
-
- Updated `POST /organizations`: parameter `name` is required
|
282
|
-
- Updated `POST /persons`: parameter `name` is required
|
283
|
-
- Updated `DELETE /persons`: parameter `ids` is required
|
284
|
-
- Updated `visible_to` parameter for `POST /deals` and `PUT /deals/{id}` to include type `number`
|
285
|
-
- Updated `visible_to` parameter for `POST /persons` and `PUT /persons/{id}` to include type `number`
|
286
|
-
- Updated `visible_to` parameter for `POST /organizations` and `PUT /organizations/{id}` to include type `number`
|
287
|
-
|
288
|
-
## 13.2.4
|
289
|
-
### Fixed
|
290
|
-
- Added quotation marks to fix formatting for Organizations endpoint `visible_to` parameter
|
291
|
-
- Updated `prices` parameter description in Products endpoint
|
292
|
-
|
293
|
-
## 13.2.3
|
294
|
-
### Changed
|
295
|
-
- Update `visible_to` parameter for `POST /deals` and `PUT /deals/{id}`. Differentiate options by plans
|
296
|
-
- Update `visible_to` parameter for `POST /persons` and `PUT /persons/{id}`. Differentiate options by plans
|
297
|
-
- Update `visible_to` parameter for `POST /organizations` and `PUT /organizations/{id}`. Differentiate options by plans
|
298
|
-
|
299
|
-
## 13.2.1
|
300
|
-
### Fixed
|
301
|
-
- Fixed wrong field name normalization for custom fields keys
|
302
|
-
|
303
|
-
## 13.2.0
|
304
|
-
### Changed
|
305
|
-
- Deprecate /v1/mailbox/mailMessages/{id} & /v1/mailbox/mailThreads/{id} response data property write_flag
|
306
|
-
|
307
|
-
## 13.1.3
|
308
|
-
### Fixed
|
309
|
-
- Fix replaceCamelCaseObj is not defined reference issue in ApiClient
|
310
|
-
|
311
|
-
## 13.1.2
|
312
|
-
### Fixed
|
313
|
-
- Styling fixes: capitalization, tutorial links' texts, code-highlighting in descriptions
|
314
|
-
|
315
|
-
## 13.1.1
|
316
|
-
### Changed
|
317
|
-
- Changed person-related endpoints to include `marketing_status` body parameter: `POST /v1/persons`, `PUT /v1/persons/{id}`
|
318
|
-
|
319
|
-
## 13.1.0
|
320
|
-
### Fixed
|
321
|
-
- Fixed runtime error for `FilesApi.addFile`
|
322
|
-
- Fixed missing required parameters check
|
323
|
-
- Fixed camelCase support for application/json endpoints
|
324
|
-
|
325
|
-
## 13.0.12
|
326
|
-
### Fixed
|
327
|
-
- Fixed capitalization, punctuation, grammar, articles in all endpoint descriptions
|
328
|
-
|
329
|
-
## 13.0.11
|
330
|
-
### Added
|
331
|
-
- Added leadField to field_type options for `GET /v1/itemSearch/field`
|
332
|
-
|
333
|
-
## 13.0.10
|
334
|
-
### Fixed
|
335
|
-
- Fix `POST /organizationRelationships` 'required' labels not showing
|
336
|
-
|
337
|
-
## 13.0.9
|
338
|
-
### Added
|
339
|
-
- Added `tax` parameter on add product to the deal.
|
340
|
-
* POST /v1/deals/{id}/products
|
341
|
-
* PUT /v1/deals/{id}/products/{product_attachment_id}
|
342
|
-
- Improved `follower_id` description
|
343
|
-
* DELETE /v1/products/{id}/followers/{follower_id}
|
344
|
-
|
345
|
-
## 13.0.8
|
346
|
-
### Changed
|
347
|
-
- Improve Products `price` description
|
348
|
-
|
349
|
-
## 13.0.7
|
350
|
-
### Changed
|
351
|
-
- Changed/improve Products `visible_to` type, and differentiate options by plans
|
352
|
-
* POST /products
|
353
|
-
* PUT /products/{id}
|
354
|
-
|
355
|
-
## 13.0.6
|
356
|
-
### Fixed
|
357
|
-
- Fixed `POST /roles/{id}/settings` `value` parameter description
|
358
|
-
### Added
|
359
|
-
- Added type to `POST /roles/{id}/settings` `value` parameter
|
360
|
-
- Added description to `POST /roles/{id}/settings`
|
361
|
-
|
362
|
-
## 13.0.5
|
363
|
-
### Changed
|
364
|
-
- Changed Organization `custom_fields` type to a string array
|
365
|
-
|
366
|
-
## 13.0.4
|
367
|
-
### Fixed
|
368
|
-
- Fixed typo in `ids` query parameter description in GET /products
|
369
|
-
|
370
|
-
## 13.0.3
|
371
|
-
### Changed
|
372
|
-
- Changed/improved `subscription_url` body parameter description
|
373
|
-
* POST /webhooks
|
374
|
-
|
375
|
-
## 13.0.2
|
376
|
-
### Fixed
|
377
|
-
- Fixed items type for `email` and `phone` body parameters
|
378
|
-
* POST /persons
|
379
|
-
|
380
|
-
## 13.0.1
|
381
|
-
### Added
|
382
|
-
- Added `filter_id` to `GET /products` query parameters that was wrongfully removed in 0.1.18
|
383
|
-
|
384
|
-
## 13.0.0
|
385
|
-
### Removed
|
386
|
-
- Removed `int` type from `POST /v1/organizationFields` field_type values
|
387
|
-
- Removed `int` type from `POST /v1/personFields` field_type values
|
388
|
-
- Removed `int` type from `POST /v1/dealFields` field_type values
|
389
|
-
|
390
|
-
## 12.2.0
|
391
|
-
### Changed
|
392
|
-
- Changed notes and comments endpoints additional_data to match the correct pagination response
|
393
|
-
structure
|
394
|
-
* GET /notes
|
395
|
-
* GET /notes/:id/comments
|
396
|
-
|
397
|
-
## 12.1.0
|
398
|
-
### Removed
|
399
|
-
* Removed deprecated endpoints that were deleted:
|
400
|
-
* GET /deals/find
|
401
|
-
* GET /persons/find
|
402
|
-
* GET /organizations/find
|
403
|
-
* GET /products/find
|
404
|
-
* GET /searchResults
|
405
|
-
* GET /searchResults/field
|
406
|
-
|
407
|
-
## 12.0.3
|
408
|
-
### Changed
|
409
|
-
- Changed addDeal POST endpoint to include required person_id or org_id
|
410
|
-
|
411
|
-
## 12.0.2
|
412
|
-
### Fixed
|
413
|
-
* Use /api/v1 path when accessing the API using company domain
|
414
|
-
|
415
|
-
## 12.0.1
|
416
|
-
### Fixed
|
417
|
-
* Fixed UNKNOWN_BASE_TYPE error related to updateStage
|
418
|
-
|
419
|
-
## 12.0.0
|
420
|
-
### Added
|
421
|
-
* Support for endpoints added and updated endpoints changed after March 31, 2021
|
422
|
-
* Support for multiple instances [issue #176](https://github.com/pipedrive/client-nodejs/issues/176)
|
423
|
-
* Convenience functions regarding OAuth 2.0 lifecycle including `buildAuthorizationUrl`, `authorize` and `refreshToken`
|
424
|
-
* Support for changing the host URL [issue #228](https://github.com/pipedrive/client-nodejs/issues/228)
|
425
|
-
* Support for both snake_case and camelCase in request parameters
|
426
|
-
* `UpdateProductResponse` for `PUT /products/{id}`
|
427
|
-
* `Team` (singular) schema for endpoints that deal with a single team
|
428
|
-
* Support for custom fields for `Content-Type: application/x-www-form-urlencoded` type requests
|
429
|
-
* Added note field to call logs.
|
430
|
-
* Added pagination parameters documentation for endpoints:
|
431
|
-
* api/v1/DealFields#getDealFields
|
432
|
-
* api/v1/OrganizationFields#getOrganizationFields
|
433
|
-
* api/v1/PersonFields#getPersonFields
|
434
|
-
* api/v1/ProductFields#getProductFields
|
435
|
-
### Changed
|
436
|
-
* Changed POST/PUT for a lot of endpoints to accept `application/json` instead of `application/x-www-form-urlencoded`
|
437
|
-
* Added required fields to the OrganizationRelationship and Notes POST endpoints
|
438
|
-
* Updated `MailThreadPut` schema to represent `object` in response instead of an `array`
|
439
|
-
* Updated description for `MailThreadOne`
|
440
|
-
* Split `Product` schema into `BaseProduct` and `ProductWithArrayPrices` or `ProductWithObjectPrices` to represent `prices` property with `array` type and `object` type respectively
|
441
|
-
* Use the new `ProductWithObjectPrices` in `UpdateProductResponse`
|
442
|
-
* `TeamSuccess` response schema to refer to `Team` (singular) instead of `Teams` (plural)
|
443
|
-
* Extended `DELETE /calllogs/{id}` security with `api_key` property.
|
444
|
-
* Extended `POST /callLogs/{id}/recordings` security with `api_key` property.
|
445
|
-
* Extended `GET /v1/roles/{id}/settings` response with `lead_default_visibility` property.
|
446
|
-
* Extended `POST /v1/roles/{id}/settings` request payload with `lead_default_visibility` property.
|
447
|
-
* Deleted `MailThreads` and `MailMessages` from API operation groups and combined them under `Mailbox` group.
|
448
|
-
* Extracted `LeadLabels` and `LeadSources` API operation groups from `Leads` group.
|
449
|
-
* Deleted `MailThreads` and `MailMessages` from API operation groups and combined them under `Mailbox` group.
|
450
|
-
* Extracted `LeadLabels` and `LeadSources` API operation groups from `Leads` group.
|
451
|
-
* Updated documentation for search endpoint: include Lead as one of the possible returned entities in related objects
|
452
|
-
* Changed POST /v1/webhooks to accept `application/json` instead of `application/x-www-form-urlencoded` to reflect the reality
|
453
|
-
### Removed
|
454
|
-
* Deleted deprecated `note` field from all lead related documents.
|
455
|
-
* Deleted unused files (copied latest auto-generated version)
|
456
|
-
### Fixed
|
457
|
-
* Fixed GET /goals/:id/results `period.start` parameter description with specified possible dates
|
458
|
-
* Fixed GET /goals/:id/results `period.end` parameter description with specified possible dates
|
459
|
-
* Fixed `GET /goal/:id/results` error handling in cases when period.start or period.end dates are out of possible range
|
460
|
-
* Fixed `GET /goal/:id/results` error handling in case when there are no existing stages connected to specified goal
|
461
|
-
* Fixed typo in lead example response (`crrency` to `currency`)
|
462
|
-
|
463
|
-
[Unreleased]: https://github.com/pipedrive/api-docs/compare/v18.1.2...HEAD
|
464
|
-
[18.1.2]: https://github.com/pipedrive/api-docs/compare/v18.1.1...v18.1.2
|
465
|
-
[18.1.1]: https://github.com/pipedrive/api-docs/compare/v18.1.0...v18.1.1
|
466
|
-
[18.1.0]: https://github.com/pipedrive/api-docs/compare/v18.0.3...v18.1.0
|
467
|
-
[18.0.3]: https://github.com/pipedrive/api-docs/compare/v18.0.2...v18.0.3
|
468
|
-
[18.0.2]: https://github.com/pipedrive/api-docs/compare/v18.0.1...v18.0.2
|
469
|
-
[18.0.1]: https://github.com/pipedrive/api-docs/compare/v1.0.0...v18.0.1
|