n8n-nodes-tess-ai-by-pareto
Version:
n8n community node for interacting with the Tess API by Pareto
20 lines (19 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TessApi = void 0;
class TessApi {
constructor() {
this.name = 'tessApi';
this.displayName = 'Tess API';
this.documentationUrl = 'https://docs.tess.pareto.io/api/introduction';
this.properties = [
{
displayName: 'API Token',
name: 'apiToken',
type: 'string',
default: '',
},
];
}
}
exports.TessApi = TessApi;