@wistia/bottler-helpers 1.33.0 → 1.36.0
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 +24 -4
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -37,6 +37,20 @@ type MediaAudienceEntry {
|
|
|
37
37
|
utmTerm: String
|
|
38
38
|
touchpointCount: Int
|
|
39
39
|
formFieldData: [FormFieldResponse!]!
|
|
40
|
+
totalPlays: Int
|
|
41
|
+
playsHistogram: [Int]
|
|
42
|
+
engagementRate: Float
|
|
43
|
+
conversionEvents: [MediaConversionEvent!]!
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
type MediaConversionEvent {
|
|
47
|
+
coType: String!
|
|
48
|
+
time: Float!
|
|
49
|
+
conversionData: MediaConversionData!
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
type MediaConversionData {
|
|
53
|
+
link: String
|
|
40
54
|
}
|
|
41
55
|
|
|
42
56
|
type RootQueryType {
|
|
@@ -53,6 +67,7 @@ type RootQueryType {
|
|
|
53
67
|
liveEvents(liveStreamEventIds: [Int]!, includePostEvent: Boolean): LiveEvents
|
|
54
68
|
liveEvent(liveStreamEventId: Int!, includePostEvent: Boolean): LiveEvent
|
|
55
69
|
liveSeries(liveSeriesId: Int!, interval: Interval): LiveSeries
|
|
70
|
+
liveSeriesList(liveSeriesIds: [Int!]!): [LiveSeriesListEntry!]!
|
|
56
71
|
liveStreamEvents(
|
|
57
72
|
limit: Int, interval: Interval, orderBy: LiveStreamEventOrderMetric, order: Order, liveStreamEventIds: [Int]
|
|
58
73
|
): [LiveStreamEvent!]!
|
|
@@ -97,6 +112,13 @@ type LiveSeries {
|
|
|
97
112
|
audience(filters: LiveSeriesFilters): LiveSeriesAudience
|
|
98
113
|
}
|
|
99
114
|
|
|
115
|
+
type LiveSeriesListEntry {
|
|
116
|
+
liveSeriesId: Int!
|
|
117
|
+
liveSeriesHashedId: String!
|
|
118
|
+
liveSeriesTitle: String!
|
|
119
|
+
registrations: Int!
|
|
120
|
+
}
|
|
121
|
+
|
|
100
122
|
input LiveSeriesFilters {
|
|
101
123
|
uniqueIds: [String]
|
|
102
124
|
}
|
|
@@ -451,10 +473,8 @@ type MediaUtmContentAggregate {
|
|
|
451
473
|
}
|
|
452
474
|
|
|
453
475
|
type LiveEvent {
|
|
454
|
-
aggregate(includePostEvent: Boolean, interval: Interval, postEventInterval: Interval
|
|
455
|
-
timeseries(
|
|
456
|
-
granularity: Granularity!, includePostEvent: Boolean, interval: Interval, postEventInterval: Interval, preEventInterval: Interval
|
|
457
|
-
): [LiveEventDataPoint]
|
|
476
|
+
aggregate(includePostEvent: Boolean, interval: Interval, postEventInterval: Interval): LiveStreamEventAggregate
|
|
477
|
+
timeseries(granularity: Granularity!, includePostEvent: Boolean, interval: Interval, postEventInterval: Interval): [LiveEventDataPoint]
|
|
458
478
|
currentAttendees: [Attendee]
|
|
459
479
|
referrerDomainRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventReferrerDomainAggregate]
|
|
460
480
|
utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
|