From d410e7433e61f5482d988010a2c27da1e5e41e5e Mon Sep 17 00:00:00 2001 From: BOHA Date: Fri, 5 Jun 2026 12:07:48 +0200 Subject: [PATCH] feat(plan): extend EntityType with work_plan_entry and work_plan_override --- src/types/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/index.ts b/src/types/index.ts index 98e9b66..aebb6ec 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -143,4 +143,6 @@ export type EntityType = | "warehouse_supplier" | "warehouse_category" | "warehouse_location" - | "warehouse_receipt_attachment"; + | "warehouse_receipt_attachment" + | "work_plan_entry" + | "work_plan_override";