feat(invoice-ninja): add new clients trigger

This commit is contained in:
Rıdvan Akca
2023-10-06 11:29:26 +03:00
parent 497ce2e84f
commit 58f8ded161
6 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
import newClients from './new-clients';
export default [newClients];

View File

@@ -0,0 +1,65 @@
import Crypto from 'crypto';
import isEmpty from 'lodash/isEmpty';
import defineTrigger from '../../../../helpers/define-trigger';
type Response = {
data: {
data: {
id: string;
event_id: string;
target_url: string;
format: string;
};
};
};
export default defineTrigger({
name: 'New clients',
key: 'newClients',
type: 'webhook',
description: 'Triggers when a new client is added.',
arguments: [],
async run($) {
const dataItem = {
raw: $.request.body,
meta: {
internalId: Crypto.randomUUID(),
},
};
$.pushTriggerItem(dataItem);
},
async testRun($) {
const lastExecutionStep = await $.getLastExecutionStep();
if (!isEmpty(lastExecutionStep?.dataOut)) {
$.pushTriggerItem({
raw: lastExecutionStep.dataOut,
meta: {
internalId: '',
},
});
}
},
async registerHook($) {
const CREATE_CLIENT_EVENT_ID = '1';
const payload = {
target_url: $.webhookUrl,
event_id: CREATE_CLIENT_EVENT_ID,
format: 'JSON',
rest_method: 'post',
};
const response: Response = await $.http.post('/v1/webhooks', payload);
await $.flow.setRemoteWebhookId(response.data.data.id);
},
async unregisterHook($) {
await $.http.delete(`/v1/webhooks/${$.flow.remoteWebhookId}`);
},
});