change: wip testing price from sheet
Signed-off-by: pakintada@gmail.com <Pakin>
This commit is contained in:
parent
3b70cc9fe8
commit
07977ce896
9 changed files with 268 additions and 18 deletions
|
|
@ -23,6 +23,17 @@ export const recipeOverviewData = writable<RecipeOverview[] | null>(null);
|
|||
export const materialData = writable<Material | undefined>();
|
||||
// price from recipe repo
|
||||
export const priceRecipeData = writable<{ [key: string]: any }>({});
|
||||
export const lastRequestSheetPrice = writable<{ [key: string]: any }>({});
|
||||
|
||||
// Streaming raw
|
||||
export const streamingRawData = writable<{ [key: string]: any }>({});
|
||||
export const streamingRawMeta = writable<{
|
||||
id: string;
|
||||
total_size: number;
|
||||
chunk_size: number;
|
||||
progress: number;
|
||||
country?: string;
|
||||
} | null>(null);
|
||||
|
||||
// machine recipe
|
||||
export const recipeFromMachine = writable<any>(null);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue