2025-04-18 16:53:43 +08:00
|
|
|
import { get, post } from './base'
|
2025-02-17 17:05:13 +08:00
|
|
|
import type {
|
|
|
|
|
FileUploadConfigResponse,
|
2025-09-18 12:49:10 +08:00
|
|
|
Member,
|
2025-04-18 16:53:43 +08:00
|
|
|
StructuredOutputRulesRequestBody,
|
|
|
|
|
StructuredOutputRulesResponse,
|
2025-02-17 17:05:13 +08:00
|
|
|
} from '@/models/common'
|
2025-04-18 16:53:43 +08:00
|
|
|
import { useMutation, useQuery } from '@tanstack/react-query'
|
2025-09-18 12:49:10 +08:00
|
|
|
import type { FileTypesRes } from './datasets'
|
2025-02-17 17:05:13 +08:00
|
|
|
|
|
|
|
|
const NAME_SPACE = 'common'
|
|
|
|
|
|
|
|
|
|
export const useFileUploadConfig = () => {
|
|
|
|
|
return useQuery<FileUploadConfigResponse>({
|
|
|
|
|
queryKey: [NAME_SPACE, 'file-upload-config'],
|
|
|
|
|
queryFn: () => get<FileUploadConfigResponse>('/files/upload'),
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-04-18 16:53:43 +08:00
|
|
|
|
|
|
|
|
export const useGenerateStructuredOutputRules = () => {
|
|
|
|
|
return useMutation({
|
|
|
|
|
mutationKey: [NAME_SPACE, 'generate-structured-output-rules'],
|
|
|
|
|
mutationFn: (body: StructuredOutputRulesRequestBody) => {
|
|
|
|
|
return post<StructuredOutputRulesResponse>(
|
|
|
|
|
'/rule-structured-output-generate',
|
|
|
|
|
{ body },
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-09-12 10:25:06 +08:00
|
|
|
|
|
|
|
|
export type MailSendResponse = { data: string, result: string }
|
|
|
|
|
export const useSendMail = () => {
|
|
|
|
|
return useMutation({
|
|
|
|
|
mutationKey: [NAME_SPACE, 'mail-send'],
|
|
|
|
|
mutationFn: (body: { email: string, language: string }) => {
|
|
|
|
|
return post<MailSendResponse>('/email-register/send-email', { body })
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type MailValidityResponse = { is_valid: boolean, token: string }
|
|
|
|
|
|
|
|
|
|
export const useMailValidity = () => {
|
|
|
|
|
return useMutation({
|
|
|
|
|
mutationKey: [NAME_SPACE, 'mail-validity'],
|
|
|
|
|
mutationFn: (body: { email: string, code: string, token: string }) => {
|
|
|
|
|
return post<MailValidityResponse>('/email-register/validity', { body })
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type MailRegisterResponse = { result: string, data: { access_token: string, refresh_token: string } }
|
|
|
|
|
|
|
|
|
|
export const useMailRegister = () => {
|
|
|
|
|
return useMutation({
|
|
|
|
|
mutationKey: [NAME_SPACE, 'mail-register'],
|
|
|
|
|
mutationFn: (body: { token: string, new_password: string, password_confirm: string }) => {
|
|
|
|
|
return post<MailRegisterResponse>('/email-register', { body })
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-09-18 12:49:10 +08:00
|
|
|
|
|
|
|
|
export const useFileSupportTypes = () => {
|
|
|
|
|
return useQuery<FileTypesRes>({
|
|
|
|
|
queryKey: [NAME_SPACE, 'file-types'],
|
|
|
|
|
queryFn: () => get<FileTypesRes>('/files/support-type'),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type MemberResponse = {
|
|
|
|
|
accounts: Member[] | null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const useMembers = () => {
|
|
|
|
|
return useQuery<MemberResponse>({
|
|
|
|
|
queryKey: [NAME_SPACE, 'members'],
|
|
|
|
|
queryFn: (params: Record<string, any>) => get<MemberResponse>('/workspaces/current/members', {
|
|
|
|
|
params,
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type FilePreviewResponse = {
|
|
|
|
|
content: string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const useFilePreview = (fileID: string) => {
|
|
|
|
|
return useQuery<FilePreviewResponse>({
|
|
|
|
|
queryKey: [NAME_SPACE, 'file-preview', fileID],
|
|
|
|
|
queryFn: () => get<FilePreviewResponse>(`/files/${fileID}/preview`),
|
|
|
|
|
enabled: !!fileID,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type SchemaTypeDefinition = {
|
|
|
|
|
name: string
|
|
|
|
|
schema: {
|
|
|
|
|
properties: Record<string, any>
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const useSchemaTypeDefinitions = () => {
|
|
|
|
|
return useQuery<SchemaTypeDefinition[]>({
|
|
|
|
|
queryKey: [NAME_SPACE, 'schema-type-definitions'],
|
|
|
|
|
queryFn: () => get<SchemaTypeDefinition[]>('/spec/schema-definitions'),
|
|
|
|
|
})
|
|
|
|
|
}
|