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

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:
renovate[bot] 2025-10-21 10:22:53 +00:00 committed by GitHub
parent 85e9ced68d
commit d9452e485c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 405 additions and 406 deletions

View file

@ -1,7 +1,7 @@
[tools] [tools]
node = "22.20.0" node = "22.20.0"
flutter = "3.35.5" flutter = "3.35.5"
pnpm = "10.18.1" pnpm = "10.18.3"
terragrunt = "0.58.12" terragrunt = "0.58.12"
opentofu = "1.7.1" opentofu = "1.7.1"

View file

@ -3,7 +3,7 @@
"version": "0.0.1", "version": "0.0.1",
"description": "Monorepo for Immich", "description": "Monorepo for Immich",
"private": true, "private": true,
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34", "packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
"engines": { "engines": {
"pnpm": ">=10.0.0" "pnpm": ">=10.0.0"
} }

File diff suppressed because it is too large Load diff

View file

@ -85,7 +85,7 @@
"multer": "^2.0.2", "multer": "^2.0.2",
"nest-commander": "^3.16.0", "nest-commander": "^3.16.0",
"nestjs-cls": "^5.0.0", "nestjs-cls": "^5.0.0",
"nestjs-kysely": "3.0.0", "nestjs-kysely": "3.1.2",
"nestjs-otel": "^7.0.0", "nestjs-otel": "^7.0.0",
"nodemailer": "^7.0.0", "nodemailer": "^7.0.0",
"openid-client": "^6.3.3", "openid-client": "^6.3.3",

View file

@ -2,7 +2,7 @@ import { Injectable } from '@nestjs/common';
import archiver from 'archiver'; import archiver from 'archiver';
import chokidar, { ChokidarOptions } from 'chokidar'; import chokidar, { ChokidarOptions } from 'chokidar';
import { escapePath, glob, globStream } from 'fast-glob'; import { escapePath, glob, globStream } from 'fast-glob';
import { constants, createReadStream, createWriteStream, existsSync, mkdirSync } from 'node:fs'; import { constants, createReadStream, createWriteStream, existsSync, mkdirSync, ReadOptionsWithBuffer } from 'node:fs';
import fs from 'node:fs/promises'; import fs from 'node:fs/promises';
import path from 'node:path'; import path from 'node:path';
import { Readable, Writable } from 'node:stream'; import { Readable, Writable } from 'node:stream';
@ -103,7 +103,7 @@ export class StorageRepository {
}; };
} }
async readFile(filepath: string, options?: fs.FileReadOptions<Buffer>): Promise<Buffer> { async readFile(filepath: string, options?: ReadOptionsWithBuffer<Buffer>): Promise<Buffer> {
const file = await fs.open(filepath); const file = await fs.open(filepath);
try { try {
const { buffer } = await file.read(options); const { buffer } = await file.read(options);

View file

@ -27,7 +27,7 @@
"dependencies": { "dependencies": {
"@formatjs/icu-messageformat-parser": "^2.9.8", "@formatjs/icu-messageformat-parser": "^2.9.8",
"@immich/sdk": "file:../open-api/typescript-sdk", "@immich/sdk": "file:../open-api/typescript-sdk",
"@immich/ui": "^0.34.0", "@immich/ui": "^0.36.0",
"@mapbox/mapbox-gl-rtl-text": "0.2.3", "@mapbox/mapbox-gl-rtl-text": "0.2.3",
"@mdi/js": "^7.4.47", "@mdi/js": "^7.4.47",
"@photo-sphere-viewer/core": "^5.11.5", "@photo-sphere-viewer/core": "^5.11.5",
@ -95,7 +95,7 @@
"prettier-plugin-sort-json": "^4.1.1", "prettier-plugin-sort-json": "^4.1.1",
"prettier-plugin-svelte": "^3.3.3", "prettier-plugin-svelte": "^3.3.3",
"rollup-plugin-visualizer": "^6.0.0", "rollup-plugin-visualizer": "^6.0.0",
"svelte": "5.39.11", "svelte": "5.40.1",
"svelte-check": "^4.1.5", "svelte-check": "^4.1.5",
"svelte-eslint-parser": "^1.3.3", "svelte-eslint-parser": "^1.3.3",
"tailwindcss": "^4.1.7", "tailwindcss": "^4.1.7",