@wistia/bottler-helpers 1.31.1 → 1.32.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 +47 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -73,6 +73,7 @@ type RootMutationType {
|
|
|
73
73
|
exportRelativeMedia(contactId: Int!, relativePeriod: RelativePeriod!, searchFilter: SearchFilter): ExportStatus
|
|
74
74
|
accountDigest(contactId: Int!, interval: Interval!, overrideEmail: String): AccountDigestStatus
|
|
75
75
|
liveExport(liveStreamEventId: Int!, type: LiveExportType!, contactId: Int!, filters: LiveFilters): ExportStatus
|
|
76
|
+
liveSeriesExport(liveSeriesId: Int!, type: LiveSeriesExportType!, contactId: Int!): ExportStatus
|
|
76
77
|
}
|
|
77
78
|
|
|
78
79
|
"""
|
|
@@ -93,6 +94,15 @@ type LiveSeries {
|
|
|
93
94
|
aggregate: LiveSeriesAggregate
|
|
94
95
|
timeseries(granularity: Granularity!): [LiveSeriesDataPoint]
|
|
95
96
|
registrationTraffic(dimension: TrafficDimension!, orderBy: TrafficMetric!, order: Order!): [LiveSeriesTrafficAggregate]
|
|
97
|
+
audience(filters: LiveSeriesFilters): LiveSeriesAudience
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
input LiveSeriesFilters {
|
|
101
|
+
uniqueIds: [String]
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
type LiveSeriesAudience {
|
|
105
|
+
orderedEntriesResult(pagination: Pagination!): LiveSeriesContactAggregateResult
|
|
96
106
|
}
|
|
97
107
|
|
|
98
108
|
enum TrafficDimension {
|
|
@@ -104,6 +114,10 @@ enum TrafficDimension {
|
|
|
104
114
|
UTM_CONTENT
|
|
105
115
|
}
|
|
106
116
|
|
|
117
|
+
enum LiveSeriesExportType {
|
|
118
|
+
LIVE_SERIES_WEBINARS
|
|
119
|
+
}
|
|
120
|
+
|
|
107
121
|
type LiveSeriesAggregate {
|
|
108
122
|
impressions: Int
|
|
109
123
|
registrations: Int
|
|
@@ -128,6 +142,39 @@ type LiveSeriesTrafficAggregate {
|
|
|
128
142
|
attendees: Int
|
|
129
143
|
}
|
|
130
144
|
|
|
145
|
+
type LiveSeriesContactAggregate {
|
|
146
|
+
uniqueId: String
|
|
147
|
+
firstName: String
|
|
148
|
+
lastName: String
|
|
149
|
+
email: String
|
|
150
|
+
phoneNumber: String
|
|
151
|
+
company: String
|
|
152
|
+
jobTitle: String
|
|
153
|
+
country: String
|
|
154
|
+
formFieldData: [FormFieldResponse!]!
|
|
155
|
+
originMethod: String
|
|
156
|
+
registeredAt: DateTime
|
|
157
|
+
webinarRegistrationsCount: Int
|
|
158
|
+
webinarsAttendedCount: Int
|
|
159
|
+
utmCampaign: String
|
|
160
|
+
utmSource: String
|
|
161
|
+
utmMedium: String
|
|
162
|
+
utmContent: String
|
|
163
|
+
utmTerm: String
|
|
164
|
+
referrerDomain: String
|
|
165
|
+
ipRegion: String
|
|
166
|
+
ipCountry: String
|
|
167
|
+
ipCity: String
|
|
168
|
+
touchpointCount: Int
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
type LiveSeriesContactAggregateEntries {
|
|
172
|
+
entries: [LiveSeriesContactAggregate]
|
|
173
|
+
pageInfo: PageInfo!
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
union LiveSeriesContactAggregateResult = LiveSeriesContactAggregateEntries | AggregateError
|
|
177
|
+
|
|
131
178
|
input FormFilter {
|
|
132
179
|
contentIds: [String]
|
|
133
180
|
}
|