From 30ac4f4c2c8145ac68a49dd77b4864bba10ac0c3 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Mon, 17 Aug 2020 11:58:36 +0200 Subject: [PATCH] :zap: Extend CredentialType interface with "documentationUrl" property --- packages/workflow/src/Interfaces.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/workflow/src/Interfaces.ts b/packages/workflow/src/Interfaces.ts index 9a9995f557..af62220d83 100644 --- a/packages/workflow/src/Interfaces.ts +++ b/packages/workflow/src/Interfaces.ts @@ -102,6 +102,7 @@ export interface ICredentialType { displayName: string; extends?: string[]; properties: INodeProperties[]; + documentationUrl?: string; __overwrittenProperties?: string[]; }