| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**
- * Types for module hook events fired across the application
- */
- export type TrackChangesAcceptedEvent = {
- projectId: string
- docId: string
- userId: string
- changeContributors: string[]
- }
- export type TrackChangesRejectedEvent = {
- 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
- }
|