UNPKG

n8n-nodes-memory-box

Version:
33 lines 1.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MemoryBoxApi = void 0; class MemoryBoxApi { constructor() { this.name = 'memoryBoxApi'; this.displayName = 'Memory Box API'; this.documentationUrl = 'https://memorybox.amotivv.ai/docs'; this.properties = [ { displayName: 'API Token', name: 'token', type: 'string', default: '', typeOptions: { password: true, }, required: true, description: 'The Memory Box API token that serves as user identification', }, { displayName: 'API URL', name: 'apiUrl', type: 'string', default: 'https://memorybox.amotivv.ai/api', required: true, description: 'The Memory Box API URL (do not include trailing slash)', }, ]; } } exports.MemoryBoxApi = MemoryBoxApi; //# sourceMappingURL=MemoryBoxApi.credentials.js.map