UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

21 lines (17 loc) 404 B
/** * Wise Node - Version 1 * Discriminator: resource=profile, operation=getAll */ interface Credentials { wiseApi: CredentialReference; } export type WiseV1ProfileGetAllParams = { resource: 'profile'; operation: 'getAll'; }; export type WiseV1ProfileGetAllNode = { type: 'n8n-nodes-base.wise'; version: 1; credentials?: Credentials; config: NodeConfig<WiseV1ProfileGetAllParams>; };