@wistia/bottler-helpers 1.22.0 → 1.24.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 +71 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.22.0",
3
+ "version": "1.24.0",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -66,6 +66,7 @@ type BenchmarkPercentiles {
66
66
  p75: Float!
67
67
  p95: Float!
68
68
  p99: Float!
69
+ sampleSize: Int!
69
70
  }
70
71
 
71
72
  type AccountBenchmarkEntry {
@@ -257,6 +258,50 @@ type MediaUtmMediumAggregate {
257
258
  ctaConversionRate: Float
258
259
  }
259
260
 
261
+ type MediaUtmTermAggregate {
262
+ accountKey: String
263
+ accountName: String
264
+ containerGlobalId: String
265
+ containerHashedId: String
266
+ containerName: String
267
+ episodeHashedId: String
268
+ episodeGlobalId: String
269
+ episodeTitle: String
270
+ mediaHashedId: String
271
+ mediaGlobalId: String
272
+ mediaName: String
273
+ utmTerm: String
274
+ plays: Int
275
+ playRate: Float
276
+ engagementRate: Float
277
+ playedTime: Int
278
+ loads: Int
279
+ uniqueVisitors: Int
280
+ ctaConversionRate: Float
281
+ }
282
+
283
+ type MediaUtmContentAggregate {
284
+ accountKey: String
285
+ accountName: String
286
+ containerGlobalId: String
287
+ containerHashedId: String
288
+ containerName: String
289
+ episodeHashedId: String
290
+ episodeGlobalId: String
291
+ episodeTitle: String
292
+ mediaHashedId: String
293
+ mediaGlobalId: String
294
+ mediaName: String
295
+ utmContent: String
296
+ plays: Int
297
+ playRate: Float
298
+ engagementRate: Float
299
+ playedTime: Int
300
+ loads: Int
301
+ uniqueVisitors: Int
302
+ ctaConversionRate: Float
303
+ }
304
+
260
305
  type LiveEvent {
261
306
  aggregate(includePostEvent: Boolean, interval: Interval, postEventInterval: Interval, preEventInterval: Interval): LiveStreamEventAggregate
262
307
  timeseries(
@@ -267,6 +312,8 @@ type LiveEvent {
267
312
  utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
268
313
  utmSourceRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmSourceAggregate]
269
314
  utmMediumRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmMediumAggregate]
315
+ utmTermRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmTermAggregate]
316
+ utmContentRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmContentAggregate]
270
317
  liveStreamEventSegments: [LiveStreamEventSegment]
271
318
  }
272
319
 
@@ -442,6 +489,26 @@ type LiveEventUtmMediumAggregate {
442
489
  attendees: Int
443
490
  }
444
491
 
492
+ type LiveEventUtmTermAggregate {
493
+ accountKey: String
494
+ accountName: String
495
+ liveStreamEventId: Int
496
+ utmTerm: String
497
+ impressions: Int
498
+ registrations: Int
499
+ attendees: Int
500
+ }
501
+
502
+ type LiveEventUtmContentAggregate {
503
+ accountKey: String
504
+ accountName: String
505
+ liveStreamEventId: Int
506
+ utmContent: String
507
+ impressions: Int
508
+ registrations: Int
509
+ attendees: Int
510
+ }
511
+
445
512
  type LiveEventContacts {
446
513
  orderedEntriesResult(pagination: Pagination!): LiveEventContactAggregateResult
447
514
  }
@@ -657,6 +724,7 @@ type RelativeMediaAggregate {
657
724
  formConversions: Int
658
725
  cumulativePlays: Int
659
726
  cumulativePlayedTime: Int
727
+ rank: Float
660
728
  }
661
729
 
662
730
  type RelativeAccountAggregate {
@@ -714,6 +782,8 @@ enum MediaEventDimension {
714
782
  MEDIA_UTM_CAMPAIGN
715
783
  MEDIA_UTM_SOURCE
716
784
  MEDIA_UTM_MEDIUM
785
+ MEDIA_UTM_TERM
786
+ MEDIA_UTM_CONTENT
717
787
  }
718
788
 
719
789
  "A metric to order entries by"
@@ -841,7 +911,7 @@ type MediaEventDatapoint {
841
911
  entries: [MediaEventAggregate]
842
912
  }
843
913
 
844
- union MediaEventAggregate = AccountAggregate | ChannelAggregate | EpisodeAggregate | MediaAggregate | PodcastEpisodeAggregate | PodcastEpisodeApplicationAggregate | ProjectAggregate | AccountEmbedLocationAggregate | MediaEmbedLocationAggregate | MediaReferrerDomainAggregate | MediaEmbedLanguageAggregate | MediaViewerScreenSizeAggregate | MediaUtmCampaignAggregate | MediaUtmSourceAggregate | MediaUtmMediumAggregate
914
+ union MediaEventAggregate = AccountAggregate | ChannelAggregate | EpisodeAggregate | MediaAggregate | PodcastEpisodeAggregate | PodcastEpisodeApplicationAggregate | ProjectAggregate | AccountEmbedLocationAggregate | MediaEmbedLocationAggregate | MediaReferrerDomainAggregate | MediaEmbedLanguageAggregate | MediaViewerScreenSizeAggregate | MediaUtmCampaignAggregate | MediaUtmSourceAggregate | MediaUtmMediumAggregate | MediaUtmTermAggregate | MediaUtmContentAggregate
845
915
 
846
916
  type AggregateEntries {
847
917
  entries: [MediaEventAggregate]