refactor: Add IRequestOptions type to helpers.request for more type safety (no-changelog) (#8563)

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Elias Meire
2024-02-14 16:29:09 +01:00
committed by GitHub
parent 24859cfef5
commit 100d9bc087
330 changed files with 1682 additions and 1492 deletions

View File

@@ -1,5 +1,4 @@
import { createHash } from 'crypto';
import type { OptionsWithUri } from 'request';
import type {
ICredentialDataDecryptedObject,
@@ -9,6 +8,8 @@ import type {
ILoadOptionsFunctions,
IWebhookFunctions,
JsonObject,
IHttpRequestMethods,
IRequestOptions,
} from 'n8n-workflow';
import { NodeApiError, NodeOperationError } from 'n8n-workflow';
@@ -21,7 +22,7 @@ export async function getAuthorization(
}
const { password, username } = credentials;
const options: OptionsWithUri = {
const options: IRequestOptions = {
headers: { 'Content-Type': 'application/json' },
method: 'POST',
body: {
@@ -44,7 +45,7 @@ export async function getAuthorization(
export async function taigaApiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IWebhookFunctions,
method: string,
method: IHttpRequestMethods,
resource: string,
body = {},
query = {},
@@ -55,7 +56,7 @@ export async function taigaApiRequest(
const authToken = await getAuthorization.call(this, credentials);
const options: OptionsWithUri = {
const options: IRequestOptions = {
headers: {
'Content-Type': 'application/json',
},
@@ -85,7 +86,7 @@ export async function taigaApiRequest(
export async function taigaApiRequestAllItems(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: string,
method: IHttpRequestMethods,
resource: string,
body: IDataObject = {},
@@ -121,7 +122,7 @@ export function getAutomaticSecret(credentials: ICredentialDataDecryptedObject)
export async function handleListing(
this: IExecuteFunctions,
method: string,
method: IHttpRequestMethods,
endpoint: string,
body: IDataObject,
qs: IDataObject,