-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
97 changed files
with
5,629 additions
and
6,070 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import type TranscriptInsightUnit from './TranscriptInsightUnit'; | ||
import type SummaryInsightUnit from './SummaryInsightUnit'; | ||
import type HighlightsInsightUnit from './HighlightsInsightUnit'; | ||
import type NextStepsInsightUnit from './NextStepsInsightUnit'; | ||
import type BulletedSummaryInsightUnit from './BulletedSummaryInsightUnit'; | ||
import type AIScoreInsightUnit from './AIScoreInsightUnit'; | ||
|
||
interface AIInsights { | ||
/** | ||
*/ | ||
Transcript?: TranscriptInsightUnit[]; | ||
|
||
/** | ||
*/ | ||
Summary?: SummaryInsightUnit[]; | ||
|
||
/** | ||
*/ | ||
Highlights?: HighlightsInsightUnit[]; | ||
|
||
/** | ||
*/ | ||
NextSteps?: NextStepsInsightUnit[]; | ||
|
||
/** | ||
*/ | ||
BulletedSummary?: BulletedSummaryInsightUnit[]; | ||
|
||
/** | ||
*/ | ||
AIScore?: AIScoreInsightUnit[]; | ||
} | ||
|
||
export default AIInsights; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
interface AIScoreInsightUnit { | ||
/** | ||
* Value of the score | ||
* Required | ||
* Example: 7 | ||
*/ | ||
value?: string; | ||
} | ||
|
||
export default AIScoreInsightUnit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
packages/core/src/definitions/BulletedSummaryInsightUnit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
interface BulletedSummaryInsightUnit { | ||
/** | ||
* Value of the summary | ||
* Required | ||
* Example: conversational insights text | ||
*/ | ||
value?: string; | ||
} | ||
|
||
export default BulletedSummaryInsightUnit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
interface CallMonitoringGroupSite { | ||
/** | ||
* Identifier of a site | ||
*/ | ||
id?: string; | ||
|
||
/** | ||
* Name of a site | ||
*/ | ||
name?: string; | ||
} | ||
|
||
export default CallMonitoringGroupSite; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.