@wistia/bottler-helpers 1.11.0 → 1.12.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 +7 -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,6 +326,7 @@ 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
|
|
@@ -333,6 +336,7 @@ type LiveStreamEventAggregate {
|
|
|
333
336
|
currentlyWatching: Int
|
|
334
337
|
engagedAttendees: Int
|
|
335
338
|
impressions: Int
|
|
339
|
+
onDemandImpressions: Int
|
|
336
340
|
eventTime: Int
|
|
337
341
|
attendeesHistogram: [Int]
|
|
338
342
|
chatHistogram: [Int]
|