@wistia/bottler-helpers 1.27.0 → 1.29.2
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 +29 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -8,6 +8,34 @@ input Interval {
|
|
|
8
8
|
endDate: Date
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
type MediaAudienceResult {
|
|
12
|
+
identifiedViewerCount: Int!
|
|
13
|
+
audienceEntryCount: Int!
|
|
14
|
+
newContactCount: Int!
|
|
15
|
+
pageInfo: PageInfo!
|
|
16
|
+
entries: [MediaAudienceEntry]
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
type MediaAudienceEntry {
|
|
20
|
+
id: String!
|
|
21
|
+
visitorKey: String
|
|
22
|
+
uniqueId: String
|
|
23
|
+
email: String!
|
|
24
|
+
firstName: String
|
|
25
|
+
lastName: String
|
|
26
|
+
company: String
|
|
27
|
+
jobTitle: String
|
|
28
|
+
phoneNumber: String
|
|
29
|
+
country: String
|
|
30
|
+
submittedAt: DateTime!
|
|
31
|
+
referrerUrl: String
|
|
32
|
+
referrerDomain: String
|
|
33
|
+
utmCampaign: String
|
|
34
|
+
utmMedium: String
|
|
35
|
+
utmSource: String
|
|
36
|
+
touchpointCount: Int
|
|
37
|
+
}
|
|
38
|
+
|
|
11
39
|
type RootQueryType {
|
|
12
40
|
channel(channelHashedId: String!, interval: Interval): Channel
|
|
13
41
|
channels(channelGlobalIds: [String]!): [ChannelMetrics!]!
|
|
@@ -27,6 +55,7 @@ type RootQueryType {
|
|
|
27
55
|
liveStreamEventsAccountAggregate(limit: Int, interval: Interval): LiveStreamEventAccountAggregate!
|
|
28
56
|
liveEventContacts(liveStreamEventId: Int!, filters: LiveFilters): LiveEventContacts
|
|
29
57
|
mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
|
|
58
|
+
mediaAudience(mediaGlobalId: String!, interval: Interval!, pagination: Pagination, search: String): MediaAudienceResult
|
|
30
59
|
relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
|
|
31
60
|
exportStatus(exportId: Int!): ExportStatus
|
|
32
61
|
contactTouchpointHistory(email: String!, filters: ContactTouchpointHistoryFilters, sort: Order): ContactTouchpointHistory
|