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

@@ -2,11 +2,11 @@ import type {
IExecuteSingleFunctions,
IHookFunctions,
IHttpRequestOptions,
IRequestOptions,
IWebhookFunctions,
JsonObject,
} from 'n8n-workflow';
import { jsonParse, NodeOperationError } from 'n8n-workflow';
import type { OptionsWithUri } from 'request';
import MailComposer from 'nodemailer/lib/mail-composer';
export namespace BrevoNode {
type ValidEmailFields = { to: string } | { sender: string } | { cc: string } | { bcc: string };
@@ -311,7 +311,7 @@ export namespace BrevoWebhookApi {
export const fetchWebhooks = async (ref: IHookFunctions, type: string): Promise<Webhooks> => {
const endpoint = `${baseURL}/webhooks?type=${type}`;
const options: OptionsWithUri = {
const options: IRequestOptions = {
method: 'GET',
headers: {
Accept: 'application/json',
@@ -336,7 +336,7 @@ export namespace BrevoWebhookApi {
): Promise<WebhookId> => {
const endpoint = `${baseURL}/webhooks`;
const options: OptionsWithUri = {
const options: IRequestOptions = {
method: 'POST',
headers: {
Accept: 'application/json',
@@ -362,7 +362,7 @@ export namespace BrevoWebhookApi {
const endpoint = `${baseURL}/webhooks/${webhookId}`;
const body = {};
const options: OptionsWithUri = {
const options: IRequestOptions = {
method: 'DELETE',
headers: {
Accept: 'application/json',