mirror of
https://github.com/versia-pub/api.git
synced 2026-03-13 04:09:15 +01:00
refactor: 🚚 Rename Lysand to Versia
This commit is contained in:
parent
5b119949dc
commit
c9f4885c72
27 changed files with 112 additions and 112 deletions
|
|
@ -1,8 +1,8 @@
|
|||
import type { Emoji } from "./emoji";
|
||||
import type { Field } from "./field";
|
||||
import type { LysandRole } from "./lysand";
|
||||
import type { Role } from "./role";
|
||||
import type { Source } from "./source";
|
||||
import type { VersiaRole } from "./versia";
|
||||
|
||||
export type Account = {
|
||||
id: string;
|
||||
|
|
@ -32,6 +32,6 @@ export type Account = {
|
|||
bot: boolean | null;
|
||||
source?: Source;
|
||||
role?: Role;
|
||||
roles: LysandRole[];
|
||||
roles: VersiaRole[];
|
||||
mute_expires_at?: string;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ export type Instance = {
|
|||
domain: string;
|
||||
title: string;
|
||||
version: string;
|
||||
lysand_version: string;
|
||||
versia_version: string;
|
||||
source_url: string;
|
||||
description: string;
|
||||
usage: {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
export type LysandRole = {
|
||||
export type VersiaRole = {
|
||||
id: string;
|
||||
name: string;
|
||||
permissions: RolePermission[];
|
||||
Loading…
Add table
Add a link
Reference in a new issue