@wistia/bottler-helpers 1.32.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.
- package/package.json +1 -1
- package/schema.graphql +18 -5
package/package.json
CHANGED
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 {
|
|
@@ -73,7 +87,7 @@ type RootMutationType {
|
|
|
73
87
|
exportRelativeMedia(contactId: Int!, relativePeriod: RelativePeriod!, searchFilter: SearchFilter): ExportStatus
|
|
74
88
|
accountDigest(contactId: Int!, interval: Interval!, overrideEmail: String): AccountDigestStatus
|
|
75
89
|
liveExport(liveStreamEventId: Int!, type: LiveExportType!, contactId: Int!, filters: LiveFilters): ExportStatus
|
|
76
|
-
liveSeriesExport(liveSeriesId: Int!, type: LiveSeriesExportType!, contactId: Int
|
|
90
|
+
liveSeriesExport(liveSeriesId: Int!, type: LiveSeriesExportType!, contactId: Int!, filters: LiveSeriesFilters): ExportStatus
|
|
77
91
|
}
|
|
78
92
|
|
|
79
93
|
"""
|
|
@@ -116,6 +130,7 @@ enum TrafficDimension {
|
|
|
116
130
|
|
|
117
131
|
enum LiveSeriesExportType {
|
|
118
132
|
LIVE_SERIES_WEBINARS
|
|
133
|
+
LIVE_SERIES_AUDIENCE
|
|
119
134
|
}
|
|
120
135
|
|
|
121
136
|
type LiveSeriesAggregate {
|
|
@@ -450,10 +465,8 @@ type MediaUtmContentAggregate {
|
|
|
450
465
|
}
|
|
451
466
|
|
|
452
467
|
type LiveEvent {
|
|
453
|
-
aggregate(includePostEvent: Boolean, interval: Interval, postEventInterval: Interval
|
|
454
|
-
timeseries(
|
|
455
|
-
granularity: Granularity!, includePostEvent: Boolean, interval: Interval, postEventInterval: Interval, preEventInterval: Interval
|
|
456
|
-
): [LiveEventDataPoint]
|
|
468
|
+
aggregate(includePostEvent: Boolean, interval: Interval, postEventInterval: Interval): LiveStreamEventAggregate
|
|
469
|
+
timeseries(granularity: Granularity!, includePostEvent: Boolean, interval: Interval, postEventInterval: Interval): [LiveEventDataPoint]
|
|
457
470
|
currentAttendees: [Attendee]
|
|
458
471
|
referrerDomainRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventReferrerDomainAggregate]
|
|
459
472
|
utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
|