fix(preload): add missing selectedManagers param to getCleanerData type declaration
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
5
docs/releases/1.11.1.md
Normal file
5
docs/releases/1.11.1.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# 1.11.1
|
||||
|
||||
## 问题修复
|
||||
|
||||
- 修复管理员按负责人筛选清理时,因类型声明缺失导致构建失败的问题。
|
||||
2
src/preload/index.d.ts
vendored
2
src/preload/index.d.ts
vendored
@@ -59,7 +59,7 @@ export interface ValidationAPI {
|
||||
setSharedProductionIds: (productionIds: string[]) => Promise<IpcResult<void>>
|
||||
getSharedProductionIds: () => Promise<IpcResult<{ productionIds: string[] }>>
|
||||
clearSharedProductionIds: () => Promise<IpcResult<void>>
|
||||
getCleanerData: () => Promise<
|
||||
getCleanerData: (params?: { selectedManagers?: string[] }) => Promise<
|
||||
IpcResult<{
|
||||
orderNumbers: string[]
|
||||
materialCodes: string[]
|
||||
|
||||
Reference in New Issue
Block a user