Variable GetSchedulingResponseSchemaConst
GetSchedulingResponseSchema: ZodObject<
{
dependencies: ZodCustom<
string & {}
| "Sequential"
| "Concurrent",
string & {} | "Sequential" | "Concurrent",
>;
endDate: ZodOptional<
ZodObject<
{
dateCustomFieldId: ZodOptional<ZodNumber>;
type: ZodCustom<
| string & {}
| "DueDate"
| "TargetStartDate"
| "TargetEndDate"
| "DateCustomField",
| string & {}
| "DueDate"
| "TargetStartDate"
| "TargetEndDate"
| "DateCustomField",
>;
},
$loose,
>,
>;
estimation: ZodCustom<
string & {}
| "StoryPoints"
| "Days"
| "Hours",
string & {} | "StoryPoints" | "Days" | "Hours",
>;
inferredDates: ZodCustom<
string & {}
| "None"
| "SprintDates"
| "ReleaseDates",
string & {} | "None" | "SprintDates" | "ReleaseDates",
>;
startDate: ZodOptional<
ZodObject<
{
dateCustomFieldId: ZodOptional<ZodNumber>;
type: ZodCustom<
| string & {}
| "DueDate"
| "TargetStartDate"
| "TargetEndDate"
| "DateCustomField",
| string & {}
| "DueDate"
| "TargetStartDate"
| "TargetEndDate"
| "DateCustomField",
>;
},
$loose,
>,
>;
},
$loose,
> = ...