fix: apply formatting to modified files

This commit is contained in:
Ben Vargas
2025-07-22 17:43:18 -06:00
committed by Ralph Khreish
parent 7e6319a56f
commit 2063dc4b7d
3 changed files with 7 additions and 7 deletions

View File

@@ -2,5 +2,5 @@ import { z } from 'zod';
import { SubtaskSchema } from './base-schemas.js'; import { SubtaskSchema } from './base-schemas.js';
export const UpdateSubtaskResponseSchema = z.object({ export const UpdateSubtaskResponseSchema = z.object({
subtask: SubtaskSchema subtask: SubtaskSchema
}); });

View File

@@ -2,5 +2,5 @@ import { z } from 'zod';
import { UpdatedTaskSchema } from './update-tasks.js'; import { UpdatedTaskSchema } from './update-tasks.js';
export const UpdateTaskResponseSchema = z.object({ export const UpdateTaskResponseSchema = z.object({
task: UpdatedTaskSchema task: UpdatedTaskSchema
}); });

View File

@@ -2,9 +2,9 @@ import { z } from 'zod';
import { BaseTaskSchema } from './base-schemas.js'; import { BaseTaskSchema } from './base-schemas.js';
export const UpdatedTaskSchema = BaseTaskSchema.extend({ export const UpdatedTaskSchema = BaseTaskSchema.extend({
subtasks: z.array(z.any()).nullable().default(null) subtasks: z.array(z.any()).nullable().default(null)
}); });
export const UpdateTasksResponseSchema = z.object({ export const UpdateTasksResponseSchema = z.object({
tasks: z.array(UpdatedTaskSchema) tasks: z.array(UpdatedTaskSchema)
}); });