@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.
- package/package.json +1 -1
- package/schema.graphql +5 -1
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -31,7 +31,9 @@ type RootQueryType {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
type RootMutationType {
|
|
34
|
-
exportMedia(
|
|
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"
|