refactor: 🚚 Rename Lysand to Versia

This commit is contained in:
Jesse Wierzbinski 2024-08-24 14:58:50 +02:00
parent 5b119949dc
commit c9f4885c72
No known key found for this signature in database
27 changed files with 112 additions and 112 deletions

View file

@ -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;
};

View file

@ -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: {

View file

@ -1,4 +1,4 @@
export type LysandRole = {
export type VersiaRole = {
id: string;
name: string;
permissions: RolePermission[];