feat: pass filename in body on asset upload (#19138)

* chore: get upload filename from request body

* use info from request body
This commit is contained in:
Alex 2025-06-12 16:31:00 -05:00 committed by GitHub
parent 5cd186d3d4
commit 176656b5f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 35 additions and 7 deletions

View file

@ -444,6 +444,7 @@ export type AssetMediaCreateDto = {
duration?: string;
fileCreatedAt: string;
fileModifiedAt: string;
filename?: string;
isFavorite?: boolean;
livePhotoVideoId?: string;
sidecarData?: Blob;
@ -510,6 +511,7 @@ export type AssetMediaReplaceDto = {
duration?: string;
fileCreatedAt: string;
fileModifiedAt: string;
filename?: string;
};
export type SignUpDto = {
email: string;