fix(deps): update typescript-projects (#8281)

* fix(deps): update typescript-projects

* chore: regenerate sql

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
This commit is contained in:
renovate[bot] 2024-03-26 02:39:57 +00:00 committed by GitHub
parent 636f5fb933
commit 1ad893ded4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 701 additions and 776 deletions

View file

@ -229,7 +229,7 @@ LIMIT
WITH
paths AS (
SELECT
unnest($2::text []) AS path
unnest($2::text[]) AS path
)
SELECT
path
@ -630,8 +630,8 @@ LIMIT
SELECT
asset.*,
e.*,
COALESCE("si"."tags", array[]::text []) AS "tags",
COALESCE("si"."objects", array[]::text []) AS "objects"
COALESCE("si"."tags", array[]::text[]) AS "tags",
COALESCE("si"."objects", array[]::text[]) AS "objects"
FROM
"assets" "asset"
INNER JOIN "exif" "e" ON asset."id" = e."assetId"