mirror of
https://github.com/langgenius/dify.git
synced 2026-05-26 04:00:39 -04:00
20 lines
606 B
TypeScript
20 lines
606 B
TypeScript
import type { CurrentPlanInfoBackend, SubscriptionUrlsBackend } from '@/app/components/billing/type'
|
|
import { get } from './base'
|
|
|
|
export type CurrentPlanVectorSpaceBackend = {
|
|
size: number
|
|
limit: number
|
|
}
|
|
|
|
export const fetchCurrentPlanInfo = () => {
|
|
return get<CurrentPlanInfoBackend>('/features')
|
|
}
|
|
|
|
export const fetchCurrentPlanVectorSpace = () => {
|
|
return get<CurrentPlanVectorSpaceBackend>('/features/vector-space')
|
|
}
|
|
|
|
export const fetchSubscriptionUrls = (plan: string, interval: string) => {
|
|
return get<SubscriptionUrlsBackend>(`/billing/subscription?plan=${plan}&interval=${interval}`)
|
|
}
|