mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-02-05 08:24:42 +00:00
Merge remote-tracking branch 'origin/main' into combined_inbox
This commit is contained in:
commit
6e679879eb
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.
|
// 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 = {
|
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;
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,5 +3,4 @@
|
||||||
export type UploadImageResponse = {
|
export type UploadImageResponse = {
|
||||||
image_url: string;
|
image_url: string;
|
||||||
filename: string;
|
filename: string;
|
||||||
delete_token: string;
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue