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
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