@daouy/n8n-nodes-carbone
Version:
n8n nodes for Carbone integration
32 lines • 929 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CarboneApi = void 0;
class CarboneApi {
constructor() {
this.name = 'carboneApi';
this.displayName = 'Carbone API';
this.documentationUrl = '';
this.properties = [
{
displayName: 'API URL',
name: 'apiUrl',
type: 'string',
default: '',
placeholder: 'https://your-carbone-domain.com/api',
required: true,
},
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: {
password: true,
},
default: '',
required: true,
},
];
}
}
exports.CarboneApi = CarboneApi;
//# sourceMappingURL=CarboneApi.credentials.js.map