@wistia/bottler-helpers 1.31.1 → 1.33.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 +48 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.31.1",
3
+ "version": "1.33.0",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
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!, filters: LiveSeriesFilters): 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,11 @@ enum TrafficDimension {
104
114
  UTM_CONTENT
105
115
  }
106
116
 
117
+ enum LiveSeriesExportType {
118
+ LIVE_SERIES_WEBINARS
119
+ LIVE_SERIES_AUDIENCE
120
+ }
121
+
107
122
  type LiveSeriesAggregate {
108
123
  impressions: Int
109
124
  registrations: Int
@@ -128,6 +143,39 @@ type LiveSeriesTrafficAggregate {
128
143
  attendees: Int
129
144
  }
130
145
 
146
+ type LiveSeriesContactAggregate {
147
+ uniqueId: String
148
+ firstName: String
149
+ lastName: String
150
+ email: String
151
+ phoneNumber: String
152
+ company: String
153
+ jobTitle: String
154
+ country: String
155
+ formFieldData: [FormFieldResponse!]!
156
+ originMethod: String
157
+ registeredAt: DateTime
158
+ webinarRegistrationsCount: Int
159
+ webinarsAttendedCount: Int
160
+ utmCampaign: String
161
+ utmSource: String
162
+ utmMedium: String
163
+ utmContent: String
164
+ utmTerm: String
165
+ referrerDomain: String
166
+ ipRegion: String
167
+ ipCountry: String
168
+ ipCity: String
169
+ touchpointCount: Int
170
+ }
171
+
172
+ type LiveSeriesContactAggregateEntries {
173
+ entries: [LiveSeriesContactAggregate]
174
+ pageInfo: PageInfo!
175
+ }
176
+
177
+ union LiveSeriesContactAggregateResult = LiveSeriesContactAggregateEntries | AggregateError
178
+
131
179
  input FormFilter {
132
180
  contentIds: [String]
133
181
  }