chat_session.api 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. import "../base.api"
  2. type (
  3. // The data of chat session information | ChatSession信息
  4. ChatSessionInfo {
  5. BaseIDInfo
  6. // 名称
  7. Name *string `json:"name,optional"`
  8. // 用户ID
  9. UserId *uint64 `json:"userId,optional"`
  10. // 聊天ID
  11. BotId *uint64 `json:"botId,optional"`
  12. // 类型:1-微信 2-小程序card 3-智能体
  13. BotType *uint8 `json:"botType,optional"`
  14. }
  15. // The response data of chat session list | ChatSession列表数据
  16. ChatSessionListResp {
  17. BaseDataInfo
  18. // ChatSession list data | ChatSession列表数据
  19. Data ChatSessionListInfo `json:"data"`
  20. }
  21. // ChatSession list data | ChatSession列表数据
  22. ChatSessionListInfo {
  23. BaseListInfo
  24. // The API list data | ChatSession列表数据
  25. Data []ChatSessionInfo `json:"data"`
  26. }
  27. // Get chat session list request params | ChatSession列表请求参数
  28. ChatSessionListReq {
  29. PageInfo
  30. BotId *uint64 `json:"botId,optional"`
  31. BotType *uint8 `json:"botType,optional"`
  32. BotName *string `json:"botName,optional"`
  33. }
  34. // ChatSession information response | ChatSession信息返回体
  35. ChatSessionInfoResp {
  36. BaseDataInfo
  37. // ChatSession information | ChatSession数据
  38. Data ChatSessionInfo `json:"data"`
  39. }
  40. )
  41. @server(
  42. jwt: Auth
  43. group: chatsession
  44. middleware: Miniprogram
  45. )
  46. service Wechat {
  47. // Get chat session list | 获取ChatSession列表
  48. @handler getApiSessionList
  49. post /api/session/list (ChatSessionListReq) returns (ChatSessionListResp)
  50. // Update chat session information | 更新ChatSession
  51. @handler updateApiSession
  52. post /api/session/update (ChatSessionInfo) returns (BaseMsgResp)
  53. // Delete chat session information | 删除ChatSession信息
  54. @handler deleteApiSession
  55. post /api/session/delete (IDsReq) returns (BaseMsgResp)
  56. }
  57. @server(
  58. jwt: Auth
  59. group: chatsession
  60. middleware: Authority
  61. )
  62. service Wechat {
  63. // Create chat session information | 创建ChatSession
  64. @handler createChatSession
  65. post /chat_session/create (ChatSessionInfo) returns (BaseMsgResp)
  66. // Update chat session information | 更新ChatSession
  67. @handler updateChatSession
  68. post /chat_session/update (ChatSessionInfo) returns (BaseMsgResp)
  69. // Delete chat session information | 删除ChatSession信息
  70. @handler deleteChatSession
  71. post /chat_session/delete (IDsReq) returns (BaseMsgResp)
  72. // Get chat session list | 获取ChatSession列表
  73. @handler getChatSessionList
  74. post /chat_session/list (ChatSessionListReq) returns (ChatSessionListResp)
  75. // Get chat session by ID | 通过ID获取ChatSession
  76. @handler getChatSessionById
  77. post /chat_session (IDReq) returns (ChatSessionInfoResp)
  78. }