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 {
|
export interface PostJoinForm {
|
||||||
post_id: number;
|
post_id: number;
|
||||||
auth: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface PostJoinResponse {
|
export interface PostJoinResponse {
|
||||||
|
@ -977,7 +976,6 @@ export interface PostJoinResponse {
|
||||||
|
|
||||||
export interface CommunityJoinForm {
|
export interface CommunityJoinForm {
|
||||||
community_id: number;
|
community_id: number;
|
||||||
auth: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CommunityJoinResponse {
|
export interface CommunityJoinResponse {
|
||||||
|
@ -1032,7 +1030,9 @@ export type MessageType =
|
||||||
| DeletePrivateMessageForm
|
| DeletePrivateMessageForm
|
||||||
| MarkPrivateMessageAsReadForm
|
| MarkPrivateMessageAsReadForm
|
||||||
| GetPrivateMessagesForm
|
| GetPrivateMessagesForm
|
||||||
| SiteConfigForm;
|
| SiteConfigForm
|
||||||
|
| PostJoinForm
|
||||||
|
| CommunityJoinForm;
|
||||||
|
|
||||||
type ResponseType =
|
type ResponseType =
|
||||||
| SiteResponse
|
| SiteResponse
|
||||||
|
@ -1057,7 +1057,9 @@ type ResponseType =
|
||||||
| PrivateMessageResponse
|
| PrivateMessageResponse
|
||||||
| PrivateMessagesResponse
|
| PrivateMessagesResponse
|
||||||
| GetSiteConfigResponse
|
| GetSiteConfigResponse
|
||||||
| GetSiteResponse;
|
| GetSiteResponse
|
||||||
|
| PostJoinResponse
|
||||||
|
| CommunityJoinResponse;
|
||||||
|
|
||||||
export interface WebSocketResponse {
|
export interface WebSocketResponse {
|
||||||
op: UserOperation;
|
op: UserOperation;
|
||||||
|
|
Loading…
Reference in a new issue