n8n-nodes-jiemeng
Version:
n8n node for Jiemeng AI video generation using Volcengine Doubao Seedance model. Generate videos from images and text prompts.
29 lines • 898 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JiemengApi = void 0;
class JiemengApi {
constructor() {
this.name = 'jiemengApi';
this.displayName = 'Jiemeng API';
this.documentationUrl = 'https://www.volcengine.com/docs/82379/1263325';
this.properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
this.authenticate = {
type: 'generic',
properties: {
headers: {
'Authorization': '=Bearer {{$credentials.apiKey}}'
}
},
};
}
}
exports.JiemengApi = JiemengApi;
//# sourceMappingURL=JiemengApi.credentials.js.map