mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
Merge branch 'main' into add_community_hide
This commit is contained in:
commit
61d4dbabea
2 changed files with 8 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lemmy-js-client",
|
||||
"version": "0.19.0-rc.7",
|
||||
"version": "0.19.0-rc.9",
|
||||
"description": "A javascript / typescript client for Lemmy",
|
||||
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
||||
"license": "AGPL-3.0",
|
||||
|
|
|
@ -1373,6 +1373,13 @@ export class LemmyHttp {
|
|||
return json;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the headers (can be used to set the auth header)
|
||||
*/
|
||||
setHeaders(headers: { [key: string]: string }) {
|
||||
this.#headers = headers;
|
||||
}
|
||||
}
|
||||
|
||||
function encodeGetParams<BodyType extends object>(p: BodyType): string {
|
||||
|
|
Loading…
Reference in a new issue