Variable StatusMappingDTOSchemaConst
StatusMappingDTOSchema: ZodObject<
{
issueTypeId: ZodString;
projectId: ZodString;
statusMigrations: ZodArray<
ZodObject<
{ newStatusReference: ZodString; oldStatusReference: ZodString },
$loose,
>,
>;
},
$loose,
> = ...
The mapping of old to new status ID for a specific project and issue type.