@wistia/bottler-helpers 1.16.0 → 1.17.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 +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.16.0",
3
+ "version": "1.17.0",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -31,7 +31,9 @@ type RootQueryType {
31
31
  }
32
32
 
33
33
  type RootMutationType {
34
- exportMedia(contactId: Int!, interval: Interval, searchFilter: SearchFilter, aggregate: ExportAggregate): ExportStatus
34
+ exportMedia(
35
+ contactId: Int!, interval: Interval, searchFilter: SearchFilter, aggregate: ExportAggregate, shouldSkipEmailNotification: Boolean
36
+ ): ExportStatus
35
37
  exportRelativeMedia(contactId: Int!, relativePeriod: RelativePeriod!, searchFilter: SearchFilter): ExportStatus
36
38
  accountDigest(contactId: Int!, interval: Interval!, overrideEmail: String): AccountDigestStatus
37
39
  liveExport(liveStreamEventId: Int!, type: LiveExportType!, contactId: Int!, filters: LiveFilters): ExportStatus
@@ -514,6 +516,7 @@ enum TrafficMetric {
514
516
  enum LiveExportType {
515
517
  LIVE_VISITOR_POLL_RESPONSE
516
518
  LIVE_EVENT_CONTACTS
519
+ LIVE_CHAT
517
520
  }
518
521
 
519
522
  "A metric to order live stream event entries by"
@@ -725,6 +728,7 @@ enum AggregateErrorType {
725
728
  enum WistiaLeadType {
726
729
  NEW
727
730
  EXISTING
731
+ UNKNOWN
728
732
  }
729
733
 
730
734
  "Which way to paginate from a cursor"