@simonarcher/fika-types 1.0.3 → 1.0.4

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.
Files changed (2) hide show
  1. package/dist/shop.d.ts +16 -0
  2. package/package.json +1 -1
package/dist/shop.d.ts CHANGED
@@ -110,8 +110,11 @@ export type ShopData = {
110
110
  hasPlatformLoyaltyRewards?: boolean;
111
111
  stampsRequired?: number;
112
112
  };
113
+ staffMembers?: StaffMember[];
114
+ roastingAndBeansInfo?: RoastingAndBeansInfo;
113
115
  info?: ShopInfo;
114
116
  socials?: SocialMedia;
117
+ menu?: MenuItem[];
115
118
  location?: {
116
119
  latitude: number;
117
120
  longitude: number;
@@ -301,4 +304,17 @@ export interface LoyaltyStamp {
301
304
  valid: boolean;
302
305
  voucherId?: string;
303
306
  }
307
+ export interface RoastingAndBeansInfo {
308
+ roasters?: string[];
309
+ hasDecaf?: boolean;
310
+ decafMethods?: DecafMethod[];
311
+ flavourNotes?: string[];
312
+ coffeeBeans?: string[];
313
+ coffeeOriginCountries?: string[];
314
+ processingMethods?: CoffeeProcessingMethod[];
315
+ roastLevels?: RoastLevel[];
316
+ singleOrigin?: boolean;
317
+ directTrade?: boolean;
318
+ seasonal?: boolean;
319
+ }
304
320
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonarcher/fika-types",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Shared TypeScript types for Fika projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",