api: include connections in emote sets
This commit is contained in:
parent
43cd2af30f
commit
24d2f09767
17
api/read.tsp
17
api/read.tsp
@ -139,6 +139,23 @@ model EmoteSet {
|
||||
|
||||
/** Time at which the emote set was created. */
|
||||
createdAt: utcDateTime;
|
||||
|
||||
/** Active connections using the set, if any. */
|
||||
connections?: ConnectedSet[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Active connection between an emote set and an external platform.
|
||||
*/
|
||||
model ConnectedSet {
|
||||
/** Platform where the set is connected. */
|
||||
platform: platform;
|
||||
|
||||
/** ID of the user on the connected platform. */
|
||||
connectedID: string;
|
||||
|
||||
/** Name of the user on the connected platform. */
|
||||
name: string;
|
||||
}
|
||||
|
||||
/** Requested emote. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user