@wistia/bottler-helpers 1.0.19 → 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.
- package/package.json +1 -1
- package/schema.graphql +13 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -460,6 +460,7 @@ type RootQueryType {
|
|
|
460
460
|
liveEvents(liveStreamEventIds: [Int]!, includePostEvent: Boolean): LiveEvents
|
|
461
461
|
liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
|
|
462
462
|
liveStreamEvents(limit: Int, interval: Interval): [LiveStreamEvent!]!
|
|
463
|
+
liveStreamEventsAccountAggregate(limit: Int, interval: Interval): LiveStreamEventAccountAggregate!
|
|
463
464
|
mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
|
|
464
465
|
relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
|
|
465
466
|
}
|
|
@@ -542,6 +543,18 @@ type MediaUtmCampaignAggregate {
|
|
|
542
543
|
ctaConversionRate: Float
|
|
543
544
|
}
|
|
544
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
|
+
|
|
545
558
|
type LiveEventUtmMediumAggregate {
|
|
546
559
|
accountKey: String
|
|
547
560
|
accountName: String
|