🎉 feat: initialization

This commit is contained in:
web
2025-11-26 19:56:16 -08:00
commit a801849fb2
553 changed files with 213088 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
/* eslint-disable */
import request from "@workspace/ui/lib/request";
/** Get document detail GET /v1/public/document/detail */
export async function queryDocumentDetail(
// 叠加生成的Param类型 (非body参数swagger默认没有生成对象)
params: API.QueryDocumentDetailParams,
options?: { [key: string]: any }
) {
return request<API.Response & { data?: API.Document }>(
"/v1/public/document/detail",
{
method: "GET",
params: {
...params,
},
...(options || {}),
}
);
}
/** Get document list GET /v1/public/document/list */
export async function queryDocumentList(options?: { [key: string]: any }) {
return request<API.Response & { data?: API.QueryDocumentListResponse }>(
"/v1/public/document/list",
{
method: "GET",
...(options || {}),
}
);
}