@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.graphql +16 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.33.0",
3
+ "version": "1.34.0",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
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, preEventInterval: Interval): LiveStreamEventAggregate
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]