@wistia/bottler-helpers 1.10.0 → 1.11.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 +15 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -63,6 +63,9 @@ type AccountEmbedLocationAggregate {
|
|
|
63
63
|
accountKey: String
|
|
64
64
|
accountName: String
|
|
65
65
|
embedLocationCount: Int
|
|
66
|
+
mediaCount: Int
|
|
67
|
+
embedDomain: String
|
|
68
|
+
embedPath: String
|
|
66
69
|
plays: Int
|
|
67
70
|
playRate: Float
|
|
68
71
|
engagementRate: Float
|
|
@@ -394,6 +397,16 @@ type ChatDatum {
|
|
|
394
397
|
chats: [String!]!
|
|
395
398
|
}
|
|
396
399
|
|
|
400
|
+
type QuestionItem {
|
|
401
|
+
questionId: String!
|
|
402
|
+
questionText: String!
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
type QuestionDatum {
|
|
406
|
+
roundedPlayerPosition: Int!
|
|
407
|
+
qaQuestions: [QuestionItem!]!
|
|
408
|
+
}
|
|
409
|
+
|
|
397
410
|
type LiveEventContactAggregate {
|
|
398
411
|
visitorKey: String
|
|
399
412
|
accountId: Int
|
|
@@ -421,6 +434,7 @@ type LiveEventContactAggregate {
|
|
|
421
434
|
ipRegion: String
|
|
422
435
|
ipCountry: String
|
|
423
436
|
ipCity: String
|
|
437
|
+
qaQuestions: [QuestionDatum!]!
|
|
424
438
|
qaAnswers: Int
|
|
425
439
|
engagementRate: Float
|
|
426
440
|
focusedRate: Float
|
|
@@ -457,6 +471,7 @@ union LiveEventContactAggregateResult = LiveEventContactAggregateEntries | Aggre
|
|
|
457
471
|
input LiveFilters {
|
|
458
472
|
attendance: AttendanceFilter
|
|
459
473
|
restriction: RestrictionStatusFilter
|
|
474
|
+
uniqueIds: [String]
|
|
460
475
|
}
|
|
461
476
|
|
|
462
477
|
"Filters registrants by attendance status"
|