From e57e4306276bd7c51dee0f7b8cc7ae9b002bdc90 Mon Sep 17 00:00:00 2001 From: Nikita Date: Wed, 20 Sep 2023 15:52:08 +0300 Subject: [PATCH] eslint fix --- src/api/market.js | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/api/market.js b/src/api/market.js index 53c6a2b..1074af8 100644 --- a/src/api/market.js +++ b/src/api/market.js @@ -288,12 +288,6 @@ export class LZTApiMarketGroup extends LZTApiGroup { return await this.caller.call('GET', `/${categoryName}/games/`) } - async fastBuy({ itemId, price, skipValidation } = {}) { - return await this.caller.call('POST', `/${itemId}/fast-buy`, { - buy_without_validation: skipValidation ? 1 : 0, - price - }) - } async bumpItem({ itemId } = {}) { return await this.caller.call('POST', `/${itemId}/bump/`) @@ -307,13 +301,7 @@ export class LZTApiMarketGroup extends LZTApiGroup { return await this.caller.call('GET', `/me/`) } - async editMe({ disableSteamGuard, - userAllowAskDiscount, - maxDiscountPercent, - allowAcceptAccounts, - hideFavorites, - vkUa - } = {}) { + async editMe({ disableSteamGuard, userAllowAskDiscount, maxDiscountPercent, allowAcceptAccounts, hideFavorites, vkUa } = {}) { return await this.caller.call('PUT', `/me/`, { disable_steam_guard: disableSteamGuard, user_allow_ask_discount: userAllowAskDiscount,