mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-02-05 16:34:43 +00:00
no delete token
This commit is contained in:
parent
646b95907b
commit
371a9b27f1
3 changed files with 1 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
|||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export type DeleteImageParams = { filename: string; token: string };
|
||||
export type DeleteImageParams = { filename: string };
|
||||
|
|
|
@ -4,6 +4,5 @@ import type { LocalUserId } from "./LocalUserId";
|
|||
export type LocalImage = {
|
||||
local_user_id?: LocalUserId;
|
||||
pictrs_alias: string;
|
||||
pictrs_delete_token: string;
|
||||
published: string;
|
||||
};
|
||||
|
|
|
@ -3,5 +3,4 @@
|
|||
export type UploadImageResponse = {
|
||||
image_url: string;
|
||||
filename: string;
|
||||
delete_token: string;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue