UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

19 lines (14 loc) 613 B
/** * Check Credential Status Node - Version 1 * Checks whether the triggering user has the required Dynamic credential configured. Routes to "Ready" or "Not Ready" and returns auth URLs when the credential is missing. */ export interface DynamicCredentialCheckV1Params { } interface DynamicCredentialCheckV1NodeBase { type: 'n8n-nodes-base.dynamicCredentialCheck'; version: 1; } export type DynamicCredentialCheckV1ParamsNode = DynamicCredentialCheckV1NodeBase & { config: NodeConfig<DynamicCredentialCheckV1Params>; }; export type DynamicCredentialCheckV1Node = DynamicCredentialCheckV1ParamsNode;