@wistia/bottler-helpers 1.0.20 → 1.0.21

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 +14 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -456,10 +456,11 @@ type RootQueryType {
456
456
  medias(searchFilter: SearchFilter): Medias
457
457
  projectsCount: Int
458
458
  channelsCount: Int
459
+ liveStreamEventsCount(interval: Interval): Int
459
460
  mediaEvents(interval: Interval, searchFilter: SearchFilter): MediaEvents
460
461
  liveEvents(liveStreamEventIds: [Int]!, includePostEvent: Boolean): LiveEvents
461
462
  liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
462
- liveStreamEvents(limit: Int, interval: Interval): [LiveStreamEvent!]!
463
+ liveStreamEvents(limit: Int, interval: Interval, orderBy: LiveStreamEventOrderMetric, order: Order): [LiveStreamEvent!]!
463
464
  liveStreamEventsAccountAggregate(limit: Int, interval: Interval): LiveStreamEventAccountAggregate!
464
465
  mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
465
466
  relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
@@ -548,10 +549,12 @@ type LiveStreamEventAccountAggregate {
548
549
  accountName: String!
549
550
  impressions: Int!
550
551
  registrations: Int!
552
+ uniqueRegistrations: Int!
551
553
  attendees: Int!
552
554
  engagedAttendees: Int!
553
555
  chatParticipants: Int!
554
556
  playedTime: Int!
557
+ uniquePlayedTime: Int!
555
558
  mediaPlays: Int!
556
559
  }
557
560
 
@@ -871,6 +874,16 @@ type Medias {
871
874
  totalCount: Int
872
875
  }
873
876
 
877
+ "A metric to order live stream event entries by"
878
+ enum LiveStreamEventOrderMetric {
879
+ IMPRESSIONS
880
+ UNIQUE_REGISTRATIONS
881
+ ATTENDEES
882
+ REGISTRATION_RATE
883
+ ATTENDANCE_RATE
884
+ MEDIA_PLAYS
885
+ }
886
+
874
887
  type LiveEvents {
875
888
  aggregate: LiveStreamEventAggregate
876
889
  }