From 6201e76f14e173280a9aef06db416786ac94fce7 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Tue, 15 Oct 2024 10:19:09 +0200 Subject: [PATCH] change --- src/index.ts | 1 + src/types/ListCommunityPendingFollowsResponse.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0fc6647..55a65a3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -211,6 +211,7 @@ export { OpenGraphData } from "./types/OpenGraphData"; export { PaginationCursor } from "./types/PaginationCursor"; export { PasswordChangeAfterReset } from "./types/PasswordChangeAfterReset"; export { PasswordReset } from "./types/PasswordReset"; +export { PendingFollow } from "./types/PendingFollow"; export { Person } from "./types/Person"; export { PersonAggregates } from "./types/PersonAggregates"; export { PersonId } from "./types/PersonId"; diff --git a/src/types/ListCommunityPendingFollowsResponse.ts b/src/types/ListCommunityPendingFollowsResponse.ts index 9007e75..3220813 100644 --- a/src/types/ListCommunityPendingFollowsResponse.ts +++ b/src/types/ListCommunityPendingFollowsResponse.ts @@ -1,6 +1,6 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. -import type { Person } from "./Person"; +import type { PendingFollow } from "./PendingFollow"; export interface ListCommunityPendingFollowsResponse { - items: Array; + items: Array; }