@joeygrable94/utm-src-pub-validators 0.0.91 → 0.0.93
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 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -22
- package/dist/index.d.ts +22 -22
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -543,7 +543,7 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
543
543
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
544
544
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
545
545
|
readonly is_active: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>, true>;
|
|
546
|
-
readonly
|
|
546
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
547
547
|
readonly destination: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
548
548
|
readonly protocol: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
549
549
|
readonly domain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -571,7 +571,7 @@ type SQueryListTrackingLinkDocuments = v.InferOutput<typeof SQueryListTrackingLi
|
|
|
571
571
|
declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
572
572
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
573
573
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
574
|
-
readonly
|
|
574
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
575
575
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
576
576
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
577
577
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -591,7 +591,7 @@ declare const SCreateMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
591
591
|
readonly tracking_links: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
592
592
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
593
593
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
594
|
-
readonly
|
|
594
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
595
595
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
596
596
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
597
597
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -608,7 +608,7 @@ declare const SCreateMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
608
608
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
609
609
|
group: string;
|
|
610
610
|
is_active: boolean;
|
|
611
|
-
|
|
611
|
+
value: string;
|
|
612
612
|
destination: string;
|
|
613
613
|
protocol: "http" | "https";
|
|
614
614
|
domain: string;
|
|
@@ -630,7 +630,7 @@ declare const SCreatePreviewTrackingLinkDocument: v.ObjectSchema<{
|
|
|
630
630
|
readonly is_saved: v.BooleanSchema<undefined>;
|
|
631
631
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
632
632
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
633
|
-
readonly
|
|
633
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
634
634
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
635
635
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
636
636
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -652,7 +652,7 @@ declare const SCreatePreviewMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
652
652
|
readonly is_saved: v.BooleanSchema<undefined>;
|
|
653
653
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
654
654
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
655
|
-
readonly
|
|
655
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
656
656
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
657
657
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
658
658
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -671,7 +671,7 @@ declare const SCreatePreviewMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
671
671
|
is_saved: boolean;
|
|
672
672
|
group: string;
|
|
673
673
|
is_active: boolean;
|
|
674
|
-
|
|
674
|
+
value: string;
|
|
675
675
|
destination: string;
|
|
676
676
|
protocol: "http" | "https";
|
|
677
677
|
domain: string;
|
|
@@ -698,7 +698,7 @@ declare const SReadTrackingLinkDocumentByDocumentId: v.ObjectSchema<{
|
|
|
698
698
|
type SReadTrackingLinkDocumentByDocumentId = v.InferOutput<typeof SReadTrackingLinkDocumentByDocumentId>;
|
|
699
699
|
declare const SUpdateAsCreatorTrackingLinkDocument: v.ObjectSchema<{
|
|
700
700
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
701
|
-
readonly
|
|
701
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
702
702
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
703
703
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
704
704
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -718,7 +718,7 @@ declare const SUpdateAsCreatorTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
718
718
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
719
719
|
readonly data: v.ObjectSchema<{
|
|
720
720
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
721
|
-
readonly
|
|
721
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
722
722
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
723
723
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
724
724
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -737,7 +737,7 @@ declare const SUpdateAsCreatorTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
737
737
|
type SUpdateAsCreatorTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorTrackingLinkDocumentRequest>;
|
|
738
738
|
declare const SUpdateAsInvitedTrackingLinkDocument: v.ObjectSchema<{
|
|
739
739
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
740
|
-
readonly
|
|
740
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
741
741
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
742
742
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
743
743
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -757,7 +757,7 @@ declare const SUpdateAsInvitedTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
757
757
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
758
758
|
readonly data: v.ObjectSchema<{
|
|
759
759
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
760
|
-
readonly
|
|
760
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
761
761
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
762
762
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
763
763
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -776,7 +776,7 @@ declare const SUpdateAsInvitedTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
776
776
|
type SUpdateAsInvitedTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedTrackingLinkDocumentRequest>;
|
|
777
777
|
declare const SUpdateTrackingLinkDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
778
778
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
779
|
-
readonly
|
|
779
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
780
780
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
781
781
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
782
782
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -792,7 +792,7 @@ declare const SUpdateTrackingLinkDocumentRequest: v.UnionSchema<[v.ObjectSchema<
|
|
|
792
792
|
readonly utm_id: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
793
793
|
}, undefined>, v.ObjectSchema<{
|
|
794
794
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
795
|
-
readonly
|
|
795
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
796
796
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
797
797
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
798
798
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -2319,7 +2319,7 @@ declare const SGroupRelationWebsites: v.ObjectSchema<{
|
|
|
2319
2319
|
}, undefined>;
|
|
2320
2320
|
declare const SGroupRelationTrackingLinks: v.ObjectSchema<{
|
|
2321
2321
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2322
|
-
readonly
|
|
2322
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2323
2323
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2324
2324
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2325
2325
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -2586,7 +2586,7 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2586
2586
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2587
2587
|
}, undefined>, undefined>;
|
|
2588
2588
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2589
|
-
readonly
|
|
2589
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2590
2590
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2591
2591
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2592
2592
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -2952,7 +2952,7 @@ type StripeProductPricesResponse = {
|
|
|
2952
2952
|
};
|
|
2953
2953
|
|
|
2954
2954
|
declare const STrackingLinkDocument: v.ObjectSchema<{
|
|
2955
|
-
readonly
|
|
2955
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2956
2956
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2957
2957
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2958
2958
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -3003,7 +3003,7 @@ declare const STrackingLinkRelationsDocument: v.ObjectSchema<{
|
|
|
3003
3003
|
}, undefined>;
|
|
3004
3004
|
|
|
3005
3005
|
declare const SBaseTrackingLinkDocument: v.ObjectSchema<{
|
|
3006
|
-
readonly
|
|
3006
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3007
3007
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3008
3008
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3009
3009
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -3200,7 +3200,7 @@ declare const SUserRelationCreatedWebsites: v.ObjectSchema<{
|
|
|
3200
3200
|
}, undefined>;
|
|
3201
3201
|
declare const SUserRelationTrackingLinks: v.ObjectSchema<{
|
|
3202
3202
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3203
|
-
readonly
|
|
3203
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3204
3204
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3205
3205
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3206
3206
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -3466,7 +3466,7 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3466
3466
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3467
3467
|
}, undefined>, undefined>, undefined>;
|
|
3468
3468
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3469
|
-
readonly
|
|
3469
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3470
3470
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3471
3471
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3472
3472
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -4442,7 +4442,7 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4442
4442
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4443
4443
|
}, undefined>, undefined>;
|
|
4444
4444
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4445
|
-
readonly
|
|
4445
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4446
4446
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4447
4447
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4448
4448
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -4552,7 +4552,7 @@ declare const STrackingLinkDocumentWithRelations: v.ObjectSchema<{
|
|
|
4552
4552
|
readonly createdAt: v.StringSchema<undefined>;
|
|
4553
4553
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4554
4554
|
}, undefined>, undefined>;
|
|
4555
|
-
readonly
|
|
4555
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4556
4556
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4557
4557
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4558
4558
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -4777,7 +4777,7 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4777
4777
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4778
4778
|
}, undefined>, undefined>, undefined>;
|
|
4779
4779
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4780
|
-
readonly
|
|
4780
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4781
4781
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4782
4782
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4783
4783
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
package/dist/index.d.ts
CHANGED
|
@@ -543,7 +543,7 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
543
543
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
544
544
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
545
545
|
readonly is_active: v.SchemaWithFallback<v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>, true>;
|
|
546
|
-
readonly
|
|
546
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
547
547
|
readonly destination: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
548
548
|
readonly protocol: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
549
549
|
readonly domain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -571,7 +571,7 @@ type SQueryListTrackingLinkDocuments = v.InferOutput<typeof SQueryListTrackingLi
|
|
|
571
571
|
declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
572
572
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
573
573
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
574
|
-
readonly
|
|
574
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
575
575
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
576
576
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
577
577
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -591,7 +591,7 @@ declare const SCreateMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
591
591
|
readonly tracking_links: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
592
592
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
593
593
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
594
|
-
readonly
|
|
594
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
595
595
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
596
596
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
597
597
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -608,7 +608,7 @@ declare const SCreateMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
608
608
|
}, undefined>, undefined>, v.MinLengthAction<{
|
|
609
609
|
group: string;
|
|
610
610
|
is_active: boolean;
|
|
611
|
-
|
|
611
|
+
value: string;
|
|
612
612
|
destination: string;
|
|
613
613
|
protocol: "http" | "https";
|
|
614
614
|
domain: string;
|
|
@@ -630,7 +630,7 @@ declare const SCreatePreviewTrackingLinkDocument: v.ObjectSchema<{
|
|
|
630
630
|
readonly is_saved: v.BooleanSchema<undefined>;
|
|
631
631
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
632
632
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
633
|
-
readonly
|
|
633
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
634
634
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
635
635
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
636
636
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -652,7 +652,7 @@ declare const SCreatePreviewMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
652
652
|
readonly is_saved: v.BooleanSchema<undefined>;
|
|
653
653
|
readonly group: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
654
654
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
655
|
-
readonly
|
|
655
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
656
656
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
657
657
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
658
658
|
readonly domain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
|
|
@@ -671,7 +671,7 @@ declare const SCreatePreviewMultipleTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
671
671
|
is_saved: boolean;
|
|
672
672
|
group: string;
|
|
673
673
|
is_active: boolean;
|
|
674
|
-
|
|
674
|
+
value: string;
|
|
675
675
|
destination: string;
|
|
676
676
|
protocol: "http" | "https";
|
|
677
677
|
domain: string;
|
|
@@ -698,7 +698,7 @@ declare const SReadTrackingLinkDocumentByDocumentId: v.ObjectSchema<{
|
|
|
698
698
|
type SReadTrackingLinkDocumentByDocumentId = v.InferOutput<typeof SReadTrackingLinkDocumentByDocumentId>;
|
|
699
699
|
declare const SUpdateAsCreatorTrackingLinkDocument: v.ObjectSchema<{
|
|
700
700
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
701
|
-
readonly
|
|
701
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
702
702
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
703
703
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
704
704
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -718,7 +718,7 @@ declare const SUpdateAsCreatorTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
718
718
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
719
719
|
readonly data: v.ObjectSchema<{
|
|
720
720
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
721
|
-
readonly
|
|
721
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
722
722
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
723
723
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
724
724
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -737,7 +737,7 @@ declare const SUpdateAsCreatorTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
737
737
|
type SUpdateAsCreatorTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorTrackingLinkDocumentRequest>;
|
|
738
738
|
declare const SUpdateAsInvitedTrackingLinkDocument: v.ObjectSchema<{
|
|
739
739
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
740
|
-
readonly
|
|
740
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
741
741
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
742
742
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
743
743
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -757,7 +757,7 @@ declare const SUpdateAsInvitedTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
757
757
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
758
758
|
readonly data: v.ObjectSchema<{
|
|
759
759
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
760
|
-
readonly
|
|
760
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
761
761
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
762
762
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
763
763
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -776,7 +776,7 @@ declare const SUpdateAsInvitedTrackingLinkDocumentRequest: v.ObjectSchema<{
|
|
|
776
776
|
type SUpdateAsInvitedTrackingLinkDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedTrackingLinkDocumentRequest>;
|
|
777
777
|
declare const SUpdateTrackingLinkDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
778
778
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
779
|
-
readonly
|
|
779
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
780
780
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
781
781
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
782
782
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -792,7 +792,7 @@ declare const SUpdateTrackingLinkDocumentRequest: v.UnionSchema<[v.ObjectSchema<
|
|
|
792
792
|
readonly utm_id: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
793
793
|
}, undefined>, v.ObjectSchema<{
|
|
794
794
|
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
795
|
-
readonly
|
|
795
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
796
796
|
readonly destination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
|
|
797
797
|
readonly protocol: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>, undefined>;
|
|
798
798
|
readonly domain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 3, "the domain is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
|
|
@@ -2319,7 +2319,7 @@ declare const SGroupRelationWebsites: v.ObjectSchema<{
|
|
|
2319
2319
|
}, undefined>;
|
|
2320
2320
|
declare const SGroupRelationTrackingLinks: v.ObjectSchema<{
|
|
2321
2321
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2322
|
-
readonly
|
|
2322
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2323
2323
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2324
2324
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2325
2325
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -2586,7 +2586,7 @@ declare const SGroupRelationsDocument: v.ObjectSchema<{
|
|
|
2586
2586
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
2587
2587
|
}, undefined>, undefined>;
|
|
2588
2588
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
2589
|
-
readonly
|
|
2589
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2590
2590
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2591
2591
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2592
2592
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -2952,7 +2952,7 @@ type StripeProductPricesResponse = {
|
|
|
2952
2952
|
};
|
|
2953
2953
|
|
|
2954
2954
|
declare const STrackingLinkDocument: v.ObjectSchema<{
|
|
2955
|
-
readonly
|
|
2955
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2956
2956
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
2957
2957
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
2958
2958
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -3003,7 +3003,7 @@ declare const STrackingLinkRelationsDocument: v.ObjectSchema<{
|
|
|
3003
3003
|
}, undefined>;
|
|
3004
3004
|
|
|
3005
3005
|
declare const SBaseTrackingLinkDocument: v.ObjectSchema<{
|
|
3006
|
-
readonly
|
|
3006
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3007
3007
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3008
3008
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3009
3009
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -3200,7 +3200,7 @@ declare const SUserRelationCreatedWebsites: v.ObjectSchema<{
|
|
|
3200
3200
|
}, undefined>;
|
|
3201
3201
|
declare const SUserRelationTrackingLinks: v.ObjectSchema<{
|
|
3202
3202
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3203
|
-
readonly
|
|
3203
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3204
3204
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3205
3205
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3206
3206
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -3466,7 +3466,7 @@ declare const SUserRelationsDocument: v.ObjectSchema<{
|
|
|
3466
3466
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
3467
3467
|
}, undefined>, undefined>, undefined>;
|
|
3468
3468
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3469
|
-
readonly
|
|
3469
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3470
3470
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
3471
3471
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
3472
3472
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -4442,7 +4442,7 @@ declare const SGroupDocumentWithRelations: v.ObjectSchema<{
|
|
|
4442
4442
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4443
4443
|
}, undefined>, undefined>;
|
|
4444
4444
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4445
|
-
readonly
|
|
4445
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4446
4446
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4447
4447
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4448
4448
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -4552,7 +4552,7 @@ declare const STrackingLinkDocumentWithRelations: v.ObjectSchema<{
|
|
|
4552
4552
|
readonly createdAt: v.StringSchema<undefined>;
|
|
4553
4553
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4554
4554
|
}, undefined>, undefined>;
|
|
4555
|
-
readonly
|
|
4555
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4556
4556
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4557
4557
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4558
4558
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
|
@@ -4777,7 +4777,7 @@ declare const SUserDocumentWithRelations: v.ObjectSchema<{
|
|
|
4777
4777
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4778
4778
|
}, undefined>, undefined>, undefined>;
|
|
4779
4779
|
readonly tracking_links: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
4780
|
-
readonly
|
|
4780
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4781
4781
|
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
4782
4782
|
readonly destination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
|
|
4783
4783
|
readonly protocol: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<readonly ["http", "https"], "please provide a valid url protocol">]>;
|
package/dist/index.js
CHANGED
|
@@ -95,7 +95,7 @@ var GROUP_ENTITY_SCOPES = Object.entries(
|
|
|
95
95
|
);
|
|
96
96
|
|
|
97
97
|
// src/constants/regex.constants.ts
|
|
98
|
-
var REGEX_VALUE = /^[a-zA-Z0-9._-]
|
|
98
|
+
var REGEX_VALUE = /^([a-zA-Z0-9._-]*)$/;
|
|
99
99
|
var ERROR_MESSAGE_REGEX_VALUE = `can only contain letters, numbers, and the special characters: - _ .`;
|
|
100
100
|
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})$/;
|
|
101
101
|
var ERROR_MESSAGE_REGEX_DOMAIN = "please provide a valid domain name";
|
|
@@ -859,7 +859,7 @@ var SQueryListTrackingLinkDocuments = v12.object({
|
|
|
859
859
|
TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT
|
|
860
860
|
),
|
|
861
861
|
is_active: v12.fallback(v12.optional(IsValidIsActive), true),
|
|
862
|
-
|
|
862
|
+
value: v12.optional(IsValidUrlDestination),
|
|
863
863
|
destination: v12.optional(IsValidUrlDestination),
|
|
864
864
|
protocol: v12.optional(IsValidUrlProtocol),
|
|
865
865
|
domain: v12.optional(IsValidUrlDomain),
|
|
@@ -880,7 +880,7 @@ var SQueryListTrackingLinkDocuments = v12.object({
|
|
|
880
880
|
var SCreateTrackingLinkDocument = v12.object({
|
|
881
881
|
group: IsValidReferenceDocumentId,
|
|
882
882
|
is_active: IsValidIsActive,
|
|
883
|
-
|
|
883
|
+
value: IsValidUrlDestination,
|
|
884
884
|
destination: IsValidUrlDestination,
|
|
885
885
|
protocol: IsValidUrlProtocol,
|
|
886
886
|
domain: IsValidUrlDomain,
|
|
@@ -920,7 +920,7 @@ var SReadTrackingLinkDocumentByDocumentId = v12.object({
|
|
|
920
920
|
});
|
|
921
921
|
var SUpdateAsCreatorTrackingLinkDocument = v12.object({
|
|
922
922
|
is_active: IsValidOrUndefinedIsActive,
|
|
923
|
-
|
|
923
|
+
value: IsValidOrUndefinedUrlDestination,
|
|
924
924
|
destination: IsValidOrUndefinedUrlDestination,
|
|
925
925
|
protocol: IsValidOrUndefinedUrlProtocol,
|
|
926
926
|
domain: IsValidOrUndefinedUrlDomain,
|
|
@@ -941,7 +941,7 @@ var SUpdateAsCreatorTrackingLinkDocumentRequest = v12.object({
|
|
|
941
941
|
});
|
|
942
942
|
var SUpdateAsInvitedTrackingLinkDocument = v12.object({
|
|
943
943
|
is_active: IsValidOrUndefinedIsActive,
|
|
944
|
-
|
|
944
|
+
value: IsValidOrUndefinedUrlDestination,
|
|
945
945
|
destination: IsValidOrUndefinedUrlDestination,
|
|
946
946
|
protocol: IsValidOrUndefinedUrlProtocol,
|
|
947
947
|
domain: IsValidOrUndefinedUrlDomain,
|
|
@@ -2148,7 +2148,7 @@ var SGroupDocument = v12.object({
|
|
|
2148
2148
|
...SBaseGroupDocument.entries
|
|
2149
2149
|
});
|
|
2150
2150
|
var SBaseTrackingLinkDocument = v12.object({
|
|
2151
|
-
|
|
2151
|
+
value: IsValidUrlDestination,
|
|
2152
2152
|
is_active: IsValidIsActive,
|
|
2153
2153
|
destination: IsValidUrlDestination,
|
|
2154
2154
|
protocol: IsValidUrlProtocol,
|