feat(invoice-ninja): add new invoices trigger
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import newClients from './new-clients';
|
||||
import newCredits from './new-credits';
|
||||
import newInvoices from './new-invoices';
|
||||
|
||||
export default [newClients, newCredits];
|
||||
export default [newClients, newCredits, newInvoices];
|
||||
|
@@ -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 invoices',
|
||||
key: 'newInvoices',
|
||||
type: 'webhook',
|
||||
description: 'Triggers when a new invoice 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_INVOICE_EVENT_ID = '2';
|
||||
|
||||
const payload = {
|
||||
target_url: $.webhookUrl,
|
||||
event_id: CREATE_INVOICE_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}`);
|
||||
},
|
||||
});
|
@@ -5,6 +5,8 @@ items:
|
||||
desc: Triggers when a new client is added.
|
||||
- name: New credits
|
||||
desc: Triggers when a new credit is added.
|
||||
- name: New invoices
|
||||
desc: Triggers when a new invoice is added.
|
||||
---
|
||||
|
||||
<script setup>
|
||||
|
Reference in New Issue
Block a user