@friggframework/api-module-hubspot 2.0.0-next.1 → 2.0.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/definition.js +2 -2
- package/package.json +2 -2
package/definition.js
CHANGED
|
@@ -18,7 +18,7 @@ const Definition = {
|
|
|
18
18
|
getEntityDetails: async function (api, callbackParams, tokenResponse, userId) {
|
|
19
19
|
const userDetails = await api.getUserDetails();
|
|
20
20
|
return {
|
|
21
|
-
identifiers: {externalId: userDetails.portalId,
|
|
21
|
+
identifiers: {externalId: userDetails.portalId, userId},
|
|
22
22
|
details: {name: userDetails.hub_domain},
|
|
23
23
|
}
|
|
24
24
|
},
|
|
@@ -31,7 +31,7 @@ const Definition = {
|
|
|
31
31
|
getCredentialDetails: async function (api, userId) {
|
|
32
32
|
const userDetails = await api.getUserDetails();
|
|
33
33
|
return {
|
|
34
|
-
identifiers: {externalId: userDetails.portalId,
|
|
34
|
+
identifiers: {externalId: userDetails.portalId, userId},
|
|
35
35
|
details: {}
|
|
36
36
|
};
|
|
37
37
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/api-module-hubspot",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.2",
|
|
4
4
|
"prettier": "@friggframework/prettier-config",
|
|
5
5
|
"description": "HubSpot API module that lets the Frigg Framework interact with HubSpot",
|
|
6
6
|
"main": "index.js",
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@friggframework/core": "^2.0.0-next.16"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "6976db7ea821bb6e15e171d51c3e1938b6c566f9"
|
|
26
26
|
}
|