feat(custom-fields) : add machineContextOnly to custom field types

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-03 10:50:33 +02:00
parent d085c48953
commit 54203db328

View File

@@ -10,6 +10,7 @@ export interface ComponentModelCustomField {
id?: string id?: string
customFieldId?: string customFieldId?: string
orderIndex?: number orderIndex?: number
machineContextOnly?: boolean
key?: string key?: string
value?: unknown value?: unknown
} }
@@ -58,6 +59,7 @@ export interface PieceModelCustomField {
required: boolean required: boolean
options?: string[] options?: string[]
orderIndex?: number orderIndex?: number
machineContextOnly?: boolean
key?: string key?: string
value?: unknown value?: unknown
defaultValue?: string | null defaultValue?: string | null