@hapl/api-queries 0.2.52 → 0.2.53
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 +1091 -906
- 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 +1091 -906
- package/dist/api-queries.esm.js.map +1 -1
- package/dist/clients/v1/api/expertCategory/findExpertCategories.d.ts +49 -0
- package/dist/clients/v1/api/expertCategory/findExpertCategoryHistory.d.ts +37 -0
- package/dist/clients/v1/api/index.d.ts +2 -0
- package/dist/clients/v1/dictionaries/ExpertCategory.d.ts +13 -0
- package/dist/clients/v1/dictionaries/index.d.ts +1 -0
- package/dist/clients/v1/index.d.ts +2 -0
- package/dist/clients/v1/types/ExpertCategory.d.ts +20 -0
- package/dist/clients/v1/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/clients/v1/api/expertCategory/findExpertCategories.ts +78 -0
- package/src/clients/v1/api/expertCategory/findExpertCategoryHistory.ts +73 -0
- package/src/clients/v1/api/index.ts +3 -0
- package/src/clients/v1/dictionaries/ExpertCategory.ts +14 -0
- package/src/clients/v1/dictionaries/index.ts +1 -0
- package/src/clients/v1/index.ts +13 -0
- package/src/clients/v1/types/ExpertCategory.ts +23 -0
- package/src/clients/v1/types/index.ts +1 -0
|
@@ -3563,6 +3563,93 @@ function updateExpertReviewRequest(_ref) {
|
|
|
3563
3563
|
});
|
|
3564
3564
|
}
|
|
3565
3565
|
|
|
3566
|
+
function findExpertCategoriesRequest(_ref) {
|
|
3567
|
+
var _ref$baseURL = _ref.baseURL,
|
|
3568
|
+
baseURL = _ref$baseURL === void 0 ? 'https://clients.homeapp.ru' : _ref$baseURL,
|
|
3569
|
+
headers = _ref.headers,
|
|
3570
|
+
params = _ref.params;
|
|
3571
|
+
return axios.get('/api/expert-category/list', {
|
|
3572
|
+
baseURL: baseURL,
|
|
3573
|
+
params: params,
|
|
3574
|
+
paramsSerializer: function paramsSerializer(params) {
|
|
3575
|
+
return qs.stringify(params, {
|
|
3576
|
+
arrayFormat: 'brackets'
|
|
3577
|
+
});
|
|
3578
|
+
},
|
|
3579
|
+
headers: _extends({
|
|
3580
|
+
Accept: 'application/json'
|
|
3581
|
+
}, headers),
|
|
3582
|
+
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
3583
|
+
if (data.success) {
|
|
3584
|
+
var _data$pageParams$leng, _data$pageParams;
|
|
3585
|
+
|
|
3586
|
+
var ids = [];
|
|
3587
|
+
var byId = {};
|
|
3588
|
+
data.data.forEach(function (entity) {
|
|
3589
|
+
byId[entity.id] = entity;
|
|
3590
|
+
ids.push(entity.id);
|
|
3591
|
+
});
|
|
3592
|
+
return {
|
|
3593
|
+
ids: ids,
|
|
3594
|
+
byId: byId,
|
|
3595
|
+
meta: _extends({}, data.meta, {
|
|
3596
|
+
total: (_data$pageParams$leng = (_data$pageParams = data.pageParams) == null ? void 0 : _data$pageParams.length) != null ? _data$pageParams$leng : 0
|
|
3597
|
+
})
|
|
3598
|
+
};
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3601
|
+
return data.data.error || data.data.message;
|
|
3602
|
+
}])
|
|
3603
|
+
}).then(function (res) {
|
|
3604
|
+
return res;
|
|
3605
|
+
})["catch"](function (err) {
|
|
3606
|
+
throw err;
|
|
3607
|
+
});
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
function findExpertCategoryHistoryRequest(_ref) {
|
|
3611
|
+
var _ref$baseURL = _ref.baseURL,
|
|
3612
|
+
baseURL = _ref$baseURL === void 0 ? 'https://clients.homeapp.ru' : _ref$baseURL,
|
|
3613
|
+
headers = _ref.headers,
|
|
3614
|
+
params = _ref.params;
|
|
3615
|
+
return axios.get('/api/expert-category/history', {
|
|
3616
|
+
baseURL: baseURL,
|
|
3617
|
+
params: params,
|
|
3618
|
+
paramsSerializer: function paramsSerializer(params) {
|
|
3619
|
+
return qs.stringify(params, {
|
|
3620
|
+
arrayFormat: 'brackets'
|
|
3621
|
+
});
|
|
3622
|
+
},
|
|
3623
|
+
headers: _extends({
|
|
3624
|
+
Accept: 'application/json'
|
|
3625
|
+
}, headers),
|
|
3626
|
+
transformResponse: [].concat(axios.defaults.transformResponse, [function (data) {
|
|
3627
|
+
if (data.success) {
|
|
3628
|
+
var ids = [];
|
|
3629
|
+
var byId = {};
|
|
3630
|
+
data.data.forEach(function (entity) {
|
|
3631
|
+
var _id = nonSecure.nanoid();
|
|
3632
|
+
|
|
3633
|
+
byId[_id] = _extends({}, entity, {
|
|
3634
|
+
_id: _id
|
|
3635
|
+
});
|
|
3636
|
+
ids.push(_id);
|
|
3637
|
+
});
|
|
3638
|
+
return {
|
|
3639
|
+
ids: ids,
|
|
3640
|
+
byId: byId
|
|
3641
|
+
};
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
return data.data.error || data.data.message;
|
|
3645
|
+
}])
|
|
3646
|
+
}).then(function (res) {
|
|
3647
|
+
return res;
|
|
3648
|
+
})["catch"](function (err) {
|
|
3649
|
+
throw err;
|
|
3650
|
+
});
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3566
3653
|
function uploadFilesRequest(_ref) {
|
|
3567
3654
|
var _ref$baseURL = _ref.baseURL,
|
|
3568
3655
|
baseURL = _ref$baseURL === void 0 ? 'https://clients.homeapp.ru' : _ref$baseURL,
|
|
@@ -6164,6 +6251,8 @@ var api = {
|
|
|
6164
6251
|
findPublishedExpertsRequest: findPublishedExpertsRequest,
|
|
6165
6252
|
updateExpertCaseRequest: updateExpertCaseRequest,
|
|
6166
6253
|
updateExpertReviewRequest: updateExpertReviewRequest,
|
|
6254
|
+
findExpertCategoriesRequest: findExpertCategoriesRequest,
|
|
6255
|
+
findExpertCategoryHistoryRequest: findExpertCategoryHistoryRequest,
|
|
6167
6256
|
uploadFilesRequest: uploadFilesRequest,
|
|
6168
6257
|
createIncomeRequest: createIncomeRequest,
|
|
6169
6258
|
deleteIncomeRequest: deleteIncomeRequest,
|
|
@@ -6752,6 +6841,22 @@ var DebtPaymentType;
|
|
|
6752
6841
|
DebtPaymentType["OtherPayments"] = "other_payments";
|
|
6753
6842
|
})(DebtPaymentType || (DebtPaymentType = {}));
|
|
6754
6843
|
|
|
6844
|
+
var ExpertCategoryExpertType;
|
|
6845
|
+
|
|
6846
|
+
(function (ExpertCategoryExpertType) {
|
|
6847
|
+
ExpertCategoryExpertType["NewExpert"] = "new_expert";
|
|
6848
|
+
ExpertCategoryExpertType["ExperienceExpert"] = "experience_expert";
|
|
6849
|
+
})(ExpertCategoryExpertType || (ExpertCategoryExpertType = {}));
|
|
6850
|
+
|
|
6851
|
+
var ExpertCategoryCategory;
|
|
6852
|
+
|
|
6853
|
+
(function (ExpertCategoryCategory) {
|
|
6854
|
+
ExpertCategoryCategory["Red"] = "1";
|
|
6855
|
+
ExpertCategoryCategory["Yellow"] = "2";
|
|
6856
|
+
ExpertCategoryCategory["Green"] = "3";
|
|
6857
|
+
ExpertCategoryCategory["NoCategory"] = "4";
|
|
6858
|
+
})(ExpertCategoryCategory || (ExpertCategoryCategory = {}));
|
|
6859
|
+
|
|
6755
6860
|
var FileType;
|
|
6756
6861
|
|
|
6757
6862
|
(function (FileType) {
|
|
@@ -7401,10 +7506,16 @@ var DebtDictionary = {
|
|
|
7401
7506
|
PaymentType: (_PaymentType$1 = {}, _PaymentType$1[DebtPaymentType.BonusToExpert] = 'Бонус эксперта', _PaymentType$1[DebtPaymentType.BonusToTrainee] = 'Бонус стажера', _PaymentType$1[DebtPaymentType.BonusPaymentToMentor] = 'Бонус наставника', _PaymentType$1[DebtPaymentType.BonusPaymentToTeamlead] = 'Бонус РОП', _PaymentType$1[DebtPaymentType.PartnerCharges] = 'Партнерские расходы', _PaymentType$1[DebtPaymentType.Referral] = 'Выплата по реферальной программе', _PaymentType$1[DebtPaymentType.LegalSupportPayment] = 'Внесение за альтернативный объект', _PaymentType$1[DebtPaymentType.OtherPayments] = 'Прочие расходы', _PaymentType$1)
|
|
7402
7507
|
};
|
|
7403
7508
|
|
|
7404
|
-
var
|
|
7509
|
+
var _ExpertType, _Category$1;
|
|
7510
|
+
var ExpertCategoryDictionary = {
|
|
7511
|
+
ExpertType: (_ExpertType = {}, _ExpertType[ExpertCategoryExpertType.NewExpert] = 'Новичок', _ExpertType[ExpertCategoryExpertType.ExperienceExpert] = 'Опытный', _ExpertType),
|
|
7512
|
+
Category: (_Category$1 = {}, _Category$1[ExpertCategoryCategory.Red] = 'Красная', _Category$1[ExpertCategoryCategory.Yellow] = 'Желтая', _Category$1[ExpertCategoryCategory.Green] = 'Зеленая', _Category$1[ExpertCategoryCategory.NoCategory] = 'Нет категории', _Category$1)
|
|
7513
|
+
};
|
|
7514
|
+
|
|
7515
|
+
var _Type$4, _Category$2;
|
|
7405
7516
|
var FileDictionary = {
|
|
7406
7517
|
Type: (_Type$4 = {}, _Type$4[FileType.Image] = 'Изображение', _Type$4[FileType.Audio] = 'Аудиозапись', _Type$4[FileType.Video] = 'Видео', _Type$4[FileType.Document] = 'Документ', _Type$4),
|
|
7407
|
-
Category: (_Category$
|
|
7518
|
+
Category: (_Category$2 = {}, _Category$2[FileCategory.DeleteReason] = 'Является обоснованием закрытия контракта', _Category$2[FileCategory.EGRN] = 'ЕГРН', _Category$2[FileCategory.OwnershipTransfers] = 'Переходы собственности', _Category$2)
|
|
7408
7519
|
};
|
|
7409
7520
|
|
|
7410
7521
|
var _Type$5;
|
|
@@ -7444,9 +7555,9 @@ var RealtyDictionary = {
|
|
|
7444
7555
|
WindowView: (_WindowView = {}, _WindowView[RealtyWindowView.Street] = 'На улицу', _WindowView[RealtyWindowView.Yard] = 'Во двор', _WindowView[RealtyWindowView.Both] = 'В обе стороны', _WindowView)
|
|
7445
7556
|
};
|
|
7446
7557
|
|
|
7447
|
-
var _Category$
|
|
7558
|
+
var _Category$3, _ModerationStatus, _Status$4, _Type$8, _InvestType, _DepublishReason, _Source;
|
|
7448
7559
|
var ServiceRequestDictionary = {
|
|
7449
|
-
Category: (_Category$
|
|
7560
|
+
Category: (_Category$3 = {}, _Category$3[ServiceRequestCategory.Depublished] = 'Неликвидный', _Category$3[ServiceRequestCategory.Discounted] = 'Цена снижена', _Category$3[ServiceRequestCategory.Cold] = 'Холодный', _Category$3[ServiceRequestCategory.Warm] = 'Тёплый', _Category$3[ServiceRequestCategory.New] = 'Новый', _Category$3[ServiceRequestCategory.Hot] = 'Горячий', _Category$3),
|
|
7450
7561
|
ModerationStatus: (_ModerationStatus = {}, _ModerationStatus[ServiceRequestModerationStatus.None] = 'Нет', _ModerationStatus[ServiceRequestModerationStatus.Sent] = 'Отправлен', _ModerationStatus[ServiceRequestModerationStatus.Booked] = 'Взят в работу', _ModerationStatus[ServiceRequestModerationStatus.Done] = 'Готов', _ModerationStatus),
|
|
7451
7562
|
Status: (_Status$4 = {}, _Status$4[ServiceRequestStatus.LeadExpert] = 'Лид, заведённый экспертом', _Status$4[ServiceRequestStatus.LeadAdv] = 'Лид, пришедший от Homeapp', _Status$4[ServiceRequestStatus.Booked] = 'Неподтверждённая бронь', _Status$4[ServiceRequestStatus.Approved] = 'Бронь одобренная РОП', _Status$4[ServiceRequestStatus.Declined] = 'Бронь отклонённая РОП', _Status$4[ServiceRequestStatus.Signed] = 'Контракт подписан', _Status$4[ServiceRequestStatus.Terminated] = 'Контракт расторгнут', _Status$4[ServiceRequestStatus.BookingCanceled] = 'ЗОУ закрыто', _Status$4[ServiceRequestStatus.NoPrepayment] = 'Запланирована сделка без аванса', _Status$4[ServiceRequestStatus.PrepaymentPlanned] = 'Запланирован аванс', _Status$4[ServiceRequestStatus.Prepaid] = 'Получен аванс по сделке', _Status$4[ServiceRequestStatus.DealSigned] = 'Сделка подписана', _Status$4[ServiceRequestStatus.Registered] = 'Документы зарегистрированы', _Status$4[ServiceRequestStatus.DealDone] = 'Сделка закрыта', _Status$4),
|
|
7452
7563
|
Type: (_Type$8 = {}, _Type$8[ServiceRequestType.Buy] = 'Покупка', _Type$8[ServiceRequestType.Sell] = 'Продажа', _Type$8[ServiceRequestType.AsiaSell] = 'Сбор заявок по Азии', _Type$8),
|
|
@@ -7460,9 +7571,9 @@ var ServiceRequestActivityDictionary = {
|
|
|
7460
7571
|
Type: (_Type$9 = {}, _Type$9[ServiceRequestActivityType.Comment] = 'Комментарий', _Type$9[ServiceRequestActivityType.Edit] = 'Изменения', _Type$9[ServiceRequestActivityType.Transfer] = 'Перевод', _Type$9[ServiceRequestActivityType.Call] = 'Звонок', _Type$9[ServiceRequestActivityType.Task] = 'Задача', _Type$9[ServiceRequestActivityType.Contract] = 'Контракт', _Type$9[ServiceRequestActivityType.PublicationProblem] = 'Ошибка при публикации', _Type$9[ServiceRequestActivityType.MarkedUp] = 'Разметка', _Type$9[ServiceRequestActivityType.Published] = 'Публикация', _Type$9[ServiceRequestActivityType.Republished] = 'Повторная публикация', _Type$9[ServiceRequestActivityType.Depublished] = 'Снятие с публикации', _Type$9[ServiceRequestActivityType.PriceChanged] = 'Изменена цена', _Type$9[ServiceRequestActivityType.RequestPriceDown] = 'Запрос на снижение цены', _Type$9[ServiceRequestActivityType.ContractExpired] = 'Срок контракта истекает', _Type$9[ServiceRequestActivityType.CallTaskCreated] = 'Обращениие создано', _Type$9[ServiceRequestActivityType.RealtyShowScheduled] = 'Показ объекта запланирован', _Type$9[ServiceRequestActivityType.RealtyShowCompleted] = 'Показ объекта выполнен', _Type$9[ServiceRequestActivityType.RealtyShowCancelled] = 'Показ объекта отменен', _Type$9)
|
|
7461
7572
|
};
|
|
7462
7573
|
|
|
7463
|
-
var _Category$
|
|
7574
|
+
var _Category$4;
|
|
7464
7575
|
var ServiceRequestCategorizedFileDictionary = {
|
|
7465
|
-
Category: (_Category$
|
|
7576
|
+
Category: (_Category$4 = {}, _Category$4[ServiceRequestCategorizedFileCategory.AdvAgreement] = 'Соглашение на рекламу', _Category$4[ServiceRequestCategorizedFileCategory.AdvanceForm] = 'Анкета на аванс', _Category$4[ServiceRequestCategorizedFileCategory.CheckList] = 'Чек-лист со встречи', _Category$4[ServiceRequestCategorizedFileCategory.Contract] = 'Договор оказания услуг', _Category$4[ServiceRequestCategorizedFileCategory.Kc] = 'Файлы от КЦ', _Category$4[ServiceRequestCategorizedFileCategory.Other] = 'Разное (ЗОУ)', _Category$4[ServiceRequestCategorizedFileCategory.OwnershipCheckReport] = 'Отчет проверки собственника', _Category$4[ServiceRequestCategorizedFileCategory.OwnershipJustification] = 'Основание права собственности', _Category$4[ServiceRequestCategorizedFileCategory.PassportClient] = 'Паспорта клиента (свид-ва о рождении)', _Category$4[ServiceRequestCategorizedFileCategory.Egrn] = 'ЕГРН', _Category$4[ServiceRequestCategorizedFileCategory.DeleteReason] = 'Является обоснованием закрытия контракта', _Category$4[ServiceRequestCategorizedFileCategory.OwnershipTransfers] = 'Переходы собственности', _Category$4[ServiceRequestCategorizedFileCategory.Risk] = 'Проверка на риски', _Category$4)
|
|
7466
7577
|
};
|
|
7467
7578
|
|
|
7468
7579
|
var _Type$a;
|
|
@@ -11208,17 +11319,17 @@ var Api = function Api(baseURL) {
|
|
|
11208
11319
|
return function (_x238, _x239, _x240) {
|
|
11209
11320
|
return _ref107.apply(this, arguments);
|
|
11210
11321
|
};
|
|
11211
|
-
}(); //
|
|
11322
|
+
}(); // expertCategory
|
|
11212
11323
|
|
|
11213
11324
|
|
|
11214
|
-
this.
|
|
11215
|
-
var _ref108 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee108(
|
|
11325
|
+
this.findExpertCategories = /*#__PURE__*/function () {
|
|
11326
|
+
var _ref108 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee108(params, headers) {
|
|
11216
11327
|
return runtime_1.wrap(function _callee108$(_context108) {
|
|
11217
11328
|
while (1) {
|
|
11218
11329
|
switch (_context108.prev = _context108.next) {
|
|
11219
11330
|
case 0:
|
|
11220
11331
|
_context108.t0 = api;
|
|
11221
|
-
_context108.t1 =
|
|
11332
|
+
_context108.t1 = params;
|
|
11222
11333
|
_context108.t2 = headers;
|
|
11223
11334
|
_context108.next = 5;
|
|
11224
11335
|
return _this.baseURL;
|
|
@@ -11226,11 +11337,11 @@ var Api = function Api(baseURL) {
|
|
|
11226
11337
|
case 5:
|
|
11227
11338
|
_context108.t3 = _context108.sent;
|
|
11228
11339
|
_context108.t4 = {
|
|
11229
|
-
|
|
11340
|
+
params: _context108.t1,
|
|
11230
11341
|
headers: _context108.t2,
|
|
11231
11342
|
baseURL: _context108.t3
|
|
11232
11343
|
};
|
|
11233
|
-
return _context108.abrupt("return", _context108.t0.
|
|
11344
|
+
return _context108.abrupt("return", _context108.t0.findExpertCategoriesRequest.call(_context108.t0, _context108.t4));
|
|
11234
11345
|
|
|
11235
11346
|
case 8:
|
|
11236
11347
|
case "end":
|
|
@@ -11243,17 +11354,16 @@ var Api = function Api(baseURL) {
|
|
|
11243
11354
|
return function (_x241, _x242) {
|
|
11244
11355
|
return _ref108.apply(this, arguments);
|
|
11245
11356
|
};
|
|
11246
|
-
}();
|
|
11247
|
-
|
|
11357
|
+
}();
|
|
11248
11358
|
|
|
11249
|
-
this.
|
|
11250
|
-
var _ref109 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee109(
|
|
11359
|
+
this.findExpertCategoryHistory = /*#__PURE__*/function () {
|
|
11360
|
+
var _ref109 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee109(params, headers) {
|
|
11251
11361
|
return runtime_1.wrap(function _callee109$(_context109) {
|
|
11252
11362
|
while (1) {
|
|
11253
11363
|
switch (_context109.prev = _context109.next) {
|
|
11254
11364
|
case 0:
|
|
11255
11365
|
_context109.t0 = api;
|
|
11256
|
-
_context109.t1 =
|
|
11366
|
+
_context109.t1 = params;
|
|
11257
11367
|
_context109.t2 = headers;
|
|
11258
11368
|
_context109.next = 5;
|
|
11259
11369
|
return _this.baseURL;
|
|
@@ -11261,11 +11371,11 @@ var Api = function Api(baseURL) {
|
|
|
11261
11371
|
case 5:
|
|
11262
11372
|
_context109.t3 = _context109.sent;
|
|
11263
11373
|
_context109.t4 = {
|
|
11264
|
-
|
|
11374
|
+
params: _context109.t1,
|
|
11265
11375
|
headers: _context109.t2,
|
|
11266
11376
|
baseURL: _context109.t3
|
|
11267
11377
|
};
|
|
11268
|
-
return _context109.abrupt("return", _context109.t0.
|
|
11378
|
+
return _context109.abrupt("return", _context109.t0.findExpertCategoryHistoryRequest.call(_context109.t0, _context109.t4));
|
|
11269
11379
|
|
|
11270
11380
|
case 8:
|
|
11271
11381
|
case "end":
|
|
@@ -11278,16 +11388,17 @@ var Api = function Api(baseURL) {
|
|
|
11278
11388
|
return function (_x243, _x244) {
|
|
11279
11389
|
return _ref109.apply(this, arguments);
|
|
11280
11390
|
};
|
|
11281
|
-
}();
|
|
11391
|
+
}(); // file
|
|
11282
11392
|
|
|
11283
|
-
|
|
11284
|
-
|
|
11393
|
+
|
|
11394
|
+
this.uploadFiles = /*#__PURE__*/function () {
|
|
11395
|
+
var _ref110 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee110(body, headers) {
|
|
11285
11396
|
return runtime_1.wrap(function _callee110$(_context110) {
|
|
11286
11397
|
while (1) {
|
|
11287
11398
|
switch (_context110.prev = _context110.next) {
|
|
11288
11399
|
case 0:
|
|
11289
11400
|
_context110.t0 = api;
|
|
11290
|
-
_context110.t1 =
|
|
11401
|
+
_context110.t1 = body;
|
|
11291
11402
|
_context110.t2 = headers;
|
|
11292
11403
|
_context110.next = 5;
|
|
11293
11404
|
return _this.baseURL;
|
|
@@ -11295,11 +11406,11 @@ var Api = function Api(baseURL) {
|
|
|
11295
11406
|
case 5:
|
|
11296
11407
|
_context110.t3 = _context110.sent;
|
|
11297
11408
|
_context110.t4 = {
|
|
11298
|
-
|
|
11409
|
+
body: _context110.t1,
|
|
11299
11410
|
headers: _context110.t2,
|
|
11300
11411
|
baseURL: _context110.t3
|
|
11301
11412
|
};
|
|
11302
|
-
return _context110.abrupt("return", _context110.t0.
|
|
11413
|
+
return _context110.abrupt("return", _context110.t0.uploadFilesRequest.call(_context110.t0, _context110.t4));
|
|
11303
11414
|
|
|
11304
11415
|
case 8:
|
|
11305
11416
|
case "end":
|
|
@@ -11312,33 +11423,31 @@ var Api = function Api(baseURL) {
|
|
|
11312
11423
|
return function (_x245, _x246) {
|
|
11313
11424
|
return _ref110.apply(this, arguments);
|
|
11314
11425
|
};
|
|
11315
|
-
}(); //
|
|
11426
|
+
}(); // income
|
|
11316
11427
|
|
|
11317
11428
|
|
|
11318
|
-
this.
|
|
11319
|
-
var _ref111 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee111(
|
|
11429
|
+
this.createIncome = /*#__PURE__*/function () {
|
|
11430
|
+
var _ref111 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee111(body, headers) {
|
|
11320
11431
|
return runtime_1.wrap(function _callee111$(_context111) {
|
|
11321
11432
|
while (1) {
|
|
11322
11433
|
switch (_context111.prev = _context111.next) {
|
|
11323
11434
|
case 0:
|
|
11324
11435
|
_context111.t0 = api;
|
|
11325
|
-
_context111.t1 =
|
|
11326
|
-
_context111.t2 =
|
|
11327
|
-
_context111.
|
|
11328
|
-
_context111.next = 6;
|
|
11436
|
+
_context111.t1 = body;
|
|
11437
|
+
_context111.t2 = headers;
|
|
11438
|
+
_context111.next = 5;
|
|
11329
11439
|
return _this.baseURL;
|
|
11330
11440
|
|
|
11331
|
-
case
|
|
11332
|
-
_context111.
|
|
11333
|
-
_context111.
|
|
11334
|
-
|
|
11335
|
-
|
|
11336
|
-
|
|
11337
|
-
baseURL: _context111.t4
|
|
11441
|
+
case 5:
|
|
11442
|
+
_context111.t3 = _context111.sent;
|
|
11443
|
+
_context111.t4 = {
|
|
11444
|
+
body: _context111.t1,
|
|
11445
|
+
headers: _context111.t2,
|
|
11446
|
+
baseURL: _context111.t3
|
|
11338
11447
|
};
|
|
11339
|
-
return _context111.abrupt("return", _context111.t0.
|
|
11448
|
+
return _context111.abrupt("return", _context111.t0.createIncomeRequest.call(_context111.t0, _context111.t4));
|
|
11340
11449
|
|
|
11341
|
-
case
|
|
11450
|
+
case 8:
|
|
11342
11451
|
case "end":
|
|
11343
11452
|
return _context111.stop();
|
|
11344
11453
|
}
|
|
@@ -11346,19 +11455,19 @@ var Api = function Api(baseURL) {
|
|
|
11346
11455
|
}, _callee111);
|
|
11347
11456
|
}));
|
|
11348
11457
|
|
|
11349
|
-
return function (_x247, _x248
|
|
11458
|
+
return function (_x247, _x248) {
|
|
11350
11459
|
return _ref111.apply(this, arguments);
|
|
11351
11460
|
};
|
|
11352
11461
|
}();
|
|
11353
11462
|
|
|
11354
|
-
this.
|
|
11355
|
-
var _ref112 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee112(
|
|
11463
|
+
this.deleteIncome = /*#__PURE__*/function () {
|
|
11464
|
+
var _ref112 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee112(urlParams, headers) {
|
|
11356
11465
|
return runtime_1.wrap(function _callee112$(_context112) {
|
|
11357
11466
|
while (1) {
|
|
11358
11467
|
switch (_context112.prev = _context112.next) {
|
|
11359
11468
|
case 0:
|
|
11360
11469
|
_context112.t0 = api;
|
|
11361
|
-
_context112.t1 =
|
|
11470
|
+
_context112.t1 = urlParams;
|
|
11362
11471
|
_context112.t2 = headers;
|
|
11363
11472
|
_context112.next = 5;
|
|
11364
11473
|
return _this.baseURL;
|
|
@@ -11366,11 +11475,11 @@ var Api = function Api(baseURL) {
|
|
|
11366
11475
|
case 5:
|
|
11367
11476
|
_context112.t3 = _context112.sent;
|
|
11368
11477
|
_context112.t4 = {
|
|
11369
|
-
|
|
11478
|
+
urlParams: _context112.t1,
|
|
11370
11479
|
headers: _context112.t2,
|
|
11371
11480
|
baseURL: _context112.t3
|
|
11372
11481
|
};
|
|
11373
|
-
return _context112.abrupt("return", _context112.t0.
|
|
11482
|
+
return _context112.abrupt("return", _context112.t0.deleteIncomeRequest.call(_context112.t0, _context112.t4));
|
|
11374
11483
|
|
|
11375
11484
|
case 8:
|
|
11376
11485
|
case "end":
|
|
@@ -11380,33 +11489,36 @@ var Api = function Api(baseURL) {
|
|
|
11380
11489
|
}, _callee112);
|
|
11381
11490
|
}));
|
|
11382
11491
|
|
|
11383
|
-
return function (
|
|
11492
|
+
return function (_x249, _x250) {
|
|
11384
11493
|
return _ref112.apply(this, arguments);
|
|
11385
11494
|
};
|
|
11386
|
-
}();
|
|
11495
|
+
}(); // internalCrossSale
|
|
11387
11496
|
|
|
11388
|
-
|
|
11389
|
-
|
|
11497
|
+
|
|
11498
|
+
this.createInternalCrossSale = /*#__PURE__*/function () {
|
|
11499
|
+
var _ref113 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee113(urlParams, body, headers) {
|
|
11390
11500
|
return runtime_1.wrap(function _callee113$(_context113) {
|
|
11391
11501
|
while (1) {
|
|
11392
11502
|
switch (_context113.prev = _context113.next) {
|
|
11393
11503
|
case 0:
|
|
11394
11504
|
_context113.t0 = api;
|
|
11395
11505
|
_context113.t1 = urlParams;
|
|
11396
|
-
_context113.t2 =
|
|
11397
|
-
_context113.
|
|
11506
|
+
_context113.t2 = body;
|
|
11507
|
+
_context113.t3 = headers;
|
|
11508
|
+
_context113.next = 6;
|
|
11398
11509
|
return _this.baseURL;
|
|
11399
11510
|
|
|
11400
|
-
case
|
|
11401
|
-
_context113.
|
|
11402
|
-
_context113.
|
|
11511
|
+
case 6:
|
|
11512
|
+
_context113.t4 = _context113.sent;
|
|
11513
|
+
_context113.t5 = {
|
|
11403
11514
|
urlParams: _context113.t1,
|
|
11404
|
-
|
|
11405
|
-
|
|
11515
|
+
body: _context113.t2,
|
|
11516
|
+
headers: _context113.t3,
|
|
11517
|
+
baseURL: _context113.t4
|
|
11406
11518
|
};
|
|
11407
|
-
return _context113.abrupt("return", _context113.t0.
|
|
11519
|
+
return _context113.abrupt("return", _context113.t0.createInternalCrossSaleRequest.call(_context113.t0, _context113.t5));
|
|
11408
11520
|
|
|
11409
|
-
case
|
|
11521
|
+
case 9:
|
|
11410
11522
|
case "end":
|
|
11411
11523
|
return _context113.stop();
|
|
11412
11524
|
}
|
|
@@ -11414,35 +11526,33 @@ var Api = function Api(baseURL) {
|
|
|
11414
11526
|
}, _callee113);
|
|
11415
11527
|
}));
|
|
11416
11528
|
|
|
11417
|
-
return function (_x252, _x253) {
|
|
11529
|
+
return function (_x251, _x252, _x253) {
|
|
11418
11530
|
return _ref113.apply(this, arguments);
|
|
11419
11531
|
};
|
|
11420
11532
|
}();
|
|
11421
11533
|
|
|
11422
|
-
this.
|
|
11423
|
-
var _ref114 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee114(
|
|
11534
|
+
this.findInternalCrossSaleInfo = /*#__PURE__*/function () {
|
|
11535
|
+
var _ref114 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee114(params, headers) {
|
|
11424
11536
|
return runtime_1.wrap(function _callee114$(_context114) {
|
|
11425
11537
|
while (1) {
|
|
11426
11538
|
switch (_context114.prev = _context114.next) {
|
|
11427
11539
|
case 0:
|
|
11428
11540
|
_context114.t0 = api;
|
|
11429
|
-
_context114.t1 =
|
|
11430
|
-
_context114.t2 =
|
|
11431
|
-
_context114.
|
|
11432
|
-
_context114.next = 6;
|
|
11541
|
+
_context114.t1 = params;
|
|
11542
|
+
_context114.t2 = headers;
|
|
11543
|
+
_context114.next = 5;
|
|
11433
11544
|
return _this.baseURL;
|
|
11434
11545
|
|
|
11435
|
-
case
|
|
11436
|
-
_context114.
|
|
11437
|
-
_context114.
|
|
11438
|
-
|
|
11439
|
-
|
|
11440
|
-
|
|
11441
|
-
baseURL: _context114.t4
|
|
11546
|
+
case 5:
|
|
11547
|
+
_context114.t3 = _context114.sent;
|
|
11548
|
+
_context114.t4 = {
|
|
11549
|
+
params: _context114.t1,
|
|
11550
|
+
headers: _context114.t2,
|
|
11551
|
+
baseURL: _context114.t3
|
|
11442
11552
|
};
|
|
11443
|
-
return _context114.abrupt("return", _context114.t0.
|
|
11553
|
+
return _context114.abrupt("return", _context114.t0.findInternalCrossSaleInfoRequest.call(_context114.t0, _context114.t4));
|
|
11444
11554
|
|
|
11445
|
-
case
|
|
11555
|
+
case 8:
|
|
11446
11556
|
case "end":
|
|
11447
11557
|
return _context114.stop();
|
|
11448
11558
|
}
|
|
@@ -11450,20 +11560,19 @@ var Api = function Api(baseURL) {
|
|
|
11450
11560
|
}, _callee114);
|
|
11451
11561
|
}));
|
|
11452
11562
|
|
|
11453
|
-
return function (_x254, _x255
|
|
11563
|
+
return function (_x254, _x255) {
|
|
11454
11564
|
return _ref114.apply(this, arguments);
|
|
11455
11565
|
};
|
|
11456
|
-
}();
|
|
11457
|
-
|
|
11566
|
+
}();
|
|
11458
11567
|
|
|
11459
|
-
this.
|
|
11460
|
-
var _ref115 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee115(
|
|
11568
|
+
this.findInternalCrossSales = /*#__PURE__*/function () {
|
|
11569
|
+
var _ref115 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee115(urlParams, headers) {
|
|
11461
11570
|
return runtime_1.wrap(function _callee115$(_context115) {
|
|
11462
11571
|
while (1) {
|
|
11463
11572
|
switch (_context115.prev = _context115.next) {
|
|
11464
11573
|
case 0:
|
|
11465
11574
|
_context115.t0 = api;
|
|
11466
|
-
_context115.t1 =
|
|
11575
|
+
_context115.t1 = urlParams;
|
|
11467
11576
|
_context115.t2 = headers;
|
|
11468
11577
|
_context115.next = 5;
|
|
11469
11578
|
return _this.baseURL;
|
|
@@ -11471,11 +11580,11 @@ var Api = function Api(baseURL) {
|
|
|
11471
11580
|
case 5:
|
|
11472
11581
|
_context115.t3 = _context115.sent;
|
|
11473
11582
|
_context115.t4 = {
|
|
11474
|
-
|
|
11583
|
+
urlParams: _context115.t1,
|
|
11475
11584
|
headers: _context115.t2,
|
|
11476
11585
|
baseURL: _context115.t3
|
|
11477
11586
|
};
|
|
11478
|
-
return _context115.abrupt("return", _context115.t0.
|
|
11587
|
+
return _context115.abrupt("return", _context115.t0.findInternalCrossSalesRequest.call(_context115.t0, _context115.t4));
|
|
11479
11588
|
|
|
11480
11589
|
case 8:
|
|
11481
11590
|
case "end":
|
|
@@ -11485,33 +11594,35 @@ var Api = function Api(baseURL) {
|
|
|
11485
11594
|
}, _callee115);
|
|
11486
11595
|
}));
|
|
11487
11596
|
|
|
11488
|
-
return function (
|
|
11597
|
+
return function (_x256, _x257) {
|
|
11489
11598
|
return _ref115.apply(this, arguments);
|
|
11490
11599
|
};
|
|
11491
11600
|
}();
|
|
11492
11601
|
|
|
11493
|
-
this.
|
|
11494
|
-
var _ref116 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee116(urlParams, headers) {
|
|
11602
|
+
this.updateInternalCrossSale = /*#__PURE__*/function () {
|
|
11603
|
+
var _ref116 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee116(urlParams, body, headers) {
|
|
11495
11604
|
return runtime_1.wrap(function _callee116$(_context116) {
|
|
11496
11605
|
while (1) {
|
|
11497
11606
|
switch (_context116.prev = _context116.next) {
|
|
11498
11607
|
case 0:
|
|
11499
11608
|
_context116.t0 = api;
|
|
11500
11609
|
_context116.t1 = urlParams;
|
|
11501
|
-
_context116.t2 =
|
|
11502
|
-
_context116.
|
|
11610
|
+
_context116.t2 = body;
|
|
11611
|
+
_context116.t3 = headers;
|
|
11612
|
+
_context116.next = 6;
|
|
11503
11613
|
return _this.baseURL;
|
|
11504
11614
|
|
|
11505
|
-
case
|
|
11506
|
-
_context116.
|
|
11507
|
-
_context116.
|
|
11615
|
+
case 6:
|
|
11616
|
+
_context116.t4 = _context116.sent;
|
|
11617
|
+
_context116.t5 = {
|
|
11508
11618
|
urlParams: _context116.t1,
|
|
11509
|
-
|
|
11510
|
-
|
|
11619
|
+
body: _context116.t2,
|
|
11620
|
+
headers: _context116.t3,
|
|
11621
|
+
baseURL: _context116.t4
|
|
11511
11622
|
};
|
|
11512
|
-
return _context116.abrupt("return", _context116.t0.
|
|
11623
|
+
return _context116.abrupt("return", _context116.t0.updateInternalCrossSaleRequest.call(_context116.t0, _context116.t5));
|
|
11513
11624
|
|
|
11514
|
-
case
|
|
11625
|
+
case 9:
|
|
11515
11626
|
case "end":
|
|
11516
11627
|
return _context116.stop();
|
|
11517
11628
|
}
|
|
@@ -11519,19 +11630,20 @@ var Api = function Api(baseURL) {
|
|
|
11519
11630
|
}, _callee116);
|
|
11520
11631
|
}));
|
|
11521
11632
|
|
|
11522
|
-
return function (_x259, _x260) {
|
|
11633
|
+
return function (_x258, _x259, _x260) {
|
|
11523
11634
|
return _ref116.apply(this, arguments);
|
|
11524
11635
|
};
|
|
11525
|
-
}();
|
|
11636
|
+
}(); // lead assignment block
|
|
11526
11637
|
|
|
11527
|
-
|
|
11528
|
-
|
|
11638
|
+
|
|
11639
|
+
this.createLeadAssignmentBlock = /*#__PURE__*/function () {
|
|
11640
|
+
var _ref117 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee117(body, headers) {
|
|
11529
11641
|
return runtime_1.wrap(function _callee117$(_context117) {
|
|
11530
11642
|
while (1) {
|
|
11531
11643
|
switch (_context117.prev = _context117.next) {
|
|
11532
11644
|
case 0:
|
|
11533
11645
|
_context117.t0 = api;
|
|
11534
|
-
_context117.t1 =
|
|
11646
|
+
_context117.t1 = body;
|
|
11535
11647
|
_context117.t2 = headers;
|
|
11536
11648
|
_context117.next = 5;
|
|
11537
11649
|
return _this.baseURL;
|
|
@@ -11539,11 +11651,11 @@ var Api = function Api(baseURL) {
|
|
|
11539
11651
|
case 5:
|
|
11540
11652
|
_context117.t3 = _context117.sent;
|
|
11541
11653
|
_context117.t4 = {
|
|
11542
|
-
|
|
11654
|
+
body: _context117.t1,
|
|
11543
11655
|
headers: _context117.t2,
|
|
11544
11656
|
baseURL: _context117.t3
|
|
11545
11657
|
};
|
|
11546
|
-
return _context117.abrupt("return", _context117.t0.
|
|
11658
|
+
return _context117.abrupt("return", _context117.t0.createLeadAssignmentBlockRequest.call(_context117.t0, _context117.t4));
|
|
11547
11659
|
|
|
11548
11660
|
case 8:
|
|
11549
11661
|
case "end":
|
|
@@ -11558,30 +11670,28 @@ var Api = function Api(baseURL) {
|
|
|
11558
11670
|
};
|
|
11559
11671
|
}();
|
|
11560
11672
|
|
|
11561
|
-
this.
|
|
11562
|
-
var _ref118 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee118(urlParams,
|
|
11673
|
+
this.deleteLeadAssignmentBlock = /*#__PURE__*/function () {
|
|
11674
|
+
var _ref118 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee118(urlParams, headers) {
|
|
11563
11675
|
return runtime_1.wrap(function _callee118$(_context118) {
|
|
11564
11676
|
while (1) {
|
|
11565
11677
|
switch (_context118.prev = _context118.next) {
|
|
11566
11678
|
case 0:
|
|
11567
11679
|
_context118.t0 = api;
|
|
11568
11680
|
_context118.t1 = urlParams;
|
|
11569
|
-
_context118.t2 =
|
|
11570
|
-
_context118.
|
|
11571
|
-
_context118.next = 6;
|
|
11681
|
+
_context118.t2 = headers;
|
|
11682
|
+
_context118.next = 5;
|
|
11572
11683
|
return _this.baseURL;
|
|
11573
11684
|
|
|
11574
|
-
case
|
|
11575
|
-
_context118.
|
|
11576
|
-
_context118.
|
|
11685
|
+
case 5:
|
|
11686
|
+
_context118.t3 = _context118.sent;
|
|
11687
|
+
_context118.t4 = {
|
|
11577
11688
|
urlParams: _context118.t1,
|
|
11578
|
-
|
|
11579
|
-
|
|
11580
|
-
baseURL: _context118.t4
|
|
11689
|
+
headers: _context118.t2,
|
|
11690
|
+
baseURL: _context118.t3
|
|
11581
11691
|
};
|
|
11582
|
-
return _context118.abrupt("return", _context118.t0.
|
|
11692
|
+
return _context118.abrupt("return", _context118.t0.deleteLeadAssignmentBlockRequest.call(_context118.t0, _context118.t4));
|
|
11583
11693
|
|
|
11584
|
-
case
|
|
11694
|
+
case 8:
|
|
11585
11695
|
case "end":
|
|
11586
11696
|
return _context118.stop();
|
|
11587
11697
|
}
|
|
@@ -11589,20 +11699,19 @@ var Api = function Api(baseURL) {
|
|
|
11589
11699
|
}, _callee118);
|
|
11590
11700
|
}));
|
|
11591
11701
|
|
|
11592
|
-
return function (_x263, _x264
|
|
11702
|
+
return function (_x263, _x264) {
|
|
11593
11703
|
return _ref118.apply(this, arguments);
|
|
11594
11704
|
};
|
|
11595
|
-
}();
|
|
11596
|
-
|
|
11705
|
+
}();
|
|
11597
11706
|
|
|
11598
|
-
this.
|
|
11599
|
-
var _ref119 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee119(
|
|
11707
|
+
this.findLeadAssignmentBlocks = /*#__PURE__*/function () {
|
|
11708
|
+
var _ref119 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee119(params, headers) {
|
|
11600
11709
|
return runtime_1.wrap(function _callee119$(_context119) {
|
|
11601
11710
|
while (1) {
|
|
11602
11711
|
switch (_context119.prev = _context119.next) {
|
|
11603
11712
|
case 0:
|
|
11604
11713
|
_context119.t0 = api;
|
|
11605
|
-
_context119.t1 =
|
|
11714
|
+
_context119.t1 = params;
|
|
11606
11715
|
_context119.t2 = headers;
|
|
11607
11716
|
_context119.next = 5;
|
|
11608
11717
|
return _this.baseURL;
|
|
@@ -11610,11 +11719,11 @@ var Api = function Api(baseURL) {
|
|
|
11610
11719
|
case 5:
|
|
11611
11720
|
_context119.t3 = _context119.sent;
|
|
11612
11721
|
_context119.t4 = {
|
|
11613
|
-
|
|
11722
|
+
params: _context119.t1,
|
|
11614
11723
|
headers: _context119.t2,
|
|
11615
11724
|
baseURL: _context119.t3
|
|
11616
11725
|
};
|
|
11617
|
-
return _context119.abrupt("return", _context119.t0.
|
|
11726
|
+
return _context119.abrupt("return", _context119.t0.findLeadAssignmentBlocksRequest.call(_context119.t0, _context119.t4));
|
|
11618
11727
|
|
|
11619
11728
|
case 8:
|
|
11620
11729
|
case "end":
|
|
@@ -11624,33 +11733,35 @@ var Api = function Api(baseURL) {
|
|
|
11624
11733
|
}, _callee119);
|
|
11625
11734
|
}));
|
|
11626
11735
|
|
|
11627
|
-
return function (
|
|
11736
|
+
return function (_x265, _x266) {
|
|
11628
11737
|
return _ref119.apply(this, arguments);
|
|
11629
11738
|
};
|
|
11630
11739
|
}();
|
|
11631
11740
|
|
|
11632
|
-
this.
|
|
11633
|
-
var _ref120 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee120(body, headers) {
|
|
11741
|
+
this.updateLeadAssignmentBlock = /*#__PURE__*/function () {
|
|
11742
|
+
var _ref120 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee120(urlParams, body, headers) {
|
|
11634
11743
|
return runtime_1.wrap(function _callee120$(_context120) {
|
|
11635
11744
|
while (1) {
|
|
11636
11745
|
switch (_context120.prev = _context120.next) {
|
|
11637
11746
|
case 0:
|
|
11638
11747
|
_context120.t0 = api;
|
|
11639
|
-
_context120.t1 =
|
|
11640
|
-
_context120.t2 =
|
|
11641
|
-
_context120.
|
|
11748
|
+
_context120.t1 = urlParams;
|
|
11749
|
+
_context120.t2 = body;
|
|
11750
|
+
_context120.t3 = headers;
|
|
11751
|
+
_context120.next = 6;
|
|
11642
11752
|
return _this.baseURL;
|
|
11643
11753
|
|
|
11644
|
-
case
|
|
11645
|
-
_context120.
|
|
11646
|
-
_context120.
|
|
11647
|
-
|
|
11648
|
-
|
|
11649
|
-
|
|
11754
|
+
case 6:
|
|
11755
|
+
_context120.t4 = _context120.sent;
|
|
11756
|
+
_context120.t5 = {
|
|
11757
|
+
urlParams: _context120.t1,
|
|
11758
|
+
body: _context120.t2,
|
|
11759
|
+
headers: _context120.t3,
|
|
11760
|
+
baseURL: _context120.t4
|
|
11650
11761
|
};
|
|
11651
|
-
return _context120.abrupt("return", _context120.t0.
|
|
11762
|
+
return _context120.abrupt("return", _context120.t0.updateLeadAssignmentBlockRequest.call(_context120.t0, _context120.t5));
|
|
11652
11763
|
|
|
11653
|
-
case
|
|
11764
|
+
case 9:
|
|
11654
11765
|
case "end":
|
|
11655
11766
|
return _context120.stop();
|
|
11656
11767
|
}
|
|
@@ -11658,32 +11769,34 @@ var Api = function Api(baseURL) {
|
|
|
11658
11769
|
}, _callee120);
|
|
11659
11770
|
}));
|
|
11660
11771
|
|
|
11661
|
-
return function (_x268, _x269) {
|
|
11772
|
+
return function (_x267, _x268, _x269) {
|
|
11662
11773
|
return _ref120.apply(this, arguments);
|
|
11663
11774
|
};
|
|
11664
|
-
}(); // motivation
|
|
11775
|
+
}(); // motivation status
|
|
11665
11776
|
|
|
11666
11777
|
|
|
11667
|
-
this.
|
|
11668
|
-
var _ref121 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee121(headers) {
|
|
11778
|
+
this.findMessengerInviteLinks = /*#__PURE__*/function () {
|
|
11779
|
+
var _ref121 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee121(urlParams, headers) {
|
|
11669
11780
|
return runtime_1.wrap(function _callee121$(_context121) {
|
|
11670
11781
|
while (1) {
|
|
11671
11782
|
switch (_context121.prev = _context121.next) {
|
|
11672
11783
|
case 0:
|
|
11673
11784
|
_context121.t0 = api;
|
|
11674
|
-
_context121.t1 =
|
|
11675
|
-
_context121.
|
|
11785
|
+
_context121.t1 = urlParams;
|
|
11786
|
+
_context121.t2 = headers;
|
|
11787
|
+
_context121.next = 5;
|
|
11676
11788
|
return _this.baseURL;
|
|
11677
11789
|
|
|
11678
|
-
case
|
|
11679
|
-
_context121.
|
|
11680
|
-
_context121.
|
|
11681
|
-
|
|
11682
|
-
|
|
11790
|
+
case 5:
|
|
11791
|
+
_context121.t3 = _context121.sent;
|
|
11792
|
+
_context121.t4 = {
|
|
11793
|
+
urlParams: _context121.t1,
|
|
11794
|
+
headers: _context121.t2,
|
|
11795
|
+
baseURL: _context121.t3
|
|
11683
11796
|
};
|
|
11684
|
-
return _context121.abrupt("return", _context121.t0.
|
|
11797
|
+
return _context121.abrupt("return", _context121.t0.findMessengerInviteLinksRequest.call(_context121.t0, _context121.t4));
|
|
11685
11798
|
|
|
11686
|
-
case
|
|
11799
|
+
case 8:
|
|
11687
11800
|
case "end":
|
|
11688
11801
|
return _context121.stop();
|
|
11689
11802
|
}
|
|
@@ -11691,20 +11804,19 @@ var Api = function Api(baseURL) {
|
|
|
11691
11804
|
}, _callee121);
|
|
11692
11805
|
}));
|
|
11693
11806
|
|
|
11694
|
-
return function (_x270) {
|
|
11807
|
+
return function (_x270, _x271) {
|
|
11695
11808
|
return _ref121.apply(this, arguments);
|
|
11696
11809
|
};
|
|
11697
|
-
}();
|
|
11698
|
-
|
|
11810
|
+
}();
|
|
11699
11811
|
|
|
11700
|
-
this.
|
|
11701
|
-
var _ref122 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee122(
|
|
11812
|
+
this.calculateMotivationCommission = /*#__PURE__*/function () {
|
|
11813
|
+
var _ref122 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee122(body, headers) {
|
|
11702
11814
|
return runtime_1.wrap(function _callee122$(_context122) {
|
|
11703
11815
|
while (1) {
|
|
11704
11816
|
switch (_context122.prev = _context122.next) {
|
|
11705
11817
|
case 0:
|
|
11706
11818
|
_context122.t0 = api;
|
|
11707
|
-
_context122.t1 =
|
|
11819
|
+
_context122.t1 = body;
|
|
11708
11820
|
_context122.t2 = headers;
|
|
11709
11821
|
_context122.next = 5;
|
|
11710
11822
|
return _this.baseURL;
|
|
@@ -11712,11 +11824,11 @@ var Api = function Api(baseURL) {
|
|
|
11712
11824
|
case 5:
|
|
11713
11825
|
_context122.t3 = _context122.sent;
|
|
11714
11826
|
_context122.t4 = {
|
|
11715
|
-
|
|
11827
|
+
body: _context122.t1,
|
|
11716
11828
|
headers: _context122.t2,
|
|
11717
11829
|
baseURL: _context122.t3
|
|
11718
11830
|
};
|
|
11719
|
-
return _context122.abrupt("return", _context122.t0.
|
|
11831
|
+
return _context122.abrupt("return", _context122.t0.calculateMotivationCommissionRequest.call(_context122.t0, _context122.t4));
|
|
11720
11832
|
|
|
11721
11833
|
case 8:
|
|
11722
11834
|
case "end":
|
|
@@ -11726,34 +11838,32 @@ var Api = function Api(baseURL) {
|
|
|
11726
11838
|
}, _callee122);
|
|
11727
11839
|
}));
|
|
11728
11840
|
|
|
11729
|
-
return function (
|
|
11841
|
+
return function (_x272, _x273) {
|
|
11730
11842
|
return _ref122.apply(this, arguments);
|
|
11731
11843
|
};
|
|
11732
|
-
}(); //
|
|
11844
|
+
}(); // motivation glossary
|
|
11733
11845
|
|
|
11734
11846
|
|
|
11735
|
-
this.
|
|
11736
|
-
var _ref123 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee123(
|
|
11847
|
+
this.findMotivationGlossary = /*#__PURE__*/function () {
|
|
11848
|
+
var _ref123 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee123(headers) {
|
|
11737
11849
|
return runtime_1.wrap(function _callee123$(_context123) {
|
|
11738
11850
|
while (1) {
|
|
11739
11851
|
switch (_context123.prev = _context123.next) {
|
|
11740
11852
|
case 0:
|
|
11741
11853
|
_context123.t0 = api;
|
|
11742
|
-
_context123.t1 =
|
|
11743
|
-
_context123.
|
|
11744
|
-
_context123.next = 5;
|
|
11854
|
+
_context123.t1 = headers;
|
|
11855
|
+
_context123.next = 4;
|
|
11745
11856
|
return _this.baseURL;
|
|
11746
11857
|
|
|
11747
|
-
case
|
|
11748
|
-
_context123.
|
|
11749
|
-
_context123.
|
|
11750
|
-
|
|
11751
|
-
|
|
11752
|
-
baseURL: _context123.t3
|
|
11858
|
+
case 4:
|
|
11859
|
+
_context123.t2 = _context123.sent;
|
|
11860
|
+
_context123.t3 = {
|
|
11861
|
+
headers: _context123.t1,
|
|
11862
|
+
baseURL: _context123.t2
|
|
11753
11863
|
};
|
|
11754
|
-
return _context123.abrupt("return", _context123.t0.
|
|
11864
|
+
return _context123.abrupt("return", _context123.t0.findMotivationGlossaryRequest.call(_context123.t0, _context123.t3));
|
|
11755
11865
|
|
|
11756
|
-
case
|
|
11866
|
+
case 7:
|
|
11757
11867
|
case "end":
|
|
11758
11868
|
return _context123.stop();
|
|
11759
11869
|
}
|
|
@@ -11761,12 +11871,13 @@ var Api = function Api(baseURL) {
|
|
|
11761
11871
|
}, _callee123);
|
|
11762
11872
|
}));
|
|
11763
11873
|
|
|
11764
|
-
return function (
|
|
11874
|
+
return function (_x274) {
|
|
11765
11875
|
return _ref123.apply(this, arguments);
|
|
11766
11876
|
};
|
|
11767
|
-
}();
|
|
11877
|
+
}(); // motivation status
|
|
11768
11878
|
|
|
11769
|
-
|
|
11879
|
+
|
|
11880
|
+
this.findMotivationStatusByExpertId = /*#__PURE__*/function () {
|
|
11770
11881
|
var _ref124 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee124(urlParams, headers) {
|
|
11771
11882
|
return runtime_1.wrap(function _callee124$(_context124) {
|
|
11772
11883
|
while (1) {
|
|
@@ -11785,7 +11896,7 @@ var Api = function Api(baseURL) {
|
|
|
11785
11896
|
headers: _context124.t2,
|
|
11786
11897
|
baseURL: _context124.t3
|
|
11787
11898
|
};
|
|
11788
|
-
return _context124.abrupt("return", _context124.t0.
|
|
11899
|
+
return _context124.abrupt("return", _context124.t0.findMotivationStatusByExpertIdRequest.call(_context124.t0, _context124.t4));
|
|
11789
11900
|
|
|
11790
11901
|
case 8:
|
|
11791
11902
|
case "end":
|
|
@@ -11798,32 +11909,31 @@ var Api = function Api(baseURL) {
|
|
|
11798
11909
|
return function (_x275, _x276) {
|
|
11799
11910
|
return _ref124.apply(this, arguments);
|
|
11800
11911
|
};
|
|
11801
|
-
}();
|
|
11912
|
+
}(); // payslip
|
|
11802
11913
|
|
|
11803
|
-
|
|
11804
|
-
|
|
11914
|
+
|
|
11915
|
+
this.findPayslips = /*#__PURE__*/function () {
|
|
11916
|
+
var _ref125 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee125(params, headers) {
|
|
11805
11917
|
return runtime_1.wrap(function _callee125$(_context125) {
|
|
11806
11918
|
while (1) {
|
|
11807
11919
|
switch (_context125.prev = _context125.next) {
|
|
11808
11920
|
case 0:
|
|
11809
11921
|
_context125.t0 = api;
|
|
11810
|
-
_context125.t1 =
|
|
11811
|
-
_context125.t2 =
|
|
11812
|
-
_context125.
|
|
11813
|
-
_context125.next = 6;
|
|
11922
|
+
_context125.t1 = params;
|
|
11923
|
+
_context125.t2 = headers;
|
|
11924
|
+
_context125.next = 5;
|
|
11814
11925
|
return _this.baseURL;
|
|
11815
11926
|
|
|
11816
|
-
case
|
|
11817
|
-
_context125.
|
|
11818
|
-
_context125.
|
|
11819
|
-
|
|
11820
|
-
|
|
11821
|
-
|
|
11822
|
-
baseURL: _context125.t4
|
|
11927
|
+
case 5:
|
|
11928
|
+
_context125.t3 = _context125.sent;
|
|
11929
|
+
_context125.t4 = {
|
|
11930
|
+
params: _context125.t1,
|
|
11931
|
+
headers: _context125.t2,
|
|
11932
|
+
baseURL: _context125.t3
|
|
11823
11933
|
};
|
|
11824
|
-
return _context125.abrupt("return", _context125.t0.
|
|
11934
|
+
return _context125.abrupt("return", _context125.t0.findPayslipsRequest.call(_context125.t0, _context125.t4));
|
|
11825
11935
|
|
|
11826
|
-
case
|
|
11936
|
+
case 8:
|
|
11827
11937
|
case "end":
|
|
11828
11938
|
return _context125.stop();
|
|
11829
11939
|
}
|
|
@@ -11831,20 +11941,19 @@ var Api = function Api(baseURL) {
|
|
|
11831
11941
|
}, _callee125);
|
|
11832
11942
|
}));
|
|
11833
11943
|
|
|
11834
|
-
return function (_x277, _x278
|
|
11944
|
+
return function (_x277, _x278) {
|
|
11835
11945
|
return _ref125.apply(this, arguments);
|
|
11836
11946
|
};
|
|
11837
|
-
}();
|
|
11838
|
-
|
|
11947
|
+
}();
|
|
11839
11948
|
|
|
11840
|
-
this.
|
|
11841
|
-
var _ref126 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee126(
|
|
11949
|
+
this.findPayslipById = /*#__PURE__*/function () {
|
|
11950
|
+
var _ref126 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee126(urlParams, headers) {
|
|
11842
11951
|
return runtime_1.wrap(function _callee126$(_context126) {
|
|
11843
11952
|
while (1) {
|
|
11844
11953
|
switch (_context126.prev = _context126.next) {
|
|
11845
11954
|
case 0:
|
|
11846
11955
|
_context126.t0 = api;
|
|
11847
|
-
_context126.t1 =
|
|
11956
|
+
_context126.t1 = urlParams;
|
|
11848
11957
|
_context126.t2 = headers;
|
|
11849
11958
|
_context126.next = 5;
|
|
11850
11959
|
return _this.baseURL;
|
|
@@ -11852,11 +11961,11 @@ var Api = function Api(baseURL) {
|
|
|
11852
11961
|
case 5:
|
|
11853
11962
|
_context126.t3 = _context126.sent;
|
|
11854
11963
|
_context126.t4 = {
|
|
11855
|
-
|
|
11964
|
+
urlParams: _context126.t1,
|
|
11856
11965
|
headers: _context126.t2,
|
|
11857
11966
|
baseURL: _context126.t3
|
|
11858
11967
|
};
|
|
11859
|
-
return _context126.abrupt("return", _context126.t0.
|
|
11968
|
+
return _context126.abrupt("return", _context126.t0.findPayslipByIdRequest.call(_context126.t0, _context126.t4));
|
|
11860
11969
|
|
|
11861
11970
|
case 8:
|
|
11862
11971
|
case "end":
|
|
@@ -11866,33 +11975,35 @@ var Api = function Api(baseURL) {
|
|
|
11866
11975
|
}, _callee126);
|
|
11867
11976
|
}));
|
|
11868
11977
|
|
|
11869
|
-
return function (
|
|
11978
|
+
return function (_x279, _x280) {
|
|
11870
11979
|
return _ref126.apply(this, arguments);
|
|
11871
11980
|
};
|
|
11872
11981
|
}();
|
|
11873
11982
|
|
|
11874
|
-
this.
|
|
11875
|
-
var _ref127 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee127(urlParams, headers) {
|
|
11983
|
+
this.updatePayslip = /*#__PURE__*/function () {
|
|
11984
|
+
var _ref127 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee127(urlParams, body, headers) {
|
|
11876
11985
|
return runtime_1.wrap(function _callee127$(_context127) {
|
|
11877
11986
|
while (1) {
|
|
11878
11987
|
switch (_context127.prev = _context127.next) {
|
|
11879
11988
|
case 0:
|
|
11880
11989
|
_context127.t0 = api;
|
|
11881
11990
|
_context127.t1 = urlParams;
|
|
11882
|
-
_context127.t2 =
|
|
11883
|
-
_context127.
|
|
11991
|
+
_context127.t2 = body;
|
|
11992
|
+
_context127.t3 = headers;
|
|
11993
|
+
_context127.next = 6;
|
|
11884
11994
|
return _this.baseURL;
|
|
11885
11995
|
|
|
11886
|
-
case
|
|
11887
|
-
_context127.
|
|
11888
|
-
_context127.
|
|
11996
|
+
case 6:
|
|
11997
|
+
_context127.t4 = _context127.sent;
|
|
11998
|
+
_context127.t5 = {
|
|
11889
11999
|
urlParams: _context127.t1,
|
|
11890
|
-
|
|
11891
|
-
|
|
12000
|
+
body: _context127.t2,
|
|
12001
|
+
headers: _context127.t3,
|
|
12002
|
+
baseURL: _context127.t4
|
|
11892
12003
|
};
|
|
11893
|
-
return _context127.abrupt("return", _context127.t0.
|
|
12004
|
+
return _context127.abrupt("return", _context127.t0.updatePayslipRequest.call(_context127.t0, _context127.t5));
|
|
11894
12005
|
|
|
11895
|
-
case
|
|
12006
|
+
case 9:
|
|
11896
12007
|
case "end":
|
|
11897
12008
|
return _context127.stop();
|
|
11898
12009
|
}
|
|
@@ -11900,19 +12011,20 @@ var Api = function Api(baseURL) {
|
|
|
11900
12011
|
}, _callee127);
|
|
11901
12012
|
}));
|
|
11902
12013
|
|
|
11903
|
-
return function (_x282, _x283) {
|
|
12014
|
+
return function (_x281, _x282, _x283) {
|
|
11904
12015
|
return _ref127.apply(this, arguments);
|
|
11905
12016
|
};
|
|
11906
|
-
}();
|
|
12017
|
+
}(); // phone
|
|
11907
12018
|
|
|
11908
|
-
|
|
11909
|
-
|
|
12019
|
+
|
|
12020
|
+
this.findPhones = /*#__PURE__*/function () {
|
|
12021
|
+
var _ref128 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee128(params, headers) {
|
|
11910
12022
|
return runtime_1.wrap(function _callee128$(_context128) {
|
|
11911
12023
|
while (1) {
|
|
11912
12024
|
switch (_context128.prev = _context128.next) {
|
|
11913
12025
|
case 0:
|
|
11914
12026
|
_context128.t0 = api;
|
|
11915
|
-
_context128.t1 =
|
|
12027
|
+
_context128.t1 = params;
|
|
11916
12028
|
_context128.t2 = headers;
|
|
11917
12029
|
_context128.next = 5;
|
|
11918
12030
|
return _this.baseURL;
|
|
@@ -11920,11 +12032,11 @@ var Api = function Api(baseURL) {
|
|
|
11920
12032
|
case 5:
|
|
11921
12033
|
_context128.t3 = _context128.sent;
|
|
11922
12034
|
_context128.t4 = {
|
|
11923
|
-
|
|
12035
|
+
params: _context128.t1,
|
|
11924
12036
|
headers: _context128.t2,
|
|
11925
12037
|
baseURL: _context128.t3
|
|
11926
12038
|
};
|
|
11927
|
-
return _context128.abrupt("return", _context128.t0.
|
|
12039
|
+
return _context128.abrupt("return", _context128.t0.findPhonesRequest.call(_context128.t0, _context128.t4));
|
|
11928
12040
|
|
|
11929
12041
|
case 8:
|
|
11930
12042
|
case "end":
|
|
@@ -11937,17 +12049,16 @@ var Api = function Api(baseURL) {
|
|
|
11937
12049
|
return function (_x284, _x285) {
|
|
11938
12050
|
return _ref128.apply(this, arguments);
|
|
11939
12051
|
};
|
|
11940
|
-
}();
|
|
11941
|
-
|
|
12052
|
+
}();
|
|
11942
12053
|
|
|
11943
|
-
this.
|
|
11944
|
-
var _ref129 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee129(
|
|
12054
|
+
this.blockPhone = /*#__PURE__*/function () {
|
|
12055
|
+
var _ref129 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee129(urlParams, headers) {
|
|
11945
12056
|
return runtime_1.wrap(function _callee129$(_context129) {
|
|
11946
12057
|
while (1) {
|
|
11947
12058
|
switch (_context129.prev = _context129.next) {
|
|
11948
12059
|
case 0:
|
|
11949
12060
|
_context129.t0 = api;
|
|
11950
|
-
_context129.t1 =
|
|
12061
|
+
_context129.t1 = urlParams;
|
|
11951
12062
|
_context129.t2 = headers;
|
|
11952
12063
|
_context129.next = 5;
|
|
11953
12064
|
return _this.baseURL;
|
|
@@ -11955,11 +12066,11 @@ var Api = function Api(baseURL) {
|
|
|
11955
12066
|
case 5:
|
|
11956
12067
|
_context129.t3 = _context129.sent;
|
|
11957
12068
|
_context129.t4 = {
|
|
11958
|
-
|
|
12069
|
+
urlParams: _context129.t1,
|
|
11959
12070
|
headers: _context129.t2,
|
|
11960
12071
|
baseURL: _context129.t3
|
|
11961
12072
|
};
|
|
11962
|
-
return _context129.abrupt("return", _context129.t0.
|
|
12073
|
+
return _context129.abrupt("return", _context129.t0.blockPhoneRequest.call(_context129.t0, _context129.t4));
|
|
11963
12074
|
|
|
11964
12075
|
case 8:
|
|
11965
12076
|
case "end":
|
|
@@ -11974,14 +12085,14 @@ var Api = function Api(baseURL) {
|
|
|
11974
12085
|
};
|
|
11975
12086
|
}();
|
|
11976
12087
|
|
|
11977
|
-
this.
|
|
11978
|
-
var _ref130 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee130(
|
|
12088
|
+
this.unblockPhone = /*#__PURE__*/function () {
|
|
12089
|
+
var _ref130 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee130(urlParams, headers) {
|
|
11979
12090
|
return runtime_1.wrap(function _callee130$(_context130) {
|
|
11980
12091
|
while (1) {
|
|
11981
12092
|
switch (_context130.prev = _context130.next) {
|
|
11982
12093
|
case 0:
|
|
11983
12094
|
_context130.t0 = api;
|
|
11984
|
-
_context130.t1 =
|
|
12095
|
+
_context130.t1 = urlParams;
|
|
11985
12096
|
_context130.t2 = headers;
|
|
11986
12097
|
_context130.next = 5;
|
|
11987
12098
|
return _this.baseURL;
|
|
@@ -11989,11 +12100,11 @@ var Api = function Api(baseURL) {
|
|
|
11989
12100
|
case 5:
|
|
11990
12101
|
_context130.t3 = _context130.sent;
|
|
11991
12102
|
_context130.t4 = {
|
|
11992
|
-
|
|
12103
|
+
urlParams: _context130.t1,
|
|
11993
12104
|
headers: _context130.t2,
|
|
11994
12105
|
baseURL: _context130.t3
|
|
11995
12106
|
};
|
|
11996
|
-
return _context130.abrupt("return", _context130.t0.
|
|
12107
|
+
return _context130.abrupt("return", _context130.t0.unblockPhoneRequest.call(_context130.t0, _context130.t4));
|
|
11997
12108
|
|
|
11998
12109
|
case 8:
|
|
11999
12110
|
case "end":
|
|
@@ -12006,32 +12117,31 @@ var Api = function Api(baseURL) {
|
|
|
12006
12117
|
return function (_x288, _x289) {
|
|
12007
12118
|
return _ref130.apply(this, arguments);
|
|
12008
12119
|
};
|
|
12009
|
-
}();
|
|
12120
|
+
}(); // phoneBookContact
|
|
12010
12121
|
|
|
12011
|
-
|
|
12012
|
-
|
|
12122
|
+
|
|
12123
|
+
this.createPhoneBookContact = /*#__PURE__*/function () {
|
|
12124
|
+
var _ref131 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee131(body, headers) {
|
|
12013
12125
|
return runtime_1.wrap(function _callee131$(_context131) {
|
|
12014
12126
|
while (1) {
|
|
12015
12127
|
switch (_context131.prev = _context131.next) {
|
|
12016
12128
|
case 0:
|
|
12017
12129
|
_context131.t0 = api;
|
|
12018
|
-
_context131.t1 =
|
|
12019
|
-
_context131.t2 =
|
|
12020
|
-
_context131.
|
|
12021
|
-
_context131.next = 6;
|
|
12130
|
+
_context131.t1 = body;
|
|
12131
|
+
_context131.t2 = headers;
|
|
12132
|
+
_context131.next = 5;
|
|
12022
12133
|
return _this.baseURL;
|
|
12023
12134
|
|
|
12024
|
-
case
|
|
12025
|
-
_context131.
|
|
12026
|
-
_context131.
|
|
12027
|
-
|
|
12028
|
-
|
|
12029
|
-
|
|
12030
|
-
baseURL: _context131.t4
|
|
12135
|
+
case 5:
|
|
12136
|
+
_context131.t3 = _context131.sent;
|
|
12137
|
+
_context131.t4 = {
|
|
12138
|
+
body: _context131.t1,
|
|
12139
|
+
headers: _context131.t2,
|
|
12140
|
+
baseURL: _context131.t3
|
|
12031
12141
|
};
|
|
12032
|
-
return _context131.abrupt("return", _context131.t0.
|
|
12142
|
+
return _context131.abrupt("return", _context131.t0.createPhoneBookContactRequest.call(_context131.t0, _context131.t4));
|
|
12033
12143
|
|
|
12034
|
-
case
|
|
12144
|
+
case 8:
|
|
12035
12145
|
case "end":
|
|
12036
12146
|
return _context131.stop();
|
|
12037
12147
|
}
|
|
@@ -12039,19 +12149,19 @@ var Api = function Api(baseURL) {
|
|
|
12039
12149
|
}, _callee131);
|
|
12040
12150
|
}));
|
|
12041
12151
|
|
|
12042
|
-
return function (_x290, _x291
|
|
12152
|
+
return function (_x290, _x291) {
|
|
12043
12153
|
return _ref131.apply(this, arguments);
|
|
12044
12154
|
};
|
|
12045
12155
|
}();
|
|
12046
12156
|
|
|
12047
|
-
this.
|
|
12048
|
-
var _ref132 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee132(
|
|
12157
|
+
this.findPhoneBookContacts = /*#__PURE__*/function () {
|
|
12158
|
+
var _ref132 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee132(params, headers) {
|
|
12049
12159
|
return runtime_1.wrap(function _callee132$(_context132) {
|
|
12050
12160
|
while (1) {
|
|
12051
12161
|
switch (_context132.prev = _context132.next) {
|
|
12052
12162
|
case 0:
|
|
12053
12163
|
_context132.t0 = api;
|
|
12054
|
-
_context132.t1 =
|
|
12164
|
+
_context132.t1 = params;
|
|
12055
12165
|
_context132.t2 = headers;
|
|
12056
12166
|
_context132.next = 5;
|
|
12057
12167
|
return _this.baseURL;
|
|
@@ -12059,11 +12169,11 @@ var Api = function Api(baseURL) {
|
|
|
12059
12169
|
case 5:
|
|
12060
12170
|
_context132.t3 = _context132.sent;
|
|
12061
12171
|
_context132.t4 = {
|
|
12062
|
-
|
|
12172
|
+
params: _context132.t1,
|
|
12063
12173
|
headers: _context132.t2,
|
|
12064
12174
|
baseURL: _context132.t3
|
|
12065
12175
|
};
|
|
12066
|
-
return _context132.abrupt("return", _context132.t0.
|
|
12176
|
+
return _context132.abrupt("return", _context132.t0.findPhoneBookContactsRequest.call(_context132.t0, _context132.t4));
|
|
12067
12177
|
|
|
12068
12178
|
case 8:
|
|
12069
12179
|
case "end":
|
|
@@ -12073,34 +12183,35 @@ var Api = function Api(baseURL) {
|
|
|
12073
12183
|
}, _callee132);
|
|
12074
12184
|
}));
|
|
12075
12185
|
|
|
12076
|
-
return function (
|
|
12186
|
+
return function (_x292, _x293) {
|
|
12077
12187
|
return _ref132.apply(this, arguments);
|
|
12078
12188
|
};
|
|
12079
|
-
}();
|
|
12080
|
-
|
|
12189
|
+
}();
|
|
12081
12190
|
|
|
12082
|
-
this.
|
|
12083
|
-
var _ref133 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee133(body, headers) {
|
|
12191
|
+
this.updatePhoneBookContact = /*#__PURE__*/function () {
|
|
12192
|
+
var _ref133 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee133(urlParams, body, headers) {
|
|
12084
12193
|
return runtime_1.wrap(function _callee133$(_context133) {
|
|
12085
12194
|
while (1) {
|
|
12086
12195
|
switch (_context133.prev = _context133.next) {
|
|
12087
12196
|
case 0:
|
|
12088
12197
|
_context133.t0 = api;
|
|
12089
|
-
_context133.t1 =
|
|
12090
|
-
_context133.t2 =
|
|
12091
|
-
_context133.
|
|
12198
|
+
_context133.t1 = urlParams;
|
|
12199
|
+
_context133.t2 = body;
|
|
12200
|
+
_context133.t3 = headers;
|
|
12201
|
+
_context133.next = 6;
|
|
12092
12202
|
return _this.baseURL;
|
|
12093
12203
|
|
|
12094
|
-
case
|
|
12095
|
-
_context133.
|
|
12096
|
-
_context133.
|
|
12097
|
-
|
|
12098
|
-
|
|
12099
|
-
|
|
12204
|
+
case 6:
|
|
12205
|
+
_context133.t4 = _context133.sent;
|
|
12206
|
+
_context133.t5 = {
|
|
12207
|
+
urlParams: _context133.t1,
|
|
12208
|
+
body: _context133.t2,
|
|
12209
|
+
headers: _context133.t3,
|
|
12210
|
+
baseURL: _context133.t4
|
|
12100
12211
|
};
|
|
12101
|
-
return _context133.abrupt("return", _context133.t0.
|
|
12212
|
+
return _context133.abrupt("return", _context133.t0.updatePhoneBookContactRequest.call(_context133.t0, _context133.t5));
|
|
12102
12213
|
|
|
12103
|
-
case
|
|
12214
|
+
case 9:
|
|
12104
12215
|
case "end":
|
|
12105
12216
|
return _context133.stop();
|
|
12106
12217
|
}
|
|
@@ -12108,19 +12219,19 @@ var Api = function Api(baseURL) {
|
|
|
12108
12219
|
}, _callee133);
|
|
12109
12220
|
}));
|
|
12110
12221
|
|
|
12111
|
-
return function (_x295, _x296) {
|
|
12222
|
+
return function (_x294, _x295, _x296) {
|
|
12112
12223
|
return _ref133.apply(this, arguments);
|
|
12113
12224
|
};
|
|
12114
12225
|
}();
|
|
12115
12226
|
|
|
12116
|
-
this.
|
|
12117
|
-
var _ref134 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee134(
|
|
12227
|
+
this.deletePhoneBookContact = /*#__PURE__*/function () {
|
|
12228
|
+
var _ref134 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee134(urlParams, headers) {
|
|
12118
12229
|
return runtime_1.wrap(function _callee134$(_context134) {
|
|
12119
12230
|
while (1) {
|
|
12120
12231
|
switch (_context134.prev = _context134.next) {
|
|
12121
12232
|
case 0:
|
|
12122
12233
|
_context134.t0 = api;
|
|
12123
|
-
_context134.t1 =
|
|
12234
|
+
_context134.t1 = urlParams;
|
|
12124
12235
|
_context134.t2 = headers;
|
|
12125
12236
|
_context134.next = 5;
|
|
12126
12237
|
return _this.baseURL;
|
|
@@ -12128,11 +12239,11 @@ var Api = function Api(baseURL) {
|
|
|
12128
12239
|
case 5:
|
|
12129
12240
|
_context134.t3 = _context134.sent;
|
|
12130
12241
|
_context134.t4 = {
|
|
12131
|
-
|
|
12242
|
+
urlParams: _context134.t1,
|
|
12132
12243
|
headers: _context134.t2,
|
|
12133
12244
|
baseURL: _context134.t3
|
|
12134
12245
|
};
|
|
12135
|
-
return _context134.abrupt("return", _context134.t0.
|
|
12246
|
+
return _context134.abrupt("return", _context134.t0.deletePhoneBookContactRequest.call(_context134.t0, _context134.t4));
|
|
12136
12247
|
|
|
12137
12248
|
case 8:
|
|
12138
12249
|
case "end":
|
|
@@ -12145,16 +12256,17 @@ var Api = function Api(baseURL) {
|
|
|
12145
12256
|
return function (_x297, _x298) {
|
|
12146
12257
|
return _ref134.apply(this, arguments);
|
|
12147
12258
|
};
|
|
12148
|
-
}();
|
|
12259
|
+
}(); // photoOrder
|
|
12149
12260
|
|
|
12150
|
-
|
|
12151
|
-
|
|
12261
|
+
|
|
12262
|
+
this.createPhotoOrder = /*#__PURE__*/function () {
|
|
12263
|
+
var _ref135 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee135(body, headers) {
|
|
12152
12264
|
return runtime_1.wrap(function _callee135$(_context135) {
|
|
12153
12265
|
while (1) {
|
|
12154
12266
|
switch (_context135.prev = _context135.next) {
|
|
12155
12267
|
case 0:
|
|
12156
12268
|
_context135.t0 = api;
|
|
12157
|
-
_context135.t1 =
|
|
12269
|
+
_context135.t1 = body;
|
|
12158
12270
|
_context135.t2 = headers;
|
|
12159
12271
|
_context135.next = 5;
|
|
12160
12272
|
return _this.baseURL;
|
|
@@ -12162,11 +12274,11 @@ var Api = function Api(baseURL) {
|
|
|
12162
12274
|
case 5:
|
|
12163
12275
|
_context135.t3 = _context135.sent;
|
|
12164
12276
|
_context135.t4 = {
|
|
12165
|
-
|
|
12277
|
+
body: _context135.t1,
|
|
12166
12278
|
headers: _context135.t2,
|
|
12167
12279
|
baseURL: _context135.t3
|
|
12168
12280
|
};
|
|
12169
|
-
return _context135.abrupt("return", _context135.t0.
|
|
12281
|
+
return _context135.abrupt("return", _context135.t0.createPhotoOrderRequest.call(_context135.t0, _context135.t4));
|
|
12170
12282
|
|
|
12171
12283
|
case 8:
|
|
12172
12284
|
case "end":
|
|
@@ -12181,14 +12293,14 @@ var Api = function Api(baseURL) {
|
|
|
12181
12293
|
};
|
|
12182
12294
|
}();
|
|
12183
12295
|
|
|
12184
|
-
this.
|
|
12185
|
-
var _ref136 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee136(
|
|
12296
|
+
this.findPhotoOrders = /*#__PURE__*/function () {
|
|
12297
|
+
var _ref136 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee136(params, headers) {
|
|
12186
12298
|
return runtime_1.wrap(function _callee136$(_context136) {
|
|
12187
12299
|
while (1) {
|
|
12188
12300
|
switch (_context136.prev = _context136.next) {
|
|
12189
12301
|
case 0:
|
|
12190
12302
|
_context136.t0 = api;
|
|
12191
|
-
_context136.t1 =
|
|
12303
|
+
_context136.t1 = params;
|
|
12192
12304
|
_context136.t2 = headers;
|
|
12193
12305
|
_context136.next = 5;
|
|
12194
12306
|
return _this.baseURL;
|
|
@@ -12196,11 +12308,11 @@ var Api = function Api(baseURL) {
|
|
|
12196
12308
|
case 5:
|
|
12197
12309
|
_context136.t3 = _context136.sent;
|
|
12198
12310
|
_context136.t4 = {
|
|
12199
|
-
|
|
12311
|
+
params: _context136.t1,
|
|
12200
12312
|
headers: _context136.t2,
|
|
12201
12313
|
baseURL: _context136.t3
|
|
12202
12314
|
};
|
|
12203
|
-
return _context136.abrupt("return", _context136.t0.
|
|
12315
|
+
return _context136.abrupt("return", _context136.t0.findPhotoOrdersRequest.call(_context136.t0, _context136.t4));
|
|
12204
12316
|
|
|
12205
12317
|
case 8:
|
|
12206
12318
|
case "end":
|
|
@@ -12213,17 +12325,16 @@ var Api = function Api(baseURL) {
|
|
|
12213
12325
|
return function (_x301, _x302) {
|
|
12214
12326
|
return _ref136.apply(this, arguments);
|
|
12215
12327
|
};
|
|
12216
|
-
}();
|
|
12217
|
-
|
|
12328
|
+
}();
|
|
12218
12329
|
|
|
12219
|
-
this.
|
|
12220
|
-
var _ref137 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee137(
|
|
12330
|
+
this.sendPhotoOrderFeedback = /*#__PURE__*/function () {
|
|
12331
|
+
var _ref137 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee137(urlParams, headers) {
|
|
12221
12332
|
return runtime_1.wrap(function _callee137$(_context137) {
|
|
12222
12333
|
while (1) {
|
|
12223
12334
|
switch (_context137.prev = _context137.next) {
|
|
12224
12335
|
case 0:
|
|
12225
12336
|
_context137.t0 = api;
|
|
12226
|
-
_context137.t1 =
|
|
12337
|
+
_context137.t1 = urlParams;
|
|
12227
12338
|
_context137.t2 = headers;
|
|
12228
12339
|
_context137.next = 5;
|
|
12229
12340
|
return _this.baseURL;
|
|
@@ -12231,11 +12342,11 @@ var Api = function Api(baseURL) {
|
|
|
12231
12342
|
case 5:
|
|
12232
12343
|
_context137.t3 = _context137.sent;
|
|
12233
12344
|
_context137.t4 = {
|
|
12234
|
-
|
|
12345
|
+
urlParams: _context137.t1,
|
|
12235
12346
|
headers: _context137.t2,
|
|
12236
12347
|
baseURL: _context137.t3
|
|
12237
12348
|
};
|
|
12238
|
-
return _context137.abrupt("return", _context137.t0.
|
|
12349
|
+
return _context137.abrupt("return", _context137.t0.sendPhotoOrderFeedbackRequest.call(_context137.t0, _context137.t4));
|
|
12239
12350
|
|
|
12240
12351
|
case 8:
|
|
12241
12352
|
case "end":
|
|
@@ -12250,14 +12361,14 @@ var Api = function Api(baseURL) {
|
|
|
12250
12361
|
};
|
|
12251
12362
|
}();
|
|
12252
12363
|
|
|
12253
|
-
this.
|
|
12254
|
-
var _ref138 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee138(
|
|
12364
|
+
this.terminatePhotoOrder = /*#__PURE__*/function () {
|
|
12365
|
+
var _ref138 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee138(urlParams, headers) {
|
|
12255
12366
|
return runtime_1.wrap(function _callee138$(_context138) {
|
|
12256
12367
|
while (1) {
|
|
12257
12368
|
switch (_context138.prev = _context138.next) {
|
|
12258
12369
|
case 0:
|
|
12259
12370
|
_context138.t0 = api;
|
|
12260
|
-
_context138.t1 =
|
|
12371
|
+
_context138.t1 = urlParams;
|
|
12261
12372
|
_context138.t2 = headers;
|
|
12262
12373
|
_context138.next = 5;
|
|
12263
12374
|
return _this.baseURL;
|
|
@@ -12265,11 +12376,11 @@ var Api = function Api(baseURL) {
|
|
|
12265
12376
|
case 5:
|
|
12266
12377
|
_context138.t3 = _context138.sent;
|
|
12267
12378
|
_context138.t4 = {
|
|
12268
|
-
|
|
12379
|
+
urlParams: _context138.t1,
|
|
12269
12380
|
headers: _context138.t2,
|
|
12270
12381
|
baseURL: _context138.t3
|
|
12271
12382
|
};
|
|
12272
|
-
return _context138.abrupt("return", _context138.t0.
|
|
12383
|
+
return _context138.abrupt("return", _context138.t0.terminatePhotoOrderRequest.call(_context138.t0, _context138.t4));
|
|
12273
12384
|
|
|
12274
12385
|
case 8:
|
|
12275
12386
|
case "end":
|
|
@@ -12282,28 +12393,31 @@ var Api = function Api(baseURL) {
|
|
|
12282
12393
|
return function (_x305, _x306) {
|
|
12283
12394
|
return _ref138.apply(this, arguments);
|
|
12284
12395
|
};
|
|
12285
|
-
}();
|
|
12396
|
+
}(); // realty
|
|
12286
12397
|
|
|
12287
|
-
|
|
12288
|
-
|
|
12398
|
+
|
|
12399
|
+
this.findRealtyDuplicate = /*#__PURE__*/function () {
|
|
12400
|
+
var _ref139 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee139(params, headers) {
|
|
12289
12401
|
return runtime_1.wrap(function _callee139$(_context139) {
|
|
12290
12402
|
while (1) {
|
|
12291
12403
|
switch (_context139.prev = _context139.next) {
|
|
12292
12404
|
case 0:
|
|
12293
12405
|
_context139.t0 = api;
|
|
12294
|
-
_context139.t1 =
|
|
12295
|
-
_context139.
|
|
12406
|
+
_context139.t1 = params;
|
|
12407
|
+
_context139.t2 = headers;
|
|
12408
|
+
_context139.next = 5;
|
|
12296
12409
|
return _this.baseURL;
|
|
12297
12410
|
|
|
12298
|
-
case
|
|
12299
|
-
_context139.
|
|
12300
|
-
_context139.
|
|
12301
|
-
|
|
12302
|
-
|
|
12411
|
+
case 5:
|
|
12412
|
+
_context139.t3 = _context139.sent;
|
|
12413
|
+
_context139.t4 = {
|
|
12414
|
+
params: _context139.t1,
|
|
12415
|
+
headers: _context139.t2,
|
|
12416
|
+
baseURL: _context139.t3
|
|
12303
12417
|
};
|
|
12304
|
-
return _context139.abrupt("return", _context139.t0.
|
|
12418
|
+
return _context139.abrupt("return", _context139.t0.findRealtyDuplicateRequest.call(_context139.t0, _context139.t4));
|
|
12305
12419
|
|
|
12306
|
-
case
|
|
12420
|
+
case 8:
|
|
12307
12421
|
case "end":
|
|
12308
12422
|
return _context139.stop();
|
|
12309
12423
|
}
|
|
@@ -12311,31 +12425,33 @@ var Api = function Api(baseURL) {
|
|
|
12311
12425
|
}, _callee139);
|
|
12312
12426
|
}));
|
|
12313
12427
|
|
|
12314
|
-
return function (_x307) {
|
|
12428
|
+
return function (_x307, _x308) {
|
|
12315
12429
|
return _ref139.apply(this, arguments);
|
|
12316
12430
|
};
|
|
12317
12431
|
}();
|
|
12318
12432
|
|
|
12319
|
-
this.
|
|
12320
|
-
var _ref140 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee140(
|
|
12433
|
+
this.findRealtyPriceHistory = /*#__PURE__*/function () {
|
|
12434
|
+
var _ref140 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee140(params, headers) {
|
|
12321
12435
|
return runtime_1.wrap(function _callee140$(_context140) {
|
|
12322
12436
|
while (1) {
|
|
12323
12437
|
switch (_context140.prev = _context140.next) {
|
|
12324
12438
|
case 0:
|
|
12325
12439
|
_context140.t0 = api;
|
|
12326
|
-
_context140.t1 =
|
|
12327
|
-
_context140.
|
|
12440
|
+
_context140.t1 = params;
|
|
12441
|
+
_context140.t2 = headers;
|
|
12442
|
+
_context140.next = 5;
|
|
12328
12443
|
return _this.baseURL;
|
|
12329
12444
|
|
|
12330
|
-
case
|
|
12331
|
-
_context140.
|
|
12332
|
-
_context140.
|
|
12333
|
-
|
|
12334
|
-
|
|
12445
|
+
case 5:
|
|
12446
|
+
_context140.t3 = _context140.sent;
|
|
12447
|
+
_context140.t4 = {
|
|
12448
|
+
params: _context140.t1,
|
|
12449
|
+
headers: _context140.t2,
|
|
12450
|
+
baseURL: _context140.t3
|
|
12335
12451
|
};
|
|
12336
|
-
return _context140.abrupt("return", _context140.t0.
|
|
12452
|
+
return _context140.abrupt("return", _context140.t0.findRealtyPriceHistoryRequest.call(_context140.t0, _context140.t4));
|
|
12337
12453
|
|
|
12338
|
-
case
|
|
12454
|
+
case 8:
|
|
12339
12455
|
case "end":
|
|
12340
12456
|
return _context140.stop();
|
|
12341
12457
|
}
|
|
@@ -12343,34 +12459,31 @@ var Api = function Api(baseURL) {
|
|
|
12343
12459
|
}, _callee140);
|
|
12344
12460
|
}));
|
|
12345
12461
|
|
|
12346
|
-
return function (
|
|
12462
|
+
return function (_x309, _x310) {
|
|
12347
12463
|
return _ref140.apply(this, arguments);
|
|
12348
12464
|
};
|
|
12349
|
-
}();
|
|
12350
|
-
|
|
12465
|
+
}();
|
|
12351
12466
|
|
|
12352
|
-
this.
|
|
12353
|
-
var _ref141 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee141(
|
|
12467
|
+
this.findSimilarRealtyIdsById = /*#__PURE__*/function () {
|
|
12468
|
+
var _ref141 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee141(urlParams) {
|
|
12354
12469
|
return runtime_1.wrap(function _callee141$(_context141) {
|
|
12355
12470
|
while (1) {
|
|
12356
12471
|
switch (_context141.prev = _context141.next) {
|
|
12357
12472
|
case 0:
|
|
12358
12473
|
_context141.t0 = api;
|
|
12359
|
-
_context141.t1 =
|
|
12360
|
-
_context141.
|
|
12361
|
-
_context141.next = 5;
|
|
12474
|
+
_context141.t1 = urlParams;
|
|
12475
|
+
_context141.next = 4;
|
|
12362
12476
|
return _this.baseURL;
|
|
12363
12477
|
|
|
12364
|
-
case
|
|
12365
|
-
_context141.
|
|
12366
|
-
_context141.
|
|
12367
|
-
|
|
12368
|
-
|
|
12369
|
-
baseURL: _context141.t3
|
|
12478
|
+
case 4:
|
|
12479
|
+
_context141.t2 = _context141.sent;
|
|
12480
|
+
_context141.t3 = {
|
|
12481
|
+
urlParams: _context141.t1,
|
|
12482
|
+
baseURL: _context141.t2
|
|
12370
12483
|
};
|
|
12371
|
-
return _context141.abrupt("return", _context141.t0.
|
|
12484
|
+
return _context141.abrupt("return", _context141.t0.findSimilarRealtyIdsById.call(_context141.t0, _context141.t3));
|
|
12372
12485
|
|
|
12373
|
-
case
|
|
12486
|
+
case 7:
|
|
12374
12487
|
case "end":
|
|
12375
12488
|
return _context141.stop();
|
|
12376
12489
|
}
|
|
@@ -12378,36 +12491,31 @@ var Api = function Api(baseURL) {
|
|
|
12378
12491
|
}, _callee141);
|
|
12379
12492
|
}));
|
|
12380
12493
|
|
|
12381
|
-
return function (
|
|
12494
|
+
return function (_x311) {
|
|
12382
12495
|
return _ref141.apply(this, arguments);
|
|
12383
12496
|
};
|
|
12384
|
-
}();
|
|
12385
|
-
|
|
12497
|
+
}();
|
|
12386
12498
|
|
|
12387
|
-
this.
|
|
12388
|
-
var _ref142 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee142(
|
|
12499
|
+
this.subscribeToRealtyUpdates = /*#__PURE__*/function () {
|
|
12500
|
+
var _ref142 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee142(body) {
|
|
12389
12501
|
return runtime_1.wrap(function _callee142$(_context142) {
|
|
12390
12502
|
while (1) {
|
|
12391
12503
|
switch (_context142.prev = _context142.next) {
|
|
12392
12504
|
case 0:
|
|
12393
12505
|
_context142.t0 = api;
|
|
12394
|
-
_context142.t1 =
|
|
12395
|
-
_context142.
|
|
12396
|
-
_context142.t3 = headers;
|
|
12397
|
-
_context142.next = 6;
|
|
12506
|
+
_context142.t1 = body;
|
|
12507
|
+
_context142.next = 4;
|
|
12398
12508
|
return _this.baseURL;
|
|
12399
12509
|
|
|
12400
|
-
case
|
|
12401
|
-
_context142.
|
|
12402
|
-
_context142.
|
|
12403
|
-
|
|
12404
|
-
|
|
12405
|
-
headers: _context142.t3,
|
|
12406
|
-
baseURL: _context142.t4
|
|
12510
|
+
case 4:
|
|
12511
|
+
_context142.t2 = _context142.sent;
|
|
12512
|
+
_context142.t3 = {
|
|
12513
|
+
body: _context142.t1,
|
|
12514
|
+
baseURL: _context142.t2
|
|
12407
12515
|
};
|
|
12408
|
-
return _context142.abrupt("return", _context142.t0.
|
|
12516
|
+
return _context142.abrupt("return", _context142.t0.subscribeToRealtyUpdatesRequest.call(_context142.t0, _context142.t3));
|
|
12409
12517
|
|
|
12410
|
-
case
|
|
12518
|
+
case 7:
|
|
12411
12519
|
case "end":
|
|
12412
12520
|
return _context142.stop();
|
|
12413
12521
|
}
|
|
@@ -12415,19 +12523,20 @@ var Api = function Api(baseURL) {
|
|
|
12415
12523
|
}, _callee142);
|
|
12416
12524
|
}));
|
|
12417
12525
|
|
|
12418
|
-
return function (
|
|
12526
|
+
return function (_x312) {
|
|
12419
12527
|
return _ref142.apply(this, arguments);
|
|
12420
12528
|
};
|
|
12421
|
-
}();
|
|
12529
|
+
}(); // scoring
|
|
12422
12530
|
|
|
12423
|
-
|
|
12424
|
-
|
|
12531
|
+
|
|
12532
|
+
this.findScoring = /*#__PURE__*/function () {
|
|
12533
|
+
var _ref143 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee143(params, headers) {
|
|
12425
12534
|
return runtime_1.wrap(function _callee143$(_context143) {
|
|
12426
12535
|
while (1) {
|
|
12427
12536
|
switch (_context143.prev = _context143.next) {
|
|
12428
12537
|
case 0:
|
|
12429
12538
|
_context143.t0 = api;
|
|
12430
|
-
_context143.t1 =
|
|
12539
|
+
_context143.t1 = params;
|
|
12431
12540
|
_context143.t2 = headers;
|
|
12432
12541
|
_context143.next = 5;
|
|
12433
12542
|
return _this.baseURL;
|
|
@@ -12435,11 +12544,11 @@ var Api = function Api(baseURL) {
|
|
|
12435
12544
|
case 5:
|
|
12436
12545
|
_context143.t3 = _context143.sent;
|
|
12437
12546
|
_context143.t4 = {
|
|
12438
|
-
|
|
12547
|
+
params: _context143.t1,
|
|
12439
12548
|
headers: _context143.t2,
|
|
12440
12549
|
baseURL: _context143.t3
|
|
12441
12550
|
};
|
|
12442
|
-
return _context143.abrupt("return", _context143.t0.
|
|
12551
|
+
return _context143.abrupt("return", _context143.t0.findScoringRequest.call(_context143.t0, _context143.t4));
|
|
12443
12552
|
|
|
12444
12553
|
case 8:
|
|
12445
12554
|
case "end":
|
|
@@ -12449,12 +12558,13 @@ var Api = function Api(baseURL) {
|
|
|
12449
12558
|
}, _callee143);
|
|
12450
12559
|
}));
|
|
12451
12560
|
|
|
12452
|
-
return function (
|
|
12561
|
+
return function (_x313, _x314) {
|
|
12453
12562
|
return _ref143.apply(this, arguments);
|
|
12454
12563
|
};
|
|
12455
|
-
}();
|
|
12564
|
+
}(); // serviceRequest
|
|
12456
12565
|
|
|
12457
|
-
|
|
12566
|
+
|
|
12567
|
+
this.approveCloseServiceRequest = /*#__PURE__*/function () {
|
|
12458
12568
|
var _ref144 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee144(urlParams, body, headers) {
|
|
12459
12569
|
return runtime_1.wrap(function _callee144$(_context144) {
|
|
12460
12570
|
while (1) {
|
|
@@ -12475,7 +12585,7 @@ var Api = function Api(baseURL) {
|
|
|
12475
12585
|
headers: _context144.t3,
|
|
12476
12586
|
baseURL: _context144.t4
|
|
12477
12587
|
};
|
|
12478
|
-
return _context144.abrupt("return", _context144.t0.
|
|
12588
|
+
return _context144.abrupt("return", _context144.t0.approveCloseServiceRequestRequest.call(_context144.t0, _context144.t5));
|
|
12479
12589
|
|
|
12480
12590
|
case 9:
|
|
12481
12591
|
case "end":
|
|
@@ -12485,12 +12595,12 @@ var Api = function Api(baseURL) {
|
|
|
12485
12595
|
}, _callee144);
|
|
12486
12596
|
}));
|
|
12487
12597
|
|
|
12488
|
-
return function (_x316, _x317
|
|
12598
|
+
return function (_x315, _x316, _x317) {
|
|
12489
12599
|
return _ref144.apply(this, arguments);
|
|
12490
12600
|
};
|
|
12491
12601
|
}();
|
|
12492
12602
|
|
|
12493
|
-
this.
|
|
12603
|
+
this.callbackServiceRequest = /*#__PURE__*/function () {
|
|
12494
12604
|
var _ref145 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee145(urlParams, headers) {
|
|
12495
12605
|
return runtime_1.wrap(function _callee145$(_context145) {
|
|
12496
12606
|
while (1) {
|
|
@@ -12509,7 +12619,7 @@ var Api = function Api(baseURL) {
|
|
|
12509
12619
|
headers: _context145.t2,
|
|
12510
12620
|
baseURL: _context145.t3
|
|
12511
12621
|
};
|
|
12512
|
-
return _context145.abrupt("return", _context145.t0.
|
|
12622
|
+
return _context145.abrupt("return", _context145.t0.callbackServiceRequest.call(_context145.t0, _context145.t4));
|
|
12513
12623
|
|
|
12514
12624
|
case 8:
|
|
12515
12625
|
case "end":
|
|
@@ -12519,33 +12629,35 @@ var Api = function Api(baseURL) {
|
|
|
12519
12629
|
}, _callee145);
|
|
12520
12630
|
}));
|
|
12521
12631
|
|
|
12522
|
-
return function (
|
|
12632
|
+
return function (_x318, _x319) {
|
|
12523
12633
|
return _ref145.apply(this, arguments);
|
|
12524
12634
|
};
|
|
12525
12635
|
}();
|
|
12526
12636
|
|
|
12527
|
-
this.
|
|
12528
|
-
var _ref146 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee146(body, headers) {
|
|
12637
|
+
this.closeServiceRequest = /*#__PURE__*/function () {
|
|
12638
|
+
var _ref146 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee146(urlParams, body, headers) {
|
|
12529
12639
|
return runtime_1.wrap(function _callee146$(_context146) {
|
|
12530
12640
|
while (1) {
|
|
12531
12641
|
switch (_context146.prev = _context146.next) {
|
|
12532
12642
|
case 0:
|
|
12533
12643
|
_context146.t0 = api;
|
|
12534
|
-
_context146.t1 =
|
|
12535
|
-
_context146.t2 =
|
|
12536
|
-
_context146.
|
|
12644
|
+
_context146.t1 = urlParams;
|
|
12645
|
+
_context146.t2 = body;
|
|
12646
|
+
_context146.t3 = headers;
|
|
12647
|
+
_context146.next = 6;
|
|
12537
12648
|
return _this.baseURL;
|
|
12538
12649
|
|
|
12539
|
-
case
|
|
12540
|
-
_context146.
|
|
12541
|
-
_context146.
|
|
12542
|
-
|
|
12543
|
-
|
|
12544
|
-
|
|
12650
|
+
case 6:
|
|
12651
|
+
_context146.t4 = _context146.sent;
|
|
12652
|
+
_context146.t5 = {
|
|
12653
|
+
urlParams: _context146.t1,
|
|
12654
|
+
body: _context146.t2,
|
|
12655
|
+
headers: _context146.t3,
|
|
12656
|
+
baseURL: _context146.t4
|
|
12545
12657
|
};
|
|
12546
|
-
return _context146.abrupt("return", _context146.t0.
|
|
12658
|
+
return _context146.abrupt("return", _context146.t0.closeServiceRequestRequest.call(_context146.t0, _context146.t5));
|
|
12547
12659
|
|
|
12548
|
-
case
|
|
12660
|
+
case 9:
|
|
12549
12661
|
case "end":
|
|
12550
12662
|
return _context146.stop();
|
|
12551
12663
|
}
|
|
@@ -12553,19 +12665,19 @@ var Api = function Api(baseURL) {
|
|
|
12553
12665
|
}, _callee146);
|
|
12554
12666
|
}));
|
|
12555
12667
|
|
|
12556
|
-
return function (_x321, _x322) {
|
|
12668
|
+
return function (_x320, _x321, _x322) {
|
|
12557
12669
|
return _ref146.apply(this, arguments);
|
|
12558
12670
|
};
|
|
12559
12671
|
}();
|
|
12560
12672
|
|
|
12561
|
-
this.
|
|
12562
|
-
var _ref147 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee147(
|
|
12673
|
+
this.completeServiceRequestModeration = /*#__PURE__*/function () {
|
|
12674
|
+
var _ref147 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee147(urlParams, headers) {
|
|
12563
12675
|
return runtime_1.wrap(function _callee147$(_context147) {
|
|
12564
12676
|
while (1) {
|
|
12565
12677
|
switch (_context147.prev = _context147.next) {
|
|
12566
12678
|
case 0:
|
|
12567
12679
|
_context147.t0 = api;
|
|
12568
|
-
_context147.t1 =
|
|
12680
|
+
_context147.t1 = urlParams;
|
|
12569
12681
|
_context147.t2 = headers;
|
|
12570
12682
|
_context147.next = 5;
|
|
12571
12683
|
return _this.baseURL;
|
|
@@ -12573,11 +12685,11 @@ var Api = function Api(baseURL) {
|
|
|
12573
12685
|
case 5:
|
|
12574
12686
|
_context147.t3 = _context147.sent;
|
|
12575
12687
|
_context147.t4 = {
|
|
12576
|
-
|
|
12688
|
+
urlParams: _context147.t1,
|
|
12577
12689
|
headers: _context147.t2,
|
|
12578
12690
|
baseURL: _context147.t3
|
|
12579
12691
|
};
|
|
12580
|
-
return _context147.abrupt("return", _context147.t0.
|
|
12692
|
+
return _context147.abrupt("return", _context147.t0.completeServiceRequestModerationRequest.call(_context147.t0, _context147.t4));
|
|
12581
12693
|
|
|
12582
12694
|
case 8:
|
|
12583
12695
|
case "end":
|
|
@@ -12592,14 +12704,14 @@ var Api = function Api(baseURL) {
|
|
|
12592
12704
|
};
|
|
12593
12705
|
}();
|
|
12594
12706
|
|
|
12595
|
-
this.
|
|
12596
|
-
var _ref148 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee148(
|
|
12707
|
+
this.createServiceRequest = /*#__PURE__*/function () {
|
|
12708
|
+
var _ref148 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee148(body, headers) {
|
|
12597
12709
|
return runtime_1.wrap(function _callee148$(_context148) {
|
|
12598
12710
|
while (1) {
|
|
12599
12711
|
switch (_context148.prev = _context148.next) {
|
|
12600
12712
|
case 0:
|
|
12601
12713
|
_context148.t0 = api;
|
|
12602
|
-
_context148.t1 =
|
|
12714
|
+
_context148.t1 = body;
|
|
12603
12715
|
_context148.t2 = headers;
|
|
12604
12716
|
_context148.next = 5;
|
|
12605
12717
|
return _this.baseURL;
|
|
@@ -12607,11 +12719,11 @@ var Api = function Api(baseURL) {
|
|
|
12607
12719
|
case 5:
|
|
12608
12720
|
_context148.t3 = _context148.sent;
|
|
12609
12721
|
_context148.t4 = {
|
|
12610
|
-
|
|
12722
|
+
body: _context148.t1,
|
|
12611
12723
|
headers: _context148.t2,
|
|
12612
12724
|
baseURL: _context148.t3
|
|
12613
12725
|
};
|
|
12614
|
-
return _context148.abrupt("return", _context148.t0.
|
|
12726
|
+
return _context148.abrupt("return", _context148.t0.createServiceRequestRequest.call(_context148.t0, _context148.t4));
|
|
12615
12727
|
|
|
12616
12728
|
case 8:
|
|
12617
12729
|
case "end":
|
|
@@ -12626,7 +12738,7 @@ var Api = function Api(baseURL) {
|
|
|
12626
12738
|
};
|
|
12627
12739
|
}();
|
|
12628
12740
|
|
|
12629
|
-
this.
|
|
12741
|
+
this.createInvestSellServiceRequest = /*#__PURE__*/function () {
|
|
12630
12742
|
var _ref149 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee149(body, headers) {
|
|
12631
12743
|
return runtime_1.wrap(function _callee149$(_context149) {
|
|
12632
12744
|
while (1) {
|
|
@@ -12645,7 +12757,7 @@ var Api = function Api(baseURL) {
|
|
|
12645
12757
|
headers: _context149.t2,
|
|
12646
12758
|
baseURL: _context149.t3
|
|
12647
12759
|
};
|
|
12648
|
-
return _context149.abrupt("return", _context149.t0.
|
|
12760
|
+
return _context149.abrupt("return", _context149.t0.createInvestSellServiceRequestRequest.call(_context149.t0, _context149.t4));
|
|
12649
12761
|
|
|
12650
12762
|
case 8:
|
|
12651
12763
|
case "end":
|
|
@@ -12660,30 +12772,28 @@ var Api = function Api(baseURL) {
|
|
|
12660
12772
|
};
|
|
12661
12773
|
}();
|
|
12662
12774
|
|
|
12663
|
-
this.
|
|
12664
|
-
var _ref150 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee150(urlParams,
|
|
12775
|
+
this.createServiceRequestByCrossSaleId = /*#__PURE__*/function () {
|
|
12776
|
+
var _ref150 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee150(urlParams, headers) {
|
|
12665
12777
|
return runtime_1.wrap(function _callee150$(_context150) {
|
|
12666
12778
|
while (1) {
|
|
12667
12779
|
switch (_context150.prev = _context150.next) {
|
|
12668
12780
|
case 0:
|
|
12669
12781
|
_context150.t0 = api;
|
|
12670
12782
|
_context150.t1 = urlParams;
|
|
12671
|
-
_context150.t2 =
|
|
12672
|
-
_context150.
|
|
12673
|
-
_context150.next = 6;
|
|
12783
|
+
_context150.t2 = headers;
|
|
12784
|
+
_context150.next = 5;
|
|
12674
12785
|
return _this.baseURL;
|
|
12675
12786
|
|
|
12676
|
-
case
|
|
12677
|
-
_context150.
|
|
12678
|
-
_context150.
|
|
12787
|
+
case 5:
|
|
12788
|
+
_context150.t3 = _context150.sent;
|
|
12789
|
+
_context150.t4 = {
|
|
12679
12790
|
urlParams: _context150.t1,
|
|
12680
|
-
|
|
12681
|
-
|
|
12682
|
-
baseURL: _context150.t4
|
|
12791
|
+
headers: _context150.t2,
|
|
12792
|
+
baseURL: _context150.t3
|
|
12683
12793
|
};
|
|
12684
|
-
return _context150.abrupt("return", _context150.t0.
|
|
12794
|
+
return _context150.abrupt("return", _context150.t0.createServiceRequestByCrossSaleIdRequest.call(_context150.t0, _context150.t4));
|
|
12685
12795
|
|
|
12686
|
-
case
|
|
12796
|
+
case 8:
|
|
12687
12797
|
case "end":
|
|
12688
12798
|
return _context150.stop();
|
|
12689
12799
|
}
|
|
@@ -12691,12 +12801,12 @@ var Api = function Api(baseURL) {
|
|
|
12691
12801
|
}, _callee150);
|
|
12692
12802
|
}));
|
|
12693
12803
|
|
|
12694
|
-
return function (_x329, _x330
|
|
12804
|
+
return function (_x329, _x330) {
|
|
12695
12805
|
return _ref150.apply(this, arguments);
|
|
12696
12806
|
};
|
|
12697
12807
|
}();
|
|
12698
12808
|
|
|
12699
|
-
this.
|
|
12809
|
+
this.createServiceRequestActivity = /*#__PURE__*/function () {
|
|
12700
12810
|
var _ref151 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee151(body, headers) {
|
|
12701
12811
|
return runtime_1.wrap(function _callee151$(_context151) {
|
|
12702
12812
|
while (1) {
|
|
@@ -12715,7 +12825,7 @@ var Api = function Api(baseURL) {
|
|
|
12715
12825
|
headers: _context151.t2,
|
|
12716
12826
|
baseURL: _context151.t3
|
|
12717
12827
|
};
|
|
12718
|
-
return _context151.abrupt("return", _context151.t0.
|
|
12828
|
+
return _context151.abrupt("return", _context151.t0.createServiceRequestActivityRequest.call(_context151.t0, _context151.t4));
|
|
12719
12829
|
|
|
12720
12830
|
case 8:
|
|
12721
12831
|
case "end":
|
|
@@ -12725,33 +12835,35 @@ var Api = function Api(baseURL) {
|
|
|
12725
12835
|
}, _callee151);
|
|
12726
12836
|
}));
|
|
12727
12837
|
|
|
12728
|
-
return function (
|
|
12838
|
+
return function (_x331, _x332) {
|
|
12729
12839
|
return _ref151.apply(this, arguments);
|
|
12730
12840
|
};
|
|
12731
12841
|
}();
|
|
12732
12842
|
|
|
12733
|
-
this.
|
|
12734
|
-
var _ref152 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee152(body, headers) {
|
|
12843
|
+
this.createServiceRequestCategorizedFile = /*#__PURE__*/function () {
|
|
12844
|
+
var _ref152 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee152(urlParams, body, headers) {
|
|
12735
12845
|
return runtime_1.wrap(function _callee152$(_context152) {
|
|
12736
12846
|
while (1) {
|
|
12737
12847
|
switch (_context152.prev = _context152.next) {
|
|
12738
12848
|
case 0:
|
|
12739
12849
|
_context152.t0 = api;
|
|
12740
|
-
_context152.t1 =
|
|
12741
|
-
_context152.t2 =
|
|
12742
|
-
_context152.
|
|
12850
|
+
_context152.t1 = urlParams;
|
|
12851
|
+
_context152.t2 = body;
|
|
12852
|
+
_context152.t3 = headers;
|
|
12853
|
+
_context152.next = 6;
|
|
12743
12854
|
return _this.baseURL;
|
|
12744
12855
|
|
|
12745
|
-
case
|
|
12746
|
-
_context152.
|
|
12747
|
-
_context152.
|
|
12748
|
-
|
|
12749
|
-
|
|
12750
|
-
|
|
12856
|
+
case 6:
|
|
12857
|
+
_context152.t4 = _context152.sent;
|
|
12858
|
+
_context152.t5 = {
|
|
12859
|
+
urlParams: _context152.t1,
|
|
12860
|
+
body: _context152.t2,
|
|
12861
|
+
headers: _context152.t3,
|
|
12862
|
+
baseURL: _context152.t4
|
|
12751
12863
|
};
|
|
12752
|
-
return _context152.abrupt("return", _context152.t0.
|
|
12864
|
+
return _context152.abrupt("return", _context152.t0.createServiceRequestCategorizedFileRequest.call(_context152.t0, _context152.t5));
|
|
12753
12865
|
|
|
12754
|
-
case
|
|
12866
|
+
case 9:
|
|
12755
12867
|
case "end":
|
|
12756
12868
|
return _context152.stop();
|
|
12757
12869
|
}
|
|
@@ -12759,35 +12871,33 @@ var Api = function Api(baseURL) {
|
|
|
12759
12871
|
}, _callee152);
|
|
12760
12872
|
}));
|
|
12761
12873
|
|
|
12762
|
-
return function (_x334, _x335) {
|
|
12874
|
+
return function (_x333, _x334, _x335) {
|
|
12763
12875
|
return _ref152.apply(this, arguments);
|
|
12764
12876
|
};
|
|
12765
12877
|
}();
|
|
12766
12878
|
|
|
12767
|
-
this.
|
|
12768
|
-
var _ref153 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee153(
|
|
12879
|
+
this.createServiceRequestFeedback = /*#__PURE__*/function () {
|
|
12880
|
+
var _ref153 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee153(body, headers) {
|
|
12769
12881
|
return runtime_1.wrap(function _callee153$(_context153) {
|
|
12770
12882
|
while (1) {
|
|
12771
12883
|
switch (_context153.prev = _context153.next) {
|
|
12772
12884
|
case 0:
|
|
12773
12885
|
_context153.t0 = api;
|
|
12774
|
-
_context153.t1 =
|
|
12775
|
-
_context153.t2 =
|
|
12776
|
-
_context153.
|
|
12777
|
-
_context153.next = 6;
|
|
12886
|
+
_context153.t1 = body;
|
|
12887
|
+
_context153.t2 = headers;
|
|
12888
|
+
_context153.next = 5;
|
|
12778
12889
|
return _this.baseURL;
|
|
12779
12890
|
|
|
12780
|
-
case
|
|
12781
|
-
_context153.
|
|
12782
|
-
_context153.
|
|
12783
|
-
|
|
12784
|
-
|
|
12785
|
-
|
|
12786
|
-
baseURL: _context153.t4
|
|
12891
|
+
case 5:
|
|
12892
|
+
_context153.t3 = _context153.sent;
|
|
12893
|
+
_context153.t4 = {
|
|
12894
|
+
body: _context153.t1,
|
|
12895
|
+
headers: _context153.t2,
|
|
12896
|
+
baseURL: _context153.t3
|
|
12787
12897
|
};
|
|
12788
|
-
return _context153.abrupt("return", _context153.t0.
|
|
12898
|
+
return _context153.abrupt("return", _context153.t0.createServiceRequestFeedbackRequest.call(_context153.t0, _context153.t4));
|
|
12789
12899
|
|
|
12790
|
-
case
|
|
12900
|
+
case 8:
|
|
12791
12901
|
case "end":
|
|
12792
12902
|
return _context153.stop();
|
|
12793
12903
|
}
|
|
@@ -12795,12 +12905,12 @@ var Api = function Api(baseURL) {
|
|
|
12795
12905
|
}, _callee153);
|
|
12796
12906
|
}));
|
|
12797
12907
|
|
|
12798
|
-
return function (_x336, _x337
|
|
12908
|
+
return function (_x336, _x337) {
|
|
12799
12909
|
return _ref153.apply(this, arguments);
|
|
12800
12910
|
};
|
|
12801
12911
|
}();
|
|
12802
12912
|
|
|
12803
|
-
this.
|
|
12913
|
+
this.createServiceRequestReview = /*#__PURE__*/function () {
|
|
12804
12914
|
var _ref154 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee154(body, headers) {
|
|
12805
12915
|
return runtime_1.wrap(function _callee154$(_context154) {
|
|
12806
12916
|
while (1) {
|
|
@@ -12819,7 +12929,7 @@ var Api = function Api(baseURL) {
|
|
|
12819
12929
|
headers: _context154.t2,
|
|
12820
12930
|
baseURL: _context154.t3
|
|
12821
12931
|
};
|
|
12822
|
-
return _context154.abrupt("return", _context154.t0.
|
|
12932
|
+
return _context154.abrupt("return", _context154.t0.createServiceRequestReviewRequest.call(_context154.t0, _context154.t4));
|
|
12823
12933
|
|
|
12824
12934
|
case 8:
|
|
12825
12935
|
case "end":
|
|
@@ -12829,33 +12939,35 @@ var Api = function Api(baseURL) {
|
|
|
12829
12939
|
}, _callee154);
|
|
12830
12940
|
}));
|
|
12831
12941
|
|
|
12832
|
-
return function (
|
|
12942
|
+
return function (_x338, _x339) {
|
|
12833
12943
|
return _ref154.apply(this, arguments);
|
|
12834
12944
|
};
|
|
12835
12945
|
}();
|
|
12836
12946
|
|
|
12837
|
-
this.
|
|
12838
|
-
var _ref155 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee155(urlParams, headers) {
|
|
12947
|
+
this.createServiceRequestSellerReport = /*#__PURE__*/function () {
|
|
12948
|
+
var _ref155 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee155(urlParams, body, headers) {
|
|
12839
12949
|
return runtime_1.wrap(function _callee155$(_context155) {
|
|
12840
12950
|
while (1) {
|
|
12841
12951
|
switch (_context155.prev = _context155.next) {
|
|
12842
12952
|
case 0:
|
|
12843
12953
|
_context155.t0 = api;
|
|
12844
12954
|
_context155.t1 = urlParams;
|
|
12845
|
-
_context155.t2 =
|
|
12846
|
-
_context155.
|
|
12955
|
+
_context155.t2 = body;
|
|
12956
|
+
_context155.t3 = headers;
|
|
12957
|
+
_context155.next = 6;
|
|
12847
12958
|
return _this.baseURL;
|
|
12848
12959
|
|
|
12849
|
-
case
|
|
12850
|
-
_context155.
|
|
12851
|
-
_context155.
|
|
12960
|
+
case 6:
|
|
12961
|
+
_context155.t4 = _context155.sent;
|
|
12962
|
+
_context155.t5 = {
|
|
12852
12963
|
urlParams: _context155.t1,
|
|
12853
|
-
|
|
12854
|
-
|
|
12964
|
+
body: _context155.t2,
|
|
12965
|
+
headers: _context155.t3,
|
|
12966
|
+
baseURL: _context155.t4
|
|
12855
12967
|
};
|
|
12856
|
-
return _context155.abrupt("return", _context155.t0.
|
|
12968
|
+
return _context155.abrupt("return", _context155.t0.createServiceRequestSellerReportRequest.call(_context155.t0, _context155.t5));
|
|
12857
12969
|
|
|
12858
|
-
case
|
|
12970
|
+
case 9:
|
|
12859
12971
|
case "end":
|
|
12860
12972
|
return _context155.stop();
|
|
12861
12973
|
}
|
|
@@ -12863,19 +12975,19 @@ var Api = function Api(baseURL) {
|
|
|
12863
12975
|
}, _callee155);
|
|
12864
12976
|
}));
|
|
12865
12977
|
|
|
12866
|
-
return function (_x341, _x342) {
|
|
12978
|
+
return function (_x340, _x341, _x342) {
|
|
12867
12979
|
return _ref155.apply(this, arguments);
|
|
12868
12980
|
};
|
|
12869
12981
|
}();
|
|
12870
12982
|
|
|
12871
|
-
this.
|
|
12872
|
-
var _ref156 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee156(
|
|
12983
|
+
this.deferServiceRequest = /*#__PURE__*/function () {
|
|
12984
|
+
var _ref156 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee156(body, headers) {
|
|
12873
12985
|
return runtime_1.wrap(function _callee156$(_context156) {
|
|
12874
12986
|
while (1) {
|
|
12875
12987
|
switch (_context156.prev = _context156.next) {
|
|
12876
12988
|
case 0:
|
|
12877
12989
|
_context156.t0 = api;
|
|
12878
|
-
_context156.t1 =
|
|
12990
|
+
_context156.t1 = body;
|
|
12879
12991
|
_context156.t2 = headers;
|
|
12880
12992
|
_context156.next = 5;
|
|
12881
12993
|
return _this.baseURL;
|
|
@@ -12883,11 +12995,11 @@ var Api = function Api(baseURL) {
|
|
|
12883
12995
|
case 5:
|
|
12884
12996
|
_context156.t3 = _context156.sent;
|
|
12885
12997
|
_context156.t4 = {
|
|
12886
|
-
|
|
12998
|
+
body: _context156.t1,
|
|
12887
12999
|
headers: _context156.t2,
|
|
12888
13000
|
baseURL: _context156.t3
|
|
12889
13001
|
};
|
|
12890
|
-
return _context156.abrupt("return", _context156.t0.
|
|
13002
|
+
return _context156.abrupt("return", _context156.t0.deferServiceRequestRequest.call(_context156.t0, _context156.t4));
|
|
12891
13003
|
|
|
12892
13004
|
case 8:
|
|
12893
13005
|
case "end":
|
|
@@ -12902,8 +13014,8 @@ var Api = function Api(baseURL) {
|
|
|
12902
13014
|
};
|
|
12903
13015
|
}();
|
|
12904
13016
|
|
|
12905
|
-
this.
|
|
12906
|
-
var _ref157 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee157(urlParams, headers
|
|
13017
|
+
this.deleteServiceRequestCategorizedFile = /*#__PURE__*/function () {
|
|
13018
|
+
var _ref157 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee157(urlParams, headers) {
|
|
12907
13019
|
return runtime_1.wrap(function _callee157$(_context157) {
|
|
12908
13020
|
while (1) {
|
|
12909
13021
|
switch (_context157.prev = _context157.next) {
|
|
@@ -12911,21 +13023,19 @@ var Api = function Api(baseURL) {
|
|
|
12911
13023
|
_context157.t0 = api;
|
|
12912
13024
|
_context157.t1 = urlParams;
|
|
12913
13025
|
_context157.t2 = headers;
|
|
12914
|
-
_context157.
|
|
12915
|
-
_context157.next = 6;
|
|
13026
|
+
_context157.next = 5;
|
|
12916
13027
|
return _this.baseURL;
|
|
12917
13028
|
|
|
12918
|
-
case
|
|
12919
|
-
_context157.
|
|
12920
|
-
_context157.
|
|
13029
|
+
case 5:
|
|
13030
|
+
_context157.t3 = _context157.sent;
|
|
13031
|
+
_context157.t4 = {
|
|
12921
13032
|
urlParams: _context157.t1,
|
|
12922
13033
|
headers: _context157.t2,
|
|
12923
|
-
|
|
12924
|
-
baseURL: _context157.t4
|
|
13034
|
+
baseURL: _context157.t3
|
|
12925
13035
|
};
|
|
12926
|
-
return _context157.abrupt("return", _context157.t0.
|
|
13036
|
+
return _context157.abrupt("return", _context157.t0.deleteServiceRequestCategorizedFileRequest.call(_context157.t0, _context157.t4));
|
|
12927
13037
|
|
|
12928
|
-
case
|
|
13038
|
+
case 8:
|
|
12929
13039
|
case "end":
|
|
12930
13040
|
return _context157.stop();
|
|
12931
13041
|
}
|
|
@@ -12933,12 +13043,12 @@ var Api = function Api(baseURL) {
|
|
|
12933
13043
|
}, _callee157);
|
|
12934
13044
|
}));
|
|
12935
13045
|
|
|
12936
|
-
return function (_x345, _x346
|
|
13046
|
+
return function (_x345, _x346) {
|
|
12937
13047
|
return _ref157.apply(this, arguments);
|
|
12938
13048
|
};
|
|
12939
13049
|
}();
|
|
12940
13050
|
|
|
12941
|
-
this.
|
|
13051
|
+
this.deleteServiceRequestReportForSeller = /*#__PURE__*/function () {
|
|
12942
13052
|
var _ref158 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee158(urlParams, headers) {
|
|
12943
13053
|
return runtime_1.wrap(function _callee158$(_context158) {
|
|
12944
13054
|
while (1) {
|
|
@@ -12957,7 +13067,7 @@ var Api = function Api(baseURL) {
|
|
|
12957
13067
|
headers: _context158.t2,
|
|
12958
13068
|
baseURL: _context158.t3
|
|
12959
13069
|
};
|
|
12960
|
-
return _context158.abrupt("return", _context158.t0.
|
|
13070
|
+
return _context158.abrupt("return", _context158.t0.deleteServiceRequestReportForSellerRequest.call(_context158.t0, _context158.t4));
|
|
12961
13071
|
|
|
12962
13072
|
case 8:
|
|
12963
13073
|
case "end":
|
|
@@ -12967,13 +13077,13 @@ var Api = function Api(baseURL) {
|
|
|
12967
13077
|
}, _callee158);
|
|
12968
13078
|
}));
|
|
12969
13079
|
|
|
12970
|
-
return function (
|
|
13080
|
+
return function (_x347, _x348) {
|
|
12971
13081
|
return _ref158.apply(this, arguments);
|
|
12972
13082
|
};
|
|
12973
13083
|
}();
|
|
12974
13084
|
|
|
12975
|
-
this.
|
|
12976
|
-
var _ref159 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee159(urlParams, headers) {
|
|
13085
|
+
this.depublishServiceRequest = /*#__PURE__*/function () {
|
|
13086
|
+
var _ref159 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee159(urlParams, headers, body) {
|
|
12977
13087
|
return runtime_1.wrap(function _callee159$(_context159) {
|
|
12978
13088
|
while (1) {
|
|
12979
13089
|
switch (_context159.prev = _context159.next) {
|
|
@@ -12981,19 +13091,21 @@ var Api = function Api(baseURL) {
|
|
|
12981
13091
|
_context159.t0 = api;
|
|
12982
13092
|
_context159.t1 = urlParams;
|
|
12983
13093
|
_context159.t2 = headers;
|
|
12984
|
-
_context159.
|
|
13094
|
+
_context159.t3 = body;
|
|
13095
|
+
_context159.next = 6;
|
|
12985
13096
|
return _this.baseURL;
|
|
12986
13097
|
|
|
12987
|
-
case
|
|
12988
|
-
_context159.
|
|
12989
|
-
_context159.
|
|
13098
|
+
case 6:
|
|
13099
|
+
_context159.t4 = _context159.sent;
|
|
13100
|
+
_context159.t5 = {
|
|
12990
13101
|
urlParams: _context159.t1,
|
|
12991
13102
|
headers: _context159.t2,
|
|
12992
|
-
|
|
13103
|
+
body: _context159.t3,
|
|
13104
|
+
baseURL: _context159.t4
|
|
12993
13105
|
};
|
|
12994
|
-
return _context159.abrupt("return", _context159.t0.
|
|
13106
|
+
return _context159.abrupt("return", _context159.t0.depublishServiceRequest.call(_context159.t0, _context159.t5));
|
|
12995
13107
|
|
|
12996
|
-
case
|
|
13108
|
+
case 9:
|
|
12997
13109
|
case "end":
|
|
12998
13110
|
return _context159.stop();
|
|
12999
13111
|
}
|
|
@@ -13001,35 +13113,33 @@ var Api = function Api(baseURL) {
|
|
|
13001
13113
|
}, _callee159);
|
|
13002
13114
|
}));
|
|
13003
13115
|
|
|
13004
|
-
return function (_x350, _x351) {
|
|
13116
|
+
return function (_x349, _x350, _x351) {
|
|
13005
13117
|
return _ref159.apply(this, arguments);
|
|
13006
13118
|
};
|
|
13007
13119
|
}();
|
|
13008
13120
|
|
|
13009
|
-
this.
|
|
13010
|
-
var _ref160 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee160(urlParams,
|
|
13121
|
+
this.disapproveCloseServiceRequest = /*#__PURE__*/function () {
|
|
13122
|
+
var _ref160 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee160(urlParams, headers) {
|
|
13011
13123
|
return runtime_1.wrap(function _callee160$(_context160) {
|
|
13012
13124
|
while (1) {
|
|
13013
13125
|
switch (_context160.prev = _context160.next) {
|
|
13014
13126
|
case 0:
|
|
13015
13127
|
_context160.t0 = api;
|
|
13016
13128
|
_context160.t1 = urlParams;
|
|
13017
|
-
_context160.t2 =
|
|
13018
|
-
_context160.
|
|
13019
|
-
_context160.next = 6;
|
|
13129
|
+
_context160.t2 = headers;
|
|
13130
|
+
_context160.next = 5;
|
|
13020
13131
|
return _this.baseURL;
|
|
13021
13132
|
|
|
13022
|
-
case
|
|
13023
|
-
_context160.
|
|
13024
|
-
_context160.
|
|
13133
|
+
case 5:
|
|
13134
|
+
_context160.t3 = _context160.sent;
|
|
13135
|
+
_context160.t4 = {
|
|
13025
13136
|
urlParams: _context160.t1,
|
|
13026
|
-
|
|
13027
|
-
|
|
13028
|
-
baseURL: _context160.t4
|
|
13137
|
+
headers: _context160.t2,
|
|
13138
|
+
baseURL: _context160.t3
|
|
13029
13139
|
};
|
|
13030
|
-
return _context160.abrupt("return", _context160.t0.
|
|
13140
|
+
return _context160.abrupt("return", _context160.t0.disapproveCloseServiceRequestRequest.call(_context160.t0, _context160.t4));
|
|
13031
13141
|
|
|
13032
|
-
case
|
|
13142
|
+
case 8:
|
|
13033
13143
|
case "end":
|
|
13034
13144
|
return _context160.stop();
|
|
13035
13145
|
}
|
|
@@ -13037,19 +13147,19 @@ var Api = function Api(baseURL) {
|
|
|
13037
13147
|
}, _callee160);
|
|
13038
13148
|
}));
|
|
13039
13149
|
|
|
13040
|
-
return function (_x352, _x353
|
|
13150
|
+
return function (_x352, _x353) {
|
|
13041
13151
|
return _ref160.apply(this, arguments);
|
|
13042
13152
|
};
|
|
13043
13153
|
}();
|
|
13044
13154
|
|
|
13045
|
-
this.
|
|
13046
|
-
var _ref161 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee161(
|
|
13155
|
+
this.findChatsByServiceRequestId = /*#__PURE__*/function () {
|
|
13156
|
+
var _ref161 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee161(urlParams, headers) {
|
|
13047
13157
|
return runtime_1.wrap(function _callee161$(_context161) {
|
|
13048
13158
|
while (1) {
|
|
13049
13159
|
switch (_context161.prev = _context161.next) {
|
|
13050
13160
|
case 0:
|
|
13051
13161
|
_context161.t0 = api;
|
|
13052
|
-
_context161.t1 =
|
|
13162
|
+
_context161.t1 = urlParams;
|
|
13053
13163
|
_context161.t2 = headers;
|
|
13054
13164
|
_context161.next = 5;
|
|
13055
13165
|
return _this.baseURL;
|
|
@@ -13057,11 +13167,11 @@ var Api = function Api(baseURL) {
|
|
|
13057
13167
|
case 5:
|
|
13058
13168
|
_context161.t3 = _context161.sent;
|
|
13059
13169
|
_context161.t4 = {
|
|
13060
|
-
|
|
13170
|
+
urlParams: _context161.t1,
|
|
13061
13171
|
headers: _context161.t2,
|
|
13062
13172
|
baseURL: _context161.t3
|
|
13063
13173
|
};
|
|
13064
|
-
return _context161.abrupt("return", _context161.t0.
|
|
13174
|
+
return _context161.abrupt("return", _context161.t0.findChatsByServiceRequestIdRequest.call(_context161.t0, _context161.t4));
|
|
13065
13175
|
|
|
13066
13176
|
case 8:
|
|
13067
13177
|
case "end":
|
|
@@ -13071,33 +13181,35 @@ var Api = function Api(baseURL) {
|
|
|
13071
13181
|
}, _callee161);
|
|
13072
13182
|
}));
|
|
13073
13183
|
|
|
13074
|
-
return function (
|
|
13184
|
+
return function (_x354, _x355) {
|
|
13075
13185
|
return _ref161.apply(this, arguments);
|
|
13076
13186
|
};
|
|
13077
13187
|
}();
|
|
13078
13188
|
|
|
13079
|
-
this.
|
|
13080
|
-
var _ref162 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee162(urlParams, headers) {
|
|
13189
|
+
this.findChatMessagesByServiceRequestId = /*#__PURE__*/function () {
|
|
13190
|
+
var _ref162 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee162(urlParams, params, headers) {
|
|
13081
13191
|
return runtime_1.wrap(function _callee162$(_context162) {
|
|
13082
13192
|
while (1) {
|
|
13083
13193
|
switch (_context162.prev = _context162.next) {
|
|
13084
13194
|
case 0:
|
|
13085
13195
|
_context162.t0 = api;
|
|
13086
13196
|
_context162.t1 = urlParams;
|
|
13087
|
-
_context162.t2 =
|
|
13088
|
-
_context162.
|
|
13197
|
+
_context162.t2 = params;
|
|
13198
|
+
_context162.t3 = headers;
|
|
13199
|
+
_context162.next = 6;
|
|
13089
13200
|
return _this.baseURL;
|
|
13090
13201
|
|
|
13091
|
-
case
|
|
13092
|
-
_context162.
|
|
13093
|
-
_context162.
|
|
13202
|
+
case 6:
|
|
13203
|
+
_context162.t4 = _context162.sent;
|
|
13204
|
+
_context162.t5 = {
|
|
13094
13205
|
urlParams: _context162.t1,
|
|
13095
|
-
|
|
13096
|
-
|
|
13206
|
+
params: _context162.t2,
|
|
13207
|
+
headers: _context162.t3,
|
|
13208
|
+
baseURL: _context162.t4
|
|
13097
13209
|
};
|
|
13098
|
-
return _context162.abrupt("return", _context162.t0.
|
|
13210
|
+
return _context162.abrupt("return", _context162.t0.findChatMessagesByServiceRequestIdRequest.call(_context162.t0, _context162.t5));
|
|
13099
13211
|
|
|
13100
|
-
case
|
|
13212
|
+
case 9:
|
|
13101
13213
|
case "end":
|
|
13102
13214
|
return _context162.stop();
|
|
13103
13215
|
}
|
|
@@ -13105,19 +13217,19 @@ var Api = function Api(baseURL) {
|
|
|
13105
13217
|
}, _callee162);
|
|
13106
13218
|
}));
|
|
13107
13219
|
|
|
13108
|
-
return function (_x357, _x358) {
|
|
13220
|
+
return function (_x356, _x357, _x358) {
|
|
13109
13221
|
return _ref162.apply(this, arguments);
|
|
13110
13222
|
};
|
|
13111
13223
|
}();
|
|
13112
13224
|
|
|
13113
|
-
this.
|
|
13114
|
-
var _ref163 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee163(
|
|
13225
|
+
this.findServiceRequestActivities = /*#__PURE__*/function () {
|
|
13226
|
+
var _ref163 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee163(params, headers) {
|
|
13115
13227
|
return runtime_1.wrap(function _callee163$(_context163) {
|
|
13116
13228
|
while (1) {
|
|
13117
13229
|
switch (_context163.prev = _context163.next) {
|
|
13118
13230
|
case 0:
|
|
13119
13231
|
_context163.t0 = api;
|
|
13120
|
-
_context163.t1 =
|
|
13232
|
+
_context163.t1 = params;
|
|
13121
13233
|
_context163.t2 = headers;
|
|
13122
13234
|
_context163.next = 5;
|
|
13123
13235
|
return _this.baseURL;
|
|
@@ -13125,11 +13237,11 @@ var Api = function Api(baseURL) {
|
|
|
13125
13237
|
case 5:
|
|
13126
13238
|
_context163.t3 = _context163.sent;
|
|
13127
13239
|
_context163.t4 = {
|
|
13128
|
-
|
|
13240
|
+
params: _context163.t1,
|
|
13129
13241
|
headers: _context163.t2,
|
|
13130
13242
|
baseURL: _context163.t3
|
|
13131
13243
|
};
|
|
13132
|
-
return _context163.abrupt("return", _context163.t0.
|
|
13244
|
+
return _context163.abrupt("return", _context163.t0.findServiceRequestActivitiesRequest.call(_context163.t0, _context163.t4));
|
|
13133
13245
|
|
|
13134
13246
|
case 8:
|
|
13135
13247
|
case "end":
|
|
@@ -13144,14 +13256,14 @@ var Api = function Api(baseURL) {
|
|
|
13144
13256
|
};
|
|
13145
13257
|
}();
|
|
13146
13258
|
|
|
13147
|
-
this.
|
|
13148
|
-
var _ref164 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee164(
|
|
13259
|
+
this.findServiceRequestById = /*#__PURE__*/function () {
|
|
13260
|
+
var _ref164 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee164(urlParams, headers) {
|
|
13149
13261
|
return runtime_1.wrap(function _callee164$(_context164) {
|
|
13150
13262
|
while (1) {
|
|
13151
13263
|
switch (_context164.prev = _context164.next) {
|
|
13152
13264
|
case 0:
|
|
13153
13265
|
_context164.t0 = api;
|
|
13154
|
-
_context164.t1 =
|
|
13266
|
+
_context164.t1 = urlParams;
|
|
13155
13267
|
_context164.t2 = headers;
|
|
13156
13268
|
_context164.next = 5;
|
|
13157
13269
|
return _this.baseURL;
|
|
@@ -13159,11 +13271,11 @@ var Api = function Api(baseURL) {
|
|
|
13159
13271
|
case 5:
|
|
13160
13272
|
_context164.t3 = _context164.sent;
|
|
13161
13273
|
_context164.t4 = {
|
|
13162
|
-
|
|
13274
|
+
urlParams: _context164.t1,
|
|
13163
13275
|
headers: _context164.t2,
|
|
13164
13276
|
baseURL: _context164.t3
|
|
13165
13277
|
};
|
|
13166
|
-
return _context164.abrupt("return", _context164.t0.
|
|
13278
|
+
return _context164.abrupt("return", _context164.t0.findServiceRequestByIdRequest.call(_context164.t0, _context164.t4));
|
|
13167
13279
|
|
|
13168
13280
|
case 8:
|
|
13169
13281
|
case "end":
|
|
@@ -13178,14 +13290,14 @@ var Api = function Api(baseURL) {
|
|
|
13178
13290
|
};
|
|
13179
13291
|
}();
|
|
13180
13292
|
|
|
13181
|
-
this.
|
|
13182
|
-
var _ref165 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee165(
|
|
13293
|
+
this.findServiceRequestDuplicates = /*#__PURE__*/function () {
|
|
13294
|
+
var _ref165 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee165(body, headers) {
|
|
13183
13295
|
return runtime_1.wrap(function _callee165$(_context165) {
|
|
13184
13296
|
while (1) {
|
|
13185
13297
|
switch (_context165.prev = _context165.next) {
|
|
13186
13298
|
case 0:
|
|
13187
13299
|
_context165.t0 = api;
|
|
13188
|
-
_context165.t1 =
|
|
13300
|
+
_context165.t1 = body;
|
|
13189
13301
|
_context165.t2 = headers;
|
|
13190
13302
|
_context165.next = 5;
|
|
13191
13303
|
return _this.baseURL;
|
|
@@ -13193,11 +13305,11 @@ var Api = function Api(baseURL) {
|
|
|
13193
13305
|
case 5:
|
|
13194
13306
|
_context165.t3 = _context165.sent;
|
|
13195
13307
|
_context165.t4 = {
|
|
13196
|
-
|
|
13308
|
+
body: _context165.t1,
|
|
13197
13309
|
headers: _context165.t2,
|
|
13198
13310
|
baseURL: _context165.t3
|
|
13199
13311
|
};
|
|
13200
|
-
return _context165.abrupt("return", _context165.t0.
|
|
13312
|
+
return _context165.abrupt("return", _context165.t0.findServiceRequestDuplicatesRequest.call(_context165.t0, _context165.t4));
|
|
13201
13313
|
|
|
13202
13314
|
case 8:
|
|
13203
13315
|
case "end":
|
|
@@ -13212,14 +13324,14 @@ var Api = function Api(baseURL) {
|
|
|
13212
13324
|
};
|
|
13213
13325
|
}();
|
|
13214
13326
|
|
|
13215
|
-
this.
|
|
13216
|
-
var _ref166 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee166(
|
|
13327
|
+
this.findServiceRequests = /*#__PURE__*/function () {
|
|
13328
|
+
var _ref166 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee166(params, headers) {
|
|
13217
13329
|
return runtime_1.wrap(function _callee166$(_context166) {
|
|
13218
13330
|
while (1) {
|
|
13219
13331
|
switch (_context166.prev = _context166.next) {
|
|
13220
13332
|
case 0:
|
|
13221
13333
|
_context166.t0 = api;
|
|
13222
|
-
_context166.t1 =
|
|
13334
|
+
_context166.t1 = params;
|
|
13223
13335
|
_context166.t2 = headers;
|
|
13224
13336
|
_context166.next = 5;
|
|
13225
13337
|
return _this.baseURL;
|
|
@@ -13227,11 +13339,11 @@ var Api = function Api(baseURL) {
|
|
|
13227
13339
|
case 5:
|
|
13228
13340
|
_context166.t3 = _context166.sent;
|
|
13229
13341
|
_context166.t4 = {
|
|
13230
|
-
|
|
13342
|
+
params: _context166.t1,
|
|
13231
13343
|
headers: _context166.t2,
|
|
13232
13344
|
baseURL: _context166.t3
|
|
13233
13345
|
};
|
|
13234
|
-
return _context166.abrupt("return", _context166.t0.
|
|
13346
|
+
return _context166.abrupt("return", _context166.t0.findServiceRequestsRequest.call(_context166.t0, _context166.t4));
|
|
13235
13347
|
|
|
13236
13348
|
case 8:
|
|
13237
13349
|
case "end":
|
|
@@ -13246,14 +13358,14 @@ var Api = function Api(baseURL) {
|
|
|
13246
13358
|
};
|
|
13247
13359
|
}();
|
|
13248
13360
|
|
|
13249
|
-
this.
|
|
13250
|
-
var _ref167 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee167(
|
|
13361
|
+
this.findServiceRequestShortInfo = /*#__PURE__*/function () {
|
|
13362
|
+
var _ref167 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee167(params, headers) {
|
|
13251
13363
|
return runtime_1.wrap(function _callee167$(_context167) {
|
|
13252
13364
|
while (1) {
|
|
13253
13365
|
switch (_context167.prev = _context167.next) {
|
|
13254
13366
|
case 0:
|
|
13255
13367
|
_context167.t0 = api;
|
|
13256
|
-
_context167.t1 =
|
|
13368
|
+
_context167.t1 = params;
|
|
13257
13369
|
_context167.t2 = headers;
|
|
13258
13370
|
_context167.next = 5;
|
|
13259
13371
|
return _this.baseURL;
|
|
@@ -13261,11 +13373,11 @@ var Api = function Api(baseURL) {
|
|
|
13261
13373
|
case 5:
|
|
13262
13374
|
_context167.t3 = _context167.sent;
|
|
13263
13375
|
_context167.t4 = {
|
|
13264
|
-
|
|
13376
|
+
params: _context167.t1,
|
|
13265
13377
|
headers: _context167.t2,
|
|
13266
13378
|
baseURL: _context167.t3
|
|
13267
13379
|
};
|
|
13268
|
-
return _context167.abrupt("return", _context167.t0.
|
|
13380
|
+
return _context167.abrupt("return", _context167.t0.findServiceRequestShortInfoRequest.call(_context167.t0, _context167.t4));
|
|
13269
13381
|
|
|
13270
13382
|
case 8:
|
|
13271
13383
|
case "end":
|
|
@@ -13280,7 +13392,7 @@ var Api = function Api(baseURL) {
|
|
|
13280
13392
|
};
|
|
13281
13393
|
}();
|
|
13282
13394
|
|
|
13283
|
-
this.
|
|
13395
|
+
this.findServiceRequestShortInfoByDealId = /*#__PURE__*/function () {
|
|
13284
13396
|
var _ref168 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee168(urlParams, headers) {
|
|
13285
13397
|
return runtime_1.wrap(function _callee168$(_context168) {
|
|
13286
13398
|
while (1) {
|
|
@@ -13299,7 +13411,7 @@ var Api = function Api(baseURL) {
|
|
|
13299
13411
|
headers: _context168.t2,
|
|
13300
13412
|
baseURL: _context168.t3
|
|
13301
13413
|
};
|
|
13302
|
-
return _context168.abrupt("return", _context168.t0.
|
|
13414
|
+
return _context168.abrupt("return", _context168.t0.findServiceRequestShortInfoByDealIdRequest.call(_context168.t0, _context168.t4));
|
|
13303
13415
|
|
|
13304
13416
|
case 8:
|
|
13305
13417
|
case "end":
|
|
@@ -13314,30 +13426,28 @@ var Api = function Api(baseURL) {
|
|
|
13314
13426
|
};
|
|
13315
13427
|
}();
|
|
13316
13428
|
|
|
13317
|
-
this.
|
|
13318
|
-
var _ref169 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee169(urlParams,
|
|
13429
|
+
this.findServiceRequestShortInfoById = /*#__PURE__*/function () {
|
|
13430
|
+
var _ref169 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee169(urlParams, headers) {
|
|
13319
13431
|
return runtime_1.wrap(function _callee169$(_context169) {
|
|
13320
13432
|
while (1) {
|
|
13321
13433
|
switch (_context169.prev = _context169.next) {
|
|
13322
13434
|
case 0:
|
|
13323
13435
|
_context169.t0 = api;
|
|
13324
13436
|
_context169.t1 = urlParams;
|
|
13325
|
-
_context169.t2 =
|
|
13326
|
-
_context169.
|
|
13327
|
-
_context169.next = 6;
|
|
13437
|
+
_context169.t2 = headers;
|
|
13438
|
+
_context169.next = 5;
|
|
13328
13439
|
return _this.baseURL;
|
|
13329
13440
|
|
|
13330
|
-
case
|
|
13331
|
-
_context169.
|
|
13332
|
-
_context169.
|
|
13441
|
+
case 5:
|
|
13442
|
+
_context169.t3 = _context169.sent;
|
|
13443
|
+
_context169.t4 = {
|
|
13333
13444
|
urlParams: _context169.t1,
|
|
13334
|
-
|
|
13335
|
-
|
|
13336
|
-
baseURL: _context169.t4
|
|
13445
|
+
headers: _context169.t2,
|
|
13446
|
+
baseURL: _context169.t3
|
|
13337
13447
|
};
|
|
13338
|
-
return _context169.abrupt("return", _context169.t0.
|
|
13448
|
+
return _context169.abrupt("return", _context169.t0.findServiceRequestShortInfoByIdRequest.call(_context169.t0, _context169.t4));
|
|
13339
13449
|
|
|
13340
|
-
case
|
|
13450
|
+
case 8:
|
|
13341
13451
|
case "end":
|
|
13342
13452
|
return _context169.stop();
|
|
13343
13453
|
}
|
|
@@ -13345,35 +13455,33 @@ var Api = function Api(baseURL) {
|
|
|
13345
13455
|
}, _callee169);
|
|
13346
13456
|
}));
|
|
13347
13457
|
|
|
13348
|
-
return function (_x371, _x372
|
|
13458
|
+
return function (_x371, _x372) {
|
|
13349
13459
|
return _ref169.apply(this, arguments);
|
|
13350
13460
|
};
|
|
13351
13461
|
}();
|
|
13352
13462
|
|
|
13353
|
-
this.
|
|
13354
|
-
var _ref170 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee170(urlParams, headers
|
|
13463
|
+
this.findServiceRequestStatisticsById = /*#__PURE__*/function () {
|
|
13464
|
+
var _ref170 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee170(urlParams, headers) {
|
|
13355
13465
|
return runtime_1.wrap(function _callee170$(_context170) {
|
|
13356
13466
|
while (1) {
|
|
13357
13467
|
switch (_context170.prev = _context170.next) {
|
|
13358
13468
|
case 0:
|
|
13359
13469
|
_context170.t0 = api;
|
|
13360
13470
|
_context170.t1 = urlParams;
|
|
13361
|
-
_context170.t2 =
|
|
13362
|
-
_context170.
|
|
13363
|
-
_context170.next = 6;
|
|
13471
|
+
_context170.t2 = headers;
|
|
13472
|
+
_context170.next = 5;
|
|
13364
13473
|
return _this.baseURL;
|
|
13365
13474
|
|
|
13366
|
-
case
|
|
13367
|
-
_context170.
|
|
13368
|
-
_context170.
|
|
13475
|
+
case 5:
|
|
13476
|
+
_context170.t3 = _context170.sent;
|
|
13477
|
+
_context170.t4 = {
|
|
13369
13478
|
urlParams: _context170.t1,
|
|
13370
|
-
|
|
13371
|
-
|
|
13372
|
-
baseURL: _context170.t4
|
|
13479
|
+
headers: _context170.t2,
|
|
13480
|
+
baseURL: _context170.t3
|
|
13373
13481
|
};
|
|
13374
|
-
return _context170.abrupt("return", _context170.t0.
|
|
13482
|
+
return _context170.abrupt("return", _context170.t0.findServiceRequestStatisticsByIdRequest.call(_context170.t0, _context170.t4));
|
|
13375
13483
|
|
|
13376
|
-
case
|
|
13484
|
+
case 8:
|
|
13377
13485
|
case "end":
|
|
13378
13486
|
return _context170.stop();
|
|
13379
13487
|
}
|
|
@@ -13381,33 +13489,35 @@ var Api = function Api(baseURL) {
|
|
|
13381
13489
|
}, _callee170);
|
|
13382
13490
|
}));
|
|
13383
13491
|
|
|
13384
|
-
return function (
|
|
13492
|
+
return function (_x373, _x374) {
|
|
13385
13493
|
return _ref170.apply(this, arguments);
|
|
13386
13494
|
};
|
|
13387
13495
|
}();
|
|
13388
13496
|
|
|
13389
|
-
this.
|
|
13390
|
-
var _ref171 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee171(urlParams, headers) {
|
|
13497
|
+
this.findServiceRequestCategorizedFiles = /*#__PURE__*/function () {
|
|
13498
|
+
var _ref171 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee171(urlParams, params, headers) {
|
|
13391
13499
|
return runtime_1.wrap(function _callee171$(_context171) {
|
|
13392
13500
|
while (1) {
|
|
13393
13501
|
switch (_context171.prev = _context171.next) {
|
|
13394
13502
|
case 0:
|
|
13395
13503
|
_context171.t0 = api;
|
|
13396
13504
|
_context171.t1 = urlParams;
|
|
13397
|
-
_context171.t2 =
|
|
13398
|
-
_context171.
|
|
13505
|
+
_context171.t2 = params;
|
|
13506
|
+
_context171.t3 = headers;
|
|
13507
|
+
_context171.next = 6;
|
|
13399
13508
|
return _this.baseURL;
|
|
13400
13509
|
|
|
13401
|
-
case
|
|
13402
|
-
_context171.
|
|
13403
|
-
_context171.
|
|
13510
|
+
case 6:
|
|
13511
|
+
_context171.t4 = _context171.sent;
|
|
13512
|
+
_context171.t5 = {
|
|
13404
13513
|
urlParams: _context171.t1,
|
|
13405
|
-
|
|
13406
|
-
|
|
13514
|
+
params: _context171.t2,
|
|
13515
|
+
headers: _context171.t3,
|
|
13516
|
+
baseURL: _context171.t4
|
|
13407
13517
|
};
|
|
13408
|
-
return _context171.abrupt("return", _context171.t0.
|
|
13518
|
+
return _context171.abrupt("return", _context171.t0.findServiceRequestCategorizedFilesRequest.call(_context171.t0, _context171.t5));
|
|
13409
13519
|
|
|
13410
|
-
case
|
|
13520
|
+
case 9:
|
|
13411
13521
|
case "end":
|
|
13412
13522
|
return _context171.stop();
|
|
13413
13523
|
}
|
|
@@ -13415,33 +13525,35 @@ var Api = function Api(baseURL) {
|
|
|
13415
13525
|
}, _callee171);
|
|
13416
13526
|
}));
|
|
13417
13527
|
|
|
13418
|
-
return function (
|
|
13528
|
+
return function (_x375, _x376, _x377) {
|
|
13419
13529
|
return _ref171.apply(this, arguments);
|
|
13420
13530
|
};
|
|
13421
13531
|
}();
|
|
13422
13532
|
|
|
13423
|
-
this.
|
|
13424
|
-
var _ref172 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee172(urlParams, headers) {
|
|
13533
|
+
this.findServiceRequestCategoryById = /*#__PURE__*/function () {
|
|
13534
|
+
var _ref172 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee172(urlParams, headers, params) {
|
|
13425
13535
|
return runtime_1.wrap(function _callee172$(_context172) {
|
|
13426
13536
|
while (1) {
|
|
13427
13537
|
switch (_context172.prev = _context172.next) {
|
|
13428
13538
|
case 0:
|
|
13429
13539
|
_context172.t0 = api;
|
|
13430
13540
|
_context172.t1 = urlParams;
|
|
13431
|
-
_context172.t2 =
|
|
13432
|
-
_context172.
|
|
13541
|
+
_context172.t2 = params;
|
|
13542
|
+
_context172.t3 = headers;
|
|
13543
|
+
_context172.next = 6;
|
|
13433
13544
|
return _this.baseURL;
|
|
13434
13545
|
|
|
13435
|
-
case
|
|
13436
|
-
_context172.
|
|
13437
|
-
_context172.
|
|
13546
|
+
case 6:
|
|
13547
|
+
_context172.t4 = _context172.sent;
|
|
13548
|
+
_context172.t5 = {
|
|
13438
13549
|
urlParams: _context172.t1,
|
|
13439
|
-
|
|
13440
|
-
|
|
13550
|
+
params: _context172.t2,
|
|
13551
|
+
headers: _context172.t3,
|
|
13552
|
+
baseURL: _context172.t4
|
|
13441
13553
|
};
|
|
13442
|
-
return _context172.abrupt("return", _context172.t0.
|
|
13554
|
+
return _context172.abrupt("return", _context172.t0.findServiceRequestCategoryByIdRequest.call(_context172.t0, _context172.t5));
|
|
13443
13555
|
|
|
13444
|
-
case
|
|
13556
|
+
case 9:
|
|
13445
13557
|
case "end":
|
|
13446
13558
|
return _context172.stop();
|
|
13447
13559
|
}
|
|
@@ -13449,12 +13561,12 @@ var Api = function Api(baseURL) {
|
|
|
13449
13561
|
}, _callee172);
|
|
13450
13562
|
}));
|
|
13451
13563
|
|
|
13452
|
-
return function (_x379, _x380) {
|
|
13564
|
+
return function (_x378, _x379, _x380) {
|
|
13453
13565
|
return _ref172.apply(this, arguments);
|
|
13454
13566
|
};
|
|
13455
13567
|
}();
|
|
13456
13568
|
|
|
13457
|
-
this.
|
|
13569
|
+
this.findServiceRequestDiscountEfficiencyPercent = /*#__PURE__*/function () {
|
|
13458
13570
|
var _ref173 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee173(urlParams, headers) {
|
|
13459
13571
|
return runtime_1.wrap(function _callee173$(_context173) {
|
|
13460
13572
|
while (1) {
|
|
@@ -13473,7 +13585,7 @@ var Api = function Api(baseURL) {
|
|
|
13473
13585
|
headers: _context173.t2,
|
|
13474
13586
|
baseURL: _context173.t3
|
|
13475
13587
|
};
|
|
13476
|
-
return _context173.abrupt("return", _context173.t0.
|
|
13588
|
+
return _context173.abrupt("return", _context173.t0.findServiceRequestDiscountEfficiencyPercentRequest.call(_context173.t0, _context173.t4));
|
|
13477
13589
|
|
|
13478
13590
|
case 8:
|
|
13479
13591
|
case "end":
|
|
@@ -13488,30 +13600,28 @@ var Api = function Api(baseURL) {
|
|
|
13488
13600
|
};
|
|
13489
13601
|
}();
|
|
13490
13602
|
|
|
13491
|
-
this.
|
|
13492
|
-
var _ref174 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee174(urlParams,
|
|
13603
|
+
this.findServiceRequestCategorizedFileCreatedDate = /*#__PURE__*/function () {
|
|
13604
|
+
var _ref174 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee174(urlParams, headers) {
|
|
13493
13605
|
return runtime_1.wrap(function _callee174$(_context174) {
|
|
13494
13606
|
while (1) {
|
|
13495
13607
|
switch (_context174.prev = _context174.next) {
|
|
13496
13608
|
case 0:
|
|
13497
13609
|
_context174.t0 = api;
|
|
13498
13610
|
_context174.t1 = urlParams;
|
|
13499
|
-
_context174.t2 =
|
|
13500
|
-
_context174.
|
|
13501
|
-
_context174.next = 6;
|
|
13611
|
+
_context174.t2 = headers;
|
|
13612
|
+
_context174.next = 5;
|
|
13502
13613
|
return _this.baseURL;
|
|
13503
13614
|
|
|
13504
|
-
case
|
|
13505
|
-
_context174.
|
|
13506
|
-
_context174.
|
|
13615
|
+
case 5:
|
|
13616
|
+
_context174.t3 = _context174.sent;
|
|
13617
|
+
_context174.t4 = {
|
|
13507
13618
|
urlParams: _context174.t1,
|
|
13508
|
-
|
|
13509
|
-
|
|
13510
|
-
baseURL: _context174.t4
|
|
13619
|
+
headers: _context174.t2,
|
|
13620
|
+
baseURL: _context174.t3
|
|
13511
13621
|
};
|
|
13512
|
-
return _context174.abrupt("return", _context174.t0.
|
|
13622
|
+
return _context174.abrupt("return", _context174.t0.findServiceRequestCategorizedFileCreatedDateRequest.call(_context174.t0, _context174.t4));
|
|
13513
13623
|
|
|
13514
|
-
case
|
|
13624
|
+
case 8:
|
|
13515
13625
|
case "end":
|
|
13516
13626
|
return _context174.stop();
|
|
13517
13627
|
}
|
|
@@ -13519,12 +13629,12 @@ var Api = function Api(baseURL) {
|
|
|
13519
13629
|
}, _callee174);
|
|
13520
13630
|
}));
|
|
13521
13631
|
|
|
13522
|
-
return function (_x383, _x384
|
|
13632
|
+
return function (_x383, _x384) {
|
|
13523
13633
|
return _ref174.apply(this, arguments);
|
|
13524
13634
|
};
|
|
13525
13635
|
}();
|
|
13526
13636
|
|
|
13527
|
-
this.
|
|
13637
|
+
this.findPriceHistoryAnalyticsById = /*#__PURE__*/function () {
|
|
13528
13638
|
var _ref175 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee175(urlParams, headers) {
|
|
13529
13639
|
return runtime_1.wrap(function _callee175$(_context175) {
|
|
13530
13640
|
while (1) {
|
|
@@ -13543,7 +13653,7 @@ var Api = function Api(baseURL) {
|
|
|
13543
13653
|
headers: _context175.t2,
|
|
13544
13654
|
baseURL: _context175.t3
|
|
13545
13655
|
};
|
|
13546
|
-
return _context175.abrupt("return", _context175.t0.
|
|
13656
|
+
return _context175.abrupt("return", _context175.t0.findPriceHistoryAnalyticsByIdRequest.call(_context175.t0, _context175.t4));
|
|
13547
13657
|
|
|
13548
13658
|
case 8:
|
|
13549
13659
|
case "end":
|
|
@@ -13553,33 +13663,35 @@ var Api = function Api(baseURL) {
|
|
|
13553
13663
|
}, _callee175);
|
|
13554
13664
|
}));
|
|
13555
13665
|
|
|
13556
|
-
return function (
|
|
13666
|
+
return function (_x385, _x386) {
|
|
13557
13667
|
return _ref175.apply(this, arguments);
|
|
13558
13668
|
};
|
|
13559
13669
|
}();
|
|
13560
13670
|
|
|
13561
|
-
this.
|
|
13562
|
-
var _ref176 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee176(urlParams, headers) {
|
|
13671
|
+
this.findServiceRequestSellerReports = /*#__PURE__*/function () {
|
|
13672
|
+
var _ref176 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee176(urlParams, params, headers) {
|
|
13563
13673
|
return runtime_1.wrap(function _callee176$(_context176) {
|
|
13564
13674
|
while (1) {
|
|
13565
13675
|
switch (_context176.prev = _context176.next) {
|
|
13566
13676
|
case 0:
|
|
13567
13677
|
_context176.t0 = api;
|
|
13568
13678
|
_context176.t1 = urlParams;
|
|
13569
|
-
_context176.t2 =
|
|
13570
|
-
_context176.
|
|
13679
|
+
_context176.t2 = params;
|
|
13680
|
+
_context176.t3 = headers;
|
|
13681
|
+
_context176.next = 6;
|
|
13571
13682
|
return _this.baseURL;
|
|
13572
13683
|
|
|
13573
|
-
case
|
|
13574
|
-
_context176.
|
|
13575
|
-
_context176.
|
|
13684
|
+
case 6:
|
|
13685
|
+
_context176.t4 = _context176.sent;
|
|
13686
|
+
_context176.t5 = {
|
|
13576
13687
|
urlParams: _context176.t1,
|
|
13577
|
-
|
|
13578
|
-
|
|
13688
|
+
params: _context176.t2,
|
|
13689
|
+
headers: _context176.t3,
|
|
13690
|
+
baseURL: _context176.t4
|
|
13579
13691
|
};
|
|
13580
|
-
return _context176.abrupt("return", _context176.t0.
|
|
13692
|
+
return _context176.abrupt("return", _context176.t0.findServiceRequestSellerReportsRequest.call(_context176.t0, _context176.t5));
|
|
13581
13693
|
|
|
13582
|
-
case
|
|
13694
|
+
case 9:
|
|
13583
13695
|
case "end":
|
|
13584
13696
|
return _context176.stop();
|
|
13585
13697
|
}
|
|
@@ -13587,19 +13699,19 @@ var Api = function Api(baseURL) {
|
|
|
13587
13699
|
}, _callee176);
|
|
13588
13700
|
}));
|
|
13589
13701
|
|
|
13590
|
-
return function (_x388, _x389) {
|
|
13702
|
+
return function (_x387, _x388, _x389) {
|
|
13591
13703
|
return _ref176.apply(this, arguments);
|
|
13592
13704
|
};
|
|
13593
13705
|
}();
|
|
13594
13706
|
|
|
13595
|
-
this.
|
|
13596
|
-
var _ref177 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee177(
|
|
13707
|
+
this.publishServiceRequest = /*#__PURE__*/function () {
|
|
13708
|
+
var _ref177 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee177(urlParams, headers) {
|
|
13597
13709
|
return runtime_1.wrap(function _callee177$(_context177) {
|
|
13598
13710
|
while (1) {
|
|
13599
13711
|
switch (_context177.prev = _context177.next) {
|
|
13600
13712
|
case 0:
|
|
13601
13713
|
_context177.t0 = api;
|
|
13602
|
-
_context177.t1 =
|
|
13714
|
+
_context177.t1 = urlParams;
|
|
13603
13715
|
_context177.t2 = headers;
|
|
13604
13716
|
_context177.next = 5;
|
|
13605
13717
|
return _this.baseURL;
|
|
@@ -13607,11 +13719,11 @@ var Api = function Api(baseURL) {
|
|
|
13607
13719
|
case 5:
|
|
13608
13720
|
_context177.t3 = _context177.sent;
|
|
13609
13721
|
_context177.t4 = {
|
|
13610
|
-
|
|
13722
|
+
urlParams: _context177.t1,
|
|
13611
13723
|
headers: _context177.t2,
|
|
13612
13724
|
baseURL: _context177.t3
|
|
13613
13725
|
};
|
|
13614
|
-
return _context177.abrupt("return", _context177.t0.
|
|
13726
|
+
return _context177.abrupt("return", _context177.t0.publishServiceRequest.call(_context177.t0, _context177.t4));
|
|
13615
13727
|
|
|
13616
13728
|
case 8:
|
|
13617
13729
|
case "end":
|
|
@@ -13626,7 +13738,7 @@ var Api = function Api(baseURL) {
|
|
|
13626
13738
|
};
|
|
13627
13739
|
}();
|
|
13628
13740
|
|
|
13629
|
-
this.
|
|
13741
|
+
this.restoreServiceRequest = /*#__PURE__*/function () {
|
|
13630
13742
|
var _ref178 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee178(urlParams, headers) {
|
|
13631
13743
|
return runtime_1.wrap(function _callee178$(_context178) {
|
|
13632
13744
|
while (1) {
|
|
@@ -13645,7 +13757,7 @@ var Api = function Api(baseURL) {
|
|
|
13645
13757
|
headers: _context178.t2,
|
|
13646
13758
|
baseURL: _context178.t3
|
|
13647
13759
|
};
|
|
13648
|
-
return _context178.abrupt("return", _context178.t0.
|
|
13760
|
+
return _context178.abrupt("return", _context178.t0.restoreServiceRequest.call(_context178.t0, _context178.t4));
|
|
13649
13761
|
|
|
13650
13762
|
case 8:
|
|
13651
13763
|
case "end":
|
|
@@ -13660,14 +13772,14 @@ var Api = function Api(baseURL) {
|
|
|
13660
13772
|
};
|
|
13661
13773
|
}();
|
|
13662
13774
|
|
|
13663
|
-
this.
|
|
13664
|
-
var _ref179 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee179(
|
|
13775
|
+
this.returnDeferredServiceRequest = /*#__PURE__*/function () {
|
|
13776
|
+
var _ref179 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee179(body, headers) {
|
|
13665
13777
|
return runtime_1.wrap(function _callee179$(_context179) {
|
|
13666
13778
|
while (1) {
|
|
13667
13779
|
switch (_context179.prev = _context179.next) {
|
|
13668
13780
|
case 0:
|
|
13669
13781
|
_context179.t0 = api;
|
|
13670
|
-
_context179.t1 =
|
|
13782
|
+
_context179.t1 = body;
|
|
13671
13783
|
_context179.t2 = headers;
|
|
13672
13784
|
_context179.next = 5;
|
|
13673
13785
|
return _this.baseURL;
|
|
@@ -13675,11 +13787,11 @@ var Api = function Api(baseURL) {
|
|
|
13675
13787
|
case 5:
|
|
13676
13788
|
_context179.t3 = _context179.sent;
|
|
13677
13789
|
_context179.t4 = {
|
|
13678
|
-
|
|
13790
|
+
body: _context179.t1,
|
|
13679
13791
|
headers: _context179.t2,
|
|
13680
13792
|
baseURL: _context179.t3
|
|
13681
13793
|
};
|
|
13682
|
-
return _context179.abrupt("return", _context179.t0.
|
|
13794
|
+
return _context179.abrupt("return", _context179.t0.returnDeferredServiceRequestRequest.call(_context179.t0, _context179.t4));
|
|
13683
13795
|
|
|
13684
13796
|
case 8:
|
|
13685
13797
|
case "end":
|
|
@@ -13694,7 +13806,7 @@ var Api = function Api(baseURL) {
|
|
|
13694
13806
|
};
|
|
13695
13807
|
}();
|
|
13696
13808
|
|
|
13697
|
-
this.
|
|
13809
|
+
this.sendServiceRequestToModeration = /*#__PURE__*/function () {
|
|
13698
13810
|
var _ref180 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee180(urlParams, headers) {
|
|
13699
13811
|
return runtime_1.wrap(function _callee180$(_context180) {
|
|
13700
13812
|
while (1) {
|
|
@@ -13713,7 +13825,7 @@ var Api = function Api(baseURL) {
|
|
|
13713
13825
|
headers: _context180.t2,
|
|
13714
13826
|
baseURL: _context180.t3
|
|
13715
13827
|
};
|
|
13716
|
-
return _context180.abrupt("return", _context180.t0.
|
|
13828
|
+
return _context180.abrupt("return", _context180.t0.sendServiceRequestToModerationRequest.call(_context180.t0, _context180.t4));
|
|
13717
13829
|
|
|
13718
13830
|
case 8:
|
|
13719
13831
|
case "end":
|
|
@@ -13728,30 +13840,28 @@ var Api = function Api(baseURL) {
|
|
|
13728
13840
|
};
|
|
13729
13841
|
}();
|
|
13730
13842
|
|
|
13731
|
-
this.
|
|
13732
|
-
var _ref181 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee181(urlParams,
|
|
13843
|
+
this.startServiceRequestModeration = /*#__PURE__*/function () {
|
|
13844
|
+
var _ref181 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee181(urlParams, headers) {
|
|
13733
13845
|
return runtime_1.wrap(function _callee181$(_context181) {
|
|
13734
13846
|
while (1) {
|
|
13735
13847
|
switch (_context181.prev = _context181.next) {
|
|
13736
13848
|
case 0:
|
|
13737
13849
|
_context181.t0 = api;
|
|
13738
13850
|
_context181.t1 = urlParams;
|
|
13739
|
-
_context181.t2 =
|
|
13740
|
-
_context181.
|
|
13741
|
-
_context181.next = 6;
|
|
13851
|
+
_context181.t2 = headers;
|
|
13852
|
+
_context181.next = 5;
|
|
13742
13853
|
return _this.baseURL;
|
|
13743
13854
|
|
|
13744
|
-
case
|
|
13745
|
-
_context181.
|
|
13746
|
-
_context181.
|
|
13855
|
+
case 5:
|
|
13856
|
+
_context181.t3 = _context181.sent;
|
|
13857
|
+
_context181.t4 = {
|
|
13747
13858
|
urlParams: _context181.t1,
|
|
13748
|
-
|
|
13749
|
-
|
|
13750
|
-
baseURL: _context181.t4
|
|
13859
|
+
headers: _context181.t2,
|
|
13860
|
+
baseURL: _context181.t3
|
|
13751
13861
|
};
|
|
13752
|
-
return _context181.abrupt("return", _context181.t0.
|
|
13862
|
+
return _context181.abrupt("return", _context181.t0.startServiceRequestModerationRequest.call(_context181.t0, _context181.t4));
|
|
13753
13863
|
|
|
13754
|
-
case
|
|
13864
|
+
case 8:
|
|
13755
13865
|
case "end":
|
|
13756
13866
|
return _context181.stop();
|
|
13757
13867
|
}
|
|
@@ -13759,35 +13869,33 @@ var Api = function Api(baseURL) {
|
|
|
13759
13869
|
}, _callee181);
|
|
13760
13870
|
}));
|
|
13761
13871
|
|
|
13762
|
-
return function (_x398, _x399
|
|
13872
|
+
return function (_x398, _x399) {
|
|
13763
13873
|
return _ref181.apply(this, arguments);
|
|
13764
13874
|
};
|
|
13765
13875
|
}();
|
|
13766
13876
|
|
|
13767
|
-
this.
|
|
13768
|
-
var _ref182 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee182(urlParams,
|
|
13877
|
+
this.startServiceRequestModerationForOldRealty = /*#__PURE__*/function () {
|
|
13878
|
+
var _ref182 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee182(urlParams, headers) {
|
|
13769
13879
|
return runtime_1.wrap(function _callee182$(_context182) {
|
|
13770
13880
|
while (1) {
|
|
13771
13881
|
switch (_context182.prev = _context182.next) {
|
|
13772
13882
|
case 0:
|
|
13773
13883
|
_context182.t0 = api;
|
|
13774
13884
|
_context182.t1 = urlParams;
|
|
13775
|
-
_context182.t2 =
|
|
13776
|
-
_context182.
|
|
13777
|
-
_context182.next = 6;
|
|
13885
|
+
_context182.t2 = headers;
|
|
13886
|
+
_context182.next = 5;
|
|
13778
13887
|
return _this.baseURL;
|
|
13779
13888
|
|
|
13780
|
-
case
|
|
13781
|
-
_context182.
|
|
13782
|
-
_context182.
|
|
13889
|
+
case 5:
|
|
13890
|
+
_context182.t3 = _context182.sent;
|
|
13891
|
+
_context182.t4 = {
|
|
13783
13892
|
urlParams: _context182.t1,
|
|
13784
|
-
|
|
13785
|
-
|
|
13786
|
-
baseURL: _context182.t4
|
|
13893
|
+
headers: _context182.t2,
|
|
13894
|
+
baseURL: _context182.t3
|
|
13787
13895
|
};
|
|
13788
|
-
return _context182.abrupt("return", _context182.t0.
|
|
13896
|
+
return _context182.abrupt("return", _context182.t0.startServiceRequestModerationForOldRealtyRequest.call(_context182.t0, _context182.t4));
|
|
13789
13897
|
|
|
13790
|
-
case
|
|
13898
|
+
case 8:
|
|
13791
13899
|
case "end":
|
|
13792
13900
|
return _context182.stop();
|
|
13793
13901
|
}
|
|
@@ -13795,34 +13903,35 @@ var Api = function Api(baseURL) {
|
|
|
13795
13903
|
}, _callee182);
|
|
13796
13904
|
}));
|
|
13797
13905
|
|
|
13798
|
-
return function (
|
|
13906
|
+
return function (_x400, _x401) {
|
|
13799
13907
|
return _ref182.apply(this, arguments);
|
|
13800
13908
|
};
|
|
13801
|
-
}();
|
|
13802
|
-
|
|
13909
|
+
}();
|
|
13803
13910
|
|
|
13804
|
-
this.
|
|
13805
|
-
var _ref183 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee183(body, headers) {
|
|
13911
|
+
this.transferServiceRequest = /*#__PURE__*/function () {
|
|
13912
|
+
var _ref183 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee183(urlParams, body, headers) {
|
|
13806
13913
|
return runtime_1.wrap(function _callee183$(_context183) {
|
|
13807
13914
|
while (1) {
|
|
13808
13915
|
switch (_context183.prev = _context183.next) {
|
|
13809
13916
|
case 0:
|
|
13810
13917
|
_context183.t0 = api;
|
|
13811
|
-
_context183.t1 =
|
|
13812
|
-
_context183.t2 =
|
|
13813
|
-
_context183.
|
|
13918
|
+
_context183.t1 = urlParams;
|
|
13919
|
+
_context183.t2 = body;
|
|
13920
|
+
_context183.t3 = headers;
|
|
13921
|
+
_context183.next = 6;
|
|
13814
13922
|
return _this.baseURL;
|
|
13815
13923
|
|
|
13816
|
-
case
|
|
13817
|
-
_context183.
|
|
13818
|
-
_context183.
|
|
13819
|
-
|
|
13820
|
-
|
|
13821
|
-
|
|
13924
|
+
case 6:
|
|
13925
|
+
_context183.t4 = _context183.sent;
|
|
13926
|
+
_context183.t5 = {
|
|
13927
|
+
urlParams: _context183.t1,
|
|
13928
|
+
body: _context183.t2,
|
|
13929
|
+
headers: _context183.t3,
|
|
13930
|
+
baseURL: _context183.t4
|
|
13822
13931
|
};
|
|
13823
|
-
return _context183.abrupt("return", _context183.t0.
|
|
13932
|
+
return _context183.abrupt("return", _context183.t0.transferServiceRequest.call(_context183.t0, _context183.t5));
|
|
13824
13933
|
|
|
13825
|
-
case
|
|
13934
|
+
case 9:
|
|
13826
13935
|
case "end":
|
|
13827
13936
|
return _context183.stop();
|
|
13828
13937
|
}
|
|
@@ -13830,32 +13939,35 @@ var Api = function Api(baseURL) {
|
|
|
13830
13939
|
}, _callee183);
|
|
13831
13940
|
}));
|
|
13832
13941
|
|
|
13833
|
-
return function (
|
|
13942
|
+
return function (_x402, _x403, _x404) {
|
|
13834
13943
|
return _ref183.apply(this, arguments);
|
|
13835
13944
|
};
|
|
13836
|
-
}();
|
|
13837
|
-
|
|
13945
|
+
}();
|
|
13838
13946
|
|
|
13839
|
-
this.
|
|
13840
|
-
var _ref184 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee184(headers) {
|
|
13947
|
+
this.updateServiceRequest = /*#__PURE__*/function () {
|
|
13948
|
+
var _ref184 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee184(urlParams, body, headers) {
|
|
13841
13949
|
return runtime_1.wrap(function _callee184$(_context184) {
|
|
13842
13950
|
while (1) {
|
|
13843
13951
|
switch (_context184.prev = _context184.next) {
|
|
13844
13952
|
case 0:
|
|
13845
13953
|
_context184.t0 = api;
|
|
13846
|
-
_context184.t1 =
|
|
13847
|
-
_context184.
|
|
13954
|
+
_context184.t1 = urlParams;
|
|
13955
|
+
_context184.t2 = body;
|
|
13956
|
+
_context184.t3 = headers;
|
|
13957
|
+
_context184.next = 6;
|
|
13848
13958
|
return _this.baseURL;
|
|
13849
13959
|
|
|
13850
|
-
case
|
|
13851
|
-
_context184.
|
|
13852
|
-
_context184.
|
|
13853
|
-
|
|
13854
|
-
|
|
13960
|
+
case 6:
|
|
13961
|
+
_context184.t4 = _context184.sent;
|
|
13962
|
+
_context184.t5 = {
|
|
13963
|
+
urlParams: _context184.t1,
|
|
13964
|
+
body: _context184.t2,
|
|
13965
|
+
headers: _context184.t3,
|
|
13966
|
+
baseURL: _context184.t4
|
|
13855
13967
|
};
|
|
13856
|
-
return _context184.abrupt("return", _context184.t0.
|
|
13968
|
+
return _context184.abrupt("return", _context184.t0.updateServiceRequestRequest.call(_context184.t0, _context184.t5));
|
|
13857
13969
|
|
|
13858
|
-
case
|
|
13970
|
+
case 9:
|
|
13859
13971
|
case "end":
|
|
13860
13972
|
return _context184.stop();
|
|
13861
13973
|
}
|
|
@@ -13863,20 +13975,20 @@ var Api = function Api(baseURL) {
|
|
|
13863
13975
|
}, _callee184);
|
|
13864
13976
|
}));
|
|
13865
13977
|
|
|
13866
|
-
return function (_x406) {
|
|
13978
|
+
return function (_x405, _x406, _x407) {
|
|
13867
13979
|
return _ref184.apply(this, arguments);
|
|
13868
13980
|
};
|
|
13869
|
-
}(); //
|
|
13981
|
+
}(); // slack
|
|
13870
13982
|
|
|
13871
13983
|
|
|
13872
|
-
this.
|
|
13873
|
-
var _ref185 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee185(
|
|
13984
|
+
this.createCianRating = /*#__PURE__*/function () {
|
|
13985
|
+
var _ref185 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee185(body, headers) {
|
|
13874
13986
|
return runtime_1.wrap(function _callee185$(_context185) {
|
|
13875
13987
|
while (1) {
|
|
13876
13988
|
switch (_context185.prev = _context185.next) {
|
|
13877
13989
|
case 0:
|
|
13878
13990
|
_context185.t0 = api;
|
|
13879
|
-
_context185.t1 =
|
|
13991
|
+
_context185.t1 = body;
|
|
13880
13992
|
_context185.t2 = headers;
|
|
13881
13993
|
_context185.next = 5;
|
|
13882
13994
|
return _this.baseURL;
|
|
@@ -13884,11 +13996,11 @@ var Api = function Api(baseURL) {
|
|
|
13884
13996
|
case 5:
|
|
13885
13997
|
_context185.t3 = _context185.sent;
|
|
13886
13998
|
_context185.t4 = {
|
|
13887
|
-
|
|
13999
|
+
body: _context185.t1,
|
|
13888
14000
|
headers: _context185.t2,
|
|
13889
14001
|
baseURL: _context185.t3
|
|
13890
14002
|
};
|
|
13891
|
-
return _context185.abrupt("return", _context185.t0.
|
|
14003
|
+
return _context185.abrupt("return", _context185.t0.createCianRatingRequest.call(_context185.t0, _context185.t4));
|
|
13892
14004
|
|
|
13893
14005
|
case 8:
|
|
13894
14006
|
case "end":
|
|
@@ -13898,33 +14010,32 @@ var Api = function Api(baseURL) {
|
|
|
13898
14010
|
}, _callee185);
|
|
13899
14011
|
}));
|
|
13900
14012
|
|
|
13901
|
-
return function (
|
|
14013
|
+
return function (_x408, _x409) {
|
|
13902
14014
|
return _ref185.apply(this, arguments);
|
|
13903
14015
|
};
|
|
13904
|
-
}();
|
|
14016
|
+
}(); // sold
|
|
13905
14017
|
|
|
13906
|
-
|
|
13907
|
-
|
|
14018
|
+
|
|
14019
|
+
this.findSoldStatistic = /*#__PURE__*/function () {
|
|
14020
|
+
var _ref186 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee186(headers) {
|
|
13908
14021
|
return runtime_1.wrap(function _callee186$(_context186) {
|
|
13909
14022
|
while (1) {
|
|
13910
14023
|
switch (_context186.prev = _context186.next) {
|
|
13911
14024
|
case 0:
|
|
13912
14025
|
_context186.t0 = api;
|
|
13913
|
-
_context186.t1 =
|
|
13914
|
-
_context186.
|
|
13915
|
-
_context186.next = 5;
|
|
14026
|
+
_context186.t1 = headers;
|
|
14027
|
+
_context186.next = 4;
|
|
13916
14028
|
return _this.baseURL;
|
|
13917
14029
|
|
|
13918
|
-
case
|
|
13919
|
-
_context186.
|
|
13920
|
-
_context186.
|
|
13921
|
-
|
|
13922
|
-
|
|
13923
|
-
baseURL: _context186.t3
|
|
14030
|
+
case 4:
|
|
14031
|
+
_context186.t2 = _context186.sent;
|
|
14032
|
+
_context186.t3 = {
|
|
14033
|
+
headers: _context186.t1,
|
|
14034
|
+
baseURL: _context186.t2
|
|
13924
14035
|
};
|
|
13925
|
-
return _context186.abrupt("return", _context186.t0.
|
|
14036
|
+
return _context186.abrupt("return", _context186.t0.findSoldStatisticRequest.call(_context186.t0, _context186.t3));
|
|
13926
14037
|
|
|
13927
|
-
case
|
|
14038
|
+
case 7:
|
|
13928
14039
|
case "end":
|
|
13929
14040
|
return _context186.stop();
|
|
13930
14041
|
}
|
|
@@ -13932,13 +14043,13 @@ var Api = function Api(baseURL) {
|
|
|
13932
14043
|
}, _callee186);
|
|
13933
14044
|
}));
|
|
13934
14045
|
|
|
13935
|
-
return function (
|
|
14046
|
+
return function (_x410) {
|
|
13936
14047
|
return _ref186.apply(this, arguments);
|
|
13937
14048
|
};
|
|
13938
|
-
}(); //
|
|
14049
|
+
}(); // stats markup
|
|
13939
14050
|
|
|
13940
14051
|
|
|
13941
|
-
this.
|
|
14052
|
+
this.findMarkupCalls = /*#__PURE__*/function () {
|
|
13942
14053
|
var _ref187 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee187(params, headers) {
|
|
13943
14054
|
return runtime_1.wrap(function _callee187$(_context187) {
|
|
13944
14055
|
while (1) {
|
|
@@ -13957,7 +14068,7 @@ var Api = function Api(baseURL) {
|
|
|
13957
14068
|
headers: _context187.t2,
|
|
13958
14069
|
baseURL: _context187.t3
|
|
13959
14070
|
};
|
|
13960
|
-
return _context187.abrupt("return", _context187.t0.
|
|
14071
|
+
return _context187.abrupt("return", _context187.t0.findMarkupCallsRequest.call(_context187.t0, _context187.t4));
|
|
13961
14072
|
|
|
13962
14073
|
case 8:
|
|
13963
14074
|
case "end":
|
|
@@ -13972,14 +14083,14 @@ var Api = function Api(baseURL) {
|
|
|
13972
14083
|
};
|
|
13973
14084
|
}();
|
|
13974
14085
|
|
|
13975
|
-
this.
|
|
13976
|
-
var _ref188 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee188(
|
|
14086
|
+
this.findMarkupBySourceCalls = /*#__PURE__*/function () {
|
|
14087
|
+
var _ref188 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee188(params, headers) {
|
|
13977
14088
|
return runtime_1.wrap(function _callee188$(_context188) {
|
|
13978
14089
|
while (1) {
|
|
13979
14090
|
switch (_context188.prev = _context188.next) {
|
|
13980
14091
|
case 0:
|
|
13981
14092
|
_context188.t0 = api;
|
|
13982
|
-
_context188.t1 =
|
|
14093
|
+
_context188.t1 = params;
|
|
13983
14094
|
_context188.t2 = headers;
|
|
13984
14095
|
_context188.next = 5;
|
|
13985
14096
|
return _this.baseURL;
|
|
@@ -13987,11 +14098,11 @@ var Api = function Api(baseURL) {
|
|
|
13987
14098
|
case 5:
|
|
13988
14099
|
_context188.t3 = _context188.sent;
|
|
13989
14100
|
_context188.t4 = {
|
|
13990
|
-
|
|
14101
|
+
params: _context188.t1,
|
|
13991
14102
|
headers: _context188.t2,
|
|
13992
14103
|
baseURL: _context188.t3
|
|
13993
14104
|
};
|
|
13994
|
-
return _context188.abrupt("return", _context188.t0.
|
|
14105
|
+
return _context188.abrupt("return", _context188.t0.findMarkupBySourceCallsRequest.call(_context188.t0, _context188.t4));
|
|
13995
14106
|
|
|
13996
14107
|
case 8:
|
|
13997
14108
|
case "end":
|
|
@@ -14004,16 +14115,17 @@ var Api = function Api(baseURL) {
|
|
|
14004
14115
|
return function (_x413, _x414) {
|
|
14005
14116
|
return _ref188.apply(this, arguments);
|
|
14006
14117
|
};
|
|
14007
|
-
}();
|
|
14118
|
+
}(); // task
|
|
14008
14119
|
|
|
14009
|
-
|
|
14010
|
-
|
|
14120
|
+
|
|
14121
|
+
this.findTasks = /*#__PURE__*/function () {
|
|
14122
|
+
var _ref189 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee189(params, headers) {
|
|
14011
14123
|
return runtime_1.wrap(function _callee189$(_context189) {
|
|
14012
14124
|
while (1) {
|
|
14013
14125
|
switch (_context189.prev = _context189.next) {
|
|
14014
14126
|
case 0:
|
|
14015
14127
|
_context189.t0 = api;
|
|
14016
|
-
_context189.t1 =
|
|
14128
|
+
_context189.t1 = params;
|
|
14017
14129
|
_context189.t2 = headers;
|
|
14018
14130
|
_context189.next = 5;
|
|
14019
14131
|
return _this.baseURL;
|
|
@@ -14021,11 +14133,11 @@ var Api = function Api(baseURL) {
|
|
|
14021
14133
|
case 5:
|
|
14022
14134
|
_context189.t3 = _context189.sent;
|
|
14023
14135
|
_context189.t4 = {
|
|
14024
|
-
|
|
14136
|
+
params: _context189.t1,
|
|
14025
14137
|
headers: _context189.t2,
|
|
14026
14138
|
baseURL: _context189.t3
|
|
14027
14139
|
};
|
|
14028
|
-
return _context189.abrupt("return", _context189.t0.
|
|
14140
|
+
return _context189.abrupt("return", _context189.t0.findTasksRequest.call(_context189.t0, _context189.t4));
|
|
14029
14141
|
|
|
14030
14142
|
case 8:
|
|
14031
14143
|
case "end":
|
|
@@ -14040,30 +14152,28 @@ var Api = function Api(baseURL) {
|
|
|
14040
14152
|
};
|
|
14041
14153
|
}();
|
|
14042
14154
|
|
|
14043
|
-
this.
|
|
14044
|
-
var _ref190 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee190(urlParams,
|
|
14155
|
+
this.findTaskById = /*#__PURE__*/function () {
|
|
14156
|
+
var _ref190 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee190(urlParams, headers) {
|
|
14045
14157
|
return runtime_1.wrap(function _callee190$(_context190) {
|
|
14046
14158
|
while (1) {
|
|
14047
14159
|
switch (_context190.prev = _context190.next) {
|
|
14048
14160
|
case 0:
|
|
14049
14161
|
_context190.t0 = api;
|
|
14050
14162
|
_context190.t1 = urlParams;
|
|
14051
|
-
_context190.t2 =
|
|
14052
|
-
_context190.
|
|
14053
|
-
_context190.next = 6;
|
|
14163
|
+
_context190.t2 = headers;
|
|
14164
|
+
_context190.next = 5;
|
|
14054
14165
|
return _this.baseURL;
|
|
14055
14166
|
|
|
14056
|
-
case
|
|
14057
|
-
_context190.
|
|
14058
|
-
_context190.
|
|
14167
|
+
case 5:
|
|
14168
|
+
_context190.t3 = _context190.sent;
|
|
14169
|
+
_context190.t4 = {
|
|
14059
14170
|
urlParams: _context190.t1,
|
|
14060
|
-
|
|
14061
|
-
|
|
14062
|
-
baseURL: _context190.t4
|
|
14171
|
+
headers: _context190.t2,
|
|
14172
|
+
baseURL: _context190.t3
|
|
14063
14173
|
};
|
|
14064
|
-
return _context190.abrupt("return", _context190.t0.
|
|
14174
|
+
return _context190.abrupt("return", _context190.t0.findTaskByIdRequest.call(_context190.t0, _context190.t4));
|
|
14065
14175
|
|
|
14066
|
-
case
|
|
14176
|
+
case 8:
|
|
14067
14177
|
case "end":
|
|
14068
14178
|
return _context190.stop();
|
|
14069
14179
|
}
|
|
@@ -14071,19 +14181,19 @@ var Api = function Api(baseURL) {
|
|
|
14071
14181
|
}, _callee190);
|
|
14072
14182
|
}));
|
|
14073
14183
|
|
|
14074
|
-
return function (_x417, _x418
|
|
14184
|
+
return function (_x417, _x418) {
|
|
14075
14185
|
return _ref190.apply(this, arguments);
|
|
14076
14186
|
};
|
|
14077
14187
|
}();
|
|
14078
14188
|
|
|
14079
|
-
this.
|
|
14080
|
-
var _ref191 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee191(
|
|
14189
|
+
this.createTask = /*#__PURE__*/function () {
|
|
14190
|
+
var _ref191 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee191(body, headers) {
|
|
14081
14191
|
return runtime_1.wrap(function _callee191$(_context191) {
|
|
14082
14192
|
while (1) {
|
|
14083
14193
|
switch (_context191.prev = _context191.next) {
|
|
14084
14194
|
case 0:
|
|
14085
14195
|
_context191.t0 = api;
|
|
14086
|
-
_context191.t1 =
|
|
14196
|
+
_context191.t1 = body;
|
|
14087
14197
|
_context191.t2 = headers;
|
|
14088
14198
|
_context191.next = 5;
|
|
14089
14199
|
return _this.baseURL;
|
|
@@ -14091,11 +14201,11 @@ var Api = function Api(baseURL) {
|
|
|
14091
14201
|
case 5:
|
|
14092
14202
|
_context191.t3 = _context191.sent;
|
|
14093
14203
|
_context191.t4 = {
|
|
14094
|
-
|
|
14204
|
+
body: _context191.t1,
|
|
14095
14205
|
headers: _context191.t2,
|
|
14096
14206
|
baseURL: _context191.t3
|
|
14097
14207
|
};
|
|
14098
|
-
return _context191.abrupt("return", _context191.t0.
|
|
14208
|
+
return _context191.abrupt("return", _context191.t0.createTaskRequest.call(_context191.t0, _context191.t4));
|
|
14099
14209
|
|
|
14100
14210
|
case 8:
|
|
14101
14211
|
case "end":
|
|
@@ -14105,13 +14215,12 @@ var Api = function Api(baseURL) {
|
|
|
14105
14215
|
}, _callee191);
|
|
14106
14216
|
}));
|
|
14107
14217
|
|
|
14108
|
-
return function (
|
|
14218
|
+
return function (_x419, _x420) {
|
|
14109
14219
|
return _ref191.apply(this, arguments);
|
|
14110
14220
|
};
|
|
14111
|
-
}();
|
|
14112
|
-
|
|
14221
|
+
}();
|
|
14113
14222
|
|
|
14114
|
-
this.
|
|
14223
|
+
this.updateTask = /*#__PURE__*/function () {
|
|
14115
14224
|
var _ref192 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee192(urlParams, body, headers) {
|
|
14116
14225
|
return runtime_1.wrap(function _callee192$(_context192) {
|
|
14117
14226
|
while (1) {
|
|
@@ -14132,7 +14241,7 @@ var Api = function Api(baseURL) {
|
|
|
14132
14241
|
headers: _context192.t3,
|
|
14133
14242
|
baseURL: _context192.t4
|
|
14134
14243
|
};
|
|
14135
|
-
return _context192.abrupt("return", _context192.t0.
|
|
14244
|
+
return _context192.abrupt("return", _context192.t0.updateTaskRequest.call(_context192.t0, _context192.t5));
|
|
14136
14245
|
|
|
14137
14246
|
case 9:
|
|
14138
14247
|
case "end":
|
|
@@ -14142,19 +14251,19 @@ var Api = function Api(baseURL) {
|
|
|
14142
14251
|
}, _callee192);
|
|
14143
14252
|
}));
|
|
14144
14253
|
|
|
14145
|
-
return function (_x422, _x423
|
|
14254
|
+
return function (_x421, _x422, _x423) {
|
|
14146
14255
|
return _ref192.apply(this, arguments);
|
|
14147
14256
|
};
|
|
14148
14257
|
}();
|
|
14149
14258
|
|
|
14150
|
-
this.
|
|
14151
|
-
var _ref193 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee193(
|
|
14259
|
+
this.resolveTask = /*#__PURE__*/function () {
|
|
14260
|
+
var _ref193 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee193(urlParams, headers) {
|
|
14152
14261
|
return runtime_1.wrap(function _callee193$(_context193) {
|
|
14153
14262
|
while (1) {
|
|
14154
14263
|
switch (_context193.prev = _context193.next) {
|
|
14155
14264
|
case 0:
|
|
14156
14265
|
_context193.t0 = api;
|
|
14157
|
-
_context193.t1 =
|
|
14266
|
+
_context193.t1 = urlParams;
|
|
14158
14267
|
_context193.t2 = headers;
|
|
14159
14268
|
_context193.next = 5;
|
|
14160
14269
|
return _this.baseURL;
|
|
@@ -14162,11 +14271,11 @@ var Api = function Api(baseURL) {
|
|
|
14162
14271
|
case 5:
|
|
14163
14272
|
_context193.t3 = _context193.sent;
|
|
14164
14273
|
_context193.t4 = {
|
|
14165
|
-
|
|
14274
|
+
urlParams: _context193.t1,
|
|
14166
14275
|
headers: _context193.t2,
|
|
14167
14276
|
baseURL: _context193.t3
|
|
14168
14277
|
};
|
|
14169
|
-
return _context193.abrupt("return", _context193.t0.
|
|
14278
|
+
return _context193.abrupt("return", _context193.t0.resolveTaskRequest.call(_context193.t0, _context193.t4));
|
|
14170
14279
|
|
|
14171
14280
|
case 8:
|
|
14172
14281
|
case "end":
|
|
@@ -14176,33 +14285,36 @@ var Api = function Api(baseURL) {
|
|
|
14176
14285
|
}, _callee193);
|
|
14177
14286
|
}));
|
|
14178
14287
|
|
|
14179
|
-
return function (
|
|
14288
|
+
return function (_x424, _x425) {
|
|
14180
14289
|
return _ref193.apply(this, arguments);
|
|
14181
14290
|
};
|
|
14182
|
-
}();
|
|
14291
|
+
}(); // user
|
|
14183
14292
|
|
|
14184
|
-
|
|
14185
|
-
|
|
14293
|
+
|
|
14294
|
+
this.assignSubordinateUsers = /*#__PURE__*/function () {
|
|
14295
|
+
var _ref194 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee194(urlParams, body, headers) {
|
|
14186
14296
|
return runtime_1.wrap(function _callee194$(_context194) {
|
|
14187
14297
|
while (1) {
|
|
14188
14298
|
switch (_context194.prev = _context194.next) {
|
|
14189
14299
|
case 0:
|
|
14190
14300
|
_context194.t0 = api;
|
|
14191
14301
|
_context194.t1 = urlParams;
|
|
14192
|
-
_context194.t2 =
|
|
14193
|
-
_context194.
|
|
14302
|
+
_context194.t2 = body;
|
|
14303
|
+
_context194.t3 = headers;
|
|
14304
|
+
_context194.next = 6;
|
|
14194
14305
|
return _this.baseURL;
|
|
14195
14306
|
|
|
14196
|
-
case
|
|
14197
|
-
_context194.
|
|
14198
|
-
_context194.
|
|
14307
|
+
case 6:
|
|
14308
|
+
_context194.t4 = _context194.sent;
|
|
14309
|
+
_context194.t5 = {
|
|
14199
14310
|
urlParams: _context194.t1,
|
|
14200
|
-
|
|
14201
|
-
|
|
14311
|
+
body: _context194.t2,
|
|
14312
|
+
headers: _context194.t3,
|
|
14313
|
+
baseURL: _context194.t4
|
|
14202
14314
|
};
|
|
14203
|
-
return _context194.abrupt("return", _context194.t0.
|
|
14315
|
+
return _context194.abrupt("return", _context194.t0.assignSubordinateUsersRequest.call(_context194.t0, _context194.t5));
|
|
14204
14316
|
|
|
14205
|
-
case
|
|
14317
|
+
case 9:
|
|
14206
14318
|
case "end":
|
|
14207
14319
|
return _context194.stop();
|
|
14208
14320
|
}
|
|
@@ -14210,19 +14322,19 @@ var Api = function Api(baseURL) {
|
|
|
14210
14322
|
}, _callee194);
|
|
14211
14323
|
}));
|
|
14212
14324
|
|
|
14213
|
-
return function (_x427, _x428) {
|
|
14325
|
+
return function (_x426, _x427, _x428) {
|
|
14214
14326
|
return _ref194.apply(this, arguments);
|
|
14215
14327
|
};
|
|
14216
14328
|
}();
|
|
14217
14329
|
|
|
14218
|
-
this.
|
|
14219
|
-
var _ref195 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee195(
|
|
14330
|
+
this.createUser = /*#__PURE__*/function () {
|
|
14331
|
+
var _ref195 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee195(body, headers) {
|
|
14220
14332
|
return runtime_1.wrap(function _callee195$(_context195) {
|
|
14221
14333
|
while (1) {
|
|
14222
14334
|
switch (_context195.prev = _context195.next) {
|
|
14223
14335
|
case 0:
|
|
14224
14336
|
_context195.t0 = api;
|
|
14225
|
-
_context195.t1 =
|
|
14337
|
+
_context195.t1 = body;
|
|
14226
14338
|
_context195.t2 = headers;
|
|
14227
14339
|
_context195.next = 5;
|
|
14228
14340
|
return _this.baseURL;
|
|
@@ -14230,11 +14342,11 @@ var Api = function Api(baseURL) {
|
|
|
14230
14342
|
case 5:
|
|
14231
14343
|
_context195.t3 = _context195.sent;
|
|
14232
14344
|
_context195.t4 = {
|
|
14233
|
-
|
|
14345
|
+
body: _context195.t1,
|
|
14234
14346
|
headers: _context195.t2,
|
|
14235
14347
|
baseURL: _context195.t3
|
|
14236
14348
|
};
|
|
14237
|
-
return _context195.abrupt("return", _context195.t0.
|
|
14349
|
+
return _context195.abrupt("return", _context195.t0.createUserRequest.call(_context195.t0, _context195.t4));
|
|
14238
14350
|
|
|
14239
14351
|
case 8:
|
|
14240
14352
|
case "end":
|
|
@@ -14249,7 +14361,7 @@ var Api = function Api(baseURL) {
|
|
|
14249
14361
|
};
|
|
14250
14362
|
}();
|
|
14251
14363
|
|
|
14252
|
-
this.
|
|
14364
|
+
this.deleteUser = /*#__PURE__*/function () {
|
|
14253
14365
|
var _ref196 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee196(urlParams, headers) {
|
|
14254
14366
|
return runtime_1.wrap(function _callee196$(_context196) {
|
|
14255
14367
|
while (1) {
|
|
@@ -14268,7 +14380,7 @@ var Api = function Api(baseURL) {
|
|
|
14268
14380
|
headers: _context196.t2,
|
|
14269
14381
|
baseURL: _context196.t3
|
|
14270
14382
|
};
|
|
14271
|
-
return _context196.abrupt("return", _context196.t0.
|
|
14383
|
+
return _context196.abrupt("return", _context196.t0.deleteUserRequest.call(_context196.t0, _context196.t4));
|
|
14272
14384
|
|
|
14273
14385
|
case 8:
|
|
14274
14386
|
case "end":
|
|
@@ -14283,14 +14395,14 @@ var Api = function Api(baseURL) {
|
|
|
14283
14395
|
};
|
|
14284
14396
|
}();
|
|
14285
14397
|
|
|
14286
|
-
this.
|
|
14287
|
-
var _ref197 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee197(
|
|
14398
|
+
this.findUserById = /*#__PURE__*/function () {
|
|
14399
|
+
var _ref197 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee197(urlParams, headers) {
|
|
14288
14400
|
return runtime_1.wrap(function _callee197$(_context197) {
|
|
14289
14401
|
while (1) {
|
|
14290
14402
|
switch (_context197.prev = _context197.next) {
|
|
14291
14403
|
case 0:
|
|
14292
14404
|
_context197.t0 = api;
|
|
14293
|
-
_context197.t1 =
|
|
14405
|
+
_context197.t1 = urlParams;
|
|
14294
14406
|
_context197.t2 = headers;
|
|
14295
14407
|
_context197.next = 5;
|
|
14296
14408
|
return _this.baseURL;
|
|
@@ -14298,11 +14410,11 @@ var Api = function Api(baseURL) {
|
|
|
14298
14410
|
case 5:
|
|
14299
14411
|
_context197.t3 = _context197.sent;
|
|
14300
14412
|
_context197.t4 = {
|
|
14301
|
-
|
|
14413
|
+
urlParams: _context197.t1,
|
|
14302
14414
|
headers: _context197.t2,
|
|
14303
14415
|
baseURL: _context197.t3
|
|
14304
14416
|
};
|
|
14305
|
-
return _context197.abrupt("return", _context197.t0.
|
|
14417
|
+
return _context197.abrupt("return", _context197.t0.findUserByIdRequest.call(_context197.t0, _context197.t4));
|
|
14306
14418
|
|
|
14307
14419
|
case 8:
|
|
14308
14420
|
case "end":
|
|
@@ -14317,7 +14429,7 @@ var Api = function Api(baseURL) {
|
|
|
14317
14429
|
};
|
|
14318
14430
|
}();
|
|
14319
14431
|
|
|
14320
|
-
this.
|
|
14432
|
+
this.findUserPasswordById = /*#__PURE__*/function () {
|
|
14321
14433
|
var _ref198 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee198(urlParams, headers) {
|
|
14322
14434
|
return runtime_1.wrap(function _callee198$(_context198) {
|
|
14323
14435
|
while (1) {
|
|
@@ -14336,7 +14448,7 @@ var Api = function Api(baseURL) {
|
|
|
14336
14448
|
headers: _context198.t2,
|
|
14337
14449
|
baseURL: _context198.t3
|
|
14338
14450
|
};
|
|
14339
|
-
return _context198.abrupt("return", _context198.t0.
|
|
14451
|
+
return _context198.abrupt("return", _context198.t0.findUserPasswordByIdRequest.call(_context198.t0, _context198.t4));
|
|
14340
14452
|
|
|
14341
14453
|
case 8:
|
|
14342
14454
|
case "end":
|
|
@@ -14351,30 +14463,28 @@ var Api = function Api(baseURL) {
|
|
|
14351
14463
|
};
|
|
14352
14464
|
}();
|
|
14353
14465
|
|
|
14354
|
-
this.
|
|
14355
|
-
var _ref199 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee199(
|
|
14466
|
+
this.findUsers = /*#__PURE__*/function () {
|
|
14467
|
+
var _ref199 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee199(params, headers) {
|
|
14356
14468
|
return runtime_1.wrap(function _callee199$(_context199) {
|
|
14357
14469
|
while (1) {
|
|
14358
14470
|
switch (_context199.prev = _context199.next) {
|
|
14359
14471
|
case 0:
|
|
14360
14472
|
_context199.t0 = api;
|
|
14361
|
-
_context199.t1 =
|
|
14362
|
-
_context199.t2 =
|
|
14363
|
-
_context199.
|
|
14364
|
-
_context199.next = 6;
|
|
14473
|
+
_context199.t1 = params;
|
|
14474
|
+
_context199.t2 = headers;
|
|
14475
|
+
_context199.next = 5;
|
|
14365
14476
|
return _this.baseURL;
|
|
14366
14477
|
|
|
14367
|
-
case
|
|
14368
|
-
_context199.
|
|
14369
|
-
_context199.
|
|
14370
|
-
|
|
14371
|
-
|
|
14372
|
-
|
|
14373
|
-
baseURL: _context199.t4
|
|
14478
|
+
case 5:
|
|
14479
|
+
_context199.t3 = _context199.sent;
|
|
14480
|
+
_context199.t4 = {
|
|
14481
|
+
params: _context199.t1,
|
|
14482
|
+
headers: _context199.t2,
|
|
14483
|
+
baseURL: _context199.t3
|
|
14374
14484
|
};
|
|
14375
|
-
return _context199.abrupt("return", _context199.t0.
|
|
14485
|
+
return _context199.abrupt("return", _context199.t0.findUsersRequest.call(_context199.t0, _context199.t4));
|
|
14376
14486
|
|
|
14377
|
-
case
|
|
14487
|
+
case 8:
|
|
14378
14488
|
case "end":
|
|
14379
14489
|
return _context199.stop();
|
|
14380
14490
|
}
|
|
@@ -14382,35 +14492,33 @@ var Api = function Api(baseURL) {
|
|
|
14382
14492
|
}, _callee199);
|
|
14383
14493
|
}));
|
|
14384
14494
|
|
|
14385
|
-
return function (_x437, _x438
|
|
14495
|
+
return function (_x437, _x438) {
|
|
14386
14496
|
return _ref199.apply(this, arguments);
|
|
14387
14497
|
};
|
|
14388
14498
|
}();
|
|
14389
14499
|
|
|
14390
|
-
this.
|
|
14391
|
-
var _ref200 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee200(urlParams,
|
|
14500
|
+
this.findUserTokenById = /*#__PURE__*/function () {
|
|
14501
|
+
var _ref200 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee200(urlParams, headers) {
|
|
14392
14502
|
return runtime_1.wrap(function _callee200$(_context200) {
|
|
14393
14503
|
while (1) {
|
|
14394
14504
|
switch (_context200.prev = _context200.next) {
|
|
14395
14505
|
case 0:
|
|
14396
14506
|
_context200.t0 = api;
|
|
14397
14507
|
_context200.t1 = urlParams;
|
|
14398
|
-
_context200.t2 =
|
|
14399
|
-
_context200.
|
|
14400
|
-
_context200.next = 6;
|
|
14508
|
+
_context200.t2 = headers;
|
|
14509
|
+
_context200.next = 5;
|
|
14401
14510
|
return _this.baseURL;
|
|
14402
14511
|
|
|
14403
|
-
case
|
|
14404
|
-
_context200.
|
|
14405
|
-
_context200.
|
|
14512
|
+
case 5:
|
|
14513
|
+
_context200.t3 = _context200.sent;
|
|
14514
|
+
_context200.t4 = {
|
|
14406
14515
|
urlParams: _context200.t1,
|
|
14407
|
-
|
|
14408
|
-
|
|
14409
|
-
baseURL: _context200.t4
|
|
14516
|
+
headers: _context200.t2,
|
|
14517
|
+
baseURL: _context200.t3
|
|
14410
14518
|
};
|
|
14411
|
-
return _context200.abrupt("return", _context200.t0.
|
|
14519
|
+
return _context200.abrupt("return", _context200.t0.findUserTokenByIdRequest.call(_context200.t0, _context200.t4));
|
|
14412
14520
|
|
|
14413
|
-
case
|
|
14521
|
+
case 8:
|
|
14414
14522
|
case "end":
|
|
14415
14523
|
return _context200.stop();
|
|
14416
14524
|
}
|
|
@@ -14418,34 +14526,35 @@ var Api = function Api(baseURL) {
|
|
|
14418
14526
|
}, _callee200);
|
|
14419
14527
|
}));
|
|
14420
14528
|
|
|
14421
|
-
return function (
|
|
14529
|
+
return function (_x439, _x440) {
|
|
14422
14530
|
return _ref200.apply(this, arguments);
|
|
14423
14531
|
};
|
|
14424
|
-
}();
|
|
14425
|
-
|
|
14532
|
+
}();
|
|
14426
14533
|
|
|
14427
|
-
this.
|
|
14428
|
-
var _ref201 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee201(urlParams, headers) {
|
|
14534
|
+
this.fireUser = /*#__PURE__*/function () {
|
|
14535
|
+
var _ref201 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee201(urlParams, body, headers) {
|
|
14429
14536
|
return runtime_1.wrap(function _callee201$(_context201) {
|
|
14430
14537
|
while (1) {
|
|
14431
14538
|
switch (_context201.prev = _context201.next) {
|
|
14432
14539
|
case 0:
|
|
14433
14540
|
_context201.t0 = api;
|
|
14434
14541
|
_context201.t1 = urlParams;
|
|
14435
|
-
_context201.t2 =
|
|
14436
|
-
_context201.
|
|
14542
|
+
_context201.t2 = body;
|
|
14543
|
+
_context201.t3 = headers;
|
|
14544
|
+
_context201.next = 6;
|
|
14437
14545
|
return _this.baseURL;
|
|
14438
14546
|
|
|
14439
|
-
case
|
|
14440
|
-
_context201.
|
|
14441
|
-
_context201.
|
|
14547
|
+
case 6:
|
|
14548
|
+
_context201.t4 = _context201.sent;
|
|
14549
|
+
_context201.t5 = {
|
|
14442
14550
|
urlParams: _context201.t1,
|
|
14443
|
-
|
|
14444
|
-
|
|
14551
|
+
body: _context201.t2,
|
|
14552
|
+
headers: _context201.t3,
|
|
14553
|
+
baseURL: _context201.t4
|
|
14445
14554
|
};
|
|
14446
|
-
return _context201.abrupt("return", _context201.t0.
|
|
14555
|
+
return _context201.abrupt("return", _context201.t0.fireUserRequest.call(_context201.t0, _context201.t5));
|
|
14447
14556
|
|
|
14448
|
-
case
|
|
14557
|
+
case 9:
|
|
14449
14558
|
case "end":
|
|
14450
14559
|
return _context201.stop();
|
|
14451
14560
|
}
|
|
@@ -14453,33 +14562,35 @@ var Api = function Api(baseURL) {
|
|
|
14453
14562
|
}, _callee201);
|
|
14454
14563
|
}));
|
|
14455
14564
|
|
|
14456
|
-
return function (
|
|
14565
|
+
return function (_x441, _x442, _x443) {
|
|
14457
14566
|
return _ref201.apply(this, arguments);
|
|
14458
14567
|
};
|
|
14459
14568
|
}();
|
|
14460
14569
|
|
|
14461
|
-
this.
|
|
14462
|
-
var _ref202 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee202(body, headers) {
|
|
14570
|
+
this.updateUser = /*#__PURE__*/function () {
|
|
14571
|
+
var _ref202 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee202(urlParams, body, headers) {
|
|
14463
14572
|
return runtime_1.wrap(function _callee202$(_context202) {
|
|
14464
14573
|
while (1) {
|
|
14465
14574
|
switch (_context202.prev = _context202.next) {
|
|
14466
14575
|
case 0:
|
|
14467
14576
|
_context202.t0 = api;
|
|
14468
|
-
_context202.t1 =
|
|
14469
|
-
_context202.t2 =
|
|
14470
|
-
_context202.
|
|
14577
|
+
_context202.t1 = urlParams;
|
|
14578
|
+
_context202.t2 = body;
|
|
14579
|
+
_context202.t3 = headers;
|
|
14580
|
+
_context202.next = 6;
|
|
14471
14581
|
return _this.baseURL;
|
|
14472
14582
|
|
|
14473
|
-
case
|
|
14474
|
-
_context202.
|
|
14475
|
-
_context202.
|
|
14476
|
-
|
|
14477
|
-
|
|
14478
|
-
|
|
14583
|
+
case 6:
|
|
14584
|
+
_context202.t4 = _context202.sent;
|
|
14585
|
+
_context202.t5 = {
|
|
14586
|
+
urlParams: _context202.t1,
|
|
14587
|
+
body: _context202.t2,
|
|
14588
|
+
headers: _context202.t3,
|
|
14589
|
+
baseURL: _context202.t4
|
|
14479
14590
|
};
|
|
14480
|
-
return _context202.abrupt("return", _context202.t0.
|
|
14591
|
+
return _context202.abrupt("return", _context202.t0.updateUserRequest.call(_context202.t0, _context202.t5));
|
|
14481
14592
|
|
|
14482
|
-
case
|
|
14593
|
+
case 9:
|
|
14483
14594
|
case "end":
|
|
14484
14595
|
return _context202.stop();
|
|
14485
14596
|
}
|
|
@@ -14487,35 +14598,34 @@ var Api = function Api(baseURL) {
|
|
|
14487
14598
|
}, _callee202);
|
|
14488
14599
|
}));
|
|
14489
14600
|
|
|
14490
|
-
return function (_x445, _x446) {
|
|
14601
|
+
return function (_x444, _x445, _x446) {
|
|
14491
14602
|
return _ref202.apply(this, arguments);
|
|
14492
14603
|
};
|
|
14493
|
-
}();
|
|
14604
|
+
}(); // valuation
|
|
14494
14605
|
|
|
14495
|
-
|
|
14496
|
-
|
|
14606
|
+
|
|
14607
|
+
this.actualizeValuation = /*#__PURE__*/function () {
|
|
14608
|
+
var _ref203 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee203(urlParams, headers) {
|
|
14497
14609
|
return runtime_1.wrap(function _callee203$(_context203) {
|
|
14498
14610
|
while (1) {
|
|
14499
14611
|
switch (_context203.prev = _context203.next) {
|
|
14500
14612
|
case 0:
|
|
14501
14613
|
_context203.t0 = api;
|
|
14502
14614
|
_context203.t1 = urlParams;
|
|
14503
|
-
_context203.t2 =
|
|
14504
|
-
_context203.
|
|
14505
|
-
_context203.next = 6;
|
|
14615
|
+
_context203.t2 = headers;
|
|
14616
|
+
_context203.next = 5;
|
|
14506
14617
|
return _this.baseURL;
|
|
14507
14618
|
|
|
14508
|
-
case
|
|
14509
|
-
_context203.
|
|
14510
|
-
_context203.
|
|
14619
|
+
case 5:
|
|
14620
|
+
_context203.t3 = _context203.sent;
|
|
14621
|
+
_context203.t4 = {
|
|
14511
14622
|
urlParams: _context203.t1,
|
|
14512
|
-
|
|
14513
|
-
|
|
14514
|
-
baseURL: _context203.t4
|
|
14623
|
+
headers: _context203.t2,
|
|
14624
|
+
baseURL: _context203.t3
|
|
14515
14625
|
};
|
|
14516
|
-
return _context203.abrupt("return", _context203.t0.
|
|
14626
|
+
return _context203.abrupt("return", _context203.t0.actualizeValuationRequest.call(_context203.t0, _context203.t4));
|
|
14517
14627
|
|
|
14518
|
-
case
|
|
14628
|
+
case 8:
|
|
14519
14629
|
case "end":
|
|
14520
14630
|
return _context203.stop();
|
|
14521
14631
|
}
|
|
@@ -14523,35 +14633,33 @@ var Api = function Api(baseURL) {
|
|
|
14523
14633
|
}, _callee203);
|
|
14524
14634
|
}));
|
|
14525
14635
|
|
|
14526
|
-
return function (_x447, _x448
|
|
14636
|
+
return function (_x447, _x448) {
|
|
14527
14637
|
return _ref203.apply(this, arguments);
|
|
14528
14638
|
};
|
|
14529
14639
|
}();
|
|
14530
14640
|
|
|
14531
|
-
this.
|
|
14532
|
-
var _ref204 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee204(
|
|
14641
|
+
this.createValuation = /*#__PURE__*/function () {
|
|
14642
|
+
var _ref204 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee204(body, headers) {
|
|
14533
14643
|
return runtime_1.wrap(function _callee204$(_context204) {
|
|
14534
14644
|
while (1) {
|
|
14535
14645
|
switch (_context204.prev = _context204.next) {
|
|
14536
14646
|
case 0:
|
|
14537
14647
|
_context204.t0 = api;
|
|
14538
|
-
_context204.t1 =
|
|
14539
|
-
_context204.t2 =
|
|
14540
|
-
_context204.
|
|
14541
|
-
_context204.next = 6;
|
|
14648
|
+
_context204.t1 = body;
|
|
14649
|
+
_context204.t2 = headers;
|
|
14650
|
+
_context204.next = 5;
|
|
14542
14651
|
return _this.baseURL;
|
|
14543
14652
|
|
|
14544
|
-
case
|
|
14545
|
-
_context204.
|
|
14546
|
-
_context204.
|
|
14547
|
-
|
|
14548
|
-
|
|
14549
|
-
|
|
14550
|
-
baseURL: _context204.t4
|
|
14653
|
+
case 5:
|
|
14654
|
+
_context204.t3 = _context204.sent;
|
|
14655
|
+
_context204.t4 = {
|
|
14656
|
+
body: _context204.t1,
|
|
14657
|
+
headers: _context204.t2,
|
|
14658
|
+
baseURL: _context204.t3
|
|
14551
14659
|
};
|
|
14552
|
-
return _context204.abrupt("return", _context204.t0.
|
|
14660
|
+
return _context204.abrupt("return", _context204.t0.createValuationRequest.call(_context204.t0, _context204.t4));
|
|
14553
14661
|
|
|
14554
|
-
case
|
|
14662
|
+
case 8:
|
|
14555
14663
|
case "end":
|
|
14556
14664
|
return _context204.stop();
|
|
14557
14665
|
}
|
|
@@ -14559,33 +14667,35 @@ var Api = function Api(baseURL) {
|
|
|
14559
14667
|
}, _callee204);
|
|
14560
14668
|
}));
|
|
14561
14669
|
|
|
14562
|
-
return function (
|
|
14670
|
+
return function (_x449, _x450) {
|
|
14563
14671
|
return _ref204.apply(this, arguments);
|
|
14564
14672
|
};
|
|
14565
14673
|
}();
|
|
14566
14674
|
|
|
14567
|
-
this.
|
|
14568
|
-
var _ref205 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee205(urlParams, headers) {
|
|
14675
|
+
this.createValuationRealtyComment = /*#__PURE__*/function () {
|
|
14676
|
+
var _ref205 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee205(urlParams, body, headers) {
|
|
14569
14677
|
return runtime_1.wrap(function _callee205$(_context205) {
|
|
14570
14678
|
while (1) {
|
|
14571
14679
|
switch (_context205.prev = _context205.next) {
|
|
14572
14680
|
case 0:
|
|
14573
14681
|
_context205.t0 = api;
|
|
14574
14682
|
_context205.t1 = urlParams;
|
|
14575
|
-
_context205.t2 =
|
|
14576
|
-
_context205.
|
|
14683
|
+
_context205.t2 = body;
|
|
14684
|
+
_context205.t3 = headers;
|
|
14685
|
+
_context205.next = 6;
|
|
14577
14686
|
return _this.baseURL;
|
|
14578
14687
|
|
|
14579
|
-
case
|
|
14580
|
-
_context205.
|
|
14581
|
-
_context205.
|
|
14688
|
+
case 6:
|
|
14689
|
+
_context205.t4 = _context205.sent;
|
|
14690
|
+
_context205.t5 = {
|
|
14582
14691
|
urlParams: _context205.t1,
|
|
14583
|
-
|
|
14584
|
-
|
|
14692
|
+
body: _context205.t2,
|
|
14693
|
+
headers: _context205.t3,
|
|
14694
|
+
baseURL: _context205.t4
|
|
14585
14695
|
};
|
|
14586
|
-
return _context205.abrupt("return", _context205.t0.
|
|
14696
|
+
return _context205.abrupt("return", _context205.t0.createValuationRealtyCommentRequest.call(_context205.t0, _context205.t5));
|
|
14587
14697
|
|
|
14588
|
-
case
|
|
14698
|
+
case 9:
|
|
14589
14699
|
case "end":
|
|
14590
14700
|
return _context205.stop();
|
|
14591
14701
|
}
|
|
@@ -14593,20 +14703,20 @@ var Api = function Api(baseURL) {
|
|
|
14593
14703
|
}, _callee205);
|
|
14594
14704
|
}));
|
|
14595
14705
|
|
|
14596
|
-
return function (
|
|
14706
|
+
return function (_x451, _x452, _x453) {
|
|
14597
14707
|
return _ref205.apply(this, arguments);
|
|
14598
14708
|
};
|
|
14599
14709
|
}();
|
|
14600
14710
|
|
|
14601
|
-
this.
|
|
14602
|
-
var _ref206 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee206(urlParams,
|
|
14711
|
+
this.findValuationByServiceRequestId = /*#__PURE__*/function () {
|
|
14712
|
+
var _ref206 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee206(urlParams, params, headers) {
|
|
14603
14713
|
return runtime_1.wrap(function _callee206$(_context206) {
|
|
14604
14714
|
while (1) {
|
|
14605
14715
|
switch (_context206.prev = _context206.next) {
|
|
14606
14716
|
case 0:
|
|
14607
14717
|
_context206.t0 = api;
|
|
14608
14718
|
_context206.t1 = urlParams;
|
|
14609
|
-
_context206.t2 =
|
|
14719
|
+
_context206.t2 = params;
|
|
14610
14720
|
_context206.t3 = headers;
|
|
14611
14721
|
_context206.next = 6;
|
|
14612
14722
|
return _this.baseURL;
|
|
@@ -14615,11 +14725,11 @@ var Api = function Api(baseURL) {
|
|
|
14615
14725
|
_context206.t4 = _context206.sent;
|
|
14616
14726
|
_context206.t5 = {
|
|
14617
14727
|
urlParams: _context206.t1,
|
|
14618
|
-
|
|
14728
|
+
params: _context206.t2,
|
|
14619
14729
|
headers: _context206.t3,
|
|
14620
14730
|
baseURL: _context206.t4
|
|
14621
14731
|
};
|
|
14622
|
-
return _context206.abrupt("return", _context206.t0.
|
|
14732
|
+
return _context206.abrupt("return", _context206.t0.findValuationByServiceRequestIdRequest.call(_context206.t0, _context206.t5));
|
|
14623
14733
|
|
|
14624
14734
|
case 9:
|
|
14625
14735
|
case "end":
|
|
@@ -14629,10 +14739,80 @@ var Api = function Api(baseURL) {
|
|
|
14629
14739
|
}, _callee206);
|
|
14630
14740
|
}));
|
|
14631
14741
|
|
|
14632
|
-
return function (_x455, _x456
|
|
14742
|
+
return function (_x454, _x455, _x456) {
|
|
14633
14743
|
return _ref206.apply(this, arguments);
|
|
14634
14744
|
};
|
|
14635
14745
|
}();
|
|
14746
|
+
|
|
14747
|
+
this.findValuationNewsByServiceRequestId = /*#__PURE__*/function () {
|
|
14748
|
+
var _ref207 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee207(urlParams, headers) {
|
|
14749
|
+
return runtime_1.wrap(function _callee207$(_context207) {
|
|
14750
|
+
while (1) {
|
|
14751
|
+
switch (_context207.prev = _context207.next) {
|
|
14752
|
+
case 0:
|
|
14753
|
+
_context207.t0 = api;
|
|
14754
|
+
_context207.t1 = urlParams;
|
|
14755
|
+
_context207.t2 = headers;
|
|
14756
|
+
_context207.next = 5;
|
|
14757
|
+
return _this.baseURL;
|
|
14758
|
+
|
|
14759
|
+
case 5:
|
|
14760
|
+
_context207.t3 = _context207.sent;
|
|
14761
|
+
_context207.t4 = {
|
|
14762
|
+
urlParams: _context207.t1,
|
|
14763
|
+
headers: _context207.t2,
|
|
14764
|
+
baseURL: _context207.t3
|
|
14765
|
+
};
|
|
14766
|
+
return _context207.abrupt("return", _context207.t0.findValuationNewsByServiceRequestIdRequest.call(_context207.t0, _context207.t4));
|
|
14767
|
+
|
|
14768
|
+
case 8:
|
|
14769
|
+
case "end":
|
|
14770
|
+
return _context207.stop();
|
|
14771
|
+
}
|
|
14772
|
+
}
|
|
14773
|
+
}, _callee207);
|
|
14774
|
+
}));
|
|
14775
|
+
|
|
14776
|
+
return function (_x457, _x458) {
|
|
14777
|
+
return _ref207.apply(this, arguments);
|
|
14778
|
+
};
|
|
14779
|
+
}();
|
|
14780
|
+
|
|
14781
|
+
this.updateValuationNewsStatus = /*#__PURE__*/function () {
|
|
14782
|
+
var _ref208 = _asyncToGenerator( /*#__PURE__*/runtime_1.mark(function _callee208(urlParams, body, headers) {
|
|
14783
|
+
return runtime_1.wrap(function _callee208$(_context208) {
|
|
14784
|
+
while (1) {
|
|
14785
|
+
switch (_context208.prev = _context208.next) {
|
|
14786
|
+
case 0:
|
|
14787
|
+
_context208.t0 = api;
|
|
14788
|
+
_context208.t1 = urlParams;
|
|
14789
|
+
_context208.t2 = body;
|
|
14790
|
+
_context208.t3 = headers;
|
|
14791
|
+
_context208.next = 6;
|
|
14792
|
+
return _this.baseURL;
|
|
14793
|
+
|
|
14794
|
+
case 6:
|
|
14795
|
+
_context208.t4 = _context208.sent;
|
|
14796
|
+
_context208.t5 = {
|
|
14797
|
+
urlParams: _context208.t1,
|
|
14798
|
+
body: _context208.t2,
|
|
14799
|
+
headers: _context208.t3,
|
|
14800
|
+
baseURL: _context208.t4
|
|
14801
|
+
};
|
|
14802
|
+
return _context208.abrupt("return", _context208.t0.updateValuationNewsStatusRequest.call(_context208.t0, _context208.t5));
|
|
14803
|
+
|
|
14804
|
+
case 9:
|
|
14805
|
+
case "end":
|
|
14806
|
+
return _context208.stop();
|
|
14807
|
+
}
|
|
14808
|
+
}
|
|
14809
|
+
}, _callee208);
|
|
14810
|
+
}));
|
|
14811
|
+
|
|
14812
|
+
return function (_x459, _x460, _x461) {
|
|
14813
|
+
return _ref208.apply(this, arguments);
|
|
14814
|
+
};
|
|
14815
|
+
}();
|
|
14636
14816
|
};
|
|
14637
14817
|
|
|
14638
14818
|
var index = {
|
|
@@ -14745,6 +14925,8 @@ var index = {
|
|
|
14745
14925
|
findPublishedExpertsRequest: findPublishedExpertsRequest,
|
|
14746
14926
|
updateExpertCaseRequest: updateExpertCaseRequest,
|
|
14747
14927
|
updateExpertReviewRequest: updateExpertReviewRequest,
|
|
14928
|
+
findExpertCategoriesRequest: findExpertCategoriesRequest,
|
|
14929
|
+
findExpertCategoryHistoryRequest: findExpertCategoryHistoryRequest,
|
|
14748
14930
|
uploadFilesRequest: uploadFilesRequest,
|
|
14749
14931
|
createIncomeRequest: createIncomeRequest,
|
|
14750
14932
|
deleteIncomeRequest: deleteIncomeRequest,
|
|
@@ -14860,6 +15042,7 @@ var index = {
|
|
|
14860
15042
|
DealCategorizedFileDictionary: DealCategorizedFileDictionary,
|
|
14861
15043
|
DealParticipantDictionary: DealParticipantDictionary,
|
|
14862
15044
|
DebtDictionary: DebtDictionary,
|
|
15045
|
+
ExpertCategoryDictionary: ExpertCategoryDictionary,
|
|
14863
15046
|
FileDictionary: FileDictionary,
|
|
14864
15047
|
GalleryImageDictionary: GalleryImageDictionary,
|
|
14865
15048
|
LeadAssignmentBlockDictionary: LeadAssignmentBlockDictionary,
|
|
@@ -14916,6 +15099,8 @@ var index = {
|
|
|
14916
15099
|
get DealParticipantSide () { return DealParticipantSide; },
|
|
14917
15100
|
get DealParticipantPosition () { return DealParticipantPosition; },
|
|
14918
15101
|
get DebtPaymentType () { return DebtPaymentType; },
|
|
15102
|
+
get ExpertCategoryExpertType () { return ExpertCategoryExpertType; },
|
|
15103
|
+
get ExpertCategoryCategory () { return ExpertCategoryCategory; },
|
|
14919
15104
|
get FileType () { return FileType; },
|
|
14920
15105
|
get FileCategory () { return FileCategory; },
|
|
14921
15106
|
get GalleryImageType () { return GalleryImageType; },
|