@wistia/bottler-helpers 1.15.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 +6 -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
|
|
@@ -329,6 +331,7 @@ type LiveStreamEventAggregate {
|
|
|
329
331
|
importedRegistrations: Int
|
|
330
332
|
restrictedRegistrations: Int
|
|
331
333
|
onDemandRegistrations: Int
|
|
334
|
+
importedOnDemandRegistrations: Int
|
|
332
335
|
chats: Int
|
|
333
336
|
totalWatchTime: Int
|
|
334
337
|
averageWatchTime: Int
|
|
@@ -513,6 +516,7 @@ enum TrafficMetric {
|
|
|
513
516
|
enum LiveExportType {
|
|
514
517
|
LIVE_VISITOR_POLL_RESPONSE
|
|
515
518
|
LIVE_EVENT_CONTACTS
|
|
519
|
+
LIVE_CHAT
|
|
516
520
|
}
|
|
517
521
|
|
|
518
522
|
"A metric to order live stream event entries by"
|
|
@@ -724,6 +728,7 @@ enum AggregateErrorType {
|
|
|
724
728
|
enum WistiaLeadType {
|
|
725
729
|
NEW
|
|
726
730
|
EXISTING
|
|
731
|
+
UNKNOWN
|
|
727
732
|
}
|
|
728
733
|
|
|
729
734
|
"Which way to paginate from a cursor"
|