@bigfootai/bigfoot-types 5.4.25 → 5.4.27
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 +1 -1
- package/metadata/providers/gong.ts +1 -1
- package/model.js +9 -1
- package/model.ts +13 -1
- package/package.json +1 -1
@@ -17,7 +17,7 @@ exports.Calls = {
|
|
17
17
|
recordTypeSubscriptions: [],
|
18
18
|
description: 'Ingest calls from Gong as notes in Noded',
|
19
19
|
iconUrl: 'https://www.gong.io/wp-content/uploads/2023/02/gong-logo.png',
|
20
|
-
label: '
|
20
|
+
label: 'Gong Conversations',
|
21
21
|
authentication: true,
|
22
22
|
externalStorage: false,
|
23
23
|
externalIds: [],
|
@@ -16,7 +16,7 @@ export const Calls: ProviderApplication = {
|
|
16
16
|
recordTypeSubscriptions: [],
|
17
17
|
description: 'Ingest calls from Gong as notes in Noded',
|
18
18
|
iconUrl: 'https://www.gong.io/wp-content/uploads/2023/02/gong-logo.png',
|
19
|
-
label: '
|
19
|
+
label: 'Gong Conversations',
|
20
20
|
authentication: true,
|
21
21
|
externalStorage: false,
|
22
22
|
externalIds: [],
|
package/model.js
CHANGED
@@ -1098,20 +1098,28 @@ regardless of underpinning system.
|
|
1098
1098
|
//// CONFERENCE START
|
1099
1099
|
exports.IngestTranscriptionInputQL = `
|
1100
1100
|
input IngestTranscriptionInput {${exports.BusinessObjectFieldsForUpsert}
|
1101
|
+
title: String
|
1102
|
+
startTime: Float
|
1103
|
+
duration: Float
|
1101
1104
|
htmlSummary: String
|
1102
1105
|
rawText: String
|
1103
1106
|
meetingUrl: String
|
1104
1107
|
recordingUrl: String
|
1105
1108
|
transcriptionUrl: String
|
1109
|
+
attendees: [PersonReferenceInput]
|
1106
1110
|
tasks: [UpsertTaskInput]
|
1107
1111
|
}`;
|
1108
1112
|
exports.TranscriptionQL = `
|
1109
1113
|
type Transcription {${exports.BusinessObjectFields}
|
1110
|
-
|
1114
|
+
title: String
|
1115
|
+
startTime: Float
|
1116
|
+
duration: Float
|
1117
|
+
htmlSummary: String
|
1111
1118
|
rawText: String
|
1112
1119
|
meetingUrl: String
|
1113
1120
|
recordingUrl: String
|
1114
1121
|
transcriptionUrl: String
|
1122
|
+
attendees: [PersonReference]
|
1115
1123
|
tasks: [Task]
|
1116
1124
|
}`;
|
1117
1125
|
class Transcription extends BusinessObject {
|
package/model.ts
CHANGED
@@ -1763,28 +1763,40 @@ regardless of underpinning system.
|
|
1763
1763
|
//// CONFERENCE START
|
1764
1764
|
export const IngestTranscriptionInputQL = `
|
1765
1765
|
input IngestTranscriptionInput {${BusinessObjectFieldsForUpsert}
|
1766
|
+
title: String
|
1767
|
+
startTime: Float
|
1768
|
+
duration: Float
|
1766
1769
|
htmlSummary: String
|
1767
1770
|
rawText: String
|
1768
1771
|
meetingUrl: String
|
1769
1772
|
recordingUrl: String
|
1770
1773
|
transcriptionUrl: String
|
1774
|
+
attendees: [PersonReferenceInput]
|
1771
1775
|
tasks: [UpsertTaskInput]
|
1772
1776
|
}`;
|
1773
1777
|
export const TranscriptionQL = `
|
1774
1778
|
type Transcription {${BusinessObjectFields}
|
1775
|
-
|
1779
|
+
title: String
|
1780
|
+
startTime: Float
|
1781
|
+
duration: Float
|
1782
|
+
htmlSummary: String
|
1776
1783
|
rawText: String
|
1777
1784
|
meetingUrl: String
|
1778
1785
|
recordingUrl: String
|
1779
1786
|
transcriptionUrl: String
|
1787
|
+
attendees: [PersonReference]
|
1780
1788
|
tasks: [Task]
|
1781
1789
|
}`;
|
1782
1790
|
export class Transcription extends BusinessObject {
|
1791
|
+
title?: string;
|
1792
|
+
startTime?: number;
|
1793
|
+
duration?: number;
|
1783
1794
|
htmlSummary?: string;
|
1784
1795
|
rawText?: string;
|
1785
1796
|
meetingUrl?: string;
|
1786
1797
|
recordingUrl?: string;
|
1787
1798
|
transcriptionUrl?: string;
|
1799
|
+
attendees?: PersonReference[];
|
1788
1800
|
tasks?: Task[];
|
1789
1801
|
|
1790
1802
|
constructor(
|