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