ActivityObjectType
type ActivityObjectType =
| "task"
| "comment"
| "project"
| DeprecatedItem
| DeprecatedNote
| string & Record<string, never>;
Type hints for known object types. Accepts any string for forward compatibility. Supports both modern naming ('task', 'comment') and legacy naming ('item', 'note').
Note: The legacy values 'item' and 'note' are deprecated. Use 'task' and 'comment' instead.