mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⚡ Improved Clickify-Node
This commit is contained in:
@@ -2,16 +2,16 @@ import { OptionsWithUri } from 'request';
|
||||
import {
|
||||
ILoadOptionsFunctions,
|
||||
IPollFunctions
|
||||
} from "n8n-core";
|
||||
} from 'n8n-core';
|
||||
|
||||
import {IDataObject} from "n8n-workflow";
|
||||
import { IDataObject } from 'n8n-workflow';
|
||||
|
||||
export async function clockifyApiRequest(this: ILoadOptionsFunctions | IPollFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||
const credentials = this.getCredentials('clockifyApi');
|
||||
if (credentials === undefined) {
|
||||
throw new Error('No credentials got returned!');
|
||||
}
|
||||
const BASE_URL = `https://api.clockify.me/api/v1`;
|
||||
const BASE_URL = 'https://api.clockify.me/api/v1';
|
||||
|
||||
const options: OptionsWithUri = {
|
||||
headers: {
|
||||
|
||||
Reference in New Issue
Block a user