@simonarcher/fika-types 1.0.59 → 1.0.61

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/quest.d.ts CHANGED
@@ -33,7 +33,7 @@ export interface QuestAction {
33
33
  metadata?: any;
34
34
  }
35
35
  export interface QuestReward {
36
- type: 'points' | 'badge' | 'coupon' | 'shopify_coupon' | 'fika_voucher' | 'third_party_coupon';
36
+ type: 'points' | 'badge' | 'shopify_coupon' | 'fika_coffee_voucher' | 'third_party_coupon';
37
37
  value: number | string;
38
38
  metadata?: any;
39
39
  }
package/dist/shop.d.ts CHANGED
@@ -189,6 +189,7 @@ export type ShopData = {
189
189
  placeId?: string;
190
190
  communityStats?: ShopCommunityStats;
191
191
  spotifyPlaylistId?: string;
192
+ paymentOptions?: ShopPaymentOptions;
192
193
  };
193
194
  export interface ShopCommunityStats {
194
195
  totalCheckIns: number;
@@ -287,6 +288,7 @@ export interface DayOpeningHours {
287
288
  export interface FullShopData extends ShopData {
288
289
  staff: StaffMember[];
289
290
  roastingAndBeansInfo?: RoastingAndBeansInfo;
291
+ paymentOptions?: ShopPaymentOptions;
290
292
  }
291
293
  export interface RoastingAndBeansInfo {
292
294
  roasters?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simonarcher/fika-types",
3
- "version": "1.0.59",
3
+ "version": "1.0.61",
4
4
  "description": "Shared TypeScript types for Fika projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",