/** * Airtop Node - Version 1 * Discriminator: resource=file, operation=load */ interface Credentials { airtopApi: CredentialReference; } /** Load a URL in an existing window */ export type AirtopV1FileLoadParams = { resource: 'file'; operation: 'load'; /** * The session ID to load the file into * @default ={{ $json["sessionId"] }} */ sessionId?: string | Expression | PlaceholderValue; /** * The window ID to trigger the file input in * @default ={{ $json["windowId"] }} */ windowId?: string | Expression | PlaceholderValue; /** * ID of the file to load into the session */ fileId?: string | Expression | PlaceholderValue; /** * Optional description of the file input to interact with */ elementDescription?: string | Expression | PlaceholderValue; /** * Whether to include hidden elements in the interaction * @default true */ includeHiddenElements?: boolean | Expression; }; export type AirtopV1FileLoadNode = { type: 'n8n-nodes-base.airtop'; version: 1; credentials?: Credentials; config: NodeConfig; };