@wistia/bottler-helpers 1.0.16 → 1.0.18
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 +13 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -64,6 +64,18 @@ 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
|
+
pollId: Int!
|
|
73
|
+
pollQuestionId: Int!
|
|
74
|
+
pollQuestionText: String!
|
|
75
|
+
pollOptionId: Int!
|
|
76
|
+
pollOptionText: String!
|
|
77
|
+
}
|
|
78
|
+
|
|
67
79
|
type RelativeMediaAggregate {
|
|
68
80
|
accountKey: String
|
|
69
81
|
accountName: String
|
|
@@ -168,6 +180,7 @@ type LiveStreamEventAggregate {
|
|
|
168
180
|
visualFocusPlayedHistogram: [Int]
|
|
169
181
|
pollQuestions: [PollQuestion!]
|
|
170
182
|
pollResponses(visitorKey: String!): [PollResponse!]
|
|
183
|
+
visitorPollResponses: [VisitorPollResponse!]
|
|
171
184
|
qaQuestions: Int
|
|
172
185
|
qaAnswers: Int
|
|
173
186
|
annotationImpressions: Int
|