fetch item prices - throttle end points with promise queue

This commit is contained in:
2018-08-28 21:45:46 -05:00
parent 97acc0d4fa
commit 7ca8606284
17 changed files with 241 additions and 64 deletions

14
app/model/item-price.ts Normal file
View File

@@ -0,0 +1,14 @@
export interface IItemPrice {
currency_rec: string;
data: any;
error: number;
item_base: string;
max_price: string;
median_price: string;
min_price: string;
name: string;
pred_explanation: any[];
recommendedPrice: string;
resultsCounted: number;
status: number;
}