feat(pipedrive): add create deal action

This commit is contained in:
Rıdvan Akca
2023-09-29 15:56:29 +03:00
committed by Faruk AYDIN
parent aad0b4ddfe
commit c35be241ca
10 changed files with 393 additions and 0 deletions

View File

@@ -2,6 +2,8 @@ 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';
import dynamicData from './dynamic-data';
export default defineApp({
name: 'Pipedrive',
@@ -15,4 +17,6 @@ export default defineApp({
beforeRequest: [addAuthHeader],
auth,
triggers,
actions,
dynamicData,
});