Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EveryDayRains committed Sep 20, 2023
1 parent d5831de commit e57e430
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/api/market.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/`)
Expand All @@ -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,
Expand Down

0 comments on commit e57e430

Please sign in to comment.