@@ -976,8 +976,8 @@ public protocol QueryResolver {
976976 func getPromotedProductIOS( ) async throws -> ProductIOS ?
977977 /// Get base64-encoded receipt data for validation
978978 func getReceiptDataIOS( ) async throws -> String ?
979- /// Get the current Play Store storefront country code
980- func getStorefrontAndroid ( ) async throws -> String
979+ /// Get the current storefront country code
980+ func getStorefront ( ) async throws -> String
981981 /// Get the current App Store storefront country code
982982 func getStorefrontIOS( ) async throws -> String
983983 /// Get the transaction JWS (StoreKit 2)
@@ -1088,7 +1088,7 @@ public typealias QueryGetAvailablePurchasesHandler = (_ options: PurchaseOptions
10881088public typealias QueryGetPendingTransactionsIOSHandler = ( ) async throws -> [ PurchaseIOS ]
10891089public typealias QueryGetPromotedProductIOSHandler = ( ) async throws -> ProductIOS ?
10901090public typealias QueryGetReceiptDataIOSHandler = ( ) async throws -> String ?
1091- public typealias QueryGetStorefrontAndroidHandler = ( ) async throws -> String
1091+ public typealias QueryGetStorefrontHandler = ( ) async throws -> String
10921092public typealias QueryGetStorefrontIOSHandler = ( ) async throws -> String
10931093public typealias QueryGetTransactionJwsIOSHandler = ( _ sku: String ) async throws -> String ?
10941094public typealias QueryHasActiveSubscriptionsHandler = ( _ subscriptionIds: [ String ] ? ) async throws -> Bool
@@ -1107,7 +1107,7 @@ public struct QueryHandlers {
11071107 public var getPendingTransactionsIOS : QueryGetPendingTransactionsIOSHandler ?
11081108 public var getPromotedProductIOS : QueryGetPromotedProductIOSHandler ?
11091109 public var getReceiptDataIOS : QueryGetReceiptDataIOSHandler ?
1110- public var getStorefrontAndroid : QueryGetStorefrontAndroidHandler ?
1110+ public var getStorefront : QueryGetStorefrontHandler ?
11111111 public var getStorefrontIOS : QueryGetStorefrontIOSHandler ?
11121112 public var getTransactionJwsIOS : QueryGetTransactionJwsIOSHandler ?
11131113 public var hasActiveSubscriptions : QueryHasActiveSubscriptionsHandler ?
@@ -1126,7 +1126,7 @@ public struct QueryHandlers {
11261126 getPendingTransactionsIOS: QueryGetPendingTransactionsIOSHandler ? = nil ,
11271127 getPromotedProductIOS: QueryGetPromotedProductIOSHandler ? = nil ,
11281128 getReceiptDataIOS: QueryGetReceiptDataIOSHandler ? = nil ,
1129- getStorefrontAndroid : QueryGetStorefrontAndroidHandler ? = nil ,
1129+ getStorefront : QueryGetStorefrontHandler ? = nil ,
11301130 getStorefrontIOS: QueryGetStorefrontIOSHandler ? = nil ,
11311131 getTransactionJwsIOS: QueryGetTransactionJwsIOSHandler ? = nil ,
11321132 hasActiveSubscriptions: QueryHasActiveSubscriptionsHandler ? = nil ,
@@ -1144,7 +1144,7 @@ public struct QueryHandlers {
11441144 self . getPendingTransactionsIOS = getPendingTransactionsIOS
11451145 self . getPromotedProductIOS = getPromotedProductIOS
11461146 self . getReceiptDataIOS = getReceiptDataIOS
1147- self . getStorefrontAndroid = getStorefrontAndroid
1147+ self . getStorefront = getStorefront
11481148 self . getStorefrontIOS = getStorefrontIOS
11491149 self . getTransactionJwsIOS = getTransactionJwsIOS
11501150 self . hasActiveSubscriptions = hasActiveSubscriptions
0 commit comments