Skip to content

Commit 89dcf72

Browse files
committed
Add deleted_at field to collaborations
1 parent 54fd8ab commit 89dcf72

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/entities/Collaboration.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,10 @@ export interface Collaboration {
4242
*/
4343
updated_at: Date;
4444

45+
/**
46+
* The date/time at which this collaboration was deleted. If not deleted, this will be excluded and/or `undefined`.
47+
* Note that deleted collaborations only appear in logs.
48+
*/
49+
deleted_at?: Date;
50+
4551
}

0 commit comments

Comments
 (0)