From 5c106d2c0c20c80dc0d657fc56d260d1da3dafb2 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 6 Sep 2023 08:14:37 -0400 Subject: [PATCH] Fixing addadmin local_user_id -> person --- src/index.ts | 1 + src/types/AddAdmin.ts | 4 ++-- src/types/LocalUser.ts | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index f28cb0b..ced5c62 100644 --- a/src/index.ts +++ b/src/index.ts @@ -194,6 +194,7 @@ export { PostFeatureType } from "./types/PostFeatureType"; export { PostId } from "./types/PostId"; export { PostJoin } from "./types/PostJoin"; export { PostJoinResponse } from "./types/PostJoinResponse"; +export { PostListingMode } from "./types/PostListingMode"; export { PostOrCommentId } from "./types/PostOrCommentId"; export { PostReport } from "./types/PostReport"; export { PostReportId } from "./types/PostReportId"; diff --git a/src/types/AddAdmin.ts b/src/types/AddAdmin.ts index e9c8a59..23de2dd 100644 --- a/src/types/AddAdmin.ts +++ b/src/types/AddAdmin.ts @@ -1,8 +1,8 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. -import type { LocalUserId } from "./LocalUserId"; +import type { PersonId } from "./PersonId"; export interface AddAdmin { - local_user_id: LocalUserId; + person_id: PersonId; added: boolean; auth: string; } diff --git a/src/types/LocalUser.ts b/src/types/LocalUser.ts index 76af8b0..a5e38f8 100644 --- a/src/types/LocalUser.ts +++ b/src/types/LocalUser.ts @@ -2,6 +2,7 @@ import type { ListingType } from "./ListingType"; import type { LocalUserId } from "./LocalUserId"; import type { PersonId } from "./PersonId"; +import type { PostListingMode } from "./PostListingMode"; import type { SortType } from "./SortType"; export interface LocalUser { @@ -28,4 +29,5 @@ export interface LocalUser { auto_expand: boolean; infinite_scroll_enabled: boolean; admin: boolean; + post_listing_mode: PostListingMode; }