mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 22:37:54 +00:00
feat(api): proxy tag type
This commit is contained in:
parent
e2a16cd76b
commit
b57f5b6cb6
1 changed files with 6 additions and 1 deletions
|
|
@ -8,6 +8,11 @@ interface MemberPrivacy {
|
|||
metadata_privacy?: string
|
||||
}
|
||||
|
||||
type proxytag = {
|
||||
prefix?: string,
|
||||
suffix?: string
|
||||
}
|
||||
|
||||
export default class Member {
|
||||
id?: string;
|
||||
uuid?: string;
|
||||
|
|
@ -22,7 +27,7 @@ export default class Member {
|
|||
created?: string;
|
||||
keep_proxy?: boolean
|
||||
system?: string;
|
||||
proxy_tags?: Array<object>;
|
||||
proxy_tags?: Array<proxytag>;
|
||||
privacy?: MemberPrivacy
|
||||
|
||||
constructor(data: any) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue