@wistia/bottler-helpers 1.39.0 → 1.43.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 +18 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wistia/bottler-helpers",
3
- "version": "1.39.0",
3
+ "version": "1.43.0",
4
4
  "author": "Wistia",
5
5
  "license": "UNLICENSED",
6
6
  "files": [
package/schema.graphql CHANGED
@@ -78,6 +78,7 @@ type RootQueryType {
78
78
  mediaAudienceWithAnonymous(
79
79
  mediaGlobalId: String!, interval: Interval!, pagination: OffsetPagination, orderBy: MediaAudienceSortField, order: Order
80
80
  ): MediaAudienceWithAnonymousResult
81
+ mediaAudienceAggregate(mediaGlobalId: String!, interval: Interval!): MediaAudienceAggregate
81
82
  relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
82
83
  exportStatus(exportId: Int!): ExportStatus
83
84
  contactTouchpointHistory(
@@ -120,10 +121,10 @@ enum MediaAudienceSortField {
120
121
  SESSION_COUNT
121
122
  VIEWER_ID
122
123
  EMBED_URL
123
- REFERRER_URL
124
- CITY
125
- REGION
126
- COUNTRY
124
+ REFERRER_DOMAIN
125
+ IP_CITY
126
+ IP_REGION
127
+ IP_COUNTRY_CODE
127
128
  UTM_CAMPAIGN
128
129
  UTM_SOURCE
129
130
  UTM_MEDIUM
@@ -148,6 +149,12 @@ type MediaAudienceWithAnonymousResult {
148
149
  entries: [MediaAudienceViewer]
149
150
  }
150
151
 
152
+ type MediaAudienceAggregate {
153
+ uniqueViewers: Int!
154
+ knownViewers: Int!
155
+ anonymousViewers: Int!
156
+ }
157
+
151
158
  type MediaAudienceViewer {
152
159
  id: String!
153
160
  uniqueId: String
@@ -162,7 +169,10 @@ type MediaAudienceViewer {
162
169
  city: String
163
170
  region: String
164
171
  country: String
165
- referrerUrl: String
172
+ ipCity: String
173
+ ipRegion: String
174
+ ipCountryCode: String
175
+ referrerDomain: String
166
176
  utmCampaign: String
167
177
  utmSource: String
168
178
  utmMedium: String
@@ -176,6 +186,9 @@ type MediaAudienceViewer {
176
186
  uniquePlayedTime: Float
177
187
  sessionCount: Int
178
188
  lastViewedAt: DateTime
189
+ submittedAt: DateTime
190
+ touchpointCount: Int
191
+ formFieldData: [FormFieldResponse!]!
179
192
  conversionEvents: [MediaConversionEvent!]!
180
193
  }
181
194