diff --git a/credentials/SecloreProtectApi.credentials.ts b/credentials/SecloreProtectApi.credentials.ts index cbf91fd..d096c36 100644 --- a/credentials/SecloreProtectApi.credentials.ts +++ b/credentials/SecloreProtectApi.credentials.ts @@ -2,7 +2,7 @@ import { ICredentialTestRequest, ICredentialType, INodeProperties, Icon } from ' export class SecloreProtectApi implements ICredentialType { name = 'secloreProtectApi'; - displayName = 'Seclore Protect API'; + displayName = 'Seclore API'; documentationUrl = 'https://docs.seclore.com/'; icon: Icon = 'file:../icons/seclore.svg'; properties: INodeProperties[] = [ diff --git a/nodes/SecloreProtect/operations/protectWithHotFolder.ts b/nodes/SecloreProtect/operations/protectWithHotFolder.ts index ceb7b92..c4dc3f5 100644 --- a/nodes/SecloreProtect/operations/protectWithHotFolder.ts +++ b/nodes/SecloreProtect/operations/protectWithHotFolder.ts @@ -70,7 +70,7 @@ async function protectFileWithHotFolder( fileSize: number; }> { const who = "protectWithHotFolder::protectFileWithHotFolder:: "; - var originalFileStorageId: string = ''; + let originalFileStorageId: string = ''; try { Logger.debug(who + 'Starting protect file with hot folder operation', { fileName, fileSize: fileBuffer.length, hotfolderId, correlationId, retryCount }); diff --git a/nodes/SecloreProtect/operations/unprotect.ts b/nodes/SecloreProtect/operations/unprotect.ts index 8e5ecdc..e07182f 100644 --- a/nodes/SecloreProtect/operations/unprotect.ts +++ b/nodes/SecloreProtect/operations/unprotect.ts @@ -67,7 +67,7 @@ async function unprotectFile( fileSize: number; }> { const who = "unprotect::unprotectFile:: "; - var originalFileStorageId: string = ''; + let originalFileStorageId: string = ''; try { Logger.debug(who + 'Starting unprotect file operation', { fileName, fileSize: fileBuffer.length, correlationId, retryCount }); diff --git a/package.json b/package.json index 7f5d8eb..56ee87c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "n8n-nodes-secloreprotect", + "name": "n8n-nodes-seclore", "version": "0.1.0", "description": "n8n community node for Seclore Protect - secure file protection using DRM technology", "license": "MIT", @@ -13,7 +13,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/seclore/n8n-nodes-secloreprotect.git" + "url": "https://repo.seclore.com/public/n8n-nodes-seclore.git" }, "scripts": { "build": "n8n-node build",