chore: update EPS, clean temp files

This commit is contained in:
2026-07-03 11:45:00 +08:00
parent ad2e91ef30
commit 7f2e24155d
3 changed files with 65 additions and 65 deletions
+64 -64
View File
@@ -1316,6 +1316,11 @@ declare namespace Eps {
list: DictTypeEntity[]; list: DictTypeEntity[];
} }
interface KnowledgeBookCategoryPageResponse {
pagination: PagePagination;
list: KnowledgeBookCategoryEntity[];
}
interface KnowledgeBookPageResponse { interface KnowledgeBookPageResponse {
pagination: PagePagination; pagination: PagePagination;
list: KnowledgeBookEntity[]; list: KnowledgeBookEntity[];
@@ -1331,11 +1336,6 @@ declare namespace Eps {
list: KnowledgeFilmEntity[]; list: KnowledgeFilmEntity[];
} }
interface KnowledgeBookCategoryPageResponse {
pagination: PagePagination;
list: KnowledgeBookCategoryEntity[];
}
interface PluginInfoPageResponse { interface PluginInfoPageResponse {
pagination: PagePagination; pagination: PagePagination;
list: PluginInfoEntity[]; list: PluginInfoEntity[];
@@ -2074,6 +2074,64 @@ declare namespace Eps {
request: Request; request: Request;
} }
interface KnowledgeBookCategory {
/**
* 删除
*/
delete(data?: any): Promise<any>;
/**
* 修改
*/
update(data?: any): Promise<any>;
/**
* 单个信息
*/
info(data?: any): Promise<KnowledgeBookCategoryEntity>;
/**
* 列表查询
*/
list(data?: any): Promise<KnowledgeBookCategoryEntity[]>;
/**
* 分页查询
*/
page(data?: any): Promise<KnowledgeBookCategoryPageResponse>;
/**
* 新增
*/
add(data?: any): Promise<any>;
/**
* 权限标识
*/
permission: {
delete: string;
update: string;
info: string;
list: string;
page: string;
add: string;
};
/**
* 权限状态
*/
_permission: {
delete: boolean;
update: boolean;
info: boolean;
list: boolean;
page: boolean;
add: boolean;
};
request: Request;
}
interface KnowledgeBook { interface KnowledgeBook {
/** /**
* 批量导入书籍 * 批量导入书籍
@@ -2262,64 +2320,6 @@ declare namespace Eps {
request: Request; request: Request;
} }
interface KnowledgeBookCategory {
/**
* 删除
*/
delete(data?: any): Promise<any>;
/**
* 修改
*/
update(data?: any): Promise<any>;
/**
* 单个信息
*/
info(data?: any): Promise<KnowledgeBookCategoryEntity>;
/**
* 列表查询
*/
list(data?: any): Promise<KnowledgeBookCategoryEntity[]>;
/**
* 分页查询
*/
page(data?: any): Promise<KnowledgeBookCategoryPageResponse>;
/**
* 新增
*/
add(data?: any): Promise<any>;
/**
* 权限标识
*/
permission: {
delete: string;
update: string;
info: string;
list: string;
page: string;
add: string;
};
/**
* 权限状态
*/
_permission: {
delete: boolean;
update: boolean;
info: boolean;
list: boolean;
page: boolean;
add: boolean;
};
request: Request;
}
interface PluginInfo { interface PluginInfo {
/** /**
* 安装插件 * 安装插件
@@ -2756,10 +2756,10 @@ declare namespace Eps {
demo: { goods: DemoGoods; tenant: DemoTenant }; demo: { goods: DemoGoods; tenant: DemoTenant };
dict: { info: DictInfo; type: DictType }; dict: { info: DictInfo; type: DictType };
knowledge: { knowledge: {
bookCategory: KnowledgeBookCategory;
book: KnowledgeBook; book: KnowledgeBook;
filmCategory: KnowledgeFilmCategory; filmCategory: KnowledgeFilmCategory;
film: KnowledgeFilm; film: KnowledgeFilm;
bookCategory: KnowledgeBookCategory;
}; };
plugin: { info: PluginInfo }; plugin: { info: PluginInfo };
recycle: { data: RecycleData }; recycle: { data: RecycleData };
+1 -1
View File
File diff suppressed because one or more lines are too long
BIN
View File
Binary file not shown.