@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.
- package/config/billing.config.ts +4 -7
- package/package.json +1 -1
package/config/billing.config.ts
CHANGED
|
@@ -79,8 +79,7 @@ export const billingConfig: BillingConfig = {
|
|
|
79
79
|
storage_gb: 1,
|
|
80
80
|
authors: 1,
|
|
81
81
|
},
|
|
82
|
-
|
|
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
|
|
104
|
-
|
|
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
|
-
|
|
122
|
-
stripePriceIdYearly: null,
|
|
119
|
+
providerPriceIds: { monthly: null, yearly: null },
|
|
123
120
|
},
|
|
124
121
|
],
|
|
125
122
|
|