@hapl/api-queries 0.1.157 → 0.1.158--canary.85.3c28d99.0
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/dist/api-queries.cjs.development.js +196 -16
- 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 +196 -16
- package/dist/api-queries.esm.js.map +1 -1
- package/dist/clients/v1/api/index.d.ts +1 -0
- package/dist/clients/v1/api/valuation/createValuation/index.d.ts +37 -0
- package/dist/clients/v1/api/valuation/findValuationByServiceRequestId/index.d.ts +5 -1
- package/dist/clients/v1/dictionaries/index.d.ts +0 -1
- package/dist/clients/v1/index.d.ts +2 -1
- package/dist/clients/v1/types/Valuation.d.ts +20 -17
- package/dist/registry/v1/api/geo/createAddress/index.d.ts +27 -0
- package/dist/registry/v1/api/geo/findAddressById/index.d.ts +29 -0
- package/dist/registry/v1/api/index.d.ts +4 -0
- package/dist/registry/v1/api/realty/findRealties/index.d.ts +20 -4
- package/dist/registry/v1/api/realty/findRealtiesAddress/index.d.ts +52 -0
- package/dist/registry/v1/api/valuate/calculateValuation/index.d.ts +29 -0
- package/dist/registry/v1/dictionaries/Realty.d.ts +10 -2
- package/dist/{clients → registry}/v1/dictionaries/Valuation.d.ts +1 -1
- package/dist/registry/v1/dictionaries/index.d.ts +1 -0
- package/dist/registry/v1/index.d.ts +5 -1
- package/dist/registry/v1/types/Realty.d.ts +1 -0
- package/dist/registry/v1/types/RealtyOffer.d.ts +5 -1
- package/package.json +1 -1
- package/src/clients/v1/api/index.ts +1 -0
- package/src/clients/v1/api/valuation/createValuation/index.ts +49 -0
- package/src/clients/v1/api/valuation/findValuationByServiceRequestId/index.ts +4 -1
- package/src/clients/v1/dictionaries/index.ts +0 -1
- package/src/clients/v1/index.ts +7 -2
- package/src/clients/v1/types/Valuation.ts +21 -18
- package/src/registry/v1/api/geo/createAddress/index.ts +35 -0
- package/src/registry/v1/api/geo/findAddressById/index.ts +38 -0
- package/src/registry/v1/api/index.ts +6 -0
- package/src/registry/v1/api/realty/findRealties/index.ts +16 -3
- package/src/registry/v1/api/realty/findRealtiesAddress/index.ts +67 -0
- package/src/registry/v1/api/valuate/calculateValuation/index.ts +39 -0
- package/src/registry/v1/dictionaries/Realty.ts +10 -2
- package/src/{clients → registry}/v1/dictionaries/Valuation.ts +1 -1
- package/src/registry/v1/dictionaries/index.ts +1 -0
- package/src/registry/v1/index.ts +22 -2
- package/src/registry/v1/types/Realty.ts +1 -0
- package/src/registry/v1/types/RealtyOffer.ts +5 -1
|
@@ -2708,6 +2708,27 @@ function updateTaskRequest(_ref) {
|
|
|
2708
2708
|
});
|
|
2709
2709
|
}
|
|
2710
2710
|
|
|
2711
|
+
function createValuationRequest(_ref) {
|
|
2712
|
+
var _ref$baseURL = _ref.baseURL,
|
|
2713
|
+
baseURL = _ref$baseURL === void 0 ? 'https://clients.homeapp.ru' : _ref$baseURL,
|
|
2714
|
+
body = _ref.body,
|
|
2715
|
+
headers = _ref.headers;
|
|
2716
|
+
return axios.post('/api/valuation', body, {
|
|
2717
|
+
baseURL: baseURL,
|
|
2718
|
+
headers: _extends({
|
|
2719
|
+
Accept: 'application/json',
|
|
2720
|
+
'Content-Type': 'application/json'
|
|
2721
|
+
}, headers),
|
|
2722
|
+
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
2723
|
+
return data.success ? data.data : data.data.error;
|
|
2724
|
+
}])
|
|
2725
|
+
}).then(function (res) {
|
|
2726
|
+
return res;
|
|
2727
|
+
})["catch"](function (err) {
|
|
2728
|
+
throw err;
|
|
2729
|
+
});
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2711
2732
|
function createValuationRealtyCommentRequest(_ref) {
|
|
2712
2733
|
var _ref$baseURL = _ref.baseURL,
|
|
2713
2734
|
baseURL = _ref$baseURL === void 0 ? 'https://clients.homeapp.ru' : _ref$baseURL,
|
|
@@ -2734,6 +2755,8 @@ function findValuationByServiceRequestIdRequest(_ref) {
|
|
|
2734
2755
|
var _ref$baseURL = _ref.baseURL,
|
|
2735
2756
|
baseURL = _ref$baseURL === void 0 ? 'https://clients.homeapp.ru' : _ref$baseURL,
|
|
2736
2757
|
urlParams = _ref.urlParams,
|
|
2758
|
+
_ref$headers = _ref.headers,
|
|
2759
|
+
headers = _ref$headers === void 0 ? {} : _ref$headers,
|
|
2737
2760
|
params = _ref.params;
|
|
2738
2761
|
return axios.get("/api/valuation/" + urlParams.id, {
|
|
2739
2762
|
baseURL: baseURL,
|
|
@@ -2743,9 +2766,9 @@ function findValuationByServiceRequestIdRequest(_ref) {
|
|
|
2743
2766
|
arrayFormat: 'brackets'
|
|
2744
2767
|
});
|
|
2745
2768
|
},
|
|
2746
|
-
headers: {
|
|
2769
|
+
headers: _extends({
|
|
2747
2770
|
Accept: 'application/json'
|
|
2748
|
-
},
|
|
2771
|
+
}, headers),
|
|
2749
2772
|
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
2750
2773
|
return data.success ? data.data : data.data.error;
|
|
2751
2774
|
}])
|
|
@@ -3771,11 +3794,6 @@ var UserPhoneDictionary = {
|
|
|
3771
3794
|
Type: (_Type$b = {}, _Type$b[UserPhoneType.Sip] = 'Внутренний', _Type$b[UserPhoneType.Main] = 'Основной', _Type$b[UserPhoneType.Work] = 'Рабочий', _Type$b[UserPhoneType.Home] = 'Домашний', _Type$b[UserPhoneType.VirtualZadarma] = 'Общий виртуальный (ZADARMA)', _Type$b[UserPhoneType.VirtualVox] = 'Общий виртуальный (VOX)', _Type$b[UserPhoneType.CianZadarma] = 'Трекинг ЦИАН (ZADARMA)', _Type$b[UserPhoneType.CianVox] = 'Трекинг ЦИАН (VOX)', _Type$b[UserPhoneType.YandexZadarma] = 'Трекинг Яндекс (ZADARMA)', _Type$b[UserPhoneType.YandexVox] = 'Трекинг Яндекс (VOX)', _Type$b[UserPhoneType.AvitoZadarma] = 'Трекинг Avito (ZADARMA)', _Type$b[UserPhoneType.AvitoVox] = 'Трекинг Avito (VOX)', _Type$b[UserPhoneType.YaBlack] = 'Яндекс black (VOX)', _Type$b[UserPhoneType.CiBlack] = 'ЦИАН black (VOX)', _Type$b)
|
|
3772
3795
|
};
|
|
3773
3796
|
|
|
3774
|
-
var _Concurrency;
|
|
3775
|
-
var ValuationDictionary = {
|
|
3776
|
-
Concurrency: (_Concurrency = {}, _Concurrency[ValuationConcurrency.Low] = 'Не высокий', _Concurrency[ValuationConcurrency.Medium] = 'Средний', _Concurrency[ValuationConcurrency.MediumHigh] = 'Выше среднего', _Concurrency[ValuationConcurrency.High] = 'Высокий', _Concurrency[ValuationConcurrency.VeryHigh] = 'Очень высокий', _Concurrency)
|
|
3777
|
-
};
|
|
3778
|
-
|
|
3779
3797
|
var Api = function Api(baseURL) {
|
|
3780
3798
|
var _this = this;
|
|
3781
3799
|
|
|
@@ -4657,6 +4675,14 @@ var Api = function Api(baseURL) {
|
|
|
4657
4675
|
}; // valuation
|
|
4658
4676
|
|
|
4659
4677
|
|
|
4678
|
+
this.createValuation = function (body, headers) {
|
|
4679
|
+
return createValuationRequest({
|
|
4680
|
+
body: body,
|
|
4681
|
+
headers: headers,
|
|
4682
|
+
baseURL: _this.baseURL
|
|
4683
|
+
});
|
|
4684
|
+
};
|
|
4685
|
+
|
|
4660
4686
|
this.createValuationRealtyComment = function (urlParams, body, headers) {
|
|
4661
4687
|
return createValuationRealtyCommentRequest({
|
|
4662
4688
|
urlParams: urlParams,
|
|
@@ -4666,10 +4692,11 @@ var Api = function Api(baseURL) {
|
|
|
4666
4692
|
});
|
|
4667
4693
|
};
|
|
4668
4694
|
|
|
4669
|
-
this.findValuationByServiceRequestId = function (urlParams, params) {
|
|
4695
|
+
this.findValuationByServiceRequestId = function (urlParams, params, headers) {
|
|
4670
4696
|
return findValuationByServiceRequestIdRequest({
|
|
4671
4697
|
urlParams: urlParams,
|
|
4672
4698
|
params: params,
|
|
4699
|
+
headers: headers,
|
|
4673
4700
|
baseURL: _this.baseURL
|
|
4674
4701
|
});
|
|
4675
4702
|
};
|
|
@@ -4783,6 +4810,7 @@ var index = {
|
|
|
4783
4810
|
findTasksRequest: findTasksRequest,
|
|
4784
4811
|
findTaskByIdRequest: findTaskByIdRequest,
|
|
4785
4812
|
updateTaskRequest: updateTaskRequest,
|
|
4813
|
+
createValuationRequest: createValuationRequest,
|
|
4786
4814
|
createValuationRealtyCommentRequest: createValuationRealtyCommentRequest,
|
|
4787
4815
|
findValuationByServiceRequestIdRequest: findValuationByServiceRequestIdRequest,
|
|
4788
4816
|
AddressBTIParamsDictionary: AddressBTIParamsDictionary,
|
|
@@ -4810,7 +4838,6 @@ var index = {
|
|
|
4810
4838
|
TaskDictionary: TaskDictionary,
|
|
4811
4839
|
UserDictionary: UserDictionary,
|
|
4812
4840
|
UserPhoneDictionary: UserPhoneDictionary,
|
|
4813
|
-
ValuationDictionary: ValuationDictionary,
|
|
4814
4841
|
get AddressBTIParamsParking () { return AddressBTIParamsParking; },
|
|
4815
4842
|
get AddressBTIParamsWallsMaterial () { return AddressBTIParamsWallsMaterial; },
|
|
4816
4843
|
get AddressBTIParamsHeatingType () { return AddressBTIParamsHeatingType; },
|
|
@@ -6885,9 +6912,50 @@ function findComplexIdsRequest(_ref) {
|
|
|
6885
6912
|
});
|
|
6886
6913
|
}
|
|
6887
6914
|
|
|
6915
|
+
function createAddressRequest$1(_ref) {
|
|
6916
|
+
var _ref$baseURL = _ref.baseURL,
|
|
6917
|
+
baseURL = _ref$baseURL === void 0 ? 'https://registry.homeapp.ru' : _ref$baseURL,
|
|
6918
|
+
body = _ref.body,
|
|
6919
|
+
headers = _ref.headers;
|
|
6920
|
+
return axios.post('/api/geo/address/', body, {
|
|
6921
|
+
baseURL: baseURL,
|
|
6922
|
+
headers: _extends({
|
|
6923
|
+
Accept: 'application/json',
|
|
6924
|
+
'Content-Type': 'application/json'
|
|
6925
|
+
}, headers),
|
|
6926
|
+
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
6927
|
+
return data.success ? data.data : data.data.error;
|
|
6928
|
+
}])
|
|
6929
|
+
}).then(function (res) {
|
|
6930
|
+
return res;
|
|
6931
|
+
})["catch"](function (err) {
|
|
6932
|
+
throw err;
|
|
6933
|
+
});
|
|
6934
|
+
}
|
|
6935
|
+
|
|
6936
|
+
function findAddressByIdRequest(_ref) {
|
|
6937
|
+
var _ref$baseURL = _ref.baseURL,
|
|
6938
|
+
baseURL = _ref$baseURL === void 0 ? 'https://registry.homeapp.ru' : _ref$baseURL,
|
|
6939
|
+
urlParams = _ref.urlParams,
|
|
6940
|
+
headers = _ref.headers;
|
|
6941
|
+
return axios.get("/api/geo/address/" + urlParams.id, {
|
|
6942
|
+
baseURL: baseURL,
|
|
6943
|
+
headers: _extends({
|
|
6944
|
+
Accept: 'application/json'
|
|
6945
|
+
}, headers),
|
|
6946
|
+
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
6947
|
+
return data.success ? data.data : data.data.error;
|
|
6948
|
+
}])
|
|
6949
|
+
}).then(function (res) {
|
|
6950
|
+
return res;
|
|
6951
|
+
})["catch"](function (err) {
|
|
6952
|
+
throw err;
|
|
6953
|
+
});
|
|
6954
|
+
}
|
|
6955
|
+
|
|
6888
6956
|
function findRealtiesRequest$1(_ref) {
|
|
6889
6957
|
var _ref$baseURL = _ref.baseURL,
|
|
6890
|
-
baseURL = _ref$baseURL === void 0 ? 'https://
|
|
6958
|
+
baseURL = _ref$baseURL === void 0 ? 'https://registry.homeapp.ru' : _ref$baseURL,
|
|
6891
6959
|
params = _ref.params;
|
|
6892
6960
|
return axios.get('/api/realty', {
|
|
6893
6961
|
baseURL: baseURL,
|
|
@@ -6926,6 +6994,65 @@ function findRealtiesRequest$1(_ref) {
|
|
|
6926
6994
|
});
|
|
6927
6995
|
}
|
|
6928
6996
|
|
|
6997
|
+
function findRealtiesAddressRequest(_ref) {
|
|
6998
|
+
var _ref$baseURL = _ref.baseURL,
|
|
6999
|
+
baseURL = _ref$baseURL === void 0 ? 'https://registry.homeapp.ru' : _ref$baseURL,
|
|
7000
|
+
params = _ref.params;
|
|
7001
|
+
return axios.get('/api/realty/address', {
|
|
7002
|
+
baseURL: baseURL,
|
|
7003
|
+
params: params,
|
|
7004
|
+
paramsSerializer: function paramsSerializer(params) {
|
|
7005
|
+
return qs.stringify(params, {
|
|
7006
|
+
arrayFormat: 'brackets'
|
|
7007
|
+
});
|
|
7008
|
+
},
|
|
7009
|
+
headers: {
|
|
7010
|
+
Accept: 'application/json'
|
|
7011
|
+
},
|
|
7012
|
+
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
7013
|
+
if (!data.success) return data.data.error;
|
|
7014
|
+
var ids = [];
|
|
7015
|
+
var byId = {};
|
|
7016
|
+
data.data.forEach(function (entity) {
|
|
7017
|
+
byId[entity.id] = entity;
|
|
7018
|
+
ids.push(entity.id);
|
|
7019
|
+
});
|
|
7020
|
+
return {
|
|
7021
|
+
ids: ids,
|
|
7022
|
+
byId: byId,
|
|
7023
|
+
meta: {
|
|
7024
|
+
total: ids.length
|
|
7025
|
+
}
|
|
7026
|
+
};
|
|
7027
|
+
}])
|
|
7028
|
+
}).then(function (res) {
|
|
7029
|
+
return res;
|
|
7030
|
+
})["catch"](function (err) {
|
|
7031
|
+
throw err;
|
|
7032
|
+
});
|
|
7033
|
+
}
|
|
7034
|
+
|
|
7035
|
+
function calculateValuationRequest(_ref) {
|
|
7036
|
+
var _ref$baseURL = _ref.baseURL,
|
|
7037
|
+
baseURL = _ref$baseURL === void 0 ? 'https://registry.homeapp.ru' : _ref$baseURL,
|
|
7038
|
+
body = _ref.body,
|
|
7039
|
+
headers = _ref.headers;
|
|
7040
|
+
return axios.post('/api/valuate', body, {
|
|
7041
|
+
baseURL: baseURL,
|
|
7042
|
+
headers: _extends({
|
|
7043
|
+
Accept: 'application/json',
|
|
7044
|
+
'Content-Type': 'application/json'
|
|
7045
|
+
}, headers),
|
|
7046
|
+
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
7047
|
+
return data.success ? data.data : data.data.error;
|
|
7048
|
+
}])
|
|
7049
|
+
}).then(function (res) {
|
|
7050
|
+
return res;
|
|
7051
|
+
})["catch"](function (err) {
|
|
7052
|
+
throw err;
|
|
7053
|
+
});
|
|
7054
|
+
}
|
|
7055
|
+
|
|
6929
7056
|
var AddressBTIParamsParking$1;
|
|
6930
7057
|
|
|
6931
7058
|
(function (AddressBTIParamsParking) {
|
|
@@ -7083,10 +7210,18 @@ var AddressBTIParamsDictionary$2 = {
|
|
|
7083
7210
|
HeatingType: (_HeatingType$2 = {}, _HeatingType$2[AddressBTIParamsHeatingType$2.None] = 'Нет', _HeatingType$2[AddressBTIParamsHeatingType$2.Central] = 'Центральное', _HeatingType$2[AddressBTIParamsHeatingType$2.Local] = 'Отдельное', _HeatingType$2[AddressBTIParamsHeatingType$2.Gas] = 'Газовое', _HeatingType$2[AddressBTIParamsHeatingType$2.Electricity] = 'Электрическое', _HeatingType$2[AddressBTIParamsHeatingType$2.Liquid] = 'Жидкое топливо', _HeatingType$2)
|
|
7084
7211
|
};
|
|
7085
7212
|
|
|
7086
|
-
var
|
|
7213
|
+
var _RealtyType$1, _Renovation$1, _Gas$2, _HouseType$2, _LandShape$2, _LandUsageType$2, _Relief$2, _Electricity$2, _Furniture$2, _Sewerage$2, _WindowView$2;
|
|
7087
7214
|
var RealtyDictionary$2 = {
|
|
7088
|
-
|
|
7089
|
-
|
|
7215
|
+
RealtyType: (_RealtyType$1 = {}, _RealtyType$1[RealtyType$2.Flat] = 'Квартира', _RealtyType$1[RealtyType$2.House] = 'Дом', _RealtyType$1),
|
|
7216
|
+
Rooms: {
|
|
7217
|
+
'-1': 'студия',
|
|
7218
|
+
'-2': 'свободная планировка',
|
|
7219
|
+
'1': '1',
|
|
7220
|
+
'2': '2',
|
|
7221
|
+
'3': '3',
|
|
7222
|
+
'4': '4+'
|
|
7223
|
+
},
|
|
7224
|
+
Renovation: (_Renovation$1 = {}, _Renovation$1[RealtyRenovationType$2.None] = 'Без ремонта', _Renovation$1[RealtyRenovationType$2.Author] = 'Авторский', _Renovation$1[RealtyRenovationType$2.Cosmetic] = 'Косметический', _Renovation$1[RealtyRenovationType$2.Euro] = 'Евро', _Renovation$1[RealtyRenovationType$2.FineFinishing] = 'Чистовая отделка', _Renovation$1[RealtyRenovationType$2.RoughFinishing] = 'Черновая отделка', _Renovation$1),
|
|
7090
7225
|
Gas: (_Gas$2 = {}, _Gas$2[RealtyGas$2.None] = 'Нет', _Gas$2[RealtyGas$2.Connected] = 'Подключено', _Gas$2[RealtyGas$2.Border] = 'По границе', _Gas$2[RealtyGas$2.Possible] = 'Возможно', _Gas$2[RealtyGas$2.Autonomous] = 'Автономное', _Gas$2),
|
|
7091
7226
|
HouseType: (_HouseType$2 = {}, _HouseType$2[RealtyHouseType$2.Townhouse] = 'Таунхаус', _HouseType$2[RealtyHouseType$2.House] = 'Дом', _HouseType$2[RealtyHouseType$2.Cottage] = 'Коттедж', _HouseType$2[RealtyHouseType$2.Part] = 'Часть дома', _HouseType$2[RealtyHouseType$2.Duplex] = 'Дуплекс', _HouseType$2),
|
|
7092
7227
|
LandShape: (_LandShape$2 = {}, _LandShape$2[RealtyLandShape$2.Regular] = 'Правильная', _LandShape$2[RealtyLandShape$2.Irregular] = 'Неправильная', _LandShape$2),
|
|
@@ -7098,9 +7233,14 @@ var RealtyDictionary$2 = {
|
|
|
7098
7233
|
WindowView: (_WindowView$2 = {}, _WindowView$2[RealtyWindowView$2.Street] = 'На улицу', _WindowView$2[RealtyWindowView$2.Yard] = 'Во двор', _WindowView$2[RealtyWindowView$2.Both] = 'В обе стороны', _WindowView$2)
|
|
7099
7234
|
};
|
|
7100
7235
|
|
|
7101
|
-
var _Type$
|
|
7236
|
+
var _Type$d;
|
|
7102
7237
|
var ShapeDictionary$1 = {
|
|
7103
|
-
Type: (_Type$
|
|
7238
|
+
Type: (_Type$d = {}, _Type$d[ShapeType$1.AdministrativeDistrict] = 'Административный округ', _Type$d[ShapeType$1.Block] = 'Квартал', _Type$d[ShapeType$1.Complex] = 'Новостройка', _Type$d[ShapeType$1.District] = 'Район', _Type$d[ShapeType$1.House] = 'Здание', _Type$d[ShapeType$1.Microdistrict] = 'Микрорайон', _Type$d)
|
|
7239
|
+
};
|
|
7240
|
+
|
|
7241
|
+
var _Concurrency;
|
|
7242
|
+
var ValuationDictionary = {
|
|
7243
|
+
Concurrency: (_Concurrency = {}, _Concurrency[ValuationConcurrency.Low] = 'Не высокий', _Concurrency[ValuationConcurrency.Medium] = 'Средний', _Concurrency[ValuationConcurrency.MediumHigh] = 'Выше среднего', _Concurrency[ValuationConcurrency.High] = 'Высокий', _Concurrency[ValuationConcurrency.VeryHigh] = 'Очень высокий', _Concurrency)
|
|
7104
7244
|
};
|
|
7105
7245
|
|
|
7106
7246
|
var Api$3 = function Api(baseURL) {
|
|
@@ -7113,12 +7253,47 @@ var Api$3 = function Api(baseURL) {
|
|
|
7113
7253
|
params: params,
|
|
7114
7254
|
baseURL: _this.baseURL
|
|
7115
7255
|
});
|
|
7256
|
+
}; // address
|
|
7257
|
+
|
|
7258
|
+
|
|
7259
|
+
this.createAddress = function (body, headers) {
|
|
7260
|
+
return createAddressRequest$1({
|
|
7261
|
+
body: body,
|
|
7262
|
+
headers: headers,
|
|
7263
|
+
baseURL: _this.baseURL
|
|
7264
|
+
});
|
|
7265
|
+
};
|
|
7266
|
+
|
|
7267
|
+
this.findAddressById = function (urlParams, headers) {
|
|
7268
|
+
return findAddressByIdRequest({
|
|
7269
|
+
urlParams: urlParams,
|
|
7270
|
+
headers: headers,
|
|
7271
|
+
baseURL: _this.baseURL
|
|
7272
|
+
});
|
|
7116
7273
|
}; // realty
|
|
7117
7274
|
|
|
7118
7275
|
|
|
7119
|
-
this.findRealties = function (params) {
|
|
7276
|
+
this.findRealties = function (params, headers) {
|
|
7120
7277
|
return findRealtiesRequest$1({
|
|
7121
7278
|
params: params,
|
|
7279
|
+
headers: headers,
|
|
7280
|
+
baseURL: _this.baseURL
|
|
7281
|
+
});
|
|
7282
|
+
};
|
|
7283
|
+
|
|
7284
|
+
this.findRealtiesAddress = function (params, headers) {
|
|
7285
|
+
return findRealtiesAddressRequest({
|
|
7286
|
+
params: params,
|
|
7287
|
+
headers: headers,
|
|
7288
|
+
baseURL: _this.baseURL
|
|
7289
|
+
});
|
|
7290
|
+
}; // valuate
|
|
7291
|
+
|
|
7292
|
+
|
|
7293
|
+
this.calculateValuation = function (body, headers) {
|
|
7294
|
+
return calculateValuationRequest({
|
|
7295
|
+
body: body,
|
|
7296
|
+
headers: headers,
|
|
7122
7297
|
baseURL: _this.baseURL
|
|
7123
7298
|
});
|
|
7124
7299
|
};
|
|
@@ -7128,10 +7303,15 @@ var index$3 = {
|
|
|
7128
7303
|
__proto__: null,
|
|
7129
7304
|
Api: Api$3,
|
|
7130
7305
|
findComplexIdsRequest: findComplexIdsRequest,
|
|
7306
|
+
createAddressRequest: createAddressRequest$1,
|
|
7307
|
+
findAddressByIdRequest: findAddressByIdRequest,
|
|
7131
7308
|
findRealtiesRequest: findRealtiesRequest$1,
|
|
7309
|
+
findRealtiesAddressRequest: findRealtiesAddressRequest,
|
|
7310
|
+
calculateValuationRequest: calculateValuationRequest,
|
|
7132
7311
|
AddressBTIParamsDictionary: AddressBTIParamsDictionary$2,
|
|
7133
7312
|
RealtyDictionary: RealtyDictionary$2,
|
|
7134
7313
|
ShapeDictionary: ShapeDictionary$1,
|
|
7314
|
+
ValuationDictionary: ValuationDictionary,
|
|
7135
7315
|
get AddressBTIParamsParking () { return AddressBTIParamsParking$1; },
|
|
7136
7316
|
get AddressBTIParamsWallsMaterial () { return AddressBTIParamsWallsMaterial$2; },
|
|
7137
7317
|
get AddressBTIParamsHeatingType () { return AddressBTIParamsHeatingType$2; },
|