pipedrive 13.0.10 → 13.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/api/ItemSearchApi.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -8,6 +8,10 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
|
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
10
|
|
11
|
+
## 13.0.12
|
12
|
+
### Added
|
13
|
+
- Added leadField to field_type options for `GET /v1/itemSearch/field`
|
14
|
+
|
11
15
|
## 13.0.10
|
12
16
|
### Fixed
|
13
17
|
- Fix `POST /organizationRelationships` 'required' labels not showing
|
@@ -123,7 +123,7 @@ var ItemSearchApi = /*#__PURE__*/function () {
|
|
123
123
|
}
|
124
124
|
/**
|
125
125
|
* Perform a search using a specific field from an item type
|
126
|
-
* Performs a search from the values of a specific field. Results can either be the distinct values of the field (useful for searching autocomplete field values), or the IDs of actual items (Deals, Persons, Organizations or Products).
|
126
|
+
* Performs a search from the values of a specific field. Results can either be the distinct values of the field (useful for searching autocomplete field values), or the IDs of actual items (Deals, Leads, Persons, Organizations or Products).
|
127
127
|
* @param {String} term The search term to look for. Minimum 2 characters (or 1 if using `exact_match`).
|
128
128
|
* @param {module:model/String} fieldType The type of the field to perform the search from
|
129
129
|
* @param {String} fieldKey The key of the field to search from. The field key can be obtained by fetching the list of the fields using any of the fields' API GET methods (dealFields, personFields, etc.).
|
@@ -189,7 +189,7 @@ var ItemSearchApi = /*#__PURE__*/function () {
|
|
189
189
|
}
|
190
190
|
/**
|
191
191
|
* Perform a search using a specific field from an item type
|
192
|
-
* Performs a search from the values of a specific field. Results can either be the distinct values of the field (useful for searching autocomplete field values), or the IDs of actual items (Deals, Persons, Organizations or Products).
|
192
|
+
* Performs a search from the values of a specific field. Results can either be the distinct values of the field (useful for searching autocomplete field values), or the IDs of actual items (Deals, Leads, Persons, Organizations or Products).
|
193
193
|
* @param {String} term The search term to look for. Minimum 2 characters (or 1 if using `exact_match`).
|
194
194
|
* @param {module:model/String} fieldType The type of the field to perform the search from
|
195
195
|
* @param {String} fieldKey The key of the field to search from. The field key can be obtained by fetching the list of the fields using any of the fields' API GET methods (dealFields, personFields, etc.).
|