@wistia/bottler-helpers 1.34.0 → 1.36.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.graphql +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.34.0",
3
+ "version": "1.36.0",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -67,6 +67,7 @@ type RootQueryType {
67
67
  liveEvents(liveStreamEventIds: [Int]!, includePostEvent: Boolean): LiveEvents
68
68
  liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
69
69
  liveSeries(liveSeriesId: Int!, interval: Interval): LiveSeries
70
+ liveSeriesList(liveSeriesIds: [Int!]!): [LiveSeriesListEntry!]!
70
71
  liveStreamEvents(
71
72
  limit: Int, interval: Interval, orderBy: LiveStreamEventOrderMetric, order: Order, liveStreamEventIds: [Int]
72
73
  ): [LiveStreamEvent!]!
@@ -111,6 +112,13 @@ type LiveSeries {
111
112
  audience(filters: LiveSeriesFilters): LiveSeriesAudience
112
113
  }
113
114
 
115
+ type LiveSeriesListEntry {
116
+ liveSeriesId: Int!
117
+ liveSeriesHashedId: String!
118
+ liveSeriesTitle: String!
119
+ registrations: Int!
120
+ }
121
+
114
122
  input LiveSeriesFilters {
115
123
  uniqueIds: [String]
116
124
  }