@wistia/bottler-helpers 1.1.0 → 1.1.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 +36 -1
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -32,7 +32,7 @@ type RootMutationType {
|
|
|
32
32
|
exportMedia(contactId: Int!, interval: Interval, searchFilter: SearchFilter, aggregate: ExportAggregate): ExportStatus
|
|
33
33
|
exportRelativeMedia(contactId: Int!, relativePeriod: RelativePeriod!, searchFilter: SearchFilter): ExportStatus
|
|
34
34
|
accountDigest(contactId: Int!, interval: Interval!, overrideEmail: String): AccountDigestStatus
|
|
35
|
-
liveExport(liveStreamEventId: Int!, type: LiveExportType!, contactId: Int
|
|
35
|
+
liveExport(liveStreamEventId: Int!, type: LiveExportType!, contactId: Int!, filters: LiveFilters): ExportStatus
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
"""
|
|
@@ -211,6 +211,7 @@ type MediaUtmMediumAggregate {
|
|
|
211
211
|
type LiveEvent {
|
|
212
212
|
aggregate(includePostEvent: Boolean): LiveStreamEventAggregate
|
|
213
213
|
timeseries(granularity: Granularity!): [LiveEventDataPoint]
|
|
214
|
+
currentAttendees: [Attendee]
|
|
214
215
|
referrerDomainRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventReferrerDomainAggregate]
|
|
215
216
|
utmCampaignRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmCampaignAggregate]
|
|
216
217
|
utmSourceRegistrations(orderBy: TrafficMetric!, order: Order!): [LiveEventUtmSourceAggregate]
|
|
@@ -300,6 +301,12 @@ type VisitorPollResponse {
|
|
|
300
301
|
pollOptionText: String!
|
|
301
302
|
}
|
|
302
303
|
|
|
304
|
+
type Attendee {
|
|
305
|
+
id: ID
|
|
306
|
+
name: String
|
|
307
|
+
email: String
|
|
308
|
+
}
|
|
309
|
+
|
|
303
310
|
type LiveStreamEventAggregate {
|
|
304
311
|
registrations: Int
|
|
305
312
|
restrictedRegistrations: Int
|
|
@@ -389,6 +396,7 @@ type LiveEventContactAggregate {
|
|
|
389
396
|
registeredAt: DateTime
|
|
390
397
|
attendedAt: DateTime
|
|
391
398
|
attendanceStatus: String
|
|
399
|
+
restrictionStatus: RestrictionStatus
|
|
392
400
|
utmCampaign: String
|
|
393
401
|
utmSource: String
|
|
394
402
|
utmMedium: String
|
|
@@ -402,6 +410,7 @@ type LiveEventContactAggregate {
|
|
|
402
410
|
playedTime: Int
|
|
403
411
|
focusedPlayedTime: Int
|
|
404
412
|
pollResponses: [LivePollResponse]
|
|
413
|
+
pollResponsesCount: Int
|
|
405
414
|
chatCount: Int
|
|
406
415
|
annotationClickCount: Int
|
|
407
416
|
}
|
|
@@ -424,6 +433,31 @@ type LiveEventContactAggregateEntries {
|
|
|
424
433
|
|
|
425
434
|
union LiveEventContactAggregateResult = LiveEventContactAggregateEntries | AggregateError
|
|
426
435
|
|
|
436
|
+
input LiveFilters {
|
|
437
|
+
attendance: AttendanceFilter
|
|
438
|
+
restriction: RestrictionStatusFilter
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
"Filters registrants by attendance status"
|
|
442
|
+
enum AttendanceFilter {
|
|
443
|
+
ALL
|
|
444
|
+
ATTENDEES
|
|
445
|
+
NON_ATTENDEES
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
"Filters registrants by restriction status"
|
|
449
|
+
enum RestrictionStatusFilter {
|
|
450
|
+
ALL
|
|
451
|
+
RESTRICTED
|
|
452
|
+
ALLOWED
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
"Declares a registrant's restriction status"
|
|
456
|
+
enum RestrictionStatus {
|
|
457
|
+
RESTRICTED
|
|
458
|
+
ALLOWED
|
|
459
|
+
}
|
|
460
|
+
|
|
427
461
|
"A metric to order traffic aggregates"
|
|
428
462
|
enum TrafficMetric {
|
|
429
463
|
IMPRESSIONS
|
|
@@ -434,6 +468,7 @@ enum TrafficMetric {
|
|
|
434
468
|
"The type of live export"
|
|
435
469
|
enum LiveExportType {
|
|
436
470
|
LIVE_VISITOR_POLL_RESPONSE
|
|
471
|
+
LIVE_EVENT_CONTACTS
|
|
437
472
|
}
|
|
438
473
|
|
|
439
474
|
"A metric to order live stream event entries by"
|