refactor: Setup typescript project references across workflow, core, and cli (#4519)

* refactor: use consistent folder structure across workflow, core, and cli

* setup typescript project references across workflow, core, and cli
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2022-11-09 15:25:00 +01:00
committed by GitHub
parent de96def372
commit 698d96a617
251 changed files with 1284 additions and 1134 deletions

View File

@@ -81,7 +81,7 @@ import { OptionsWithUri, OptionsWithUrl, RequestCallback, RequiredUriUrl } from
import requestPromise, { RequestPromiseOptions } from 'request-promise-native';
import { fromBuffer } from 'file-type';
import { lookup } from 'mime-types';
import { IncomingHttpHeaders } from 'http';
import axios, {
AxiosError,
AxiosPromise,
@@ -92,18 +92,16 @@ import axios, {
} from 'axios';
import url, { URL, URLSearchParams } from 'url';
import { BinaryDataManager } from './BinaryDataManager';
// eslint-disable-next-line import/no-cycle
import {
ICredentialTestFunctions,
IHookFunctions,
ILoadOptionsFunctions,
IResponseError,
IWorkflowSettings,
PLACEHOLDER_EMPTY_EXECUTION_ID,
} from '.';
} from './Interfaces';
import { extractValue } from './ExtractValue';
import { getClientCredentialsToken } from './OAuth2Helper';
import { IncomingHttpHeaders } from 'http';
import { PLACEHOLDER_EMPTY_EXECUTION_ID } from './Constants';
axios.defaults.timeout = 300000;
// Prevent axios from adding x-form-www-urlencoded headers by default