feat(net-tool): 添加 LarkWikiService 以获取知识空间节点信息
All checks were successful
/ release (push) Successful in 27s

This commit is contained in:
zhaoyingbo 2025-01-27 13:58:27 +00:00
parent da784166ea
commit 75fa57b914
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,16 @@
import { Lark } from "../types"
import LarkBaseService from "./base"
class LarkWikiService extends LarkBaseService {
/**
*
* @param token token
* @returns
*/
async getNodeInfo(token: string) {
const path = `/wiki/v2/spaces/get_node`
return this.post<Lark.WikiNodeData>(path, { token })
}
}
export default LarkWikiService

View File

@ -130,6 +130,24 @@ export namespace Lark {
chat_mode: "group" | "p2p" | "topic"
}
export interface WikiNodeData {
space_id: string
node_token: string
obj_token: string
obj_type: string
parent_node_token: string
node_type: string
origin_node_token: string
origin_space_id: string
has_child: boolean
title: string
obj_create_time: string
obj_edit_time: string
node_create_time: string
creator: string
owner: string
}
export interface BaseRes<T = any> {
code: number
data: T