/** * Airtop Node - Version 1 * Discriminator: resource=window, operation=getLiveView */ interface Credentials { airtopApi: CredentialReference; } /** Get information about a browser window, including the live view URL */ export type AirtopV1WindowGetLiveViewParams = { resource: 'window'; operation: 'getLiveView'; /** * 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; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether to include the navigation bar in the Live View. When enabled, the navigation bar will be visible allowing you to navigate between pages. * @default false */ includeNavigationBar?: boolean | Expression; /** The screen resolution of the Live View. Setting a resolution will force the window to open at that specific size. */ screenResolution?: string | Expression | PlaceholderValue; /** Whether to disable the window from being resized in the Live View * @default false */ disableResize?: boolean | Expression; }; }; export type AirtopV1WindowGetLiveViewNode = { type: 'n8n-nodes-base.airtop'; version: 1; credentials?: Credentials; config: NodeConfig; };