UNPKG

n8n-nodes-difyai

Version:
30 lines 984 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DifyApi = void 0; class DifyApi { constructor() { this.name = 'difyApi'; this.displayName = 'Dify API'; this.documentationUrl = 'https://docs.dify.ai'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', description: 'API Key for authenticating with Dify', }, { displayName: 'Base URL', name: 'baseUrl', type: 'string', default: 'https://api.dify.ai', description: 'Base URL of the Dify instance. Use your self-hosted URL if applicable.', required: true, }, ]; } } exports.DifyApi = DifyApi; //# sourceMappingURL=DifyApi.credentials.js.map