UNPKG

n8n-nodes-execute-code

Version:

A custom n8n node that executes programming code submissions using Judge0 API, ideal for coding contests or automated grading.

29 lines 953 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExecuteCodeApi = void 0; class ExecuteCodeApi { constructor() { this.name = 'executeCodeApi'; this.displayName = 'Execute Code API'; this.documentationUrl = 'https://docs.n8n.io/integrations/creating-nodes/build/declarative-style-node/'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', }, ]; this.authenticate = { type: 'generic', properties: { headers: { 'X-RapidAPI-Key': '={{$credentials.apiKey}}' } }, }; } } exports.ExecuteCodeApi = ExecuteCodeApi; //# sourceMappingURL=ExecuteCodeApi.credentials.js.map