feat(net-tool): 添加 LarkWikiService 以支持知识空间功能

This commit is contained in:
zhaoyingbo 2025-01-27 14:05:13 +00:00
parent 369f276d3d
commit 5b7065dd0d

@ -4,6 +4,7 @@ import LarkDriveService from "./drive"
import LarkMessageService from "./message"
import LarkSheetService from "./sheet"
import LarkUserService from "./user"
import LarkWikiService from "./wiki"
class LarkService {
drive: LarkDriveService
@ -12,6 +13,7 @@ class LarkService {
sheet: LarkSheetService
auth: LarkAuthService
chat: LarkChatService
wiki: LarkWikiService
requestId: string
constructor({
@ -34,6 +36,7 @@ class LarkService {
this.user = new LarkUserService(getAppAuth, requestId)
this.sheet = new LarkSheetService(getAppAuth, requestId)
this.chat = new LarkChatService(getAppAuth, requestId)
this.wiki = new LarkWikiService(getAppAuth, requestId)
this.requestId = requestId
}
}