@joeygrable94/utm-src-pub-validators 0.0.80 → 0.0.81
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 +6 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -760,6 +760,10 @@ var SUtmLinkBuilderPartCampaignDateFormatOptions = [
|
|
|
760
760
|
"monthly",
|
|
761
761
|
"on a specific date"
|
|
762
762
|
];
|
|
763
|
+
var SUtmLinkBuilderPartCampaignDateFormat = v12__namespace.picklist(
|
|
764
|
+
SUtmLinkBuilderPartCampaignDateFormatOptions,
|
|
765
|
+
"Please select a valid campaign date format."
|
|
766
|
+
);
|
|
763
767
|
var SUtmLinkBuilderPartCampaignDateValue = v12__namespace.object({
|
|
764
768
|
year: v12__namespace.number("Please provide a valid year."),
|
|
765
769
|
quarter: v12__namespace.optional(v12__namespace.number()),
|
|
@@ -767,10 +771,7 @@ var SUtmLinkBuilderPartCampaignDateValue = v12__namespace.object({
|
|
|
767
771
|
day: v12__namespace.optional(v12__namespace.number())
|
|
768
772
|
});
|
|
769
773
|
var SUtmLinkBuilderPartCampaignDateObject = v12__namespace.object({
|
|
770
|
-
format:
|
|
771
|
-
SUtmLinkBuilderPartCampaignDateFormatOptions,
|
|
772
|
-
"Please select a valid campaign date format."
|
|
773
|
-
),
|
|
774
|
+
format: SUtmLinkBuilderPartCampaignDateFormat,
|
|
774
775
|
value: SUtmLinkBuilderPartCampaignDateValue
|
|
775
776
|
});
|
|
776
777
|
var SUtmLinkBuilderPartCampaignPhase = v12__namespace.optional(IsValidUrlUtmPart);
|
|
@@ -3633,6 +3634,7 @@ exports.SUserRelationSources = SUserRelationSources;
|
|
|
3633
3634
|
exports.SUserRelationTerms = SUserRelationTerms;
|
|
3634
3635
|
exports.SUserRelationTrackingLinks = SUserRelationTrackingLinks;
|
|
3635
3636
|
exports.SUserRelationsDocument = SUserRelationsDocument;
|
|
3637
|
+
exports.SUtmLinkBuilderPartCampaignDateFormat = SUtmLinkBuilderPartCampaignDateFormat;
|
|
3636
3638
|
exports.SUtmLinkBuilderPartCampaignDateFormatOptions = SUtmLinkBuilderPartCampaignDateFormatOptions;
|
|
3637
3639
|
exports.SUtmLinkBuilderPartCampaignDateObject = SUtmLinkBuilderPartCampaignDateObject;
|
|
3638
3640
|
exports.SUtmLinkBuilderPartCampaignDateValue = SUtmLinkBuilderPartCampaignDateValue;
|