@bigfootai/bigfoot-types 5.4.24 → 5.4.26
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/metadata/providers/gong.js +35 -0
- package/metadata/providers/gong.ts +35 -0
- package/metadata/providers/google.js +2 -2
- package/metadata/providers/google.ts +2 -2
- package/metadata/providers/hubspot.js +1 -1
- package/metadata/providers/hubspot.ts +1 -1
- package/metadata/providers/noded.js +1 -1
- package/metadata/providers/noded.ts +1 -1
- package/metadata/providers/salesforce.js +1 -1
- package/metadata/providers/salesforce.ts +1 -1
- package/metadata/providers/slack.js +1 -1
- package/metadata/providers/slack.ts +1 -1
- package/model.js +1 -1
- package/model.ts +2 -2
- package/package.json +1 -1
@@ -0,0 +1,35 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.Gong = exports.Calls = void 0;
|
4
|
+
exports.Calls = {
|
5
|
+
name: 'calls',
|
6
|
+
sobjects: {
|
7
|
+
calendar: false,
|
8
|
+
task: false,
|
9
|
+
transcription: true,
|
10
|
+
document: false,
|
11
|
+
thread: false,
|
12
|
+
template: false,
|
13
|
+
table: true,
|
14
|
+
},
|
15
|
+
linkSubscriptions: [],
|
16
|
+
linkToExternalIdRegex: '/(d+)$/',
|
17
|
+
recordTypeSubscriptions: [],
|
18
|
+
description: 'Ingest calls from Gong as notes in Noded',
|
19
|
+
iconUrl: 'https://www.gong.io/wp-content/uploads/2023/02/gong-logo.png',
|
20
|
+
label: 'Gong Conversations',
|
21
|
+
authentication: true,
|
22
|
+
externalStorage: false,
|
23
|
+
externalIds: [],
|
24
|
+
};
|
25
|
+
exports.Gong = {
|
26
|
+
_id: '679f04d1b92caf4ec2e6eea9',
|
27
|
+
dateCreated: 0,
|
28
|
+
dateUpdated: 0,
|
29
|
+
name: 'gong',
|
30
|
+
description: 'Gong automation for Noded',
|
31
|
+
instanceUrl: 'https://connect-gong-dev.noded.so',
|
32
|
+
applications: [exports.Calls],
|
33
|
+
label: 'Gong Connect',
|
34
|
+
iconUrl: 'https://www.gong.io/wp-content/uploads/2023/02/gong-logo.png',
|
35
|
+
};
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import { Provider, ProviderApplication, TagType } from '../../model';
|
2
|
+
|
3
|
+
export const Calls: ProviderApplication = {
|
4
|
+
name: 'calls',
|
5
|
+
sobjects: {
|
6
|
+
calendar: false,
|
7
|
+
task: false,
|
8
|
+
transcription: true,
|
9
|
+
document: false,
|
10
|
+
thread: false,
|
11
|
+
template: false,
|
12
|
+
table: true,
|
13
|
+
},
|
14
|
+
linkSubscriptions: [],
|
15
|
+
linkToExternalIdRegex: '/(d+)$/',
|
16
|
+
recordTypeSubscriptions: [],
|
17
|
+
description: 'Ingest calls from Gong as notes in Noded',
|
18
|
+
iconUrl: 'https://www.gong.io/wp-content/uploads/2023/02/gong-logo.png',
|
19
|
+
label: 'Gong Conversations',
|
20
|
+
authentication: true,
|
21
|
+
externalStorage: false,
|
22
|
+
externalIds: [],
|
23
|
+
};
|
24
|
+
|
25
|
+
export const Gong: Provider = {
|
26
|
+
_id: '679f04d1b92caf4ec2e6eea9',
|
27
|
+
dateCreated: 0,
|
28
|
+
dateUpdated: 0,
|
29
|
+
name: 'gong',
|
30
|
+
description: 'Gong automation for Noded',
|
31
|
+
instanceUrl: 'https://connect-gong-dev.noded.so',
|
32
|
+
applications: [Calls],
|
33
|
+
label: 'Gong Connect',
|
34
|
+
iconUrl: 'https://www.gong.io/wp-content/uploads/2023/02/gong-logo.png',
|
35
|
+
};
|
@@ -7,7 +7,7 @@ exports.Calendar = {
|
|
7
7
|
sobjects: {
|
8
8
|
calendar: true,
|
9
9
|
task: false,
|
10
|
-
|
10
|
+
transcription: false,
|
11
11
|
document: false,
|
12
12
|
thread: false,
|
13
13
|
template: false,
|
@@ -26,7 +26,7 @@ exports.Docs = {
|
|
26
26
|
sobjects: {
|
27
27
|
calendar: false,
|
28
28
|
task: false,
|
29
|
-
|
29
|
+
transcription: false,
|
30
30
|
document: true,
|
31
31
|
thread: false,
|
32
32
|
template: false,
|
@@ -5,7 +5,7 @@ export const Calendar: ProviderApplication = {
|
|
5
5
|
sobjects: {
|
6
6
|
calendar: true,
|
7
7
|
task: false,
|
8
|
-
|
8
|
+
transcription: false,
|
9
9
|
document: false,
|
10
10
|
thread: false,
|
11
11
|
template: false,
|
@@ -27,7 +27,7 @@ export const Docs: ProviderApplication = {
|
|
27
27
|
sobjects: {
|
28
28
|
calendar: false,
|
29
29
|
task: false,
|
30
|
-
|
30
|
+
transcription: false,
|
31
31
|
document: true,
|
32
32
|
thread: false,
|
33
33
|
template: false,
|
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -558,7 +558,7 @@ export const StandardObjectsQL = `
|
|
558
558
|
type StandardObjects {
|
559
559
|
task: Boolean!
|
560
560
|
calendar: Boolean!
|
561
|
-
|
561
|
+
transcription: Boolean!
|
562
562
|
document: Boolean!
|
563
563
|
thread: Boolean!
|
564
564
|
template: Boolean!
|
@@ -567,7 +567,7 @@ type StandardObjects {
|
|
567
567
|
export interface StandardObjects {
|
568
568
|
task: boolean;
|
569
569
|
calendar: boolean;
|
570
|
-
|
570
|
+
transcription: boolean;
|
571
571
|
document: boolean;
|
572
572
|
thread: boolean;
|
573
573
|
template: boolean;
|