feat(net-tool): 添加内容检查,确保消息内容不为空
All checks were successful
/ release (push) Successful in 29s

This commit is contained in:
zhaoyingbo 2025-01-15 03:28:43 +00:00
parent b63f9f4530
commit c9a728895a

View File

@ -15,6 +15,7 @@ class LarkMessageService extends LarkBaseService {
msgType: Lark.MsgType,
content: string | Record<string, any>
) {
if (!content) return { code: 1, message: "content is required" }
const path = `/im/v1/messages?receive_id_type=${receiveIdType}`
if (typeof content === "object") {
content = JSON.stringify(content)
@ -60,6 +61,7 @@ class LarkMessageService extends LarkBaseService {
content: string | Record<string, any>,
isText: boolean = false
) {
if (!content) return { code: 1, message: "content is required" }
const path = `/im/v1/messages/${messageId}`
if (typeof content === "object") {
content = JSON.stringify(content)
@ -117,6 +119,7 @@ class LarkMessageService extends LarkBaseService {
msgType: Lark.MsgType,
content: string | Record<string, any>
) {
if (!content) return { code: 1, message: "content is required" }
const path = `/im/v1/messages/${messageId}/reply`
if (typeof content === "object") {
content = JSON.stringify(content)