@wistia/bottler-helpers 1.11.0 → 1.13.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 +9 -3
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -65,7 +65,6 @@ type AccountEmbedLocationAggregate {
|
|
|
65
65
|
embedLocationCount: Int
|
|
66
66
|
mediaCount: Int
|
|
67
67
|
embedDomain: String
|
|
68
|
-
embedPath: String
|
|
69
68
|
plays: Int
|
|
70
69
|
playRate: Float
|
|
71
70
|
engagementRate: Float
|
|
@@ -214,8 +213,8 @@ type MediaUtmMediumAggregate {
|
|
|
214
213
|
}
|
|
215
214
|
|
|
216
215
|
type LiveEvent {
|
|
217
|
-
aggregate(includePostEvent: Boolean): LiveStreamEventAggregate
|
|
218
|
-
timeseries(granularity: Granularity
|
|
216
|
+
aggregate(includePostEvent: Boolean, postEventInterval: Interval): LiveStreamEventAggregate
|
|
217
|
+
timeseries(granularity: Granularity!, includePostEvent: Boolean, postEventInterval: Interval): [LiveEventDataPoint]
|
|
219
218
|
currentAttendees: [Attendee]
|
|
220
219
|
referrerDomainRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventReferrerDomainAggregate]
|
|
221
220
|
utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
|
|
@@ -279,6 +278,9 @@ type LiveEventTimeseriesAggregate {
|
|
|
279
278
|
impressions: Int
|
|
280
279
|
registrations: Int
|
|
281
280
|
completionRate: Float
|
|
281
|
+
onDemandImpressions: Int
|
|
282
|
+
onDemandRegistrations: Int
|
|
283
|
+
onDemandCompletionRate: Float
|
|
282
284
|
}
|
|
283
285
|
|
|
284
286
|
type PollQuestion {
|
|
@@ -324,15 +326,19 @@ type LiveStreamEventAggregate {
|
|
|
324
326
|
registrations: Int
|
|
325
327
|
importedRegistrations: Int
|
|
326
328
|
restrictedRegistrations: Int
|
|
329
|
+
onDemandRegistrations: Int
|
|
327
330
|
chats: Int
|
|
328
331
|
totalWatchTime: Int
|
|
329
332
|
averageWatchTime: Int
|
|
330
333
|
chattedAttendees: Int
|
|
331
334
|
attendance: Int
|
|
335
|
+
onDemandPlays: Int
|
|
332
336
|
engagementRate: Float
|
|
333
337
|
currentlyWatching: Int
|
|
334
338
|
engagedAttendees: Int
|
|
339
|
+
onDemandEngagementRate: Float
|
|
335
340
|
impressions: Int
|
|
341
|
+
onDemandImpressions: Int
|
|
336
342
|
eventTime: Int
|
|
337
343
|
attendeesHistogram: [Int]
|
|
338
344
|
chatHistogram: [Int]
|