n8n-nodes-base
Version:
Base nodes of n8n
22 lines (18 loc) • 505 B
text/typescript
/**
* Wise Node - Version 1
* Discriminator: resource=account, operation=getCurrencies
*/
interface Credentials {
wiseApi: CredentialReference;
}
/** Retrieve currencies in the borderless account of this user */
export type WiseV1AccountGetCurrenciesParams = {
resource: 'account';
operation: 'getCurrencies';
};
export type WiseV1AccountGetCurrenciesNode = {
type: 'n8n-nodes-base.wise';
version: 1;
credentials?: Credentials;
config: NodeConfig<WiseV1AccountGetCurrenciesParams>;
};