diff --git a/src/types/DeleteImageParams.ts b/src/types/DeleteImageParams.ts index 626a45a..9a6e795 100644 --- a/src/types/DeleteImageParams.ts +++ b/src/types/DeleteImageParams.ts @@ -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 }; diff --git a/src/types/LocalImage.ts b/src/types/LocalImage.ts index fcdec28..666c621 100644 --- a/src/types/LocalImage.ts +++ b/src/types/LocalImage.ts @@ -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; }; diff --git a/src/types/UploadImageResponse.ts b/src/types/UploadImageResponse.ts index afc7d98..c27b321 100644 --- a/src/types/UploadImageResponse.ts +++ b/src/types/UploadImageResponse.ts @@ -3,5 +3,4 @@ export type UploadImageResponse = { image_url: string; filename: string; - delete_token: string; };