This commit is contained in:
Kirill Litvinov
2024-06-21 10:01:37 +03:00
parent f91f87e376
commit fad890eeab
2 changed files with 3 additions and 3 deletions

View File

@@ -2,8 +2,8 @@ import { z } from 'zod';
import infoSchema from './info-schema.js';
const getPointsAtResultSchema = z.object({
points: z.record(z.string(), z.number()),
pageSize: z.number(),
pointsObject: z.record(z.string(), z.number()),
currentPage: z.number(),
totalElements: z.number(),
});