UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

28 lines (24 loc) 579 B
/** * Bitly Node - Version 1 * Discriminator: resource=link, operation=get */ interface Credentials { bitlyApi: CredentialReference; bitlyOAuth2Api: CredentialReference; } /** Get a link */ export type BitlyV1LinkGetParams = { resource: 'link'; operation: 'get'; authentication?: 'accessToken' | 'oAuth2' | Expression<string>; /** * Bitlink */ id?: string | Expression<string> | PlaceholderValue; }; export type BitlyV1LinkGetNode = { type: 'n8n-nodes-base.bitly'; version: 1; credentials?: Credentials; config: NodeConfig<BitlyV1LinkGetParams>; };