@joeygrable94/utm-src-pub-validators 0.0.72 → 0.0.73
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 +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -797,13 +797,22 @@ var SUtmLinkBuilderTableForm = v9__namespace.object({
|
|
|
797
797
|
v9__namespace.minLength(1, "Please provide at least one campaign."),
|
|
798
798
|
v9__namespace.maxLength(10, "You can provide up to 10 campaigns.")
|
|
799
799
|
),
|
|
800
|
-
|
|
800
|
+
contents: v9__namespace.pipe(
|
|
801
|
+
v9__namespace.array(IsValidUrlUtmPart),
|
|
802
|
+
v9__namespace.minLength(1, "Please select at least one content."),
|
|
803
|
+
v9__namespace.maxLength(10, "You can select up to 10 contents.")
|
|
804
|
+
),
|
|
801
805
|
creative_formats: v9__namespace.optional(
|
|
802
806
|
v9__namespace.pipe(
|
|
803
807
|
v9__namespace.array(SUtmPartBuilderCreativeFormatVariant),
|
|
804
808
|
v9__namespace.minLength(1, "Please select at least one creative format."),
|
|
805
809
|
v9__namespace.maxLength(10, "You can select up to 10 creative formats.")
|
|
806
810
|
)
|
|
811
|
+
),
|
|
812
|
+
terms: v9__namespace.pipe(
|
|
813
|
+
v9__namespace.array(IsValidUrlUtmPart),
|
|
814
|
+
v9__namespace.minLength(1, "Please select at least one term."),
|
|
815
|
+
v9__namespace.maxLength(10, "You can select up to 10 terms.")
|
|
807
816
|
)
|
|
808
817
|
});
|
|
809
818
|
var SStripeCheckoutLineItem = v9__namespace.object({
|