Merge pull request #188 from MV-GH/add_int_visibility

Add original int type info for number
This commit is contained in:
SleeplessOne1917 2023-09-26 16:58:02 +00:00 committed by GitHub
commit e270d67086
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 87 additions and 68 deletions

0
.husky/pre-commit Executable file → Normal file
View file

2
copy_generated_types_from_lemmy.sh Executable file → Normal file
View file

@ -25,7 +25,7 @@ popd
rm src/types/Sensitive.ts
# Change all the bigints to numbers
find src/types -type f -name '*.ts' -exec sed -i 's/bigint/number/g' {} +
find src/types -type f -name '*.ts' -exec sed -i 's/bigint/\/* integer *\/ number/g' {} +
node putTypesInIndex.js

0
deploy.sh Executable file → Normal file
View file

View file

@ -82,6 +82,7 @@ export { EditSite } from "./types/EditSite";
export { FeaturePost } from "./types/FeaturePost";
export { FederatedInstances } from "./types/FederatedInstances";
export { FollowCommunity } from "./types/FollowCommunity";
export { GenerateTotpSecretResponse } from "./types/GenerateTotpSecretResponse";
export { GetCaptchaResponse } from "./types/GetCaptchaResponse";
export { GetComment } from "./types/GetComment";
export { GetComments } from "./types/GetComments";
@ -236,6 +237,8 @@ export { SortType } from "./types/SortType";
export { SubscribedType } from "./types/SubscribedType";
export { Tagline } from "./types/Tagline";
export { TransferCommunity } from "./types/TransferCommunity";
export { UpdateTotp } from "./types/UpdateTotp";
export { UpdateTotpResponse } from "./types/UpdateTotpResponse";
export { VerifyEmail } from "./types/VerifyEmail";
export { VerifyEmailResponse } from "./types/VerifyEmailResponse";
export { UploadImage, UploadImageResponse, ImageFile } from "./types/others";
export { ImageFile, UploadImage, UploadImageResponse } from "./types/others";

View file

@ -8,5 +8,5 @@ export interface BanFromCommunity {
ban: boolean;
remove_data?: boolean;
reason?: string;
expires?: number;
expires?: /* integer */ number;
}

View file

@ -6,5 +6,5 @@ export interface BanPerson {
ban: boolean;
remove_data?: boolean;
reason?: string;
expires?: number;
expires?: /* integer */ number;
}

View file

