lemmy-js-client 0.20.0-image-api-rework.2 → 0.20.0-image-api-rework.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  export type ImageGetParams = {
2
- format: string | null;
3
- thumbnail: number | null;
2
+ file_type: string | null;
3
+ max_size: number | null;
4
4
  };
@@ -1,5 +1,5 @@
1
1
  export type ImageProxyParams = {
2
2
  url: string;
3
- format: string | null;
4
- thumbnail: number | null;
3
+ file_type: string | null;
4
+ max_size: number | null;
5
5
  };
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-image-api-rework.2",
4
+ "version": "0.20.0-image-api-rework.3",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",