@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.
@@ -103,8 +103,7 @@ export const billingConfig: BillingConfig = {
103
103
  api_calls: 1000,
104
104
  storage_gb: 1,
105
105
  },
106
- stripePriceIdMonthly: null,
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 these in Stripe Dashboard
136
- stripePriceIdMonthly: 'price_crm_pro_monthly',
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
- stripePriceIdMonthly: null,
156
- stripePriceIdYearly: null,
153
+ providerPriceIds: { monthly: null, yearly: null },
157
154
  },
158
155
  ],
159
156
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/theme-crm",
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",