chatgpt-api/packages/fixtures/invalid/pricing-custom-inconsistent/agentic.config.ts

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
}
]
}
]
})