mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
update
This commit is contained in:
parent
2fdce1a0c5
commit
b5de14abc6
2 changed files with 5 additions and 2 deletions
|
@ -1,9 +1,8 @@
|
|||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { CommunityId } from "./CommunityId";
|
||||
|
||||
export interface ListCommunityPendingFollows {
|
||||
community_id: CommunityId;
|
||||
pending_only: boolean | null;
|
||||
all_communities: boolean | null;
|
||||
page: number | null;
|
||||
limit: number | null;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { Community } from "./Community";
|
||||
import type { Person } from "./Person";
|
||||
import type { SubscribedType } from "./SubscribedType";
|
||||
|
||||
export interface PendingFollow {
|
||||
person: Person;
|
||||
community: Community;
|
||||
is_new_instance: boolean;
|
||||
subscribed: SubscribedType;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue