@getcommunity/gc-validators 0.0.124 → 0.0.126

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
@@ -1889,7 +1889,7 @@ var QueryStrapiSearchMediaPlatforms = v6__namespace.object({
1889
1889
  ),
1890
1890
  title: IsValidOrUndefinedShortString,
1891
1891
  slug: IsValidOrUndefinedShortString,
1892
- utm_key: IsValidUrlUtmKey,
1892
+ utm_key: IsValidOrUndefinedUrlUtmKey,
1893
1893
  content_types: v6__namespace.optional(
1894
1894
  v6__namespace.pipe(v6__namespace.array(IsValidReferenceDocumentId), v6__namespace.minLength(1))
1895
1895
  ),
@@ -1898,13 +1898,13 @@ var QueryStrapiSearchMediaPlatforms = v6__namespace.object({
1898
1898
  var SCreateMediaPlatformDocument = v6__namespace.object({
1899
1899
  title: IsValidShortString,
1900
1900
  slug: IsValidSlug,
1901
- utm_key: IsValidUrlUtmKey,
1901
+ utm_key: IsValidOrUndefinedUrlUtmKey,
1902
1902
  description: IsValidOrUndefinedLongString
1903
1903
  });
1904
1904
  var SUpdateMediaPlatformDocument = v6__namespace.object({
1905
1905
  title: IsValidOrUndefinedShortString,
1906
1906
  slug: IsValidOrUndefinedSlug,
1907
- utm_key: IsValidUrlUtmKey,
1907
+ utm_key: IsValidOrUndefinedUrlUtmKey,
1908
1908
  description: IsValidOrUndefinedLongString
1909
1909
  });
1910
1910
  var SUpdateMediaPlatformDocumentRequest = v6__namespace.object({