Files
cfw-autumn/shared/api/features/crud/deleteFeatureParams.ts
2026-02-19 14:14:12 +00:00

10 lines
256 B
TypeScript

import { z } from "zod/v4";
export const DeleteFeatureV1ParamsSchema = z.object({
feature_id: z.string().meta({
description: "The ID of the feature to delete.",
}),
});
export type DeleteFeatureV1Params = z.infer<typeof DeleteFeatureV1ParamsSchema>;