@wistia/bottler-helpers 1.0.11 → 1.0.13

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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -396,7 +396,7 @@ type AccountDigestStatus {
396
396
  type ChannelMetrics {
397
397
  channelGlobalId: String!
398
398
  channelHashedId: String!
399
- plays: Int
399
+ plays: Int!
400
400
  }
401
401
 
402
402
  type RootMutationType {
@@ -437,7 +437,7 @@ type Channel {
437
437
  type RootQueryType {
438
438
  channel(channelHashedId: String!, interval: Interval): Channel
439
439
  channels(channelGlobalIds: [String]!): [ChannelMetrics!]!
440
- episodes(episodeGlobalIds: [String]!): [EpisodeMetrics]!
440
+ episodes(episodeGlobalIds: [String]!): [EpisodeMetrics!]!
441
441
  media(mediaId: Int!): Media
442
442
  medias(searchFilter: SearchFilter): Medias
443
443
  mediaEvents(interval: Interval, searchFilter: SearchFilter): MediaEvents