@nextsparkjs/theme-crm 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
|
@@ -103,8 +103,7 @@ export const billingConfig: BillingConfig = {
|
|
|
103
103
|
api_calls: 1000,
|
|
104
104
|
storage_gb: 1,
|
|
105
105
|
},
|
|
106
|
-
|
|
107
|
-
stripePriceIdYearly: null,
|
|
106
|
+
providerPriceIds: { monthly: null, yearly: null },
|
|
108
107
|
},
|
|
109
108
|
{
|
|
110
109
|
slug: 'pro',
|
|
@@ -132,9 +131,8 @@ export const billingConfig: BillingConfig = {
|
|
|
132
131
|
api_calls: 100000,
|
|
133
132
|
storage_gb: 25,
|
|
134
133
|
},
|
|
135
|
-
// Configure
|
|
136
|
-
|
|
137
|
-
stripePriceIdYearly: 'price_crm_pro_yearly',
|
|
134
|
+
// Configure price IDs in your payment provider dashboard
|
|
135
|
+
providerPriceIds: { monthly: 'price_crm_pro_monthly', yearly: 'price_crm_pro_yearly' },
|
|
138
136
|
},
|
|
139
137
|
{
|
|
140
138
|
slug: 'enterprise',
|
|
@@ -152,8 +150,7 @@ export const billingConfig: BillingConfig = {
|
|
|
152
150
|
api_calls: -1,
|
|
153
151
|
storage_gb: -1,
|
|
154
152
|
},
|
|
155
|
-
|
|
156
|
-
stripePriceIdYearly: null,
|
|
153
|
+
providerPriceIds: { monthly: null, yearly: null },
|
|
157
154
|
},
|
|
158
155
|
],
|
|
159
156
|
|