initial commit

This commit is contained in:
equippedcoding-master
2025-09-17 09:37:06 -05:00
parent 86108ca47e
commit e2c98790b2
55389 changed files with 6206730 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
{
"_meta": {
"template_version": 0
},
"fixtures": [
{
"name": "pro_basic",
"path": "/v1/products",
"method": "post",
"params": {
"name": "Professional"
}
},
{
"name": "pro_basic_price",
"path": "/v1/prices",
"method": "post",
"params": {
"product": "${pro_basic:id}",
"lookup_key": "pro_basic_v1",
"currency": "usd",
"unit_amount": 2500,
"recurring": {
"interval": "month"
},
"metadata": {
"sample": "fixed-price"
}
}
},
{
"name": "organization",
"path": "/v1/products",
"method": "post",
"params": {
"name": "Organization"
}
},
{
"name": "organization_price",
"path": "/v1/prices",
"method": "post",
"params": {
"product": "${organization:id}",
"lookup_key": "organization_v1",
"currency": "usd",
"unit_amount": 5000,
"recurring": {
"interval": "month"
},
"metadata": {
"sample": "fixed-price"
}
}
},
{
"name": "enterprise",
"path": "/v1/products",
"method": "post",
"params": {
"name": "Enterprise"
}
},
{
"name": "enterprise_price",
"path": "/v1/prices",
"method": "post",
"params": {
"product": "${enterprise:id}",
"lookup_key": "enterprise_v1",
"currency": "usd",
"unit_amount": 19900,
"recurring": {
"interval": "month"
},
"metadata": {
"sample": "fixed-price"
}
}
}
]
}