@wistia/bottler-helpers 1.0.18 → 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.
- package/package.json +1 -1
- package/schema.graphql +20 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -459,6 +459,7 @@ 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!]!
|
|
462
463
|
mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
|
|
463
464
|
relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
|
|
464
465
|
}
|
|
@@ -814,6 +815,25 @@ enum ExportAggregate {
|
|
|
814
815
|
|
|
815
816
|
union MediaEventAggregate = AccountAggregate | ChannelAggregate | EpisodeAggregate | MediaAggregate | PodcastEpisodeAggregate | PodcastEpisodeApplicationAggregate | ProjectAggregate | AccountEmbedLocationAggregate | MediaEmbedLocationAggregate | MediaReferrerDomainAggregate | MediaEmbedLanguageAggregate | MediaViewerScreenSizeAggregate | MediaUtmCampaignAggregate | MediaUtmSourceAggregate | MediaUtmMediumAggregate
|
|
816
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
|
+
|
|
817
837
|
union MediaEventAggregateResult = AggregateEntries | AggregateError
|
|
818
838
|
|
|
819
839
|
type MediaEvents {
|