@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 +1 -1
- package/dist/shop.d.ts +2 -0
- package/package.json +1 -1
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' | '
|
|
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[];
|