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,11 +1,11 @@
|
||||
import type { OptionsWithUri } from 'request';
|
||||
|
||||
import type {
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
ILoadOptionsFunctions,
|
||||
IPollFunctions,
|
||||
JsonObject,
|
||||
IHttpRequestMethods,
|
||||
IRequestOptions,
|
||||
} from 'n8n-workflow';
|
||||
import { NodeApiError } from 'n8n-workflow';
|
||||
|
||||
@@ -49,7 +49,7 @@ export async function getBaseAccessToken(
|
||||
return;
|
||||
}
|
||||
|
||||
const options: OptionsWithUri = {
|
||||
const options: IRequestOptions = {
|
||||
headers: {
|
||||
Authorization: `Token ${ctx?.credentials?.token}`,
|
||||
},
|
||||
@@ -76,7 +76,7 @@ function endpointCtxExpr(ctx: ICtx, endpoint: string): string {
|
||||
export async function seaTableApiRequest(
|
||||
this: IExecuteFunctions | ILoadOptionsFunctions | IPollFunctions,
|
||||
ctx: ICtx,
|
||||
method: string,
|
||||
method: IHttpRequestMethods,
|
||||
endpoint: string,
|
||||
|
||||
body: any = {},
|
||||
@@ -90,7 +90,7 @@ export async function seaTableApiRequest(
|
||||
|
||||
await getBaseAccessToken.call(this, ctx);
|
||||
|
||||
const options: OptionsWithUri = {
|
||||
const options: IRequestOptions = {
|
||||
headers: {
|
||||
Authorization: `Token ${ctx?.base?.access_token}`,
|
||||
},
|
||||
@@ -120,7 +120,7 @@ export async function setableApiRequestAllItems(
|
||||
this: IExecuteFunctions | IPollFunctions,
|
||||
ctx: ICtx,
|
||||
propertyName: string,
|
||||
method: string,
|
||||
method: IHttpRequestMethods,
|
||||
endpoint: string,
|
||||
body: IDataObject,
|
||||
query?: IDataObject,
|
||||
|
||||
Reference in New Issue
Block a user