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