@simonarcher/fika-types 1.0.29 → 1.0.31
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 +12 -1
- 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?: {
|
|
@@ -191,13 +192,23 @@ export interface ShopContactDetails {
|
|
|
191
192
|
updatedAt?: Date;
|
|
192
193
|
}
|
|
193
194
|
export type ShopFeatureKey = 'powerOutlets' | 'laptopFriendly' | 'outdoorSeating' | 'indoorSeating' | 'accessibility' | 'alcohol' | 'breakfast' | 'lunch' | 'vegetarian' | 'petFriendly' | 'restrooms' | 'parking' | 'wifi' | 'acceptsCash' | 'acceptsCreditCards' | 'acceptsNfc' | 'discountOnReusableCup' | 'glutenFree' | 'loyaltyCard' | 'takeaway' | 'delivery';
|
|
194
|
-
export type ShopSpecialtyKey = 'pourOverSpecialty' | 'espressoExpert' | 'singleOriginFocus' | 'localRoaster' | 'brewingEducation' | 'cuppingEvents' | 'relaxingVibes' | 'bustlingEnergy' | 'quietStudySpace' | 'uniqueExperience' | 'instagramWorthy' | 'cozyAmbiance' | 'freshPastries' | 'homemadeTreats' | 'artisanBread' | 'localBakery' | 'healthyOptions' | 'dessertDestination' | 'lgbtqFriendly' | 'womenOwned' | 'familyOwned' | 'communityHub' | 'sociallyConscious' | 'localArtSupport' | 'liveMusic' | 'localArt' | 'bookExchange' | 'boardGames' | 'culturalEvents' | 'workshopSpace' | 'laptopFriendlyPro' | 'meetingSpaceAvailable' | 'quietZones' | 'fastWifi' | 'longStayWelcome' | 'coworkingVibes';
|
|
195
|
+
export type ShopSpecialtyKey = 'pourOverSpecialty' | 'espressoExpert' | 'singleOriginFocus' | 'localRoaster' | 'brewingEducation' | 'cuppingEvents' | 'matchaSpecialty' | 'decafSpecialty' | 'relaxingVibes' | 'bustlingEnergy' | 'quietStudySpace' | 'uniqueExperience' | 'instagramWorthy' | 'cozyAmbiance' | 'freshPastries' | 'homemadeTreats' | 'artisanBread' | 'localBakery' | 'healthyOptions' | 'dessertDestination' | 'lgbtqFriendly' | 'womenOwned' | 'familyOwned' | 'communityHub' | 'sociallyConscious' | 'localArtSupport' | 'liveMusic' | 'localArt' | 'bookExchange' | 'boardGames' | 'culturalEvents' | 'workshopSpace' | 'laptopFriendlyPro' | 'meetingSpaceAvailable' | 'quietZones' | 'fastWifi' | 'longStayWelcome' | 'coworkingVibes';
|
|
195
196
|
export type SpecialtyCategoryKey = 'Coffee Excellence' | 'Atmosphere' | 'Food & Treats' | 'Community & Values' | 'Entertainment' | 'Work & Study';
|
|
196
197
|
export interface ShopSpecialties {
|
|
197
198
|
highlighted: ShopSpecialtyKey[];
|
|
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';
|
|
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';
|
|
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;
|