Added optional remaster_version field to ParamPack

This commit is contained in:
Jonathan Barrow 2023-04-25 15:57:14 -04:00
parent ea41488347
commit dc040731bb
No known key found for this signature in database
GPG Key ID: E86E9FE9049C741F

View File

@ -21,7 +21,8 @@ const ParamPackSchema = z.object({
rating_organization: z.string(),
transferable_id: z.string(),
tz_name: z.string(),
utc_offset: z.string()
utc_offset: z.string(),
remaster_version: z.string().optional()
});
async function auth(request: express.Request, response: express.Response, next: express.NextFunction): Promise<void> {