n8n-nodes-base
Version:
Base nodes of n8n
31 lines (27 loc) • 694 B
text/typescript
/**
* Airtop Node - Version 1.1
* Discriminator: resource=file, operation=get
*/
interface Credentials {
airtopApi: CredentialReference;
}
/** Get a details of an uploaded file */
export type AirtopV11FileGetParams = {
resource: 'file';
operation: 'get';
/**
* ID of the file to retrieve
*/
fileId?: string | Expression<string> | PlaceholderValue;
/**
* Whether to output the file in binary format if the file is ready for download
* @default false
*/
outputBinaryFile?: boolean | Expression<boolean>;
};
export type AirtopV11FileGetNode = {
type: 'n8n-nodes-base.airtop';
version: 1.1;
credentials?: Credentials;
config: NodeConfig<AirtopV11FileGetParams>;
};