@wistia/bottler-helpers 1.16.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 +27 -2
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -28,10 +28,13 @@ 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 {
|
|
34
|
-
exportMedia(
|
|
35
|
+
exportMedia(
|
|
36
|
+
contactId: Int!, interval: Interval, searchFilter: SearchFilter, aggregate: ExportAggregate, shouldSkipEmailNotification: Boolean
|
|
37
|
+
): ExportStatus
|
|
35
38
|
exportRelativeMedia(contactId: Int!, relativePeriod: RelativePeriod!, searchFilter: SearchFilter): ExportStatus
|
|
36
39
|
accountDigest(contactId: Int!, interval: Interval!, overrideEmail: String): AccountDigestStatus
|
|
37
40
|
liveExport(liveStreamEventId: Int!, type: LiveExportType!, contactId: Int!, filters: LiveFilters): ExportStatus
|
|
@@ -51,6 +54,25 @@ response as an ISO8601 formatted string, without a time component.
|
|
|
51
54
|
"""
|
|
52
55
|
scalar Date
|
|
53
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
|
+
|
|
54
76
|
type MediaEmbedLanguageAggregate {
|
|
55
77
|
mediaGlobalId: String
|
|
56
78
|
plays: Int
|
|
@@ -456,6 +478,7 @@ type LiveEventContactAggregate {
|
|
|
456
478
|
annotationClickCount: Int
|
|
457
479
|
attendeeHistogram: [Int]
|
|
458
480
|
focusedAttendeeHistogram: [Int]
|
|
481
|
+
contactRating: Int
|
|
459
482
|
}
|
|
460
483
|
|
|
461
484
|
type LivePollResponse {
|
|
@@ -514,6 +537,7 @@ enum TrafficMetric {
|
|
|
514
537
|
enum LiveExportType {
|
|
515
538
|
LIVE_VISITOR_POLL_RESPONSE
|
|
516
539
|
LIVE_EVENT_CONTACTS
|
|
540
|
+
LIVE_CHAT
|
|
517
541
|
}
|
|
518
542
|
|
|
519
543
|
"A metric to order live stream event entries by"
|
|
@@ -725,6 +749,7 @@ enum AggregateErrorType {
|
|
|
725
749
|
enum WistiaLeadType {
|
|
726
750
|
NEW
|
|
727
751
|
EXISTING
|
|
752
|
+
UNKNOWN
|
|
728
753
|
}
|
|
729
754
|
|
|
730
755
|
"Which way to paginate from a cursor"
|
|
@@ -958,7 +983,7 @@ type MediaFormAggregate {
|
|
|
958
983
|
lastName: String
|
|
959
984
|
email: String!
|
|
960
985
|
convertedAt: DateTime!
|
|
961
|
-
wistiaLeadType: WistiaLeadType
|
|
986
|
+
wistiaLeadType: WistiaLeadType
|
|
962
987
|
}
|
|
963
988
|
|
|
964
989
|
type AggregateError {
|