pipedrive 16.0.1 → 16.0.3
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/ApiClient.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ 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
|
+
## 16.0.2
|
11
|
+
### Fixed
|
12
|
+
- Fixed issue with custom monetary field currency
|
13
|
+
|
10
14
|
## 16.0.1
|
11
15
|
### Added
|
12
16
|
- Added restriction of maximum 16 conditions per filter.
|
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
|
});
|