| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * Types for module hook events fired across the application
- */
- export type TrackChangesAcceptedEvent = {
- projectId: string
- docId: string
- userId: string
- changeContributors: string[]
- }
- export type CommentAddedEvent = {
- projectId: string
- userId: string
- threadId: string
- messageId: string
- }
- export type CommentResolvedEvent = {
- projectId: string
- userId: string
- threadId: string
- }
- export type CommentReopenedEvent = {
- projectId: string
- userId: string
- threadId: string
- }
- export type CommentEditedEvent = {
- projectId: string
- userId: string
- threadId: string
- messageId: string
- }
- export type CommentDeletedEvent = {
- projectId: string
- userId: string
- threadId: string
- messageId: string
- }
- export type ThreadDeletedEvent = {
- projectId: string
- userId: string
- threadId: string
- }
- export type ProjectModifiedEvent = {
- projectId: string
- timestamp: number
- }
|