n8n-nodes-base
Version:
Base nodes of n8n
32 lines (28 loc) • 930 B
text/typescript
/**
* Airtop Node - Version 1
* Discriminator: resource=window, operation=close
*/
interface Credentials {
airtopApi: CredentialReference;
}
/** Close a window inside a session */
export type AirtopV1WindowCloseParams = {
resource: 'window';
operation: 'close';
/**
* 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<string> | 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<string> | PlaceholderValue;
};
export type AirtopV1WindowCloseNode = {
type: 'n8n-nodes-base.airtop';
version: 1;
credentials?: Credentials;
config: NodeConfig<AirtopV1WindowCloseParams>;
};