n8n-nodes-vidfetch
Version:
This node allows the user to make an API call to Vidfetch.
31 lines • 982 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VidfetchApi = void 0;
class VidfetchApi {
constructor() {
this.name = 'vidfetchApi';
this.displayName = 'Vidfetch API';
this.properties = [
{
displayName: 'API URL',
name: 'apiUrl',
type: 'string',
default: 'https://vidfetch-api.com/download/',
placeholder: 'Enter your Vidfetch API URL',
required: true,
},
{
displayName: 'API Bearer Token',
name: 'apiToken',
type: 'string',
typeOptions: {
password: true,
},
default: '',
description: 'The Bearer token for authenticating requests',
},
];
}
}
exports.VidfetchApi = VidfetchApi;
//# sourceMappingURL=VidfetchApi.credentials.js.map