UNPKG

n8n-nodes-tanss-api

Version:
41 lines 1.3 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TanssApi = void 0; class TanssApi { constructor() { this.name = 'tanssApi'; this.displayName = 'TANSS API'; this.properties = [ { displayName: 'Base URL', name: 'baseURL', type: 'string', default: '', placeholder: 'https://your-tanss-api-url.com', required: true, description: 'The base URL of the TANSS API.', }, { displayName: 'Username', name: 'username', type: 'string', default: '', required: true, description: 'The username to authenticate with the TANSS API.', }, { displayName: 'Password', name: 'password', type: 'string', default: '', typeOptions: { password: true, }, required: true, description: 'The password to authenticate with the TANSS API.', }, ]; } } exports.TanssApi = TanssApi; //# sourceMappingURL=TanssApi.credentials.js.map