@wistia/bottler-helpers 1.0.15 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.graphql +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
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
@@ -401,6 +410,7 @@ type ChannelMetrics {
401
410
 
402
411
  type RootMutationType {
403
412
  exportMedia(contactId: Int!, interval: Interval, searchFilter: SearchFilter, aggregate: ExportAggregate): ExportStatus
413
+ exportRelativeMedia(contactId: Int!, relativePeriod: RelativePeriod!, searchFilter: SearchFilter): ExportStatus
404
414
  accountDigest(contactId: Int!, interval: Interval!, overrideEmail: String): AccountDigestStatus
405
415
  }
406
416