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 CHANGED
@@ -852,7 +852,7 @@ export declare class LemmyHttp {
852
852
  /**
853
853
  * Block an instance as user.
854
854
  *
855
- * `HTTP.Post /account/block_instance`
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/block_instance`
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/block_instance", form, options);
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lemmy-js-client",
3
3
  "description": "A javascript / typescript client for Lemmy",
4
- "version": "0.20.0-api-v4.9",
4
+ "version": "0.20.0-api-v4.10",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",