@wistia/bottler-helpers 1.7.0 → 1.9.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 +7 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -387,6 +387,11 @@ type LiveEventContacts {
|
|
|
387
387
|
orderedEntriesResult(pagination: Pagination!): LiveEventContactAggregateResult
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
+
type ChatDatum {
|
|
391
|
+
roundedPlayerPosition: Int!
|
|
392
|
+
chats: [String!]!
|
|
393
|
+
}
|
|
394
|
+
|
|
390
395
|
type LiveEventContactAggregate {
|
|
391
396
|
visitorKey: String
|
|
392
397
|
accountId: Int
|
|
@@ -422,12 +427,14 @@ type LiveEventContactAggregate {
|
|
|
422
427
|
pollResponses: [LivePollResponse]
|
|
423
428
|
pollResponsesCount: Int
|
|
424
429
|
chatCount: Int
|
|
430
|
+
chats: [ChatDatum!]!
|
|
425
431
|
annotationClickCount: Int
|
|
426
432
|
attendeeHistogram: [Int]
|
|
427
433
|
focusedAttendeeHistogram: [Int]
|
|
428
434
|
}
|
|
429
435
|
|
|
430
436
|
type LivePollResponse {
|
|
437
|
+
pollId: Int
|
|
431
438
|
pollQuestionText: String
|
|
432
439
|
pollOptionText: String
|
|
433
440
|
}
|