ActivityEventType
type ActivityEventType =
| "added"
| "updated"
| "deleted"
| "completed"
| "uncompleted"
| "archived"
| "unarchived"
| "shared"
| "left"
| string & Record<string, never>;
Type hints for known event types. Accepts any string for forward compatibility.