@wistia/bottler-helpers 1.12.0 → 1.14.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.
- package/package.json +1 -1
- package/schema.graphql +6 -2
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -213,8 +213,10 @@ type MediaUtmMediumAggregate {
|
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
type LiveEvent {
|
|
216
|
-
aggregate(includePostEvent: Boolean, postEventInterval: Interval): LiveStreamEventAggregate
|
|
217
|
-
timeseries(
|
|
216
|
+
aggregate(includePostEvent: Boolean, postEventInterval: Interval, preEventInterval: Interval): LiveStreamEventAggregate
|
|
217
|
+
timeseries(
|
|
218
|
+
granularity: Granularity!, includePostEvent: Boolean, postEventInterval: Interval, preEventInterval: Interval
|
|
219
|
+
): [LiveEventDataPoint]
|
|
218
220
|
currentAttendees: [Attendee]
|
|
219
221
|
referrerDomainRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventReferrerDomainAggregate]
|
|
220
222
|
utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
|
|
@@ -332,9 +334,11 @@ type LiveStreamEventAggregate {
|
|
|
332
334
|
averageWatchTime: Int
|
|
333
335
|
chattedAttendees: Int
|
|
334
336
|
attendance: Int
|
|
337
|
+
onDemandPlays: Int
|
|
335
338
|
engagementRate: Float
|
|
336
339
|
currentlyWatching: Int
|
|
337
340
|
engagedAttendees: Int
|
|
341
|
+
onDemandEngagementRate: Float
|
|
338
342
|
impressions: Int
|
|
339
343
|
onDemandImpressions: Int
|
|
340
344
|
eventTime: Int
|