@joeygrable94/utm-src-pub-validators 0.0.93 → 0.0.94

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.
package/dist/index.cjs CHANGED
@@ -117,8 +117,8 @@ var GROUP_ENTITY_SCOPES = Object.entries(
117
117
  );
118
118
 
119
119
  // src/constants/regex.constants.ts
120
- var REGEX_VALUE = /^([a-zA-Z0-9._-]*)$/;
121
- var ERROR_MESSAGE_REGEX_VALUE = `can only contain letters, numbers, and the special characters: - _ .`;
120
+ var REGEX_VALUE = /^([a-zA-Z0-9._\-():]*)$/;
121
+ var ERROR_MESSAGE_REGEX_VALUE = `can only contain letters, numbers, and the special characters: - _ . ( ) :`;
122
122
  var REGEX_DOMAIN = /^(?=.{1,253}$)(?!-)((xn--)?[a-zA-Z0-9]{1,59}(-[a-zA-Z0-9]{1,62})?\.)+([a-zA-Z]{2,63}|xn--[a-zA-Z0-9]{2,59})$/;
123
123
  var ERROR_MESSAGE_REGEX_DOMAIN = "please provide a valid domain name";
124
124