mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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:
@@ -3,6 +3,7 @@ import type {
|
||||
IBinaryKeyData,
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
IHttpRequestMethods,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
@@ -874,7 +875,7 @@ export class NextCloud implements INodeType {
|
||||
const operation = this.getNodeParameter('operation', 0);
|
||||
|
||||
let endpoint = '';
|
||||
let requestMethod = '';
|
||||
let requestMethod: IHttpRequestMethods = 'GET';
|
||||
let responseData: any;
|
||||
|
||||
let body: string | Buffer | IDataObject = '';
|
||||
@@ -914,14 +915,14 @@ export class NextCloud implements INodeType {
|
||||
// create
|
||||
// ----------------------------------
|
||||
|
||||
requestMethod = 'MKCOL';
|
||||
requestMethod = 'MKCOL' as IHttpRequestMethods;
|
||||
endpoint = this.getNodeParameter('path', i) as string;
|
||||
} else if (operation === 'list') {
|
||||
// ----------------------------------
|
||||
// list
|
||||
// ----------------------------------
|
||||
|
||||
requestMethod = 'PROPFIND';
|
||||
requestMethod = 'PROPFIND' as IHttpRequestMethods;
|
||||
endpoint = this.getNodeParameter('path', i) as string;
|
||||
}
|
||||
}
|
||||
@@ -932,7 +933,7 @@ export class NextCloud implements INodeType {
|
||||
// copy
|
||||
// ----------------------------------
|
||||
|
||||
requestMethod = 'COPY';
|
||||
requestMethod = 'COPY' as IHttpRequestMethods;
|
||||
endpoint = this.getNodeParameter('path', i) as string;
|
||||
const toPath = this.getNodeParameter('toPath', i) as string;
|
||||
headers.Destination = `${credentials.webDavUrl}/${encodeURI(toPath)}`;
|
||||
@@ -948,7 +949,7 @@ export class NextCloud implements INodeType {
|
||||
// move
|
||||
// ----------------------------------
|
||||
|
||||
requestMethod = 'MOVE';
|
||||
requestMethod = 'MOVE' as IHttpRequestMethods;
|
||||
endpoint = this.getNodeParameter('path', i) as string;
|
||||
const toPath = this.getNodeParameter('toPath', i) as string;
|
||||
headers.Destination = `${credentials.webDavUrl}/${encodeURI(toPath)}`;
|
||||
|
||||
Reference in New Issue
Block a user