@wistia/bottler-helpers 1.9.0 → 1.11.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 +18 -1
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -20,7 +20,9 @@ type RootQueryType {
|
|
|
20
20
|
mediaEvents(interval: Interval, searchFilter: SearchFilter): MediaEvents
|
|
21
21
|
liveEvents(liveStreamEventIds: [Int]!, includePostEvent: Boolean): LiveEvents
|
|
22
22
|
liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
|
|
23
|
-
liveStreamEvents(
|
|
23
|
+
liveStreamEvents(
|
|
24
|
+
limit: Int, interval: Interval, orderBy: LiveStreamEventOrderMetric, order: Order, liveStreamEventIds: [Int]
|
|
25
|
+
): [LiveStreamEvent!]!
|
|
24
26
|
liveStreamEventsAccountAggregate(limit: Int, interval: Interval): LiveStreamEventAccountAggregate!
|
|
25
27
|
liveEventContacts(liveStreamEventId: Int!, filters: LiveFilters): LiveEventContacts
|
|
26
28
|
mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
|
|
@@ -61,6 +63,9 @@ type AccountEmbedLocationAggregate {
|
|
|
61
63
|
accountKey: String
|
|
62
64
|
accountName: String
|
|
63
65
|
embedLocationCount: Int
|
|
66
|
+
mediaCount: Int
|
|
67
|
+
embedDomain: String
|
|
68
|
+
embedPath: String
|
|
64
69
|
plays: Int
|
|
65
70
|
playRate: Float
|
|
66
71
|
engagementRate: Float
|
|
@@ -392,6 +397,16 @@ type ChatDatum {
|
|
|
392
397
|
chats: [String!]!
|
|
393
398
|
}
|
|
394
399
|
|
|
400
|
+
type QuestionItem {
|
|
401
|
+
questionId: String!
|
|
402
|
+
questionText: String!
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
type QuestionDatum {
|
|
406
|
+
roundedPlayerPosition: Int!
|
|
407
|
+
qaQuestions: [QuestionItem!]!
|
|
408
|
+
}
|
|
409
|
+
|
|
395
410
|
type LiveEventContactAggregate {
|
|
396
411
|
visitorKey: String
|
|
397
412
|
accountId: Int
|
|
@@ -419,6 +434,7 @@ type LiveEventContactAggregate {
|
|
|
419
434
|
ipRegion: String
|
|
420
435
|
ipCountry: String
|
|
421
436
|
ipCity: String
|
|
437
|
+
qaQuestions: [QuestionDatum!]!
|
|
422
438
|
qaAnswers: Int
|
|
423
439
|
engagementRate: Float
|
|
424
440
|
focusedRate: Float
|
|
@@ -455,6 +471,7 @@ union LiveEventContactAggregateResult = LiveEventContactAggregateEntries | Aggre
|
|
|
455
471
|
input LiveFilters {
|
|
456
472
|
attendance: AttendanceFilter
|
|
457
473
|
restriction: RestrictionStatusFilter
|
|
474
|
+
uniqueIds: [String]
|
|
458
475
|
}
|
|
459
476
|
|
|
460
477
|
"Filters registrants by attendance status"
|