@bigfootai/bigfoot-types 5.4.11 → 5.4.13

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.
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HubSpot = void 0;
4
+ const model_1 = require("../../model");
5
+ exports.HubSpot = {
6
+ _id: '678b58f285f1e9930352e26a',
7
+ dateCreated: 0,
8
+ dateUpdated: 0,
9
+ name: 'hubspot',
10
+ description: 'HubSpot automation for Noded',
11
+ instanceUrl: 'https://connect-hubspot-dev.noded.so',
12
+ applications: [
13
+ {
14
+ name: 'crm',
15
+ sobjects: {
16
+ calendar: false,
17
+ task: false,
18
+ conference: false,
19
+ document: false,
20
+ thread: false,
21
+ template: false,
22
+ table: true,
23
+ },
24
+ linkSubscriptions: ['https://app.hubspot.com'],
25
+ linkToExternalIdRegex: '/(d+)$/',
26
+ recordTypeSubscriptions: ['noded.opportunity', 'noded.case'],
27
+ description: "Add Ticket and Deal previews and monitor changes over time so you're always up-to-date.",
28
+ iconUrl: 'https://cdn.icon-icons.com/icons2/2699/PNG/512/hubspot_logo_icon_170009.png',
29
+ label: 'HubSpot CRM',
30
+ authentication: true,
31
+ externalStorage: true,
32
+ externalIds: [
33
+ {
34
+ label: 'Account',
35
+ blockType: model_1.BlockType.Record,
36
+ tagType: model_1.TagType.Organization,
37
+ },
38
+ {
39
+ label: 'Contact',
40
+ blockType: model_1.BlockType.Record,
41
+ tagType: model_1.TagType.Person,
42
+ tagSubType: 'contact',
43
+ },
44
+ {
45
+ label: 'User',
46
+ blockType: model_1.BlockType.Record,
47
+ tagType: model_1.TagType.Person,
48
+ tagSubType: 'user',
49
+ },
50
+ ],
51
+ },
52
+ ],
53
+ label: 'HubSpot Connect',
54
+ iconUrl: 'https://cdn.icon-icons.com/icons2/2699/PNG/512/hubspot_logo_icon_170009.png',
55
+ };
@@ -0,0 +1,56 @@
1
+ import { BlockType, Provider, TagType } from '../../model';
2
+
3
+ export const HubSpot: Provider = {
4
+ _id: '678b58f285f1e9930352e26a',
5
+ dateCreated: 0,
6
+ dateUpdated: 0,
7
+ name: 'hubspot',
8
+ description: 'HubSpot automation for Noded',
9
+ instanceUrl: 'https://connect-hubspot-dev.noded.so',
10
+ applications: [
11
+ {
12
+ name: 'crm',
13
+ sobjects: {
14
+ calendar: false,
15
+ task: false,
16
+ conference: false,
17
+ document: false,
18
+ thread: false,
19
+ template: false,
20
+ table: true,
21
+ },
22
+ linkSubscriptions: ['https://app.hubspot.com'],
23
+ linkToExternalIdRegex: '/(d+)$/',
24
+ recordTypeSubscriptions: ['noded.opportunity', 'noded.case'],
25
+ description:
26
+ "Add Ticket and Deal previews and monitor changes over time so you're always up-to-date.",
27
+ iconUrl:
28
+ 'https://cdn.icon-icons.com/icons2/2699/PNG/512/hubspot_logo_icon_170009.png',
29
+ label: 'HubSpot CRM',
30
+ authentication: true,
31
+ externalStorage: true,
32
+ externalIds: [
33
+ {
34
+ label: 'Account',
35
+ blockType: BlockType.Record,
36
+ tagType: TagType.Organization,
37
+ },
38
+ {
39
+ label: 'Contact',
40
+ blockType: BlockType.Record,
41
+ tagType: TagType.Person,
42
+ tagSubType: 'contact',
43
+ },
44
+ {
45
+ label: 'User',
46
+ blockType: BlockType.Record,
47
+ tagType: TagType.Person,
48
+ tagSubType: 'user',
49
+ },
50
+ ],
51
+ },
52
+ ],
53
+ label: 'HubSpot Connect',
54
+ iconUrl:
55
+ 'https://cdn.icon-icons.com/icons2/2699/PNG/512/hubspot_logo_icon_170009.png',
56
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.4.11",
4
+ "version": "5.4.13",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",