2023-12-03 22:10:16 +08:00
|
|
|
import { get } from './base'
|
|
|
|
import type { CurrentPlanInfoBackend, SubscriptionUrlsBackend } from '@/app/components/billing/type'
|
|
|
|
|
|
|
|
export const fetchCurrentPlanInfo = () => {
|
2023-12-20 15:37:57 +08:00
|
|
|
return get<Promise<CurrentPlanInfoBackend>>('/features')
|
2023-12-03 22:10:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchSubscriptionUrls = (plan: string, interval: string) => {
|
|
|
|
return get<Promise<SubscriptionUrlsBackend>>(`/billing/subscription?plan=${plan}&interval=${interval}`)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const fetchBillingUrl = () => {
|
|
|
|
return get<Promise<{ url: string }>>('/billing/invoices')
|
|
|
|
}
|