fix: Update Stripe ID's

This commit is contained in:
Eric Gullickson
2026-02-16 15:28:05 -06:00
parent ddae397cb3
commit bc0be75957
3 changed files with 25 additions and 15 deletions

View File

@@ -67,10 +67,10 @@ services:
#STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: prod_Toj8xGEui9jl6j #STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: prod_Toj8xGEui9jl6j
#STRIPE_ENTERPRISE_YEARLY_PRICE_ID: prod_Toj9A7A773xrdn #STRIPE_ENTERPRISE_YEARLY_PRICE_ID: prod_Toj9A7A773xrdn
# Sandbox Variables # Sandbox Variables
STRIPE_PRO_MONTHLY_PRICE_ID: prod_TzGPZ13at4CGB5 STRIPE_PRO_MONTHLY_PRICE_ID: price_1T1ZHMJXoKkh5RcKwKSSGIlR
STRIPE_PRO_YEARLY_PRICE_ID: prod_TzGODNOSOwWGFt STRIPE_PRO_YEARLY_PRICE_ID: price_1T1ZHnJXoKkh5RcKWlG2MPpX
STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: prod_TzGO76gcuP9XI3 STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: price_1T1ZIBJXoKkh5RcKu2jyhqBN
STRIPE_ENTERPRISE_YEARLY_PRICE_ID: prod_TzGM2nhayo7kc7 STRIPE_ENTERPRISE_YEARLY_PRICE_ID: price_1T1ZIQJXoKkh5RcK34YXiJQm
volumes: volumes:
- ./config/app/production.yml:/app/config/production.yml:ro - ./config/app/production.yml:/app/config/production.yml:ro
- ./config/shared/production.yml:/app/config/shared.yml:ro - ./config/shared/production.yml:/app/config/shared.yml:ro

View File

@@ -42,10 +42,10 @@ services:
#STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: prod_Toj8xGEui9jl6j #STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: prod_Toj8xGEui9jl6j
#STRIPE_ENTERPRISE_YEARLY_PRICE_ID: prod_Toj9A7A773xrdn #STRIPE_ENTERPRISE_YEARLY_PRICE_ID: prod_Toj9A7A773xrdn
# Sandbox Variables # Sandbox Variables
STRIPE_PRO_MONTHLY_PRICE_ID: prod_TzGPZ13at4CGB5 STRIPE_PRO_MONTHLY_PRICE_ID: price_1T1ZHMJXoKkh5RcKwKSSGIlR
STRIPE_PRO_YEARLY_PRICE_ID: prod_TzGODNOSOwWGFt STRIPE_PRO_YEARLY_PRICE_ID: price_1T1ZHnJXoKkh5RcKWlG2MPpX
STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: prod_TzGO76gcuP9XI3 STRIPE_ENTERPRISE_MONTHLY_PRICE_ID: price_1T1ZIBJXoKkh5RcKu2jyhqBN
STRIPE_ENTERPRISE_YEARLY_PRICE_ID: prod_TzGM2nhayo7kc7 STRIPE_ENTERPRISE_YEARLY_PRICE_ID: price_1T1ZIQJXoKkh5RcK34YXiJQm
# OCR - Production log level + engine config # OCR - Production log level + engine config
mvp-ocr: mvp-ocr:

View File

@@ -1,21 +1,31 @@
{ {
"testModules": [ "testModules": [
{ {
"moduleId": "/Users/egullickson/Documents/Technology/coding/motovaultpro/frontend/src/features/dashboard/components/__tests__/ActionBar.test.tsx", "moduleId": "/Users/egullickson/Documents/Technology/coding/motovaultpro/frontend/src/features/admin/__tests__/useAdmins.test.tsx",
"tests": [ "tests": [
{ {
"name": "renders both buttons with correct text", "name": "should fetch admin users",
"fullName": "ActionBar renders both buttons with correct text", "fullName": "Admin user management hooks useAdmins should fetch admin users",
"state": "passed" "state": "passed"
}, },
{ {
"name": "calls onAddVehicle when Add Vehicle button clicked", "name": "should create admin and show success toast",
"fullName": "ActionBar calls onAddVehicle when Add Vehicle button clicked", "fullName": "Admin user management hooks useCreateAdmin should create admin and show success toast",
"state": "passed" "state": "passed"
}, },
{ {
"name": "calls onLogFuel when Add Fuel Log button clicked", "name": "should handle create admin error",
"fullName": "ActionBar calls onLogFuel when Add Fuel Log button clicked", "fullName": "Admin user management hooks useCreateAdmin should handle create admin error",
"state": "passed"
},
{
"name": "should revoke admin and show success toast",
"fullName": "Admin user management hooks useRevokeAdmin should revoke admin and show success toast",
"state": "passed"
},
{
"name": "should reinstate admin and show success toast",
"fullName": "Admin user management hooks useReinstateAdmin should reinstate admin and show success toast",
"state": "passed" "state": "passed"
} }
] ]