mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-17 09:59:10 +00:00
feat(api): add /sync-from-legacy route
This commit is contained in:
parent
a983492154
commit
28d573043d
15 changed files with 260 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
export enum CategoryType {
|
||||
Single = 0,
|
||||
Multi,
|
||||
Multi = 0,
|
||||
Single = 1,
|
||||
}
|
||||
|
||||
export type Category = {
|
||||
|
|
|
@ -10,8 +10,9 @@ export type Guild = {
|
|||
};
|
||||
|
||||
export enum Features {
|
||||
None,
|
||||
None = 0,
|
||||
Preview = None,
|
||||
LegacyGuild = 1 << 1,
|
||||
}
|
||||
|
||||
export type GuildData = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue