From 5168b8d816354ac8ffd8b63e87e837dba7246ba2 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..46f0603b7 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;