n8n/packages/nodes-base/credentials/WhatsAppApi.credentials.ts

60 lines
1.1 KiB
TypeScript
Raw Normal View History

import type {
feat(WhatsApp Business node): WhatsApp node (#3659) * feat: base structure for whatsapp node with credentials * feat: messages operation * feat: create generic api call with credentials and test first operation * fix: add missing template params * fix: language code for template * feat: media type and start of template components * fix: remove provider name from media type * lintfix * fix: format * feat: media operations w/o upload media type * :recycle: Convert WhatsApp Business node to declarative style * :bug: form data not being sent with boundary in header * :sparkles: add media operations to WhatsApp * :sparkles: add credentials test to WhatsApp credentials * :recycle: move preview url to optional collection in whatsapp message * :recycle: renamed media operations in whatsapp node * :refactor: move media file name to optional fields in whatsapp node * :sparkles: add upload from n8n for whatsapp node message resource * :fire: remove other template component types in whatsapp node * :speech_bubble: add specialised text for media types in WhatsApp node * :zap: Load dinamically phone number and template name * :zap: Add action property to all operations * :fire: Remove unnecessary imports * :zap: Use getBinaryDataBuffer helper * :zap: Add components property * :sparkles: send components for whatsapp templates and template language * :label: fix WhatsApp node message function types * :label: fix any in whatsapp message functions * :fire: remove unused import * :zap: Improvements * :zap: Add send location * :zap: Add send contact * :zap: Small improvement * :recycle: changes for review * :bug: fix presend error * :recycle: change lat/long to numbers with proper clamping * fix: bad merge * refactor: changes for review * update package-lock.json * update package.-lock.json * update Co-authored-by: cxgarcia <schlaubitzcristobal@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2022-09-29 17:17:46 -07:00
IAuthenticateGeneric,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class WhatsAppApi implements ICredentialType {
name = 'whatsAppApi';
feat(WhatsApp Business node): WhatsApp node (#3659) * feat: base structure for whatsapp node with credentials * feat: messages operation * feat: create generic api call with credentials and test first operation * fix: add missing template params * fix: language code for template * feat: media type and start of template components * fix: remove provider name from media type * lintfix * fix: format * feat: media operations w/o upload media type * :recycle: Convert WhatsApp Business node to declarative style * :bug: form data not being sent with boundary in header * :sparkles: add media operations to WhatsApp * :sparkles: add credentials test to WhatsApp credentials * :recycle: move preview url to optional collection in whatsapp message * :recycle: renamed media operations in whatsapp node * :refactor: move media file name to optional fields in whatsapp node * :sparkles: add upload from n8n for whatsapp node message resource * :fire: remove other template component types in whatsapp node * :speech_bubble: add specialised text for media types in WhatsApp node * :zap: Load dinamically phone number and template name * :zap: Add action property to all operations * :fire: Remove unnecessary imports * :zap: Use getBinaryDataBuffer helper * :zap: Add components property * :sparkles: send components for whatsapp templates and template language * :label: fix WhatsApp node message function types * :label: fix any in whatsapp message functions * :fire: remove unused import * :zap: Improvements * :zap: Add send location * :zap: Add send contact * :zap: Small improvement * :recycle: changes for review * :bug: fix presend error * :recycle: change lat/long to numbers with proper clamping * fix: bad merge * refactor: changes for review * update package-lock.json * update package.-lock.json * update Co-authored-by: cxgarcia <schlaubitzcristobal@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2022-09-29 17:17:46 -07:00
displayName = 'WhatsApp API';
feat(WhatsApp Business node): WhatsApp node (#3659) * feat: base structure for whatsapp node with credentials * feat: messages operation * feat: create generic api call with credentials and test first operation * fix: add missing template params * fix: language code for template * feat: media type and start of template components * fix: remove provider name from media type * lintfix * fix: format * feat: media operations w/o upload media type * :recycle: Convert WhatsApp Business node to declarative style * :bug: form data not being sent with boundary in header * :sparkles: add media operations to WhatsApp * :sparkles: add credentials test to WhatsApp credentials * :recycle: move preview url to optional collection in whatsapp message * :recycle: renamed media operations in whatsapp node * :refactor: move media file name to optional fields in whatsapp node * :sparkles: add upload from n8n for whatsapp node message resource * :fire: remove other template component types in whatsapp node * :speech_bubble: add specialised text for media types in WhatsApp node * :zap: Load dinamically phone number and template name * :zap: Add action property to all operations * :fire: Remove unnecessary imports * :zap: Use getBinaryDataBuffer helper * :zap: Add components property * :sparkles: send components for whatsapp templates and template language * :label: fix WhatsApp node message function types * :label: fix any in whatsapp message functions * :fire: remove unused import * :zap: Improvements * :zap: Add send location * :zap: Add send contact * :zap: Small improvement * :recycle: changes for review * :bug: fix presend error * :recycle: change lat/long to numbers with proper clamping * fix: bad merge * refactor: changes for review * update package-lock.json * update package.-lock.json * update Co-authored-by: cxgarcia <schlaubitzcristobal@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2022-09-29 17:17:46 -07:00
documentationUrl = 'whatsApp';
feat(WhatsApp Business node): WhatsApp node (#3659) * feat: base structure for whatsapp node with credentials * feat: messages operation * feat: create generic api call with credentials and test first operation * fix: add missing template params * fix: language code for template * feat: media type and start of template components * fix: remove provider name from media type * lintfix * fix: format * feat: media operations w/o upload media type * :recycle: Convert WhatsApp Business node to declarative style * :bug: form data not being sent with boundary in header * :sparkles: add media operations to WhatsApp * :sparkles: add credentials test to WhatsApp credentials * :recycle: move preview url to optional collection in whatsapp message * :recycle: renamed media operations in whatsapp node * :refactor: move media file name to optional fields in whatsapp node * :sparkles: add upload from n8n for whatsapp node message resource * :fire: remove other template component types in whatsapp node * :speech_bubble: add specialised text for media types in WhatsApp node * :zap: Load dinamically phone number and template name * :zap: Add action property to all operations * :fire: Remove unnecessary imports * :zap: Use getBinaryDataBuffer helper * :zap: Add components property * :sparkles: send components for whatsapp templates and template language * :label: fix WhatsApp node message function types * :label: fix any in whatsapp message functions * :fire: remove unused import * :zap: Improvements * :zap: Add send location * :zap: Add send contact * :zap: Small improvement * :recycle: changes for review * :bug: fix presend error * :recycle: change lat/long to numbers with proper clamping * fix: bad merge * refactor: changes for review * update package-lock.json * update package.-lock.json * update Co-authored-by: cxgarcia <schlaubitzcristobal@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2022-09-29 17:17:46 -07:00
properties: INodeProperties[] = [
{
displayName: 'Access Token',
type: 'string',
typeOptions: { password: true },
feat(WhatsApp Business node): WhatsApp node (#3659) * feat: base structure for whatsapp node with credentials * feat: messages operation * feat: create generic api call with credentials and test first operation * fix: add missing template params * fix: language code for template * feat: media type and start of template components * fix: remove provider name from media type * lintfix * fix: format * feat: media operations w/o upload media type * :recycle: Convert WhatsApp Business node to declarative style * :bug: form data not being sent with boundary in header * :sparkles: add media operations to WhatsApp * :sparkles: add credentials test to WhatsApp credentials * :recycle: move preview url to optional collection in whatsapp message * :recycle: renamed media operations in whatsapp node * :refactor: move media file name to optional fields in whatsapp node * :sparkles: add upload from n8n for whatsapp node message resource * :fire: remove other template component types in whatsapp node * :speech_bubble: add specialised text for media types in WhatsApp node * :zap: Load dinamically phone number and template name * :zap: Add action property to all operations * :fire: Remove unnecessary imports * :zap: Use getBinaryDataBuffer helper * :zap: Add components property * :sparkles: send components for whatsapp templates and template language * :label: fix WhatsApp node message function types * :label: fix any in whatsapp message functions * :fire: remove unused import * :zap: Improvements * :zap: Add send location * :zap: Add send contact * :zap: Small improvement * :recycle: changes for review * :bug: fix presend error * :recycle: change lat/long to numbers with proper clamping * fix: bad merge * refactor: changes for review * update package-lock.json * update package.-lock.json * update Co-authored-by: cxgarcia <schlaubitzcristobal@gmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2022-09-29 17:17:46 -07:00
name: 'accessToken',
default: '',
required: true,
},
{
displayName: 'Bussiness Account ID',
type: 'string',
name: 'businessAccountId',
default: '',
required: true,
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.accessToken}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: 'https://graph.facebook.com/v13.0',
url: '/',
ignoreHttpStatusErrors: true,
},
rules: [
{
type: 'responseSuccessBody',
properties: {
key: 'error.type',
value: 'OAuthException',
message: 'Invalid access token',
},
},
],
};
}