@wistia/bottler-helpers 1.29.2 → 1.31.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 +17 -2
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -31,9 +31,12 @@ type MediaAudienceEntry {
|
|
|
31
31
|
referrerUrl: String
|
|
32
32
|
referrerDomain: String
|
|
33
33
|
utmCampaign: String
|
|
34
|
+
utmContent: String
|
|
34
35
|
utmMedium: String
|
|
35
36
|
utmSource: String
|
|
37
|
+
utmTerm: String
|
|
36
38
|
touchpointCount: Int
|
|
39
|
+
formFieldData: [FormFieldResponse!]!
|
|
37
40
|
}
|
|
38
41
|
|
|
39
42
|
type RootQueryType {
|
|
@@ -64,7 +67,7 @@ type RootQueryType {
|
|
|
64
67
|
|
|
65
68
|
type RootMutationType {
|
|
66
69
|
exportMedia(
|
|
67
|
-
contactId: Int!, interval: Interval, searchFilter: SearchFilter, aggregate: ExportAggregate, shouldSkipEmailNotification: Boolean
|
|
70
|
+
contactId: Int!, interval: Interval, searchFilter: SearchFilter, search: String, mediaAudienceFilter: MediaAudienceExportFilter, aggregate: ExportAggregate, shouldSkipEmailNotification: Boolean
|
|
68
71
|
): ExportStatus
|
|
69
72
|
exportRelativeMedia(contactId: Int!, relativePeriod: RelativePeriod!, searchFilter: SearchFilter): ExportStatus
|
|
70
73
|
accountDigest(contactId: Int!, interval: Interval!, overrideEmail: String): AccountDigestStatus
|
|
@@ -881,6 +884,7 @@ enum ExportAggregate {
|
|
|
881
884
|
CHANNEL_EPISODE
|
|
882
885
|
PODCAST_EPISODE
|
|
883
886
|
MEDIA_FORM_CONVERSION
|
|
887
|
+
MEDIA_AUDIENCE
|
|
884
888
|
MEDIA_COMPARISON
|
|
885
889
|
}
|
|
886
890
|
|
|
@@ -920,6 +924,13 @@ enum WistiaLeadType {
|
|
|
920
924
|
UNKNOWN
|
|
921
925
|
}
|
|
922
926
|
|
|
927
|
+
"Filter media audience exports by contact status"
|
|
928
|
+
enum MediaAudienceContactStatusFilter {
|
|
929
|
+
ALL
|
|
930
|
+
NEW
|
|
931
|
+
RETURNING
|
|
932
|
+
}
|
|
933
|
+
|
|
923
934
|
"Which way to paginate from a cursor"
|
|
924
935
|
enum CursorDirection {
|
|
925
936
|
BEFORE
|
|
@@ -951,10 +962,14 @@ input Pagination {
|
|
|
951
962
|
direction: CursorDirection
|
|
952
963
|
}
|
|
953
964
|
|
|
965
|
+
input MediaAudienceExportFilter {
|
|
966
|
+
contactStatus: MediaAudienceContactStatusFilter
|
|
967
|
+
}
|
|
968
|
+
|
|
954
969
|
type MediaEvents {
|
|
955
970
|
aggregate(typeFilter: TypeFilter): MediaEventAggregate
|
|
956
971
|
timeseries(
|
|
957
|
-
for: MediaEventMetric!, over: MediaEventDimension!, granularity: Granularity!, typeFilter: TypeFilter, limit: Int
|
|
972
|
+
for: MediaEventMetric!, over: MediaEventDimension!, granularity: Granularity!, typeFilter: TypeFilter, limit: Int, filters: [Filter]
|
|
958
973
|
): [MediaEventDatapoint]
|
|
959
974
|
orderedEntries(
|
|
960
975
|
groupBy: MediaEventDimension!, orderBy: MediaEventMetric!, order: Order!, limit: Int!, excludeAggregatesWithoutStats: Boolean, filters: [Filter]
|