File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ export type AdminReportNotification =
9191 */
9292export type SeveredRelationshipsNotification =
9393 BaseNotificationPlain < "severed_relationships" > & {
94- relationshipSeveranceEvent : RelationshipSeveranceEvent ;
94+ event : RelationshipSeveranceEvent ;
9595 } ;
9696
9797/**
Original file line number Diff line number Diff line change @@ -8,10 +8,12 @@ export interface RelationshipSeveranceEvent {
88 type : RelationshipSeveranceEventType ;
99 /** Whether the list of severed relationships is unavailable because the underlying issue has been purged. */
1010 purged : boolean ;
11+ /** Number of followers that were removed as result of the event. */
12+ followersCount : number ;
13+ /** Number of accounts the user stopped following as result of the event. */
14+ followingCount : number ;
1115 /** Name of the target of the moderation/block event. This is either a domain name or a user handle, depending on the event type. */
1216 targetName : string ;
13- /** Number of follow relationships (in either direction) that were severed. */
14- relationshipsCount ?: number | null ;
1517 /** When the event took place. */
1618 createdAt : string ;
1719}
You can’t perform that action at this time.
0 commit comments