@joeygrable94/utm-src-pub-validators 0.0.54 → 0.0.55
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 +1031 -864
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +278 -99
- package/dist/index.d.ts +278 -99
- package/dist/index.js +1016 -864
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -132,6 +132,8 @@ declare const SQueryListGroupUserDocuments: v.ObjectSchema<{
|
|
|
132
132
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
133
133
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
134
134
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 100, undefined>]>, 10>, 10>;
|
|
135
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
136
|
+
readonly user: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
135
137
|
}, undefined>;
|
|
136
138
|
type SQueryListGroupUserDocuments = v.InferOutput<typeof SQueryListGroupUserDocuments>;
|
|
137
139
|
declare const SCreateGroupUserDocument: v.ObjectSchema<{
|
|
@@ -182,6 +184,12 @@ type SDeleteGroupUserDocument = v.InferOutput<typeof SDeleteGroupUserDocument>;
|
|
|
182
184
|
declare const SQueryListGroupDocuments: v.ObjectSchema<{
|
|
183
185
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
184
186
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 100, undefined>]>, 10>, 10>;
|
|
187
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
188
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
189
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
190
|
+
readonly apply_value_to: v.OptionalSchema<v.PicklistSchema<readonly ["source", "medium", "campaign", "content", "creative", "term", "id"], undefined>, undefined>;
|
|
191
|
+
readonly apply_value_as: v.OptionalSchema<v.PicklistSchema<readonly ["prefix", "suffix"], undefined>, undefined>;
|
|
192
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
185
193
|
}, undefined>;
|
|
186
194
|
type SQueryListGroupDocuments = v.InferOutput<typeof SQueryListGroupDocuments>;
|
|
187
195
|
declare const SCreateGroupDocument: v.ObjectSchema<{
|
|
@@ -527,6 +535,8 @@ declare const SQueryListTrackingLinkDocuments: v.ObjectSchema<{
|
|
|
527
535
|
readonly utm_content: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_content is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2025, "the utm_content is too long, it must be 2025 characters or less">, v.RegexAction<string, "utm_content can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
528
536
|
readonly utm_term: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_term is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2028, "the utm_term is too long, it must be 2028 characters or less">, v.RegexAction<string, "utm_term can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
529
537
|
readonly utm_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, 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>;
|
|
538
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
539
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
530
540
|
}, undefined>;
|
|
531
541
|
type SQueryListTrackingLinkDocuments = v.InferOutput<typeof SQueryListTrackingLinkDocuments>;
|
|
532
542
|
declare const SCreateTrackingLinkDocument: v.ObjectSchema<{
|
|
@@ -766,20 +776,21 @@ declare const SQueryListUserLimitationDocuments: v.ObjectSchema<{
|
|
|
766
776
|
}, undefined>;
|
|
767
777
|
type SQueryListUserLimitationDocuments = v.InferOutput<typeof SQueryListUserLimitationDocuments>;
|
|
768
778
|
declare const SCreateUserLimitationsDocument: v.ObjectSchema<{
|
|
769
|
-
readonly limit_groups: v.NumberSchema<undefined>;
|
|
770
|
-
readonly limit_group_users: v.NumberSchema<undefined>;
|
|
771
|
-
readonly limit_websites: v.NumberSchema<undefined>;
|
|
772
|
-
readonly limit_tracking_links: v.NumberSchema<undefined>;
|
|
773
|
-
readonly limit_sources: v.NumberSchema<undefined>;
|
|
774
|
-
readonly limit_mediums: v.NumberSchema<undefined>;
|
|
775
|
-
readonly limit_campaign_ids: v.NumberSchema<undefined>;
|
|
776
|
-
readonly limit_campaign_keys: v.NumberSchema<undefined>;
|
|
777
|
-
readonly limit_campaign_phases: v.NumberSchema<undefined>;
|
|
778
|
-
readonly limit_campaign_products: v.NumberSchema<undefined>;
|
|
779
|
-
readonly
|
|
780
|
-
readonly
|
|
781
|
-
readonly
|
|
782
|
-
readonly
|
|
779
|
+
readonly limit_groups: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
780
|
+
readonly limit_group_users: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
781
|
+
readonly limit_websites: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
782
|
+
readonly limit_tracking_links: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
783
|
+
readonly limit_sources: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
784
|
+
readonly limit_mediums: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
785
|
+
readonly limit_campaign_ids: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
786
|
+
readonly limit_campaign_keys: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
787
|
+
readonly limit_campaign_phases: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
788
|
+
readonly limit_campaign_products: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
789
|
+
readonly limit_campaign_targets: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
790
|
+
readonly limit_contents: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
791
|
+
readonly limit_creative_formats: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
792
|
+
readonly limit_creative_format_variants: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
793
|
+
readonly limit_terms: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
783
794
|
}, undefined>;
|
|
784
795
|
type SCreateUserLimitationsDocument = v.InferOutput<typeof SCreateUserLimitationsDocument>;
|
|
785
796
|
declare const SReadUserLimitationsDocumentById: v.ObjectSchema<{
|
|
@@ -791,26 +802,31 @@ declare const SReadUserLimitationsDocumentByDocumentId: v.ObjectSchema<{
|
|
|
791
802
|
}, undefined>;
|
|
792
803
|
type SReadUserLimitationsDocumentByDocumentId = v.InferOutput<typeof SReadUserLimitationsDocumentByDocumentId>;
|
|
793
804
|
declare const SUpdateUserLimitationsDocument: v.ObjectSchema<{
|
|
794
|
-
readonly limit_groups: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
795
|
-
readonly limit_group_users: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
796
|
-
readonly limit_websites: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
797
|
-
readonly limit_tracking_links: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
798
|
-
readonly limit_sources: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
799
|
-
readonly limit_mediums: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
800
|
-
readonly limit_campaign_ids: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
801
|
-
readonly limit_campaign_keys: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
802
|
-
readonly limit_campaign_phases: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
803
|
-
readonly limit_campaign_products: v.UndefinedableSchema<v.NumberSchema<undefined>, undefined>;
|
|
804
|
-
readonly
|
|
805
|
-
readonly
|
|
806
|
-
readonly
|
|
807
|
-
readonly
|
|
805
|
+
readonly limit_groups: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
806
|
+
readonly limit_group_users: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
807
|
+
readonly limit_websites: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
808
|
+
readonly limit_tracking_links: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
809
|
+
readonly limit_sources: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
810
|
+
readonly limit_mediums: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
811
|
+
readonly limit_campaign_ids: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
812
|
+
readonly limit_campaign_keys: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
813
|
+
readonly limit_campaign_phases: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
814
|
+
readonly limit_campaign_products: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
815
|
+
readonly limit_campaign_targets: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
816
|
+
readonly limit_contents: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
817
|
+
readonly limit_creative_formats: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
818
|
+
readonly limit_creative_format_variants: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
819
|
+
readonly limit_terms: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
808
820
|
}, undefined>;
|
|
809
821
|
type SUpdateUserLimitationsDocument = v.InferOutput<typeof SUpdateUserLimitationsDocument>;
|
|
810
822
|
|
|
811
823
|
declare const SQueryListUserDocuments: v.ObjectSchema<{
|
|
812
824
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
813
825
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
|
|
826
|
+
readonly email: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>, undefined>;
|
|
827
|
+
readonly username: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
828
|
+
readonly confirmed: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
829
|
+
readonly blocked: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
814
830
|
}, undefined>;
|
|
815
831
|
type SQueryListUserDocuments = v.InferOutput<typeof SQueryListUserDocuments>;
|
|
816
832
|
declare const SQueryListUserDocumentsByIdentifier: v.ObjectSchema<{
|
|
@@ -832,6 +848,14 @@ declare const SQueryListCampaignIdDocuments: v.ObjectSchema<{
|
|
|
832
848
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
833
849
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
834
850
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
851
|
+
readonly cost: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>, undefined>;
|
|
852
|
+
readonly min_cost: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>, undefined>;
|
|
853
|
+
readonly max_cost: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for enterprise solutions">]>, undefined>;
|
|
854
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
855
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
856
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
857
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
858
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
835
859
|
}, undefined>;
|
|
836
860
|
type SQueryListCampaignIdDocuments = v.InferOutput<typeof SQueryListCampaignIdDocuments>;
|
|
837
861
|
declare const SCreateCampaignIdDocument: v.ObjectSchema<{
|
|
@@ -930,6 +954,11 @@ declare const SQueryListCampaignKeyDocuments: v.ObjectSchema<{
|
|
|
930
954
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
931
955
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
932
956
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
957
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
958
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
959
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
960
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
961
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
933
962
|
}, undefined>;
|
|
934
963
|
type SQueryListCampaignKeyDocuments = v.InferOutput<typeof SQueryListCampaignKeyDocuments>;
|
|
935
964
|
declare const SCreateCampaignKeyDocument: v.ObjectSchema<{
|
|
@@ -1021,6 +1050,11 @@ declare const SQueryListCampaignPhaseDocuments: v.ObjectSchema<{
|
|
|
1021
1050
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1022
1051
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1023
1052
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1053
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1054
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1055
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1056
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1057
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1024
1058
|
}, undefined>;
|
|
1025
1059
|
type SQueryListCampaignPhaseDocuments = v.InferOutput<typeof SQueryListCampaignPhaseDocuments>;
|
|
1026
1060
|
declare const SCreateCampaignPhaseDocument: v.ObjectSchema<{
|
|
@@ -1112,6 +1146,11 @@ declare const SQueryListCampaignProductDocuments: v.ObjectSchema<{
|
|
|
1112
1146
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1113
1147
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1114
1148
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1149
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1150
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1151
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1152
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1153
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1115
1154
|
}, undefined>;
|
|
1116
1155
|
type SQueryListCampaignProductDocuments = v.InferOutput<typeof SQueryListCampaignProductDocuments>;
|
|
1117
1156
|
declare const SCreateCampaignProductDocument: v.ObjectSchema<{
|
|
@@ -1199,10 +1238,111 @@ declare const SDeleteCampaignProductDocument: v.ObjectSchema<{
|
|
|
1199
1238
|
}, undefined>;
|
|
1200
1239
|
type SDeleteCampaignProductDocument = v.InferOutput<typeof SDeleteCampaignProductDocument>;
|
|
1201
1240
|
|
|
1241
|
+
declare const SQueryListCampaignTargetDocuments: v.ObjectSchema<{
|
|
1242
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1243
|
+
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1244
|
+
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1245
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1246
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1247
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1248
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1249
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1250
|
+
}, undefined>;
|
|
1251
|
+
type SQueryListCampaignTargetDocuments = v.InferOutput<typeof SQueryListCampaignTargetDocuments>;
|
|
1252
|
+
declare const SCreateCampaignTargetDocument: v.ObjectSchema<{
|
|
1253
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1254
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1255
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1256
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1257
|
+
}, undefined>;
|
|
1258
|
+
type SCreateCampaignTargetDocument = v.InferOutput<typeof SCreateCampaignTargetDocument>;
|
|
1259
|
+
declare const SCreateMultipleCampaignTargetDocuments: v.SchemaWithPipe<readonly [v.ArraySchema<v.ObjectSchema<{
|
|
1260
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1261
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1262
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1263
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1264
|
+
}, undefined>, undefined>, v.MinLengthAction<{
|
|
1265
|
+
label: string;
|
|
1266
|
+
value: string;
|
|
1267
|
+
description: string | null;
|
|
1268
|
+
is_active: boolean;
|
|
1269
|
+
}[], 1, "At least one campaign target is required">]>;
|
|
1270
|
+
type SCreateMultipleCampaignTargetDocuments = v.InferOutput<typeof SCreateMultipleCampaignTargetDocuments>;
|
|
1271
|
+
declare const SCreateCampaignTargetDocumentRequest: v.ObjectSchema<{
|
|
1272
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1273
|
+
readonly data: v.ObjectSchema<{
|
|
1274
|
+
readonly label: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
|
|
1275
|
+
readonly value: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1276
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1277
|
+
readonly is_active: v.BooleanSchema<"isActive must be a boolean">;
|
|
1278
|
+
}, undefined>;
|
|
1279
|
+
}, undefined>;
|
|
1280
|
+
type SCreateCampaignTargetDocumentRequest = v.InferOutput<typeof SCreateCampaignTargetDocumentRequest>;
|
|
1281
|
+
declare const SReadCampaignTargetDocumentById: v.ObjectSchema<{
|
|
1282
|
+
readonly id: v.SchemaWithPipe<readonly [v.NumberSchema<"please provide a valid id">, v.MinValueAction<number, 0, "please provide a valid id">]>;
|
|
1283
|
+
}, undefined>;
|
|
1284
|
+
type SReadCampaignTargetDocumentById = v.InferOutput<typeof SReadCampaignTargetDocumentById>;
|
|
1285
|
+
declare const SReadCampaignTargetDocumentByDocumentId: v.ObjectSchema<{
|
|
1286
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1287
|
+
}, undefined>;
|
|
1288
|
+
type SReadCampaignTargetDocumentByDocumentId = v.InferOutput<typeof SReadCampaignTargetDocumentByDocumentId>;
|
|
1289
|
+
declare const SUpdateAsCreatorCampaignTargetDocument: v.ObjectSchema<{
|
|
1290
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1291
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1292
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1293
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1294
|
+
}, undefined>;
|
|
1295
|
+
type SUpdateAsCreatorCampaignTargetDocument = v.InferOutput<typeof SUpdateAsCreatorCampaignTargetDocument>;
|
|
1296
|
+
declare const SUpdateAsCreatorCampaignTargetDocumentRequest: v.ObjectSchema<{
|
|
1297
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1298
|
+
readonly data: v.ObjectSchema<{
|
|
1299
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1300
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1301
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1302
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1303
|
+
}, undefined>;
|
|
1304
|
+
}, undefined>;
|
|
1305
|
+
type SUpdateAsCreatorCampaignTargetDocumentRequest = v.InferOutput<typeof SUpdateAsCreatorCampaignTargetDocumentRequest>;
|
|
1306
|
+
declare const SUpdateAsInvitedCampaignTargetDocument: v.ObjectSchema<{
|
|
1307
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1308
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1309
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1310
|
+
}, undefined>;
|
|
1311
|
+
type SUpdateAsInvitedCampaignTargetDocument = v.InferOutput<typeof SUpdateAsInvitedCampaignTargetDocument>;
|
|
1312
|
+
declare const SUpdateAsInvitedCampaignTargetDocumentRequest: v.ObjectSchema<{
|
|
1313
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1314
|
+
readonly data: v.ObjectSchema<{
|
|
1315
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1316
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1317
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1318
|
+
}, undefined>;
|
|
1319
|
+
}, undefined>;
|
|
1320
|
+
type SUpdateAsInvitedCampaignTargetDocumentRequest = v.InferOutput<typeof SUpdateAsInvitedCampaignTargetDocumentRequest>;
|
|
1321
|
+
declare const SUpdateCampaignTargetDocumentRequest: v.UnionSchema<[v.ObjectSchema<{
|
|
1322
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1323
|
+
readonly value: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1324
|
+
readonly description: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
|
|
1325
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1326
|
+
}, undefined>, v.ObjectSchema<{
|
|
1327
|
+
readonly label: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1328
|
+
readonly description: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
|
|
1329
|
+
readonly is_active: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1330
|
+
}, undefined>], undefined>;
|
|
1331
|
+
type SUpdateCampaignTargetDocumentRequest = v.InferOutput<typeof SUpdateCampaignTargetDocumentRequest>;
|
|
1332
|
+
declare const SDeleteCampaignTargetDocument: v.ObjectSchema<{
|
|
1333
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1334
|
+
}, undefined>;
|
|
1335
|
+
type SDeleteCampaignTargetDocument = v.InferOutput<typeof SDeleteCampaignTargetDocument>;
|
|
1336
|
+
|
|
1202
1337
|
declare const SQueryListContentDocuments: v.ObjectSchema<{
|
|
1203
1338
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1204
1339
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1205
1340
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1341
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1342
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1343
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1344
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1345
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1206
1346
|
}, undefined>;
|
|
1207
1347
|
type SQueryListContentDocuments = v.InferOutput<typeof SQueryListContentDocuments>;
|
|
1208
1348
|
declare const SCreateContentDocument: v.ObjectSchema<{
|
|
@@ -1294,6 +1434,11 @@ declare const SQueryListCreativeFormatVariantDocuments: v.ObjectSchema<{
|
|
|
1294
1434
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1295
1435
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1296
1436
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1437
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1438
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1439
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1440
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1441
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1297
1442
|
}, undefined>;
|
|
1298
1443
|
type SQueryListCreativeFormatVariantDocuments = v.InferOutput<typeof SQueryListCreativeFormatVariantDocuments>;
|
|
1299
1444
|
declare const SCreateCreativeFormatVariantDocument: v.ObjectSchema<{
|
|
@@ -1385,6 +1530,11 @@ declare const SQueryListCreativeFormatDocuments: v.ObjectSchema<{
|
|
|
1385
1530
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1386
1531
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1387
1532
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1533
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1534
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1535
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1536
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1537
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1388
1538
|
}, undefined>;
|
|
1389
1539
|
type SQueryListCreativeFormatDocuments = v.InferOutput<typeof SQueryListCreativeFormatDocuments>;
|
|
1390
1540
|
declare const SCreateCreativeFormatDocument: v.ObjectSchema<{
|
|
@@ -1476,6 +1626,11 @@ declare const SQueryListMediumDocuments: v.ObjectSchema<{
|
|
|
1476
1626
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1477
1627
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1478
1628
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1629
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1630
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1631
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1632
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1633
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1479
1634
|
}, undefined>;
|
|
1480
1635
|
type SQueryListMediumDocuments = v.InferOutput<typeof SQueryListMediumDocuments>;
|
|
1481
1636
|
declare const SCreateMediumDocument: v.ObjectSchema<{
|
|
@@ -1567,6 +1722,11 @@ declare const SQueryListSourceDocuments: v.ObjectSchema<{
|
|
|
1567
1722
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1568
1723
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1569
1724
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1725
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1726
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1727
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1728
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1729
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1570
1730
|
}, undefined>;
|
|
1571
1731
|
type SQueryListSourceDocuments = v.InferOutput<typeof SQueryListSourceDocuments>;
|
|
1572
1732
|
declare const SCreateSourceDocument: v.ObjectSchema<{
|
|
@@ -1658,6 +1818,11 @@ declare const SQueryListTermDocuments: v.ObjectSchema<{
|
|
|
1658
1818
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1659
1819
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1660
1820
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1821
|
+
readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
|
|
1822
|
+
readonly value: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1823
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1824
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1825
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1661
1826
|
}, undefined>;
|
|
1662
1827
|
type SQueryListTermDocuments = v.InferOutput<typeof SQueryListTermDocuments>;
|
|
1663
1828
|
declare const SCreateTermDocument: v.ObjectSchema<{
|
|
@@ -1749,6 +1914,11 @@ declare const SQueryListWebsiteDocuments: v.ObjectSchema<{
|
|
|
1749
1914
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
1750
1915
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
1751
1916
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 10, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
1917
|
+
readonly domain: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 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>;
|
|
1918
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
1919
|
+
readonly is_secure: v.OptionalSchema<v.BooleanSchema<"isSecure must be a boolean">, undefined>;
|
|
1920
|
+
readonly group: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1921
|
+
readonly creator: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
1752
1922
|
}, undefined>;
|
|
1753
1923
|
type SQueryListWebsiteDocuments = v.InferOutput<typeof SQueryListWebsiteDocuments>;
|
|
1754
1924
|
declare const SCreateWebsiteDocument: v.ObjectSchema<{
|
|
@@ -2702,20 +2872,21 @@ declare const SUserRelationReqAccount: v.ObjectSchema<{
|
|
|
2702
2872
|
}, undefined>;
|
|
2703
2873
|
declare const SUserRelationLimits: v.ObjectSchema<{
|
|
2704
2874
|
readonly limits: v.OptionalSchema<v.ObjectSchema<{
|
|
2705
|
-
readonly limit_groups: v.NumberSchema<undefined>;
|
|
2706
|
-
readonly limit_group_users: v.NumberSchema<undefined>;
|
|
2707
|
-
readonly limit_websites: v.NumberSchema<undefined>;
|
|
2708
|
-
readonly limit_tracking_links: v.NumberSchema<undefined>;
|
|
2709
|
-
readonly limit_sources: v.NumberSchema<undefined>;
|
|
2710
|
-
readonly limit_mediums: v.NumberSchema<undefined>;
|
|
2711
|
-
readonly limit_campaign_ids: v.NumberSchema<undefined>;
|
|
2712
|
-
readonly limit_campaign_keys: v.NumberSchema<undefined>;
|
|
2713
|
-
readonly limit_campaign_phases: v.NumberSchema<undefined>;
|
|
2714
|
-
readonly limit_campaign_products: v.NumberSchema<undefined>;
|
|
2715
|
-
readonly
|
|
2716
|
-
readonly
|
|
2717
|
-
readonly
|
|
2718
|
-
readonly
|
|
2875
|
+
readonly limit_groups: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2876
|
+
readonly limit_group_users: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2877
|
+
readonly limit_websites: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2878
|
+
readonly limit_tracking_links: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2879
|
+
readonly limit_sources: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2880
|
+
readonly limit_mediums: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2881
|
+
readonly limit_campaign_ids: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2882
|
+
readonly limit_campaign_keys: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2883
|
+
readonly limit_campaign_phases: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2884
|
+
readonly limit_campaign_products: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2885
|
+
readonly limit_campaign_targets: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2886
|
+
readonly limit_contents: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2887
|
+
readonly limit_creative_formats: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2888
|
+
readonly limit_creative_format_variants: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2889
|
+
readonly limit_terms: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2719
2890
|
readonly id: v.NumberSchema<undefined>;
|
|
2720
2891
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2721
2892
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -2725,20 +2896,21 @@ declare const SUserRelationLimits: v.ObjectSchema<{
|
|
|
2725
2896
|
}, undefined>;
|
|
2726
2897
|
declare const SUserRelationReqLimits: v.ObjectSchema<{
|
|
2727
2898
|
readonly limits: v.ObjectSchema<{
|
|
2728
|
-
readonly limit_groups: v.NumberSchema<undefined>;
|
|
2729
|
-
readonly limit_group_users: v.NumberSchema<undefined>;
|
|
2730
|
-
readonly limit_websites: v.NumberSchema<undefined>;
|
|
2731
|
-
readonly limit_tracking_links: v.NumberSchema<undefined>;
|
|
2732
|
-
readonly limit_sources: v.NumberSchema<undefined>;
|
|
2733
|
-
readonly limit_mediums: v.NumberSchema<undefined>;
|
|
2734
|
-
readonly limit_campaign_ids: v.NumberSchema<undefined>;
|
|
2735
|
-
readonly limit_campaign_keys: v.NumberSchema<undefined>;
|
|
2736
|
-
readonly limit_campaign_phases: v.NumberSchema<undefined>;
|
|
2737
|
-
readonly limit_campaign_products: v.NumberSchema<undefined>;
|
|
2738
|
-
readonly
|
|
2739
|
-
readonly
|
|
2740
|
-
readonly
|
|
2741
|
-
readonly
|
|
2899
|
+
readonly limit_groups: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2900
|
+
readonly limit_group_users: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2901
|
+
readonly limit_websites: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2902
|
+
readonly limit_tracking_links: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2903
|
+
readonly limit_sources: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2904
|
+
readonly limit_mediums: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2905
|
+
readonly limit_campaign_ids: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2906
|
+
readonly limit_campaign_keys: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2907
|
+
readonly limit_campaign_phases: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2908
|
+
readonly limit_campaign_products: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2909
|
+
readonly limit_campaign_targets: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2910
|
+
readonly limit_contents: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2911
|
+
readonly limit_creative_formats: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2912
|
+
readonly limit_creative_format_variants: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2913
|
+
readonly limit_terms: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
2742
2914
|
readonly id: v.NumberSchema<undefined>;
|
|
2743
2915
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
2744
2916
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -3182,20 +3354,21 @@ type SUserAccountRelationsDocumentIn = v.InferInput<typeof SUserAccountRelations
|
|
|
3182
3354
|
type SUserAccountRelationsDocumentOut = v.InferOutput<typeof SUserAccountRelationsDocument>;
|
|
3183
3355
|
|
|
3184
3356
|
declare const SUserLimitationsDocument: v.ObjectSchema<{
|
|
3185
|
-
readonly limit_groups: v.NumberSchema<undefined>;
|
|
3186
|
-
readonly limit_group_users: v.NumberSchema<undefined>;
|
|
3187
|
-
readonly limit_websites: v.NumberSchema<undefined>;
|
|
3188
|
-
readonly limit_tracking_links: v.NumberSchema<undefined>;
|
|
3189
|
-
readonly limit_sources: v.NumberSchema<undefined>;
|
|
3190
|
-
readonly limit_mediums: v.NumberSchema<undefined>;
|
|
3191
|
-
readonly limit_campaign_ids: v.NumberSchema<undefined>;
|
|
3192
|
-
readonly limit_campaign_keys: v.NumberSchema<undefined>;
|
|
3193
|
-
readonly limit_campaign_phases: v.NumberSchema<undefined>;
|
|
3194
|
-
readonly limit_campaign_products: v.NumberSchema<undefined>;
|
|
3195
|
-
readonly
|
|
3196
|
-
readonly
|
|
3197
|
-
readonly
|
|
3198
|
-
readonly
|
|
3357
|
+
readonly limit_groups: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3358
|
+
readonly limit_group_users: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3359
|
+
readonly limit_websites: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3360
|
+
readonly limit_tracking_links: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3361
|
+
readonly limit_sources: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3362
|
+
readonly limit_mediums: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3363
|
+
readonly limit_campaign_ids: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3364
|
+
readonly limit_campaign_keys: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3365
|
+
readonly limit_campaign_phases: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3366
|
+
readonly limit_campaign_products: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3367
|
+
readonly limit_campaign_targets: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3368
|
+
readonly limit_contents: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3369
|
+
readonly limit_creative_formats: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3370
|
+
readonly limit_creative_format_variants: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3371
|
+
readonly limit_terms: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3199
3372
|
readonly id: v.NumberSchema<undefined>;
|
|
3200
3373
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
3201
3374
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -3219,20 +3392,21 @@ declare const SUserLimitationsRelationsDocument: v.ObjectSchema<{
|
|
|
3219
3392
|
}, undefined>;
|
|
3220
3393
|
|
|
3221
3394
|
declare const SBaseUserLimitationsDocument: v.ObjectSchema<{
|
|
3222
|
-
readonly limit_groups: v.NumberSchema<undefined>;
|
|
3223
|
-
readonly limit_group_users: v.NumberSchema<undefined>;
|
|
3224
|
-
readonly limit_websites: v.NumberSchema<undefined>;
|
|
3225
|
-
readonly limit_tracking_links: v.NumberSchema<undefined>;
|
|
3226
|
-
readonly limit_sources: v.NumberSchema<undefined>;
|
|
3227
|
-
readonly limit_mediums: v.NumberSchema<undefined>;
|
|
3228
|
-
readonly limit_campaign_ids: v.NumberSchema<undefined>;
|
|
3229
|
-
readonly limit_campaign_keys: v.NumberSchema<undefined>;
|
|
3230
|
-
readonly limit_campaign_phases: v.NumberSchema<undefined>;
|
|
3231
|
-
readonly limit_campaign_products: v.NumberSchema<undefined>;
|
|
3232
|
-
readonly
|
|
3233
|
-
readonly
|
|
3234
|
-
readonly
|
|
3235
|
-
readonly
|
|
3395
|
+
readonly limit_groups: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3396
|
+
readonly limit_group_users: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3397
|
+
readonly limit_websites: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3398
|
+
readonly limit_tracking_links: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3399
|
+
readonly limit_sources: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3400
|
+
readonly limit_mediums: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3401
|
+
readonly limit_campaign_ids: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3402
|
+
readonly limit_campaign_keys: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3403
|
+
readonly limit_campaign_phases: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3404
|
+
readonly limit_campaign_products: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3405
|
+
readonly limit_campaign_targets: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3406
|
+
readonly limit_contents: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3407
|
+
readonly limit_creative_formats: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3408
|
+
readonly limit_creative_format_variants: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3409
|
+
readonly limit_terms: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
3236
3410
|
}, undefined>;
|
|
3237
3411
|
|
|
3238
3412
|
type SUserLimitationsDocumentIn = v.InferInput<typeof SUserLimitationsDocument>;
|
|
@@ -4211,20 +4385,21 @@ declare const SUserLimitationsDocumentWithRelations: v.ObjectSchema<{
|
|
|
4211
4385
|
readonly createdAt: v.StringSchema<undefined>;
|
|
4212
4386
|
readonly updatedAt: v.StringSchema<undefined>;
|
|
4213
4387
|
}, undefined>, undefined>;
|
|
4214
|
-
readonly limit_groups: v.NumberSchema<undefined>;
|
|
4215
|
-
readonly limit_group_users: v.NumberSchema<undefined>;
|
|
4216
|
-
readonly limit_websites: v.NumberSchema<undefined>;
|
|
4217
|
-
readonly limit_tracking_links: v.NumberSchema<undefined>;
|
|
4218
|
-
readonly limit_sources: v.NumberSchema<undefined>;
|
|
4219
|
-
readonly limit_mediums: v.NumberSchema<undefined>;
|
|
4220
|
-
readonly limit_campaign_ids: v.NumberSchema<undefined>;
|
|
4221
|
-
readonly limit_campaign_keys: v.NumberSchema<undefined>;
|
|
4222
|
-
readonly limit_campaign_phases: v.NumberSchema<undefined>;
|
|
4223
|
-
readonly limit_campaign_products: v.NumberSchema<undefined>;
|
|
4224
|
-
readonly
|
|
4225
|
-
readonly
|
|
4226
|
-
readonly
|
|
4227
|
-
readonly
|
|
4388
|
+
readonly limit_groups: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4389
|
+
readonly limit_group_users: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4390
|
+
readonly limit_websites: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4391
|
+
readonly limit_tracking_links: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4392
|
+
readonly limit_sources: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4393
|
+
readonly limit_mediums: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4394
|
+
readonly limit_campaign_ids: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4395
|
+
readonly limit_campaign_keys: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4396
|
+
readonly limit_campaign_phases: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4397
|
+
readonly limit_campaign_products: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4398
|
+
readonly limit_campaign_targets: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4399
|
+
readonly limit_contents: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4400
|
+
readonly limit_creative_formats: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4401
|
+
readonly limit_creative_format_variants: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4402
|
+
readonly limit_terms: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
4228
4403
|
readonly id: v.NumberSchema<undefined>;
|
|
4229
4404
|
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
|
|
4230
4405
|
readonly publishedAt: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -5707,6 +5882,10 @@ declare const IsValidOrUndefinedCurrentPeriodEnd: v.UndefinedableSchema<v.Nullab
|
|
|
5707
5882
|
declare const IsValidTrialPeriodEnd: v.DateSchema<undefined>;
|
|
5708
5883
|
declare const IsValidOrUndefinedTrialPeriodEnd: v.UndefinedableSchema<v.DateSchema<undefined>, undefined>;
|
|
5709
5884
|
|
|
5885
|
+
declare const IsValidUserLimitationNumber: v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>;
|
|
5886
|
+
declare const IsValidUserLimitationNumberFallback: v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, 0>;
|
|
5887
|
+
declare const IsValidOrUndefinedUserLimitationNumber: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 0, "the user limitation number must be a positive number">]>, undefined>;
|
|
5888
|
+
|
|
5710
5889
|
declare const IsValidUsername: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
5711
5890
|
declare const IsValidOrUndefinedUsername: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
5712
5891
|
declare const IsValidEmail: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
|
|
@@ -5735,4 +5914,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
5735
5914
|
declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, 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: - _ .">]>;
|
|
5736
5915
|
declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, 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>;
|
|
5737
5916
|
|
|
5738
|
-
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, default_campaign_phases, default_contents, default_creative_format_variants, default_creative_formats, default_mediums, default_sources, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
5917
|
+
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, type DefaultCampaignPhaseKey, type DefaultCampaignPhaseValue, type DefaultContentKey, type DefaultContentValue, type DefaultCreativeFormatKey, type DefaultCreativeFormatValue, type DefaultCreativeFormatVariantKey, type DefaultCreativeFormatVariantValue, type DefaultMediumKey, type DefaultMediumValue, type DefaultSourceKey, type DefaultSourceValue, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, type GroupEntityActions, type GroupEntityKey, type GroupEntityScope, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, type MediaFormat, type MediaFormats, type MediaUploadDocument, type PriceDocument, type ProductDocument, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, type SCampaignIdDocumentIn, type SCampaignIdDocumentOut, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, type SCampaignIdRelationsDocumentIn, type SCampaignIdRelationsDocumentOut, SCampaignKeyDocument, type SCampaignKeyDocumentIn, type SCampaignKeyDocumentOut, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, type SCampaignKeyRelationsDocumentIn, type SCampaignKeyRelationsDocumentOut, SCampaignPhaseDocument, type SCampaignPhaseDocumentIn, type SCampaignPhaseDocumentOut, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, type SCampaignPhaseRelationsDocumentIn, type SCampaignPhaseRelationsDocumentOut, SCampaignProductDocument, type SCampaignProductDocumentIn, type SCampaignProductDocumentOut, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, type SCampaignProductRelationsDocumentIn, type SCampaignProductRelationsDocumentOut, SCampaignTargetDocument, type SCampaignTargetDocumentIn, type SCampaignTargetDocumentOut, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, type SCampaignTargetRelationsDocumentIn, type SCampaignTargetRelationsDocumentOut, SChangePassword, SContentDocument, type SContentDocumentIn, type SContentDocumentOut, SContentDocumentWithRelations, SContentRelationsDocument, type SContentRelationsDocumentIn, type SContentRelationsDocumentOut, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateCampaignTargetDocument, SCreateCampaignTargetDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SCreativeFormatDocument, type SCreativeFormatDocumentIn, type SCreativeFormatDocumentOut, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, type SCreativeFormatRelationsDocumentIn, type SCreativeFormatRelationsDocumentOut, SCreativeFormatVariantDocument, type SCreativeFormatVariantDocumentIn, type SCreativeFormatVariantDocumentOut, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, type SCreativeFormatVariantRelationsDocumentIn, type SCreativeFormatVariantRelationsDocumentOut, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, type SGroupDocumentIn, type SGroupDocumentOut, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, type SGroupRelationsDocumentIn, type SGroupRelationsDocumentOut, SGroupUserDocument, type SGroupUserDocumentIn, type SGroupUserDocumentOut, SGroupUserDocumentReqRelations, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, type SGroupUserRelationsDocumentIn, type SGroupUserRelationsDocumentOut, SGroupUserRelationsReqDocument, type SGroupUserRelationsReqDocumentIn, type SGroupUserRelationsReqDocumentOut, SLoginUserDocument, SMediumDocument, type SMediumDocumentIn, type SMediumDocumentOut, SMediumDocumentWithRelations, SMediumRelationsDocument, type SMediumRelationsDocumentIn, type SMediumRelationsDocumentOut, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, type SRoleDocumentIn, type SRoleDocumentOut, SRoleDocumentWithRelations, SRoleRelationsDocument, type SRoleRelationsDocumentIn, type SRoleRelationsDocumentOut, SSourceDocument, type SSourceDocumentIn, type SSourceDocumentOut, SSourceDocumentWithRelations, SSourceRelationsDocument, type SSourceRelationsDocumentIn, type SSourceRelationsDocumentOut, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, type STermDocumentIn, type STermDocumentOut, STermDocumentWithRelations, STermRelationsDocument, type STermRelationsDocumentIn, type STermRelationsDocumentOut, STrackingLinkDocument, type STrackingLinkDocumentIn, type STrackingLinkDocumentOut, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, type STrackingLinkRelationsDocumentIn, type STrackingLinkRelationsDocumentOut, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, type SUserAccountDocumentIn, type SUserAccountDocumentOut, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, type SUserAccountRelationsDocumentIn, type SUserAccountRelationsDocumentOut, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, type SUserDocumentIn, type SUserDocumentOut, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, type SUserLimitationsDocumentIn, type SUserLimitationsDocumentOut, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, type SUserLimitationsRelationsDocumentIn, type SUserLimitationsRelationsDocumentOut, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, type SUserRelationsDocumentIn, type SUserRelationsDocumentOut, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SWebsiteDocument, type SWebsiteDocumentIn, type SWebsiteDocumentOut, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, type SWebsiteRelationsDocumentIn, type SWebsiteRelationsDocumentOut, type SeoMeta, type SeoOpenGraph, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, type StrapiSingleResponse, type StripeCheckoutRedirectResponse, type StripeProductPricesResponse, type SubscriptionStatusValue, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, type UrlProtocol, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, default_campaign_phases, default_contents, default_creative_format_variants, default_creative_formats, default_mediums, default_sources, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|