Variable: StatusMappingDTOSchema
ts
const StatusMappingDTOSchema: ZodObject<{
issueTypeId: ZodString;
projectId: ZodString;
statusMigrations: ZodArray<ZodObject<{
newStatusReference: ZodString;
oldStatusReference: ZodString;
}, $loose>>;
}, $loose>;Defined in: src/cloud/models/statusMappingDTO.ts:6
The mapping of old to new status ID for a specific project and issue type.