@wistia/bottler-helpers 1.2.0 → 1.3.0

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 +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -22,7 +22,7 @@ type RootQueryType {
22
22
  liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
23
23
  liveStreamEvents(limit: Int, interval: Interval, orderBy: LiveStreamEventOrderMetric, order: Order): [LiveStreamEvent!]!
24
24
  liveStreamEventsAccountAggregate(limit: Int, interval: Interval): LiveStreamEventAccountAggregate!
25
- liveEventContacts(liveStreamEventId: Int!): LiveEventContacts
25
+ liveEventContacts(liveStreamEventId: Int!, filters: LiveFilters): LiveEventContacts
26
26
  mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
27
27
  relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
28
28
  exportStatus(exportId: Int!): ExportStatus
@@ -216,6 +216,14 @@ type LiveEvent {
216
216
  utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
217
217
  utmSourceRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmSourceAggregate]
218
218
  utmMediumRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmMediumAggregate]
219
+ liveStreamEventSegments: [LiveStreamEventSegment]
220
+ }
221
+
222
+ type LiveStreamEventSegment {
223
+ attendeesHistogram: [Int]
224
+ liveSegmentId: Int!
225
+ liveSegmentStartedAt: DateTime
226
+ liveSegmentEndedAt: DateTime
219
227
  }
220
228
 
221
229
  type LiveStreamEvent {