lemmy-js-client 0.20.0-api-v4.9 → 0.20.0-api-v4.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/http.d.ts +1 -1
- package/dist/http.js +2 -2
- package/package.json +1 -1
package/dist/http.d.ts
CHANGED
@@ -852,7 +852,7 @@ export declare class LemmyHttp {
|
|
852
852
|
/**
|
853
853
|
* Block an instance as user.
|
854
854
|
*
|
855
|
-
* `HTTP.Post /account/
|
855
|
+
* `HTTP.Post /account/block/instance`
|
856
856
|
*/
|
857
857
|
userBlockInstance(form: UserBlockInstanceParams, options?: RequestOptions): Promise<SuccessResponse>;
|
858
858
|
/**
|
package/dist/http.js
CHANGED
@@ -961,10 +961,10 @@ class LemmyHttp {
|
|
961
961
|
/**
|
962
962
|
* Block an instance as user.
|
963
963
|
*
|
964
|
-
* `HTTP.Post /account/
|
964
|
+
* `HTTP.Post /account/block/instance`
|
965
965
|
*/
|
966
966
|
userBlockInstance(form, options) {
|
967
|
-
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Post, "/account/
|
967
|
+
return __classPrivateFieldGet(this, _LemmyHttp_instances, "m", _LemmyHttp_wrapper).call(this, HttpType.Post, "/account/block/instance", form, options);
|
968
968
|
}
|
969
969
|
/**
|
970
970
|
* Globally block an instance as admin.
|
package/package.json
CHANGED