@bigfootai/bigfoot-types 5.4.26 → 5.4.28
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/model.js +10 -1
- package/model.ts +20 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -853,6 +853,7 @@ type UpsertRecommendation {
|
|
853
853
|
upsertType: String!
|
854
854
|
metadata: Metadata
|
855
855
|
connectionId: String!
|
856
|
+
rangeText: String
|
856
857
|
}`;
|
857
858
|
exports.ShareRecommendationQL = `
|
858
859
|
type ShareRecommendation {
|
@@ -1098,20 +1099,28 @@ regardless of underpinning system.
|
|
1098
1099
|
//// CONFERENCE START
|
1099
1100
|
exports.IngestTranscriptionInputQL = `
|
1100
1101
|
input IngestTranscriptionInput {${exports.BusinessObjectFieldsForUpsert}
|
1102
|
+
title: String
|
1103
|
+
startTime: Float
|
1104
|
+
duration: Float
|
1101
1105
|
htmlSummary: String
|
1102
1106
|
rawText: String
|
1103
1107
|
meetingUrl: String
|
1104
1108
|
recordingUrl: String
|
1105
1109
|
transcriptionUrl: String
|
1110
|
+
attendees: [PersonReferenceInput]
|
1106
1111
|
tasks: [UpsertTaskInput]
|
1107
1112
|
}`;
|
1108
1113
|
exports.TranscriptionQL = `
|
1109
1114
|
type Transcription {${exports.BusinessObjectFields}
|
1110
|
-
|
1115
|
+
title: String
|
1116
|
+
startTime: Float
|
1117
|
+
duration: Float
|
1118
|
+
htmlSummary: String
|
1111
1119
|
rawText: String
|
1112
1120
|
meetingUrl: String
|
1113
1121
|
recordingUrl: String
|
1114
1122
|
transcriptionUrl: String
|
1123
|
+
attendees: [PersonReference]
|
1115
1124
|
tasks: [Task]
|
1116
1125
|
}`;
|
1117
1126
|
class Transcription extends BusinessObject {
|
package/model.ts
CHANGED
@@ -1298,6 +1298,7 @@ type UpsertRecommendation {
|
|
1298
1298
|
upsertType: String!
|
1299
1299
|
metadata: Metadata
|
1300
1300
|
connectionId: String!
|
1301
|
+
rangeText: String
|
1301
1302
|
}`;
|
1302
1303
|
export interface UpsertRecommendation {
|
1303
1304
|
table?: Table;
|
@@ -1306,6 +1307,7 @@ export interface UpsertRecommendation {
|
|
1306
1307
|
upsertType: UpsertType;
|
1307
1308
|
metadata: Metadata;
|
1308
1309
|
connectionId: string;
|
1310
|
+
rangeText?: string;
|
1309
1311
|
}
|
1310
1312
|
|
1311
1313
|
export const ShareRecommendationQL = `
|
@@ -1763,28 +1765,40 @@ regardless of underpinning system.
|
|
1763
1765
|
//// CONFERENCE START
|
1764
1766
|
export const IngestTranscriptionInputQL = `
|
1765
1767
|
input IngestTranscriptionInput {${BusinessObjectFieldsForUpsert}
|
1768
|
+
title: String
|
1769
|
+
startTime: Float
|
1770
|
+
duration: Float
|
1766
1771
|
htmlSummary: String
|
1767
1772
|
rawText: String
|
1768
1773
|
meetingUrl: String
|
1769
1774
|
recordingUrl: String
|
1770
1775
|
transcriptionUrl: String
|
1776
|
+
attendees: [PersonReferenceInput]
|
1771
1777
|
tasks: [UpsertTaskInput]
|
1772
1778
|
}`;
|
1773
1779
|
export const TranscriptionQL = `
|
1774
1780
|
type Transcription {${BusinessObjectFields}
|
1775
|
-
|
1781
|
+
title: String
|
1782
|
+
startTime: Float
|
1783
|
+
duration: Float
|
1784
|
+
htmlSummary: String
|
1776
1785
|
rawText: String
|
1777
1786
|
meetingUrl: String
|
1778
1787
|
recordingUrl: String
|
1779
1788
|
transcriptionUrl: String
|
1789
|
+
attendees: [PersonReference]
|
1780
1790
|
tasks: [Task]
|
1781
1791
|
}`;
|
1782
1792
|
export class Transcription extends BusinessObject {
|
1793
|
+
title?: string;
|
1794
|
+
startTime?: number;
|
1795
|
+
duration?: number;
|
1783
1796
|
htmlSummary?: string;
|
1784
1797
|
rawText?: string;
|
1785
1798
|
meetingUrl?: string;
|
1786
1799
|
recordingUrl?: string;
|
1787
1800
|
transcriptionUrl?: string;
|
1801
|
+
attendees?: PersonReference[];
|
1788
1802
|
tasks?: Task[];
|
1789
1803
|
|
1790
1804
|
constructor(
|
@@ -1935,6 +1949,11 @@ export interface RecordFilter {
|
|
1935
1949
|
recordTypeFilters: RecordTypeFilter[];
|
1936
1950
|
}
|
1937
1951
|
|
1952
|
+
export interface UpsertTableProviderRequest {
|
1953
|
+
table: Table;
|
1954
|
+
connectedProvider: ConnectedProvider;
|
1955
|
+
}
|
1956
|
+
|
1938
1957
|
export interface SyncTableProviderRequest {
|
1939
1958
|
recordFilter: RecordFilter;
|
1940
1959
|
connectedProvider: ConnectedProvider;
|