feat(server): add originalFileName to SyncAssetV1 (#18767)

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
shenlong 2025-05-30 20:26:35 +05:30 committed by GitHub
parent aebd68e24e
commit b854a3dd47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 23 additions and 1 deletions

View file

@ -341,6 +341,7 @@ export const columns = {
syncAsset: [
'id',
'ownerId',
'originalFileName',
'thumbhash',
'checksum',
'fileCreatedAt',

View file

@ -59,6 +59,7 @@ export class SyncPartnerDeleteV1 {
export class SyncAssetV1 {
id!: string;
ownerId!: string;
originalFileName!: string;
thumbhash!: string | null;
checksum!: string;
fileCreatedAt!: Date | null;

View file

@ -76,6 +76,7 @@ order by
select
"id",
"ownerId",
"originalFileName",
"thumbhash",
"checksum",
"fileCreatedAt",
@ -98,6 +99,7 @@ order by
select
"id",
"ownerId",
"originalFileName",
"thumbhash",
"checksum",
"fileCreatedAt",