@wistia/bottler-helpers 1.8.0 → 1.10.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 +4 -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
|
|
@@ -434,6 +436,7 @@ type LiveEventContactAggregate {
|
|
|
434
436
|
}
|
|
435
437
|
|
|
436
438
|
type LivePollResponse {
|
|
439
|
+
pollId: Int
|
|
437
440
|
pollQuestionText: String
|
|
438
441
|
pollOptionText: String
|
|
439
442
|
}
|