@wistia/bottler-helpers 1.0.17 → 1.0.19

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 +25 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -69,7 +69,11 @@ type VisitorPollResponse {
69
69
  firstName: String!
70
70
  lastName: String!
71
71
  email: String!
72
- pollResponses: [PollResponse!]
72
+ pollId: Int!
73
+ pollQuestionId: Int!
74
+ pollQuestionText: String!
75
+ pollOptionId: Int!
76
+ pollOptionText: String!
73
77
  }
74
78
 
75
79
  type RelativeMediaAggregate {
@@ -455,6 +459,7 @@ type RootQueryType {
455
459
  mediaEvents(interval: Interval, searchFilter: SearchFilter): MediaEvents
456
460
  liveEvents(liveStreamEventIds: [Int]!, includePostEvent: Boolean): LiveEvents
457
461
  liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
462
+ liveStreamEvents(limit: Int, interval: Interval): [LiveStreamEvent!]!
458
463
  mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
459
464
  relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
460
465
  }
@@ -810,6 +815,25 @@ enum ExportAggregate {
810
815
 
811
816
  union MediaEventAggregate = AccountAggregate | ChannelAggregate | EpisodeAggregate | MediaAggregate | PodcastEpisodeAggregate | PodcastEpisodeApplicationAggregate | ProjectAggregate | AccountEmbedLocationAggregate | MediaEmbedLocationAggregate | MediaReferrerDomainAggregate | MediaEmbedLanguageAggregate | MediaViewerScreenSizeAggregate | MediaUtmCampaignAggregate | MediaUtmSourceAggregate | MediaUtmMediumAggregate
812
817
 
818
+ type LiveStreamEvent {
819
+ liveStreamEventGlobalId: String!
820
+ liveStreamEventHashedId: String!
821
+ liveStreamEventTitle: String!
822
+ liveStreamEventRegistrationStatus: String!
823
+ liveStreamEventCreatedAt: DateTime!
824
+ liveStreamEventEndedAt: DateTime
825
+ liveStreamEventDuration: Int!
826
+ liveRecapUrl: String!
827
+ mediaName: String
828
+ mediaThumbnailUrl: String
829
+ mediaPlays: Int!
830
+ impressions: Int!
831
+ uniqueRegistrations: Int!
832
+ attendees: Int!
833
+ registrationRate: Float!
834
+ attendanceRate: Float!
835
+ }
836
+
813
837
  union MediaEventAggregateResult = AggregateEntries | AggregateError
814
838
 
815
839
  type MediaEvents {