@hapl/api-queries 0.1.184 → 0.1.185
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 -1
- 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 -1
- package/dist/api-queries.esm.js.map +1 -1
- package/dist/clients/v1/api/deal/updateDeal/index.d.ts +1 -0
- package/dist/clients/v1/dictionaries/DealParticipant.d.ts +1 -0
- package/dist/clients/v1/types/Deal.d.ts +8 -7
- package/dist/clients/v1/types/DealParticipant.d.ts +1 -0
- package/package.json +1 -1
- package/src/clients/v1/api/deal/updateDeal/index.ts +1 -0
- package/src/clients/v1/dictionaries/DealParticipant.ts +1 -0
- package/src/clients/v1/types/Deal.ts +9 -7
- package/src/clients/v1/types/DealParticipant.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v0.1.185 (Thu Sep 01 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- FE-1358: добавлено значение в словарь по сделкам [#112](https://github.com/homeappcorporate/api-queries/pull/112) ([@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.184 (Tue Aug 23 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -3409,6 +3409,7 @@ var DealParticipantPosition;
|
|
|
3409
3409
|
DealParticipantPosition["BankEmployee"] = "bank-employee";
|
|
3410
3410
|
DealParticipantPosition["Relative"] = "relative";
|
|
3411
3411
|
DealParticipantPosition["Seller"] = "seller";
|
|
3412
|
+
DealParticipantPosition["Investor"] = "investor";
|
|
3412
3413
|
DealParticipantPosition["Other"] = "other";
|
|
3413
3414
|
})(DealParticipantPosition || (DealParticipantPosition = {}));
|
|
3414
3415
|
|
|
@@ -3980,7 +3981,7 @@ var DealCategorizedFileDictionary = {
|
|
|
3980
3981
|
var _DealParticipantSide, _DealParticipantPosit;
|
|
3981
3982
|
var DealParticipantDictionary = {
|
|
3982
3983
|
DealParticipantSide: (_DealParticipantSide = {}, _DealParticipantSide[DealParticipantSide.Buyer] = 'Покупатель', _DealParticipantSide[DealParticipantSide.Seller] = 'Продавец', _DealParticipantSide),
|
|
3983
|
-
DealParticipantPosition: (_DealParticipantPosit = {}, _DealParticipantPosit[DealParticipantPosition.Agent] = 'Агент', _DealParticipantPosit[DealParticipantPosition.Lawyer] = 'Юрист', _DealParticipantPosit[DealParticipantPosition.BankEmployee] = 'Сотрудник банка', _DealParticipantPosit[DealParticipantPosition.Relative] = 'Родственник', _DealParticipantPosit[DealParticipantPosition.Seller] = 'Продавец', _DealParticipantPosit[DealParticipantPosition.Other] = 'Другое', _DealParticipantPosit)
|
|
3984
|
+
DealParticipantPosition: (_DealParticipantPosit = {}, _DealParticipantPosit[DealParticipantPosition.Agent] = 'Агент', _DealParticipantPosit[DealParticipantPosition.Lawyer] = 'Юрист', _DealParticipantPosit[DealParticipantPosition.BankEmployee] = 'Сотрудник банка', _DealParticipantPosit[DealParticipantPosition.Relative] = 'Родственник', _DealParticipantPosit[DealParticipantPosition.Seller] = 'Продавец', _DealParticipantPosit[DealParticipantPosition.Investor] = 'Инвестор', _DealParticipantPosit[DealParticipantPosition.Other] = 'Другое', _DealParticipantPosit)
|
|
3984
3985
|
};
|
|
3985
3986
|
|
|
3986
3987
|
var _Type$4, _Category$1;
|