@wistia/bottler-helpers 1.10.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 +21 -2
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -63,6 +63,8 @@ type AccountEmbedLocationAggregate {
|
|
|
63
63
|
accountKey: String
|
|
64
64
|
accountName: String
|
|
65
65
|
embedLocationCount: Int
|
|
66
|
+
mediaCount: Int
|
|
67
|
+
embedDomain: String
|
|
66
68
|
plays: Int
|
|
67
69
|
playRate: Float
|
|
68
70
|
engagementRate: Float
|
|
@@ -211,8 +213,8 @@ type MediaUtmMediumAggregate {
|
|
|
211
213
|
}
|
|
212
214
|
|
|
213
215
|
type LiveEvent {
|
|
214
|
-
aggregate(includePostEvent: Boolean): LiveStreamEventAggregate
|
|
215
|
-
timeseries(granularity: Granularity
|
|
216
|
+
aggregate(includePostEvent: Boolean, postEventInterval: Interval): LiveStreamEventAggregate
|
|
217
|
+
timeseries(granularity: Granularity!, includePostEvent: Boolean, postEventInterval: Interval): [LiveEventDataPoint]
|
|
216
218
|
currentAttendees: [Attendee]
|
|
217
219
|
referrerDomainRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventReferrerDomainAggregate]
|
|
218
220
|
utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
|
|
@@ -276,6 +278,9 @@ type LiveEventTimeseriesAggregate {
|
|
|
276
278
|
impressions: Int
|
|
277
279
|
registrations: Int
|
|
278
280
|
completionRate: Float
|
|
281
|
+
onDemandImpressions: Int
|
|
282
|
+
onDemandRegistrations: Int
|
|
283
|
+
onDemandCompletionRate: Float
|
|
279
284
|
}
|
|
280
285
|
|
|
281
286
|
type PollQuestion {
|
|
@@ -321,6 +326,7 @@ type LiveStreamEventAggregate {
|
|
|
321
326
|
registrations: Int
|
|
322
327
|
importedRegistrations: Int
|
|
323
328
|
restrictedRegistrations: Int
|
|
329
|
+
onDemandRegistrations: Int
|
|
324
330
|
chats: Int
|
|
325
331
|
totalWatchTime: Int
|
|
326
332
|
averageWatchTime: Int
|
|
@@ -330,6 +336,7 @@ type LiveStreamEventAggregate {
|
|
|
330
336
|
currentlyWatching: Int
|
|
331
337
|
engagedAttendees: Int
|
|
332
338
|
impressions: Int
|
|
339
|
+
onDemandImpressions: Int
|
|
333
340
|
eventTime: Int
|
|
334
341
|
attendeesHistogram: [Int]
|
|
335
342
|
chatHistogram: [Int]
|
|
@@ -394,6 +401,16 @@ type ChatDatum {
|
|
|
394
401
|
chats: [String!]!
|
|
395
402
|
}
|
|
396
403
|
|
|
404
|
+
type QuestionItem {
|
|
405
|
+
questionId: String!
|
|
406
|
+
questionText: String!
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
type QuestionDatum {
|
|
410
|
+
roundedPlayerPosition: Int!
|
|
411
|
+
qaQuestions: [QuestionItem!]!
|
|
412
|
+
}
|
|
413
|
+
|
|
397
414
|
type LiveEventContactAggregate {
|
|
398
415
|
visitorKey: String
|
|
399
416
|
accountId: Int
|
|
@@ -421,6 +438,7 @@ type LiveEventContactAggregate {
|
|
|
421
438
|
ipRegion: String
|
|
422
439
|
ipCountry: String
|
|
423
440
|
ipCity: String
|
|
441
|
+
qaQuestions: [QuestionDatum!]!
|
|
424
442
|
qaAnswers: Int
|
|
425
443
|
engagementRate: Float
|
|
426
444
|
focusedRate: Float
|
|
@@ -457,6 +475,7 @@ union LiveEventContactAggregateResult = LiveEventContactAggregateEntries | Aggre
|
|
|
457
475
|
input LiveFilters {
|
|
458
476
|
attendance: AttendanceFilter
|
|
459
477
|
restriction: RestrictionStatusFilter
|
|
478
|
+
uniqueIds: [String]
|
|
460
479
|
}
|
|
461
480
|
|
|
462
481
|
"Filters registrants by attendance status"
|