@wistia/bottler-helpers 1.33.0 → 1.34.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 +16 -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 {
|
|
@@ -451,10 +465,8 @@ type MediaUtmContentAggregate {
|
|
|
451
465
|
}
|
|
452
466
|
|
|
453
467
|
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]
|
|
468
|
+
aggregate(includePostEvent: Boolean, interval: Interval, postEventInterval: Interval): LiveStreamEventAggregate
|
|
469
|
+
timeseries(granularity: Granularity!, includePostEvent: Boolean, interval: Interval, postEventInterval: Interval): [LiveEventDataPoint]
|
|
458
470
|
currentAttendees: [Attendee]
|
|
459
471
|
referrerDomainRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventReferrerDomainAggregate]
|
|
460
472
|
utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
|