mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
perf(tooling): Upgrade to TypeScript 4.8 (#4207)
* ⬆️ Upgrade to TypeScript 4.8 * 🔥 Remove unneeded setting * 📦 Update `package-lock.json` * ⏪ Restore `skipLibCheck` * 📦 Re-update `package-lock.json` * ♻️ Apply feedback * ♻️ Add check to new WhatsApp node * 📦 Update `package-lock.json` * Update package-lock.json * ran `npm run lintfix` Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -22,9 +22,9 @@ export class PushoverApi implements ICredentialType {
|
||||
credentials: ICredentialDataDecryptedObject,
|
||||
requestOptions: IHttpRequestOptions,
|
||||
): Promise<IHttpRequestOptions> {
|
||||
if (requestOptions.method === 'GET') {
|
||||
if (requestOptions.method === 'GET' && requestOptions.qs) {
|
||||
Object.assign(requestOptions.qs, { token: credentials.apiKey });
|
||||
} else {
|
||||
} else if (requestOptions.body) {
|
||||
Object.assign(requestOptions.body, { token: credentials.apiKey });
|
||||
}
|
||||
return requestOptions;
|
||||
|
||||
Reference in New Issue
Block a user