@bigfootai/bigfoot-types 5.4.20 → 5.4.21

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.
Files changed (3) hide show
  1. package/model.js +4 -0
  2. package/model.ts +6 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -1098,6 +1098,8 @@ regardless of underpinning system.
1098
1098
  //// CONFERENCE START
1099
1099
  exports.IngestTranscriptInputQL = `
1100
1100
  input IngestTranscriptInput {${exports.BusinessObjectFieldsForUpsert}
1101
+ htmlSummary: String
1102
+ rawText: String
1101
1103
  meetingUrl: String
1102
1104
  recordingUrl: String
1103
1105
  transcriptionUrl: String
@@ -1105,6 +1107,8 @@ input IngestTranscriptInput {${exports.BusinessObjectFieldsForUpsert}
1105
1107
  }`;
1106
1108
  exports.TranscriptionQL = `
1107
1109
  type Transcription {${exports.BusinessObjectFields}
1110
+ htmlSummary: String
1111
+ rawText: String
1108
1112
  meetingUrl: String
1109
1113
  recordingUrl: String
1110
1114
  transcriptionUrl: String
package/model.ts CHANGED
@@ -1763,6 +1763,8 @@ regardless of underpinning system.
1763
1763
  //// CONFERENCE START
1764
1764
  export const IngestTranscriptInputQL = `
1765
1765
  input IngestTranscriptInput {${BusinessObjectFieldsForUpsert}
1766
+ htmlSummary: String
1767
+ rawText: String
1766
1768
  meetingUrl: String
1767
1769
  recordingUrl: String
1768
1770
  transcriptionUrl: String
@@ -1770,12 +1772,16 @@ input IngestTranscriptInput {${BusinessObjectFieldsForUpsert}
1770
1772
  }`;
1771
1773
  export const TranscriptionQL = `
1772
1774
  type Transcription {${BusinessObjectFields}
1775
+ htmlSummary: String
1776
+ rawText: String
1773
1777
  meetingUrl: String
1774
1778
  recordingUrl: String
1775
1779
  transcriptionUrl: String
1776
1780
  tasks: [Task]
1777
1781
  }`;
1778
1782
  export class Transcription extends BusinessObject {
1783
+ htmlSummary?: string;
1784
+ rawText?: string;
1779
1785
  meetingUrl?: string;
1780
1786
  recordingUrl?: string;
1781
1787
  transcriptionUrl?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.4.20",
4
+ "version": "5.4.21",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",