mirror of
https://github.com/versia-pub/api.git
synced 2026-03-13 04:09:15 +01:00
chore: ⬆️ Upgrade dependencies, fix new linter issues
This commit is contained in:
parent
6c15ceb1e9
commit
23936d549f
40 changed files with 154 additions and 154 deletions
|
|
@ -1,8 +1,8 @@
|
|||
import type { Emoji } from "./emoji";
|
||||
import type { Field } from "./field";
|
||||
import type { Role } from "./role";
|
||||
import type { Source } from "./source";
|
||||
import type { VersiaRole } from "./versia";
|
||||
import type { Emoji } from "./emoji.ts";
|
||||
import type { Field } from "./field.ts";
|
||||
import type { Role } from "./role.ts";
|
||||
import type { Source } from "./source.ts";
|
||||
import type { VersiaRole } from "./versia.ts";
|
||||
|
||||
export type Account = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import type { Emoji } from "./emoji";
|
||||
import type { StatusTag } from "./status";
|
||||
import type { Emoji } from "./emoji.ts";
|
||||
import type { StatusTag } from "./status.ts";
|
||||
|
||||
export type Announcement = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { Meta } from "./attachment";
|
||||
import type { Meta } from "./attachment.ts";
|
||||
|
||||
export type AsyncAttachment = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { Status } from "./status";
|
||||
import type { Status } from "./status.ts";
|
||||
|
||||
export type Context = {
|
||||
ancestors: Status[];
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import type { Account } from "./account";
|
||||
import type { Status } from "./status";
|
||||
import type { Account } from "./account.ts";
|
||||
import type { Status } from "./status.ts";
|
||||
|
||||
export type Conversation = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import type { Emoji } from "./emoji";
|
||||
import type { Field } from "./field";
|
||||
import type { Emoji } from "./emoji.ts";
|
||||
import type { Field } from "./field.ts";
|
||||
|
||||
export type FollowRequest = {
|
||||
id: number;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { Account } from "./account";
|
||||
import type { Account } from "./account.ts";
|
||||
|
||||
export type Instance = {
|
||||
domain: string;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import type { Account } from "./account";
|
||||
import type { Reaction } from "./reaction";
|
||||
import type { Status } from "./status";
|
||||
import type { Account } from "./account.ts";
|
||||
import type { Reaction } from "./reaction.ts";
|
||||
import type { Status } from "./status.ts";
|
||||
|
||||
export type Notification = {
|
||||
account: Account | null;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { StatusVisibility } from "./status";
|
||||
import type { StatusVisibility } from "./status.ts";
|
||||
|
||||
export type Preferences = {
|
||||
"posting:default:visibility": StatusVisibility;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { Account } from "./account";
|
||||
import type { Account } from "./account.ts";
|
||||
|
||||
export type Reaction = {
|
||||
count: number;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { Account } from "./account";
|
||||
import type { Account } from "./account.ts";
|
||||
|
||||
export type Report = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import type { Account } from "./account";
|
||||
import type { Status } from "./status";
|
||||
import type { Tag } from "./tag";
|
||||
import type { Account } from "./account.ts";
|
||||
import type { Status } from "./status.ts";
|
||||
import type { Tag } from "./tag.ts";
|
||||
|
||||
export type Results = {
|
||||
accounts: Account[];
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import type { Attachment } from "./attachment";
|
||||
import type { StatusParams } from "./status_params";
|
||||
import type { Attachment } from "./attachment.ts";
|
||||
import type { StatusParams } from "./status_params.ts";
|
||||
|
||||
export type ScheduledStatus = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { Field } from "./field";
|
||||
import type { Field } from "./field.ts";
|
||||
|
||||
export type Source = {
|
||||
privacy: string | null;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
import type { Account } from "./account";
|
||||
import type { Application } from "./application";
|
||||
import type { Attachment } from "./attachment";
|
||||
import type { Card } from "./card";
|
||||
import type { Emoji } from "./emoji";
|
||||
import type { Mention } from "./mention";
|
||||
import type { Poll } from "./poll";
|
||||
import type { Reaction } from "./reaction";
|
||||
import type { Account } from "./account.ts";
|
||||
import type { Application } from "./application.ts";
|
||||
import type { Attachment } from "./attachment.ts";
|
||||
import type { Card } from "./card.ts";
|
||||
import type { Emoji } from "./emoji.ts";
|
||||
import type { Mention } from "./mention.ts";
|
||||
import type { Poll } from "./poll.ts";
|
||||
import type { Reaction } from "./reaction.ts";
|
||||
|
||||
export type Status = {
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { StatusVisibility } from "./status";
|
||||
import type { StatusVisibility } from "./status.ts";
|
||||
|
||||
export type StatusParams = {
|
||||
text: string;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import type { History } from "./history";
|
||||
import type { History } from "./history.ts";
|
||||
|
||||
export type Tag = {
|
||||
name: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue