@nextsparkjs/theme-blog 0.1.0-beta.127 → 0.1.0-beta.129

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.
@@ -79,8 +79,7 @@ export const billingConfig: BillingConfig = {
79
79
  storage_gb: 1,
80
80
  authors: 1,
81
81
  },
82
- stripePriceIdMonthly: null,
83
- stripePriceIdYearly: null,
82
+ providerPriceIds: { monthly: null, yearly: null },
84
83
  },
85
84
  {
86
85
  slug: 'pro',
@@ -100,9 +99,8 @@ export const billingConfig: BillingConfig = {
100
99
  storage_gb: 10,
101
100
  authors: 5,
102
101
  },
103
- // Configure these in Stripe Dashboard
104
- stripePriceIdMonthly: 'price_blog_pro_monthly',
105
- stripePriceIdYearly: 'price_blog_pro_yearly',
102
+ // Configure price IDs in your payment provider dashboard
103
+ providerPriceIds: { monthly: 'price_blog_pro_monthly', yearly: 'price_blog_pro_yearly' },
106
104
  },
107
105
  {
108
106
  slug: 'enterprise',
@@ -118,8 +116,7 @@ export const billingConfig: BillingConfig = {
118
116
  storage_gb: -1,
119
117
  authors: -1,
120
118
  },
121
- stripePriceIdMonthly: null,
122
- stripePriceIdYearly: null,
119
+ providerPriceIds: { monthly: null, yearly: null },
123
120
  },
124
121
  ],
125
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/theme-blog",
3
- "version": "0.1.0-beta.127",
3
+ "version": "0.1.0-beta.129",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./config/theme.config.ts",