@wistia/bottler-helpers 1.21.1 → 1.22.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 +14 -1
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -28,7 +28,7 @@ type RootQueryType {
|
|
|
28
28
|
mediaFormConversions(mediaGlobalId: String!, interval: Interval!, pagination: Pagination): MediaFormAggregateResult
|
|
29
29
|
relativeMediaEvents(relativePeriod: RelativePeriod!, searchFilter: SearchFilter): RelativeMediaEvents
|
|
30
30
|
exportStatus(exportId: Int!): ExportStatus
|
|
31
|
-
contactTouchpointHistory(email: String!, filters: ContactTouchpointHistoryFilters): ContactTouchpointHistory
|
|
31
|
+
contactTouchpointHistory(email: String!, filters: ContactTouchpointHistoryFilters, sort: Order): ContactTouchpointHistory
|
|
32
32
|
accountMediaBenchmark(contentType: String!, metric: BenchmarkMetric!, days: Int): AccountMediaBenchmark
|
|
33
33
|
}
|
|
34
34
|
|
|
@@ -56,6 +56,7 @@ response as an ISO8601 formatted string, without a time component.
|
|
|
56
56
|
scalar Date
|
|
57
57
|
|
|
58
58
|
enum BenchmarkMetric {
|
|
59
|
+
PLAYS
|
|
59
60
|
CUMULATIVE_PLAYS
|
|
60
61
|
}
|
|
61
62
|
|
|
@@ -460,6 +461,15 @@ type QuestionDatum {
|
|
|
460
461
|
qaQuestions: [QuestionItem!]!
|
|
461
462
|
}
|
|
462
463
|
|
|
464
|
+
type ClickedAnnotation {
|
|
465
|
+
annotationId: Int!
|
|
466
|
+
clickCount: Int!
|
|
467
|
+
link: String
|
|
468
|
+
text: String
|
|
469
|
+
eventTimestamp: Int
|
|
470
|
+
duration: Int
|
|
471
|
+
}
|
|
472
|
+
|
|
463
473
|
type LiveEventContactAggregate {
|
|
464
474
|
visitorKey: String
|
|
465
475
|
accountId: Int
|
|
@@ -483,6 +493,8 @@ type LiveEventContactAggregate {
|
|
|
483
493
|
utmCampaign: String
|
|
484
494
|
utmSource: String
|
|
485
495
|
utmMedium: String
|
|
496
|
+
utmContent: String
|
|
497
|
+
utmTerm: String
|
|
486
498
|
referrerDomain: String
|
|
487
499
|
ipRegion: String
|
|
488
500
|
ipCountry: String
|
|
@@ -499,6 +511,7 @@ type LiveEventContactAggregate {
|
|
|
499
511
|
chatCount: Int
|
|
500
512
|
chats: [ChatDatum!]!
|
|
501
513
|
annotationClickCount: Int
|
|
514
|
+
clickedAnnotations: [ClickedAnnotation!]!
|
|
502
515
|
attendeeHistogram: [Int]
|
|
503
516
|
focusedAttendeeHistogram: [Int]
|
|
504
517
|
contactRating: Int
|