mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 12:21:12 +00:00
Removing auth from post and community join.
This commit is contained in:
parent
6996b27706
commit
5d4fcab2c4
1 changed files with 6 additions and 4 deletions
|
@ -968,7 +968,6 @@ export interface UserJoinResponse {
|
|||
|
||||
export interface PostJoinForm {
|
||||
post_id: number;
|
||||
auth: string;
|
||||
}
|
||||
|
||||
export interface PostJoinResponse {
|
||||
|
@ -977,7 +976,6 @@ export interface PostJoinResponse {
|
|||
|
||||
export interface CommunityJoinForm {
|
||||
community_id: number;
|
||||
auth: string;
|
||||
}
|
||||
|
||||
export interface CommunityJoinResponse {
|
||||
|
@ -1032,7 +1030,9 @@ export type MessageType =
|
|||
| DeletePrivateMessageForm
|
||||
| MarkPrivateMessageAsReadForm
|
||||
| GetPrivateMessagesForm
|
||||
| SiteConfigForm;
|
||||
| SiteConfigForm
|
||||
| PostJoinForm
|
||||
| CommunityJoinForm;
|
||||
|
||||
type ResponseType =
|
||||
| SiteResponse
|
||||
|
@ -1057,7 +1057,9 @@ type ResponseType =
|
|||
| PrivateMessageResponse
|
||||
| PrivateMessagesResponse
|
||||
| GetSiteConfigResponse
|
||||
| GetSiteResponse;
|
||||
| GetSiteResponse
|
||||
| PostJoinResponse
|
||||
| CommunityJoinResponse;
|
||||
|
||||
export interface WebSocketResponse {
|
||||
op: UserOperation;
|
||||
|
|
Loading…
Reference in a new issue