@wistia/bottler-helpers 1.0.20 → 1.0.22
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 +15 -1
package/package.json
CHANGED
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
|
|
|
@@ -835,6 +838,7 @@ type LiveStreamEvent {
|
|
|
835
838
|
liveStreamEventRegistrationStatus: String!
|
|
836
839
|
liveStreamEventCreatedAt: DateTime!
|
|
837
840
|
liveStreamEventEndedAt: DateTime
|
|
841
|
+
liveStreamEventScheduledFor: DateTime!
|
|
838
842
|
liveStreamEventDuration: Int!
|
|
839
843
|
liveRecapUrl: String!
|
|
840
844
|
mediaName: String
|
|
@@ -871,6 +875,16 @@ type Medias {
|
|
|
871
875
|
totalCount: Int
|
|
872
876
|
}
|
|
873
877
|
|
|
878
|
+
"A metric to order live stream event entries by"
|
|
879
|
+
enum LiveStreamEventOrderMetric {
|
|
880
|
+
IMPRESSIONS
|
|
881
|
+
UNIQUE_REGISTRATIONS
|
|
882
|
+
ATTENDEES
|
|
883
|
+
REGISTRATION_RATE
|
|
884
|
+
ATTENDANCE_RATE
|
|
885
|
+
MEDIA_PLAYS
|
|
886
|
+
}
|
|
887
|
+
|
|
874
888
|
type LiveEvents {
|
|
875
889
|
aggregate: LiveStreamEventAggregate
|
|
876
890
|
}
|