mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
0.19.6 update (#326)
* Generate types needed to use v0.19.6 API * Add method for getting individual application
This commit is contained in:
parent
df943f5ba2
commit
8a65fc0ca5
12 changed files with 308 additions and 308 deletions
18
package.json
18
package.json
|
@ -19,20 +19,20 @@
|
||||||
"url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
|
"url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^20.11.19",
|
"@types/node": "^22.1.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
||||||
"@typescript-eslint/parser": "^8.0.0",
|
"@typescript-eslint/parser": "^8.0.0",
|
||||||
"eslint": "^9.0.0",
|
"eslint": "^9.8.0",
|
||||||
"eslint-plugin-prettier": "^5.1.3",
|
"eslint-plugin-prettier": "^5.2.1",
|
||||||
"husky": "^9.0.11",
|
"husky": "^9.1.4",
|
||||||
"lint-staged": "^15.2.2",
|
"lint-staged": "^15.2.7",
|
||||||
"prettier": "^3.2.5",
|
"prettier": "^3.3.3",
|
||||||
"prettier-plugin-import-sort": "^0.0.7",
|
"prettier-plugin-import-sort": "^0.0.7",
|
||||||
"prettier-plugin-organize-imports": "^4.0.0",
|
"prettier-plugin-organize-imports": "^4.0.0",
|
||||||
"prettier-plugin-packagejson": "^2.4.11",
|
"prettier-plugin-packagejson": "^2.5.1",
|
||||||
"sortpack": "^2.4.0",
|
"sortpack": "^2.4.0",
|
||||||
"typedoc": "^0.26.0",
|
"typedoc": "^0.26.5",
|
||||||
"typescript": "^5.3.3",
|
"typescript": "^5.5.4",
|
||||||
"typescript-eslint": "^8.0.0"
|
"typescript-eslint": "^8.0.0"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@9.6.0",
|
"packageManager": "pnpm@9.6.0",
|
||||||
|
|
550
pnpm-lock.yaml
550
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
13
src/http.ts
13
src/http.ts
|
@ -139,6 +139,7 @@ import { ListCommentLikesResponse } from "./types/ListCommentLikesResponse";
|
||||||
import { HidePost } from "./types/HidePost";
|
import { HidePost } from "./types/HidePost";
|
||||||
import { ListMedia } from "./types/ListMedia";
|
import { ListMedia } from "./types/ListMedia";
|
||||||
import { ListMediaResponse } from "./types/ListMediaResponse";
|
import { ListMediaResponse } from "./types/ListMediaResponse";
|
||||||
|
import { GetRegistrationApplication } from "./types/GetRegistrationApplication";
|
||||||
|
|
||||||
enum HttpType {
|
enum HttpType {
|
||||||
Get = "GET",
|
Get = "GET",
|
||||||
|
@ -1330,6 +1331,18 @@ export class LemmyHttp {
|
||||||
>(HttpType.Put, "/admin/registration_application/approve", form);
|
>(HttpType.Put, "/admin/registration_application/approve", form);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the application a user submitted when they first registered their account
|
||||||
|
*
|
||||||
|
* `HTTP.GET /admin/registration_application`
|
||||||
|
*/
|
||||||
|
getRegistrationApplication(form: GetRegistrationApplication) {
|
||||||
|
return this.#wrapper<
|
||||||
|
GetRegistrationApplication,
|
||||||
|
RegistrationApplicationResponse
|
||||||
|
>(HttpType.Get, "/admin/registration_application", form);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Purge / Delete a person from the database.
|
* Purge / Delete a person from the database.
|
||||||
*
|
*
|
||||||
|
|
|
@ -100,6 +100,7 @@ export { GetPostResponse } from "./types/GetPostResponse";
|
||||||
export { GetPosts } from "./types/GetPosts";
|
export { GetPosts } from "./types/GetPosts";
|
||||||
export { GetPostsResponse } from "./types/GetPostsResponse";
|
export { GetPostsResponse } from "./types/GetPostsResponse";
|
||||||
export { GetPrivateMessages } from "./types/GetPrivateMessages";
|
export { GetPrivateMessages } from "./types/GetPrivateMessages";
|
||||||
|
export { GetRegistrationApplication } from "./types/GetRegistrationApplication";
|
||||||
export { GetReplies } from "./types/GetReplies";
|
export { GetReplies } from "./types/GetReplies";
|
||||||
export { GetRepliesResponse } from "./types/GetRepliesResponse";
|
export { GetRepliesResponse } from "./types/GetRepliesResponse";
|
||||||
export { GetReportCount } from "./types/GetReportCount";
|
export { GetReportCount } from "./types/GetReportCount";
|
||||||
|
@ -111,6 +112,7 @@ export { GetUnreadCountResponse } from "./types/GetUnreadCountResponse";
|
||||||
export { GetUnreadRegistrationApplicationCountResponse } from "./types/GetUnreadRegistrationApplicationCountResponse";
|
export { GetUnreadRegistrationApplicationCountResponse } from "./types/GetUnreadRegistrationApplicationCountResponse";
|
||||||
export { HideCommunity } from "./types/HideCommunity";
|
export { HideCommunity } from "./types/HideCommunity";
|
||||||
export { HidePost } from "./types/HidePost";
|
export { HidePost } from "./types/HidePost";
|
||||||
|
export { ImageDetails } from "./types/ImageDetails";
|
||||||
export { Instance } from "./types/Instance";
|
export { Instance } from "./types/Instance";
|
||||||
export { InstanceBlockView } from "./types/InstanceBlockView";
|
export { InstanceBlockView } from "./types/InstanceBlockView";
|
||||||
export { InstanceId } from "./types/InstanceId";
|
export { InstanceId } from "./types/InstanceId";
|
||||||
|
@ -185,7 +187,6 @@ export { PasswordChangeAfterReset } from "./types/PasswordChangeAfterReset";
|
||||||
export { PasswordReset } from "./types/PasswordReset";
|
export { PasswordReset } from "./types/PasswordReset";
|
||||||
export { Person } from "./types/Person";
|
export { Person } from "./types/Person";
|
||||||
export { PersonAggregates } from "./types/PersonAggregates";
|
export { PersonAggregates } from "./types/PersonAggregates";
|
||||||
export { PersonBlockId } from "./types/PersonBlockId";
|
|
||||||
export { PersonBlockView } from "./types/PersonBlockView";
|
export { PersonBlockView } from "./types/PersonBlockView";
|
||||||
export { PersonId } from "./types/PersonId";
|
export { PersonId } from "./types/PersonId";
|
||||||
export { PersonMention } from "./types/PersonMention";
|
export { PersonMention } from "./types/PersonMention";
|
||||||
|
@ -220,6 +221,7 @@ export { PurgePost } from "./types/PurgePost";
|
||||||
export { ReadableFederationState } from "./types/ReadableFederationState";
|
export { ReadableFederationState } from "./types/ReadableFederationState";
|
||||||
export { Register } from "./types/Register";
|
export { Register } from "./types/Register";
|
||||||
export { RegistrationApplication } from "./types/RegistrationApplication";
|
export { RegistrationApplication } from "./types/RegistrationApplication";
|
||||||
|
export { RegistrationApplicationId } from "./types/RegistrationApplicationId";
|
||||||
export { RegistrationApplicationResponse } from "./types/RegistrationApplicationResponse";
|
export { RegistrationApplicationResponse } from "./types/RegistrationApplicationResponse";
|
||||||
export { RegistrationApplicationView } from "./types/RegistrationApplicationView";
|
export { RegistrationApplicationView } from "./types/RegistrationApplicationView";
|
||||||
export { RegistrationMode } from "./types/RegistrationMode";
|
export { RegistrationMode } from "./types/RegistrationMode";
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||||
|
import type { RegistrationApplicationId } from "./RegistrationApplicationId";
|
||||||
|
|
||||||
export interface ApproveRegistrationApplication {
|
export interface ApproveRegistrationApplication {
|
||||||
id: number;
|
id: RegistrationApplicationId;
|
||||||
approve: boolean;
|
approve: boolean;
|
||||||
deny_reason?: string;
|
deny_reason?: string;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,5 +15,7 @@ export interface GetPosts {
|
||||||
liked_only?: boolean;
|
liked_only?: boolean;
|
||||||
disliked_only?: boolean;
|
disliked_only?: boolean;
|
||||||
show_hidden?: boolean;
|
show_hidden?: boolean;
|
||||||
|
show_read?: boolean;
|
||||||
|
show_nsfw?: boolean;
|
||||||
page_cursor?: PaginationCursor;
|
page_cursor?: PaginationCursor;
|
||||||
}
|
}
|
||||||
|
|
6
src/types/GetRegistrationApplication.ts
Normal file
6
src/types/GetRegistrationApplication.ts
Normal 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.
|
||||||
|
import type { PersonId } from "./PersonId";
|
||||||
|
|
||||||
|
export interface GetRegistrationApplication {
|
||||||
|
person_id: PersonId;
|
||||||
|
}
|
8
src/types/ImageDetails.ts
Normal file
8
src/types/ImageDetails.ts
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||||
|
|
||||||
|
export interface ImageDetails {
|
||||||
|
link: string;
|
||||||
|
width: number;
|
||||||
|
height: number;
|
||||||
|
content_type: string;
|
||||||
|
}
|
|
@ -29,6 +29,8 @@ export type LemmyErrorType =
|
||||||
| { error: "not_top_admin" }
|
| { error: "not_top_admin" }
|
||||||
| { error: "not_top_mod" }
|
| { error: "not_top_mod" }
|
||||||
| { error: "not_logged_in" }
|
| { error: "not_logged_in" }
|
||||||
|
| { error: "not_higher_mod" }
|
||||||
|
| { error: "not_higher_admin" }
|
||||||
| { error: "site_ban" }
|
| { error: "site_ban" }
|
||||||
| { error: "deleted" }
|
| { error: "deleted" }
|
||||||
| { error: "banned_from_community" }
|
| { error: "banned_from_community" }
|
||||||
|
@ -164,4 +166,5 @@ export type LemmyErrorType =
|
||||||
| { error: "cant_block_local_instance" }
|
| { error: "cant_block_local_instance" }
|
||||||
| { error: "url_without_domain" }
|
| { error: "url_without_domain" }
|
||||||
| { error: "inbox_timeout" }
|
| { error: "inbox_timeout" }
|
||||||
| { error: "unknown"; message: string };
|
| { error: "unknown"; message: string }
|
||||||
|
| { error: "cant_delete_site" };
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||||
import type { Community } from "./Community";
|
import type { Community } from "./Community";
|
||||||
|
import type { ImageDetails } from "./ImageDetails";
|
||||||
import type { Person } from "./Person";
|
import type { Person } from "./Person";
|
||||||
import type { Post } from "./Post";
|
import type { Post } from "./Post";
|
||||||
import type { PostAggregates } from "./PostAggregates";
|
import type { PostAggregates } from "./PostAggregates";
|
||||||
|
@ -9,6 +10,7 @@ export interface PostView {
|
||||||
post: Post;
|
post: Post;
|
||||||
creator: Person;
|
creator: Person;
|
||||||
community: Community;
|
community: Community;
|
||||||
|
image_details?: ImageDetails;
|
||||||
creator_banned_from_community: boolean;
|
creator_banned_from_community: boolean;
|
||||||
banned_from_community: boolean;
|
banned_from_community: boolean;
|
||||||
creator_is_moderator: boolean;
|
creator_is_moderator: boolean;
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
// 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 { LocalUserId } from "./LocalUserId";
|
||||||
import type { PersonId } from "./PersonId";
|
import type { PersonId } from "./PersonId";
|
||||||
|
import type { RegistrationApplicationId } from "./RegistrationApplicationId";
|
||||||
|
|
||||||
export interface RegistrationApplication {
|
export interface RegistrationApplication {
|
||||||
id: number;
|
id: RegistrationApplicationId;
|
||||||
local_user_id: LocalUserId;
|
local_user_id: LocalUserId;
|
||||||
answer: string;
|
answer: string;
|
||||||
admin_id?: PersonId;
|
admin_id?: PersonId;
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||||
|
|
||||||
export type PersonBlockId = number;
|
export type RegistrationApplicationId = number;
|
Loading…
Reference in a new issue