refactor(web): tag service (#25142)

This commit is contained in:
Jason Rasmussen
2026-01-08 16:37:58 -05:00
committed by GitHub
parent 5d1e486478
commit 8136d7fd54
5 changed files with 157 additions and 138 deletions
@@ -1,5 +1,6 @@
import type { ThemeSetting } from '$lib/managers/theme-manager.svelte';
import type { ReleaseEvent } from '$lib/types';
import type { TreeNode } from '$lib/utils/tree-utils';
import type {
AlbumResponseDto,
ApiKeyResponseDto,
@@ -10,6 +11,7 @@ import type {
QueueResponseDto,
SharedLinkResponseDto,
SystemConfigDto,
TagResponseDto,
UserAdminResponseDto,
WorkflowResponseDto,
} from '@immich/sdk';
@@ -42,6 +44,10 @@ export type Events = {
SharedLinkUpdate: [SharedLinkResponseDto];
SharedLinkDelete: [SharedLinkResponseDto];
TagCreate: [TagResponseDto];
TagUpdate: [TagResponseDto];
TagDelete: [TreeNode];
UserAdminCreate: [UserAdminResponseDto];
UserAdminUpdate: [UserAdminResponseDto];
UserAdminRestore: [UserAdminResponseDto];