mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 00:18:19 +01:00
feat(client): ✨ Add client package
This commit is contained in:
parent
69be6967bd
commit
605d6a4c7d
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
"conventionalCommits.scopes": ["docs", "build", "federation"]
|
"conventionalCommits.scopes": ["docs", "build", "federation", "client"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
client/bun.lockb
Executable file
BIN
client/bun.lockb
Executable file
Binary file not shown.
0
client/index.ts
Normal file
0
client/index.ts
Normal file
191
client/lysand/base.ts
Normal file
191
client/lysand/base.ts
Normal file
|
|
@ -0,0 +1,191 @@
|
||||||
|
import { DEFAULT_UA } from "./constants";
|
||||||
|
|
||||||
|
type HttpVerb = "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
||||||
|
type ConvertibleObject = Record<
|
||||||
|
string,
|
||||||
|
string | number | boolean | File | undefined | null
|
||||||
|
>;
|
||||||
|
|
||||||
|
export interface Output<ReturnType> {
|
||||||
|
data: ReturnType;
|
||||||
|
headers: Headers;
|
||||||
|
}
|
||||||
|
|
||||||
|
const objectToFormData = (obj: ConvertibleObject): FormData => {
|
||||||
|
return Object.keys(obj).reduce((formData, key) => {
|
||||||
|
if (obj[key] === undefined || obj[key] === null) return formData;
|
||||||
|
formData.append(key, String(obj[key]));
|
||||||
|
return formData;
|
||||||
|
}, new FormData());
|
||||||
|
};
|
||||||
|
|
||||||
|
export class ResponseError extends Error {}
|
||||||
|
|
||||||
|
export class BaseClient {
|
||||||
|
constructor(
|
||||||
|
protected baseUrl: URL,
|
||||||
|
private accessToken?: string,
|
||||||
|
) {}
|
||||||
|
|
||||||
|
get url(): URL {
|
||||||
|
return this.baseUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
get token(): string | undefined {
|
||||||
|
return this.accessToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
private async request<ReturnType>(
|
||||||
|
request: Request,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
const result = await fetch(request);
|
||||||
|
|
||||||
|
if (!result.ok) {
|
||||||
|
const error = await result.json();
|
||||||
|
throw new ResponseError(
|
||||||
|
`Request failed (${result.status}): ${
|
||||||
|
error.error || error.message || result.statusText
|
||||||
|
}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
data: await result.json(),
|
||||||
|
headers: result.headers,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private async constructRequest(
|
||||||
|
path: string,
|
||||||
|
method: HttpVerb,
|
||||||
|
body?: object | FormData,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Request> {
|
||||||
|
return new Request(new URL(path, this.baseUrl).toString(), {
|
||||||
|
method,
|
||||||
|
headers: {
|
||||||
|
Authorization: this.accessToken
|
||||||
|
? `Bearer ${this.accessToken}`
|
||||||
|
: "",
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
"User-Agent": DEFAULT_UA,
|
||||||
|
...extra?.headers,
|
||||||
|
},
|
||||||
|
body: body
|
||||||
|
? body instanceof FormData
|
||||||
|
? body
|
||||||
|
: JSON.stringify(body)
|
||||||
|
: undefined,
|
||||||
|
...extra,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async get<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(path, "GET", undefined, extra),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async post<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body?: object,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(path, "POST", body, extra),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async postForm<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body: FormData | ConvertibleObject,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(
|
||||||
|
path,
|
||||||
|
"POST",
|
||||||
|
body instanceof FormData ? body : objectToFormData(body),
|
||||||
|
extra,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async put<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body?: object,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(path, "PUT", body, extra),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async putForm<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body: FormData | ConvertibleObject,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(
|
||||||
|
path,
|
||||||
|
"PUT",
|
||||||
|
body instanceof FormData ? body : objectToFormData(body),
|
||||||
|
extra,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async patch<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body?: object,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(path, "PATCH", body, extra),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async patchForm<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body: FormData | ConvertibleObject,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(
|
||||||
|
path,
|
||||||
|
"PATCH",
|
||||||
|
body instanceof FormData ? body : objectToFormData(body),
|
||||||
|
extra,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async delete<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body?: object,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(path, "DELETE", body, extra),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async deleteForm<ReturnType>(
|
||||||
|
path: string,
|
||||||
|
body: FormData | ConvertibleObject,
|
||||||
|
extra?: RequestInit,
|
||||||
|
): Promise<Output<ReturnType>> {
|
||||||
|
return await this.request(
|
||||||
|
await this.constructRequest(
|
||||||
|
path,
|
||||||
|
"DELETE",
|
||||||
|
body instanceof FormData ? body : objectToFormData(body),
|
||||||
|
extra,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
5
client/lysand/constants.ts
Normal file
5
client/lysand/constants.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
import pkg from "../package.json";
|
||||||
|
|
||||||
|
export const NO_REDIRECT = "urn:ietf:wg:oauth:2.0:oob";
|
||||||
|
export const DEFAULT_SCOPE = ["read", "write", "follow"];
|
||||||
|
export const DEFAULT_UA = `LysandClient/${pkg.version} (+${pkg.homepage})`;
|
||||||
1133
client/lysand/lysand.ts
Normal file
1133
client/lysand/lysand.ts
Normal file
File diff suppressed because it is too large
Load diff
60
client/package.json
Normal file
60
client/package.json
Normal file
|
|
@ -0,0 +1,60 @@
|
||||||
|
{
|
||||||
|
"name": "@lysand-org/client",
|
||||||
|
"displayName": "Lysand Client",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"author": {
|
||||||
|
"email": "jesse.wierzbinski@lysand.org",
|
||||||
|
"name": "Jesse Wierzbinski (CPlusPatch)",
|
||||||
|
"url": "https://cpluspatch.com"
|
||||||
|
},
|
||||||
|
"readme": "README.md",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/lysand-org/api.git",
|
||||||
|
"directory": "client"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/lysand-org/api/issues"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "Jesse Wierzbinski",
|
||||||
|
"email": "jesse.wierzbinski@lysand.org",
|
||||||
|
"url": "https://cpluspatch.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"maintainers": [
|
||||||
|
{
|
||||||
|
"name": "Jesse Wierzbinski",
|
||||||
|
"email": "jesse.wierzbinski@lysand.org",
|
||||||
|
"url": "https://cpluspatch.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Client for Mastodon and Lysand API",
|
||||||
|
"categories": ["Other"],
|
||||||
|
"type": "module",
|
||||||
|
"engines": {
|
||||||
|
"bun": ">=1.1.8"
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"import": "./dist/index.js",
|
||||||
|
"default": "./dist/index.js",
|
||||||
|
"types": "./dist/index.d.ts"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/lysand"
|
||||||
|
},
|
||||||
|
"homepage": "https://lysand.org",
|
||||||
|
"keywords": ["lysand", "mastodon", "api", "typescript", "rest"],
|
||||||
|
"packageManager": "bun@1.1.8",
|
||||||
|
"dependencies": {
|
||||||
|
"@badgateway/oauth2-client": "^2.3.0",
|
||||||
|
"@types/mime-types": "^2.1.4",
|
||||||
|
"magic-regexp": "^0.8.0",
|
||||||
|
"mime-types": "^2.1.35"
|
||||||
|
}
|
||||||
|
}
|
||||||
34
client/types/account.ts
Normal file
34
client/types/account.ts
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
import type { Emoji } from "./emoji";
|
||||||
|
import type { Field } from "./field";
|
||||||
|
import type { Role } from "./role";
|
||||||
|
import type { Source } from "./source";
|
||||||
|
|
||||||
|
export type Account = {
|
||||||
|
id: string;
|
||||||
|
username: string;
|
||||||
|
acct: string;
|
||||||
|
display_name: string;
|
||||||
|
locked: boolean;
|
||||||
|
discoverable?: boolean;
|
||||||
|
group: boolean | null;
|
||||||
|
noindex: boolean | null;
|
||||||
|
suspended: boolean | null;
|
||||||
|
limited: boolean | null;
|
||||||
|
created_at: string;
|
||||||
|
followers_count: number;
|
||||||
|
following_count: number;
|
||||||
|
statuses_count: number;
|
||||||
|
note: string;
|
||||||
|
url: string;
|
||||||
|
avatar: string;
|
||||||
|
avatar_static: string;
|
||||||
|
header: string;
|
||||||
|
header_static: string;
|
||||||
|
emojis: Array<Emoji>;
|
||||||
|
moved: Account | null;
|
||||||
|
fields: Array<Field>;
|
||||||
|
bot: boolean | null;
|
||||||
|
source?: Source;
|
||||||
|
role?: Role;
|
||||||
|
mute_expires_at?: string;
|
||||||
|
};
|
||||||
6
client/types/activity.ts
Normal file
6
client/types/activity.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
export type Activity = {
|
||||||
|
week: string;
|
||||||
|
statuses: string;
|
||||||
|
logins: string;
|
||||||
|
registrations: string;
|
||||||
|
};
|
||||||
39
client/types/announcement.ts
Normal file
39
client/types/announcement.ts
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
import type { Emoji } from "./emoji";
|
||||||
|
import type { StatusTag } from "./status";
|
||||||
|
|
||||||
|
export type Announcement = {
|
||||||
|
id: string;
|
||||||
|
content: string;
|
||||||
|
starts_at: string | null;
|
||||||
|
ends_at: string | null;
|
||||||
|
published: boolean;
|
||||||
|
all_day: boolean;
|
||||||
|
published_at: string;
|
||||||
|
updated_at: string | null;
|
||||||
|
read: boolean | null;
|
||||||
|
mentions: Array<AnnouncementAccount>;
|
||||||
|
statuses: Array<AnnouncementStatus>;
|
||||||
|
tags: Array<StatusTag>;
|
||||||
|
emojis: Array<Emoji>;
|
||||||
|
reactions: Array<AnnouncementReaction>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AnnouncementAccount = {
|
||||||
|
id: string;
|
||||||
|
username: string;
|
||||||
|
url: string;
|
||||||
|
acct: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AnnouncementStatus = {
|
||||||
|
id: string;
|
||||||
|
url: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type AnnouncementReaction = {
|
||||||
|
name: string;
|
||||||
|
count: number;
|
||||||
|
me: boolean | null;
|
||||||
|
url: string | null;
|
||||||
|
static_url: string | null;
|
||||||
|
};
|
||||||
14
client/types/application.ts
Normal file
14
client/types/application.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
export type Application = {
|
||||||
|
name: string;
|
||||||
|
website?: string | null;
|
||||||
|
vapid_key?: string | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type ApplicationData = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
website?: string | null;
|
||||||
|
client_id: string;
|
||||||
|
client_secret: string;
|
||||||
|
vapid_key?: string | null;
|
||||||
|
};
|
||||||
13
client/types/async_attachment.ts
Normal file
13
client/types/async_attachment.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
import type { Meta } from "./attachment";
|
||||||
|
|
||||||
|
export type AsyncAttachment = {
|
||||||
|
id: string;
|
||||||
|
type: "unknown" | "image" | "gifv" | "video" | "audio";
|
||||||
|
url: string | null;
|
||||||
|
remote_url: string | null;
|
||||||
|
preview_url: string;
|
||||||
|
text_url: string | null;
|
||||||
|
meta: Meta | null;
|
||||||
|
description: string | null;
|
||||||
|
blurhash: string | null;
|
||||||
|
};
|
||||||
47
client/types/attachment.ts
Normal file
47
client/types/attachment.ts
Normal file
|
|
@ -0,0 +1,47 @@
|
||||||
|
export type Sub = {
|
||||||
|
// For Image, Gifv, and Video
|
||||||
|
width?: number;
|
||||||
|
height?: number;
|
||||||
|
size?: string;
|
||||||
|
aspect?: number;
|
||||||
|
|
||||||
|
// For Gifv and Video
|
||||||
|
frame_rate?: string;
|
||||||
|
|
||||||
|
// For Audio, Gifv, and Video
|
||||||
|
duration?: number;
|
||||||
|
bitrate?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Focus = {
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Meta = {
|
||||||
|
original?: Sub;
|
||||||
|
small?: Sub;
|
||||||
|
focus?: Focus;
|
||||||
|
length?: string;
|
||||||
|
duration?: number;
|
||||||
|
fps?: number;
|
||||||
|
size?: string;
|
||||||
|
width?: number;
|
||||||
|
height?: number;
|
||||||
|
aspect?: number;
|
||||||
|
audio_encode?: string;
|
||||||
|
audio_bitrate?: string;
|
||||||
|
audio_channel?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Attachment = {
|
||||||
|
id: string;
|
||||||
|
type: "unknown" | "image" | "gifv" | "video" | "audio";
|
||||||
|
url: string;
|
||||||
|
remote_url: string | null;
|
||||||
|
preview_url: string | null;
|
||||||
|
text_url: string | null;
|
||||||
|
meta: Meta | null;
|
||||||
|
description: string | null;
|
||||||
|
blurhash: string | null;
|
||||||
|
};
|
||||||
16
client/types/card.ts
Normal file
16
client/types/card.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
export type Card = {
|
||||||
|
url: string;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
type: "link" | "photo" | "video" | "rich";
|
||||||
|
image: string | null;
|
||||||
|
author_name: string | null;
|
||||||
|
author_url: string | null;
|
||||||
|
provider_name: string | null;
|
||||||
|
provider_url: string | null;
|
||||||
|
html: string | null;
|
||||||
|
width: number | null;
|
||||||
|
height: number | null;
|
||||||
|
embed_url: string | null;
|
||||||
|
blurhash: string | null;
|
||||||
|
};
|
||||||
6
client/types/context.ts
Normal file
6
client/types/context.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
import type { Status } from "./status";
|
||||||
|
|
||||||
|
export type Context = {
|
||||||
|
ancestors: Array<Status>;
|
||||||
|
descendants: Array<Status>;
|
||||||
|
};
|
||||||
9
client/types/conversation.ts
Normal file
9
client/types/conversation.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import type { Account } from "./account";
|
||||||
|
import type { Status } from "./status";
|
||||||
|
|
||||||
|
export type Conversation = {
|
||||||
|
id: string;
|
||||||
|
accounts: Array<Account>;
|
||||||
|
last_status: Status | null;
|
||||||
|
unread: boolean;
|
||||||
|
};
|
||||||
7
client/types/emoji.ts
Normal file
7
client/types/emoji.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
export type Emoji = {
|
||||||
|
shortcode: string;
|
||||||
|
static_url: string;
|
||||||
|
url: string;
|
||||||
|
visible_in_picker: boolean;
|
||||||
|
category?: string;
|
||||||
|
};
|
||||||
6
client/types/featured_tag.ts
Normal file
6
client/types/featured_tag.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
export type FeaturedTag = {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
statuses_count: number;
|
||||||
|
last_status_at: string;
|
||||||
|
};
|
||||||
6
client/types/field.ts
Normal file
6
client/types/field.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
export type Field = {
|
||||||
|
name: string;
|
||||||
|
value: string;
|
||||||
|
verified_at?: string | null;
|
||||||
|
verified?: boolean | false;
|
||||||
|
};
|
||||||
10
client/types/filter.ts
Normal file
10
client/types/filter.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
export type Filter = {
|
||||||
|
id: string;
|
||||||
|
phrase: string;
|
||||||
|
context: Array<FilterContext>;
|
||||||
|
expires_at: string | null;
|
||||||
|
irreversible: boolean;
|
||||||
|
whole_word: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type FilterContext = string;
|
||||||
25
client/types/follow_request.ts
Normal file
25
client/types/follow_request.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
import type { Emoji } from "./emoji";
|
||||||
|
import type { Field } from "./field";
|
||||||
|
|
||||||
|
export type FollowRequest = {
|
||||||
|
id: number;
|
||||||
|
username: string;
|
||||||
|
acct: string;
|
||||||
|
display_name: string;
|
||||||
|
locked: boolean;
|
||||||
|
bot: boolean;
|
||||||
|
discoverable?: boolean;
|
||||||
|
group: boolean;
|
||||||
|
created_at: string;
|
||||||
|
note: string;
|
||||||
|
url: string;
|
||||||
|
avatar: string;
|
||||||
|
avatar_static: string;
|
||||||
|
header: string;
|
||||||
|
header_static: string;
|
||||||
|
followers_count: number;
|
||||||
|
following_count: number;
|
||||||
|
statuses_count: number;
|
||||||
|
emojis: Array<Emoji>;
|
||||||
|
fields: Array<Field>;
|
||||||
|
};
|
||||||
5
client/types/history.ts
Normal file
5
client/types/history.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
export type History = {
|
||||||
|
day: string;
|
||||||
|
uses: number;
|
||||||
|
accounts: number;
|
||||||
|
};
|
||||||
7
client/types/identity_proof.ts
Normal file
7
client/types/identity_proof.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
export type IdentityProof = {
|
||||||
|
provider: string;
|
||||||
|
provider_username: string;
|
||||||
|
updated_at: string;
|
||||||
|
proof_url: string;
|
||||||
|
profile_url: string;
|
||||||
|
};
|
||||||
38
client/types/instance.ts
Normal file
38
client/types/instance.ts
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
import type { Account } from "./account";
|
||||||
|
import type { Stats } from "./stats";
|
||||||
|
import type { URLs } from "./urls";
|
||||||
|
|
||||||
|
export type Instance = {
|
||||||
|
uri: string;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
email: string;
|
||||||
|
version: string;
|
||||||
|
thumbnail: string | null;
|
||||||
|
urls: URLs | null;
|
||||||
|
stats: Stats;
|
||||||
|
languages: Array<string>;
|
||||||
|
registrations: boolean;
|
||||||
|
approval_required: boolean;
|
||||||
|
invites_enabled?: boolean;
|
||||||
|
configuration: {
|
||||||
|
statuses: {
|
||||||
|
max_characters: number;
|
||||||
|
max_media_attachments?: number;
|
||||||
|
characters_reserved_per_url?: number;
|
||||||
|
};
|
||||||
|
polls?: {
|
||||||
|
max_options: number;
|
||||||
|
max_characters_per_option: number;
|
||||||
|
min_expiration: number;
|
||||||
|
max_expiration: number;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
contact_account?: Account;
|
||||||
|
rules?: Array<InstanceRule>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type InstanceRule = {
|
||||||
|
id: string;
|
||||||
|
text: string;
|
||||||
|
};
|
||||||
7
client/types/list.ts
Normal file
7
client/types/list.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
export type List = {
|
||||||
|
id: string;
|
||||||
|
title: string;
|
||||||
|
replies_policy: RepliesPolicy | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type RepliesPolicy = "followed" | "list" | "none";
|
||||||
13
client/types/marker.ts
Normal file
13
client/types/marker.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
export type Marker = {
|
||||||
|
home?: {
|
||||||
|
last_read_id: string;
|
||||||
|
version: number;
|
||||||
|
updated_at: string;
|
||||||
|
};
|
||||||
|
notifications?: {
|
||||||
|
last_read_id: string;
|
||||||
|
version: number;
|
||||||
|
updated_at: string;
|
||||||
|
unread_count?: number;
|
||||||
|
};
|
||||||
|
};
|
||||||
6
client/types/mention.ts
Normal file
6
client/types/mention.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
export type Mention = {
|
||||||
|
id: string;
|
||||||
|
username: string;
|
||||||
|
url: string;
|
||||||
|
acct: string;
|
||||||
|
};
|
||||||
15
client/types/notification.ts
Normal file
15
client/types/notification.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
import type { Account } from "./account";
|
||||||
|
import type { Reaction } from "./reaction";
|
||||||
|
import type { Status } from "./status";
|
||||||
|
|
||||||
|
export type Notification = {
|
||||||
|
account: Account | null;
|
||||||
|
created_at: string;
|
||||||
|
id: string;
|
||||||
|
status?: Status;
|
||||||
|
reaction?: Reaction;
|
||||||
|
type: NotificationType;
|
||||||
|
target?: Account;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type NotificationType = string;
|
||||||
14
client/types/poll.ts
Normal file
14
client/types/poll.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
export type Poll = {
|
||||||
|
id: string;
|
||||||
|
expires_at: string | null;
|
||||||
|
expired: boolean;
|
||||||
|
multiple: boolean;
|
||||||
|
votes_count: number;
|
||||||
|
options: Array<PollOption>;
|
||||||
|
voted: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type PollOption = {
|
||||||
|
title: string;
|
||||||
|
votes_count: number | null;
|
||||||
|
};
|
||||||
9
client/types/preferences.ts
Normal file
9
client/types/preferences.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import type { StatusVisibility } from "./status";
|
||||||
|
|
||||||
|
export type Preferences = {
|
||||||
|
"posting:default:visibility": StatusVisibility;
|
||||||
|
"posting:default:sensitive": boolean;
|
||||||
|
"posting:default:language": string | null;
|
||||||
|
"reading:expand:media": "default" | "show_all" | "hide_all";
|
||||||
|
"reading:expand:spoilers": boolean;
|
||||||
|
};
|
||||||
14
client/types/push_subscription.ts
Normal file
14
client/types/push_subscription.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
export type Alerts = {
|
||||||
|
follow: boolean;
|
||||||
|
favourite: boolean;
|
||||||
|
mention: boolean;
|
||||||
|
reblog: boolean;
|
||||||
|
poll: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type PushSubscription = {
|
||||||
|
id: string;
|
||||||
|
endpoint: string;
|
||||||
|
server_key: string;
|
||||||
|
alerts: Alerts;
|
||||||
|
};
|
||||||
11
client/types/reaction.ts
Normal file
11
client/types/reaction.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
import type { Account } from "./account";
|
||||||
|
|
||||||
|
export type Reaction = {
|
||||||
|
count: number;
|
||||||
|
me: boolean;
|
||||||
|
name: string;
|
||||||
|
url?: string;
|
||||||
|
static_url?: string;
|
||||||
|
accounts?: Array<Account>;
|
||||||
|
account_ids?: Array<string>;
|
||||||
|
};
|
||||||
15
client/types/relationship.ts
Normal file
15
client/types/relationship.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
export type Relationship = {
|
||||||
|
id: string;
|
||||||
|
following: boolean;
|
||||||
|
followed_by: boolean;
|
||||||
|
blocking: boolean;
|
||||||
|
blocked_by: boolean;
|
||||||
|
muting: boolean;
|
||||||
|
muting_notifications: boolean;
|
||||||
|
requested: boolean;
|
||||||
|
domain_blocking: boolean;
|
||||||
|
showing_reblogs: boolean;
|
||||||
|
endorsed: boolean;
|
||||||
|
notifying: boolean;
|
||||||
|
note: string | null;
|
||||||
|
};
|
||||||
16
client/types/report.ts
Normal file
16
client/types/report.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import type { Account } from "./account";
|
||||||
|
|
||||||
|
export type Report = {
|
||||||
|
id: string;
|
||||||
|
action_taken: boolean;
|
||||||
|
action_taken_at: string | null;
|
||||||
|
status_ids: Array<string> | null;
|
||||||
|
rule_ids: Array<string> | null;
|
||||||
|
// These parameters don't exist in Pleroma
|
||||||
|
category: Category | null;
|
||||||
|
comment: string | null;
|
||||||
|
forwarded: boolean | null;
|
||||||
|
target_account?: Account | null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Category = "spam" | "violation" | "other";
|
||||||
9
client/types/results.ts
Normal file
9
client/types/results.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import type { Account } from "./account";
|
||||||
|
import type { Status } from "./status";
|
||||||
|
import type { Tag } from "./tag";
|
||||||
|
|
||||||
|
export type Results = {
|
||||||
|
accounts: Array<Account>;
|
||||||
|
statuses: Array<Status>;
|
||||||
|
hashtags: Array<Tag>;
|
||||||
|
};
|
||||||
3
client/types/role.ts
Normal file
3
client/types/role.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
export type Role = {
|
||||||
|
name: string;
|
||||||
|
};
|
||||||
9
client/types/scheduled_status.ts
Normal file
9
client/types/scheduled_status.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import type { Attachment } from "./attachment";
|
||||||
|
import type { StatusParams } from "./status_params";
|
||||||
|
|
||||||
|
export type ScheduledStatus = {
|
||||||
|
id: string;
|
||||||
|
scheduled_at: string;
|
||||||
|
params: StatusParams;
|
||||||
|
media_attachments: Array<Attachment> | null;
|
||||||
|
};
|
||||||
9
client/types/source.ts
Normal file
9
client/types/source.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
import type { Field } from "./field";
|
||||||
|
|
||||||
|
export type Source = {
|
||||||
|
privacy: string | null;
|
||||||
|
sensitive: boolean | null;
|
||||||
|
language: string | null;
|
||||||
|
note: string;
|
||||||
|
fields: Array<Field>;
|
||||||
|
};
|
||||||
5
client/types/stats.ts
Normal file
5
client/types/stats.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
export type Stats = {
|
||||||
|
user_count: number;
|
||||||
|
status_count: number;
|
||||||
|
domain_count: number;
|
||||||
|
};
|
||||||
50
client/types/status.ts
Normal file
50
client/types/status.ts
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
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";
|
||||||
|
|
||||||
|
export type Status = {
|
||||||
|
id: string;
|
||||||
|
uri: string;
|
||||||
|
url: string;
|
||||||
|
account: Account;
|
||||||
|
in_reply_to_id: string | null;
|
||||||
|
in_reply_to_account_id: string | null;
|
||||||
|
reblog: Status | null;
|
||||||
|
content: string;
|
||||||
|
plain_content: string | null;
|
||||||
|
created_at: string;
|
||||||
|
edited_at: string | null;
|
||||||
|
emojis: Emoji[];
|
||||||
|
replies_count: number;
|
||||||
|
reblogs_count: number;
|
||||||
|
favourites_count: number;
|
||||||
|
reblogged: boolean | null;
|
||||||
|
favourited: boolean | null;
|
||||||
|
muted: boolean | null;
|
||||||
|
sensitive: boolean;
|
||||||
|
spoiler_text: string;
|
||||||
|
visibility: StatusVisibility;
|
||||||
|
media_attachments: Array<Attachment>;
|
||||||
|
mentions: Array<Mention>;
|
||||||
|
tags: Array<StatusTag>;
|
||||||
|
card: Card | null;
|
||||||
|
poll: Poll | null;
|
||||||
|
application: Application | null;
|
||||||
|
language: string | null;
|
||||||
|
pinned: boolean | null;
|
||||||
|
emoji_reactions: Array<Reaction>;
|
||||||
|
quote: boolean;
|
||||||
|
bookmarked: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type StatusTag = {
|
||||||
|
name: string;
|
||||||
|
url: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export type StatusVisibility = "public" | "unlisted" | "private" | "direct";
|
||||||
12
client/types/status_params.ts
Normal file
12
client/types/status_params.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
import type { StatusVisibility } from "./status";
|
||||||
|
|
||||||
|
export type StatusParams = {
|
||||||
|
text: string;
|
||||||
|
in_reply_to_id: string | null;
|
||||||
|
media_ids: Array<string> | null;
|
||||||
|
sensitive: boolean | null;
|
||||||
|
spoiler_text: string | null;
|
||||||
|
visibility: StatusVisibility | null;
|
||||||
|
scheduled_at: string | null;
|
||||||
|
application_id: number | null;
|
||||||
|
};
|
||||||
5
client/types/status_source.ts
Normal file
5
client/types/status_source.ts
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
export type StatusSource = {
|
||||||
|
id: string;
|
||||||
|
text: string;
|
||||||
|
spoiler_text: string;
|
||||||
|
};
|
||||||
8
client/types/tag.ts
Normal file
8
client/types/tag.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
import type { History } from "./history";
|
||||||
|
|
||||||
|
export type Tag = {
|
||||||
|
name: string;
|
||||||
|
url: string;
|
||||||
|
history: Array<History>;
|
||||||
|
following?: boolean;
|
||||||
|
};
|
||||||
6
client/types/token.ts
Normal file
6
client/types/token.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
export type Token = {
|
||||||
|
access_token: string;
|
||||||
|
token_type: string;
|
||||||
|
scope: string;
|
||||||
|
created_at: number;
|
||||||
|
};
|
||||||
3
client/types/urls.ts
Normal file
3
client/types/urls.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
export type URLs = {
|
||||||
|
streaming_api: string;
|
||||||
|
};
|
||||||
|
|
@ -20,7 +20,9 @@
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"emitDecoratorMetadata": false,
|
"emitDecoratorMetadata": false,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"verbatimModuleSyntax": true
|
"verbatimModuleSyntax": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true
|
||||||
},
|
},
|
||||||
"include": ["*.ts", "*.d.ts", "**/*.ts", "**/*.d.ts"]
|
"include": ["*.ts", "*.d.ts", "**/*.ts", "**/*.d.ts"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue