lemmy-js-client 0.20.0-api-v4.1 → 0.20.0-api-v4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/http.d.ts +1 -1
- package/dist/http.js +2 -2
- package/package.json +1 -1
package/dist/http.d.ts
CHANGED
@@ -209,7 +209,7 @@ export declare class LemmyHttp {
|
|
209
209
|
*
|
210
210
|
* `HTTP.GET /account/settings`
|
211
211
|
*/
|
212
|
-
|
212
|
+
getMyUser(options?: RequestOptions): Promise<MyUserInfo>;
|
213
213
|
/**
|
214
214
|
* Export a backup of your user settings, including your saved content,
|
215
215
|
* followed communities, and blocks.
|
package/dist/http.js
CHANGED
@@ -100,8 +100,8 @@ class LemmyHttp {
|
|
100
100
|
*
|
101
101
|
* `HTTP.GET /account/settings`
|
102
102
|
*/
|
103
|
-
|
104
|
-
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Get, "/account/settings",
|
103
|
+
getMyUser(options) {
|
104
|
+
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Get, "/account/settings", {}, options);
|
105
105
|
}
|
106
106
|
/**
|
107
107
|
* Export a backup of your user settings, including your saved content,
|
package/package.json
CHANGED