From 9e577a22268c55ba9e79e5cb66cd901735d1c3ad Mon Sep 17 00:00:00 2001 From: Misaka_Company Date: Mon, 16 Mar 2026 09:59:36 +0800 Subject: [PATCH] fix(types): add missing clearSharedProductionIds to ValidationAPI The method was implemented in preload/index.ts but missing from the type definition, causing TypeScript compilation to fail. Co-Authored-By: Claude Opus 4.6 --- src/preload/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/preload/index.d.ts b/src/preload/index.d.ts index 66572f6..4adecf1 100644 --- a/src/preload/index.d.ts +++ b/src/preload/index.d.ts @@ -46,6 +46,7 @@ export interface ValidationAPI { validate: (request: ValidationRequest) => Promise> setSharedProductionIds: (productionIds: string[]) => Promise> getSharedProductionIds: () => Promise> + clearSharedProductionIds: () => Promise> getCleanerData: () => Promise< IpcResult<{ orderNumbers: string[]