feat(invoice-ninja): add create client action

This commit is contained in:
Rıdvan Akca
2023-10-09 14:52:05 +03:00
committed by Faruk AYDIN
parent c4af873036
commit 5b13f880c8
7 changed files with 508 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import triggers from './triggers';
import actions from './actions';
export default defineApp({
name: 'Invoice Ninja',
@@ -15,4 +16,5 @@ export default defineApp({
beforeRequest: [addAuthHeader],
auth,
triggers,
actions,
});