Skip to content

Commit c4fd75e

Browse files
authored
Add calls dispositions endpoint (#110)
1 parent 81c3d86 commit c4fd75e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vesselapi/integrations",
3-
"version": "0.0.77",
3+
"version": "0.0.78",
44
"description": "Vessel integrations",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

src/platforms/hubspot/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { auth, platform } from '@/sdk';
2+
import callDispositions from './actions/calls/dispositions';
23
import client from './client';
34
import * as constants from './constants';
45
import { icon } from './icon';
@@ -17,5 +18,7 @@ export default platform('hubspot', {
1718
display: { name: 'HubSpot', iconURI: icon, categories: ['crm'] },
1819
constants,
1920
client,
20-
actions: {},
21+
actions: {
22+
callDispositions,
23+
},
2124
});

0 commit comments

Comments
 (0)