mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-13 07:53:58 +00:00
6f1ba67e40
- Fixes #8
115 lines
1.9 KiB
TypeScript
115 lines
1.9 KiB
TypeScript
export enum UserOperation {
|
|
Login, Register, CreateCommunity, CreatePost, ListCommunities, GetPost, GetCommunity, CreateComment, EditComment, CreateCommentLike
|
|
}
|
|
|
|
export interface User {
|
|
id: number;
|
|
iss: string;
|
|
username: string;
|
|
}
|
|
|
|
export interface Community {
|
|
id: number;
|
|
name: string;
|
|
published: string;
|
|
updated?: string;
|
|
}
|
|
|
|
export interface CommunityForm {
|
|
name: string;
|
|
auth?: string;
|
|
}
|
|
|
|
export interface CommunityResponse {
|
|
op: string;
|
|
community: Community;
|
|
}
|
|
|
|
export interface ListCommunitiesResponse {
|
|
op: string;
|
|
communities: Array<Community>;
|
|
}
|
|
|
|
export interface Post {
|
|
id: number;
|
|
name: string;
|
|
url?: string;
|
|
body?: string;
|
|
attributed_to: string;
|
|
community_id: number;
|
|
published: string;
|
|
updated?: string;
|
|
}
|
|
|
|
export interface PostForm {
|
|
name: string;
|
|
url?: string;
|
|
body?: string;
|
|
community_id: number;
|
|
updated?: number;
|
|
auth: string;
|
|
}
|
|
|
|
export interface PostResponse {
|
|
op: string;
|
|
post: Post;
|
|
comments: Array<Comment>;
|
|
}
|
|
|
|
export interface Comment {
|
|
id: number;
|
|
content: string;
|
|
attributed_to: string;
|
|
post_id: number,
|
|
parent_id?: number;
|
|
published: string;
|
|
updated?: string;
|
|
score: number;
|
|
upvotes: number;
|
|
downvotes: number;
|
|
my_vote?: number;
|
|
}
|
|
|
|
export interface CommentForm {
|
|
content: string;
|
|
post_id: number;
|
|
parent_id?: number;
|
|
edit_id?: number;
|
|
auth: string;
|
|
}
|
|
|
|
export interface CommentResponse {
|
|
op: string;
|
|
comment: Comment;
|
|
}
|
|
|
|
export interface CommentLikeForm {
|
|
comment_id: number;
|
|
post_id: number;
|
|
score: number;
|
|
auth?: string;
|
|
}
|
|
|
|
export interface CreateCommentLikeResponse {
|
|
op: string;
|
|
comment: Comment;
|
|
}
|
|
|
|
export interface LoginForm {
|
|
username_or_email: string;
|
|
password: string;
|
|
}
|
|
|
|
export interface RegisterForm {
|
|
username: string;
|
|
email?: string;
|
|
password: string;
|
|
password_verify: string;
|
|
}
|
|
|
|
export interface LoginResponse {
|
|
op: string;
|
|
jwt: string;
|
|
}
|
|
|
|
|