@simonarcher/fika-types 1.0.30 → 1.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/shop.d.ts +11 -0
- package/package.json +1 -1
package/dist/shop.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export type ShopData = {
|
|
|
115
115
|
roastingAndBeansInfo?: RoastingAndBeansInfo;
|
|
116
116
|
info?: ShopInfo;
|
|
117
117
|
specialties?: ShopSpecialties;
|
|
118
|
+
coffeeBrewingMethods?: ShopCoffeeBrewingMethods;
|
|
118
119
|
socials?: SocialMedia;
|
|
119
120
|
menu?: MenuItem[];
|
|
120
121
|
location?: {
|
|
@@ -198,6 +199,16 @@ export interface ShopSpecialties {
|
|
|
198
199
|
additional: ShopSpecialtyKey[];
|
|
199
200
|
customSpecialty?: string;
|
|
200
201
|
}
|
|
202
|
+
export type CoffeeBrewingCategoryKey = 'Espresso-Based' | 'Pour-Over' | 'Immersion' | 'Cold & Iced' | 'Regional & Traditional' | 'Batch Brew / Commercial' | 'Tea & Non-Coffee';
|
|
203
|
+
export type CoffeeBrewingMethodKey = 'espresso' | 'ristretto' | 'lungo' | 'americano' | 'macchiato' | 'cortado' | 'flatWhite' | 'cappuccino' | 'latte' | 'mocha' | 'v60' | 'kalitaWave' | 'chemex' | 'origamiDripper' | 'melitta' | 'clothDrip' | 'frenchPress' | 'aeropress' | 'cleverDripper' | 'siphon' | 'turkishCoffee' | 'coldBrew' | 'japaneseIcedCoffee' | 'nitroColdBrew' | 'flashBrew' | 'mokaPot' | 'vietnamesePhin' | 'cafeDeOlla' | 'cafeCubano' | 'ethiopianCeremony' | 'batchBrew' | 'percolator' | 'specialtyInstant' | 'matcha' | 'matchaLatte' | 'looseleafTea' | 'teaBags' | 'chaiTea' | 'herbalTea' | 'icedTea' | 'bubbleTea' | 'kombucha';
|
|
204
|
+
export interface CoffeeBrewingMethod {
|
|
205
|
+
name: string;
|
|
206
|
+
description: string;
|
|
207
|
+
category: CoffeeBrewingCategoryKey;
|
|
208
|
+
}
|
|
209
|
+
export interface ShopCoffeeBrewingMethods {
|
|
210
|
+
methods: CoffeeBrewingMethodKey[];
|
|
211
|
+
}
|
|
201
212
|
export interface SpecialtyConfig {
|
|
202
213
|
label: string;
|
|
203
214
|
description: string;
|