This commit is contained in:
Felix Ableitner 2024-10-29 14:46:04 +01:00
parent 2fdce1a0c5
commit b5de14abc6
2 changed files with 5 additions and 2 deletions

View file

@ -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;
}

View file

@ -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;
}