Regenerating types from main. (#197)

This commit is contained in:
Dessalines 2023-10-09 12:42:35 -04:00 committed by GitHub
parent 140c756ea2
commit b58fbb51e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View file

@ -235,10 +235,16 @@ export { SiteResponse } from "./types/SiteResponse";
export { SiteView } from "./types/SiteView"; export { SiteView } from "./types/SiteView";
export { SortType } from "./types/SortType"; export { SortType } from "./types/SortType";
export { SubscribedType } from "./types/SubscribedType"; export { SubscribedType } from "./types/SubscribedType";
export { SuccessResponse } from "./types/SuccessResponse";
export { Tagline } from "./types/Tagline"; export { Tagline } from "./types/Tagline";
export { TransferCommunity } from "./types/TransferCommunity"; export { TransferCommunity } from "./types/TransferCommunity";
export { UpdateTotp } from "./types/UpdateTotp"; export { UpdateTotp } from "./types/UpdateTotp";
export { UpdateTotpResponse } from "./types/UpdateTotpResponse"; export { UpdateTotpResponse } from "./types/UpdateTotpResponse";
export { VerifyEmail } from "./types/VerifyEmail"; export { VerifyEmail } from "./types/VerifyEmail";
export { VerifyEmailResponse } from "./types/VerifyEmailResponse"; export { VerifyEmailResponse } from "./types/VerifyEmailResponse";
export { UploadImage, UploadImageResponse, ImageFile } from "./types/others"; export {
UploadImage,
UploadImageResponse,
ImageFile,
DeleteImage,
} from "./types/others";

View file

@ -16,7 +16,6 @@ export interface LocalUser {
interface_language: string; interface_language: string;
show_avatars: boolean; show_avatars: boolean;
send_notifications_to_email: boolean; send_notifications_to_email: boolean;
validator_time: string;
show_scores: boolean; show_scores: boolean;
show_bot_accounts: boolean; show_bot_accounts: boolean;
show_read_posts: boolean; show_read_posts: boolean;

View file

@ -0,0 +1,5 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export interface SuccessResponse {
success: boolean;
}