From 5101e436bd2acfb6efdffe5c8c723511ab735153 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 17 May 2022 17:43:30 +0000 Subject: improve auctions api --- src/database.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/database.ts') diff --git a/src/database.ts b/src/database.ts index 8f63d97..3aafd05 100644 --- a/src/database.ts +++ b/src/database.ts @@ -126,8 +126,8 @@ export interface SimpleAuctionSchema { * since we don't need to be super exact and so it's shorter. */ ts: number - /** Whether the auction was bought or simply expired. */ - success: boolean + /** Whether the auction was successfully bought or simply expired. */ + s: boolean bin: boolean } export interface ItemAuctionsSchema { -- cgit