mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user