@reservamos/browser-analytics 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13071,7 +13071,7 @@ const IdentifySchema = z.object({
13071
13071
  firstName: z.string().optional(),
13072
13072
  lastName: z.string().optional(),
13073
13073
  email: z.string().email().optional(),
13074
- phone: z.string().regex(/^\+?[1-9]\d{1,14}$/).optional()
13074
+ phone: z.string().regex(/^(\+?[1-9]\d{1,14})?$/).optional()
13075
13075
  });
13076
13076
  const PRODUCT_TYPES = ["web", "web-mobile", "ios", "android", "app"];
13077
13077
  const productValidation = z.enum(PRODUCT_TYPES).refine((val) => PRODUCT_TYPES.includes(val), {