Updated validations for send payload.

This commit is contained in:
Mike Cao 2024-02-27 15:09:57 -08:00
parent 41eed2c056
commit 23a45a3109

View File

@ -56,10 +56,10 @@ const schema = {
hostname: yup.string().matches(HOSTNAME_REGEX).max(100), hostname: yup.string().matches(HOSTNAME_REGEX).max(100),
ip: yup.string().matches(IP_REGEX), ip: yup.string().matches(IP_REGEX),
language: yup.string().max(35), language: yup.string().max(35),
referrer: yup.string().max(500), referrer: yup.string(),
screen: yup.string().max(11), screen: yup.string().max(11),
title: yup.string().max(500), title: yup.string(),
url: yup.string().max(500), url: yup.string(),
website: yup.string().uuid().required(), website: yup.string().uuid().required(),
name: yup.string().max(50), name: yup.string().max(50),
}) })