mirror of
https://github.com/langgenius/dify.git
synced 2025-11-29 20:37:22 +00:00
Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Signed-off-by: lyzno1 <yuanyouhuilyz@gmail.com> Signed-off-by: kenwoodjw <blackxin55+@gmail.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Yunlu Wen <wylswz@163.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: GareArc <chen4851@purdue.edu> Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: Davide Delbianco <davide.delbianco@outlook.com> Co-authored-by: minglu7 <1347866672@qq.com> Co-authored-by: Ponder <ruan.lj@foxmail.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: heyszt <270985384@qq.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Guangdong Liu <liugddx@gmail.com> Co-authored-by: Eric Guo <eric.guocz@gmail.com> Co-authored-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Co-authored-by: XlKsyt <caixuesen@outlook.com> Co-authored-by: Dhruv Gorasiya <80987415+DhruvGorasiya@users.noreply.github.com> Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: GuanMu <ballmanjq@gmail.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tonlo <123lzs123@gmail.com> Co-authored-by: Yusuke Yamada <yamachu.dev@gmail.com> Co-authored-by: Novice <novice12185727@gmail.com> Co-authored-by: kenwoodjw <blackxin55+@gmail.com> Co-authored-by: Ademílson Tonato <ademilsonft@outlook.com> Co-authored-by: znn <jubinkumarsoni@gmail.com> Co-authored-by: yangzheli <43645580+yangzheli@users.noreply.github.com>
129 lines
3.3 KiB
TypeScript
129 lines
3.3 KiB
TypeScript
import { get, post } from './base'
|
|
import type {
|
|
FileUploadConfigResponse,
|
|
Member,
|
|
StructuredOutputRulesRequestBody,
|
|
StructuredOutputRulesResponse,
|
|
} from '@/models/common'
|
|
import { useMutation, useQuery } from '@tanstack/react-query'
|
|
import type { FileTypesRes } from './datasets'
|
|
|
|
const NAME_SPACE = 'common'
|
|
|
|
export const useFileUploadConfig = () => {
|
|
return useQuery<FileUploadConfigResponse>({
|
|
queryKey: [NAME_SPACE, 'file-upload-config'],
|
|
queryFn: () => get<FileUploadConfigResponse>('/files/upload'),
|
|
})
|
|
}
|
|
|
|
export const useGenerateStructuredOutputRules = () => {
|
|
return useMutation({
|
|
mutationKey: [NAME_SPACE, 'generate-structured-output-rules'],
|
|
mutationFn: (body: StructuredOutputRulesRequestBody) => {
|
|
return post<StructuredOutputRulesResponse>(
|
|
'/rule-structured-output-generate',
|
|
{ body },
|
|
)
|
|
},
|
|
})
|
|
}
|
|
|
|
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: {} }
|
|
|
|
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 })
|
|
},
|
|
})
|
|
}
|
|
|
|
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'),
|
|
})
|
|
}
|
|
|
|
type isLogin = {
|
|
logged_in: boolean
|
|
}
|
|
|
|
export const useIsLogin = () => {
|
|
return useQuery<isLogin>({
|
|
queryKey: [NAME_SPACE, 'is-login'],
|
|
staleTime: 0,
|
|
gcTime: 0,
|
|
queryFn: () => get<isLogin>('/login/status'),
|
|
})
|
|
}
|
|
|
|
export const useLogout = () => {
|
|
return useMutation({
|
|
mutationKey: [NAME_SPACE, 'logout'],
|
|
mutationFn: () => post('/logout'),
|
|
})
|
|
}
|