From b31f5c7909a80f195d95c456c9d85f8cadce31a1 Mon Sep 17 00:00:00 2001 From: purrsong-chong Date: Wed, 23 Oct 2024 10:41:36 +0900 Subject: [PATCH] fix: missing type 'name' in ProductAndroid --- src/types/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/index.ts b/src/types/index.ts index fd9dd9b37..c05ca6958 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -124,6 +124,7 @@ export interface Discount { export interface ProductAndroid extends ProductCommon { type: 'inapp' | 'iap'; + name: string; oneTimePurchaseOfferDetails?: { priceCurrencyCode: string; formattedPrice: string;