@hapl/api-queries 0.1.167--canary.96.46d047c.0 → 0.1.167
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 +12 -0
- package/dist/api-queries.cjs.development.js +2 -2
- package/dist/api-queries.cjs.development.js.map +1 -1
- package/dist/api-queries.cjs.production.min.js +1 -1
- package/dist/api-queries.cjs.production.min.js.map +1 -1
- package/dist/api-queries.esm.js +2 -2
- package/dist/api-queries.esm.js.map +1 -1
- package/dist/clients/v1/api/contract/updateContractDocument/index.d.ts +1 -5
- package/package.json +1 -1
- package/src/clients/v1/api/call/removeProxyPhone/index.ts +2 -2
- package/src/clients/v1/api/contract/updateContractDocument/index.ts +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.1.167 (Tue May 31 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- FE-1354: добавлены ручки для работы с ContractDocument [#96](https://github.com/homeappcorporate/api-queries/pull/96) ([@alexandropavlov](https://github.com/alexandropavlov))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Alexander Pavlov ([@alexandropavlov](https://github.com/alexandropavlov))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.1.166 (Mon May 30 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -488,7 +488,7 @@ function removeProxyPhoneRequest(_ref) {
|
|
|
488
488
|
'Content-Type': 'application/json'
|
|
489
489
|
}, headers),
|
|
490
490
|
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
491
|
-
return data
|
|
491
|
+
return data === '' ? null : data.data.error;
|
|
492
492
|
}])
|
|
493
493
|
}).then(function (res) {
|
|
494
494
|
return res;
|
|
@@ -910,7 +910,7 @@ function updateContractDocumentRequest(_ref) {
|
|
|
910
910
|
'Content-Type': 'application/json'
|
|
911
911
|
}, headers),
|
|
912
912
|
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
913
|
-
return data
|
|
913
|
+
return data === '' ? null : data.data.error;
|
|
914
914
|
}])
|
|
915
915
|
}).then(function (res) {
|
|
916
916
|
return res;
|