no delete token

This commit is contained in:
Felix Ableitner 2025-01-14 11:32:21 +01:00
parent 646b95907b
commit 371a9b27f1
3 changed files with 1 additions and 3 deletions

View file

@ -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 };

View file

@ -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;
};

View file

@ -3,5 +3,4 @@
export type UploadImageResponse = {
image_url: string;
filename: string;
delete_token: string;
};