Merge pull request #1325 from automatisch/AUT-318
feat(invoice-ninja): add new clients trigger
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
import defineApp from '../../helpers/define-app';
|
import defineApp from '../../helpers/define-app';
|
||||||
import addAuthHeader from './common/add-auth-header';
|
import addAuthHeader from './common/add-auth-header';
|
||||||
import auth from './auth';
|
import auth from './auth';
|
||||||
|
import triggers from './triggers';
|
||||||
|
|
||||||
export default defineApp({
|
export default defineApp({
|
||||||
name: 'Invoice Ninja',
|
name: 'Invoice Ninja',
|
||||||
@@ -13,4 +14,5 @@ export default defineApp({
|
|||||||
supportsConnections: true,
|
supportsConnections: true,
|
||||||
beforeRequest: [addAuthHeader],
|
beforeRequest: [addAuthHeader],
|
||||||
auth,
|
auth,
|
||||||
|
triggers,
|
||||||
});
|
});
|
||||||
|
@@ -0,0 +1,3 @@
|
|||||||
|
import newClients from './new-clients';
|
||||||
|
|
||||||
|
export default [newClients];
|
@@ -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}`);
|
||||||
|
},
|
||||||
|
});
|
@@ -174,6 +174,7 @@ export default defineConfig({
|
|||||||
collapsible: true,
|
collapsible: true,
|
||||||
collapsed: true,
|
collapsed: true,
|
||||||
items: [
|
items: [
|
||||||
|
{ text: 'Triggers', link: '/apps/invoice-ninja/triggers' },
|
||||||
{ text: 'Connection', link: '/apps/invoice-ninja/connection' },
|
{ text: 'Connection', link: '/apps/invoice-ninja/connection' },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
12
packages/docs/pages/apps/invoice-ninja/triggers.md
Normal file
12
packages/docs/pages/apps/invoice-ninja/triggers.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
favicon: /favicons/invoice-ninja.svg
|
||||||
|
items:
|
||||||
|
- name: New clients
|
||||||
|
desc: Triggers when a new client is added.
|
||||||
|
---
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import CustomListing from '../../components/CustomListing.vue'
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<CustomListing />
|
@@ -17,6 +17,7 @@ The following integrations are currently supported by Automatisch.
|
|||||||
- [Google Sheets](/apps/google-sheets/triggers)
|
- [Google Sheets](/apps/google-sheets/triggers)
|
||||||
- [HTTP Request](/apps/http-request/actions)
|
- [HTTP Request](/apps/http-request/actions)
|
||||||
- [HubSpot](/apps/hubspot/actions)
|
- [HubSpot](/apps/hubspot/actions)
|
||||||
|
- [Invoice Ninja](/apps/invoice-ninja/triggers)
|
||||||
- [Mattermost](/apps/mattermost/actions)
|
- [Mattermost](/apps/mattermost/actions)
|
||||||
- [Miro](/apps/miro/actions)
|
- [Miro](/apps/miro/actions)
|
||||||
- [Notion](/apps/notion/triggers)
|
- [Notion](/apps/notion/triggers)
|
||||||
|
Reference in New Issue
Block a user