feat(hubspot): Implement create contact action
This commit is contained in:

committed by
Faruk AYDIN

parent
9fbc9d59f5
commit
8ea8067788
20
packages/backend/src/apps/hubspot/auth/index.ts
Normal file
20
packages/backend/src/apps/hubspot/auth/index.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import verifyCredentials from "./verify-credentials";
|
||||
import isStillVerified from "./is-still-verified";
|
||||
|
||||
export default {
|
||||
fields: [
|
||||
{
|
||||
key: 'accessToken',
|
||||
label: 'Access Token',
|
||||
type: 'string' as const,
|
||||
required: true,
|
||||
readOnly: false,
|
||||
value: null,
|
||||
placeholder: null,
|
||||
description: null,
|
||||
clickToCopy: false,
|
||||
},
|
||||
],
|
||||
verifyCredentials,
|
||||
isStillVerified
|
||||
};
|
Reference in New Issue
Block a user