2019-03-23 01:42:57 +00:00
|
|
|
export enum UserOperation {
|
2019-03-26 18:00:18 +00:00
|
|
|
Login, Register, CreateCommunity, CreatePost, ListCommunities, GetPost, GetCommunity, CreateComment
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface User {
|
2019-03-25 03:51:27 +00:00
|
|
|
id: number;
|
2019-03-21 01:22:31 +00:00
|
|
|
username: string;
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
2019-03-25 03:51:27 +00:00
|
|
|
export interface Community {
|
|
|
|
id: number;
|
|
|
|
name: string;
|
2019-03-26 18:00:18 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CommentForm {
|
|
|
|
content: string;
|
|
|
|
post_id: number;
|
|
|
|
parent_id?: number;
|
|
|
|
auth: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CommentResponse {
|
|
|
|
op: string;
|
|
|
|
comment: Comment;
|
2019-03-25 03:51:27 +00:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
export interface LoginForm {
|
|
|
|
username_or_email: string;
|
2019-03-21 01:22:31 +00:00
|
|
|
password: string;
|
|
|
|
}
|
2019-03-23 01:42:57 +00:00
|
|
|
|
2019-03-21 01:22:31 +00:00
|
|
|
export interface RegisterForm {
|
|
|
|
username: string;
|
|
|
|
email?: string;
|
|
|
|
password: string;
|
|
|
|
password_verify: string;
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
export interface LoginResponse {
|
|
|
|
op: string;
|
|
|
|
jwt: string;
|
2019-03-23 01:42:57 +00:00
|
|
|
}
|
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
|