@simonarcher/fika-types 1.0.89 → 1.0.91
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 +6 -0
- package/package.json +1 -1
package/dist/shop.d.ts
CHANGED
|
@@ -235,6 +235,7 @@ export type ShopData = {
|
|
|
235
235
|
brewMethods?: string[];
|
|
236
236
|
menuKeywords?: string[];
|
|
237
237
|
hasBrewBar?: boolean;
|
|
238
|
+
hasSingleOriginEspresso?: boolean;
|
|
238
239
|
brewBarDescription?: string;
|
|
239
240
|
servesPlantBasedMilk?: boolean;
|
|
240
241
|
decafOptions?: boolean;
|
|
@@ -475,6 +476,7 @@ export interface RoastingAndBeansInfo {
|
|
|
475
476
|
}
|
|
476
477
|
export interface PublicShopData extends Omit<ShopData, 'analytics' | 'googleRating' | 'contactDetails' | 'placeId'> {
|
|
477
478
|
hasBrewBar?: boolean;
|
|
479
|
+
hasSingleOriginEspresso?: boolean;
|
|
478
480
|
brewBarDescription?: string;
|
|
479
481
|
menu: MenuItem[];
|
|
480
482
|
staffMembers: StaffMember[];
|
|
@@ -507,6 +509,9 @@ export type SpecialtyMeta = {
|
|
|
507
509
|
tier?: SpecialtyTier;
|
|
508
510
|
verified?: boolean;
|
|
509
511
|
override?: SpecialtyOverride | null;
|
|
512
|
+
componentOverrides?: {
|
|
513
|
+
semanticScore?: number;
|
|
514
|
+
};
|
|
510
515
|
explanations?: string[];
|
|
511
516
|
updatedAt?: number;
|
|
512
517
|
};
|
|
@@ -628,6 +633,7 @@ export interface PostShopReviewData {
|
|
|
628
633
|
* Whether the shop has a brew bar.
|
|
629
634
|
*/
|
|
630
635
|
hasBrewBar?: boolean;
|
|
636
|
+
hasSingleOriginEspresso?: boolean;
|
|
631
637
|
brewBarDescription?: string;
|
|
632
638
|
/**
|
|
633
639
|
* Roasters observed or confirmed at the shop.
|