Chore deprecate importChatflows method (#4965)

chore: remove importchatflows
This commit is contained in:
Ong Chung Yau
2025-07-29 22:58:58 +08:00
committed by GitHub
parent bbb03b7b3b
commit 46816c7c1e
4 changed files with 2 additions and 92 deletions
-3
View File
@@ -10,8 +10,6 @@ const getSpecificChatflowFromPublicEndpoint = (id) => client.get(`/public-chatfl
const createNewChatflow = (body) => client.post(`/chatflows`, body)
const importChatflows = (body) => client.post(`/chatflows/importchatflows`, body)
const updateChatflow = (id, body) => client.put(`/chatflows/${id}`, body)
const deleteChatflow = (id) => client.delete(`/chatflows/${id}`)
@@ -30,7 +28,6 @@ export default {
getSpecificChatflow,
getSpecificChatflowFromPublicEndpoint,
createNewChatflow,
importChatflows,
updateChatflow,
deleteChatflow,
getIsChatflowStreaming,