kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
32 wiersze
598 B
TypeScript
32 wiersze
598 B
TypeScript
import { defineConfig } from '@agentic/platform-schemas'
|
|
|
|
export default defineConfig({
|
|
name: 'test-pricing-custom-inconsistent',
|
|
originUrl: 'https://httpbin.org',
|
|
pricingPlans: [
|
|
{
|
|
name: 'Free',
|
|
slug: 'free',
|
|
lineItems: [
|
|
{
|
|
slug: 'custom',
|
|
usageType: 'licensed',
|
|
amount: 0
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Starter',
|
|
slug: 'starter',
|
|
lineItems: [
|
|
{
|
|
slug: 'custom',
|
|
usageType: 'metered',
|
|
billingScheme: 'per_unit',
|
|
unitAmount: 100
|
|
}
|
|
]
|
|
}
|
|
]
|
|
})
|