@wistia/bottler-helpers 1.0.18 → 1.0.20

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 +33 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -459,6 +459,8 @@ type RootQueryType {
459
459
  mediaEvents(interval: Interval, searchFilter: SearchFilter): MediaEvents
460
460
  liveEvents(liveStreamEventIds: [Int]!, includePostEvent: Boolean): LiveEvents
461
461
  liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
462
+ liveStreamEvents(limit: Int, interval: Interval): [LiveStreamEvent!]!
463
+ liveStreamEventsAccountAggregate(limit: Int, interval: Interval): LiveStreamEventAccountAggregate!
462
464
  mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
463
465
  relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
464
466
  }
@@ -541,6 +543,18 @@ type MediaUtmCampaignAggregate {
541
543
  ctaConversionRate: Float
542
544
  }
543
545
 
546
+ type LiveStreamEventAccountAggregate {
547
+ accountKey: String!
548
+ accountName: String!
549
+ impressions: Int!
550
+ registrations: Int!
551
+ attendees: Int!
552
+ engagedAttendees: Int!
553
+ chatParticipants: Int!
554
+ playedTime: Int!
555
+ mediaPlays: Int!
556
+ }
557
+
544
558
  type LiveEventUtmMediumAggregate {
545
559
  accountKey: String
546
560
  accountName: String
@@ -814,6 +828,25 @@ enum ExportAggregate {
814
828
 
815
829
  union MediaEventAggregate = AccountAggregate | ChannelAggregate | EpisodeAggregate | MediaAggregate | PodcastEpisodeAggregate | PodcastEpisodeApplicationAggregate | ProjectAggregate | AccountEmbedLocationAggregate | MediaEmbedLocationAggregate | MediaReferrerDomainAggregate | MediaEmbedLanguageAggregate | MediaViewerScreenSizeAggregate | MediaUtmCampaignAggregate | MediaUtmSourceAggregate | MediaUtmMediumAggregate
816
830
 
831
+ type LiveStreamEvent {
832
+ liveStreamEventGlobalId: String!
833
+ liveStreamEventHashedId: String!
834
+ liveStreamEventTitle: String!
835
+ liveStreamEventRegistrationStatus: String!
836
+ liveStreamEventCreatedAt: DateTime!
837
+ liveStreamEventEndedAt: DateTime
838
+ liveStreamEventDuration: Int!
839
+ liveRecapUrl: String!
840
+ mediaName: String
841
+ mediaThumbnailUrl: String
842
+ mediaPlays: Int!
843
+ impressions: Int!
844
+ uniqueRegistrations: Int!
845
+ attendees: Int!
846
+ registrationRate: Float!
847
+ attendanceRate: Float!
848
+ }
849
+
817
850
  union MediaEventAggregateResult = AggregateEntries | AggregateError
818
851
 
819
852
  type MediaEvents {