Merge remote-tracking branch 'origin/main' into combined_inbox

This commit is contained in:
Dessalines 2025-01-15 11:47:57 -05:00
commit 6e679879eb
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. // 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 = { export type LocalImage = {
local_user_id?: LocalUserId; local_user_id?: LocalUserId;
pictrs_alias: string; pictrs_alias: string;
pictrs_delete_token: string;
published: string; published: string;
}; };

View file

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