Fixing addadmin local_user_id -> person

This commit is contained in:
Dessalines 2023-09-06 08:14:37 -04:00
parent e487c34176
commit 5c106d2c0c
3 changed files with 5 additions and 2 deletions

View file

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

View file

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

View file

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