n8n-nodes-aluvia
Version:
n8n community node for making HTTP requests through Aluvia's mobile connectivity network
25 lines • 798 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AluviaToken = void 0;
class AluviaToken {
constructor() {
this.name = 'aluviaToken';
this.displayName = 'Aluvia Token';
this.documentationUrl = 'https://www.docs.aluvia.io/aluvia-api/api-reference';
this.properties = [
{
displayName: 'Token',
name: 'token',
type: 'string',
typeOptions: {
password: true,
},
default: '',
required: true,
description: 'Your Aluvia token from the Aluvia dashboard',
},
];
}
}
exports.AluviaToken = AluviaToken;
//# sourceMappingURL=AluviaToken.credentials.js.map