From 54203db3280d19fc93b07e6c3964461e4de5f2b4 Mon Sep 17 00:00:00 2001 From: r-dev Date: Fri, 3 Apr 2026 10:50:33 +0200 Subject: [PATCH] feat(custom-fields) : add machineContextOnly to custom field types Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/app/shared/types/inventory.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/app/shared/types/inventory.ts b/frontend/app/shared/types/inventory.ts index 1a531d6..0c36b67 100644 --- a/frontend/app/shared/types/inventory.ts +++ b/frontend/app/shared/types/inventory.ts @@ -10,6 +10,7 @@ export interface ComponentModelCustomField { id?: string customFieldId?: string orderIndex?: number + machineContextOnly?: boolean key?: string value?: unknown } @@ -58,6 +59,7 @@ export interface PieceModelCustomField { required: boolean options?: string[] orderIndex?: number + machineContextOnly?: boolean key?: string value?: unknown defaultValue?: string | null