Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,37 @@ type ClaimIntentStepContentSummary {
audioRecordings: [ClaimIntentStepContentSummaryAudioRecording!]!
freeTexts: [String!]!
fileUploads: [ClaimIntentStepContentSummaryFileUpload!]!
"""
Key facts for the collapsed "Claim details" card.
"""
keyDetails: [ClaimIntentStepContentSummaryItem!]!
"""
All question/answer pairs in the order they were asked.
Rendered behind "Show all answers".
"""
answers: [ClaimIntentStepContentSummaryAnswer!]!
}
type ClaimIntentStepContentSummaryAnswer {
"""
The question as it was asked to the member.
"""
title: String!
value: ClaimIntentStepContentSummaryAnswerValue!
}
type ClaimIntentStepContentSummaryAnswerAudio {
url: Url!
"""
Transcript of the recording, when available.
"""
transcript: String
}
type ClaimIntentStepContentSummaryAnswerFiles {
files: [ClaimIntentStepContentSummaryFileUpload!]!
}
type ClaimIntentStepContentSummaryAnswerText {
text: String!
}
union ClaimIntentStepContentSummaryAnswerValue = ClaimIntentStepContentSummaryAnswerText|ClaimIntentStepContentSummaryAnswerAudio|ClaimIntentStepContentSummaryAnswerFiles
type ClaimIntentStepContentSummaryAudioRecording {
url: Url!
}
Expand Down
Loading