feat(platform): checkpoint current implementation state
This commit is contained in:
@@ -36,3 +36,15 @@ export const timelineBatchShiftAllocationsInputSchema = z.object({
|
||||
daysDelta: z.number().int().min(-3650).max(3650),
|
||||
mode: z.enum(["move", "resize-start", "resize-end"]).default("move"),
|
||||
});
|
||||
|
||||
export const timelineCarveAllocationRangeInputSchema = z.object({
|
||||
allocationId: z.string(),
|
||||
startDate: z.coerce.date(),
|
||||
endDate: z.coerce.date(),
|
||||
});
|
||||
|
||||
export const timelineExtractAllocationFragmentInputSchema = z.object({
|
||||
allocationId: z.string(),
|
||||
startDate: z.coerce.date(),
|
||||
endDate: z.coerce.date(),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user