@wistia/bottler-helpers 1.17.0 → 1.20.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 +22 -1
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -28,6 +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
32
|
}
|
|
32
33
|
|
|
33
34
|
type RootMutationType {
|
|
@@ -53,6 +54,25 @@ response as an ISO8601 formatted string, without a time component.
|
|
|
53
54
|
"""
|
|
54
55
|
scalar Date
|
|
55
56
|
|
|
57
|
+
type ContactTouchpointHistory {
|
|
58
|
+
email: String!
|
|
59
|
+
events: [Touchpoint!]!
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
type Touchpoint {
|
|
63
|
+
embedType: String!
|
|
64
|
+
embedId: Int!
|
|
65
|
+
type: String!
|
|
66
|
+
startedAt: DateTime!
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
input ContactTouchpointHistoryFilters {
|
|
70
|
+
embedType: String
|
|
71
|
+
eventTypes: [String]
|
|
72
|
+
startDate: Date
|
|
73
|
+
endDate: Date
|
|
74
|
+
}
|
|
75
|
+
|
|
56
76
|
type MediaEmbedLanguageAggregate {
|
|
57
77
|
mediaGlobalId: String
|
|
58
78
|
plays: Int
|
|
@@ -458,6 +478,7 @@ type LiveEventContactAggregate {
|
|
|
458
478
|
annotationClickCount: Int
|
|
459
479
|
attendeeHistogram: [Int]
|
|
460
480
|
focusedAttendeeHistogram: [Int]
|
|
481
|
+
contactRating: Int
|
|
461
482
|
}
|
|
462
483
|
|
|
463
484
|
type LivePollResponse {
|
|
@@ -962,7 +983,7 @@ type MediaFormAggregate {
|
|
|
962
983
|
lastName: String
|
|
963
984
|
email: String!
|
|
964
985
|
convertedAt: DateTime!
|
|
965
|
-
wistiaLeadType: WistiaLeadType
|
|
986
|
+
wistiaLeadType: WistiaLeadType
|
|
966
987
|
}
|
|
967
988
|
|
|
968
989
|
type AggregateError {
|