/** * Airtop Node - Version 1 * Discriminator: resource=session, operation=save */ interface Credentials { airtopApi: CredentialReference; } /** Save in a profile changes made in your browsing session such as cookies and local storage */ export type AirtopV1SessionSaveParams = { resource: 'session'; operation: 'save'; /** * 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 name of the <a href="https://docs.airtop.ai/guides/how-to/saving-a-profile" target="_blank">Profile</a> to save * @hint Name of the profile you want to save. Must consist only of alphanumeric characters and hyphens "-" */ profileName?: string | Expression | PlaceholderValue; }; export type AirtopV1SessionSaveNode = { type: 'n8n-nodes-base.airtop'; version: 1; credentials?: Credentials; config: NodeConfig; };