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