UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

46 lines (42 loc) 1.3 kB
/** * Airtop Node - Version 1 * Discriminator: resource=window, operation=load */ interface Credentials { airtopApi: CredentialReference; } /** Load a URL in an existing window */ export type AirtopV1WindowLoadParams = { resource: 'window'; operation: 'load'; /** * The ID of the &lt;a href="https://docs.airtop.ai/guides/how-to/creating-a-session" target="_blank"&gt;Session&lt;/a&gt; to use * @default ={{ $json["sessionId"] }} */ sessionId?: string | Expression<string> | PlaceholderValue; /** * The ID of the &lt;a href="https://docs.airtop.ai/guides/how-to/creating-a-session#windows" target="_blank"&gt;Window&lt;/a&gt; to use * @default ={{ $json["windowId"] }} */ windowId?: string | Expression<string> | PlaceholderValue; /** * URL to load in the window */ url?: string | Expression<string> | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Wait until the specified loading event occurs. Defaults to 'Fully Loaded'. * @default load */ waitUntil?: 'complete' | 'domContentLoaded' | 'load' | 'noWait' | Expression<string>; }; }; export type AirtopV1WindowLoadNode = { type: 'n8n-nodes-base.airtop'; version: 1; credentials?: Credentials; config: NodeConfig<AirtopV1WindowLoadParams>; };