/** * Airtop Node - Version 1.1 * Discriminator: resource=interaction, operation=hover */ interface Credentials { airtopApi: CredentialReference; } /** Execute a hover action on an element given a description */ export type AirtopV11InteractionHoverParams = { resource: 'interaction'; operation: 'hover'; /** * The ID of the <a href="https://docs.airtop.ai/guides/how-to/creating-a-session" target="_blank">Session</a> to use * @default ={{ $json["sessionId"] }} */ sessionId?: string | Expression | PlaceholderValue; /** * The ID of the <a href="https://docs.airtop.ai/guides/how-to/creating-a-session#windows" target="_blank">Window</a> to use * @default ={{ $json["windowId"] }} */ windowId?: string | Expression | PlaceholderValue; /** * A specific description of the element to execute the interaction on */ elementDescription?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Defines the strategy for visual analysis of the current window * @default auto */ visualScope?: 'auto' | 'viewport' | 'page' | 'scan' | Expression; /** The condition to wait for the navigation to complete after an interaction (click, type or hover). Defaults to 'Fully Loaded'. * @default load */ waitForNavigation?: 'load' | 'domcontentloaded' | 'networkidle0' | 'networkidle2' | Expression; }; }; export type AirtopV11InteractionHoverNode = { type: 'n8n-nodes-base.airtop'; version: 1.1; credentials?: Credentials; config: NodeConfig; };