mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix(deps): update typescript-projects (#14892)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
parent
66849d0d45
commit
d1d26c60d6
16 changed files with 5360 additions and 3409 deletions
|
|
@ -35,7 +35,7 @@ with
|
|||
where
|
||||
"asset_job_status"."previewAt" is not null
|
||||
and (assets."localDateTime" at time zone 'UTC')::date = today.date
|
||||
and "assets"."ownerId" = any ($3::uuid [])
|
||||
and "assets"."ownerId" = any ($3::uuid[])
|
||||
and "assets"."isVisible" = $4
|
||||
and "assets"."isArchived" = $5
|
||||
and exists (
|
||||
|
|
@ -72,7 +72,7 @@ select
|
|||
from
|
||||
"assets"
|
||||
where
|
||||
"assets"."id" = any ($1::uuid [])
|
||||
"assets"."id" = any ($1::uuid[])
|
||||
|
||||
-- AssetRepository.getByIdsWithAllRelations
|
||||
select
|
||||
|
|
@ -130,7 +130,7 @@ from
|
|||
"asset_stack"."id"
|
||||
) as "stacked_assets" on "asset_stack"."id" is not null
|
||||
where
|
||||
"assets"."id" = any ($2::uuid [])
|
||||
"assets"."id" = any ($2::uuid[])
|
||||
|
||||
-- AssetRepository.deleteAll
|
||||
delete from "assets"
|
||||
|
|
@ -182,7 +182,7 @@ update "assets"
|
|||
set
|
||||
"deviceId" = $1
|
||||
where
|
||||
"id" = any ($2::uuid [])
|
||||
"id" = any ($2::uuid[])
|
||||
|
||||
-- AssetRepository.updateDuplicates
|
||||
update "assets"
|
||||
|
|
@ -190,8 +190,8 @@ set
|
|||
"duplicateId" = $1
|
||||
where
|
||||
(
|
||||
"duplicateId" = any ($2::uuid [])
|
||||
or "id" = any ($3::uuid [])
|
||||
"duplicateId" = any ($2::uuid[])
|
||||
or "id" = any ($3::uuid[])
|
||||
)
|
||||
|
||||
-- AssetRepository.getByChecksum
|
||||
|
|
@ -429,7 +429,7 @@ from
|
|||
"asset_stack"."id"
|
||||
) as "stacked_assets" on "asset_stack"."id" is not null
|
||||
where
|
||||
"assets"."ownerId" = any ($1::uuid [])
|
||||
"assets"."ownerId" = any ($1::uuid[])
|
||||
and "isVisible" = $2
|
||||
and "updatedAt" > $3
|
||||
limit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue