UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

23 lines 748 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.togglApiRequest = togglApiRequest; const n8n_workflow_1 = require("n8n-workflow"); async function togglApiRequest(method, resource, body = {}, query, uri) { const options = { method, qs: query, uri: uri || `https://api.track.toggl.com/api/v9/me${resource}`, body, json: true, }; if (Object.keys(options.body).length === 0) { delete options.body; } try { return await this.helpers.requestWithAuthentication.call(this, 'togglApi', options); } catch (error) { throw new n8n_workflow_1.NodeApiError(this.getNode(), error); } } //# sourceMappingURL=GenericFunctions.js.map