lemmy-js-client 0.20.0-modlog-combined.1 → 0.20.0-no-delete-token.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,3 @@
1
1
  export type DeleteImageParams = {
2
2
  filename: string;
3
- token: string;
4
3
  };
@@ -2,6 +2,5 @@ import type { LocalUserId } from "./LocalUserId";
2
2
  export type LocalImage = {
3
3
  local_user_id?: LocalUserId;
4
4
  pictrs_alias: string;
5
- pictrs_delete_token: string;
6
5
  published: string;
7
6
  };
@@ -1,5 +1,4 @@
1
1
  export type UploadImageResponse = {
2
2
  image_url: string;
3
3
  filename: string;
4
- delete_token: string;
5
4
  };
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-modlog-combined.1",
4
+ "version": "0.20.0-no-delete-token.2",
5
5
  "author": "Dessalines <tyhou13@gmx.com>",
6
6
  "license": "AGPL-3.0",
7
7
  "main": "./dist/index.js",