mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
9089dbe942
* ⬆️ 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>
40 lines
1,004 B
TypeScript
40 lines
1,004 B
TypeScript
import {
|
|
ICredentialDataDecryptedObject,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
IHttpRequestOptions,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class PushoverApi implements ICredentialType {
|
|
name = 'pushoverApi';
|
|
displayName = 'Pushover API';
|
|
documentationUrl = 'pushover';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
async authenticate(
|
|
credentials: ICredentialDataDecryptedObject,
|
|
requestOptions: IHttpRequestOptions,
|
|
): Promise<IHttpRequestOptions> {
|
|
if (requestOptions.method === 'GET' && requestOptions.qs) {
|
|
Object.assign(requestOptions.qs, { token: credentials.apiKey });
|
|
} else if (requestOptions.body) {
|
|
Object.assign(requestOptions.body, { token: credentials.apiKey });
|
|
}
|
|
return requestOptions;
|
|
}
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: 'https://api.pushover.net/1',
|
|
url: '=/licenses.json?token={{$credentials?.apiKey}}',
|
|
method: 'GET',
|
|
},
|
|
};
|
|
}
|