pipedrive 16.0.0 → 16.0.4
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,21 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e
|
|
7
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
8
|
|
9
9
|
## [Unreleased]
|
10
|
+
|
11
|
+
## 16.0.4
|
12
|
+
### Changed
|
13
|
+
- Description for api/v1/channels endpoints
|
14
|
+
|
15
|
+
## 16.0.3
|
16
|
+
### Fixed
|
17
|
+
- Fixed issue with custom monetary field currency
|
18
|
+
|
19
|
+
## 16.0.1
|
20
|
+
### Added
|
21
|
+
- Added restriction of maximum 16 conditions per filter.
|
22
|
+
### Changed
|
23
|
+
- Removed support for `NOT LIKE '%$%': does not contain, LIKE '%$': ends with, NOT LIKE '%$': does not end with` varchar and title filter conditions.
|
24
|
+
|
10
25
|
## 16.0.0
|
11
26
|
### Changed
|
12
27
|
- Changed `id` parameter data type to `string` for GET `/permissionSets/{id}` and GET `/permissionSets/{id}/assignments` endpoints
|
package/dist/ApiClient.js
CHANGED
@@ -690,7 +690,7 @@ var ApiClient = /*#__PURE__*/function () {
|
|
690
690
|
var keyValue = obj[key];
|
691
691
|
var isArray = Array.isArray(keyValue);
|
692
692
|
var isObject = (0, _typeof2["default"])(keyValue) === 'object' && !isArray;
|
693
|
-
var isHash = /^[a-f0-9]{40}
|
693
|
+
var isHash = /^[a-f0-9]{40}$|^[a-f0-9]{40}_[a-z0-9]+$/i.test(key);
|
694
694
|
if (isArray) keyValue = keyValue.map(function (kv) {
|
695
695
|
return (0, _typeof2["default"])(kv) === 'object' ? _this3.replaceCamelCaseObj(kv) : kv;
|
696
696
|
});
|
package/dist/api/ChannelsApi.js
CHANGED
@@ -58,7 +58,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
58
58
|
}
|
59
59
|
/**
|
60
60
|
* Add a channel
|
61
|
-
* Adds a new messaging, only admins are able to register new channels. It will use the getConversations endpoint to fetch conversations, participants and messages afterward.
|
61
|
+
* Adds a new messaging channel, only admins are able to register new channels. It will use the getConversations endpoint to fetch conversations, participants and messages afterward. To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
62
62
|
* @param {Object} opts Optional parameters
|
63
63
|
* @param {module:model/ChannelObject} opts.channelObject
|
64
64
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ChannelObjectResponse} and HTTP response
|
@@ -105,7 +105,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
105
105
|
}
|
106
106
|
/**
|
107
107
|
* Add a channel
|
108
|
-
* Adds a new messaging, only admins are able to register new channels. It will use the getConversations endpoint to fetch conversations, participants and messages afterward.
|
108
|
+
* Adds a new messaging channel, only admins are able to register new channels. It will use the getConversations endpoint to fetch conversations, participants and messages afterward. To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
109
109
|
* @param {Object} opts Optional parameters
|
110
110
|
* @param {module:model/ChannelObject} opts.channelObject
|
111
111
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ChannelObjectResponse}
|
@@ -120,7 +120,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
120
120
|
}
|
121
121
|
/**
|
122
122
|
* Delete a channel
|
123
|
-
* Deletes an existing
|
123
|
+
* Deletes an existing messenger’s channel and all related entities (conversations and messages). To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
124
124
|
* @param {String} id The ID of the channel provided by the integration
|
125
125
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/DeleteChannelSuccess} and HTTP response
|
126
126
|
*/
|
@@ -163,7 +163,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
163
163
|
}
|
164
164
|
/**
|
165
165
|
* Delete a channel
|
166
|
-
* Deletes an existing
|
166
|
+
* Deletes an existing messenger’s channel and all related entities (conversations and messages). To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
167
167
|
* @param {String} id The ID of the channel provided by the integration
|
168
168
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/DeleteChannelSuccess}
|
169
169
|
*/
|
@@ -177,7 +177,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
177
177
|
}
|
178
178
|
/**
|
179
179
|
* Delete a conversation
|
180
|
-
* Deletes an existing conversation.
|
180
|
+
* Deletes an existing conversation. To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
181
181
|
* @param {String} channelId The ID of the channel provided by the integration
|
182
182
|
* @param {String} conversationId The ID of the conversation provided by the integration
|
183
183
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/DeleteConversationSuccess} and HTTP response
|
@@ -227,7 +227,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
227
227
|
}
|
228
228
|
/**
|
229
229
|
* Delete a conversation
|
230
|
-
* Deletes an existing conversation.
|
230
|
+
* Deletes an existing conversation. To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
231
231
|
* @param {String} channelId The ID of the channel provided by the integration
|
232
232
|
* @param {String} conversationId The ID of the conversation provided by the integration
|
233
233
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/DeleteConversationSuccess}
|
@@ -242,7 +242,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
242
242
|
}
|
243
243
|
/**
|
244
244
|
* Receives an incoming message
|
245
|
-
* Adds a message to a conversation.
|
245
|
+
* Adds a message to a conversation. To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
246
246
|
* @param {Object} opts Optional parameters
|
247
247
|
* @param {module:model/MessageObject} opts.messageObject
|
248
248
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/MessageObject} and HTTP response
|
@@ -308,7 +308,7 @@ var ChannelsApi = /*#__PURE__*/function () {
|
|
308
308
|
}
|
309
309
|
/**
|
310
310
|
* Receives an incoming message
|
311
|
-
* Adds a message to a conversation.
|
311
|
+
* Adds a message to a conversation. To use the endpoint, you need to have **Messengers integration** OAuth scope enabled and the Messaging manifest ready for the [Messaging app extension](https://pipedrive.readme.io/docs/messaging-app-extension).
|
312
312
|
* @param {Object} opts Optional parameters
|
313
313
|
* @param {module:model/MessageObject} opts.messageObject
|
314
314
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/MessageObject}
|
@@ -38,7 +38,7 @@ var AddFilterRequest = /*#__PURE__*/function () {
|
|
38
38
|
* Constructs a new <code>AddFilterRequest</code>.
|
39
39
|
* @alias module:model/AddFilterRequest
|
40
40
|
* @param name {String} The name of the filter
|
41
|
-
* @param conditions {Object} The conditions of the filter as a JSON object. It requires a minimum structure as follows: {\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}
|
41
|
+
* @param conditions {Object} The conditions of the filter as a JSON object. It requires a minimum structure as follows: `{\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}`. Replace `CONDITION_OBJECTS` with JSON objects of the following structure: `{\"object\":\"\",\"field_id\":\"\", \"operator\":\"\",\"value\":\"\", \"extra_value\":\"\"}` or leave the array empty. Depending on the object type you should use another API endpoint to get `field_id`. There are five types of objects you can choose from: `\"person\"`, `\"deal\"`, `\"organization\"`, `\"product\"`, `\"activity\"` and you can use these types of operators depending on what type of a field you have: `\"IS NOT NULL\"`, `\"IS NULL\"`, `\"<=\"`, `\">=\"`, `\"<\"`, `\">\"`, `\"!=\"`, `\"=\"`, `\"LIKE '$%'\"`, `\"LIKE '%$%'\"`, `\"NOT LIKE '$%'\"`. To get a better understanding of how filters work try creating them directly from the Pipedrive application.
|
42
42
|
* @param type {module:model/FilterType} The type of filter to create
|
43
43
|
*/
|
44
44
|
function AddFilterRequest(name, conditions, type) {
|
@@ -106,7 +106,7 @@ var AddFilterRequest = /*#__PURE__*/function () {
|
|
106
106
|
|
107
107
|
AddFilterRequest.prototype['name'] = undefined;
|
108
108
|
/**
|
109
|
-
* The conditions of the filter as a JSON object. It requires a minimum structure as follows: {\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}
|
109
|
+
* The conditions of the filter as a JSON object. It requires a minimum structure as follows: `{\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}`. Replace `CONDITION_OBJECTS` with JSON objects of the following structure: `{\"object\":\"\",\"field_id\":\"\", \"operator\":\"\",\"value\":\"\", \"extra_value\":\"\"}` or leave the array empty. Depending on the object type you should use another API endpoint to get `field_id`. There are five types of objects you can choose from: `\"person\"`, `\"deal\"`, `\"organization\"`, `\"product\"`, `\"activity\"` and you can use these types of operators depending on what type of a field you have: `\"IS NOT NULL\"`, `\"IS NULL\"`, `\"<=\"`, `\">=\"`, `\"<\"`, `\">\"`, `\"!=\"`, `\"=\"`, `\"LIKE '$%'\"`, `\"LIKE '%$%'\"`, `\"NOT LIKE '$%'\"`. To get a better understanding of how filters work try creating them directly from the Pipedrive application.
|
110
110
|
* @member {Object} conditions
|
111
111
|
*/
|
112
112
|
|
@@ -35,7 +35,7 @@ var UpdateFilterRequest = /*#__PURE__*/function () {
|
|
35
35
|
/**
|
36
36
|
* Constructs a new <code>UpdateFilterRequest</code>.
|
37
37
|
* @alias module:model/UpdateFilterRequest
|
38
|
-
* @param conditions {Object} The conditions of the filter as a JSON object. It requires a minimum structure as follows: {\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}
|
38
|
+
* @param conditions {Object} The conditions of the filter as a JSON object. It requires a minimum structure as follows: `{\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}`. Replace `CONDITION_OBJECTS` with JSON objects of the following structure: `{\"object\":\"\",\"field_id\":\"\", \"operator\":\"\",\"value\":\"\", \"extra_value\":\"\"}` or leave the array empty. Depending on the object type you should use another API endpoint to get `field_id`. There are five types of objects you can choose from: `\"person\"`, `\"deal\"`, `\"organization\"`, `\"product\"`, `\"activity\"` and you can use these types of operators depending on what type of a field you have: `\"IS NOT NULL\"`, `\"IS NULL\"`, `\"<=\"`, `\">=\"`, `\"<\"`, `\">\"`, `\"!=\"`, `\"=\"`, `\"LIKE '$%'\"`, `\"LIKE '%$%'\"`, `\"NOT LIKE '$%'\"`. To get a better understanding of how filters work try creating them directly from the Pipedrive application.
|
39
39
|
*/
|
40
40
|
function UpdateFilterRequest(conditions) {
|
41
41
|
(0, _classCallCheck2["default"])(this, UpdateFilterRequest);
|
@@ -95,7 +95,7 @@ var UpdateFilterRequest = /*#__PURE__*/function () {
|
|
95
95
|
|
96
96
|
UpdateFilterRequest.prototype['name'] = undefined;
|
97
97
|
/**
|
98
|
-
* The conditions of the filter as a JSON object. It requires a minimum structure as follows: {\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}
|
98
|
+
* The conditions of the filter as a JSON object. It requires a minimum structure as follows: `{\"glue\":\"and\",\"conditions\":[{\"glue\":\"and\",\"conditions\": [CONDITION_OBJECTS]},{\"glue\":\"or\",\"conditions\":[CONDITION_OBJECTS]}]}`. Replace `CONDITION_OBJECTS` with JSON objects of the following structure: `{\"object\":\"\",\"field_id\":\"\", \"operator\":\"\",\"value\":\"\", \"extra_value\":\"\"}` or leave the array empty. Depending on the object type you should use another API endpoint to get `field_id`. There are five types of objects you can choose from: `\"person\"`, `\"deal\"`, `\"organization\"`, `\"product\"`, `\"activity\"` and you can use these types of operators depending on what type of a field you have: `\"IS NOT NULL\"`, `\"IS NULL\"`, `\"<=\"`, `\">=\"`, `\"<\"`, `\">\"`, `\"!=\"`, `\"=\"`, `\"LIKE '$%'\"`, `\"LIKE '%$%'\"`, `\"NOT LIKE '$%'\"`. To get a better understanding of how filters work try creating them directly from the Pipedrive application.
|
99
99
|
* @member {Object} conditions
|
100
100
|
*/
|
101
101
|
|