/** * Airtop Node - Version 1 * Discriminator: resource=interaction, operation=fill */ interface Credentials { airtopApi: CredentialReference; } /** Fill a form with the provided information */ export type AirtopV1InteractionFillParams = { resource: 'interaction'; operation: 'fill'; /** * 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; /** * The information to fill into the form written in natural language */ formData?: string | Expression | PlaceholderValue; }; export type AirtopV1InteractionFillNode = { type: 'n8n-nodes-base.airtop'; version: 1; credentials?: Credentials; config: NodeConfig; };