@footballbingo/client 5.21.0 → 5.23.0
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/types.gen.d.ts +4 -3
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5532,15 +5532,16 @@ export type ActiveBoostsResponse = {
|
|
|
5532
5532
|
};
|
|
5533
5533
|
export type StoreCatalogItem = {
|
|
5534
5534
|
sku: string;
|
|
5535
|
-
category: 'feature_unlock' | 'coin_pack' | 'bundle';
|
|
5535
|
+
category: 'feature_unlock' | 'coin_pack' | 'bundle' | 'boost' | 'subscription';
|
|
5536
5536
|
name: string;
|
|
5537
5537
|
description: string;
|
|
5538
|
-
|
|
5538
|
+
priceUsdCents?: number;
|
|
5539
5539
|
coinsGranted?: number;
|
|
5540
5540
|
featuresUnlocked?: Array<string>;
|
|
5541
5541
|
badge?: string;
|
|
5542
5542
|
featured?: boolean;
|
|
5543
5543
|
order: number;
|
|
5544
|
+
billingPeriod?: 'month' | 'year';
|
|
5544
5545
|
};
|
|
5545
5546
|
export type StoreCatalogResponse = {
|
|
5546
5547
|
items: Array<StoreCatalogItem>;
|
|
@@ -8358,7 +8359,7 @@ export type DeleteCosmeticResponse = {
|
|
|
8358
8359
|
};
|
|
8359
8360
|
export type PurchaseSubscriptionInput = {
|
|
8360
8361
|
platform: 'ios' | 'android' | 'web';
|
|
8361
|
-
productId: 'boost_2x_24h' | '
|
|
8362
|
+
productId: 'boost_2x_24h' | 'coins_500' | 'coins_1500' | 'coins_5000' | 'coins_12000' | 'coins_30000' | 'ad_free_monthly' | 'ad_free_yearly' | 'newcomer_pack' | 'founders_pack_v1';
|
|
8362
8363
|
receipt?: string;
|
|
8363
8364
|
purchaseToken?: string;
|
|
8364
8365
|
sessionId?: string;
|