Interface: IntentOptions
Defined in: src/intents/types.ts:66
Options controlling intent execution behaviour.
Remarks​
All fields are optional. When omitted, the intent function uses built-in defaults.
Example​
import type { IntentOptions } from '#intents/types.js';
const opts: IntentOptions = { skipNavigation: true, timeout: 60_000 };
Properties​
skipNavigation?​
optionalskipNavigation:boolean
Defined in: src/intents/types.ts:68
When true, skip FLP navigation and assume the correct app is already open.
timeout?​
optionaltimeout:number
Defined in: src/intents/types.ts:70
Override the default interaction timeout (ms).
validateViaOData?​
optionalvalidateViaOData:boolean
Defined in: src/intents/types.ts:72
When true, validate the operation result via an OData GET after save.