@wistia/bottler-helpers 1.0.16 → 1.0.17
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/package.json +1 -1
- package/schema.graphql +9 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -64,6 +64,14 @@ type PlayedTimeDatapointEpisode {
|
|
|
64
64
|
episodeName: String!
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
type VisitorPollResponse {
|
|
68
|
+
visitorKey: String!
|
|
69
|
+
firstName: String!
|
|
70
|
+
lastName: String!
|
|
71
|
+
email: String!
|
|
72
|
+
pollResponses: [PollResponse!]
|
|
73
|
+
}
|
|
74
|
+
|
|
67
75
|
type RelativeMediaAggregate {
|
|
68
76
|
accountKey: String
|
|
69
77
|
accountName: String
|
|
@@ -168,6 +176,7 @@ type LiveStreamEventAggregate {
|
|
|
168
176
|
visualFocusPlayedHistogram: [Int]
|
|
169
177
|
pollQuestions: [PollQuestion!]
|
|
170
178
|
pollResponses(visitorKey: String!): [PollResponse!]
|
|
179
|
+
visitorPollResponses: [VisitorPollResponse!]
|
|
171
180
|
qaQuestions: Int
|
|
172
181
|
qaAnswers: Int
|
|
173
182
|
annotationImpressions: Int
|