@ -4,9 +4,9 @@ import type { CommentId } from "./CommentId";
export interface CommentAggregates {
id: number;
comment_id: CommentId;
score: number;
upvotes: number;
downvotes: number;
score: /* integer */ number;
upvotes: /* integer */ number;
downvotes: /* integer */ number;
published: string;
child_count: number;
hot_rank: number;

View file

@ -4,13 +4,13 @@ import type { CommunityId } from "./CommunityId";
export interface CommunityAggregates {
id: number;
community_id: CommunityId;
subscribers: number;
posts: number;
comments: number;
subscribers: /* integer */ number;
posts: /* integer */ number;
comments: /* integer */ number;
published: string;
users_active_day: number;
users_active_week: number;
users_active_month: number;
users_active_half_year: number;
users_active_day: /* integer */ number;
users_active_week: /* integer */ number;
users_active_month: /* integer */ number;
users_active_half_year: /* integer */ number;
hot_rank: number;
}

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 GenerateTotpSecretResponse {
totp_secret_url: string;
}

View file

@ -9,8 +9,8 @@ export interface GetComments {
type_?: ListingType;
sort?: CommentSortType;
max_depth?: number;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
community_id?: CommunityId;
community_name?: string;
post_id?: PostId;

View file

@ -6,8 +6,8 @@ import type { PersonId } from "./PersonId";
export interface GetModlog {
mod_person_id?: PersonId;
community_id?: CommunityId;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
type_?: ModlogActionType;
other_person_id?: PersonId;
}

View file

@ -7,8 +7,8 @@ export interface GetPersonDetails {
person_id?: PersonId;
username?: string;
sort?: SortType;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
community_id?: CommunityId;
saved_only?: boolean;
}

View file

@ -3,7 +3,7 @@ import type { CommentSortType } from "./CommentSortType";
export interface GetPersonMentions {
sort?: CommentSortType;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
unread_only?: boolean;
}

View file

@ -7,8 +7,8 @@ import type { SortType } from "./SortType";
export interface GetPosts {
type_?: ListingType;
sort?: SortType;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
community_id?: CommunityId;
community_name?: string;
saved_only?: boolean;

View file

@ -3,7 +3,7 @@ import type { PersonId } from "./PersonId";
export interface GetPrivateMessages {
unread_only?: boolean;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
creator_id?: PersonId;
}

View file

@ -3,7 +3,7 @@ import type { CommentSortType } from "./CommentSortType";
export interface GetReplies {
sort?: CommentSortType;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
unread_only?: boolean;
}

View file

@ -3,7 +3,7 @@ import type { CommunityId } from "./CommunityId";
export interface GetReportCountResponse {
community_id?: CommunityId;
comment_reports: number;
post_reports: number;
private_message_reports?: number;
comment_reports: /* integer */ number;
post_reports: /* integer */ number;
private_message_reports?: /* integer */ number;
}

View file

@ -1,7 +1,7 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export interface GetUnreadCountResponse {
replies: number;
mentions: number;
private_messages: number;
replies: /* integer */ number;
mentions: /* integer */ number;
private_messages: /* integer */ number;
}

View file

@ -1,5 +1,5 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export interface GetUnreadRegistrationApplicationCountResponse {
registration_applications: number;
registration_applications: /* integer */ number;
}

View file

@ -2,8 +2,8 @@
import type { CommunityId } from "./CommunityId";
export interface ListCommentReports {
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
unresolved_only?: boolean;
community_id?: CommunityId;
}

View file

@ -6,6 +6,6 @@ export interface ListCommunities {
type_?: ListingType;
sort?: SortType;
show_nsfw?: boolean;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
}

View file

@ -2,8 +2,8 @@
import type { CommunityId } from "./CommunityId";
export interface ListPostReports {
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
unresolved_only?: boolean;
community_id?: CommunityId;
}

View file

@ -1,7 +1,7 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export interface ListPrivateMessageReports {
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
unresolved_only?: boolean;
}

View file

@ -2,6 +2,6 @@
export interface ListRegistrationApplications {
unread_only?: boolean;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
}

View file

@ -23,11 +23,11 @@ export interface LocalUser {
show_new_post_notifs: boolean;
email_verified: boolean;
accepted_application: boolean;
totp_2fa_url?: string;
open_links_in_new_tab: boolean;
blur_nsfw: boolean;
auto_expand: boolean;
infinite_scroll_enabled: boolean;
admin: boolean;
post_listing_mode: PostListingMode;
totp_2fa_enabled: boolean;
}

View file

@ -6,7 +6,7 @@ export interface ModlogListParams {
community_id?: CommunityId;
mod_person_id?: PersonId;
other_person_id?: PersonId;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
hide_modlog_names: boolean;
}

View file

@ -4,8 +4,8 @@ import type { PersonId } from "./PersonId";
export interface PersonAggregates {
id: number;
person_id: PersonId;
post_count: number;
post_score: number;
comment_count: number;
comment_score: number;
post_count: /* integer */ number;
post_score: /* integer */ number;
comment_count: /* integer */ number;
comment_score: /* integer */ number;
}

View file

@ -7,10 +7,10 @@ import type { PostId } from "./PostId";
export interface PostAggregates {
id: number;
post_id: PostId;
comments: number;
score: number;
upvotes: number;
downvotes: number;
comments: /* integer */ number;
score: /* integer */ number;
upvotes: /* integer */ number;
downvotes: /* integer */ number;
published: string;
newest_comment_time_necro: string;
newest_comment_time: string;

View file

@ -16,5 +16,5 @@ export interface PostView {
read: boolean;
creator_blocked: boolean;
my_vote?: number;
unread_comments: number;
unread_comments: /* integer */ number;
}

View file

@ -5,5 +5,5 @@ export interface RemoveCommunity {
community_id: CommunityId;
removed: boolean;
reason?: string;
expires?: number;
expires?: /* integer */ number;
}

View file

@ -13,6 +13,6 @@ export interface Search {
type_?: SearchType;
sort?: SortType;
listing_type?: ListingType;
page?: number;
limit?: number;
page?: /* integer */ number;
limit?: /* integer */ number;
}

View file

@ -4,12 +4,12 @@ import type { SiteId } from "./SiteId";
export interface SiteAggregates {
id: number;
site_id: SiteId;
users: number;
posts: number;
comments: number;
communities: number;
users_active_day: number;
users_active_week: number;
users_active_month: number;
users_active_half_year: number;
users: /* integer */ number;
posts: /* integer */ number;
comments: /* integer */ number;
communities: /* integer */ number;
users_active_day: /* integer */ number;
users_active_week: /* integer */ number;
users_active_month: /* integer */ number;
users_active_half_year: /* integer */ number;
}

6
src/types/UpdateTotp.ts Normal file
View file

@ -0,0 +1,6 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export interface UpdateTotp {
totp_token: string;
enabled: 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 UpdateTotpResponse {
enabled: boolean;
}