refactor(core): Add Data store specific errors use them at service / repository (no-changelog) (#18380)

This commit is contained in:
Jaakko Husso
2025-08-15 12:44:10 +03:00
committed by GitHub
parent 9cc1b11f7f
commit e1d8eaa170
11 changed files with 273 additions and 119 deletions

View File

@@ -2,5 +2,5 @@ import { z } from 'zod';
import { Z } from 'zod-class';
export class MoveDataStoreColumnDto extends Z.class({
targetIndex: z.number(),
targetIndex: z.number().int().nonnegative(),
}) {}