n8n-nodes-tiny-erp-api-v2
Version:
Custom nodes for Tiny ERP integration with n8n, including AI tools for AI Agent workflows
25 lines • 772 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TinyErpApi = void 0;
class TinyErpApi {
constructor() {
this.name = 'tinyErpApi';
this.displayName = 'Tiny ERP API';
this.documentationUrl = 'https://api.tiny.com.br/manual';
this.properties = [
{
displayName: 'Token De Acesso',
name: 'token',
type: 'string',
typeOptions: {
password: true,
},
default: '',
required: true,
description: 'Token de acesso da API do Tiny ERP',
},
];
}
}
exports.TinyErpApi = TinyErpApi;
//# sourceMappingURL=TinyErpApi.credentials.js.map