/* Copyright (C) 2023-2026 QuantumNous This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . For commercial licensing, please contact support@quantumnous.com */ import { api } from '@/lib/api' import type { ConfirmPaymentComplianceResponse, FetchUpstreamRatiosRequest, LogCleanupTask, SystemOptionsResponse, SystemTaskListResponse, SystemTaskResponse, UpdateOptionRequest, UpdateOptionResponse, UpstreamChannelsResponse, UpstreamRatiosResponse, } from './types' export async function getSystemOptions() { const res = await api.get('/api/option/') return res.data } export async function updateSystemOption(request: UpdateOptionRequest) { const res = await api.put('/api/option/', request) return res.data } export async function confirmPaymentCompliance() { const res = await api.post( '/api/option/payment_compliance', { confirmed: true } ) return res.data } export async function startLogCleanupTask(targetTimestamp: number) { const res = await api.post>( '/api/system-task/log-cleanup', null, { params: { target_timestamp: targetTimestamp }, } ) return res.data } export async function getCurrentLogCleanupTask() { const res = await api.get>( '/api/system-task/current', { params: { type: 'log_cleanup' }, } ) return res.data } export async function getSystemTask(taskId: string) { const res = await api.get>( `/api/system-task/${taskId}` ) return res.data } export async function listSystemTasks(limit = 20) { const res = await api.get('/api/system-task/list', { params: { limit }, }) return res.data } export async function resetModelRatios() { const res = await api.post( '/api/option/rest_model_ratio' ) return res.data } export async function getUpstreamChannels() { const res = await api.get( '/api/ratio_sync/channels' ) return res.data } export async function fetchUpstreamRatios(request: FetchUpstreamRatiosRequest) { const res = await api.post( '/api/ratio_sync/fetch', request ) return res.data }