readme updated

This commit is contained in:
atharva.dev 2025-11-04 11:12:48 +05:30
parent 9f46e5e8ff
commit 645ea3889f
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@ import { ICredentialTestRequest, ICredentialType, INodeProperties, Icon } from '
export class SecloreProtectApi implements ICredentialType { export class SecloreProtectApi implements ICredentialType {
name = 'secloreProtectApi'; name = 'secloreProtectApi';
displayName = 'Seclore Protect API'; displayName = 'Seclore API';
documentationUrl = 'https://docs.seclore.com/'; documentationUrl = 'https://docs.seclore.com/';
icon: Icon = 'file:../icons/seclore.svg'; icon: Icon = 'file:../icons/seclore.svg';
properties: INodeProperties[] = [ properties: INodeProperties[] = [

View File

@ -70,7 +70,7 @@ async function protectFileWithHotFolder(
fileSize: number; fileSize: number;
}> { }> {
const who = "protectWithHotFolder::protectFileWithHotFolder:: "; const who = "protectWithHotFolder::protectFileWithHotFolder:: ";
var originalFileStorageId: string = ''; let originalFileStorageId: string = '';
try { try {
Logger.debug(who + 'Starting protect file with hot folder operation', { fileName, fileSize: fileBuffer.length, hotfolderId, correlationId, retryCount }); Logger.debug(who + 'Starting protect file with hot folder operation', { fileName, fileSize: fileBuffer.length, hotfolderId, correlationId, retryCount });

View File

@ -67,7 +67,7 @@ async function unprotectFile(
fileSize: number; fileSize: number;
}> { }> {
const who = "unprotect::unprotectFile:: "; const who = "unprotect::unprotectFile:: ";
var originalFileStorageId: string = ''; let originalFileStorageId: string = '';
try { try {
Logger.debug(who + 'Starting unprotect file operation', { fileName, fileSize: fileBuffer.length, correlationId, retryCount }); Logger.debug(who + 'Starting unprotect file operation', { fileName, fileSize: fileBuffer.length, correlationId, retryCount });

View File

@ -1,5 +1,5 @@
{ {
"name": "n8n-nodes-secloreprotect", "name": "n8n-nodes-seclore",
"version": "0.1.0", "version": "0.1.0",
"description": "n8n community node for Seclore Protect - secure file protection using DRM technology", "description": "n8n community node for Seclore Protect - secure file protection using DRM technology",
"license": "MIT", "license": "MIT",
@ -13,7 +13,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/seclore/n8n-nodes-secloreprotect.git" "url": "https://repo.seclore.com/public/n8n-nodes-seclore.git"
}, },
"scripts": { "scripts": {
"build": "n8n-node build", "build": "n8n-node build",